diff --git a/.vsconfig b/.vsconfig new file mode 100644 index 0000000..aade28f --- /dev/null +++ b/.vsconfig @@ -0,0 +1,6 @@ +{ + "version": "1.0", + "components": [ + "Microsoft.VisualStudio.Workload.ManagedGame" + ] +} diff --git a/Assets/DOTween.meta b/Assets/DOTween.meta new file mode 100644 index 0000000..aec17fd --- /dev/null +++ b/Assets/DOTween.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 40880d539c3e3d942bff727e563a4a87 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/DOTween/DOTween.XML b/Assets/DOTween/DOTween.XML new file mode 100644 index 0000000..a260f73 --- /dev/null +++ b/Assets/DOTween/DOTween.XML @@ -0,0 +1,2729 @@ + + + + DOTween + + + + + Types of autoPlay behaviours + + + + No tween is automatically played + + + Only Sequences are automatically played + + + Only Tweeners are automatically played + + + All tweens are automatically played + + + + What axis to constrain in case of Vector tweens + + + + Called the first time the tween is set in a playing state, after any eventual delay + + + + Used in place of System.Func, which is not available in mscorlib. + + + + + Used in place of System.Action. + + + + + Public so it can be used by lose scripts related to DOTween (like DOTweenAnimation) + + + + + Used to separate DOTween class from the MonoBehaviour instance (in order to use static constructors on DOTween). + Contains all instance-based methods + + + + Used internally inside Unity Editor, as a trick to update DOTween's inspector at every frame + + + + Directly sets the current max capacity of Tweeners and Sequences + (meaning how many Tweeners and Sequences can be running at the same time), + so that DOTween doesn't need to automatically increase them in case the max is reached + (which might lead to hiccups when that happens). + Sequences capacity must be less or equal to Tweeners capacity + (if you pass a low Tweener capacity it will be automatically increased to match the Sequence's). + Beware: use this method only when there are no tweens running. + + Max Tweeners capacity. + Default: 200 + Max Sequences capacity. + Default: 50 + + + + This class contains a C# port of the easing equations created by Robert Penner (http://robertpenner.com/easing). + + + + + Easing equation function for a bounce (exponentially decaying parabolic bounce) easing in: accelerating from zero velocity. + + + Current time (in frames or seconds). + + + Expected easing duration (in frames or seconds). + + Unused: here to keep same delegate for all ease types. + Unused: here to keep same delegate for all ease types. + + The eased value. + + + + + Easing equation function for a bounce (exponentially decaying parabolic bounce) easing out: decelerating from zero velocity. + + + Current time (in frames or seconds). + + + Expected easing duration (in frames or seconds). + + Unused: here to keep same delegate for all ease types. + Unused: here to keep same delegate for all ease types. + + The eased value. + + + + + Easing equation function for a bounce (exponentially decaying parabolic bounce) easing in/out: acceleration until halfway, then deceleration. + + + Current time (in frames or seconds). + + + Expected easing duration (in frames or seconds). + + Unused: here to keep same delegate for all ease types. + Unused: here to keep same delegate for all ease types. + + The eased value. + + + + + Returns a value between 0 and 1 (inclusive) based on the elapsed time and ease selected + + + + + Returns a value between 0 and 1 (inclusive) based on the elapsed time and ease selected + + + + + Used to interpret AnimationCurves as eases. + Public so it can be used by external ease factories + + + + + Behaviour in case a tween nested inside a Sequence fails + + + + If the Sequence contains other elements, kill the failed tween but preserve the rest + + + Kill the whole Sequence + + + + Additional notices passed to plugins when updating. + Public so it can be used by custom plugins. Internally, only PathPlugin uses it + + + + + None + + + + + Lets the plugin know that we restarted or rewinded + + + + + OnRewind callback behaviour (can only be set via DOTween's Utility Panel) + + + + + When calling Rewind or PlayBackwards/SmoothRewind, OnRewind callbacks will be fired only if the tween isn't already rewinded + + + + + When calling Rewind, OnRewind callbacks will always be fired, even if the tween is already rewinded. + When calling PlayBackwards/SmoothRewind instead, OnRewind callbacks will be fired only if the tween isn't already rewinded + + + + + When calling Rewind or PlayBackwards/SmoothRewind, OnRewind callbacks will always be fired, even if the tween is already rewinded + + + + + Public only so custom shortcuts can access some of these methods + + + + + INTERNAL: used by DO shortcuts and Modules to set special startup mode + + + + + INTERNAL: used by DO shortcuts and Modules to set the tween as blendable + + + + + INTERNAL: used by DO shortcuts and Modules to prevent a tween from using a From setup even if passed + + + + + Used to dispatch commands that need to be captured externally, usually by Modules + + + + + Returns a Vector3 with z = 0 + + + + + Returns the 2D angle between two vectors + + + + + Uses approximate equality on each axis instead of Unity's Vector3 equality, + because the latter fails (in some cases) when assigning a Vector3 to a transform.position and then checking it. + + + + + Looks for the type within all possible project assembly names + + + + NO-GC METHOD: changes the start value of a tween and rewinds it (without pausing it). + Has no effect with tweens that are inside Sequences + The new start value + If bigger than 0 applies it as the new tween duration + + + NO-GC METHOD: changes the end value of a tween and rewinds it (without pausing it). + Has no effect with tweens that are inside Sequences + The new end value + If TRUE the start value will become the current target's value, otherwise it will stay the same + + + NO-GC METHOD: changes the end value of a tween and rewinds it (without pausing it). + Has no effect with tweens that are inside Sequences + The new end value + If bigger than 0 applies it as the new tween duration + If TRUE the start value will become the current target's value, otherwise it will stay the same + + + NO-GC METHOD: changes the start and end value of a tween and rewinds it (without pausing it). + Has no effect with tweens that are inside Sequences + The new start value + The new end value + If bigger than 0 applies it as the new tween duration + + + + Struct that stores two colors (used for LineRenderer tweens) + + + + + Used for tween callbacks + + + + + Used for tween callbacks + + + + + Used for custom and animationCurve-based ease functions. Must return a value between 0 and 1. + + + + + Straight Quaternion plugin. Instead of using Vector3 values accepts Quaternion values directly. + Beware: doesn't work with LoopType.Incremental (neither directly nor if inside a LoopType.Incremental Sequence). + To use it, call DOTween.To with the plugin parameter overload, passing it PureQuaternionPlugin.Plug() as first parameter + (do not use any of the other public PureQuaternionPlugin methods): + DOTween.To(PureQuaternionPlugin.Plug(), ()=> myQuaternionProperty, x=> myQuaternionProperty = x, myQuaternionEndValue, duration); + + + + + Plug this plugin inside a DOTween.To call. + Example: + DOTween.To(PureQuaternionPlugin.Plug(), ()=> myQuaternionProperty, x=> myQuaternionProperty = x, myQuaternionEndValue, duration); + + + + INTERNAL: do not use + + + INTERNAL: do not use + + + INTERNAL: do not use + + + INTERNAL: do not use + + + INTERNAL: do not use + + + INTERNAL: do not use + + + INTERNAL: do not use + + + INTERNAL: do not use + + + + Main DOTween class. Contains static methods to create and control tweens in a generic way + + + + DOTween's version + + + If TRUE (default) makes tweens slightly slower but safer, automatically taking care of a series of things + (like targets becoming null while a tween is playing). + Default: TRUE + + + Behaviour in case a tween nested inside a Sequence fails (caught by safe mode). + Default: NestedTweenFailureBehaviour.TryToPreserveSequence + + + If TRUE you will get a DOTween report when exiting play mode (only in the Editor). + Useful to know how many max Tweeners and Sequences you reached and optimize your final project accordingly. + Beware, this will slightly slow down your tweens while inside Unity Editor. + Default: FALSE + + + Global DOTween timeScale. + Default: 1 + + + If TRUE, DOTween will use Time.smoothDeltaTime instead of Time.deltaTime for UpdateType.Normal and UpdateType.Late tweens + (unless they're set as timeScaleIndependent, in which case a value between the last timestep + and will be used instead). + Setting this to TRUE will lead to smoother animations. + Default: FALSE + + + If is TRUE, this indicates the max timeStep that an independent update call can last. + Setting this to TRUE will lead to smoother animations. + Default: FALSE + + + DOTween's log behaviour. + Default: LogBehaviour.ErrorsOnly + + + Used to intercept DOTween's logs. If this method isn't NULL, DOTween will call it before writing a log via Unity's own Debug log methods. + Return TRUE if you want DOTween to proceed with the log, FALSE otherwise. + This method must return a bool and accept two parameters: + - LogType: the type of Unity log that DOTween is trying to log + - object: the log message that DOTween wants to log + + + If TRUE draws path gizmos in Unity Editor (if the gizmos button is active). + Deactivate this if you want to avoid gizmos overhead while in Unity Editor + + + If TRUE activates various debug options + + + Stores the target id so it can be used to give more info in case of safeMode error capturing. + Only active if both debugMode and useSafeMode are TRUE + + + Default updateType for new tweens. + Default: UpdateType.Normal + + + Sets whether Unity's timeScale should be taken into account by default or not. + Default: false + + + Default autoPlay behaviour for new tweens. + Default: AutoPlay.All + + + Default autoKillOnComplete behaviour for new tweens. + Default: TRUE + + + Default loopType applied to all new tweens. + Default: LoopType.Restart + + + If TRUE all newly created tweens are set as recyclable, otherwise not. + Default: FALSE + + + Default ease applied to all new Tweeners (not to Sequences which always have Ease.Linear as default). + Default: Ease.InOutQuad + + + Default overshoot/amplitude used for eases + Default: 1.70158f + + + Default period used for eases + Default: 0 + + + Used internally. Assigned/removed by DOTweenComponent.Create/DestroyInstance + + + + Must be called once, before the first ever DOTween call/reference, + otherwise it will be called automatically and will use default options. + Calling it a second time won't have any effect. + You can chain SetCapacity to this method, to directly set the max starting size of Tweeners and Sequences: + DOTween.Init(false, false, LogBehaviour.Default).SetCapacity(100, 20); + + If TRUE all new tweens will be set for recycling, meaning that when killed, + instead of being destroyed, they will be put in a pool and reused instead of creating new tweens. This option allows you to avoid + GC allocations by reusing tweens, but you will have to take care of tween references, since they might result active + even if they were killed (since they might have been respawned and are now being used for other tweens). + If you want to automatically set your tween references to NULL when a tween is killed + you can use the OnKill callback like this: + .OnKill(()=> myTweenReference = null) + You can change this setting at any time by changing the static property, + or you can set the recycling behaviour for each tween separately, using: + SetRecyclable(bool recyclable) + Default: FALSE + If TRUE makes tweens slightly slower but safer, automatically taking care of a series of things + (like targets becoming null while a tween is playing). + You can change this setting at any time by changing the static property. + Default: FALSE + Type of logging to use. + You can change this setting at any time by changing the static property. + Default: ErrorsOnly + + + + Directly sets the current max capacity of Tweeners and Sequences + (meaning how many Tweeners and Sequences can be running at the same time), + so that DOTween doesn't need to automatically increase them in case the max is reached + (which might lead to hiccups when that happens). + Sequences capacity must be less or equal to Tweeners capacity + (if you pass a low Tweener capacity it will be automatically increased to match the Sequence's). + Beware: use this method only when there are no tweens running. + + Max Tweeners capacity. + Default: 200 + Max Sequences capacity. + Default: 50 + + + + Kills all tweens, clears all cached tween pools and plugins and resets the max Tweeners/Sequences capacities to the default values. + + If TRUE also destroys DOTween's gameObject and resets its initializiation, default settings and everything else + (so that next time you use it it will need to be re-initialized) + + + + Clears all cached tween pools. + + + + + Checks all active tweens to find and remove eventually invalid ones (usually because their targets became NULL) + and returns the total number of invalid tweens found and removed. + IMPORTANT: this will cause an error on UWP platform, so don't use it there + BEWARE: this is a slightly expensive operation so use it with care + + + + + Updates all tweens that are set to . + + Manual deltaTime + Unscaled delta time (used with tweens set as timeScaleIndependent) + + + Tweens a property or field to the given value using default plugins + A getter for the field or property to tween. + Example usage with lambda:()=> myProperty + A setter for the field or property to tween + Example usage with lambda:x=> myProperty = x + The end value to reachThe tween's duration + + + Tweens a property or field to the given value using default plugins + A getter for the field or property to tween. + Example usage with lambda:()=> myProperty + A setter for the field or property to tween + Example usage with lambda:x=> myProperty = x + The end value to reachThe tween's duration + + + Tweens a property or field to the given value using default plugins + A getter for the field or property to tween. + Example usage with lambda:()=> myProperty + A setter for the field or property to tween + Example usage with lambda:x=> myProperty = x + The end value to reachThe tween's duration + + + Tweens a property or field to the given value using default plugins + A getter for the field or property to tween. + Example usage with lambda:()=> myProperty + A setter for the field or property to tween + Example usage with lambda:x=> myProperty = x + The end value to reachThe tween's duration + + + Tweens a property or field to the given value using default plugins + A getter for the field or property to tween. + Example usage with lambda:()=> myProperty + A setter for the field or property to tween + Example usage with lambda:x=> myProperty = x + The end value to reachThe tween's duration + + + Tweens a property or field to the given value using default plugins + A getter for the field or property to tween. + Example usage with lambda:()=> myProperty + A setter for the field or property to tween + Example usage with lambda:x=> myProperty = x + The end value to reachThe tween's duration + + + Tweens a property or field to the given value using default plugins + A getter for the field or property to tween. + Example usage with lambda:()=> myProperty + A setter for the field or property to tween + Example usage with lambda:x=> myProperty = x + The end value to reachThe tween's duration + + + Tweens a property or field to the given value using default plugins + A getter for the field or property to tween. + Example usage with lambda:()=> myProperty + A setter for the field or property to tween + Example usage with lambda:x=> myProperty = x + The end value to reachThe tween's duration + + + Tweens a property or field to the given value using default plugins + A getter for the field or property to tween. + Example usage with lambda:()=> myProperty + A setter for the field or property to tween + Example usage with lambda:x=> myProperty = x + The end value to reachThe tween's duration + + + Tweens a property or field to the given value using default plugins + A getter for the field or property to tween. + Example usage with lambda:()=> myProperty + A setter for the field or property to tween + Example usage with lambda:x=> myProperty = x + The end value to reachThe tween's duration + + + Tweens a property or field to the given value using default plugins + A getter for the field or property to tween. + Example usage with lambda:()=> myProperty + A setter for the field or property to tween + Example usage with lambda:x=> myProperty = x + The end value to reachThe tween's duration + + + Tweens a property or field to the given value using default plugins + A getter for the field or property to tween. + Example usage with lambda:()=> myProperty + A setter for the field or property to tween + Example usage with lambda:x=> myProperty = x + The end value to reachThe tween's duration + + + Tweens a property or field to the given value using default plugins + A getter for the field or property to tween. + Example usage with lambda:()=> myProperty + A setter for the field or property to tween + Example usage with lambda:x=> myProperty = x + The end value to reachThe tween's duration + + + Tweens a property or field to the given value using default plugins + A getter for the field or property to tween. + Example usage with lambda:()=> myProperty + A setter for the field or property to tween + Example usage with lambda:x=> myProperty = x + The end value to reachThe tween's duration + + + Tweens a property or field to the given value using a custom plugin + The plugin to use. Each custom plugin implements a static Get() method + you'll need to call to assign the correct plugin in the correct way, like this: + CustomPlugin.Get() + A getter for the field or property to tween. + Example usage with lambda:()=> myProperty + A setter for the field or property to tween + Example usage with lambda:x=> myProperty = x + The end value to reachThe tween's duration + + + Tweens only one axis of a Vector3 to the given value using default plugins. + A getter for the field or property to tween. + Example usage with lambda:()=> myProperty + A setter for the field or property to tween + Example usage with lambda:x=> myProperty = x + The end value to reachThe tween's duration + The axis to tween + + + Tweens only the alpha of a Color to the given value using default plugins + A getter for the field or property to tween. + Example usage with lambda:()=> myProperty + A setter for the field or property to tween + Example usage with lambda:x=> myProperty = x + The end value to reachThe tween's duration + + + Tweens a virtual property from the given start to the given end value + and implements a setter that allows to use that value with an external method or a lambda + Example: + To(MyMethod, 0, 12, 0.5f); + Where MyMethod is a function that accepts a float parameter (which will be the result of the virtual tween) + The action to perform with the tweened value + The value to start from + The end value to reach + The duration of the virtual tween + + + + Punches a Vector3 towards the given direction and then back to the starting one + as if it was connected to the starting position via an elastic. + This tween type generates some GC allocations at startup + A getter for the field or property to tween. + Example usage with lambda:()=> myProperty + A setter for the field or property to tween + Example usage with lambda:x=> myProperty = x + The direction and strength of the punch + The duration of the tween + Indicates how much will the punch vibrate + Represents how much (0 to 1) the vector will go beyond the starting position when bouncing backwards. + 1 creates a full oscillation between the direction and the opposite decaying direction, + while 0 oscillates only between the starting position and the decaying direction + + + Shakes a Vector3 with the given values. + A getter for the field or property to tween. + Example usage with lambda:()=> myProperty + A setter for the field or property to tween + Example usage with lambda:x=> myProperty = x + The duration of the tween + The shake strength + Indicates how much will the shake vibrate + Indicates how much the shake will be random (0 to 180 - values higher than 90 kind of suck, so beware). + Setting it to 0 will shake along a single direction and behave like a random punch. + If TRUE only shakes on the X Y axis (looks better with things like cameras). + If TRUE the shake will automatically fadeOut smoothly within the tween's duration, otherwise it will not + + + Shakes a Vector3 with the given values. + A getter for the field or property to tween. + Example usage with lambda:()=> myProperty + A setter for the field or property to tween + Example usage with lambda:x=> myProperty = x + The duration of the tween + The shake strength on each axis + Indicates how much will the shake vibrate + Indicates how much the shake will be random (0 to 180 - values higher than 90 kind of suck, so beware). + Setting it to 0 will shake along a single direction and behave like a random punch. + If TRUE the shake will automatically fadeOut smoothly within the tween's duration, otherwise it will not + + + Tweens a property or field to the given values using default plugins. + Ease is applied between each segment and not as a whole. + This tween type generates some GC allocations at startup + A getter for the field or property to tween. + Example usage with lambda:()=> myProperty + A setter for the field or property to tween + Example usage with lambda:x=> myProperty = x + The end values to reach for each segment. This array must have the same length as durations + The duration of each segment. This array must have the same length as endValues + + + + Returns a new to be used for tween groups + + + + Completes all tweens and returns the number of actual tweens completed + (meaning tweens that don't have infinite loops and were not already complete) + For Sequences only: if TRUE also internal Sequence callbacks will be fired, + otherwise they will be ignored + + + Completes all tweens with the given ID or target and returns the number of actual tweens completed + (meaning the tweens that don't have infinite loops and were not already complete) + For Sequences only: if TRUE internal Sequence callbacks will be fired, + otherwise they will be ignored + + + Flips all tweens (changing their direction to forward if it was backwards and viceversa), + then returns the number of actual tweens flipped + + + Flips the tweens with the given ID or target (changing their direction to forward if it was backwards and viceversa), + then returns the number of actual tweens flipped + + + Sends all tweens to the given position (calculating also eventual loop cycles) and returns the actual tweens involved + + + Sends all tweens with the given ID or target to the given position (calculating also eventual loop cycles) + and returns the actual tweens involved + + + Kills all tweens and returns the number of actual tweens killed + If TRUE completes the tweens before killing them + + + Kills all tweens and returns the number of actual tweens killed + If TRUE completes the tweens before killing them + Eventual IDs or targets to exclude from the killing + + + Kills all tweens with the given ID or target and returns the number of actual tweens killed + If TRUE completes the tweens before killing them + + + Pauses all tweens and returns the number of actual tweens paused + + + Pauses all tweens with the given ID or target and returns the number of actual tweens paused + (meaning the tweens that were actually playing and have been paused) + + + Plays all tweens and returns the number of actual tweens played + (meaning tweens that were not already playing or complete) + + + Plays all tweens with the given ID or target and returns the number of actual tweens played + (meaning the tweens that were not already playing or complete) + + + Plays all tweens with the given target and the given ID, and returns the number of actual tweens played + (meaning the tweens that were not already playing or complete) + + + Plays backwards all tweens and returns the number of actual tweens played + (meaning tweens that were not already started, playing backwards or rewinded) + + + Plays backwards all tweens with the given ID or target and returns the number of actual tweens played + (meaning the tweens that were not already started, playing backwards or rewinded) + + + Plays backwards all tweens with the given target and ID and returns the number of actual tweens played + (meaning the tweens that were not already started, playing backwards or rewinded) + + + Plays forward all tweens and returns the number of actual tweens played + (meaning tweens that were not already playing forward or complete) + + + Plays forward all tweens with the given ID or target and returns the number of actual tweens played + (meaning the tweens that were not already playing forward or complete) + + + Plays forward all tweens with the given target and ID and returns the number of actual tweens played + (meaning the tweens that were not already started, playing backwards or rewinded) + + + Restarts all tweens, then returns the number of actual tweens restarted + + + Restarts all tweens with the given ID or target, then returns the number of actual tweens restarted + If TRUE includes the eventual tweens delays, otherwise skips them + If >= 0 changes the startup delay of all involved tweens to this value, otherwise doesn't touch it + + + Restarts all tweens with the given target and the given ID, and returns the number of actual tweens played + (meaning the tweens that were not already playing or complete) + If TRUE includes the eventual tweens delays, otherwise skips them + If >= 0 changes the startup delay of all involved tweens to this value, otherwise doesn't touch it + + + Rewinds and pauses all tweens, then returns the number of actual tweens rewinded + (meaning tweens that were not already rewinded) + + + Rewinds and pauses all tweens with the given ID or target, then returns the number of actual tweens rewinded + (meaning the tweens that were not already rewinded) + + + Smoothly rewinds all tweens (delays excluded), then returns the number of actual tweens rewinding/rewinded + (meaning tweens that were not already rewinded). + A "smooth rewind" animates the tween to its start position, + skipping all elapsed loops (except in case of LoopType.Incremental) while keeping the animation fluent. + Note that a tween that was smoothly rewinded will have its play direction flipped + + + Smoothly rewinds all tweens (delays excluded) with the given ID or target, then returns the number of actual tweens rewinding/rewinded + (meaning the tweens that were not already rewinded). + A "smooth rewind" animates the tween to its start position, + skipping all elapsed loops (except in case of LoopType.Incremental) while keeping the animation fluent. + Note that a tween that was smoothly rewinded will have its play direction flipped + + + Toggles the play state of all tweens and returns the number of actual tweens toggled + (meaning tweens that could be played or paused, depending on the toggle state) + + + Toggles the play state of all tweens with the given ID or target and returns the number of actual tweens toggled + (meaning the tweens that could be played or paused, depending on the toggle state) + + + + Returns TRUE if a tween with the given ID or target is active. + You can also use this to know if a shortcut tween is active for a given target. + Example: + transform.DOMoveX(45, 1); // transform is automatically added as the tween target + DOTween.IsTweening(transform); // Returns true + + The target or ID to look for + If FALSE (default) returns TRUE as long as a tween for the given target/ID is active, + otherwise also requires it to be playing + + + + Returns the total number of active and playing tweens. + A tween is considered as playing even if its delay is actually playing + + + + + Returns a list of all active tweens in a playing state. + Returns NULL if there are no active playing tweens. + Beware: each time you call this method a new list is generated, so use it for debug only + + If NULL creates a new list, otherwise clears and fills this one (and thus saves allocations) + + + + Returns a list of all active tweens in a paused state. + Returns NULL if there are no active paused tweens. + Beware: each time you call this method a new list is generated, so use it for debug only + + If NULL creates a new list, otherwise clears and fills this one (and thus saves allocations) + + + + Returns a list of all active tweens with the given id. + Returns NULL if there are no active tweens with the given id. + Beware: each time you call this method a new list is generated + + If TRUE returns only the tweens with the given ID that are currently playing + If NULL creates a new list, otherwise clears and fills this one (and thus saves allocations) + + + + Returns a list of all active tweens with the given target. + Returns NULL if there are no active tweens with the given target. + Beware: each time you call this method a new list is generated + If TRUE returns only the tweens with the given target that are currently playing + If NULL creates a new list, otherwise clears and fills this one (and thus saves allocations) + + + + + Creates virtual tweens that can be used to change other elements via their OnUpdate calls + + + + + Tweens a virtual float. + You can add regular settings to the generated tween, + but do not use SetUpdate or you will overwrite the onVirtualUpdate parameter + + The value to start from + The value to tween to + The duration of the tween + A callback which must accept a parameter of type float, called at each update + + + + Returns a value based on the given ease and lifetime percentage (0 to 1) + The value to start from when lifetimePercentage is 0 + The value to reach when lifetimePercentage is 1 + The time percentage (0 to 1) at which the value should be taken + The type of ease + + + Returns a value based on the given ease and lifetime percentage (0 to 1) + The value to start from when lifetimePercentage is 0 + The value to reach when lifetimePercentage is 1 + The time percentage (0 to 1) at which the value should be taken + The type of ease + Eventual overshoot to use with Back ease + + + Returns a value based on the given ease and lifetime percentage (0 to 1) + The value to start from when lifetimePercentage is 0 + The value to reach when lifetimePercentage is 1 + The time percentage (0 to 1) at which the value should be taken + The type of ease + Eventual amplitude to use with Elastic easeType + Eventual period to use with Elastic easeType + + + Returns a value based on the given ease and lifetime percentage (0 to 1) + The value to start from when lifetimePercentage is 0 + The value to reach when lifetimePercentage is 1 + The time percentage (0 to 1) at which the value should be taken + The AnimationCurve to use for ease + + + Fires the given callback after the given time. + Callback delay + Callback to fire when the delay has expired + If TRUE (default) ignores Unity's timeScale + + + + Don't assign this! It's assigned automatically when creating 0 duration tweens + + + + + Don't assign this! It's assigned automatically when setting the ease to an AnimationCurve or to a custom ease function + + + + + Allows to wrap ease method in special ways, adding extra features + + + + + Converts the given ease so that it also creates a stop-motion effect, by playing the tween at the given FPS + + FPS at which the tween should be played + Ease type + + + + Converts the given ease so that it also creates a stop-motion effect, by playing the tween at the given FPS + + FPS at which the tween should be played + AnimationCurve to use for the ease + + + + Converts the given ease so that it also creates a stop-motion effect, by playing the tween at the given FPS + + FPS at which the tween should be played + Custom ease function to use + + + + Used to allow method chaining with DOTween.Init + + + + + Directly sets the current max capacity of Tweeners and Sequences + (meaning how many Tweeners and Sequences can be running at the same time), + so that DOTween doesn't need to automatically increase them in case the max is reached + (which might lead to hiccups when that happens). + Sequences capacity must be less or equal to Tweeners capacity + (if you pass a low Tweener capacity it will be automatically increased to match the Sequence's). + Beware: use this method only when there are no tweens running. + + Max Tweeners capacity. + Default: 200 + Max Sequences capacity. + Default: 50 + + + + Behaviour that can be assigned when chaining a SetLink to a tween + + + + Pauses the tween when the link target is disabled + + + Pauses the tween when the link target is disabled, plays it when it's enabled + + + Pauses the tween when the link target is disabled, restarts it when it's enabled + + + Plays the tween when the link target is enabled + + + Restarts the tween when the link target is enabled + + + Kills the tween when the link target is disabled + + + Kills the tween when the link target is destroyed (becomes NULL). This is always active even if another behaviour is chosen + + + Completes the tween when the link target is disabled + + + Completes and kills the tween when the link target is disabled + + + Rewinds the tween (delay excluded) when the link target is disabled + + + Rewinds and kills the tween when the link target is disabled + + + + Path mode (used to determine correct LookAt orientation) + + + + Ignores the path mode (and thus LookAt behaviour) + + + Regular 3D path + + + 2D top-down path + + + 2D side-scroller path + + + + Type of path to use with DOPath tweens + + + + Linear, composed of straight segments between each waypoint + + + Curved path (which uses Catmull-Rom curves) + + + EXPERIMENTAL: Curved path (which uses Cubic Bezier curves, where each point requires two extra control points) + + + + Path control point + + + + + Gets the point on the path at the given percentage (0 to 1) + + The percentage (0 to 1) at which to get the point + If TRUE constant speed is taken into account, otherwise not + + + + Base interface for all tween plugins options + + + + Resets the plugin + + + + This plugin generates some GC allocations at startup + + + + + Path plugin works exclusively with Transforms + + + + + Rotation mode used with DORotate methods + + + + + Fastest way that never rotates beyond 360° + + + + + Fastest way that rotates beyond 360° + + + + + Adds the given rotation to the transform using world axis and an advanced precision mode + (like when using transform.Rotate(Space.World)). + In this mode the end value is is always considered relative + + + + + Adds the given rotation to the transform's local axis + (like when rotating an object with the "local" switch enabled in Unity's editor or using transform.Rotate(Space.Self)). + In this mode the end value is is always considered relative + + + + + Type of scramble to apply to string tweens + + + + + No scrambling of characters + + + + + A-Z + a-z + 0-9 characters + + + + + A-Z characters + + + + + a-z characters + + + + + 0-9 characters + + + + + Custom characters + + + + + Methods that extend Tween objects and allow to control or get data from them + + + + Completes the tween + + + Completes the tween + For Sequences only: if TRUE also internal Sequence callbacks will be fired, + otherwise they will be ignored + + + Flips the direction of this tween (backwards if it was going forward or viceversa) + + + Forces the tween to initialize its settings immediately + + + Send the tween to the given position in time + Time position to reach + (if higher than the whole tween duration the tween will simply reach its end) + If TRUE will play the tween after reaching the given position, otherwise it will pause it + + + Kills the tween + If TRUE completes the tween before killing it + + + Pauses the tween + + + Plays the tween + + + Sets the tween in a backwards direction and plays it + + + Sets the tween in a forward direction and plays it + + + Restarts the tween from the beginning + Ignored in case of Sequences. If TRUE includes the eventual tween delay, otherwise skips it + Ignored in case of Sequences. If >= 0 changes the startup delay to this value, otherwise doesn't touch it + + + Rewinds and pauses the tween + Ignored in case of Sequences. If TRUE includes the eventual tween delay, otherwise skips it + + + Smoothly rewinds the tween (delays excluded). + A "smooth rewind" animates the tween to its start position, + skipping all elapsed loops (except in case of LoopType.Incremental) while keeping the animation fluent. + If called on a tween who is still waiting for its delay to happen, it will simply set the delay to 0 and pause the tween. + Note that a tween that was smoothly rewinded will have its play direction flipped + + + Plays the tween if it was paused, pauses it if it was playing + + + Send a path tween to the given waypoint. + Has no effect if this is not a path tween. + BEWARE, this is a special utility method: + it works only with Linear eases. Also, the lookAt direction might be wrong after calling this and might need to be set manually + (because it relies on a smooth path movement and doesn't work well with jumps that encompass dramatic direction changes) + Waypoint index to reach + (if higher than the max waypoint index the tween will simply go to the last one) + If TRUE will play the tween after reaching the given waypoint, otherwise it will pause it + + + + Creates a yield instruction that waits until the tween is killed or complete. + It can be used inside a coroutine as a yield. + Example usage:yield return myTween.WaitForCompletion(); + + + + + Creates a yield instruction that waits until the tween is killed or rewinded. + It can be used inside a coroutine as a yield. + Example usage:yield return myTween.WaitForRewind(); + + + + + Creates a yield instruction that waits until the tween is killed. + It can be used inside a coroutine as a yield. + Example usage:yield return myTween.WaitForKill(); + + + + + Creates a yield instruction that waits until the tween is killed or has gone through the given amount of loops. + It can be used inside a coroutine as a yield. + Example usage:yield return myTween.WaitForElapsedLoops(2); + + Elapsed loops to wait for + + + + Creates a yield instruction that waits until the tween is killed or has reached the given position (loops included, delays excluded). + It can be used inside a coroutine as a yield. + Example usage:yield return myTween.WaitForPosition(2.5f); + + Position (loops included, delays excluded) to wait for + + + + Creates a yield instruction that waits until the tween is killed or started + (meaning when the tween is set in a playing state the first time, after any eventual delay). + It can be used inside a coroutine as a yield. + Example usage:yield return myTween.WaitForStart(); + + + + Returns the total number of loops completed by this tween + + + Returns the eventual delay set for this tween + + + Returns the duration of this tween (delays excluded). + NOTE: when using settings like SpeedBased, the duration will be recalculated when the tween starts + If TRUE returns the full duration loops included, + otherwise the duration of a single loop cycle + + + Returns the elapsed time for this tween (delays exluded) + If TRUE returns the elapsed time since startup loops included, + otherwise the elapsed time within the current loop cycle + + + Returns the elapsed percentage (0 to 1) of this tween (delays exluded) + If TRUE returns the elapsed percentage since startup loops included, + otherwise the elapsed percentage within the current loop cycle + + + Returns the elapsed percentage (0 to 1) of this tween (delays exluded), + based on a single loop, and calculating eventual backwards Yoyo loops as 1 to 0 instead of 0 to 1 + + + Returns FALSE if this tween has been killed. + BEWARE: if this tween is recyclable it might have been spawned again for another use and thus return TRUE anyway. + When working with recyclable tweens you should take care to know when a tween has been killed and manually set your references to NULL. + If you want to be sure your references are set to NULL when a tween is killed you can use the OnKill callback like this: + .OnKill(()=> myTweenReference = null) + + + Returns TRUE if this tween was reversed and is set to go backwards + + + Returns TRUE if the tween is complete + (silently fails and returns FALSE if the tween has been killed) + + + Returns TRUE if this tween has been initialized + + + Returns TRUE if this tween is playing + + + Returns the total number of loops set for this tween + (returns -1 if the loops are infinite) + + + + Returns a point on a path based on the given path percentage. + Returns Vector3.zero if this is not a path tween, if the tween is invalid, or if the path is not yet initialized. + A path is initialized after its tween starts, or immediately if the tween was created with the Path Editor (DOTween Pro feature). + You can force a path to be initialized by calling myTween.ForceInit(). + + Percentage of the path (0 to 1) on which to get the point + + + + Returns an array of points that can be used to draw the path. + Note that this method generates allocations, because it creates a new array. + Returns NULL if this is not a path tween, if the tween is invalid, or if the path is not yet initialized. + A path is initialized after its tween starts, or immediately if the tween was created with the Path Editor (DOTween Pro feature). + You can force a path to be initialized by calling myTween.ForceInit(). + + How many points to create for each path segment (waypoint to waypoint). + Only used in case of non-Linear paths + + + + Returns the length of a path. + Returns -1 if this is not a path tween, if the tween is invalid, or if the path is not yet initialized. + A path is initialized after its tween starts, or immediately if the tween was created with the Path Editor (DOTween Pro feature). + You can force a path to be initialized by calling myTween.ForceInit(). + + + + + Types of loop + + + + Each loop cycle restarts from the beginning + + + The tween moves forward and backwards at alternate cycles + + + Continuously increments the tween at the end of each loop cycle (A to B, B to B+(A-B), and so on), thus always moving "onward". + In case of String tweens works only if the tween is set as relative + + + + Controls other tweens as a group + + + + + Methods that extend known Unity objects and allow to directly create and control tweens from their instances + + + + Tweens a Camera's aspect to the given value. + Also stores the camera as the tween's target so it can be used for filtered operations + The end value to reachThe duration of the tween + + + Tweens a Camera's backgroundColor to the given value. + Also stores the camera as the tween's target so it can be used for filtered operations + The end value to reachThe duration of the tween + + + Tweens a Camera's farClipPlane to the given value. + Also stores the camera as the tween's target so it can be used for filtered operations + The end value to reachThe duration of the tween + + + Tweens a Camera's fieldOfView to the given value. + Also stores the camera as the tween's target so it can be used for filtered operations + The end value to reachThe duration of the tween + + + Tweens a Camera's nearClipPlane to the given value. + Also stores the camera as the tween's target so it can be used for filtered operations + The end value to reachThe duration of the tween + + + Tweens a Camera's orthographicSize to the given value. + Also stores the camera as the tween's target so it can be used for filtered operations + The end value to reachThe duration of the tween + + + Tweens a Camera's pixelRect to the given value. + Also stores the camera as the tween's target so it can be used for filtered operations + The end value to reachThe duration of the tween + + + Tweens a Camera's rect to the given value. + Also stores the camera as the tween's target so it can be used for filtered operations + The end value to reachThe duration of the tween + + + Shakes a Camera's localPosition along its relative X Y axes with the given values. + Also stores the camera as the tween's target so it can be used for filtered operations + The duration of the tween + The shake strength + Indicates how much will the shake vibrate + Indicates how much the shake will be random (0 to 180 - values higher than 90 kind of suck, so beware). + Setting it to 0 will shake along a single direction. + If TRUE the shake will automatically fadeOut smoothly within the tween's duration, otherwise it will not + + + Shakes a Camera's localPosition along its relative X Y axes with the given values. + Also stores the camera as the tween's target so it can be used for filtered operations + The duration of the tween + The shake strength on each axis + Indicates how much will the shake vibrate + Indicates how much the shake will be random (0 to 180 - values higher than 90 kind of suck, so beware). + Setting it to 0 will shake along a single direction. + If TRUE the shake will automatically fadeOut smoothly within the tween's duration, otherwise it will not + + + Shakes a Camera's localRotation. + Also stores the camera as the tween's target so it can be used for filtered operations + The duration of the tween + The shake strength + Indicates how much will the shake vibrate + Indicates how much the shake will be random (0 to 180 - values higher than 90 kind of suck, so beware). + Setting it to 0 will shake along a single direction. + If TRUE the shake will automatically fadeOut smoothly within the tween's duration, otherwise it will not + + + Shakes a Camera's localRotation. + Also stores the camera as the tween's target so it can be used for filtered operations + The duration of the tween + The shake strength on each axis + Indicates how much will the shake vibrate + Indicates how much the shake will be random (0 to 180 - values higher than 90 kind of suck, so beware). + Setting it to 0 will shake along a single direction. + If TRUE the shake will automatically fadeOut smoothly within the tween's duration, otherwise it will not + + + Tweens a Light's color to the given value. + Also stores the light as the tween's target so it can be used for filtered operations + The end value to reachThe duration of the tween + + + Tweens a Light's intensity to the given value. + Also stores the light as the tween's target so it can be used for filtered operations + The end value to reachThe duration of the tween + + + Tweens a Light's shadowStrength to the given value. + Also stores the light as the tween's target so it can be used for filtered operations + The end value to reachThe duration of the tween + + + Tweens a LineRenderer's color to the given value. + Also stores the LineRenderer as the tween's target so it can be used for filtered operations. + Note that this method requires to also insert the start colors for the tween, + since LineRenderers have no way to get them. + The start value to tween from + The end value to reachThe duration of the tween + + + Tweens a Material's color to the given value. + Also stores the material as the tween's target so it can be used for filtered operations + The end value to reachThe duration of the tween + + + Tweens a Material's named color property to the given value. + Also stores the material as the tween's target so it can be used for filtered operations + The end value to reach + The name of the material property to tween (like _Tint or _SpecColor) + The duration of the tween + + + Tweens a Material's named color property with the given ID to the given value. + Also stores the material as the tween's target so it can be used for filtered operations + The end value to reach + The ID of the material property to tween (also called nameID in Unity's manual) + The duration of the tween + + + Tweens a Material's alpha color to the given value + (will have no effect unless your material supports transparency). + Also stores the material as the tween's target so it can be used for filtered operations + The end value to reachThe duration of the tween + + + Tweens a Material's alpha color to the given value + (will have no effect unless your material supports transparency). + Also stores the material as the tween's target so it can be used for filtered operations + The end value to reach + The name of the material property to tween (like _Tint or _SpecColor) + The duration of the tween + + + Tweens a Material's alpha color with the given ID to the given value + (will have no effect unless your material supports transparency). + Also stores the material as the tween's target so it can be used for filtered operations + The end value to reach + The ID of the material property to tween (also called nameID in Unity's manual) + The duration of the tween + + + Tweens a Material's named float property to the given value. + Also stores the material as the tween's target so it can be used for filtered operations + The end value to reach + The name of the material property to tween + The duration of the tween + + + Tweens a Material's named float property with the given ID to the given value. + Also stores the material as the tween's target so it can be used for filtered operations + The end value to reach + The ID of the material property to tween (also called nameID in Unity's manual) + The duration of the tween + + + Tweens a Material's texture offset to the given value. + Also stores the material as the tween's target so it can be used for filtered operations + The end value to reach + The duration of the tween + + + Tweens a Material's named texture offset property to the given value. + Also stores the material as the tween's target so it can be used for filtered operations + The end value to reach + The name of the material property to tween + The duration of the tween + + + Tweens a Material's texture scale to the given value. + Also stores the material as the tween's target so it can be used for filtered operations + The end value to reach + The duration of the tween + + + Tweens a Material's named texture scale property to the given value. + Also stores the material as the tween's target so it can be used for filtered operations + The end value to reach + The name of the material property to tween + The duration of the tween + + + Tweens a Material's named Vector property to the given value. + Also stores the material as the tween's target so it can be used for filtered operations + The end value to reach + The name of the material property to tween + The duration of the tween + + + Tweens a Material's named Vector property with the given ID to the given value. + Also stores the material as the tween's target so it can be used for filtered operations + The end value to reach + The ID of the material property to tween (also called nameID in Unity's manual) + The duration of the tween + + + Tweens a TrailRenderer's startWidth/endWidth to the given value. + Also stores the TrailRenderer as the tween's target so it can be used for filtered operations + The end startWidth to reachThe end endWidth to reach + The duration of the tween + + + Tweens a TrailRenderer's time to the given value. + Also stores the TrailRenderer as the tween's target so it can be used for filtered operations + The end value to reachThe duration of the tween + + + Tweens a Transform's position to the given value. + Also stores the transform as the tween's target so it can be used for filtered operations + The end value to reachThe duration of the tween + If TRUE the tween will smoothly snap all values to integers + + + Tweens a Transform's X position to the given value. + Also stores the transform as the tween's target so it can be used for filtered operations + The end value to reachThe duration of the tween + If TRUE the tween will smoothly snap all values to integers + + + Tweens a Transform's Y position to the given value. + Also stores the transform as the tween's target so it can be used for filtered operations + The end value to reachThe duration of the tween + If TRUE the tween will smoothly snap all values to integers + + + Tweens a Transform's Z position to the given value. + Also stores the transform as the tween's target so it can be used for filtered operations + The end value to reachThe duration of the tween + If TRUE the tween will smoothly snap all values to integers + + + Tweens a Transform's localPosition to the given value. + Also stores the transform as the tween's target so it can be used for filtered operations + The end value to reachThe duration of the tween + If TRUE the tween will smoothly snap all values to integers + + + Tweens a Transform's X localPosition to the given value. + Also stores the transform as the tween's target so it can be used for filtered operations + The end value to reachThe duration of the tween + If TRUE the tween will smoothly snap all values to integers + + + Tweens a Transform's Y localPosition to the given value. + Also stores the transform as the tween's target so it can be used for filtered operations + The end value to reachThe duration of the tween + If TRUE the tween will smoothly snap all values to integers + + + Tweens a Transform's Z localPosition to the given value. + Also stores the transform as the tween's target so it can be used for filtered operations + The end value to reachThe duration of the tween + If TRUE the tween will smoothly snap all values to integers + + + Tweens a Transform's rotation to the given value. + Also stores the transform as the tween's target so it can be used for filtered operations + The end value to reachThe duration of the tween + Rotation mode + + + Tweens a Transform's rotation to the given value using pure quaternion values. + Also stores the transform as the tween's target so it can be used for filtered operations. + PLEASE NOTE: DORotate, which takes Vector3 values, is the preferred rotation method. + This method was implemented for very special cases, and doesn't support LoopType.Incremental loops + (neither for itself nor if placed inside a LoopType.Incremental Sequence) + + The end value to reachThe duration of the tween + + + Tweens a Transform's localRotation to the given value. + Also stores the transform as the tween's target so it can be used for filtered operations + The end value to reachThe duration of the tween + Rotation mode + + + Tweens a Transform's rotation to the given value using pure quaternion values. + Also stores the transform as the tween's target so it can be used for filtered operations. + PLEASE NOTE: DOLocalRotate, which takes Vector3 values, is the preferred rotation method. + This method was implemented for very special cases, and doesn't support LoopType.Incremental loops + (neither for itself nor if placed inside a LoopType.Incremental Sequence) + + The end value to reachThe duration of the tween + + + Tweens a Transform's localScale to the given value. + Also stores the transform as the tween's target so it can be used for filtered operations + The end value to reachThe duration of the tween + + + Tweens a Transform's localScale uniformly to the given value. + Also stores the transform as the tween's target so it can be used for filtered operations + The end value to reachThe duration of the tween + + + Tweens a Transform's X localScale to the given value. + Also stores the transform as the tween's target so it can be used for filtered operations + The end value to reachThe duration of the tween + + + Tweens a Transform's Y localScale to the given value. + Also stores the transform as the tween's target so it can be used for filtered operations + The end value to reachThe duration of the tween + + + Tweens a Transform's Z localScale to the given value. + Also stores the transform as the tween's target so it can be used for filtered operations + The end value to reachThe duration of the tween + + + Tweens a Transform's rotation so that it will look towards the given position. + Also stores the transform as the tween's target so it can be used for filtered operations + The position to look atThe duration of the tween + Eventual axis constraint for the rotation + The vector that defines in which direction up is (default: Vector3.up) + + + Punches a Transform's localPosition towards the given direction and then back to the starting one + as if it was connected to the starting position via an elastic. + The direction and strength of the punch (added to the Transform's current position) + The duration of the tween + Indicates how much will the punch vibrate + Represents how much (0 to 1) the vector will go beyond the starting position when bouncing backwards. + 1 creates a full oscillation between the punch direction and the opposite direction, + while 0 oscillates only between the punch and the start position + If TRUE the tween will smoothly snap all values to integers + + + Punches a Transform's localScale towards the given size and then back to the starting one + as if it was connected to the starting scale via an elastic. + The punch strength (added to the Transform's current scale) + The duration of the tween + Indicates how much will the punch vibrate + Represents how much (0 to 1) the vector will go beyond the starting size when bouncing backwards. + 1 creates a full oscillation between the punch scale and the opposite scale, + while 0 oscillates only between the punch scale and the start scale + + + Punches a Transform's localRotation towards the given size and then back to the starting one + as if it was connected to the starting rotation via an elastic. + The punch strength (added to the Transform's current rotation) + The duration of the tween + Indicates how much will the punch vibrate + Represents how much (0 to 1) the vector will go beyond the starting rotation when bouncing backwards. + 1 creates a full oscillation between the punch rotation and the opposite rotation, + while 0 oscillates only between the punch and the start rotation + + + Shakes a Transform's localPosition with the given values. + The duration of the tween + The shake strength + Indicates how much will the shake vibrate + Indicates how much the shake will be random (0 to 180 - values higher than 90 kind of suck, so beware). + Setting it to 0 will shake along a single direction. + If TRUE the tween will smoothly snap all values to integers + If TRUE the shake will automatically fadeOut smoothly within the tween's duration, otherwise it will not + + + Shakes a Transform's localPosition with the given values. + The duration of the tween + The shake strength on each axis + Indicates how much will the shake vibrate + Indicates how much the shake will be random (0 to 180 - values higher than 90 kind of suck, so beware). + Setting it to 0 will shake along a single direction. + If TRUE the tween will smoothly snap all values to integers + If TRUE the shake will automatically fadeOut smoothly within the tween's duration, otherwise it will not + + + Shakes a Transform's localRotation. + The duration of the tween + The shake strength + Indicates how much will the shake vibrate + Indicates how much the shake will be random (0 to 180 - values higher than 90 kind of suck, so beware). + Setting it to 0 will shake along a single direction. + If TRUE the shake will automatically fadeOut smoothly within the tween's duration, otherwise it will not + + + Shakes a Transform's localRotation. + The duration of the tween + The shake strength on each axis + Indicates how much will the shake vibrate + Indicates how much the shake will be random (0 to 180 - values higher than 90 kind of suck, so beware). + Setting it to 0 will shake along a single direction. + If TRUE the shake will automatically fadeOut smoothly within the tween's duration, otherwise it will not + + + Shakes a Transform's localScale. + The duration of the tween + The shake strength + Indicates how much will the shake vibrate + Indicates how much the shake will be random (0 to 180 - values higher than 90 kind of suck, so beware). + Setting it to 0 will shake along a single direction. + If TRUE the shake will automatically fadeOut smoothly within the tween's duration, otherwise it will not + + + Shakes a Transform's localScale. + The duration of the tween + The shake strength on each axis + Indicates how much will the shake vibrate + Indicates how much the shake will be random (0 to 180 - values higher than 90 kind of suck, so beware). + Setting it to 0 will shake along a single direction. + If TRUE the shake will automatically fadeOut smoothly within the tween's duration, otherwise it will not + + + Tweens a Transform's position to the given value, while also applying a jump effect along the Y axis. + Returns a Sequence instead of a Tweener. + Also stores the transform as the tween's target so it can be used for filtered operations + The end value to reach + Power of the jump (the max height of the jump is represented by this plus the final Y offset) + Total number of jumps + The duration of the tween + If TRUE the tween will smoothly snap all values to integers + + + Tweens a Transform's localPosition to the given value, while also applying a jump effect along the Y axis. + Returns a Sequence instead of a Tweener. + Also stores the transform as the tween's target so it can be used for filtered operations + The end value to reach + Power of the jump (the max height of the jump is represented by this plus the final Y offset) + Total number of jumps + The duration of the tween + If TRUE the tween will smoothly snap all values to integers + + + Tweens a Transform's position through the given path waypoints, using the chosen path algorithm. + Also stores the transform as the tween's target so it can be used for filtered operations + The waypoints to go through + The duration of the tween + The type of path: Linear (straight path) or CatmullRom (curved CatmullRom path) + The path mode: 3D, side-scroller 2D, top-down 2D + The resolution of the path (useless in case of Linear paths): higher resolutions make for more detailed curved paths but are more expensive. + Defaults to 10, but a value of 5 is usually enough if you don't have dramatic long curves between waypoints + The color of the path (shown when gizmos are active in the Play panel and the tween is running) + + + Tweens a Transform's localPosition through the given path waypoints, using the chosen path algorithm. + Also stores the transform as the tween's target so it can be used for filtered operations + The waypoint to go through + The duration of the tween + The type of path: Linear (straight path) or CatmullRom (curved CatmullRom path) + The path mode: 3D, side-scroller 2D, top-down 2D + The resolution of the path: higher resolutions make for more detailed curved paths but are more expensive. + Defaults to 10, but a value of 5 is usually enough if you don't have dramatic long curves between waypoints + The color of the path (shown when gizmos are active in the Play panel and the tween is running) + + + IMPORTANT: Unless you really know what you're doing, you should use the overload that accepts a Vector3 array instead. + Tweens a Transform's position via the given path. + Also stores the transform as the tween's target so it can be used for filtered operations + The path to use + The duration of the tween + The path mode: 3D, side-scroller 2D, top-down 2D + + + IMPORTANT: Unless you really know what you're doing, you should use the overload that accepts a Vector3 array instead. + Tweens a Transform's localPosition via the given path. + Also stores the transform as the tween's target so it can be used for filtered operations + The path to use + The duration of the tween + The path mode: 3D, side-scroller 2D, top-down 2D + + + Tweens a Tween's timeScale to the given value. + Also stores the Tween as the tween's target so it can be used for filtered operations + The end value to reachThe duration of the tween + + + Tweens a Light's color to the given value, + in a way that allows other DOBlendableColor tweens to work together on the same target, + instead than fight each other as multiple DOColor would do. + Also stores the Light as the tween's target so it can be used for filtered operations + The value to tween toThe duration of the tween + + + Tweens a Material's color to the given value, + in a way that allows other DOBlendableColor tweens to work together on the same target, + instead than fight each other as multiple DOColor would do. + Also stores the Material as the tween's target so it can be used for filtered operations + The value to tween toThe duration of the tween + + + Tweens a Material's named color property to the given value, + in a way that allows other DOBlendableColor tweens to work together on the same target, + instead than fight each other as multiple DOColor would do. + Also stores the Material as the tween's target so it can be used for filtered operations + The value to tween to + The name of the material property to tween (like _Tint or _SpecColor) + The duration of the tween + + + Tweens a Material's named color property with the given ID to the given value, + in a way that allows other DOBlendableColor tweens to work together on the same target, + instead than fight each other as multiple DOColor would do. + Also stores the Material as the tween's target so it can be used for filtered operations + The value to tween to + The ID of the material property to tween (also called nameID in Unity's manual) + The duration of the tween + + + Tweens a Transform's position BY the given value (as if you chained a SetRelative), + in a way that allows other DOBlendableMove tweens to work together on the same target, + instead than fight each other as multiple DOMove would do. + Also stores the transform as the tween's target so it can be used for filtered operations + The value to tween byThe duration of the tween + If TRUE the tween will smoothly snap all values to integers + + + Tweens a Transform's localPosition BY the given value (as if you chained a SetRelative), + in a way that allows other DOBlendableMove tweens to work together on the same target, + instead than fight each other as multiple DOMove would do. + Also stores the transform as the tween's target so it can be used for filtered operations + The value to tween byThe duration of the tween + If TRUE the tween will smoothly snap all values to integers + + + EXPERIMENTAL METHOD - Tweens a Transform's rotation BY the given value (as if you chained a SetRelative), + in a way that allows other DOBlendableRotate tweens to work together on the same target, + instead than fight each other as multiple DORotate would do. + Also stores the transform as the tween's target so it can be used for filtered operations + The value to tween byThe duration of the tween + Rotation mode + + + EXPERIMENTAL METHOD - Tweens a Transform's lcoalRotation BY the given value (as if you chained a SetRelative), + in a way that allows other DOBlendableRotate tweens to work together on the same target, + instead than fight each other as multiple DORotate would do. + Also stores the transform as the tween's target so it can be used for filtered operations + The value to tween byThe duration of the tween + Rotation mode + + + Punches a Transform's localRotation BY the given value and then back to the starting one + as if it was connected to the starting rotation via an elastic. Does it in a way that allows other + DOBlendableRotate tweens to work together on the same target + The punch strength (added to the Transform's current rotation) + The duration of the tween + Indicates how much will the punch vibrate + Represents how much (0 to 1) the vector will go beyond the starting rotation when bouncing backwards. + 1 creates a full oscillation between the punch rotation and the opposite rotation, + while 0 oscillates only between the punch and the start rotation + + + Tweens a Transform's localScale BY the given value (as if you chained a SetRelative), + in a way that allows other DOBlendableScale tweens to work together on the same target, + instead than fight each other as multiple DOScale would do. + Also stores the transform as the tween's target so it can be used for filtered operations + The value to tween byThe duration of the tween + + + + Completes all tweens that have this target as a reference + (meaning tweens that were started from this target, or that had this target added as an Id) + and returns the total number of tweens completed + (meaning the tweens that don't have infinite loops and were not already complete) + + For Sequences only: if TRUE also internal Sequence callbacks will be fired, + otherwise they will be ignored + + + + Completes all tweens that have this target as a reference + (meaning tweens that were started from this target, or that had this target added as an Id) + and returns the total number of tweens completed + (meaning the tweens that don't have infinite loops and were not already complete) + + For Sequences only: if TRUE also internal Sequence callbacks will be fired, + otherwise they will be ignored + + + + Kills all tweens that have this target as a reference + (meaning tweens that were started from this target, or that had this target added as an Id) + and returns the total number of tweens killed. + + If TRUE completes the tween before killing it + + + + Kills all tweens that have this target as a reference + (meaning tweens that were started from this target, or that had this target added as an Id) + and returns the total number of tweens killed. + + If TRUE completes the tween before killing it + + + + Flips the direction (backwards if it was going forward or viceversa) of all tweens that have this target as a reference + (meaning tweens that were started from this target, or that had this target added as an Id) + and returns the total number of tweens flipped. + + + + + Flips the direction (backwards if it was going forward or viceversa) of all tweens that have this target as a reference + (meaning tweens that were started from this target, or that had this target added as an Id) + and returns the total number of tweens flipped. + + + + + Sends to the given position all tweens that have this target as a reference + (meaning tweens that were started from this target, or that had this target added as an Id) + and returns the total number of tweens involved. + + Time position to reach + (if higher than the whole tween duration the tween will simply reach its end) + If TRUE will play the tween after reaching the given position, otherwise it will pause it + + + + Sends to the given position all tweens that have this target as a reference + (meaning tweens that were started from this target, or that had this target added as an Id) + and returns the total number of tweens involved. + + Time position to reach + (if higher than the whole tween duration the tween will simply reach its end) + If TRUE will play the tween after reaching the given position, otherwise it will pause it + + + + Pauses all tweens that have this target as a reference + (meaning tweens that were started from this target, or that had this target added as an Id) + and returns the total number of tweens paused. + + + + + Pauses all tweens that have this target as a reference + (meaning tweens that were started from this target, or that had this target added as an Id) + and returns the total number of tweens paused. + + + + + Plays all tweens that have this target as a reference + (meaning tweens that were started from this target, or that had this target added as an Id) + and returns the total number of tweens played. + + + + + Plays all tweens that have this target as a reference + (meaning tweens that were started from this target, or that had this target added as an Id) + and returns the total number of tweens played. + + + + + Plays backwards all tweens that have this target as a reference + (meaning tweens that were started from this target, or that had this target added as an Id) + and returns the total number of tweens played. + + + + + Plays backwards all tweens that have this target as a reference + (meaning tweens that were started from this target, or that had this target added as an Id) + and returns the total number of tweens played. + + + + + Plays forward all tweens that have this target as a reference + (meaning tweens that were started from this target, or that had this target added as an Id) + and returns the total number of tweens played. + + + + + Plays forward all tweens that have this target as a reference + (meaning tweens that were started from this target, or that had this target added as an Id) + and returns the total number of tweens played. + + + + + Restarts all tweens that have this target as a reference + (meaning tweens that were started from this target, or that had this target added as an Id) + and returns the total number of tweens restarted. + + + + + Restarts all tweens that have this target as a reference + (meaning tweens that were started from this target, or that had this target added as an Id) + and returns the total number of tweens restarted. + + + + + Rewinds all tweens that have this target as a reference + (meaning tweens that were started from this target, or that had this target added as an Id) + and returns the total number of tweens rewinded. + + + + + Rewinds all tweens that have this target as a reference + (meaning tweens that were started from this target, or that had this target added as an Id) + and returns the total number of tweens rewinded. + + + + + Smoothly rewinds all tweens that have this target as a reference + (meaning tweens that were started from this target, or that had this target added as an Id) + and returns the total number of tweens rewinded. + + + + + Smoothly rewinds all tweens that have this target as a reference + (meaning tweens that were started from this target, or that had this target added as an Id) + and returns the total number of tweens rewinded. + + + + + Toggles the paused state (plays if it was paused, pauses if it was playing) of all tweens that have this target as a reference + (meaning tweens that were started from this target, or that had this target added as an Id) + and returns the total number of tweens involved. + + + + + Toggles the paused state (plays if it was paused, pauses if it was playing) of all tweens that have this target as a reference + (meaning tweens that were started from this target, or that had this target added as an Id) + and returns the total number of tweens involved. + + + + + This class serves only as a utility class to store tween settings to apply on multiple tweens. + It is in no way needed otherwise, since you can directly apply tween settings to a tween via chaining + + + + A variable you can eventually Clear and reuse when needed, + to avoid instantiating TweenParams objects + + + Creates a new TweenParams object, which you can use to store tween settings + to pass to multiple tweens via myTween.SetAs(myTweenParms) + + + Clears and resets this TweenParams instance using default values, + so it can be reused without instantiating another one + + + Sets the autoKill behaviour of the tween. + Has no effect if the tween has already started + If TRUE the tween will be automatically killed when complete + + + Sets an ID for the tween, which can then be used as a filter with DOTween's static methods. + The ID to assign to this tween. Can be an int, a string, an object or anything else. + + + Sets the target for the tween, which can then be used as a filter with DOTween's static methods. + IMPORTANT: use it with caution. If you just want to set an ID for the tween use SetId instead. + When using shorcuts the shortcut target is already assigned as the tween's target, + so using this method will overwrite it and prevent shortcut-operations like myTarget.DOPause from working correctly. + The target to assign to this tween. Can be an int, a string, an object or anything else. + + + Sets the looping options for the tween. + Has no effect if the tween has already started + Number of cycles to play (-1 for infinite - will be converted to 1 in case the tween is nested in a Sequence) + Loop behaviour type (default: LoopType.Restart) + + + Sets the ease of the tween. + If applied to Sequences eases the whole sequence animation + Eventual overshoot or amplitude to use with Back or Elastic easeType (default is 1.70158) + Eventual period to use with Elastic easeType (default is 0) + + + Sets the ease of the tween using an AnimationCurve. + If applied to Sequences eases the whole sequence animation + + + Sets the ease of the tween using a custom ease function. + If applied to Sequences eases the whole sequence animation + + + Sets the recycling behaviour for the tween. + If TRUE the tween will be recycled after being killed, otherwise it will be destroyed. + + + Sets the update type to the one defined in DOTween.defaultUpdateType (UpdateType.Normal unless changed) + and lets you choose if it should be independent from Unity's Time.timeScale + If TRUE the tween will ignore Unity's Time.timeScale + + + Sets the type of update (default or independent) for the tween + The type of update (default: UpdateType.Normal) + If TRUE the tween will ignore Unity's Time.timeScale + + + Sets the onStart callback for the tween. + Called the first time the tween is set in a playing state, after any eventual delay + + + Sets the onPlay callback for the tween. + Called when the tween is set in a playing state, after any eventual delay. + Also called each time the tween resumes playing from a paused state + + + Sets the onRewind callback for the tween. + Called when the tween is rewinded, + either by calling Rewind or by reaching the start position while playing backwards. + Rewinding a tween that is already rewinded will not fire this callback + + + Sets the onUpdate callback for the tween. + Called each time the tween updates + + + Sets the onStepComplete callback for the tween. + Called the moment the tween completes one loop cycle, even when going backwards + + + Sets the onComplete callback for the tween. + Called the moment the tween reaches its final forward position, loops included + + + Sets the onKill callback for the tween. + Called the moment the tween is killed + + + Sets the onWaypointChange callback for the tween. + Called when a path tween reaches a new waypoint + + + Sets a delayed startup for the tween. + Has no effect on Sequences or if the tween has already started + + + If isRelative is TRUE sets the tween as relative + (the endValue will be calculated as startValue + endValue instead than being used directly). + Has no effect on Sequences or if the tween has already started + + + If isSpeedBased is TRUE sets the tween as speed based + (the duration will represent the number of units the tween moves x second). + Has no effect on Sequences, nested tweens, or if the tween has already started + + + + Methods that extend Tween objects and allow to set their parameters + + + + Sets the autoKill behaviour of the tween to TRUE. + Has no effect if the tween has already started or if it's added to a Sequence + + + Sets the autoKill behaviour of the tween. + Has no effect if the tween has already started or if it's added to a Sequence + If TRUE the tween will be automatically killed when complete + + + Sets an ID for the tween (), which can then be used as a filter with DOTween's static methods. + The ID to assign to this tween. Can be an int, a string, an object or anything else. + + + Sets a string ID for the tween (), which can then be used as a filter with DOTween's static methods. + Filtering via string is 2X faster than using an object as an ID (using the alternate obejct overload) + The string ID to assign to this tween. + + + Sets an int ID for the tween (), which can then be used as a filter with DOTween's static methods. + Filtering via int is 4X faster than via object, 2X faster than via string (using the alternate object/string overloads) + The int ID to assign to this tween. + + + Allows to link this tween to a GameObject + so that it will be automatically killed when the GameObject is destroyed. + Has no effect if the tween is added to a Sequence + The link target (unrelated to the target set via SetTarget) + + + Allows to link this tween to a GameObject and assign a behaviour depending on it. + This will also automatically kill the tween when the GameObject is destroyed. + Has no effect if the tween is added to a Sequence + The link target (unrelated to the target set via SetTarget) + The behaviour to use ( is always evaluated even if you choose another one) + + + Sets the target for the tween, which can then be used as a filter with DOTween's static methods. + IMPORTANT: use it with caution. If you just want to set an ID for the tween use SetId instead. + When using shorcuts the shortcut target is already assigned as the tween's target, + so using this method will overwrite it and prevent shortcut-operations like myTarget.DOPause from working correctly. + The target to assign to this tween. Can be an int, a string, an object or anything else. + + + Sets the looping options for the tween. + Has no effect if the tween has already started + Number of cycles to play (-1 for infinite - will be converted to 1 in case the tween is nested in a Sequence) + + + Sets the looping options for the tween. + Has no effect if the tween has already started + Number of cycles to play (-1 for infinite - will be converted to 1 in case the tween is nested in a Sequence) + Loop behaviour type (default: LoopType.Restart) + + + Sets the ease of the tween. + If applied to Sequences eases the whole sequence animation + + + Sets the ease of the tween. + If applied to Sequences eases the whole sequence animation + + Eventual overshoot to use with Back or Flash ease (default is 1.70158 - 1 for Flash). + In case of Flash ease it must be an intenger and sets the total number of flashes that will happen. + Using an even number will complete the tween on the starting value, while an odd one will complete it on the end value. + + + + Sets the ease of the tween. + If applied to Sequences eases the whole sequence animation + Eventual amplitude to use with Elastic easeType or overshoot to use with Flash easeType (default is 1.70158 - 1 for Flash). + In case of Flash ease it must be an integer and sets the total number of flashes that will happen. + Using an even number will complete the tween on the starting value, while an odd one will complete it on the end value. + + Eventual period to use with Elastic or Flash easeType (default is 0). + In case of Flash ease it indicates the power in time of the ease, and must be between -1 and 1. + 0 is balanced, 1 weakens the ease with time, -1 starts the ease weakened and gives it power towards the end. + + + + Sets the ease of the tween using an AnimationCurve. + If applied to Sequences eases the whole sequence animation + + + Sets the ease of the tween using a custom ease function (which must return a value between 0 and 1). + If applied to Sequences eases the whole sequence animation + + + Allows the tween to be recycled after being killed. + + + Sets the recycling behaviour for the tween. + If TRUE the tween will be recycled after being killed, otherwise it will be destroyed. + + + Sets the update type to UpdateType.Normal and lets you choose if it should be independent from Unity's Time.timeScale + If TRUE the tween will ignore Unity's Time.timeScale + + + Sets the type of update for the tween + The type of update (defalt: UpdateType.Normal) + + + Sets the type of update for the tween and lets you choose if it should be independent from Unity's Time.timeScale + The type of update + If TRUE the tween will ignore Unity's Time.timeScale + + + Sets the onStart callback for the tween, clearing any previous onStart callback that was set. + Called the first time the tween is set in a playing state, after any eventual delay + + + Sets the onPlay callback for the tween, clearing any previous onPlay callback that was set. + Called when the tween is set in a playing state, after any eventual delay. + Also called each time the tween resumes playing from a paused state + + + Sets the onPause callback for the tween, clearing any previous onPause callback that was set. + Called when the tween state changes from playing to paused. + If the tween has autoKill set to FALSE, this is called also when the tween reaches completion. + + + Sets the onRewind callback for the tween, clearing any previous onRewind callback that was set. + Called when the tween is rewinded, + either by calling Rewind or by reaching the start position while playing backwards. + Rewinding a tween that is already rewinded will not fire this callback + + + Sets the onUpdate callback for the tween, clearing any previous onUpdate callback that was set. + Called each time the tween updates + + + Sets the onStepComplete callback for the tween, clearing any previous onStepComplete callback that was set. + Called the moment the tween completes one loop cycle, even when going backwards + + + Sets the onComplete callback for the tween, clearing any previous onComplete callback that was set. + Called the moment the tween reaches its final forward position, loops included + + + Sets the onKill callback for the tween, clearing any previous onKill callback that was set. + Called the moment the tween is killed + + + Sets the onWaypointChange callback for the tween, clearing any previous onWaypointChange callback that was set. + Called when a path tween's current waypoint changes + + + Sets the parameters of the tween (id, ease, loops, delay, timeScale, callbacks, etc) as the parameters of the given one. + Doesn't copy specific SetOptions settings: those will need to be applied manually each time. + Has no effect if the tween has already started. + NOTE: the tween's target will not be changed + Tween from which to copy the parameters + + + Sets the parameters of the tween (id, ease, loops, delay, timeScale, callbacks, etc) as the parameters of the given TweenParams. + Has no effect if the tween has already started. + TweenParams from which to copy the parameters + + + Adds the given tween to the end of the Sequence. + Has no effect if the Sequence has already started + The tween to append + + + Adds the given tween to the beginning of the Sequence, pushing forward the other nested content. + Has no effect if the Sequence has already started + The tween to prepend + + + Inserts the given tween at the same time position of the last tween, callback or intervale added to the Sequence. + Note that, in case of a Join after an interval, the insertion time will be the time where the interval starts, not where it finishes. + Has no effect if the Sequence has already started + + + Inserts the given tween at the given time position in the Sequence, + automatically adding an interval if needed. + Has no effect if the Sequence has already started + The time position where the tween will be placed + The tween to insert + + + Adds the given interval to the end of the Sequence. + Has no effect if the Sequence has already started + The interval duration + + + Adds the given interval to the beginning of the Sequence, pushing forward the other nested content. + Has no effect if the Sequence has already started + The interval duration + + + Adds the given callback to the end of the Sequence. + Has no effect if the Sequence has already started + The callback to append + + + Adds the given callback to the beginning of the Sequence, pushing forward the other nested content. + Has no effect if the Sequence has already started + The callback to prepend + + + Inserts the given callback at the given time position in the Sequence, + automatically adding an interval if needed. + Has no effect if the Sequence has already started + The time position where the callback will be placed + The callback to insert + + + Changes a TO tween into a FROM tween: sets the current target's position as the tween's endValue + then immediately sends the target to the previously set endValue. + + + Changes a TO tween into a FROM tween: sets the current target's position as the tween's endValue + then immediately sends the target to the previously set endValue. + If TRUE the FROM value will be calculated as relative to the current one + + + Changes a TO tween into a FROM tween: sets the tween's starting value to the given one + and eventually sets the tween's target to that value immediately. + Value to start from + If TRUE sets the target to from value immediately, otherwise waits for the tween to start + + + Changes a TO tween into a FROM tween: sets the tween's starting value to the given one + and eventually sets the tween's target to that value immediately. + Alpha value to start from (in case of Fade tweens) + If TRUE sets the target to from value immediately, otherwise waits for the tween to start + + + Changes a TO tween into a FROM tween: sets the tween's starting value to the given one + and eventually sets the tween's target to that value immediately. + Value to start from (in case of Vector tweens that act on a single coordinate or scale tweens) + If TRUE sets the target to from value immediately, otherwise waits for the tween to start + + + Sets a delayed startup for the tween. + In case of Sequences behaves the same as , + which means the delay will repeat in case of loops (while with tweens it's ignored after the first loop cycle). + Has no effect on Sequences or if the tween has already started + + + Sets the tween as relative + (the endValue will be calculated as startValue + endValue instead than being used directly). + Has no effect on Sequences or if the tween has already started + + + If isRelative is TRUE sets the tween as relative + (the endValue will be calculated as startValue + endValue instead than being used directly). + Has no effect on Sequences or if the tween has already started + + + If isSpeedBased is TRUE sets the tween as speed based + (the duration will represent the number of units the tween moves x second). + Has no effect on Sequences, nested tweens, or if the tween has already started + + + If isSpeedBased is TRUE sets the tween as speed based + (the duration will represent the number of units the tween moves x second). + Has no effect on Sequences, nested tweens, or if the tween has already started + + + Options for float tweens + If TRUE the tween will smoothly snap all values to integers + + + Options for Vector2 tweens + If TRUE the tween will smoothly snap all values to integers + + + Options for Vector2 tweens + Selecting an axis will tween the vector only on that axis, leaving the others untouched + If TRUE the tween will smoothly snap all values to integers + + + Options for Vector3 tweens + If TRUE the tween will smoothly snap all values to integers + + + Options for Vector3 tweens + Selecting an axis will tween the vector only on that axis, leaving the others untouched + If TRUE the tween will smoothly snap all values to integers + + + Options for Vector4 tweens + If TRUE the tween will smoothly snap all values to integers + + + Options for Vector4 tweens + Selecting an axis will tween the vector only on that axis, leaving the others untouched + If TRUE the tween will smoothly snap all values to integers + + + Options for Quaternion tweens + If TRUE (default) the rotation will take the shortest route, and will not rotate more than 360°. + If FALSE the rotation will be fully accounted. Is always FALSE if the tween is set as relative + + + Options for Color tweens + If TRUE only the alpha value of the color will be tweened + + + Options for Vector4 tweens + If TRUE the tween will smoothly snap all values to integers + + + Options for Vector4 tweens + If TRUE, rich text will be interpreted correctly while animated, + otherwise all tags will be considered as normal text + The type of scramble to use, if any + A string containing the characters to use for scrambling. + Use as many characters as possible (minimum 10) because DOTween uses a fast scramble mode which gives better results with more characters. + Leave it to NULL to use default ones + + + Options for Vector3Array tweens + If TRUE the tween will smoothly snap all values to integers + + + Options for Vector3Array tweens + If TRUE the tween will smoothly snap all values to integers + + + Options for Path tweens (created via the DOPath shortcut) + The eventual movement axis to lock. You can input multiple axis if you separate them like this: + AxisConstrain.X | AxisConstraint.Y + The eventual rotation axis to lock. You can input multiple axis if you separate them like this: + AxisConstrain.X | AxisConstraint.Y + + + Options for Path tweens (created via the DOPath shortcut) + If TRUE the path will be automatically closed + The eventual movement axis to lock. You can input multiple axis if you separate them like this: + AxisConstrain.X | AxisConstraint.Y + The eventual rotation axis to lock. You can input multiple axis if you separate them like this: + AxisConstrain.X | AxisConstraint.Y + + + Additional LookAt options for Path tweens (created via the DOPath shortcut). + Orients the target towards the given position. + Must be chained directly to the tween creation method or to a SetOptions + The position to look at + The eventual direction to consider as "forward". + If left to NULL defaults to the regular forward side of the transform + The vector that defines in which direction up is (default: Vector3.up) + + + Additional LookAt options for Path tweens (created via the DOPath shortcut). + Orients the target towards another transform. + Must be chained directly to the tween creation method or to a SetOptions + The transform to look at + The eventual direction to consider as "forward". + If left to NULL defaults to the regular forward side of the transform + The vector that defines in which direction up is (default: Vector3.up) + + + Additional LookAt options for Path tweens (created via the DOPath shortcut). + Orients the target to the path, with the given lookAhead. + Must be chained directly to the tween creation method or to a SetOptions + The percentage of lookAhead to use (0 to 1) + The eventual direction to consider as "forward". + If left to NULL defaults to the regular forward side of the transform + The vector that defines in which direction up is (default: Vector3.up) + + + + Types of log behaviours + + + + Log only warnings and errors + + + Log warnings, errors and additional infos + + + Log only errors + + + + Indicates either a Tweener or a Sequence + + + + TimeScale for the tween + + + If TRUE the tween wil go backwards + + + Object ID (usable for filtering with DOTween static methods). Can be anything except a string or an int + (use or for those) + + + String ID (usable for filtering with DOTween static methods). 2X faster than using an object id + + + Int ID (usable for filtering with DOTween static methods). 4X faster than using an object id, 2X faster than using a string id. + Default is -999 so avoid using an ID like that or it will capture all unset intIds + + + Tween target (usable for filtering with DOTween static methods). Automatically set by tween creation shortcuts + + + Called when the tween is set in a playing state, after any eventual delay. + Also called each time the tween resumes playing from a paused state + + + Called when the tween state changes from playing to paused. + If the tween has autoKill set to FALSE, this is called also when the tween reaches completion. + + + Called when the tween is rewinded, + either by calling Rewind or by reaching the start position while playing backwards. + Rewinding a tween that is already rewinded will not fire this callback + + + Called each time the tween updates + + + Called the moment the tween completes one loop cycle + + + Called the moment the tween reaches completion (loops included) + + + Called the moment the tween is killed + + + Called when a path tween's current waypoint changes + + + Tweeners-only (ignored by Sequences), returns TRUE if the tween was set as relative + + + + Set by SetTarget if DOTween's Debug Mode is on (see DOTween Utility Panel -> "Store GameObject's ID" debug option + + + + FALSE when tween is (or should be) despawned - set only by TweenManager + + + Gets and sets the time position (loops included, delays excluded) of the tween + + + TRUE after the tween was set in a play state at least once, AFTER any delay is elapsed + + + Time position within a single loop cycle + + + + Animates a single value + + + + Changes the start value of a tween and rewinds it (without pausing it). + Has no effect with tweens that are inside Sequences + The new start value + If bigger than 0 applies it as the new tween duration + + + Changes the end value of a tween and rewinds it (without pausing it). + Has no effect with tweens that are inside Sequences + The new end value + If bigger than 0 applies it as the new tween duration + If TRUE the start value will become the current target's value, otherwise it will stay the same + + + Changes the end value of a tween and rewinds it (without pausing it). + Has no effect with tweens that are inside Sequences + The new end value + If TRUE the start value will become the current target's value, otherwise it will stay the same + + + Changes the start and end value of a tween and rewinds it (without pausing it). + Has no effect with tweens that are inside Sequences + The new start value + The new end value + If bigger than 0 applies it as the new tween duration + + + + Used internally + + + + + Update type + + + + Updates every frame during Update calls + + + Updates every frame during LateUpdate calls + + + Updates using FixedUpdate calls + + + Updates using manual update calls + + + diff --git a/Assets/DOTween/DOTween.XML.meta b/Assets/DOTween/DOTween.XML.meta new file mode 100644 index 0000000..4d3fad1 --- /dev/null +++ b/Assets/DOTween/DOTween.XML.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: de522feaea841e644aa89559ebf39634 +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/DOTween/DOTween.dll b/Assets/DOTween/DOTween.dll new file mode 100644 index 0000000..55228c2 Binary files /dev/null and b/Assets/DOTween/DOTween.dll differ diff --git a/Assets/DOTween/DOTween.dll.meta b/Assets/DOTween/DOTween.dll.meta new file mode 100644 index 0000000..e901c61 --- /dev/null +++ b/Assets/DOTween/DOTween.dll.meta @@ -0,0 +1,33 @@ +fileFormatVersion: 2 +guid: 1947c939544078f4eaf1f9bbeea7c70b +PluginImporter: + externalObjects: {} + serializedVersion: 2 + iconMap: {} + executionOrder: {} + defineConstraints: [] + isPreloaded: 0 + isOverridable: 0 + isExplicitlyReferenced: 0 + validateReferences: 1 + platformData: + - first: + Any: + second: + enabled: 1 + settings: {} + - first: + Editor: Editor + second: + enabled: 0 + settings: + DefaultValueInitialized: true + - first: + Windows Store Apps: WindowsStoreApps + second: + enabled: 0 + settings: + CPU: AnyCPU + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/DOTween/Editor.meta b/Assets/DOTween/Editor.meta new file mode 100644 index 0000000..5600315 --- /dev/null +++ b/Assets/DOTween/Editor.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ec408a045b1c1a640b8f616be8f10b2d +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/DOTween/Editor/DOTweenEditor.XML b/Assets/DOTween/Editor/DOTweenEditor.XML new file mode 100644 index 0000000..92ab578 --- /dev/null +++ b/Assets/DOTween/Editor/DOTweenEditor.XML @@ -0,0 +1,98 @@ + + + + DOTweenEditor + + + + + Starts the update loop of tween in the editor. Has no effect during playMode. + + Eventual callback to call after every update + + + + Stops the update loop and clears the onPreviewUpdated callback. + + If TRUE also resets the tweened objects to their original state + + + + Readies the tween for editor preview by setting its UpdateType to Manual plus eventual extra settings. + + The tween to ready + If TRUE (recommended) removes all callbacks (OnComplete/Rewind/etc) + If TRUE prevents the tween from being auto-killed at completion + If TRUE starts playing the tween immediately + + + + Checks that the given editor texture use the correct import settings, + and applies them if they're incorrect. + + + + + Returns TRUE if setup is required + + + + + Returns TRUE if the file/directory at the given path exists. + + Path, relative to Unity's project folder + + + + + Converts the given project-relative path to a full path, + with backward (\) slashes). + + + + + Converts the given full path to a path usable with AssetDatabase methods + (relative to Unity's project folder, and with the correct Unity forward (/) slashes). + + + + + Connects to a asset. + If the asset already exists at the given path, loads it and returns it. + Otherwise, either returns NULL or automatically creates it before loading and returning it + (depending on the given parameters). + + Asset type + File path (relative to Unity's project folder) + If TRUE and the requested asset doesn't exist, forces its creation + + + + Full path for the given loaded assembly, assembly file included + + + + + Adds the given global define if it's not already present + + + + + Removes the given global define if it's present + + + + + Returns TRUE if the given global define is present in all the + or only in the given , depending on passed parameters. + + + to use. Leave NULL to check in all of them. + + + + Not used as menu item anymore, but as a utiity function + + + + diff --git a/Assets/DOTween/Editor/DOTweenEditor.XML.meta b/Assets/DOTween/Editor/DOTweenEditor.XML.meta new file mode 100644 index 0000000..749b2fc --- /dev/null +++ b/Assets/DOTween/Editor/DOTweenEditor.XML.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 21f0d79cf4d97fe49b387b69352b1efe +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/DOTween/Editor/DOTweenEditor.dll b/Assets/DOTween/Editor/DOTweenEditor.dll new file mode 100644 index 0000000..267e41f Binary files /dev/null and b/Assets/DOTween/Editor/DOTweenEditor.dll differ diff --git a/Assets/DOTween/Editor/DOTweenEditor.dll.meta b/Assets/DOTween/Editor/DOTweenEditor.dll.meta new file mode 100644 index 0000000..8d07aec --- /dev/null +++ b/Assets/DOTween/Editor/DOTweenEditor.dll.meta @@ -0,0 +1,33 @@ +fileFormatVersion: 2 +guid: ea442bcf9b9658d46ad5bb8a40bf300f +PluginImporter: + externalObjects: {} + serializedVersion: 2 + iconMap: {} + executionOrder: {} + defineConstraints: [] + isPreloaded: 0 + isOverridable: 0 + isExplicitlyReferenced: 0 + validateReferences: 1 + platformData: + - first: + Any: + second: + enabled: 0 + settings: {} + - first: + Editor: Editor + second: + enabled: 1 + settings: + DefaultValueInitialized: true + - first: + Windows Store Apps: WindowsStoreApps + second: + enabled: 0 + settings: + CPU: AnyCPU + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/DOTween/Editor/Imgs.meta b/Assets/DOTween/Editor/Imgs.meta new file mode 100644 index 0000000..66f8f55 --- /dev/null +++ b/Assets/DOTween/Editor/Imgs.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 9201e63715e5ed34ebbbe80d74d77a3f +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/DOTween/Editor/Imgs/DOTweenIcon.png b/Assets/DOTween/Editor/Imgs/DOTweenIcon.png new file mode 100644 index 0000000..d06fc7c Binary files /dev/null and b/Assets/DOTween/Editor/Imgs/DOTweenIcon.png differ diff --git a/Assets/DOTween/Editor/Imgs/DOTweenIcon.png.meta b/Assets/DOTween/Editor/Imgs/DOTweenIcon.png.meta new file mode 100644 index 0000000..85df407 --- /dev/null +++ b/Assets/DOTween/Editor/Imgs/DOTweenIcon.png.meta @@ -0,0 +1,139 @@ +fileFormatVersion: 2 +guid: 4e108ea3aa14919469febf377e75a820 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 10 + 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 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: 2 + mipBias: -100 + 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 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 8192 + 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: 8192 + 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: 8192 + 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: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Windows Store Apps + maxTextureSize: 8192 + 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: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/DOTween/Editor/Imgs/Footer.png b/Assets/DOTween/Editor/Imgs/Footer.png new file mode 100644 index 0000000..e29d02f Binary files /dev/null and b/Assets/DOTween/Editor/Imgs/Footer.png differ diff --git a/Assets/DOTween/Editor/Imgs/Footer.png.meta b/Assets/DOTween/Editor/Imgs/Footer.png.meta new file mode 100644 index 0000000..3080841 --- /dev/null +++ b/Assets/DOTween/Editor/Imgs/Footer.png.meta @@ -0,0 +1,139 @@ +fileFormatVersion: 2 +guid: 446cd23a4e6d2ae4fbb720ae0ed5c5fb +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 10 + 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 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: -100 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + 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: 1 + spriteTessellationDetail: -1 + textureType: 2 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 256 + 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: 8192 + 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: 8192 + 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: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Windows Store Apps + maxTextureSize: 8192 + 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: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/DOTween/Editor/Imgs/Footer_dark.png b/Assets/DOTween/Editor/Imgs/Footer_dark.png new file mode 100644 index 0000000..e48db5e Binary files /dev/null and b/Assets/DOTween/Editor/Imgs/Footer_dark.png differ diff --git a/Assets/DOTween/Editor/Imgs/Footer_dark.png.meta b/Assets/DOTween/Editor/Imgs/Footer_dark.png.meta new file mode 100644 index 0000000..805959b --- /dev/null +++ b/Assets/DOTween/Editor/Imgs/Footer_dark.png.meta @@ -0,0 +1,139 @@ +fileFormatVersion: 2 +guid: e28699688867d424d98529800cdbbc41 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 10 + 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 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: 2 + mipBias: -100 + 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 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 8192 + 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: 8192 + 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: 8192 + 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: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Windows Store Apps + maxTextureSize: 8192 + 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: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/DOTween/Editor/Imgs/Header.jpg b/Assets/DOTween/Editor/Imgs/Header.jpg new file mode 100644 index 0000000..4d710d7 Binary files /dev/null and b/Assets/DOTween/Editor/Imgs/Header.jpg differ diff --git a/Assets/DOTween/Editor/Imgs/Header.jpg.meta b/Assets/DOTween/Editor/Imgs/Header.jpg.meta new file mode 100644 index 0000000..a56e933 --- /dev/null +++ b/Assets/DOTween/Editor/Imgs/Header.jpg.meta @@ -0,0 +1,139 @@ +fileFormatVersion: 2 +guid: 150bc95d22948304e8c36371f54f4237 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 10 + 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 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: -100 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + 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: 1 + spriteTessellationDetail: -1 + textureType: 2 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 512 + 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: 8192 + 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: 8192 + 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: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Windows Store Apps + maxTextureSize: 8192 + 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: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/DOTween/Modules.meta b/Assets/DOTween/Modules.meta new file mode 100644 index 0000000..95ccef9 --- /dev/null +++ b/Assets/DOTween/Modules.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ddeb05ead37db0941a5eb3d2d38e93cf +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/DOTween/Modules/DOTweenModuleAudio.cs b/Assets/DOTween/Modules/DOTweenModuleAudio.cs new file mode 100644 index 0000000..c195b6c --- /dev/null +++ b/Assets/DOTween/Modules/DOTweenModuleAudio.cs @@ -0,0 +1,202 @@ +// Author: Daniele Giardini - http://www.demigiant.com +// Created: 2018/07/13 + +#if true // MODULE_MARKER +using System; +using DG.Tweening.Core; +using DG.Tweening.Plugins.Options; +using UnityEngine; +#if UNITY_5 || UNITY_2017_1_OR_NEWER +using UnityEngine.Audio; // Required for AudioMixer +#endif + +#pragma warning disable 1591 +namespace DG.Tweening +{ + public static class DOTweenModuleAudio + { + #region Shortcuts + + #region Audio + + /// Tweens an AudioSource's volume to the given value. + /// Also stores the AudioSource as the tween's target so it can be used for filtered operations + /// The end value to reach (0 to 1)The duration of the tween + public static TweenerCore DOFade(this AudioSource target, float endValue, float duration) + { + if (endValue < 0) endValue = 0; + else if (endValue > 1) endValue = 1; + TweenerCore t = DOTween.To(() => target.volume, x => target.volume = x, endValue, duration); + t.SetTarget(target); + return t; + } + + /// Tweens an AudioSource's pitch to the given value. + /// Also stores the AudioSource as the tween's target so it can be used for filtered operations + /// The end value to reachThe duration of the tween + public static TweenerCore DOPitch(this AudioSource target, float endValue, float duration) + { + TweenerCore t = DOTween.To(() => target.pitch, x => target.pitch = x, endValue, duration); + t.SetTarget(target); + return t; + } + + #endregion + +#if UNITY_5 || UNITY_2017_1_OR_NEWER + #region AudioMixer (Unity 5 or Newer) + + /// Tweens an AudioMixer's exposed float to the given value. + /// Also stores the AudioMixer as the tween's target so it can be used for filtered operations. + /// Note that you need to manually expose a float in an AudioMixerGroup in order to be able to tween it from an AudioMixer. + /// Name given to the exposed float to set + /// The end value to reachThe duration of the tween + public static TweenerCore DOSetFloat(this AudioMixer target, string floatName, float endValue, float duration) + { + TweenerCore t = DOTween.To(()=> { + float currVal; + target.GetFloat(floatName, out currVal); + return currVal; + }, x=> target.SetFloat(floatName, x), endValue, duration); + t.SetTarget(target); + return t; + } + + #region Operation Shortcuts + + /// + /// Completes all tweens that have this target as a reference + /// (meaning tweens that were started from this target, or that had this target added as an Id) + /// and returns the total number of tweens completed + /// (meaning the tweens that don't have infinite loops and were not already complete) + /// + /// For Sequences only: if TRUE also internal Sequence callbacks will be fired, + /// otherwise they will be ignored + public static int DOComplete(this AudioMixer target, bool withCallbacks = false) + { + return DOTween.Complete(target, withCallbacks); + } + + /// + /// Kills all tweens that have this target as a reference + /// (meaning tweens that were started from this target, or that had this target added as an Id) + /// and returns the total number of tweens killed. + /// + /// If TRUE completes the tween before killing it + public static int DOKill(this AudioMixer target, bool complete = false) + { + return DOTween.Kill(target, complete); + } + + /// + /// Flips the direction (backwards if it was going forward or viceversa) of all tweens that have this target as a reference + /// (meaning tweens that were started from this target, or that had this target added as an Id) + /// and returns the total number of tweens flipped. + /// + public static int DOFlip(this AudioMixer target) + { + return DOTween.Flip(target); + } + + /// + /// Sends to the given position all tweens that have this target as a reference + /// (meaning tweens that were started from this target, or that had this target added as an Id) + /// and returns the total number of tweens involved. + /// + /// Time position to reach + /// (if higher than the whole tween duration the tween will simply reach its end) + /// If TRUE will play the tween after reaching the given position, otherwise it will pause it + public static int DOGoto(this AudioMixer target, float to, bool andPlay = false) + { + return DOTween.Goto(target, to, andPlay); + } + + /// + /// Pauses all tweens that have this target as a reference + /// (meaning tweens that were started from this target, or that had this target added as an Id) + /// and returns the total number of tweens paused. + /// + public static int DOPause(this AudioMixer target) + { + return DOTween.Pause(target); + } + + /// + /// Plays all tweens that have this target as a reference + /// (meaning tweens that were started from this target, or that had this target added as an Id) + /// and returns the total number of tweens played. + /// + public static int DOPlay(this AudioMixer target) + { + return DOTween.Play(target); + } + + /// + /// Plays backwards all tweens that have this target as a reference + /// (meaning tweens that were started from this target, or that had this target added as an Id) + /// and returns the total number of tweens played. + /// + public static int DOPlayBackwards(this AudioMixer target) + { + return DOTween.PlayBackwards(target); + } + + /// + /// Plays forward all tweens that have this target as a reference + /// (meaning tweens that were started from this target, or that had this target added as an Id) + /// and returns the total number of tweens played. + /// + public static int DOPlayForward(this AudioMixer target) + { + return DOTween.PlayForward(target); + } + + /// + /// Restarts all tweens that have this target as a reference + /// (meaning tweens that were started from this target, or that had this target added as an Id) + /// and returns the total number of tweens restarted. + /// + public static int DORestart(this AudioMixer target) + { + return DOTween.Restart(target); + } + + /// + /// Rewinds all tweens that have this target as a reference + /// (meaning tweens that were started from this target, or that had this target added as an Id) + /// and returns the total number of tweens rewinded. + /// + public static int DORewind(this AudioMixer target) + { + return DOTween.Rewind(target); + } + + /// + /// Smoothly rewinds all tweens that have this target as a reference + /// (meaning tweens that were started from this target, or that had this target added as an Id) + /// and returns the total number of tweens rewinded. + /// + public static int DOSmoothRewind(this AudioMixer target) + { + return DOTween.SmoothRewind(target); + } + + /// + /// Toggles the paused state (plays if it was paused, pauses if it was playing) of all tweens that have this target as a reference + /// (meaning tweens that were started from this target, or that had this target added as an Id) + /// and returns the total number of tweens involved. + /// + public static int DOTogglePause(this AudioMixer target) + { + return DOTween.TogglePause(target); + } + + #endregion + + #endregion +#endif + + #endregion + } +} +#endif diff --git a/Assets/DOTween/Modules/DOTweenModuleAudio.cs.meta b/Assets/DOTween/Modules/DOTweenModuleAudio.cs.meta new file mode 100644 index 0000000..5f632ab --- /dev/null +++ b/Assets/DOTween/Modules/DOTweenModuleAudio.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 445d1107e65b0c044b78d234a44fe80c +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/DOTween/Modules/DOTweenModulePhysics.cs b/Assets/DOTween/Modules/DOTweenModulePhysics.cs new file mode 100644 index 0000000..a1a1cb9 --- /dev/null +++ b/Assets/DOTween/Modules/DOTweenModulePhysics.cs @@ -0,0 +1,216 @@ +// Author: Daniele Giardini - http://www.demigiant.com +// Created: 2018/07/13 + +#if true // MODULE_MARKER +using System; +using DG.Tweening.Core; +using DG.Tweening.Core.Enums; +using DG.Tweening.Plugins; +using DG.Tweening.Plugins.Core.PathCore; +using DG.Tweening.Plugins.Options; +using UnityEngine; + +#pragma warning disable 1591 +namespace DG.Tweening +{ + public static class DOTweenModulePhysics + { + #region Shortcuts + + #region Rigidbody + + /// Tweens a Rigidbody's position to the given value. + /// Also stores the rigidbody as the tween's target so it can be used for filtered operations + /// The end value to reachThe duration of the tween + /// If TRUE the tween will smoothly snap all values to integers + public static TweenerCore DOMove(this Rigidbody target, Vector3 endValue, float duration, bool snapping = false) + { + TweenerCore t = DOTween.To(() => target.position, target.MovePosition, endValue, duration); + t.SetOptions(snapping).SetTarget(target); + return t; + } + + /// Tweens a Rigidbody's X position to the given value. + /// Also stores the rigidbody as the tween's target so it can be used for filtered operations + /// The end value to reachThe duration of the tween + /// If TRUE the tween will smoothly snap all values to integers + public static TweenerCore DOMoveX(this Rigidbody target, float endValue, float duration, bool snapping = false) + { + TweenerCore t = DOTween.To(() => target.position, target.MovePosition, new Vector3(endValue, 0, 0), duration); + t.SetOptions(AxisConstraint.X, snapping).SetTarget(target); + return t; + } + + /// Tweens a Rigidbody's Y position to the given value. + /// Also stores the rigidbody as the tween's target so it can be used for filtered operations + /// The end value to reachThe duration of the tween + /// If TRUE the tween will smoothly snap all values to integers + public static TweenerCore DOMoveY(this Rigidbody target, float endValue, float duration, bool snapping = false) + { + TweenerCore t = DOTween.To(() => target.position, target.MovePosition, new Vector3(0, endValue, 0), duration); + t.SetOptions(AxisConstraint.Y, snapping).SetTarget(target); + return t; + } + + /// Tweens a Rigidbody's Z position to the given value. + /// Also stores the rigidbody as the tween's target so it can be used for filtered operations + /// The end value to reachThe duration of the tween + /// If TRUE the tween will smoothly snap all values to integers + public static TweenerCore DOMoveZ(this Rigidbody target, float endValue, float duration, bool snapping = false) + { + TweenerCore t = DOTween.To(() => target.position, target.MovePosition, new Vector3(0, 0, endValue), duration); + t.SetOptions(AxisConstraint.Z, snapping).SetTarget(target); + return t; + } + + /// Tweens a Rigidbody's rotation to the given value. + /// Also stores the rigidbody as the tween's target so it can be used for filtered operations + /// The end value to reachThe duration of the tween + /// Rotation mode + public static TweenerCore DORotate(this Rigidbody target, Vector3 endValue, float duration, RotateMode mode = RotateMode.Fast) + { + TweenerCore t = DOTween.To(() => target.rotation, target.MoveRotation, endValue, duration); + t.SetTarget(target); + t.plugOptions.rotateMode = mode; + return t; + } + + /// Tweens a Rigidbody's rotation so that it will look towards the given position. + /// Also stores the rigidbody as the tween's target so it can be used for filtered operations + /// The position to look atThe duration of the tween + /// Eventual axis constraint for the rotation + /// The vector that defines in which direction up is (default: Vector3.up) + public static TweenerCore DOLookAt(this Rigidbody target, Vector3 towards, float duration, AxisConstraint axisConstraint = AxisConstraint.None, Vector3? up = null) + { + TweenerCore t = DOTween.To(() => target.rotation, target.MoveRotation, towards, duration) + .SetTarget(target).SetSpecialStartupMode(SpecialStartupMode.SetLookAt); + t.plugOptions.axisConstraint = axisConstraint; + t.plugOptions.up = (up == null) ? Vector3.up : (Vector3)up; + return t; + } + + #region Special + + /// Tweens a Rigidbody's position to the given value, while also applying a jump effect along the Y axis. + /// Returns a Sequence instead of a Tweener. + /// Also stores the Rigidbody as the tween's target so it can be used for filtered operations + /// The end value to reach + /// Power of the jump (the max height of the jump is represented by this plus the final Y offset) + /// Total number of jumps + /// The duration of the tween + /// If TRUE the tween will smoothly snap all values to integers + public static Sequence DOJump(this Rigidbody target, Vector3 endValue, float jumpPower, int numJumps, float duration, bool snapping = false) + { + if (numJumps < 1) numJumps = 1; + float startPosY = 0; + float offsetY = -1; + bool offsetYSet = false; + Sequence s = DOTween.Sequence(); + Tween yTween = DOTween.To(() => target.position, target.MovePosition, new Vector3(0, jumpPower, 0), duration / (numJumps * 2)) + .SetOptions(AxisConstraint.Y, snapping).SetEase(Ease.OutQuad).SetRelative() + .SetLoops(numJumps * 2, LoopType.Yoyo) + .OnStart(() => startPosY = target.position.y); + s.Append(DOTween.To(() => target.position, target.MovePosition, new Vector3(endValue.x, 0, 0), duration) + .SetOptions(AxisConstraint.X, snapping).SetEase(Ease.Linear) + ).Join(DOTween.To(() => target.position, target.MovePosition, new Vector3(0, 0, endValue.z), duration) + .SetOptions(AxisConstraint.Z, snapping).SetEase(Ease.Linear) + ).Join(yTween) + .SetTarget(target).SetEase(DOTween.defaultEaseType); + yTween.OnUpdate(() => { + if (!offsetYSet) { + offsetYSet = true; + offsetY = s.isRelative ? endValue.y : endValue.y - startPosY; + } + Vector3 pos = target.position; + pos.y += DOVirtual.EasedValue(0, offsetY, yTween.ElapsedPercentage(), Ease.OutQuad); + target.MovePosition(pos); + }); + return s; + } + + /// Tweens a Rigidbody's position through the given path waypoints, using the chosen path algorithm. + /// Also stores the Rigidbody as the tween's target so it can be used for filtered operations. + /// NOTE: to tween a rigidbody correctly it should be set to kinematic at least while being tweened. + /// BEWARE: doesn't work on Windows Phone store (waiting for Unity to fix their own bug). + /// If you plan to publish there you should use a regular transform.DOPath. + /// The waypoints to go through + /// The duration of the tween + /// The type of path: Linear (straight path) or CatmullRom (curved CatmullRom path) + /// The path mode: 3D, side-scroller 2D, top-down 2D + /// The resolution of the path (useless in case of Linear paths): higher resolutions make for more detailed curved paths but are more expensive. + /// Defaults to 10, but a value of 5 is usually enough if you don't have dramatic long curves between waypoints + /// The color of the path (shown when gizmos are active in the Play panel and the tween is running) + public static TweenerCore DOPath( + this Rigidbody target, Vector3[] path, float duration, PathType pathType = PathType.Linear, + PathMode pathMode = PathMode.Full3D, int resolution = 10, Color? gizmoColor = null + ) + { + if (resolution < 1) resolution = 1; + TweenerCore t = DOTween.To(PathPlugin.Get(), () => target.position, target.MovePosition, new Path(pathType, path, resolution, gizmoColor), duration) + .SetTarget(target).SetUpdate(UpdateType.Fixed); + + t.plugOptions.isRigidbody = true; + t.plugOptions.mode = pathMode; + return t; + } + /// Tweens a Rigidbody's localPosition through the given path waypoints, using the chosen path algorithm. + /// Also stores the Rigidbody as the tween's target so it can be used for filtered operations + /// NOTE: to tween a rigidbody correctly it should be set to kinematic at least while being tweened. + /// BEWARE: doesn't work on Windows Phone store (waiting for Unity to fix their own bug). + /// If you plan to publish there you should use a regular transform.DOLocalPath. + /// The waypoint to go through + /// The duration of the tween + /// The type of path: Linear (straight path) or CatmullRom (curved CatmullRom path) + /// The path mode: 3D, side-scroller 2D, top-down 2D + /// The resolution of the path: higher resolutions make for more detailed curved paths but are more expensive. + /// Defaults to 10, but a value of 5 is usually enough if you don't have dramatic long curves between waypoints + /// The color of the path (shown when gizmos are active in the Play panel and the tween is running) + public static TweenerCore DOLocalPath( + this Rigidbody target, Vector3[] path, float duration, PathType pathType = PathType.Linear, + PathMode pathMode = PathMode.Full3D, int resolution = 10, Color? gizmoColor = null + ) + { + if (resolution < 1) resolution = 1; + Transform trans = target.transform; + TweenerCore t = DOTween.To(PathPlugin.Get(), () => trans.localPosition, x => target.MovePosition(trans.parent == null ? x : trans.parent.TransformPoint(x)), new Path(pathType, path, resolution, gizmoColor), duration) + .SetTarget(target).SetUpdate(UpdateType.Fixed); + + t.plugOptions.isRigidbody = true; + t.plugOptions.mode = pathMode; + t.plugOptions.useLocalPosition = true; + return t; + } + // Used by path editor when creating the actual tween, so it can pass a pre-compiled path + internal static TweenerCore DOPath( + this Rigidbody target, Path path, float duration, PathMode pathMode = PathMode.Full3D + ) + { + TweenerCore t = DOTween.To(PathPlugin.Get(), () => target.position, target.MovePosition, path, duration) + .SetTarget(target); + + t.plugOptions.isRigidbody = true; + t.plugOptions.mode = pathMode; + return t; + } + internal static TweenerCore DOLocalPath( + this Rigidbody target, Path path, float duration, PathMode pathMode = PathMode.Full3D + ) + { + Transform trans = target.transform; + TweenerCore t = DOTween.To(PathPlugin.Get(), () => trans.localPosition, x => target.MovePosition(trans.parent == null ? x : trans.parent.TransformPoint(x)), path, duration) + .SetTarget(target); + + t.plugOptions.isRigidbody = true; + t.plugOptions.mode = pathMode; + t.plugOptions.useLocalPosition = true; + return t; + } + + #endregion + + #endregion + + #endregion + } +} +#endif diff --git a/Assets/DOTween/Modules/DOTweenModulePhysics.cs.meta b/Assets/DOTween/Modules/DOTweenModulePhysics.cs.meta new file mode 100644 index 0000000..20f9aa9 --- /dev/null +++ b/Assets/DOTween/Modules/DOTweenModulePhysics.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: de507cdb1a1f62f4e954020b066ab0f4 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/DOTween/Modules/DOTweenModulePhysics2D.cs b/Assets/DOTween/Modules/DOTweenModulePhysics2D.cs new file mode 100644 index 0000000..f40a7d0 --- /dev/null +++ b/Assets/DOTween/Modules/DOTweenModulePhysics2D.cs @@ -0,0 +1,107 @@ +// Author: Daniele Giardini - http://www.demigiant.com +// Created: 2018/07/13 + +#if true && (UNITY_4_3 || UNITY_4_4 || UNITY_4_5 || UNITY_4_6 || UNITY_5 || UNITY_2017_1_OR_NEWER) // MODULE_MARKER +using System; +using DG.Tweening.Core; +using DG.Tweening.Plugins.Options; +using UnityEngine; + +#pragma warning disable 1591 +namespace DG.Tweening +{ + public static class DOTweenModulePhysics2D + { + #region Shortcuts + + #region Rigidbody2D Shortcuts + + /// Tweens a Rigidbody2D's position to the given value. + /// Also stores the Rigidbody2D as the tween's target so it can be used for filtered operations + /// The end value to reachThe duration of the tween + /// If TRUE the tween will smoothly snap all values to integers + public static TweenerCore DOMove(this Rigidbody2D target, Vector2 endValue, float duration, bool snapping = false) + { + TweenerCore t = DOTween.To(() => target.position, target.MovePosition, endValue, duration); + t.SetOptions(snapping).SetTarget(target); + return t; + } + + /// Tweens a Rigidbody2D's X position to the given value. + /// Also stores the Rigidbody2D as the tween's target so it can be used for filtered operations + /// The end value to reachThe duration of the tween + /// If TRUE the tween will smoothly snap all values to integers + public static TweenerCore DOMoveX(this Rigidbody2D target, float endValue, float duration, bool snapping = false) + { + TweenerCore t = DOTween.To(() => target.position, target.MovePosition, new Vector2(endValue, 0), duration); + t.SetOptions(AxisConstraint.X, snapping).SetTarget(target); + return t; + } + + /// Tweens a Rigidbody2D's Y position to the given value. + /// Also stores the Rigidbody2D as the tween's target so it can be used for filtered operations + /// The end value to reachThe duration of the tween + /// If TRUE the tween will smoothly snap all values to integers + public static TweenerCore DOMoveY(this Rigidbody2D target, float endValue, float duration, bool snapping = false) + { + TweenerCore t = DOTween.To(() => target.position, target.MovePosition, new Vector2(0, endValue), duration); + t.SetOptions(AxisConstraint.Y, snapping).SetTarget(target); + return t; + } + + /// Tweens a Rigidbody2D's rotation to the given value. + /// Also stores the Rigidbody2D as the tween's target so it can be used for filtered operations + /// The end value to reachThe duration of the tween + public static TweenerCore DORotate(this Rigidbody2D target, float endValue, float duration) + { + TweenerCore t = DOTween.To(() => target.rotation, target.MoveRotation, endValue, duration); + t.SetTarget(target); + return t; + } + + #region Special + + /// Tweens a Rigidbody2D's position to the given value, while also applying a jump effect along the Y axis. + /// Returns a Sequence instead of a Tweener. + /// Also stores the Rigidbody2D as the tween's target so it can be used for filtered operations. + /// IMPORTANT: a rigidbody2D can't be animated in a jump arc using MovePosition, so the tween will directly set the position + /// The end value to reach + /// Power of the jump (the max height of the jump is represented by this plus the final Y offset) + /// Total number of jumps + /// The duration of the tween + /// If TRUE the tween will smoothly snap all values to integers + public static Sequence DOJump(this Rigidbody2D target, Vector2 endValue, float jumpPower, int numJumps, float duration, bool snapping = false) + { + if (numJumps < 1) numJumps = 1; + float startPosY = 0; + float offsetY = -1; + bool offsetYSet = false; + Sequence s = DOTween.Sequence(); + Tween yTween = DOTween.To(() => target.position, x => target.position = x, new Vector2(0, jumpPower), duration / (numJumps * 2)) + .SetOptions(AxisConstraint.Y, snapping).SetEase(Ease.OutQuad).SetRelative() + .SetLoops(numJumps * 2, LoopType.Yoyo) + .OnStart(() => startPosY = target.position.y); + s.Append(DOTween.To(() => target.position, x => target.position = x, new Vector2(endValue.x, 0), duration) + .SetOptions(AxisConstraint.X, snapping).SetEase(Ease.Linear) + ).Join(yTween) + .SetTarget(target).SetEase(DOTween.defaultEaseType); + yTween.OnUpdate(() => { + if (!offsetYSet) { + offsetYSet = true; + offsetY = s.isRelative ? endValue.y : endValue.y - startPosY; + } + Vector3 pos = target.position; + pos.y += DOVirtual.EasedValue(0, offsetY, yTween.ElapsedPercentage(), Ease.OutQuad); + target.MovePosition(pos); + }); + return s; + } + + #endregion + + #endregion + + #endregion + } +} +#endif diff --git a/Assets/DOTween/Modules/DOTweenModulePhysics2D.cs.meta b/Assets/DOTween/Modules/DOTweenModulePhysics2D.cs.meta new file mode 100644 index 0000000..ceed4ba --- /dev/null +++ b/Assets/DOTween/Modules/DOTweenModulePhysics2D.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 480d8f59ba5132748b55db16e4a850b4 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/DOTween/Modules/DOTweenModuleSprite.cs b/Assets/DOTween/Modules/DOTweenModuleSprite.cs new file mode 100644 index 0000000..549fff3 --- /dev/null +++ b/Assets/DOTween/Modules/DOTweenModuleSprite.cs @@ -0,0 +1,93 @@ +// Author: Daniele Giardini - http://www.demigiant.com +// Created: 2018/07/13 + +#if true && (UNITY_4_3 || UNITY_4_4 || UNITY_4_5 || UNITY_4_6 || UNITY_5 || UNITY_2017_1_OR_NEWER) // MODULE_MARKER +using System; +using UnityEngine; +using DG.Tweening.Core; +using DG.Tweening.Plugins.Options; + +#pragma warning disable 1591 +namespace DG.Tweening +{ + public static class DOTweenModuleSprite + { + #region Shortcuts + + #region SpriteRenderer + + /// Tweens a SpriteRenderer's color to the given value. + /// Also stores the spriteRenderer as the tween's target so it can be used for filtered operations + /// The end value to reachThe duration of the tween + public static TweenerCore DOColor(this SpriteRenderer target, Color endValue, float duration) + { + TweenerCore t = DOTween.To(() => target.color, x => target.color = x, endValue, duration); + t.SetTarget(target); + return t; + } + + /// Tweens a Material's alpha color to the given value. + /// Also stores the spriteRenderer as the tween's target so it can be used for filtered operations + /// The end value to reachThe duration of the tween + public static TweenerCore DOFade(this SpriteRenderer target, float endValue, float duration) + { + TweenerCore t = DOTween.ToAlpha(() => target.color, x => target.color = x, endValue, duration); + t.SetTarget(target); + return t; + } + + /// Tweens a SpriteRenderer's color using the given gradient + /// (NOTE 1: only uses the colors of the gradient, not the alphas - NOTE 2: creates a Sequence, not a Tweener). + /// Also stores the image as the tween's target so it can be used for filtered operations + /// The gradient to useThe duration of the tween + public static Sequence DOGradientColor(this SpriteRenderer target, Gradient gradient, float duration) + { + Sequence s = DOTween.Sequence(); + GradientColorKey[] colors = gradient.colorKeys; + int len = colors.Length; + for (int i = 0; i < len; ++i) { + GradientColorKey c = colors[i]; + if (i == 0 && c.time <= 0) { + target.color = c.color; + continue; + } + float colorDuration = i == len - 1 + ? duration - s.Duration(false) // Verifies that total duration is correct + : duration * (i == 0 ? c.time : c.time - colors[i - 1].time); + s.Append(target.DOColor(c.color, colorDuration).SetEase(Ease.Linear)); + } + s.SetTarget(target); + return s; + } + + #endregion + + #region Blendables + + #region SpriteRenderer + + /// Tweens a SpriteRenderer's color to the given value, + /// in a way that allows other DOBlendableColor tweens to work together on the same target, + /// instead than fight each other as multiple DOColor would do. + /// Also stores the SpriteRenderer as the tween's target so it can be used for filtered operations + /// The value to tween toThe duration of the tween + public static Tweener DOBlendableColor(this SpriteRenderer target, Color endValue, float duration) + { + endValue = endValue - target.color; + Color to = new Color(0, 0, 0, 0); + return DOTween.To(() => to, x => { + Color diff = x - to; + to = x; + target.color += diff; + }, endValue, duration) + .Blendable().SetTarget(target); + } + + #endregion + + #endregion + + #endregion + } +} +#endif diff --git a/Assets/DOTween/Modules/DOTweenModuleSprite.cs.meta b/Assets/DOTween/Modules/DOTweenModuleSprite.cs.meta new file mode 100644 index 0000000..73ed1a5 --- /dev/null +++ b/Assets/DOTween/Modules/DOTweenModuleSprite.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: d9910c17c90ad5e4c98badd1956eec13 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/DOTween/Modules/DOTweenModuleUI.cs b/Assets/DOTween/Modules/DOTweenModuleUI.cs new file mode 100644 index 0000000..6d45a04 --- /dev/null +++ b/Assets/DOTween/Modules/DOTweenModuleUI.cs @@ -0,0 +1,609 @@ +// Author: Daniele Giardini - http://www.demigiant.com +// Created: 2018/07/13 + +#if true && (UNITY_4_6 || UNITY_5 || UNITY_2017_1_OR_NEWER) // MODULE_MARKER +using System; +using UnityEngine; +using UnityEngine.UI; +using DG.Tweening.Core; +using DG.Tweening.Core.Enums; +using DG.Tweening.Plugins.Options; + +#pragma warning disable 1591 +namespace DG.Tweening +{ + public static class DOTweenModuleUI + { + #region Shortcuts + + #region CanvasGroup + + /// Tweens a CanvasGroup's alpha color to the given value. + /// Also stores the canvasGroup as the tween's target so it can be used for filtered operations + /// The end value to reachThe duration of the tween + public static TweenerCore DOFade(this CanvasGroup target, float endValue, float duration) + { + TweenerCore t = DOTween.To(() => target.alpha, x => target.alpha = x, endValue, duration); + t.SetTarget(target); + return t; + } + + #endregion + + #region Graphic + + /// Tweens an Graphic's color to the given value. + /// Also stores the image as the tween's target so it can be used for filtered operations + /// The end value to reachThe duration of the tween + public static TweenerCore DOColor(this Graphic target, Color endValue, float duration) + { + TweenerCore t = DOTween.To(() => target.color, x => target.color = x, endValue, duration); + t.SetTarget(target); + return t; + } + + /// Tweens an Graphic's alpha color to the given value. + /// Also stores the image as the tween's target so it can be used for filtered operations + /// The end value to reachThe duration of the tween + public static TweenerCore DOFade(this Graphic target, float endValue, float duration) + { + TweenerCore t = DOTween.ToAlpha(() => target.color, x => target.color = x, endValue, duration); + t.SetTarget(target); + return t; + } + + #endregion + + #region Image + + /// Tweens an Image's color to the given value. + /// Also stores the image as the tween's target so it can be used for filtered operations + /// The end value to reachThe duration of the tween + public static TweenerCore DOColor(this Image target, Color endValue, float duration) + { + TweenerCore t = DOTween.To(() => target.color, x => target.color = x, endValue, duration); + t.SetTarget(target); + return t; + } + + /// Tweens an Image's alpha color to the given value. + /// Also stores the image as the tween's target so it can be used for filtered operations + /// The end value to reachThe duration of the tween + public static TweenerCore DOFade(this Image target, float endValue, float duration) + { + TweenerCore t = DOTween.ToAlpha(() => target.color, x => target.color = x, endValue, duration); + t.SetTarget(target); + return t; + } + + /// Tweens an Image's fillAmount to the given value. + /// Also stores the image as the tween's target so it can be used for filtered operations + /// The end value to reach (0 to 1)The duration of the tween + public static TweenerCore DOFillAmount(this Image target, float endValue, float duration) + { + if (endValue > 1) endValue = 1; + else if (endValue < 0) endValue = 0; + TweenerCore t = DOTween.To(() => target.fillAmount, x => target.fillAmount = x, endValue, duration); + t.SetTarget(target); + return t; + } + + /// Tweens an Image's colors using the given gradient + /// (NOTE 1: only uses the colors of the gradient, not the alphas - NOTE 2: creates a Sequence, not a Tweener). + /// Also stores the image as the tween's target so it can be used for filtered operations + /// The gradient to useThe duration of the tween + public static Sequence DOGradientColor(this Image target, Gradient gradient, float duration) + { + Sequence s = DOTween.Sequence(); + GradientColorKey[] colors = gradient.colorKeys; + int len = colors.Length; + for (int i = 0; i < len; ++i) { + GradientColorKey c = colors[i]; + if (i == 0 && c.time <= 0) { + target.color = c.color; + continue; + } + float colorDuration = i == len - 1 + ? duration - s.Duration(false) // Verifies that total duration is correct + : duration * (i == 0 ? c.time : c.time - colors[i - 1].time); + s.Append(target.DOColor(c.color, colorDuration).SetEase(Ease.Linear)); + } + s.SetTarget(target); + return s; + } + + #endregion + + #region LayoutElement + + /// Tweens an LayoutElement's flexibleWidth/Height to the given value. + /// Also stores the LayoutElement as the tween's target so it can be used for filtered operations + /// The end value to reachThe duration of the tween + /// If TRUE the tween will smoothly snap all values to integers + public static TweenerCore DOFlexibleSize(this LayoutElement target, Vector2 endValue, float duration, bool snapping = false) + { + TweenerCore t = DOTween.To(() => new Vector2(target.flexibleWidth, target.flexibleHeight), x => { + target.flexibleWidth = x.x; + target.flexibleHeight = x.y; + }, endValue, duration); + t.SetOptions(snapping).SetTarget(target); + return t; + } + + /// Tweens an LayoutElement's minWidth/Height to the given value. + /// Also stores the LayoutElement as the tween's target so it can be used for filtered operations + /// The end value to reachThe duration of the tween + /// If TRUE the tween will smoothly snap all values to integers + public static TweenerCore DOMinSize(this LayoutElement target, Vector2 endValue, float duration, bool snapping = false) + { + TweenerCore t = DOTween.To(() => new Vector2(target.minWidth, target.minHeight), x => { + target.minWidth = x.x; + target.minHeight = x.y; + }, endValue, duration); + t.SetOptions(snapping).SetTarget(target); + return t; + } + + /// Tweens an LayoutElement's preferredWidth/Height to the given value. + /// Also stores the LayoutElement as the tween's target so it can be used for filtered operations + /// The end value to reachThe duration of the tween + /// If TRUE the tween will smoothly snap all values to integers + public static TweenerCore DOPreferredSize(this LayoutElement target, Vector2 endValue, float duration, bool snapping = false) + { + TweenerCore t = DOTween.To(() => new Vector2(target.preferredWidth, target.preferredHeight), x => { + target.preferredWidth = x.x; + target.preferredHeight = x.y; + }, endValue, duration); + t.SetOptions(snapping).SetTarget(target); + return t; + } + + #endregion + + #region Outline + + /// Tweens a Outline's effectColor to the given value. + /// Also stores the Outline as the tween's target so it can be used for filtered operations + /// The end value to reachThe duration of the tween + public static TweenerCore DOColor(this Outline target, Color endValue, float duration) + { + TweenerCore t = DOTween.To(() => target.effectColor, x => target.effectColor = x, endValue, duration); + t.SetTarget(target); + return t; + } + + /// Tweens a Outline's effectColor alpha to the given value. + /// Also stores the Outline as the tween's target so it can be used for filtered operations + /// The end value to reachThe duration of the tween + public static TweenerCore DOFade(this Outline target, float endValue, float duration) + { + TweenerCore t = DOTween.ToAlpha(() => target.effectColor, x => target.effectColor = x, endValue, duration); + t.SetTarget(target); + return t; + } + + /// Tweens a Outline's effectDistance to the given value. + /// Also stores the Outline as the tween's target so it can be used for filtered operations + /// The end value to reachThe duration of the tween + public static TweenerCore DOScale(this Outline target, Vector2 endValue, float duration) + { + TweenerCore t = DOTween.To(() => target.effectDistance, x => target.effectDistance = x, endValue, duration); + t.SetTarget(target); + return t; + } + + #endregion + + #region RectTransform + + /// Tweens a RectTransform's anchoredPosition to the given value. + /// Also stores the RectTransform as the tween's target so it can be used for filtered operations + /// The end value to reachThe duration of the tween + /// If TRUE the tween will smoothly snap all values to integers + public static TweenerCore DOAnchorPos(this RectTransform target, Vector2 endValue, float duration, bool snapping = false) + { + TweenerCore t = DOTween.To(() => target.anchoredPosition, x => target.anchoredPosition = x, endValue, duration); + t.SetOptions(snapping).SetTarget(target); + return t; + } + /// Tweens a RectTransform's anchoredPosition X to the given value. + /// Also stores the RectTransform as the tween's target so it can be used for filtered operations + /// The end value to reachThe duration of the tween + /// If TRUE the tween will smoothly snap all values to integers + public static TweenerCore DOAnchorPosX(this RectTransform target, float endValue, float duration, bool snapping = false) + { + TweenerCore t = DOTween.To(() => target.anchoredPosition, x => target.anchoredPosition = x, new Vector2(endValue, 0), duration); + t.SetOptions(AxisConstraint.X, snapping).SetTarget(target); + return t; + } + /// Tweens a RectTransform's anchoredPosition Y to the given value. + /// Also stores the RectTransform as the tween's target so it can be used for filtered operations + /// The end value to reachThe duration of the tween + /// If TRUE the tween will smoothly snap all values to integers + public static TweenerCore DOAnchorPosY(this RectTransform target, float endValue, float duration, bool snapping = false) + { + TweenerCore t = DOTween.To(() => target.anchoredPosition, x => target.anchoredPosition = x, new Vector2(0, endValue), duration); + t.SetOptions(AxisConstraint.Y, snapping).SetTarget(target); + return t; + } + + /// Tweens a RectTransform's anchoredPosition3D to the given value. + /// Also stores the RectTransform as the tween's target so it can be used for filtered operations + /// The end value to reachThe duration of the tween + /// If TRUE the tween will smoothly snap all values to integers + public static TweenerCore DOAnchorPos3D(this RectTransform target, Vector3 endValue, float duration, bool snapping = false) + { + TweenerCore t = DOTween.To(() => target.anchoredPosition3D, x => target.anchoredPosition3D = x, endValue, duration); + t.SetOptions(snapping).SetTarget(target); + return t; + } + /// Tweens a RectTransform's anchoredPosition3D X to the given value. + /// Also stores the RectTransform as the tween's target so it can be used for filtered operations + /// The end value to reachThe duration of the tween + /// If TRUE the tween will smoothly snap all values to integers + public static TweenerCore DOAnchorPos3DX(this RectTransform target, float endValue, float duration, bool snapping = false) + { + TweenerCore t = DOTween.To(() => target.anchoredPosition3D, x => target.anchoredPosition3D = x, new Vector3(endValue, 0, 0), duration); + t.SetOptions(AxisConstraint.X, snapping).SetTarget(target); + return t; + } + /// Tweens a RectTransform's anchoredPosition3D Y to the given value. + /// Also stores the RectTransform as the tween's target so it can be used for filtered operations + /// The end value to reachThe duration of the tween + /// If TRUE the tween will smoothly snap all values to integers + public static TweenerCore DOAnchorPos3DY(this RectTransform target, float endValue, float duration, bool snapping = false) + { + TweenerCore t = DOTween.To(() => target.anchoredPosition3D, x => target.anchoredPosition3D = x, new Vector3(0, endValue, 0), duration); + t.SetOptions(AxisConstraint.Y, snapping).SetTarget(target); + return t; + } + /// Tweens a RectTransform's anchoredPosition3D Z to the given value. + /// Also stores the RectTransform as the tween's target so it can be used for filtered operations + /// The end value to reachThe duration of the tween + /// If TRUE the tween will smoothly snap all values to integers + public static TweenerCore DOAnchorPos3DZ(this RectTransform target, float endValue, float duration, bool snapping = false) + { + TweenerCore t = DOTween.To(() => target.anchoredPosition3D, x => target.anchoredPosition3D = x, new Vector3(0, 0, endValue), duration); + t.SetOptions(AxisConstraint.Z, snapping).SetTarget(target); + return t; + } + + /// Tweens a RectTransform's anchorMax to the given value. + /// Also stores the RectTransform as the tween's target so it can be used for filtered operations + /// The end value to reachThe duration of the tween + /// If TRUE the tween will smoothly snap all values to integers + public static TweenerCore DOAnchorMax(this RectTransform target, Vector2 endValue, float duration, bool snapping = false) + { + TweenerCore t = DOTween.To(() => target.anchorMax, x => target.anchorMax = x, endValue, duration); + t.SetOptions(snapping).SetTarget(target); + return t; + } + + /// Tweens a RectTransform's anchorMin to the given value. + /// Also stores the RectTransform as the tween's target so it can be used for filtered operations + /// The end value to reachThe duration of the tween + /// If TRUE the tween will smoothly snap all values to integers + public static TweenerCore DOAnchorMin(this RectTransform target, Vector2 endValue, float duration, bool snapping = false) + { + TweenerCore t = DOTween.To(() => target.anchorMin, x => target.anchorMin = x, endValue, duration); + t.SetOptions(snapping).SetTarget(target); + return t; + } + + /// Tweens a RectTransform's pivot to the given value. + /// Also stores the RectTransform as the tween's target so it can be used for filtered operations + /// The end value to reachThe duration of the tween + public static TweenerCore DOPivot(this RectTransform target, Vector2 endValue, float duration) + { + TweenerCore t = DOTween.To(() => target.pivot, x => target.pivot = x, endValue, duration); + t.SetTarget(target); + return t; + } + /// Tweens a RectTransform's pivot X to the given value. + /// Also stores the RectTransform as the tween's target so it can be used for filtered operations + /// The end value to reachThe duration of the tween + public static TweenerCore DOPivotX(this RectTransform target, float endValue, float duration) + { + TweenerCore t = DOTween.To(() => target.pivot, x => target.pivot = x, new Vector2(endValue, 0), duration); + t.SetOptions(AxisConstraint.X).SetTarget(target); + return t; + } + /// Tweens a RectTransform's pivot Y to the given value. + /// Also stores the RectTransform as the tween's target so it can be used for filtered operations + /// The end value to reachThe duration of the tween + public static TweenerCore DOPivotY(this RectTransform target, float endValue, float duration) + { + TweenerCore t = DOTween.To(() => target.pivot, x => target.pivot = x, new Vector2(0, endValue), duration); + t.SetOptions(AxisConstraint.Y).SetTarget(target); + return t; + } + + /// Tweens a RectTransform's sizeDelta to the given value. + /// Also stores the RectTransform as the tween's target so it can be used for filtered operations + /// The end value to reachThe duration of the tween + /// If TRUE the tween will smoothly snap all values to integers + public static TweenerCore DOSizeDelta(this RectTransform target, Vector2 endValue, float duration, bool snapping = false) + { + TweenerCore t = DOTween.To(() => target.sizeDelta, x => target.sizeDelta = x, endValue, duration); + t.SetOptions(snapping).SetTarget(target); + return t; + } + + /// Punches a RectTransform's anchoredPosition towards the given direction and then back to the starting one + /// as if it was connected to the starting position via an elastic. + /// Also stores the RectTransform as the tween's target so it can be used for filtered operations + /// The direction and strength of the punch (added to the RectTransform's current position) + /// The duration of the tween + /// Indicates how much will the punch vibrate + /// Represents how much (0 to 1) the vector will go beyond the starting position when bouncing backwards. + /// 1 creates a full oscillation between the punch direction and the opposite direction, + /// while 0 oscillates only between the punch and the start position + /// If TRUE the tween will smoothly snap all values to integers + public static Tweener DOPunchAnchorPos(this RectTransform target, Vector2 punch, float duration, int vibrato = 10, float elasticity = 1, bool snapping = false) + { + return DOTween.Punch(() => target.anchoredPosition, x => target.anchoredPosition = x, punch, duration, vibrato, elasticity) + .SetTarget(target).SetOptions(snapping); + } + + /// Shakes a RectTransform's anchoredPosition with the given values. + /// Also stores the RectTransform as the tween's target so it can be used for filtered operations + /// The duration of the tween + /// The shake strength + /// Indicates how much will the shake vibrate + /// Indicates how much the shake will be random (0 to 180 - values higher than 90 kind of suck, so beware). + /// Setting it to 0 will shake along a single direction. + /// If TRUE the tween will smoothly snap all values to integers + /// If TRUE the shake will automatically fadeOut smoothly within the tween's duration, otherwise it will not + public static Tweener DOShakeAnchorPos(this RectTransform target, float duration, float strength = 100, int vibrato = 10, float randomness = 90, bool snapping = false, bool fadeOut = true) + { + return DOTween.Shake(() => target.anchoredPosition, x => target.anchoredPosition = x, duration, strength, vibrato, randomness, true, fadeOut) + .SetTarget(target).SetSpecialStartupMode(SpecialStartupMode.SetShake).SetOptions(snapping); + } + /// Shakes a RectTransform's anchoredPosition with the given values. + /// Also stores the RectTransform as the tween's target so it can be used for filtered operations + /// The duration of the tween + /// The shake strength on each axis + /// Indicates how much will the shake vibrate + /// Indicates how much the shake will be random (0 to 180 - values higher than 90 kind of suck, so beware). + /// Setting it to 0 will shake along a single direction. + /// If TRUE the tween will smoothly snap all values to integers + /// If TRUE the shake will automatically fadeOut smoothly within the tween's duration, otherwise it will not + public static Tweener DOShakeAnchorPos(this RectTransform target, float duration, Vector2 strength, int vibrato = 10, float randomness = 90, bool snapping = false, bool fadeOut = true) + { + return DOTween.Shake(() => target.anchoredPosition, x => target.anchoredPosition = x, duration, strength, vibrato, randomness, fadeOut) + .SetTarget(target).SetSpecialStartupMode(SpecialStartupMode.SetShake).SetOptions(snapping); + } + + #region Special + + /// Tweens a RectTransform's anchoredPosition to the given value, while also applying a jump effect along the Y axis. + /// Returns a Sequence instead of a Tweener. + /// Also stores the RectTransform as the tween's target so it can be used for filtered operations + /// The end value to reach + /// Power of the jump (the max height of the jump is represented by this plus the final Y offset) + /// Total number of jumps + /// The duration of the tween + /// If TRUE the tween will smoothly snap all values to integers + public static Sequence DOJumpAnchorPos(this RectTransform target, Vector2 endValue, float jumpPower, int numJumps, float duration, bool snapping = false) + { + if (numJumps < 1) numJumps = 1; + float startPosY = 0; + float offsetY = -1; + bool offsetYSet = false; + + // Separate Y Tween so we can elaborate elapsedPercentage on that insted of on the Sequence + // (in case users add a delay or other elements to the Sequence) + Sequence s = DOTween.Sequence(); + Tween yTween = DOTween.To(() => target.anchoredPosition, x => target.anchoredPosition = x, new Vector2(0, jumpPower), duration / (numJumps * 2)) + .SetOptions(AxisConstraint.Y, snapping).SetEase(Ease.OutQuad).SetRelative() + .SetLoops(numJumps * 2, LoopType.Yoyo) + .OnStart(()=> startPosY = target.anchoredPosition.y); + s.Append(DOTween.To(() => target.anchoredPosition, x => target.anchoredPosition = x, new Vector2(endValue.x, 0), duration) + .SetOptions(AxisConstraint.X, snapping).SetEase(Ease.Linear) + ).Join(yTween) + .SetTarget(target).SetEase(DOTween.defaultEaseType); + s.OnUpdate(() => { + if (!offsetYSet) { + offsetYSet = true; + offsetY = s.isRelative ? endValue.y : endValue.y - startPosY; + } + Vector2 pos = target.anchoredPosition; + pos.y += DOVirtual.EasedValue(0, offsetY, s.ElapsedDirectionalPercentage(), Ease.OutQuad); + target.anchoredPosition = pos; + }); + return s; + } + + #endregion + + #endregion + + #region ScrollRect + + /// Tweens a ScrollRect's horizontal/verticalNormalizedPosition to the given value. + /// Also stores the ScrollRect as the tween's target so it can be used for filtered operations + /// The end value to reachThe duration of the tween + /// If TRUE the tween will smoothly snap all values to integers + public static Tweener DONormalizedPos(this ScrollRect target, Vector2 endValue, float duration, bool snapping = false) + { + return DOTween.To(() => new Vector2(target.horizontalNormalizedPosition, target.verticalNormalizedPosition), + x => { + target.horizontalNormalizedPosition = x.x; + target.verticalNormalizedPosition = x.y; + }, endValue, duration) + .SetOptions(snapping).SetTarget(target); + } + /// Tweens a ScrollRect's horizontalNormalizedPosition to the given value. + /// Also stores the ScrollRect as the tween's target so it can be used for filtered operations + /// The end value to reachThe duration of the tween + /// If TRUE the tween will smoothly snap all values to integers + public static Tweener DOHorizontalNormalizedPos(this ScrollRect target, float endValue, float duration, bool snapping = false) + { + return DOTween.To(() => target.horizontalNormalizedPosition, x => target.horizontalNormalizedPosition = x, endValue, duration) + .SetOptions(snapping).SetTarget(target); + } + /// Tweens a ScrollRect's verticalNormalizedPosition to the given value. + /// Also stores the ScrollRect as the tween's target so it can be used for filtered operations + /// The end value to reachThe duration of the tween + /// If TRUE the tween will smoothly snap all values to integers + public static Tweener DOVerticalNormalizedPos(this ScrollRect target, float endValue, float duration, bool snapping = false) + { + return DOTween.To(() => target.verticalNormalizedPosition, x => target.verticalNormalizedPosition = x, endValue, duration) + .SetOptions(snapping).SetTarget(target); + } + + #endregion + + #region Slider + + /// Tweens a Slider's value to the given value. + /// Also stores the Slider as the tween's target so it can be used for filtered operations + /// The end value to reachThe duration of the tween + /// If TRUE the tween will smoothly snap all values to integers + public static TweenerCore DOValue(this Slider target, float endValue, float duration, bool snapping = false) + { + TweenerCore t = DOTween.To(() => target.value, x => target.value = x, endValue, duration); + t.SetOptions(snapping).SetTarget(target); + return t; + } + + #endregion + + #region Text + + /// Tweens a Text's color to the given value. + /// Also stores the Text as the tween's target so it can be used for filtered operations + /// The end value to reachThe duration of the tween + public static TweenerCore DOColor(this Text target, Color endValue, float duration) + { + TweenerCore t = DOTween.To(() => target.color, x => target.color = x, endValue, duration); + t.SetTarget(target); + return t; + } + + /// Tweens a Text's alpha color to the given value. + /// Also stores the Text as the tween's target so it can be used for filtered operations + /// The end value to reachThe duration of the tween + public static TweenerCore DOFade(this Text target, float endValue, float duration) + { + TweenerCore t = DOTween.ToAlpha(() => target.color, x => target.color = x, endValue, duration); + t.SetTarget(target); + return t; + } + + /// Tweens a Text's text to the given value. + /// Also stores the Text as the tween's target so it can be used for filtered operations + /// The end string to tween toThe duration of the tween + /// If TRUE (default), rich text will be interpreted correctly while animated, + /// otherwise all tags will be considered as normal text + /// The type of scramble mode to use, if any + /// A string containing the characters to use for scrambling. + /// Use as many characters as possible (minimum 10) because DOTween uses a fast scramble mode which gives better results with more characters. + /// Leave it to NULL (default) to use default ones + public static TweenerCore DOText(this Text target, string endValue, float duration, bool richTextEnabled = true, ScrambleMode scrambleMode = ScrambleMode.None, string scrambleChars = null) + { + if (endValue == null) { + if (Debugger.logPriority > 0) Debugger.LogWarning("You can't pass a NULL string to DOText: an empty string will be used instead to avoid errors"); + endValue = ""; + } + TweenerCore t = DOTween.To(() => target.text, x => target.text = x, endValue, duration); + t.SetOptions(richTextEnabled, scrambleMode, scrambleChars) + .SetTarget(target); + return t; + } + + #endregion + + #region Blendables + + #region Graphic + + /// Tweens a Graphic's color to the given value, + /// in a way that allows other DOBlendableColor tweens to work together on the same target, + /// instead than fight each other as multiple DOColor would do. + /// Also stores the Graphic as the tween's target so it can be used for filtered operations + /// The value to tween toThe duration of the tween + public static Tweener DOBlendableColor(this Graphic target, Color endValue, float duration) + { + endValue = endValue - target.color; + Color to = new Color(0, 0, 0, 0); + return DOTween.To(() => to, x => { + Color diff = x - to; + to = x; + target.color += diff; + }, endValue, duration) + .Blendable().SetTarget(target); + } + + #endregion + + #region Image + + /// Tweens a Image's color to the given value, + /// in a way that allows other DOBlendableColor tweens to work together on the same target, + /// instead than fight each other as multiple DOColor would do. + /// Also stores the Image as the tween's target so it can be used for filtered operations + /// The value to tween toThe duration of the tween + public static Tweener DOBlendableColor(this Image target, Color endValue, float duration) + { + endValue = endValue - target.color; + Color to = new Color(0, 0, 0, 0); + return DOTween.To(() => to, x => { + Color diff = x - to; + to = x; + target.color += diff; + }, endValue, duration) + .Blendable().SetTarget(target); + } + + #endregion + + #region Text + + /// Tweens a Text's color BY the given value, + /// in a way that allows other DOBlendableColor tweens to work together on the same target, + /// instead than fight each other as multiple DOColor would do. + /// Also stores the Text as the tween's target so it can be used for filtered operations + /// The value to tween toThe duration of the tween + public static Tweener DOBlendableColor(this Text target, Color endValue, float duration) + { + endValue = endValue - target.color; + Color to = new Color(0, 0, 0, 0); + return DOTween.To(() => to, x => { + Color diff = x - to; + to = x; + target.color += diff; + }, endValue, duration) + .Blendable().SetTarget(target); + } + + #endregion + + #endregion + + #endregion + + // █████████████████████████████████████████████████████████████████████████████████████████████████████████████████████ + // ███ INTERNAL CLASSES ████████████████████████████████████████████████████████████████████████████████████████████████ + // █████████████████████████████████████████████████████████████████████████████████████████████████████████████████████ + + public static class Utils + { + /// + /// Converts the anchoredPosition of the first RectTransform to the second RectTransform, + /// taking into consideration offset, anchors and pivot, and returns the new anchoredPosition + /// + public static Vector2 SwitchToRectTransform(RectTransform from, RectTransform to) + { + Vector2 localPoint; + Vector2 fromPivotDerivedOffset = new Vector2(from.rect.width * 0.5f + from.rect.xMin, from.rect.height * 0.5f + from.rect.yMin); + Vector2 screenP = RectTransformUtility.WorldToScreenPoint(null, from.position); + screenP += fromPivotDerivedOffset; + RectTransformUtility.ScreenPointToLocalPointInRectangle(to, screenP, null, out localPoint); + Vector2 pivotDerivedOffset = new Vector2(to.rect.width * 0.5f + to.rect.xMin, to.rect.height * 0.5f + to.rect.yMin); + return to.anchoredPosition + localPoint - pivotDerivedOffset; + } + } + } +} +#endif diff --git a/Assets/DOTween/Modules/DOTweenModuleUI.cs.meta b/Assets/DOTween/Modules/DOTweenModuleUI.cs.meta new file mode 100644 index 0000000..0ba70e1 --- /dev/null +++ b/Assets/DOTween/Modules/DOTweenModuleUI.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 373b01c1629411f43b9fee7af6a96db7 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/DOTween/Modules/DOTweenModuleUnityVersion.cs b/Assets/DOTween/Modules/DOTweenModuleUnityVersion.cs new file mode 100644 index 0000000..ce21262 --- /dev/null +++ b/Assets/DOTween/Modules/DOTweenModuleUnityVersion.cs @@ -0,0 +1,301 @@ +// Author: Daniele Giardini - http://www.demigiant.com +// Created: 2018/07/13 + +using System; +using UnityEngine; +using DG.Tweening.Core; +using DG.Tweening.Plugins.Options; + +#pragma warning disable 1591 +namespace DG.Tweening +{ + /// + /// Shortcuts/functions that are not strictly related to specific Modules + /// but are available only on some Unity versions + /// + public static class DOTweenModuleUnityVersion + { +#if UNITY_4_3 || UNITY_4_4 || UNITY_4_5 || UNITY_4_6 || UNITY_5 || UNITY_2017_1_OR_NEWER + #region Unity 4.3 or Newer + + #region Material + + /// Tweens a Material's color using the given gradient + /// (NOTE 1: only uses the colors of the gradient, not the alphas - NOTE 2: creates a Sequence, not a Tweener). + /// Also stores the image as the tween's target so it can be used for filtered operations + /// The gradient to useThe duration of the tween + public static Sequence DOGradientColor(this Material target, Gradient gradient, float duration) + { + Sequence s = DOTween.Sequence(); + GradientColorKey[] colors = gradient.colorKeys; + int len = colors.Length; + for (int i = 0; i < len; ++i) { + GradientColorKey c = colors[i]; + if (i == 0 && c.time <= 0) { + target.color = c.color; + continue; + } + float colorDuration = i == len - 1 + ? duration - s.Duration(false) // Verifies that total duration is correct + : duration * (i == 0 ? c.time : c.time - colors[i - 1].time); + s.Append(target.DOColor(c.color, colorDuration).SetEase(Ease.Linear)); + } + s.SetTarget(target); + return s; + } + /// Tweens a Material's named color property using the given gradient + /// (NOTE 1: only uses the colors of the gradient, not the alphas - NOTE 2: creates a Sequence, not a Tweener). + /// Also stores the image as the tween's target so it can be used for filtered operations + /// The gradient to use + /// The name of the material property to tween (like _Tint or _SpecColor) + /// The duration of the tween + public static Sequence DOGradientColor(this Material target, Gradient gradient, string property, float duration) + { + Sequence s = DOTween.Sequence(); + GradientColorKey[] colors = gradient.colorKeys; + int len = colors.Length; + for (int i = 0; i < len; ++i) { + GradientColorKey c = colors[i]; + if (i == 0 && c.time <= 0) { + target.SetColor(property, c.color); + continue; + } + float colorDuration = i == len - 1 + ? duration - s.Duration(false) // Verifies that total duration is correct + : duration * (i == 0 ? c.time : c.time - colors[i - 1].time); + s.Append(target.DOColor(c.color, property, colorDuration).SetEase(Ease.Linear)); + } + s.SetTarget(target); + return s; + } + + #endregion + + #endregion +#endif + +#if UNITY_5_3_OR_NEWER || UNITY_2017_1_OR_NEWER + #region Unity 5.3 or Newer + + #region CustomYieldInstructions + + /// + /// Returns a that waits until the tween is killed or complete. + /// It can be used inside a coroutine as a yield. + /// Example usage:yield return myTween.WaitForCompletion(true); + /// + public static CustomYieldInstruction WaitForCompletion(this Tween t, bool returnCustomYieldInstruction) + { + if (!t.active) { + if (Debugger.logPriority > 0) Debugger.LogInvalidTween(t); + return null; + } + return new DOTweenCYInstruction.WaitForCompletion(t); + } + + /// + /// Returns a that waits until the tween is killed or rewinded. + /// It can be used inside a coroutine as a yield. + /// Example usage:yield return myTween.WaitForRewind(); + /// + public static CustomYieldInstruction WaitForRewind(this Tween t, bool returnCustomYieldInstruction) + { + if (!t.active) { + if (Debugger.logPriority > 0) Debugger.LogInvalidTween(t); + return null; + } + return new DOTweenCYInstruction.WaitForRewind(t); + } + + /// + /// Returns a that waits until the tween is killed. + /// It can be used inside a coroutine as a yield. + /// Example usage:yield return myTween.WaitForKill(); + /// + public static CustomYieldInstruction WaitForKill(this Tween t, bool returnCustomYieldInstruction) + { + if (!t.active) { + if (Debugger.logPriority > 0) Debugger.LogInvalidTween(t); + return null; + } + return new DOTweenCYInstruction.WaitForKill(t); + } + + /// + /// Returns a that waits until the tween is killed or has gone through the given amount of loops. + /// It can be used inside a coroutine as a yield. + /// Example usage:yield return myTween.WaitForElapsedLoops(2); + /// + /// Elapsed loops to wait for + public static CustomYieldInstruction WaitForElapsedLoops(this Tween t, int elapsedLoops, bool returnCustomYieldInstruction) + { + if (!t.active) { + if (Debugger.logPriority > 0) Debugger.LogInvalidTween(t); + return null; + } + return new DOTweenCYInstruction.WaitForElapsedLoops(t, elapsedLoops); + } + + /// + /// Returns a that waits until the tween is killed or has reached the given position (loops included, delays excluded). + /// It can be used inside a coroutine as a yield. + /// Example usage:yield return myTween.WaitForPosition(2.5f); + /// + /// Position (loops included, delays excluded) to wait for + public static CustomYieldInstruction WaitForPosition(this Tween t, float position, bool returnCustomYieldInstruction) + { + if (!t.active) { + if (Debugger.logPriority > 0) Debugger.LogInvalidTween(t); + return null; + } + return new DOTweenCYInstruction.WaitForPosition(t, position); + } + + /// + /// Returns a that waits until the tween is killed or started + /// (meaning when the tween is set in a playing state the first time, after any eventual delay). + /// It can be used inside a coroutine as a yield. + /// Example usage:yield return myTween.WaitForStart(); + /// + public static CustomYieldInstruction WaitForStart(this Tween t, bool returnCustomYieldInstruction) + { + if (!t.active) { + if (Debugger.logPriority > 0) Debugger.LogInvalidTween(t); + return null; + } + return new DOTweenCYInstruction.WaitForStart(t); + } + + #endregion + + #endregion +#endif + +#if UNITY_2018_1_OR_NEWER + #region Unity 2018.1 or Newer + + #region Material + + /// Tweens a Material's named texture offset property with the given ID to the given value. + /// Also stores the material as the tween's target so it can be used for filtered operations + /// The end value to reach + /// The ID of the material property to tween (also called nameID in Unity's manual) + /// The duration of the tween + public static TweenerCore DOOffset(this Material target, Vector2 endValue, int propertyID, float duration) + { + if (!target.HasProperty(propertyID)) { + if (Debugger.logPriority > 0) Debugger.LogMissingMaterialProperty(propertyID); + return null; + } + TweenerCore t = DOTween.To(() => target.GetTextureOffset(propertyID), x => target.SetTextureOffset(propertyID, x), endValue, duration); + t.SetTarget(target); + return t; + } + + /// Tweens a Material's named texture scale property with the given ID to the given value. + /// Also stores the material as the tween's target so it can be used for filtered operations + /// The end value to reach + /// The ID of the material property to tween (also called nameID in Unity's manual) + /// The duration of the tween + public static TweenerCore DOTiling(this Material target, Vector2 endValue, int propertyID, float duration) + { + if (!target.HasProperty(propertyID)) { + if (Debugger.logPriority > 0) Debugger.LogMissingMaterialProperty(propertyID); + return null; + } + TweenerCore t = DOTween.To(() => target.GetTextureScale(propertyID), x => target.SetTextureScale(propertyID, x), endValue, duration); + t.SetTarget(target); + return t; + } + + #endregion + + #endregion +#endif + } + + // █████████████████████████████████████████████████████████████████████████████████████████████████████████████████████ + // ███ CLASSES █████████████████████████████████████████████████████████████████████████████████████████████████████████ + // █████████████████████████████████████████████████████████████████████████████████████████████████████████████████████ + +#if UNITY_5_3_OR_NEWER || UNITY_2017_1_OR_NEWER + public static class DOTweenCYInstruction + { + public class WaitForCompletion : CustomYieldInstruction + { + public override bool keepWaiting { get { + return t.active && !t.IsComplete(); + }} + readonly Tween t; + public WaitForCompletion(Tween tween) + { + t = tween; + } + } + + public class WaitForRewind : CustomYieldInstruction + { + public override bool keepWaiting { get { + return t.active && (!t.playedOnce || t.position * (t.CompletedLoops() + 1) > 0); + }} + readonly Tween t; + public WaitForRewind(Tween tween) + { + t = tween; + } + } + + public class WaitForKill : CustomYieldInstruction + { + public override bool keepWaiting { get { + return t.active; + }} + readonly Tween t; + public WaitForKill(Tween tween) + { + t = tween; + } + } + + public class WaitForElapsedLoops : CustomYieldInstruction + { + public override bool keepWaiting { get { + return t.active && t.CompletedLoops() < elapsedLoops; + }} + readonly Tween t; + readonly int elapsedLoops; + public WaitForElapsedLoops(Tween tween, int elapsedLoops) + { + t = tween; + this.elapsedLoops = elapsedLoops; + } + } + + public class WaitForPosition : CustomYieldInstruction + { + public override bool keepWaiting { get { + return t.active && t.position * (t.CompletedLoops() + 1) < position; + }} + readonly Tween t; + readonly float position; + public WaitForPosition(Tween tween, float position) + { + t = tween; + this.position = position; + } + } + + public class WaitForStart : CustomYieldInstruction + { + public override bool keepWaiting { get { + return t.active && !t.playedOnce; + }} + readonly Tween t; + public WaitForStart(Tween tween) + { + t = tween; + } + } + } +#endif +} diff --git a/Assets/DOTween/Modules/DOTweenModuleUnityVersion.cs.meta b/Assets/DOTween/Modules/DOTweenModuleUnityVersion.cs.meta new file mode 100644 index 0000000..2e033db --- /dev/null +++ b/Assets/DOTween/Modules/DOTweenModuleUnityVersion.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 2722f87ea6dd66146886818ece8aa67b +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/DOTween/Modules/DOTweenModuleUtils.cs b/Assets/DOTween/Modules/DOTweenModuleUtils.cs new file mode 100644 index 0000000..8a1fb5f --- /dev/null +++ b/Assets/DOTween/Modules/DOTweenModuleUtils.cs @@ -0,0 +1,155 @@ +// Author: Daniele Giardini - http://www.demigiant.com +// Created: 2018/07/13 + +using System; +using System.Reflection; +using UnityEngine; +using DG.Tweening.Core; +using DG.Tweening.Plugins.Core.PathCore; +using DG.Tweening.Plugins.Options; + +#pragma warning disable 1591 +namespace DG.Tweening +{ + /// + /// Utility functions that deal with available Modules. + /// Modules defines: + /// - DOTAUDIO + /// - DOTPHYSICS + /// - DOTPHYSICS2D + /// - DOTSPRITE + /// - DOTUI + /// Extra defines set and used for implementation of external assets: + /// - DOTWEEN_TMP ► TextMesh Pro + /// - DOTWEEN_TK2D ► 2D Toolkit + /// + public static class DOTweenModuleUtils + { + static bool _initialized; + + #region Reflection + + /// + /// Called via Reflection by DOTweenComponent on Awake + /// +#if UNITY_2018_1_OR_NEWER + [UnityEngine.Scripting.Preserve] +#endif + public static void Init() + { + if (_initialized) return; + + _initialized = true; + DOTweenExternalCommand.SetOrientationOnPath += Physics.SetOrientationOnPath; + +#if UNITY_EDITOR +#if UNITY_4_3 || UNITY_4_4 || UNITY_4_5 || UNITY_4_6 || UNITY_5 || UNITY_2017_1 + UnityEditor.EditorApplication.playmodeStateChanged += PlaymodeStateChanged; +#else + UnityEditor.EditorApplication.playModeStateChanged += PlaymodeStateChanged; +#endif +#endif + } + +#if UNITY_2018_1_OR_NEWER +#pragma warning disable + [UnityEngine.Scripting.Preserve] + // Just used to preserve methods when building, never called + static void Preserver() + { + Assembly[] loadedAssemblies = AppDomain.CurrentDomain.GetAssemblies(); + MethodInfo mi = typeof(MonoBehaviour).GetMethod("Stub"); + } +#pragma warning restore +#endif + + #endregion + +#if UNITY_EDITOR + // Fires OnApplicationPause in DOTweenComponent even when Editor is paused (otherwise it's only fired at runtime) +#if UNITY_4_3 || UNITY_4_4 || UNITY_4_5 || UNITY_4_6 || UNITY_5 || UNITY_2017_1 + static void PlaymodeStateChanged() + #else + static void PlaymodeStateChanged(UnityEditor.PlayModeStateChange state) +#endif + { + if (DOTween.instance == null) return; + DOTween.instance.OnApplicationPause(UnityEditor.EditorApplication.isPaused); + } +#endif + + // █████████████████████████████████████████████████████████████████████████████████████████████████████████████████████ + // ███ INTERNAL CLASSES ████████████████████████████████████████████████████████████████████████████████████████████████ + // █████████████████████████████████████████████████████████████████████████████████████████████████████████████████████ + + public static class Physics + { + // Called via DOTweenExternalCommand callback + public static void SetOrientationOnPath(PathOptions options, Tween t, Quaternion newRot, Transform trans) + { +#if true // PHYSICS_MARKER + if (options.isRigidbody) ((Rigidbody)t.target).rotation = newRot; + else trans.rotation = newRot; +#else + trans.rotation = newRot; +#endif + } + + // Returns FALSE if the DOTween's Physics2D Module is disabled, or if there's no Rigidbody2D attached + public static bool HasRigidbody2D(Component target) + { +#if true // PHYSICS2D_MARKER + return target.GetComponent() != null; +#else + return false; +#endif + } + + #region Called via Reflection + + + // Called via Reflection by DOTweenPathInspector + // Returns FALSE if the DOTween's Physics Module is disabled, or if there's no rigidbody attached +#if UNITY_2018_1_OR_NEWER + [UnityEngine.Scripting.Preserve] +#endif + public static bool HasRigidbody(Component target) + { +#if true // PHYSICS_MARKER + return target.GetComponent() != null; +#else + return false; +#endif + } + + // Called via Reflection by DOTweenPath +#if UNITY_2018_1_OR_NEWER + [UnityEngine.Scripting.Preserve] +#endif + public static TweenerCore CreateDOTweenPathTween( + MonoBehaviour target, bool tweenRigidbody, bool isLocal, Path path, float duration, PathMode pathMode + ){ + TweenerCore t; +#if true // PHYSICS_MARKER + Rigidbody rBody = tweenRigidbody ? target.GetComponent() : null; + if (tweenRigidbody && rBody != null) { + t = isLocal + ? rBody.DOLocalPath(path, duration, pathMode) + : rBody.DOPath(path, duration, pathMode); + } else { + t = isLocal + ? target.transform.DOLocalPath(path, duration, pathMode) + : target.transform.DOPath(path, duration, pathMode); + } +#else + t = isLocal + ? target.transform.DOLocalPath(path, duration, pathMode) + : target.transform.DOPath(path, duration, pathMode); +#endif + return t; + } + + #endregion + } + } +} diff --git a/Assets/DOTween/Modules/DOTweenModuleUtils.cs.meta b/Assets/DOTween/Modules/DOTweenModuleUtils.cs.meta new file mode 100644 index 0000000..517a771 --- /dev/null +++ b/Assets/DOTween/Modules/DOTweenModuleUtils.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 2c59a143deedf98459b655a8d604e185 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/DOTween/readme.txt b/Assets/DOTween/readme.txt new file mode 100644 index 0000000..37ff7ef --- /dev/null +++ b/Assets/DOTween/readme.txt @@ -0,0 +1,29 @@ +DOTween and DOTween Pro are copyright (c) 2014-2018 Daniele Giardini - Demigiant + +// IMPORTANT!!! ///////////////////////////////////////////// +// Upgrading DOTween from versions older than 1.2.000 /////// +// (or DOTween Pro older than 1.0.000) ////////////////////// +------------------------------------------------------------- +If you're upgrading your project from a version of DOTween older than 1.2.000 (or DOTween Pro older than 1.0.000) please follow these instructions carefully. +1) Import the new version in the same folder as the previous one, overwriting old files. A lot of errors will appear but don't worry +2) Close and reopen Unity (and your project). This is fundamental: skipping this step will cause a bloodbath +3) Open DOTween's Utility Panel (Tools > Demigiant > DOTween Utility Panel) if it doesn't open automatically, then press "Setup DOTween...": this will run the upgrade setup +4) From the Add/Remove Modules panel that opens, activate/deactivate Modules for Unity systems and for external assets (Pro version only) + +// GET STARTED ////////////////////////////////////////////// + +- After importing a new DOTween update, select DOTween's Utility Panel from the "Tools/Demigiant" menu (if it doesn't open automatically) and press the "Setup DOTween..." button to activate/deactivate Modules. You can also access a Preferences Tab from there to choose default settings for DOTween. +- In your code, add "using DG.Tweening" to each class where you want to use DOTween. +- You're ready to tween. Check out the links below for full documentation and license info. + + +// LINKS /////////////////////////////////////////////////////// + +DOTween website (documentation, examples, etc): http://dotween.demigiant.com +DOTween license: http://dotween.demigiant.com/license.php +DOTween repository (Google Code): https://code.google.com/p/dotween/ +Demigiant website (documentation, examples, etc): http://www.demigiant.com + +// NOTES ////////////////////////////////////////////////////// + +- DOTween's Utility Panel can be found under "Tools > Demigiant > DOTween Utility Panel" and also contains other useful options, plus a tab to set DOTween's preferences \ No newline at end of file diff --git a/Assets/DOTween/readme.txt.meta b/Assets/DOTween/readme.txt.meta new file mode 100644 index 0000000..ca4afc7 --- /dev/null +++ b/Assets/DOTween/readme.txt.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 850d545e71d05e546ae8b2d01ff27483 +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ExampleAssets.meta b/Assets/ExampleAssets.meta new file mode 100644 index 0000000..5bd4aba --- /dev/null +++ b/Assets/ExampleAssets.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 990f5c2df70993f4987a388ca178996a +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ExampleAssets/Materials.meta b/Assets/ExampleAssets/Materials.meta new file mode 100644 index 0000000..98001dc --- /dev/null +++ b/Assets/ExampleAssets/Materials.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ffd318dbb37362c4f8d87863d082b2fd +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ExampleAssets/Materials/ConstructionLight_Mat.mat b/Assets/ExampleAssets/Materials/ConstructionLight_Mat.mat new file mode 100644 index 0000000..db0ec28 --- /dev/null +++ b/Assets/ExampleAssets/Materials/ConstructionLight_Mat.mat @@ -0,0 +1,126 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-1110115186387250887 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 4 +--- !u!21 &2100000 +Material: + serializedVersion: 6 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: ConstructionLight_Mat + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_ShaderKeywords: _METALLICSPECGLOSSMAP _OCCLUSIONMAP + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: 2000 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 2ec6e1532acb1254f9f3797b5d82db44, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 2800000, guid: e21bd9673bcc8954fa8b4ed0f92661da, type: 3} + 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: 2ec6e1532acb1254f9f3797b5d82db44, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 2800000, guid: 9a81f1a59f171804e84fce76584bdcb7, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 2800000, guid: 9a81f1a59f171804e84fce76584bdcb7, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Floats: + - _AlphaClip: 0 + - _Blend: 0 + - _BumpScale: 1 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 2 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 1 + - _SmoothnessTextureChannel: 0 + - _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} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] diff --git a/Assets/ExampleAssets/Materials/ConstructionLight_Mat.mat.meta b/Assets/ExampleAssets/Materials/ConstructionLight_Mat.mat.meta new file mode 100644 index 0000000..26f8cde --- /dev/null +++ b/Assets/ExampleAssets/Materials/ConstructionLight_Mat.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 49076442eeb7e054b8e8869f8b40656d +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ExampleAssets/Materials/DryWallPainted_Mat.mat b/Assets/ExampleAssets/Materials/DryWallPainted_Mat.mat new file mode 100644 index 0000000..4895ecf --- /dev/null +++ b/Assets/ExampleAssets/Materials/DryWallPainted_Mat.mat @@ -0,0 +1,126 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 6 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: DryWallPainted_Mat + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_ShaderKeywords: _NORMALMAP _SMOOTHNESS_TEXTURE_ALBEDO_CHANNEL_A + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: 2000 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 3e11968c372730442aae3b4f7c909931, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 2800000, guid: 2cd242c9999e92b4ca96dab876cfaf13, type: 3} + 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: 3e11968c372730442aae3b4f7c909931, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Floats: + - _AlphaClip: 0 + - _Blend: 0 + - _BumpScale: 1 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 2 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 1 + - _SmoothnessTextureChannel: 1 + - _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} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] +--- !u!114 &1771650891458244884 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 4 diff --git a/Assets/ExampleAssets/Materials/DryWallPainted_Mat.mat.meta b/Assets/ExampleAssets/Materials/DryWallPainted_Mat.mat.meta new file mode 100644 index 0000000..11004a5 --- /dev/null +++ b/Assets/ExampleAssets/Materials/DryWallPainted_Mat.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 9b8eadc4de0544646b75ddcc43f8fd06 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ExampleAssets/Materials/DryWall_Mat.mat b/Assets/ExampleAssets/Materials/DryWall_Mat.mat new file mode 100644 index 0000000..a801acd --- /dev/null +++ b/Assets/ExampleAssets/Materials/DryWall_Mat.mat @@ -0,0 +1,126 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-1452284438369244204 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 4 +--- !u!21 &2100000 +Material: + serializedVersion: 6 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: DryWall_Mat + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_ShaderKeywords: _NORMALMAP _SMOOTHNESS_TEXTURE_ALBEDO_CHANNEL_A + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: 2000 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: eae496078d11426448124eaf8b285e6b, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 2800000, guid: e231e4c02c48ee14aafa55f7b1a843c1, type: 3} + 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: eae496078d11426448124eaf8b285e6b, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Floats: + - _AlphaClip: 0 + - _Blend: 0 + - _BumpScale: 1 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 2 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 1 + - _SmoothnessTextureChannel: 1 + - _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} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] diff --git a/Assets/ExampleAssets/Materials/DryWall_Mat.mat.meta b/Assets/ExampleAssets/Materials/DryWall_Mat.mat.meta new file mode 100644 index 0000000..bf6f938 --- /dev/null +++ b/Assets/ExampleAssets/Materials/DryWall_Mat.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: a68228c24abfa2f4b8954d7b0148f799 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ExampleAssets/Materials/Ground_Mat.mat b/Assets/ExampleAssets/Materials/Ground_Mat.mat new file mode 100644 index 0000000..2e5cfc5 --- /dev/null +++ b/Assets/ExampleAssets/Materials/Ground_Mat.mat @@ -0,0 +1,126 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-1938917682420657291 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 4 +--- !u!21 &2100000 +Material: + serializedVersion: 6 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Ground_Mat + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_ShaderKeywords: _METALLICSPECGLOSSMAP _NORMALMAP _OCCLUSIONMAP + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: 2000 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 87ce03bd447ccce48bbff87ac0d8355f, type: 3} + m_Scale: {x: 3, y: 3} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 2800000, guid: fab85e0cacda9644a99e5182a86b71f5, type: 3} + 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: 3, y: 3} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 87ce03bd447ccce48bbff87ac0d8355f, type: 3} + m_Scale: {x: 3, y: 3} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 2800000, guid: a8d38587573a5f34c91c4ae0fbd8bfef, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 2800000, guid: a8d38587573a5f34c91c4ae0fbd8bfef, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Floats: + - _AlphaClip: 0 + - _Blend: 0 + - _BumpScale: 1 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 2 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 1 + - _SmoothnessTextureChannel: 0 + - _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} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] diff --git a/Assets/ExampleAssets/Materials/Ground_Mat.mat.meta b/Assets/ExampleAssets/Materials/Ground_Mat.mat.meta new file mode 100644 index 0000000..01d1375 --- /dev/null +++ b/Assets/ExampleAssets/Materials/Ground_Mat.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d92ef32394b5f474385d74b565a7bdd7 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ExampleAssets/Materials/Hammer_Mat.mat b/Assets/ExampleAssets/Materials/Hammer_Mat.mat new file mode 100644 index 0000000..6f11ae5 --- /dev/null +++ b/Assets/ExampleAssets/Materials/Hammer_Mat.mat @@ -0,0 +1,126 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 6 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Hammer_Mat + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_ShaderKeywords: _METALLICSPECGLOSSMAP _NORMALMAP _OCCLUSIONMAP + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: 2000 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 59c8de363dc14c54986d0751c2c38342, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 2800000, guid: c517a9b1527aec343806327b47ad22df, type: 3} + 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: 59c8de363dc14c54986d0751c2c38342, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 2800000, guid: 6c509e4ae024b5e4faeefb92dab5c812, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 2800000, guid: 6c509e4ae024b5e4faeefb92dab5c812, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Floats: + - _AlphaClip: 0 + - _Blend: 0 + - _BumpScale: 1 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 2 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 1 + - _SmoothnessTextureChannel: 0 + - _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} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] +--- !u!114 &6967907786537439707 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 4 diff --git a/Assets/ExampleAssets/Materials/Hammer_Mat.mat.meta b/Assets/ExampleAssets/Materials/Hammer_Mat.mat.meta new file mode 100644 index 0000000..fa0d391 --- /dev/null +++ b/Assets/ExampleAssets/Materials/Hammer_Mat.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 4efcffd7ae23f1e41943fd914b18da10 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ExampleAssets/Materials/HardHat_Mat.mat b/Assets/ExampleAssets/Materials/HardHat_Mat.mat new file mode 100644 index 0000000..e1194b2 --- /dev/null +++ b/Assets/ExampleAssets/Materials/HardHat_Mat.mat @@ -0,0 +1,126 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 6 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: HardHat_Mat + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_ShaderKeywords: _METALLICSPECGLOSSMAP _NORMALMAP _OCCLUSIONMAP + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: 2000 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: dd61af2ec9847eb4d8e17529fa61b143, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 2800000, guid: d608c45da8580c9408ee50eb9a8c40f3, type: 3} + 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: dd61af2ec9847eb4d8e17529fa61b143, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 2800000, guid: 6f61f8dd4499250438f1aa39448e860a, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 2800000, guid: 6f61f8dd4499250438f1aa39448e860a, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Floats: + - _AlphaClip: 0 + - _Blend: 0 + - _BumpScale: 1 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 2 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 1 + - _SmoothnessTextureChannel: 0 + - _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} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] +--- !u!114 &8647599817607310902 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 4 diff --git a/Assets/ExampleAssets/Materials/HardHat_Mat.mat.meta b/Assets/ExampleAssets/Materials/HardHat_Mat.mat.meta new file mode 100644 index 0000000..935abe4 --- /dev/null +++ b/Assets/ExampleAssets/Materials/HardHat_Mat.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: e93789f0a5d66df4a81613935579642b +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ExampleAssets/Materials/Jigsaw_Mat.mat b/Assets/ExampleAssets/Materials/Jigsaw_Mat.mat new file mode 100644 index 0000000..c2dbdf1 --- /dev/null +++ b/Assets/ExampleAssets/Materials/Jigsaw_Mat.mat @@ -0,0 +1,126 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 6 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Jigsaw_Mat + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_ShaderKeywords: _METALLICSPECGLOSSMAP _NORMALMAP _OCCLUSIONMAP + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: 2000 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: b3f247b26e080ca468f1daa963c192ee, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 2800000, guid: 06969fc081d8cc146af6634f75abe652, type: 3} + 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: b3f247b26e080ca468f1daa963c192ee, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 2800000, guid: 3017ed6fed9d3bb49ba99bf738e2d626, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 2800000, guid: 3017ed6fed9d3bb49ba99bf738e2d626, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 2800000, guid: f71caed0abfe13445bf668a61fa1ebb7, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Floats: + - _AlphaClip: 0 + - _Blend: 0 + - _BumpScale: 1 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 2 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 1 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 0.9150943, g: 0.87006557, b: 0.7985493, a: 1} + - _Color: {r: 0.9150943, g: 0.87006557, b: 0.7985493, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] +--- !u!114 &2767029208389193504 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 4 diff --git a/Assets/ExampleAssets/Materials/Jigsaw_Mat.mat.meta b/Assets/ExampleAssets/Materials/Jigsaw_Mat.mat.meta new file mode 100644 index 0000000..f1881a0 --- /dev/null +++ b/Assets/ExampleAssets/Materials/Jigsaw_Mat.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 801db2d997a562b4ea333aa4593ce0f0 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ExampleAssets/Materials/LightBulb_Mat.mat b/Assets/ExampleAssets/Materials/LightBulb_Mat.mat new file mode 100644 index 0000000..3f89da1 --- /dev/null +++ b/Assets/ExampleAssets/Materials/LightBulb_Mat.mat @@ -0,0 +1,126 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-5142272834448995901 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 4 +--- !u!21 &2100000 +Material: + serializedVersion: 6 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: LightBulb_Mat + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_ShaderKeywords: _EMISSION + m_LightmapFlags: 2 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: 2000 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + 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: 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Floats: + - _AlphaClip: 0 + - _Blend: 0 + - _BumpScale: 1 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 2 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 0.5 + - _SmoothnessTextureChannel: 0 + - _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: 11.179362, g: 11.179362, b: 11.179362, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] diff --git a/Assets/ExampleAssets/Materials/LightBulb_Mat.mat.meta b/Assets/ExampleAssets/Materials/LightBulb_Mat.mat.meta new file mode 100644 index 0000000..7160611 --- /dev/null +++ b/Assets/ExampleAssets/Materials/LightBulb_Mat.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ec739259ec61f5d4ba3ed6d34fd802a6 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ExampleAssets/Materials/Liquid_Mat.mat b/Assets/ExampleAssets/Materials/Liquid_Mat.mat new file mode 100644 index 0000000..2cdc20c --- /dev/null +++ b/Assets/ExampleAssets/Materials/Liquid_Mat.mat @@ -0,0 +1,127 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-7877372111115898564 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 4 +--- !u!21 &2100000 +Material: + serializedVersion: 6 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Liquid_Mat + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_ShaderKeywords: _ALPHAPREMULTIPLY_ON + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: 3000 + stringTagMap: + RenderType: Transparent + disabledShaderPasses: + - SHADOWCASTER + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + 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: 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Floats: + - _AlphaClip: 0 + - _Blend: 1 + - _BumpScale: 1 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 2 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 10 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.15 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 3 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 0.15 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _Surface: 1 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 0 + m_Colors: + - _BaseColor: {r: 0.95283014, g: 0.9241496, b: 0.34607506, a: 0.4627451} + - _Color: {r: 0.9528302, g: 0.9241496, b: 0.3460751, a: 0.4627451} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] diff --git a/Assets/ExampleAssets/Materials/Liquid_Mat.mat.meta b/Assets/ExampleAssets/Materials/Liquid_Mat.mat.meta new file mode 100644 index 0000000..b4a0dad --- /dev/null +++ b/Assets/ExampleAssets/Materials/Liquid_Mat.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c532880e607f8c84d8b9bf0c46a522ad +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ExampleAssets/Materials/Metal_Blue_Simple_Mat.mat b/Assets/ExampleAssets/Materials/Metal_Blue_Simple_Mat.mat new file mode 100644 index 0000000..26c4ed3 --- /dev/null +++ b/Assets/ExampleAssets/Materials/Metal_Blue_Simple_Mat.mat @@ -0,0 +1,126 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 6 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Metal_Blue_Simple_Mat + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_ShaderKeywords: _METALLICSPECGLOSSMAP _NORMALMAP + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: 2000 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 77583f99dea53b641804bb357092ec83, type: 3} + m_Scale: {x: 2, y: 2} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 2800000, guid: 3b0b7c1f4ac9f6b499e27cf84e722ff4, type: 3} + 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: 2, y: 2} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 77583f99dea53b641804bb357092ec83, type: 3} + m_Scale: {x: 2, y: 2} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 2800000, guid: 40da0395b61db4448b98bab66d6b549c, 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} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Floats: + - _AlphaClip: 0 + - _Blend: 0 + - _BumpScale: 1 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 2 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 1 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 0.20990562, g: 0.41062784, b: 0.8396226, a: 1} + - _Color: {r: 0.20990565, g: 0.41062787, b: 0.8396226, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] +--- !u!114 &6685764012646671145 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 4 diff --git a/Assets/ExampleAssets/Materials/Metal_Blue_Simple_Mat.mat.meta b/Assets/ExampleAssets/Materials/Metal_Blue_Simple_Mat.mat.meta new file mode 100644 index 0000000..9049191 --- /dev/null +++ b/Assets/ExampleAssets/Materials/Metal_Blue_Simple_Mat.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: cd71291c91c8cce499cb663b5db9970e +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ExampleAssets/Materials/Metal_Simple_Mat.mat b/Assets/ExampleAssets/Materials/Metal_Simple_Mat.mat new file mode 100644 index 0000000..0975ecb --- /dev/null +++ b/Assets/ExampleAssets/Materials/Metal_Simple_Mat.mat @@ -0,0 +1,126 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-4201246171349771956 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 4 +--- !u!21 &2100000 +Material: + serializedVersion: 6 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Metal_Simple_Mat + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_ShaderKeywords: _METALLICSPECGLOSSMAP _NORMALMAP + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: 2000 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 77583f99dea53b641804bb357092ec83, type: 3} + m_Scale: {x: 4, y: 4} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 2800000, guid: 3b0b7c1f4ac9f6b499e27cf84e722ff4, type: 3} + 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: 4, y: 4} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 77583f99dea53b641804bb357092ec83, type: 3} + m_Scale: {x: 4, y: 4} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 2800000, guid: 40da0395b61db4448b98bab66d6b549c, 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} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Floats: + - _AlphaClip: 0 + - _Blend: 0 + - _BumpScale: 1 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 2 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 1 + - _SmoothnessTextureChannel: 0 + - _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} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] diff --git a/Assets/ExampleAssets/Materials/Metal_Simple_Mat.mat.meta b/Assets/ExampleAssets/Materials/Metal_Simple_Mat.mat.meta new file mode 100644 index 0000000..02e8ac2 --- /dev/null +++ b/Assets/ExampleAssets/Materials/Metal_Simple_Mat.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: a0427cf339e5891468d5f2b433b2d44a +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ExampleAssets/Materials/OBS_Mat.mat b/Assets/ExampleAssets/Materials/OBS_Mat.mat new file mode 100644 index 0000000..e2e4fe2 --- /dev/null +++ b/Assets/ExampleAssets/Materials/OBS_Mat.mat @@ -0,0 +1,126 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 6 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: OBS_Mat + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_ShaderKeywords: _METALLICSPECGLOSSMAP _NORMALMAP _OCCLUSIONMAP + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: 2000 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 7140a9bc83a12ea49a081dda89216fff, type: 3} + m_Scale: {x: 3, y: 2.5} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 2800000, guid: fcce267dfc966b6408dc2ebe0cfb60ed, type: 3} + 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: 3, y: 2.5} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 7140a9bc83a12ea49a081dda89216fff, type: 3} + m_Scale: {x: 3, y: 2.5} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 2800000, guid: 22638a9216f1ebf4cb43273a00879f51, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 2800000, guid: 22638a9216f1ebf4cb43273a00879f51, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Floats: + - _AlphaClip: 0 + - _Blend: 0 + - _BumpScale: 1 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 2 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 1 + - _SmoothnessTextureChannel: 0 + - _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} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] +--- !u!114 &5927436510443696187 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 4 diff --git a/Assets/ExampleAssets/Materials/OBS_Mat.mat.meta b/Assets/ExampleAssets/Materials/OBS_Mat.mat.meta new file mode 100644 index 0000000..04198e1 --- /dev/null +++ b/Assets/ExampleAssets/Materials/OBS_Mat.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c438e5c679f1be040a135443008e2fce +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ExampleAssets/Materials/Paint1G_WAnim_Material.mat b/Assets/ExampleAssets/Materials/Paint1G_WAnim_Material.mat new file mode 100644 index 0000000..ed42cb1 --- /dev/null +++ b/Assets/ExampleAssets/Materials/Paint1G_WAnim_Material.mat @@ -0,0 +1,92 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 6 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Paint1G_WAnim_Material + m_Shader: {fileID: 4800000, guid: 5e5eca56e1993e741b41ac9c687d01a5, type: 3} + m_ShaderKeywords: + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: -1 + stringTagMap: {} + disabledShaderPasses: [] + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - Texture2D_C69EB180: + m_Texture: {fileID: 2800000, guid: e5c37ab0c7b37af4f981195d3caaf4b4, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SampleTexture2D_3ec74a86d8c1488d8ce597f8156fb7ab_Texture_1: + m_Texture: {fileID: 2800000, guid: 2de0d72a6700bd94ea57111b29e246fc, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SampleTexture2D_72715EE4_Texture: + m_Texture: {fileID: 2800000, guid: ca084ebab0cef7c4ba746cdb442f9c1e, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SampleTexture2D_72715EE4_Texture_1: + m_Texture: {fileID: 2800000, guid: ca084ebab0cef7c4ba746cdb442f9c1e, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SampleTexture2D_C873BFA4_Texture: + m_Texture: {fileID: 2800000, guid: 2de0d72a6700bd94ea57111b29e246fc, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SampleTexture2D_C873BFA4_Texture_1: + m_Texture: {fileID: 2800000, guid: 2de0d72a6700bd94ea57111b29e246fc, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SampleTexture2D_CDBC38BA_Texture: + m_Texture: {fileID: 2800000, guid: 5e98de278b2ccc14f89b76b85596a3f3, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SampleTexture2D_CDBC38BA_Texture_1: + m_Texture: {fileID: 2800000, guid: 5e98de278b2ccc14f89b76b85596a3f3, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SampleTexture2D_D6BD25ED_Texture: + m_Texture: {fileID: 2800000, guid: ac80c335ebd6dde4fa54a82050064545, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SampleTexture2D_D6BD25ED_Texture_1: + m_Texture: {fileID: 2800000, guid: ac80c335ebd6dde4fa54a82050064545, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SampleTexture2D_ae061cbc8301d686a4cbfc6826975296_Texture_1: + m_Texture: {fileID: 2800000, guid: ca084ebab0cef7c4ba746cdb442f9c1e, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SampleTexture2D_aef34a082e463b8992e5f66de0345979_Texture_1: + m_Texture: {fileID: 2800000, guid: ac80c335ebd6dde4fa54a82050064545, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SampleTexture2D_e60950bba990008885c246fd6823bc78_Texture_1: + m_Texture: {fileID: 2800000, guid: 5e98de278b2ccc14f89b76b85596a3f3, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Floats: + - Vector1_2EE2CB80: 0.01 + m_Colors: + - Color_23C9B10D: {r: 0, g: 0.61, b: 0.85, a: 0} + - Color_A2AAE5B5: {r: 0.78999996, g: 0.8399999, b: 0.96999997, a: 0} + - Vector2_C848BFFB: {r: 0.3, g: 0.8, b: 0, a: 0} + m_BuildTextureStacks: [] diff --git a/Assets/ExampleAssets/Materials/Paint1G_WAnim_Material.mat.meta b/Assets/ExampleAssets/Materials/Paint1G_WAnim_Material.mat.meta new file mode 100644 index 0000000..bfb3667 --- /dev/null +++ b/Assets/ExampleAssets/Materials/Paint1G_WAnim_Material.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 55c183dc45153be48a45c4e530127fb3 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ExampleAssets/Materials/PaintBrush_Mat.mat b/Assets/ExampleAssets/Materials/PaintBrush_Mat.mat new file mode 100644 index 0000000..6a1c48d --- /dev/null +++ b/Assets/ExampleAssets/Materials/PaintBrush_Mat.mat @@ -0,0 +1,126 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 6 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: PaintBrush_Mat + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_ShaderKeywords: _METALLICSPECGLOSSMAP _NORMALMAP _OCCLUSIONMAP + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: 2000 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 4675081b0baf66345adc734388155502, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 2800000, guid: 09e745bf0b8ff6a4bb5785d14168289a, type: 3} + 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: 4675081b0baf66345adc734388155502, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 2800000, guid: 888916a5e87c05948b1a97b3c0d42556, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 2800000, guid: 888916a5e87c05948b1a97b3c0d42556, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Floats: + - _AlphaClip: 0 + - _Blend: 0 + - _BumpScale: 1 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 2 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 1 + - _SmoothnessTextureChannel: 0 + - _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} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] +--- !u!114 &3664974306083302143 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 4 diff --git a/Assets/ExampleAssets/Materials/PaintBrush_Mat.mat.meta b/Assets/ExampleAssets/Materials/PaintBrush_Mat.mat.meta new file mode 100644 index 0000000..bed7d2c --- /dev/null +++ b/Assets/ExampleAssets/Materials/PaintBrush_Mat.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 539165557a9d3744680bb21164bea45e +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ExampleAssets/Materials/PaintLabel_Mat.mat b/Assets/ExampleAssets/Materials/PaintLabel_Mat.mat new file mode 100644 index 0000000..86b5a4e --- /dev/null +++ b/Assets/ExampleAssets/Materials/PaintLabel_Mat.mat @@ -0,0 +1,126 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-4540267111172690261 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 4 +--- !u!21 &2100000 +Material: + serializedVersion: 6 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: PaintLabel_Mat + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_ShaderKeywords: _SMOOTHNESS_TEXTURE_ALBEDO_CHANNEL_A + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: 2000 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 5d25a5cd577a4c54e94fdf9cc6f1a631, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailAlbedoMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailMask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailNormalMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 5d25a5cd577a4c54e94fdf9cc6f1a631, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Floats: + - _AlphaClip: 0 + - _Blend: 0 + - _BumpScale: 1 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 2 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 1 + - _SmoothnessTextureChannel: 1 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 0.9433962, g: 0.9433962, b: 0.9433962, a: 1} + - _Color: {r: 0.9433962, g: 0.9433962, b: 0.9433962, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] diff --git a/Assets/ExampleAssets/Materials/PaintLabel_Mat.mat.meta b/Assets/ExampleAssets/Materials/PaintLabel_Mat.mat.meta new file mode 100644 index 0000000..a1ca416 --- /dev/null +++ b/Assets/ExampleAssets/Materials/PaintLabel_Mat.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 3da4aad06945bbf4baf801c2aacbc01e +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ExampleAssets/Materials/Plastic_Black_Mat.mat b/Assets/ExampleAssets/Materials/Plastic_Black_Mat.mat new file mode 100644 index 0000000..cf8736f --- /dev/null +++ b/Assets/ExampleAssets/Materials/Plastic_Black_Mat.mat @@ -0,0 +1,126 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-612143055516782828 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 4 +--- !u!21 &2100000 +Material: + serializedVersion: 6 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Plastic_Black_Mat + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_ShaderKeywords: _NORMALMAP _SMOOTHNESS_TEXTURE_ALBEDO_CHANNEL_A + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: 2000 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 1f89fed00b6bc904c861ab847a811cb8, type: 3} + m_Scale: {x: 3, y: 3} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 2800000, guid: e109905c411b0f84e82eaaf2705ece30, type: 3} + 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: 3, y: 3} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 1f89fed00b6bc904c861ab847a811cb8, type: 3} + m_Scale: {x: 3, y: 3} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Floats: + - _AlphaClip: 0 + - _Blend: 0 + - _BumpScale: 1 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 2 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 1 + - _SmoothnessTextureChannel: 1 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 0.17647055, g: 0.17647055, b: 0.17647055, a: 1} + - _Color: {r: 0.1764706, g: 0.1764706, b: 0.1764706, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] diff --git a/Assets/ExampleAssets/Materials/Plastic_Black_Mat.mat.meta b/Assets/ExampleAssets/Materials/Plastic_Black_Mat.mat.meta new file mode 100644 index 0000000..245cd16 --- /dev/null +++ b/Assets/ExampleAssets/Materials/Plastic_Black_Mat.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: e745492728544aa488aa0429b6068e71 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ExampleAssets/Materials/Plastic_Gray_Mat.mat b/Assets/ExampleAssets/Materials/Plastic_Gray_Mat.mat new file mode 100644 index 0000000..d852d64 --- /dev/null +++ b/Assets/ExampleAssets/Materials/Plastic_Gray_Mat.mat @@ -0,0 +1,126 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-8081286204933507892 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 4 +--- !u!21 &2100000 +Material: + serializedVersion: 6 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Plastic_Gray_Mat + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_ShaderKeywords: _NORMALMAP _SMOOTHNESS_TEXTURE_ALBEDO_CHANNEL_A + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: 2000 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 1f89fed00b6bc904c861ab847a811cb8, type: 3} + m_Scale: {x: 3, y: 3} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 2800000, guid: e109905c411b0f84e82eaaf2705ece30, type: 3} + 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: 3, y: 3} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 1f89fed00b6bc904c861ab847a811cb8, type: 3} + m_Scale: {x: 3, y: 3} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Floats: + - _AlphaClip: 0 + - _Blend: 0 + - _BumpScale: 1 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 2 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 1 + - _SmoothnessTextureChannel: 1 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 0.39215684, g: 0.39215684, b: 0.39215684, a: 1} + - _Color: {r: 0.39215687, g: 0.39215687, b: 0.39215687, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] diff --git a/Assets/ExampleAssets/Materials/Plastic_Gray_Mat.mat.meta b/Assets/ExampleAssets/Materials/Plastic_Gray_Mat.mat.meta new file mode 100644 index 0000000..4567571 --- /dev/null +++ b/Assets/ExampleAssets/Materials/Plastic_Gray_Mat.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 4dad30bbe2213eb4d8312f7bb6190866 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ExampleAssets/Materials/Plastic_Ridges_Mat.mat b/Assets/ExampleAssets/Materials/Plastic_Ridges_Mat.mat new file mode 100644 index 0000000..4ce0ce3 --- /dev/null +++ b/Assets/ExampleAssets/Materials/Plastic_Ridges_Mat.mat @@ -0,0 +1,126 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 6 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Plastic_Ridges_Mat + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_ShaderKeywords: _METALLICSPECGLOSSMAP _NORMALMAP _OCCLUSIONMAP + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: 2000 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: ecb23393a0d1b424a82fff68a4c00a66, type: 3} + m_Scale: {x: 3, y: 8} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 2800000, guid: c021d051fa0cba84282b4a2577aa85c5, type: 3} + 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: 3, y: 8} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: ecb23393a0d1b424a82fff68a4c00a66, type: 3} + m_Scale: {x: 3, y: 8} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 2800000, guid: 201c1f77fe872924a86132486bc97e82, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 2800000, guid: 201c1f77fe872924a86132486bc97e82, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Floats: + - _AlphaClip: 0 + - _Blend: 0 + - _BumpScale: 1 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 2 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 1 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 0.8235294, g: 0.8235294, b: 0.8235294, a: 1} + - _Color: {r: 0.8235294, g: 0.8235294, b: 0.8235294, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] +--- !u!114 &1230989996996950307 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 4 diff --git a/Assets/ExampleAssets/Materials/Plastic_Ridges_Mat.mat.meta b/Assets/ExampleAssets/Materials/Plastic_Ridges_Mat.mat.meta new file mode 100644 index 0000000..1efa016 --- /dev/null +++ b/Assets/ExampleAssets/Materials/Plastic_Ridges_Mat.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c05de7c865075334786e6a47a543af72 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ExampleAssets/Materials/Plastic_Rough_Mat.mat b/Assets/ExampleAssets/Materials/Plastic_Rough_Mat.mat new file mode 100644 index 0000000..580d83d --- /dev/null +++ b/Assets/ExampleAssets/Materials/Plastic_Rough_Mat.mat @@ -0,0 +1,126 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 6 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Plastic_Rough_Mat + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_ShaderKeywords: _METALLICSPECGLOSSMAP _NORMALMAP _OCCLUSIONMAP + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: 2000 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 7b82d12aad56cc445b99fd1cf06a232d, type: 3} + m_Scale: {x: 3, y: 3} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 2800000, guid: e109905c411b0f84e82eaaf2705ece30, type: 3} + 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: 3, y: 3} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 7b82d12aad56cc445b99fd1cf06a232d, type: 3} + m_Scale: {x: 3, y: 3} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 2800000, guid: ee7680f1374ab4449b6d5f6b2c2c1936, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 2800000, guid: ee7680f1374ab4449b6d5f6b2c2c1936, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Floats: + - _AlphaClip: 0 + - _Blend: 0 + - _BumpScale: 1 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 2 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 1 + - _SmoothnessTextureChannel: 0 + - _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} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] +--- !u!114 &3444790275104991249 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 4 diff --git a/Assets/ExampleAssets/Materials/Plastic_Rough_Mat.mat.meta b/Assets/ExampleAssets/Materials/Plastic_Rough_Mat.mat.meta new file mode 100644 index 0000000..96c575f --- /dev/null +++ b/Assets/ExampleAssets/Materials/Plastic_Rough_Mat.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: a5aaee4111611af43b5abbff184fe5fa +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ExampleAssets/Materials/Plastic_Transparent.mat b/Assets/ExampleAssets/Materials/Plastic_Transparent.mat new file mode 100644 index 0000000..efbe016 --- /dev/null +++ b/Assets/ExampleAssets/Materials/Plastic_Transparent.mat @@ -0,0 +1,127 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-2237853913440573722 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 4 +--- !u!21 &2100000 +Material: + serializedVersion: 6 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Plastic_Transparent + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_ShaderKeywords: _ALPHAPREMULTIPLY_ON + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: 3000 + stringTagMap: + RenderType: Transparent + disabledShaderPasses: + - SHADOWCASTER + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + 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: 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Floats: + - _AlphaClip: 0 + - _Blend: 1 + - _BumpScale: 1 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 2 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 10 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.9 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 3 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 0.9 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _Surface: 1 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 0 + m_Colors: + - _BaseColor: {r: 0.41509423, g: 0.41509423, b: 0.41509423, a: 0.6} + - _Color: {r: 0.41509426, g: 0.41509426, b: 0.41509426, a: 0.6} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] diff --git a/Assets/ExampleAssets/Materials/Plastic_Transparent.mat.meta b/Assets/ExampleAssets/Materials/Plastic_Transparent.mat.meta new file mode 100644 index 0000000..e51fc93 --- /dev/null +++ b/Assets/ExampleAssets/Materials/Plastic_Transparent.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 8a38b7350df9a9c438e568993a00e5c5 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ExampleAssets/Materials/Plastic_White_Mat.mat b/Assets/ExampleAssets/Materials/Plastic_White_Mat.mat new file mode 100644 index 0000000..176cde2 --- /dev/null +++ b/Assets/ExampleAssets/Materials/Plastic_White_Mat.mat @@ -0,0 +1,126 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-1210248035526891441 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 4 +--- !u!21 &2100000 +Material: + serializedVersion: 6 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Plastic_White_Mat + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_ShaderKeywords: _NORMALMAP _SMOOTHNESS_TEXTURE_ALBEDO_CHANNEL_A + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: 2000 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 1f89fed00b6bc904c861ab847a811cb8, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 2800000, guid: e109905c411b0f84e82eaaf2705ece30, type: 3} + 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: 1f89fed00b6bc904c861ab847a811cb8, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Floats: + - _AlphaClip: 0 + - _Blend: 0 + - _BumpScale: 1 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 2 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 1 + - _SmoothnessTextureChannel: 1 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 0.9056604, g: 0.9056604, b: 0.9056604, a: 1} + - _Color: {r: 0.9056604, g: 0.9056604, b: 0.9056604, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] diff --git a/Assets/ExampleAssets/Materials/Plastic_White_Mat.mat.meta b/Assets/ExampleAssets/Materials/Plastic_White_Mat.mat.meta new file mode 100644 index 0000000..220e39a --- /dev/null +++ b/Assets/ExampleAssets/Materials/Plastic_White_Mat.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 6cfe423139c361a459da7ed9831d4b1c +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ExampleAssets/Materials/Plastic_Yellow_Mat.mat b/Assets/ExampleAssets/Materials/Plastic_Yellow_Mat.mat new file mode 100644 index 0000000..bbf6601 --- /dev/null +++ b/Assets/ExampleAssets/Materials/Plastic_Yellow_Mat.mat @@ -0,0 +1,126 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-939364500037359157 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 4 +--- !u!21 &2100000 +Material: + serializedVersion: 6 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Plastic_Yellow_Mat + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_ShaderKeywords: _NORMALMAP _SMOOTHNESS_TEXTURE_ALBEDO_CHANNEL_A + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: 2000 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 1f89fed00b6bc904c861ab847a811cb8, type: 3} + m_Scale: {x: 3, y: 3} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 2800000, guid: e109905c411b0f84e82eaaf2705ece30, type: 3} + 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: 3, y: 3} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 1f89fed00b6bc904c861ab847a811cb8, type: 3} + m_Scale: {x: 3, y: 3} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Floats: + - _AlphaClip: 0 + - _Blend: 0 + - _BumpScale: 1 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 2 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 1 + - _SmoothnessTextureChannel: 1 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 0.8687334, b: 0.06274507, a: 1} + - _Color: {r: 1, g: 0.8687334, b: 0.062745094, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] diff --git a/Assets/ExampleAssets/Materials/Plastic_Yellow_Mat.mat.meta b/Assets/ExampleAssets/Materials/Plastic_Yellow_Mat.mat.meta new file mode 100644 index 0000000..95e1bb8 --- /dev/null +++ b/Assets/ExampleAssets/Materials/Plastic_Yellow_Mat.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: bd2d742ee2ce7a740ae0cf992a38be74 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ExampleAssets/Materials/Strap_Mat.mat b/Assets/ExampleAssets/Materials/Strap_Mat.mat new file mode 100644 index 0000000..5714f00 --- /dev/null +++ b/Assets/ExampleAssets/Materials/Strap_Mat.mat @@ -0,0 +1,126 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 6 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Strap_Mat + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_ShaderKeywords: _METALLICSPECGLOSSMAP _NORMALMAP _OCCLUSIONMAP + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: 2000 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 7b82d12aad56cc445b99fd1cf06a232d, type: 3} + m_Scale: {x: 6, y: 6} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 2800000, guid: db17334dfe5991a4bbe241ee9a728c38, type: 3} + 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: 6, y: 6} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 7b82d12aad56cc445b99fd1cf06a232d, type: 3} + m_Scale: {x: 6, y: 6} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 2800000, guid: f5df2fb0c070b57429f8ca23b216093b, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 2800000, guid: f5df2fb0c070b57429f8ca23b216093b, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Floats: + - _AlphaClip: 0 + - _Blend: 0 + - _BumpScale: 1 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 2 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 1 + - _SmoothnessTextureChannel: 0 + - _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} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] +--- !u!114 &5515891668176480062 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 4 diff --git a/Assets/ExampleAssets/Materials/Strap_Mat.mat.meta b/Assets/ExampleAssets/Materials/Strap_Mat.mat.meta new file mode 100644 index 0000000..46e4696 --- /dev/null +++ b/Assets/ExampleAssets/Materials/Strap_Mat.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 81c1860e7800e5340bf8a54c565ba9ea +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ExampleAssets/Materials/Stud_Mat.mat b/Assets/ExampleAssets/Materials/Stud_Mat.mat new file mode 100644 index 0000000..566c9d1 --- /dev/null +++ b/Assets/ExampleAssets/Materials/Stud_Mat.mat @@ -0,0 +1,126 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-2281148917716246508 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 4 +--- !u!21 &2100000 +Material: + serializedVersion: 6 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Stud_Mat + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_ShaderKeywords: _METALLICSPECGLOSSMAP _NORMALMAP _OCCLUSIONMAP + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: 2000 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 9644eb6aca67672449e2bcbb0eab8e84, type: 3} + m_Scale: {x: 4, y: 4} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 2800000, guid: 2148396b133b56f40baa7ea4fd22982a, type: 3} + 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: 4, y: 4} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 9644eb6aca67672449e2bcbb0eab8e84, type: 3} + m_Scale: {x: 4, y: 4} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 2800000, guid: 2e38f7921b7d7b1418ab63c08117ffb8, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 2800000, guid: 2e38f7921b7d7b1418ab63c08117ffb8, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Floats: + - _AlphaClip: 0 + - _Blend: 0 + - _BumpScale: 1 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 2 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 1 + - _SmoothnessTextureChannel: 0 + - _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.0067161303, g: 0.0074898335, b: 0.0064763986, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] diff --git a/Assets/ExampleAssets/Materials/Stud_Mat.mat.meta b/Assets/ExampleAssets/Materials/Stud_Mat.mat.meta new file mode 100644 index 0000000..bf12d00 --- /dev/null +++ b/Assets/ExampleAssets/Materials/Stud_Mat.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 027cb3d3d7dc79d41ad763e01759de07 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ExampleAssets/Models.meta b/Assets/ExampleAssets/Models.meta new file mode 100644 index 0000000..24a977d --- /dev/null +++ b/Assets/ExampleAssets/Models.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: aa97895f3852bd44399ef0893bec4f5e +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ExampleAssets/Models/ConstructionLight_Low.fbx b/Assets/ExampleAssets/Models/ConstructionLight_Low.fbx new file mode 100644 index 0000000..e137749 Binary files /dev/null and b/Assets/ExampleAssets/Models/ConstructionLight_Low.fbx differ diff --git a/Assets/ExampleAssets/Models/ConstructionLight_Low.fbx.meta b/Assets/ExampleAssets/Models/ConstructionLight_Low.fbx.meta new file mode 100644 index 0000000..88c0f79 --- /dev/null +++ b/Assets/ExampleAssets/Models/ConstructionLight_Low.fbx.meta @@ -0,0 +1,107 @@ +fileFormatVersion: 2 +guid: e3ae06a3979f53046aa05330d69de1fa +ModelImporter: + serializedVersion: 23 + fileIDToRecycleName: + 100000: //RootNode + 100002: Legs_Low + 100004: Light_Bulbs_low + 100006: Light_Heads_Low + 400000: //RootNode + 400002: Legs_Low + 400004: Light_Bulbs_low + 400006: Light_Heads_Low + 2100000: construction_light + 2100002: emissive_light + 2300000: Legs_Low + 2300002: Light_Bulbs_low + 2300004: Light_Heads_Low + 3300000: Legs_Low + 3300002: Light_Bulbs_low + 3300004: Light_Heads_Low + 4300000: Legs_Low + 4300002: Light_Heads_Low + 4300004: Light_Bulbs_low + externalObjects: {} + materials: + importMaterials: 1 + materialName: 0 + materialSearch: 1 + materialLocation: 1 + animations: + legacyGenerateAnimations: 4 + bakeSimulation: 0 + resampleCurves: 1 + optimizeGameObjects: 0 + 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 + importVisibility: 1 + importBlendShapes: 0 + importCameras: 0 + importLights: 0 + swapUVChannels: 0 + generateSecondaryUV: 0 + useFileUnits: 1 + optimizeMeshForGPU: 1 + keepQuads: 0 + weldVertices: 1 + preserveHierarchy: 0 + indexFormat: 0 + secondaryUVAngleDistortion: 8 + secondaryUVAreaDistortion: 15.000001 + secondaryUVHardAngle: 88 + secondaryUVPackMargin: 4 + useFileScale: 1 + previousCalculatedGlobalScale: 1 + hasPreviousCalculatedGlobalScale: 0 + tangentSpace: + normalSmoothAngle: 60 + normalImportMode: 0 + tangentImportMode: 3 + normalCalculationMode: 4 + importAnimation: 0 + copyAvatar: 0 + humanDescription: + serializedVersion: 2 + human: [] + skeleton: [] + armTwist: 0.5 + foreArmTwist: 0.5 + upperLegTwist: 0.5 + legTwist: 0.5 + armStretch: 0.05 + legStretch: 0.05 + feetSpacing: 0 + rootMotionBoneName: + rootMotionBoneRotation: {x: 0, y: 0, z: 0, w: 1} + hasTranslationDoF: 0 + hasExtraRoot: 0 + skeletonHasParents: 1 + lastHumanDescriptionAvatarSource: {instanceID: 0} + animationType: 0 + humanoidOversampling: 1 + additionalBone: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ExampleAssets/Models/Stud.fbx b/Assets/ExampleAssets/Models/Stud.fbx new file mode 100644 index 0000000..969c7c0 Binary files /dev/null and b/Assets/ExampleAssets/Models/Stud.fbx differ diff --git a/Assets/ExampleAssets/Models/Stud.fbx.meta b/Assets/ExampleAssets/Models/Stud.fbx.meta new file mode 100644 index 0000000..5299a55 --- /dev/null +++ b/Assets/ExampleAssets/Models/Stud.fbx.meta @@ -0,0 +1,101 @@ +fileFormatVersion: 2 +guid: 34624edaccd9d704a95ed404d919b492 +ModelImporter: + serializedVersion: 23 + fileIDToRecycleName: + 100000: //RootNode + 100002: stud + 100004: stud_short + 400000: //RootNode + 400002: stud + 400004: stud_short + 2100000: mat_wood_Plywood + 2300000: stud + 2300002: stud_short + 3300000: stud + 3300002: stud_short + 4300000: stud + 4300002: stud_short + externalObjects: {} + materials: + importMaterials: 1 + materialName: 0 + materialSearch: 1 + materialLocation: 1 + animations: + legacyGenerateAnimations: 4 + bakeSimulation: 0 + resampleCurves: 1 + optimizeGameObjects: 0 + 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 + importVisibility: 1 + importBlendShapes: 0 + importCameras: 0 + importLights: 0 + swapUVChannels: 0 + generateSecondaryUV: 1 + useFileUnits: 1 + optimizeMeshForGPU: 1 + keepQuads: 0 + weldVertices: 1 + preserveHierarchy: 0 + indexFormat: 0 + secondaryUVAngleDistortion: 8 + secondaryUVAreaDistortion: 15 + secondaryUVHardAngle: 88 + secondaryUVPackMargin: 64 + useFileScale: 1 + previousCalculatedGlobalScale: 1 + hasPreviousCalculatedGlobalScale: 0 + tangentSpace: + normalSmoothAngle: 60 + normalImportMode: 0 + tangentImportMode: 3 + normalCalculationMode: 4 + importAnimation: 0 + copyAvatar: 0 + humanDescription: + serializedVersion: 2 + human: [] + skeleton: [] + armTwist: 0.5 + foreArmTwist: 0.5 + upperLegTwist: 0.5 + legTwist: 0.5 + armStretch: 0.05 + legStretch: 0.05 + feetSpacing: 0 + rootMotionBoneName: + rootMotionBoneRotation: {x: 0, y: 0, z: 0, w: 1} + hasTranslationDoF: 0 + hasExtraRoot: 0 + skeletonHasParents: 1 + lastHumanDescriptionAvatarSource: {instanceID: 0} + animationType: 0 + humanoidOversampling: 1 + additionalBone: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ExampleAssets/Models/Workbench.fbx b/Assets/ExampleAssets/Models/Workbench.fbx new file mode 100644 index 0000000..affeb48 Binary files /dev/null and b/Assets/ExampleAssets/Models/Workbench.fbx differ diff --git a/Assets/ExampleAssets/Models/Workbench.fbx.meta b/Assets/ExampleAssets/Models/Workbench.fbx.meta new file mode 100644 index 0000000..d1687d9 --- /dev/null +++ b/Assets/ExampleAssets/Models/Workbench.fbx.meta @@ -0,0 +1,121 @@ +fileFormatVersion: 2 +guid: efe9381559c516743bd05cef82f39ebb +ModelImporter: + serializedVersion: 23 + fileIDToRecycleName: + 100000: bench_bottom + 100002: bench_legs + 100004: bench_top + 100006: supports + 100008: upper_covers + 100010: //RootNode + 400000: bench_bottom + 400002: bench_legs + 400004: bench_top + 400006: supports + 400008: upper_covers + 400010: //RootNode + 2100000: plastic_black + 2100002: aluminum + 2100004: plastic_grey + 2100006: plastic_worn + 2100008: plastic_yellow + 2100010: plastic_ridges + 2300000: bench_bottom + 2300002: bench_legs + 2300004: bench_top + 2300006: supports + 2300008: upper_covers + 3300000: bench_bottom + 3300002: bench_legs + 3300004: bench_top + 3300006: supports + 3300008: upper_covers + 4300000: bench_legs + 4300002: supports + 4300004: upper_covers + 4300006: bench_bottom + 4300008: bench_top + externalObjects: {} + materials: + importMaterials: 1 + materialName: 0 + materialSearch: 1 + materialLocation: 1 + animations: + legacyGenerateAnimations: 4 + bakeSimulation: 0 + resampleCurves: 1 + optimizeGameObjects: 0 + 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 + importVisibility: 1 + importBlendShapes: 0 + importCameras: 0 + importLights: 0 + swapUVChannels: 0 + generateSecondaryUV: 0 + useFileUnits: 1 + optimizeMeshForGPU: 1 + keepQuads: 0 + weldVertices: 1 + preserveHierarchy: 0 + indexFormat: 0 + secondaryUVAngleDistortion: 8 + secondaryUVAreaDistortion: 15.000001 + secondaryUVHardAngle: 88 + secondaryUVPackMargin: 4 + useFileScale: 1 + previousCalculatedGlobalScale: 1 + hasPreviousCalculatedGlobalScale: 0 + tangentSpace: + normalSmoothAngle: 60 + normalImportMode: 0 + tangentImportMode: 3 + normalCalculationMode: 4 + importAnimation: 0 + copyAvatar: 0 + humanDescription: + serializedVersion: 2 + human: [] + skeleton: [] + armTwist: 0.5 + foreArmTwist: 0.5 + upperLegTwist: 0.5 + legTwist: 0.5 + armStretch: 0.05 + legStretch: 0.05 + feetSpacing: 0 + rootMotionBoneName: + rootMotionBoneRotation: {x: 0, y: 0, z: 0, w: 1} + hasTranslationDoF: 0 + hasExtraRoot: 0 + skeletonHasParents: 1 + lastHumanDescriptionAvatarSource: {instanceID: 0} + animationType: 0 + humanoidOversampling: 1 + additionalBone: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ExampleAssets/Models/Workbench_Low.fbx b/Assets/ExampleAssets/Models/Workbench_Low.fbx new file mode 100644 index 0000000..39fa1ce Binary files /dev/null and b/Assets/ExampleAssets/Models/Workbench_Low.fbx differ diff --git a/Assets/ExampleAssets/Models/Workbench_Low.fbx.meta b/Assets/ExampleAssets/Models/Workbench_Low.fbx.meta new file mode 100644 index 0000000..f6221e8 --- /dev/null +++ b/Assets/ExampleAssets/Models/Workbench_Low.fbx.meta @@ -0,0 +1,121 @@ +fileFormatVersion: 2 +guid: ff6dc36862fe41641bb21568d92147c9 +ModelImporter: + serializedVersion: 23 + fileIDToRecycleName: + 100000: bench_bottom_low + 100002: bench_legs_low + 100004: bench_top_low + 100006: supports_low + 100008: upper_covers_low + 100010: //RootNode + 400000: bench_bottom_low + 400002: bench_legs_low + 400004: bench_top_low + 400006: supports_low + 400008: upper_covers_low + 400010: //RootNode + 2100000: plastic_black + 2100002: aluminum + 2100004: plastic_grey + 2100006: plastic_worn + 2100008: plastic_yellow + 2100010: plastic_ridges + 2300000: bench_bottom_low + 2300002: bench_legs_low + 2300004: bench_top_low + 2300006: supports_low + 2300008: upper_covers_low + 3300000: bench_bottom_low + 3300002: bench_legs_low + 3300004: bench_top_low + 3300006: supports_low + 3300008: upper_covers_low + 4300000: bench_legs_low + 4300002: supports_low + 4300004: upper_covers_low + 4300006: bench_bottom_low + 4300008: bench_top_low + externalObjects: {} + materials: + importMaterials: 1 + materialName: 0 + materialSearch: 1 + materialLocation: 1 + animations: + legacyGenerateAnimations: 4 + bakeSimulation: 0 + resampleCurves: 1 + optimizeGameObjects: 0 + 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 + importVisibility: 1 + importBlendShapes: 0 + importCameras: 0 + importLights: 0 + swapUVChannels: 0 + generateSecondaryUV: 0 + useFileUnits: 1 + optimizeMeshForGPU: 1 + keepQuads: 0 + weldVertices: 1 + preserveHierarchy: 0 + indexFormat: 0 + secondaryUVAngleDistortion: 8 + secondaryUVAreaDistortion: 15.000001 + secondaryUVHardAngle: 88 + secondaryUVPackMargin: 4 + useFileScale: 1 + previousCalculatedGlobalScale: 1 + hasPreviousCalculatedGlobalScale: 0 + tangentSpace: + normalSmoothAngle: 60 + normalImportMode: 0 + tangentImportMode: 3 + normalCalculationMode: 4 + importAnimation: 0 + copyAvatar: 0 + humanDescription: + serializedVersion: 2 + human: [] + skeleton: [] + armTwist: 0.5 + foreArmTwist: 0.5 + upperLegTwist: 0.5 + legTwist: 0.5 + armStretch: 0.05 + legStretch: 0.05 + feetSpacing: 0 + rootMotionBoneName: + rootMotionBoneRotation: {x: 0, y: 0, z: 0, w: 1} + hasTranslationDoF: 0 + hasExtraRoot: 0 + skeletonHasParents: 1 + lastHumanDescriptionAvatarSource: {instanceID: 0} + animationType: 0 + humanoidOversampling: 1 + additionalBone: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ExampleAssets/Models/Workshop_Set.fbx b/Assets/ExampleAssets/Models/Workshop_Set.fbx new file mode 100644 index 0000000..8a65922 Binary files /dev/null and b/Assets/ExampleAssets/Models/Workshop_Set.fbx differ diff --git a/Assets/ExampleAssets/Models/Workshop_Set.fbx.meta b/Assets/ExampleAssets/Models/Workshop_Set.fbx.meta new file mode 100644 index 0000000..81c7fc5 --- /dev/null +++ b/Assets/ExampleAssets/Models/Workshop_Set.fbx.meta @@ -0,0 +1,121 @@ +fileFormatVersion: 2 +guid: 47616bd0cda748d4cbedcfc908506b9d +ModelImporter: + serializedVersion: 23 + fileIDToRecycleName: + 100000: drywall_panel + 100002: ground + 100004: OSB_Panel + 100006: stud_frame + 100008: stud_pile + 100010: //RootNode + 400000: drywall_panel + 400002: ground + 400004: OSB_Panel + 400006: stud_frame + 400008: stud_pile + 400010: //RootNode + 2100000: mat_wood_Plywood + 2100002: mat_concrete_cement + 2100004: nails + 2100006: drywall_painted + 2100008: drywall + 2100010: mat_wood_OSB + 2300000: drywall_panel + 2300002: ground + 2300004: OSB_Panel + 2300006: stud_frame + 2300008: stud_pile + 3300000: drywall_panel + 3300002: ground + 3300004: OSB_Panel + 3300006: stud_frame + 3300008: stud_pile + 4300000: stud_pile + 4300002: ground + 4300004: drywall_panel + 4300006: OSB_Panel + 4300008: stud_frame + externalObjects: {} + materials: + importMaterials: 1 + materialName: 0 + materialSearch: 1 + materialLocation: 1 + animations: + legacyGenerateAnimations: 4 + bakeSimulation: 0 + resampleCurves: 1 + optimizeGameObjects: 0 + 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 + importVisibility: 1 + importBlendShapes: 0 + importCameras: 0 + importLights: 0 + swapUVChannels: 0 + generateSecondaryUV: 0 + useFileUnits: 1 + optimizeMeshForGPU: 1 + keepQuads: 0 + weldVertices: 1 + preserveHierarchy: 0 + indexFormat: 0 + secondaryUVAngleDistortion: 8 + secondaryUVAreaDistortion: 15.000001 + secondaryUVHardAngle: 88 + secondaryUVPackMargin: 4 + useFileScale: 1 + previousCalculatedGlobalScale: 1 + hasPreviousCalculatedGlobalScale: 0 + tangentSpace: + normalSmoothAngle: 60 + normalImportMode: 0 + tangentImportMode: 3 + normalCalculationMode: 4 + importAnimation: 0 + copyAvatar: 0 + humanDescription: + serializedVersion: 2 + human: [] + skeleton: [] + armTwist: 0.5 + foreArmTwist: 0.5 + upperLegTwist: 0.5 + legTwist: 0.5 + armStretch: 0.05 + legStretch: 0.05 + feetSpacing: 0 + rootMotionBoneName: + rootMotionBoneRotation: {x: 0, y: 0, z: 0, w: 1} + hasTranslationDoF: 0 + hasExtraRoot: 0 + skeletonHasParents: 1 + lastHumanDescriptionAvatarSource: {instanceID: 0} + animationType: 0 + humanoidOversampling: 1 + additionalBone: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ExampleAssets/Models/brush_low.fbx b/Assets/ExampleAssets/Models/brush_low.fbx new file mode 100644 index 0000000..95a8d13 Binary files /dev/null and b/Assets/ExampleAssets/Models/brush_low.fbx differ diff --git a/Assets/ExampleAssets/Models/brush_low.fbx.meta b/Assets/ExampleAssets/Models/brush_low.fbx.meta new file mode 100644 index 0000000..ef4b030 --- /dev/null +++ b/Assets/ExampleAssets/Models/brush_low.fbx.meta @@ -0,0 +1,94 @@ +fileFormatVersion: 2 +guid: aed8c47425ab91f4eb06ce6fe47c3e4e +ModelImporter: + serializedVersion: 23 + fileIDToRecycleName: + 100000: //RootNode + 400000: //RootNode + 2100000: paintbrush + 2300000: //RootNode + 3300000: //RootNode + 4300000: brush_low + externalObjects: {} + materials: + importMaterials: 1 + materialName: 0 + materialSearch: 1 + materialLocation: 1 + animations: + legacyGenerateAnimations: 4 + bakeSimulation: 0 + resampleCurves: 1 + optimizeGameObjects: 0 + 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 + importVisibility: 1 + importBlendShapes: 0 + importCameras: 0 + importLights: 0 + swapUVChannels: 0 + generateSecondaryUV: 0 + useFileUnits: 1 + optimizeMeshForGPU: 1 + keepQuads: 0 + weldVertices: 1 + preserveHierarchy: 0 + indexFormat: 0 + secondaryUVAngleDistortion: 8 + secondaryUVAreaDistortion: 15.000001 + secondaryUVHardAngle: 88 + secondaryUVPackMargin: 4 + useFileScale: 1 + previousCalculatedGlobalScale: 1 + hasPreviousCalculatedGlobalScale: 0 + tangentSpace: + normalSmoothAngle: 60 + normalImportMode: 0 + tangentImportMode: 3 + normalCalculationMode: 4 + importAnimation: 0 + copyAvatar: 0 + humanDescription: + serializedVersion: 2 + human: [] + skeleton: [] + armTwist: 0.5 + foreArmTwist: 0.5 + upperLegTwist: 0.5 + legTwist: 0.5 + armStretch: 0.05 + legStretch: 0.05 + feetSpacing: 0 + rootMotionBoneName: + rootMotionBoneRotation: {x: 0, y: 0, z: 0, w: 1} + hasTranslationDoF: 0 + hasExtraRoot: 0 + skeletonHasParents: 1 + lastHumanDescriptionAvatarSource: {instanceID: 0} + animationType: 0 + humanoidOversampling: 1 + additionalBone: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ExampleAssets/Models/hammer_low.fbx b/Assets/ExampleAssets/Models/hammer_low.fbx new file mode 100644 index 0000000..6004fea Binary files /dev/null and b/Assets/ExampleAssets/Models/hammer_low.fbx differ diff --git a/Assets/ExampleAssets/Models/hammer_low.fbx.meta b/Assets/ExampleAssets/Models/hammer_low.fbx.meta new file mode 100644 index 0000000..5c1ae54 --- /dev/null +++ b/Assets/ExampleAssets/Models/hammer_low.fbx.meta @@ -0,0 +1,94 @@ +fileFormatVersion: 2 +guid: 68a66fb5a71f8204a8dcb613c97d1fa8 +ModelImporter: + serializedVersion: 23 + fileIDToRecycleName: + 100000: //RootNode + 400000: //RootNode + 2100000: lambert1 + 2300000: //RootNode + 3300000: //RootNode + 4300000: hammer_low + externalObjects: {} + materials: + importMaterials: 1 + materialName: 0 + materialSearch: 1 + materialLocation: 1 + animations: + legacyGenerateAnimations: 4 + bakeSimulation: 0 + resampleCurves: 1 + optimizeGameObjects: 0 + 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 + importVisibility: 1 + importBlendShapes: 0 + importCameras: 0 + importLights: 0 + swapUVChannels: 0 + generateSecondaryUV: 0 + useFileUnits: 1 + optimizeMeshForGPU: 1 + keepQuads: 0 + weldVertices: 1 + preserveHierarchy: 0 + indexFormat: 0 + secondaryUVAngleDistortion: 8 + secondaryUVAreaDistortion: 15.000001 + secondaryUVHardAngle: 88 + secondaryUVPackMargin: 4 + useFileScale: 1 + previousCalculatedGlobalScale: 1 + hasPreviousCalculatedGlobalScale: 0 + tangentSpace: + normalSmoothAngle: 60 + normalImportMode: 0 + tangentImportMode: 3 + normalCalculationMode: 4 + importAnimation: 0 + copyAvatar: 0 + humanDescription: + serializedVersion: 2 + human: [] + skeleton: [] + armTwist: 0.5 + foreArmTwist: 0.5 + upperLegTwist: 0.5 + legTwist: 0.5 + armStretch: 0.05 + legStretch: 0.05 + feetSpacing: 0 + rootMotionBoneName: + rootMotionBoneRotation: {x: 0, y: 0, z: 0, w: 1} + hasTranslationDoF: 0 + hasExtraRoot: 0 + skeletonHasParents: 1 + lastHumanDescriptionAvatarSource: {instanceID: 0} + animationType: 0 + humanoidOversampling: 1 + additionalBone: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ExampleAssets/Models/jigsaw_low.fbx b/Assets/ExampleAssets/Models/jigsaw_low.fbx new file mode 100644 index 0000000..c4e9a08 Binary files /dev/null and b/Assets/ExampleAssets/Models/jigsaw_low.fbx differ diff --git a/Assets/ExampleAssets/Models/jigsaw_low.fbx.meta b/Assets/ExampleAssets/Models/jigsaw_low.fbx.meta new file mode 100644 index 0000000..267bc2e --- /dev/null +++ b/Assets/ExampleAssets/Models/jigsaw_low.fbx.meta @@ -0,0 +1,94 @@ +fileFormatVersion: 2 +guid: 8b73e8872ca76104bbca4ee2b704a1b4 +ModelImporter: + serializedVersion: 23 + fileIDToRecycleName: + 100000: //RootNode + 400000: //RootNode + 2100000: jigsaw + 2300000: //RootNode + 3300000: //RootNode + 4300000: power_jigsaw_low + externalObjects: {} + materials: + importMaterials: 1 + materialName: 0 + materialSearch: 1 + materialLocation: 1 + animations: + legacyGenerateAnimations: 4 + bakeSimulation: 0 + resampleCurves: 1 + optimizeGameObjects: 0 + 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 + importVisibility: 1 + importBlendShapes: 0 + importCameras: 0 + importLights: 0 + swapUVChannels: 0 + generateSecondaryUV: 0 + useFileUnits: 1 + optimizeMeshForGPU: 1 + keepQuads: 0 + weldVertices: 1 + preserveHierarchy: 0 + indexFormat: 0 + secondaryUVAngleDistortion: 8 + secondaryUVAreaDistortion: 15.000001 + secondaryUVHardAngle: 88 + secondaryUVPackMargin: 4 + useFileScale: 1 + previousCalculatedGlobalScale: 1 + hasPreviousCalculatedGlobalScale: 0 + tangentSpace: + normalSmoothAngle: 60 + normalImportMode: 0 + tangentImportMode: 3 + normalCalculationMode: 4 + importAnimation: 0 + copyAvatar: 0 + humanDescription: + serializedVersion: 2 + human: [] + skeleton: [] + armTwist: 0.5 + foreArmTwist: 0.5 + upperLegTwist: 0.5 + legTwist: 0.5 + armStretch: 0.05 + legStretch: 0.05 + feetSpacing: 0 + rootMotionBoneName: + rootMotionBoneRotation: {x: 0, y: 0, z: 0, w: 1} + hasTranslationDoF: 0 + hasExtraRoot: 0 + skeletonHasParents: 1 + lastHumanDescriptionAvatarSource: {instanceID: 0} + animationType: 0 + humanoidOversampling: 1 + additionalBone: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ExampleAssets/Models/magneticlevel_low.fbx b/Assets/ExampleAssets/Models/magneticlevel_low.fbx new file mode 100644 index 0000000..a2a6c40 Binary files /dev/null and b/Assets/ExampleAssets/Models/magneticlevel_low.fbx differ diff --git a/Assets/ExampleAssets/Models/magneticlevel_low.fbx.meta b/Assets/ExampleAssets/Models/magneticlevel_low.fbx.meta new file mode 100644 index 0000000..dcfa53f --- /dev/null +++ b/Assets/ExampleAssets/Models/magneticlevel_low.fbx.meta @@ -0,0 +1,97 @@ +fileFormatVersion: 2 +guid: bae110eee250e4b418b188f4ae4e3170 +ModelImporter: + serializedVersion: 23 + fileIDToRecycleName: + 100000: //RootNode + 400000: //RootNode + 2100000: plastic_black + 2100002: metal_blue + 2100004: plastic_white + 2100006: liquid + 2300000: //RootNode + 3300000: //RootNode + 4300000: level_low + externalObjects: {} + materials: + importMaterials: 1 + materialName: 0 + materialSearch: 1 + materialLocation: 1 + animations: + legacyGenerateAnimations: 4 + bakeSimulation: 0 + resampleCurves: 1 + optimizeGameObjects: 0 + 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 + importVisibility: 1 + importBlendShapes: 0 + importCameras: 0 + importLights: 0 + swapUVChannels: 0 + generateSecondaryUV: 0 + useFileUnits: 1 + optimizeMeshForGPU: 1 + keepQuads: 0 + weldVertices: 1 + preserveHierarchy: 0 + indexFormat: 0 + secondaryUVAngleDistortion: 8 + secondaryUVAreaDistortion: 15.000001 + secondaryUVHardAngle: 88 + secondaryUVPackMargin: 4 + useFileScale: 1 + previousCalculatedGlobalScale: 1 + hasPreviousCalculatedGlobalScale: 0 + tangentSpace: + normalSmoothAngle: 60 + normalImportMode: 0 + tangentImportMode: 3 + normalCalculationMode: 4 + importAnimation: 0 + copyAvatar: 0 + humanDescription: + serializedVersion: 2 + human: [] + skeleton: [] + armTwist: 0.5 + foreArmTwist: 0.5 + upperLegTwist: 0.5 + legTwist: 0.5 + armStretch: 0.05 + legStretch: 0.05 + feetSpacing: 0 + rootMotionBoneName: + rootMotionBoneRotation: {x: 0, y: 0, z: 0, w: 1} + hasTranslationDoF: 0 + hasExtraRoot: 0 + skeletonHasParents: 1 + lastHumanDescriptionAvatarSource: {instanceID: 0} + animationType: 0 + humanoidOversampling: 1 + additionalBone: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ExampleAssets/Models/paintbucket_low.fbx b/Assets/ExampleAssets/Models/paintbucket_low.fbx new file mode 100644 index 0000000..5c64f28 Binary files /dev/null and b/Assets/ExampleAssets/Models/paintbucket_low.fbx differ diff --git a/Assets/ExampleAssets/Models/paintbucket_low.fbx.meta b/Assets/ExampleAssets/Models/paintbucket_low.fbx.meta new file mode 100644 index 0000000..9b2c6a4 --- /dev/null +++ b/Assets/ExampleAssets/Models/paintbucket_low.fbx.meta @@ -0,0 +1,109 @@ +fileFormatVersion: 2 +guid: b451a052397f03c4f8a04d915d1c0492 +ModelImporter: + serializedVersion: 23 + fileIDToRecycleName: + 100000: paint_1G_bucket_low + 100002: paint_1G_lid_low + 100004: paint_5G_bucket_low + 100006: //RootNode + 400000: paint_1G_bucket_low + 400002: paint_1G_lid_low + 400004: paint_5G_bucket_low + 400006: //RootNode + 2100000: plastic_white + 2100002: paint_5g_label + 2100004: metal + 2100006: paint_1g + 2300000: paint_1G_bucket_low + 2300002: paint_1G_lid_low + 2300004: paint_5G_bucket_low + 3300000: paint_1G_bucket_low + 3300002: paint_1G_lid_low + 3300004: paint_5G_bucket_low + 4300000: paint_5G_bucket_low + 4300002: paint_1G_bucket_low + 4300004: paint_1G_lid_low + externalObjects: {} + materials: + importMaterials: 1 + materialName: 0 + materialSearch: 1 + materialLocation: 1 + animations: + legacyGenerateAnimations: 4 + bakeSimulation: 0 + resampleCurves: 1 + optimizeGameObjects: 0 + 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 + importVisibility: 1 + importBlendShapes: 0 + importCameras: 0 + importLights: 0 + swapUVChannels: 0 + generateSecondaryUV: 0 + useFileUnits: 1 + optimizeMeshForGPU: 1 + keepQuads: 0 + weldVertices: 1 + preserveHierarchy: 0 + indexFormat: 0 + secondaryUVAngleDistortion: 8 + secondaryUVAreaDistortion: 15.000001 + secondaryUVHardAngle: 88 + secondaryUVPackMargin: 4 + useFileScale: 1 + previousCalculatedGlobalScale: 1 + hasPreviousCalculatedGlobalScale: 0 + tangentSpace: + normalSmoothAngle: 60 + normalImportMode: 0 + tangentImportMode: 3 + normalCalculationMode: 4 + importAnimation: 0 + copyAvatar: 0 + humanDescription: + serializedVersion: 2 + human: [] + skeleton: [] + armTwist: 0.5 + foreArmTwist: 0.5 + upperLegTwist: 0.5 + legTwist: 0.5 + armStretch: 0.05 + legStretch: 0.05 + feetSpacing: 0 + rootMotionBoneName: + rootMotionBoneRotation: {x: 0, y: 0, z: 0, w: 1} + hasTranslationDoF: 0 + hasExtraRoot: 0 + skeletonHasParents: 1 + lastHumanDescriptionAvatarSource: {instanceID: 0} + animationType: 0 + humanoidOversampling: 1 + additionalBone: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ExampleAssets/Models/safetygoggles_low.fbx b/Assets/ExampleAssets/Models/safetygoggles_low.fbx new file mode 100644 index 0000000..e050f3d Binary files /dev/null and b/Assets/ExampleAssets/Models/safetygoggles_low.fbx differ diff --git a/Assets/ExampleAssets/Models/safetygoggles_low.fbx.meta b/Assets/ExampleAssets/Models/safetygoggles_low.fbx.meta new file mode 100644 index 0000000..462d8de --- /dev/null +++ b/Assets/ExampleAssets/Models/safetygoggles_low.fbx.meta @@ -0,0 +1,97 @@ +fileFormatVersion: 2 +guid: 6296e48663fd7ad46b1a2af507f871cf +ModelImporter: + serializedVersion: 23 + fileIDToRecycleName: + 100000: //RootNode + 400000: //RootNode + 2100000: elastic_strap + 2100002: plastic_transparent + 2100004: plastic_black + 2100006: plastic_yellow + 2300000: //RootNode + 3300000: //RootNode + 4300000: safety_goggles_low + externalObjects: {} + materials: + importMaterials: 1 + materialName: 0 + materialSearch: 1 + materialLocation: 1 + animations: + legacyGenerateAnimations: 4 + bakeSimulation: 0 + resampleCurves: 1 + optimizeGameObjects: 0 + 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 + importVisibility: 1 + importBlendShapes: 0 + importCameras: 0 + importLights: 0 + swapUVChannels: 0 + generateSecondaryUV: 0 + useFileUnits: 1 + optimizeMeshForGPU: 1 + keepQuads: 0 + weldVertices: 1 + preserveHierarchy: 0 + indexFormat: 0 + secondaryUVAngleDistortion: 8 + secondaryUVAreaDistortion: 15.000001 + secondaryUVHardAngle: 88 + secondaryUVPackMargin: 4 + useFileScale: 1 + previousCalculatedGlobalScale: 1 + hasPreviousCalculatedGlobalScale: 0 + tangentSpace: + normalSmoothAngle: 60 + normalImportMode: 0 + tangentImportMode: 3 + normalCalculationMode: 4 + importAnimation: 0 + copyAvatar: 0 + humanDescription: + serializedVersion: 2 + human: [] + skeleton: [] + armTwist: 0.5 + foreArmTwist: 0.5 + upperLegTwist: 0.5 + legTwist: 0.5 + armStretch: 0.05 + legStretch: 0.05 + feetSpacing: 0 + rootMotionBoneName: + rootMotionBoneRotation: {x: 0, y: 0, z: 0, w: 1} + hasTranslationDoF: 0 + hasExtraRoot: 0 + skeletonHasParents: 1 + lastHumanDescriptionAvatarSource: {instanceID: 0} + animationType: 0 + humanoidOversampling: 1 + additionalBone: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ExampleAssets/Models/safetyhat_low.fbx b/Assets/ExampleAssets/Models/safetyhat_low.fbx new file mode 100644 index 0000000..67d42c2 Binary files /dev/null and b/Assets/ExampleAssets/Models/safetyhat_low.fbx differ diff --git a/Assets/ExampleAssets/Models/safetyhat_low.fbx.meta b/Assets/ExampleAssets/Models/safetyhat_low.fbx.meta new file mode 100644 index 0000000..8651f87 --- /dev/null +++ b/Assets/ExampleAssets/Models/safetyhat_low.fbx.meta @@ -0,0 +1,94 @@ +fileFormatVersion: 2 +guid: 9d0d902f71acfe646a46cb625f815a49 +ModelImporter: + serializedVersion: 23 + fileIDToRecycleName: + 100000: //RootNode + 400000: //RootNode + 2100000: safetyhat + 2300000: //RootNode + 3300000: //RootNode + 4300000: safety_hat_low + externalObjects: {} + materials: + importMaterials: 1 + materialName: 0 + materialSearch: 1 + materialLocation: 1 + animations: + legacyGenerateAnimations: 4 + bakeSimulation: 0 + resampleCurves: 1 + optimizeGameObjects: 0 + 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 + importVisibility: 1 + importBlendShapes: 0 + importCameras: 0 + importLights: 0 + swapUVChannels: 0 + generateSecondaryUV: 0 + useFileUnits: 1 + optimizeMeshForGPU: 1 + keepQuads: 0 + weldVertices: 1 + preserveHierarchy: 0 + indexFormat: 0 + secondaryUVAngleDistortion: 8 + secondaryUVAreaDistortion: 15.000001 + secondaryUVHardAngle: 88 + secondaryUVPackMargin: 4 + useFileScale: 1 + previousCalculatedGlobalScale: 1 + hasPreviousCalculatedGlobalScale: 0 + tangentSpace: + normalSmoothAngle: 60 + normalImportMode: 0 + tangentImportMode: 3 + normalCalculationMode: 4 + importAnimation: 0 + copyAvatar: 0 + humanDescription: + serializedVersion: 2 + human: [] + skeleton: [] + armTwist: 0.5 + foreArmTwist: 0.5 + upperLegTwist: 0.5 + legTwist: 0.5 + armStretch: 0.05 + legStretch: 0.05 + feetSpacing: 0 + rootMotionBoneName: + rootMotionBoneRotation: {x: 0, y: 0, z: 0, w: 1} + hasTranslationDoF: 0 + hasExtraRoot: 0 + skeletonHasParents: 1 + lastHumanDescriptionAvatarSource: {instanceID: 0} + animationType: 0 + humanoidOversampling: 1 + additionalBone: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ExampleAssets/Models/small_plane.fbx b/Assets/ExampleAssets/Models/small_plane.fbx new file mode 100644 index 0000000..54efb6e Binary files /dev/null and b/Assets/ExampleAssets/Models/small_plane.fbx differ diff --git a/Assets/ExampleAssets/Models/small_plane.fbx.meta b/Assets/ExampleAssets/Models/small_plane.fbx.meta new file mode 100644 index 0000000..b5f431d --- /dev/null +++ b/Assets/ExampleAssets/Models/small_plane.fbx.meta @@ -0,0 +1,94 @@ +fileFormatVersion: 2 +guid: aeaee610429f51f44981e141eb2a3545 +ModelImporter: + serializedVersion: 23 + fileIDToRecycleName: + 100000: //RootNode + 400000: //RootNode + 2100000: lambert1 + 2300000: //RootNode + 3300000: //RootNode + 4300000: pPlane1 + externalObjects: {} + materials: + importMaterials: 1 + materialName: 0 + materialSearch: 1 + materialLocation: 1 + animations: + legacyGenerateAnimations: 4 + bakeSimulation: 0 + resampleCurves: 1 + optimizeGameObjects: 0 + 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 + importVisibility: 1 + importBlendShapes: 0 + importCameras: 0 + importLights: 0 + swapUVChannels: 0 + generateSecondaryUV: 0 + useFileUnits: 1 + optimizeMeshForGPU: 1 + keepQuads: 0 + weldVertices: 1 + preserveHierarchy: 0 + indexFormat: 0 + secondaryUVAngleDistortion: 8 + secondaryUVAreaDistortion: 15.000001 + secondaryUVHardAngle: 88 + secondaryUVPackMargin: 4 + useFileScale: 1 + previousCalculatedGlobalScale: 1 + hasPreviousCalculatedGlobalScale: 0 + tangentSpace: + normalSmoothAngle: 60 + normalImportMode: 0 + tangentImportMode: 3 + normalCalculationMode: 4 + importAnimation: 0 + copyAvatar: 0 + humanDescription: + serializedVersion: 2 + human: [] + skeleton: [] + armTwist: 0.5 + foreArmTwist: 0.5 + upperLegTwist: 0.5 + legTwist: 0.5 + armStretch: 0.05 + legStretch: 0.05 + feetSpacing: 0 + rootMotionBoneName: + rootMotionBoneRotation: {x: 0, y: 0, z: 0, w: 1} + hasTranslationDoF: 0 + hasExtraRoot: 0 + skeletonHasParents: 1 + lastHumanDescriptionAvatarSource: {instanceID: 0} + animationType: 0 + humanoidOversampling: 1 + additionalBone: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ExampleAssets/Prefabs.meta b/Assets/ExampleAssets/Prefabs.meta new file mode 100644 index 0000000..9100aec --- /dev/null +++ b/Assets/ExampleAssets/Prefabs.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 5e04804d4b233d04d92ef41852c3f676 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ExampleAssets/Prefabs/Construction Light Low.prefab b/Assets/ExampleAssets/Prefabs/Construction Light Low.prefab new file mode 100644 index 0000000..20c752d --- /dev/null +++ b/Assets/ExampleAssets/Prefabs/Construction Light Low.prefab @@ -0,0 +1,365 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &4409771049128859163 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4404760024282988913} + - component: {fileID: 4373048193643737941} + m_Layer: 0 + m_Name: Spot Light + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4404760024282988913 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4409771049128859163} + m_LocalRotation: {x: -0, y: 0.7071068, z: -0, w: 0.7071068} + m_LocalPosition: {x: -0.02, y: 1.467, z: -0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4413105790749080551} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 90, z: 0} +--- !u!108 &4373048193643737941 +Light: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4409771049128859163} + m_Enabled: 1 + serializedVersion: 10 + m_Type: 0 + m_Shape: 0 + m_Color: {r: 0.9529412, g: 0.9254902, b: 0.8039216, a: 1} + m_Intensity: 12 + m_Range: 6 + m_SpotAngle: 90 + m_InnerSpotAngle: 71.41338 + m_CookieSize: 10 + m_Shadows: + m_Type: 2 + m_Resolution: -1 + m_CustomResolution: -1 + m_Strength: 1 + m_Bias: 0.01 + m_NormalBias: 0.5 + 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: 2800000, guid: c5ae14b135040d94a98c48e5f29ecb8c, type: 3} + 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: 0 + m_ColorTemperature: 6570 + m_UseColorTemperature: 0 + m_BoundingSphereOverride: {x: 0, y: 0, z: 0, w: 0} + m_UseBoundingSphereOverride: 0 + m_ShadowRadius: 0 + m_ShadowAngle: 0 +--- !u!1 &4410182120644567707 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4404777769848006545} + - component: {fileID: 4415755682555238789} + - component: {fileID: 4423551399539809973} + m_Layer: 0 + m_Name: Light_Heads_Low + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4404777769848006545 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4410182120644567707} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0.0580053, y: 1.4626509, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4413105790749080551} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &4415755682555238789 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4410182120644567707} + m_Mesh: {fileID: 4300002, guid: e3ae06a3979f53046aa05330d69de1fa, type: 3} +--- !u!23 &4423551399539809973 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4410182120644567707} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RenderingLayerMask: 4294967295 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 49076442eeb7e054b8e8869f8b40656d, 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: 0 + 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 +--- !u!1 &4410188049981035507 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4413275567199424359} + - component: {fileID: 4415423983584018111} + - component: {fileID: 4422686710531385995} + m_Layer: 0 + m_Name: Light_Bulbs_low + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4413275567199424359 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4410188049981035507} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0.016346056, y: 1.4711778, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4413105790749080551} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &4415423983584018111 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4410188049981035507} + m_Mesh: {fileID: 4300004, guid: e3ae06a3979f53046aa05330d69de1fa, type: 3} +--- !u!23 &4422686710531385995 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4410188049981035507} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RenderingLayerMask: 4294967295 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: ec739259ec61f5d4ba3ed6d34fd802a6, 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: 0 + 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 +--- !u!1 &4410402899750998667 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4413105790749080551} + m_Layer: 0 + m_Name: Construction Light Low(Clone) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4413105790749080551 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4410402899750998667} + m_LocalRotation: {x: 0, y: 0.9743701, z: 0, w: 0.22495107} + m_LocalPosition: {x: 0.92, y: -0.30264044, z: 0.27} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 4413513440342942251} + - {fileID: 4413275567199424359} + - {fileID: 4404777769848006545} + - {fileID: 4404760024282988913} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 154, z: 0} +--- !u!1 &4410421019566038585 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4413513440342942251} + - component: {fileID: 4415272200297528151} + - component: {fileID: 4423476710008528715} + m_Layer: 0 + m_Name: Legs_Low + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4413513440342942251 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4410421019566038585} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0.122490555, y: 0.63087094, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4413105790749080551} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &4415272200297528151 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4410421019566038585} + m_Mesh: {fileID: 4300000, guid: e3ae06a3979f53046aa05330d69de1fa, type: 3} +--- !u!23 &4423476710008528715 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4410421019566038585} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RenderingLayerMask: 4294967295 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 49076442eeb7e054b8e8869f8b40656d, 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: 0 + 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 diff --git a/Assets/ExampleAssets/Prefabs/Construction Light Low.prefab.meta b/Assets/ExampleAssets/Prefabs/Construction Light Low.prefab.meta new file mode 100644 index 0000000..d4ebc33 --- /dev/null +++ b/Assets/ExampleAssets/Prefabs/Construction Light Low.prefab.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: bf0a225a9ff184f2789f3036faaa9150 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ExampleAssets/Prefabs/Paint Supplies.prefab b/Assets/ExampleAssets/Prefabs/Paint Supplies.prefab new file mode 100644 index 0000000..3b0a072 --- /dev/null +++ b/Assets/ExampleAssets/Prefabs/Paint Supplies.prefab @@ -0,0 +1,354 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &4399087882640034717 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4402327432734332867} + - component: {fileID: 4431109382734182665} + - component: {fileID: 4421907728686250697} + m_Layer: 0 + m_Name: Paint 1G Lid + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 68 + m_IsActive: 1 +--- !u!4 &4402327432734332867 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4399087882640034717} + m_LocalRotation: {x: -1, y: -0.0000001872535, z: 0, w: 0} + m_LocalPosition: {x: -0.088, y: 0.0024, z: -0.296} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4397708313616863139} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: -180, y: 0, z: -0.000015258789} +--- !u!33 &4431109382734182665 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4399087882640034717} + m_Mesh: {fileID: 4300004, guid: b451a052397f03c4f8a04d915d1c0492, type: 3} +--- !u!23 &4421907728686250697 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4399087882640034717} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RenderingLayerMask: 4294967295 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 55c183dc45153be48a45c4e530127fb3, 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: 0 + 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 +--- !u!1 &4399395844358877001 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4402699864043260885} + - component: {fileID: 4431394790727190115} + - component: {fileID: 4420591872709509855} + m_Layer: 0 + m_Name: Paint 1G Bucket + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 68 + m_IsActive: 1 +--- !u!4 &4402699864043260885 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4399395844358877001} + m_LocalRotation: {x: -0, y: -0.9810064, z: -0, w: -0.19397536} + m_LocalPosition: {x: -0.308, y: 0, z: -0.085} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4397708313616863139} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: -202.37, z: 0} +--- !u!33 &4431394790727190115 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4399395844358877001} + m_Mesh: {fileID: 4300002, guid: b451a052397f03c4f8a04d915d1c0492, type: 3} +--- !u!23 &4420591872709509855 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4399395844358877001} + m_Enabled: 1 + m_CastShadows: 2 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RenderingLayerMask: 4294967295 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 55c183dc45153be48a45c4e530127fb3, 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: 0 + 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 +--- !u!1 &4399411428940362497 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4402405534334022135} + - component: {fileID: 4430994737287322257} + - component: {fileID: 4421305546374387931} + m_Layer: 0 + m_Name: Brush + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 64 + m_IsActive: 1 +--- !u!4 &4402405534334022135 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4399411428940362497} + m_LocalRotation: {x: 0.44850776, y: -0.5435191, z: -0.5607513, w: -0.4347249} + m_LocalPosition: {x: -0.0669, y: 0.0101, z: -0.2977} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4397708313616863139} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: -91.787994, y: -257.308, z: 0} +--- !u!33 &4430994737287322257 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4399411428940362497} + m_Mesh: {fileID: 4300000, guid: aed8c47425ab91f4eb06ce6fe47c3e4e, type: 3} +--- !u!23 &4421305546374387931 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4399411428940362497} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RenderingLayerMask: 4294967295 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 539165557a9d3744680bb21164bea45e, 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: 0 + 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 +--- !u!1 &4399650245129997165 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4397228058764181399} + - component: {fileID: 4430900181150558157} + - component: {fileID: 4421426242873001909} + m_Layer: 0 + m_Name: Paint 5G Bucket + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 64 + m_IsActive: 1 +--- !u!4 &4397228058764181399 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4399650245129997165} + m_LocalRotation: {x: -0, y: 0.3793187, z: -0, w: 0.92526615} + m_LocalPosition: {x: -0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4397708313616863139} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 44.583004, z: 0} +--- !u!33 &4430900181150558157 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4399650245129997165} + m_Mesh: {fileID: 4300000, guid: b451a052397f03c4f8a04d915d1c0492, type: 3} +--- !u!23 &4421426242873001909 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4399650245129997165} + m_Enabled: 1 + m_CastShadows: 2 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RenderingLayerMask: 4294967295 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 6cfe423139c361a459da7ed9831d4b1c, type: 2} + - {fileID: 2100000, guid: 3da4aad06945bbf4baf801c2aacbc01e, type: 2} + - {fileID: 2100000, guid: a0427cf339e5891468d5f2b433b2d44a, 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: 0 + 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 +--- !u!1 &4399714922860730671 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4397708313616863139} + m_Layer: 0 + m_Name: Paint Supplies + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4397708313616863139 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4399714922860730671} + m_LocalRotation: {x: -0, y: 0.94858384, z: -0, w: 0.31652606} + m_LocalPosition: {x: -1.147252, y: -0.30264044, z: -0.43732834} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 4402699864043260885} + - {fileID: 4402327432734332867} + - {fileID: 4397228058764181399} + - {fileID: 4402405534334022135} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 143.09401, z: 0} diff --git a/Assets/ExampleAssets/Prefabs/Paint Supplies.prefab.meta b/Assets/ExampleAssets/Prefabs/Paint Supplies.prefab.meta new file mode 100644 index 0000000..6e8133f --- /dev/null +++ b/Assets/ExampleAssets/Prefabs/Paint Supplies.prefab.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 283e6530a665e4513959d1cd4883682f +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ExampleAssets/Prefabs/Props.prefab b/Assets/ExampleAssets/Prefabs/Props.prefab new file mode 100644 index 0000000..7f901d6 --- /dev/null +++ b/Assets/ExampleAssets/Prefabs/Props.prefab @@ -0,0 +1,220 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &1470751580683984 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4354465822509128} + m_Layer: 0 + m_Name: Props + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4354465822509128 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1470751580683984} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 1.655252, y: 0.30264044, z: 1.0033283} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 4276755314413510} + - {fileID: 4501794015417340} + - {fileID: 4384819959477802} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &3118058654664842874 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 4354465822509128} + m_Modifications: + - target: {fileID: 3116566584170727252, guid: 8850d132797ff49298ba781e8e1c9bfe, + type: 3} + propertyPath: m_Name + value: Workbench + objectReference: {fileID: 0} + - target: {fileID: 3119308079644534864, guid: 8850d132797ff49298ba781e8e1c9bfe, + type: 3} + propertyPath: m_LocalPosition.x + value: -1.655252 + objectReference: {fileID: 0} + - target: {fileID: 3119308079644534864, guid: 8850d132797ff49298ba781e8e1c9bfe, + type: 3} + propertyPath: m_LocalPosition.y + value: -0.30264044 + objectReference: {fileID: 0} + - target: {fileID: 3119308079644534864, guid: 8850d132797ff49298ba781e8e1c9bfe, + type: 3} + propertyPath: m_LocalPosition.z + value: -1.0033283 + objectReference: {fileID: 0} + - target: {fileID: 3119308079644534864, guid: 8850d132797ff49298ba781e8e1c9bfe, + type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 3119308079644534864, guid: 8850d132797ff49298ba781e8e1c9bfe, + type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 3119308079644534864, guid: 8850d132797ff49298ba781e8e1c9bfe, + type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 3119308079644534864, guid: 8850d132797ff49298ba781e8e1c9bfe, + type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3119308079644534864, guid: 8850d132797ff49298ba781e8e1c9bfe, + type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 3119308079644534864, guid: 8850d132797ff49298ba781e8e1c9bfe, + type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3119308079644534864, guid: 8850d132797ff49298ba781e8e1c9bfe, + type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3119308079644534864, guid: 8850d132797ff49298ba781e8e1c9bfe, + type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 8850d132797ff49298ba781e8e1c9bfe, type: 3} +--- !u!4 &4384819959477802 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 3119308079644534864, guid: 8850d132797ff49298ba781e8e1c9bfe, + type: 3} + m_PrefabInstance: {fileID: 3118058654664842874} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &4398044067060301925 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 4354465822509128} + m_Modifications: + - target: {fileID: 4399714922860730671, guid: 283e6530a665e4513959d1cd4883682f, + type: 3} + propertyPath: m_Name + value: Paint Supplies + objectReference: {fileID: 0} + - target: {fileID: 4397708313616863139, guid: 283e6530a665e4513959d1cd4883682f, + type: 3} + propertyPath: m_LocalPosition.x + value: -1.147252 + objectReference: {fileID: 0} + - target: {fileID: 4397708313616863139, guid: 283e6530a665e4513959d1cd4883682f, + type: 3} + propertyPath: m_LocalPosition.y + value: -0.30264044 + objectReference: {fileID: 0} + - target: {fileID: 4397708313616863139, guid: 283e6530a665e4513959d1cd4883682f, + type: 3} + propertyPath: m_LocalPosition.z + value: -0.43732834 + objectReference: {fileID: 0} + - target: {fileID: 4397708313616863139, guid: 283e6530a665e4513959d1cd4883682f, + type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 4397708313616863139, guid: 283e6530a665e4513959d1cd4883682f, + type: 3} + propertyPath: m_LocalRotation.y + value: 0.94858384 + objectReference: {fileID: 0} + - target: {fileID: 4397708313616863139, guid: 283e6530a665e4513959d1cd4883682f, + type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 4397708313616863139, guid: 283e6530a665e4513959d1cd4883682f, + type: 3} + propertyPath: m_LocalRotation.w + value: 0.31652606 + objectReference: {fileID: 0} + - target: {fileID: 4397708313616863139, guid: 283e6530a665e4513959d1cd4883682f, + type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4397708313616863139, guid: 283e6530a665e4513959d1cd4883682f, + type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4397708313616863139, guid: 283e6530a665e4513959d1cd4883682f, + type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 143.09401 + objectReference: {fileID: 0} + - target: {fileID: 4397708313616863139, guid: 283e6530a665e4513959d1cd4883682f, + type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 283e6530a665e4513959d1cd4883682f, type: 3} +--- !u!4 &4276755314413510 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 4397708313616863139, guid: 283e6530a665e4513959d1cd4883682f, + type: 3} + m_PrefabInstance: {fileID: 4398044067060301925} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &4409444110326655003 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 4354465822509128} + m_Modifications: + - target: {fileID: 4413105790749080551, guid: bf0a225a9ff184f2789f3036faaa9150, + type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4413105790749080551, guid: bf0a225a9ff184f2789f3036faaa9150, + type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4413105790749080551, guid: bf0a225a9ff184f2789f3036faaa9150, + type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 154 + objectReference: {fileID: 0} + - target: {fileID: 4413105790749080551, guid: bf0a225a9ff184f2789f3036faaa9150, + type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: bf0a225a9ff184f2789f3036faaa9150, type: 3} +--- !u!4 &4501794015417340 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 4413105790749080551, guid: bf0a225a9ff184f2789f3036faaa9150, + type: 3} + m_PrefabInstance: {fileID: 4409444110326655003} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/ExampleAssets/Prefabs/Props.prefab.meta b/Assets/ExampleAssets/Prefabs/Props.prefab.meta new file mode 100644 index 0000000..edf4930 --- /dev/null +++ b/Assets/ExampleAssets/Prefabs/Props.prefab.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 85dfab9623c67784fa7894de63cd1604 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 100100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ExampleAssets/Prefabs/Workbench.prefab b/Assets/ExampleAssets/Prefabs/Workbench.prefab new file mode 100644 index 0000000..5c56049 --- /dev/null +++ b/Assets/ExampleAssets/Prefabs/Workbench.prefab @@ -0,0 +1,793 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &3116565385739550694 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3122512547768572924} + - component: {fileID: 3112971748881196958} + - component: {fileID: 3104699738436078498} + m_Layer: 0 + m_Name: Magnetic Level + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 4 + m_IsActive: 1 +--- !u!4 &3122512547768572924 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3116565385739550694} + m_LocalRotation: {x: -0, y: 0.88803345, z: -0, w: 0.45977888} + m_LocalPosition: {x: -1.0103374, y: 0.3817, z: 2.6673462} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 3119308079644534864} + m_RootOrder: 6 + m_LocalEulerAnglesHint: {x: 0, y: 84.159004, z: 0} +--- !u!33 &3112971748881196958 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3116565385739550694} + m_Mesh: {fileID: 4300000, guid: bae110eee250e4b418b188f4ae4e3170, type: 3} +--- !u!23 &3104699738436078498 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3116565385739550694} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RenderingLayerMask: 4294967295 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: e745492728544aa488aa0429b6068e71, type: 2} + - {fileID: 2100000, guid: cd71291c91c8cce499cb663b5db9970e, type: 2} + - {fileID: 2100000, guid: 4dad30bbe2213eb4d8312f7bb6190866, type: 2} + - {fileID: 2100000, guid: c532880e607f8c84d8b9bf0c46a522ad, 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: 0 + 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 +--- !u!1 &3116566584170727252 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3119308079644534864} + - component: {fileID: 2998810633905274466} + m_Layer: 0 + m_Name: Workbench + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3119308079644534864 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3116566584170727252} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -1.655252, y: -0.30264044, z: -1.0033283} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 3119361965510487000} + - {fileID: 3122394256887008528} + - {fileID: 3119471364691938834} + - {fileID: 3119828853498865368} + - {fileID: 3122398394351823804} + - {fileID: 3122603148334812230} + - {fileID: 3122512547768572924} + - {fileID: 3122279492874581152} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!205 &2998810633905274466 +LODGroup: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3116566584170727252} + serializedVersion: 2 + m_LocalReferencePoint: {x: -1.0637363, y: 0.3796802, z: 2.715024} + m_Size: 1.005661 + m_FadeMode: 0 + m_AnimateCrossFading: 0 + m_LastLODIsBillboard: 0 + m_LODs: + - screenRelativeHeight: 0.39972383 + fadeTransitionWidth: 0 + renderers: + - renderer: {fileID: 3103437077802874286} + - renderer: {fileID: 3104831731306437092} + - renderer: {fileID: 3104733647337516948} + - renderer: {fileID: 3103183423594365042} + - renderer: {fileID: 3104775600728423106} + - screenRelativeHeight: 0.023324551 + fadeTransitionWidth: 0 + renderers: + - renderer: {fileID: 3105042399987932030} + - renderer: {fileID: 3103276435380462448} + - renderer: {fileID: 3103130040492677778} + - renderer: {fileID: 3105080114098584800} + - renderer: {fileID: 3104244537775875718} + m_Enabled: 1 +--- !u!1 &3116682611370670920 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3119617620917291370} + - component: {fileID: 3113047359908808194} + - component: {fileID: 3103498492042344354} + m_Layer: 0 + m_Name: Stud + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 69 + m_IsActive: 1 +--- !u!4 &3119617620917291370 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3116682611370670920} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0, y: 0.134, z: -0} + m_LocalScale: {x: 1, y: 0.81246996, z: 1} + m_Children: [] + m_Father: {fileID: 3119471364691938834} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &3113047359908808194 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3116682611370670920} + m_Mesh: {fileID: 4300000, guid: 34624edaccd9d704a95ed404d919b492, type: 3} +--- !u!23 &3103498492042344354 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3116682611370670920} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RenderingLayerMask: 4294967295 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 027cb3d3d7dc79d41ad763e01759de07, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1.8 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 0 + 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 +--- !u!1 &3116730048973814310 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3119471364691938834} + m_Layer: 0 + m_Name: Stud + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 69 + m_IsActive: 1 +--- !u!4 &3119471364691938834 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3116730048973814310} + m_LocalRotation: {x: 0.6436846, y: 0.6436846, z: 0.29269472, w: 0.29269472} + m_LocalPosition: {x: -0.9077816, y: 0.81299996, z: 2.5728521} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 3119617620917291370} + m_Father: {fileID: 3119308079644534864} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 90, z: 90} +--- !u!1 &3116799582357039764 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3122279492874581152} + - component: {fileID: 3113039339055870060} + - component: {fileID: 3103406845835155120} + m_Layer: 0 + m_Name: Safety Goggles + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 4 + m_IsActive: 1 +--- !u!4 &3122279492874581152 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3116799582357039764} + m_LocalRotation: {x: -0, y: 0.48594558, z: -0, w: 0.8739891} + m_LocalPosition: {x: -0.85687876, y: 0.7586, z: 2.8654969} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 3119308079644534864} + m_RootOrder: 7 + m_LocalEulerAnglesHint: {x: 0, y: 17.053001, z: 0} +--- !u!33 &3113039339055870060 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3116799582357039764} + m_Mesh: {fileID: 4300000, guid: 6296e48663fd7ad46b1a2af507f871cf, type: 3} +--- !u!23 &3103406845835155120 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3116799582357039764} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RenderingLayerMask: 4294967295 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 81c1860e7800e5340bf8a54c565ba9ea, type: 2} + - {fileID: 2100000, guid: 8a38b7350df9a9c438e568993a00e5c5, type: 2} + - {fileID: 2100000, guid: bd2d742ee2ce7a740ae0cf992a38be74, type: 2} + - {fileID: 2100000, guid: e745492728544aa488aa0429b6068e71, 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: 0 + 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 +--- !u!1 &3116985835048169174 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3122398394351823804} + - component: {fileID: 3115800887613591026} + - component: {fileID: 3104157617231123184} + m_Layer: 0 + m_Name: Hammer + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3122398394351823804 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3116985835048169174} + m_LocalRotation: {x: 0.38609496, y: 0.58956987, z: -0.5923941, w: 0.3903939} + m_LocalPosition: {x: -1.189, y: 0.396, z: 2.836} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 3119308079644534864} + m_RootOrder: 4 + m_LocalEulerAnglesHint: {x: 89.58401, y: -17.702002, z: -90.00001} +--- !u!33 &3115800887613591026 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3116985835048169174} + m_Mesh: {fileID: 4300000, guid: 68a66fb5a71f8204a8dcb613c97d1fa8, type: 3} +--- !u!23 &3104157617231123184 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3116985835048169174} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RenderingLayerMask: 4294967295 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 4efcffd7ae23f1e41943fd914b18da10, 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: 0 + 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 +--- !u!1 &3117216213805114940 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3122603148334812230} + - component: {fileID: 3112990719921290092} + - component: {fileID: 3104944534080870354} + m_Layer: 0 + m_Name: Safety Hat + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 64 + m_IsActive: 1 +--- !u!4 &3122603148334812230 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3117216213805114940} + m_LocalRotation: {x: 0.07630027, y: 0.08658664, z: -0.13614726, w: 0.98394364} + m_LocalPosition: {x: -1.1087186, y: 0.91580284, z: 2.8324115} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 3119308079644534864} + m_RootOrder: 5 + m_LocalEulerAnglesHint: {x: 10.005, y: -32.357002, z: -14.990001} +--- !u!33 &3112990719921290092 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3117216213805114940} + m_Mesh: {fileID: 4300000, guid: 9d0d902f71acfe646a46cb625f815a49, type: 3} +--- !u!23 &3104944534080870354 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3117216213805114940} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RenderingLayerMask: 4294967295 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: e93789f0a5d66df4a81613935579642b, 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: 0 + 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 +--- !u!1 &3117221827256685120 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3119828853498865368} + - component: {fileID: 3113036643081436240} + - component: {fileID: 3104802019225904754} + m_Layer: 0 + m_Name: Jigsaw + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 64 + m_IsActive: 1 +--- !u!4 &3119828853498865368 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3117221827256685120} + m_LocalRotation: {x: -0, y: -0.90182185, z: -0, w: 0.432108} + m_LocalPosition: {x: -1.386482, y: 0.7602, z: 2.5419133} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 3119308079644534864} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: -169.893, z: 0} +--- !u!33 &3113036643081436240 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3117221827256685120} + m_Mesh: {fileID: 4300000, guid: 8b73e8872ca76104bbca4ee2b704a1b4, type: 3} +--- !u!23 &3104802019225904754 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3117221827256685120} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RenderingLayerMask: 4294967295 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 801db2d997a562b4ea333aa4593ce0f0, 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: 0 + 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 +--- !u!1001 &7336795078047825314 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 3119308079644534864} + m_Modifications: + - target: {fileID: 5661467807466071258, guid: 38d5ecfa2b93c4095b4cc5d4a590e676, + type: 3} + propertyPath: m_Name + value: Workbench_LOD1 + objectReference: {fileID: 0} + - target: {fileID: 5658053064983556274, guid: 38d5ecfa2b93c4095b4cc5d4a590e676, + type: 3} + propertyPath: m_LocalPosition.x + value: -1.062 + objectReference: {fileID: 0} + - target: {fileID: 5658053064983556274, guid: 38d5ecfa2b93c4095b4cc5d4a590e676, + type: 3} + propertyPath: m_LocalPosition.y + value: 0.38 + objectReference: {fileID: 0} + - target: {fileID: 5658053064983556274, guid: 38d5ecfa2b93c4095b4cc5d4a590e676, + type: 3} + propertyPath: m_LocalPosition.z + value: 2.714 + objectReference: {fileID: 0} + - target: {fileID: 5658053064983556274, guid: 38d5ecfa2b93c4095b4cc5d4a590e676, + type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 5658053064983556274, guid: 38d5ecfa2b93c4095b4cc5d4a590e676, + type: 3} + propertyPath: m_LocalRotation.y + value: 0.35098988 + objectReference: {fileID: 0} + - target: {fileID: 5658053064983556274, guid: 38d5ecfa2b93c4095b4cc5d4a590e676, + type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 5658053064983556274, guid: 38d5ecfa2b93c4095b4cc5d4a590e676, + type: 3} + propertyPath: m_LocalRotation.w + value: 0.9363793 + objectReference: {fileID: 0} + - target: {fileID: 5658053064983556274, guid: 38d5ecfa2b93c4095b4cc5d4a590e676, + type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5658053064983556274, guid: 38d5ecfa2b93c4095b4cc5d4a590e676, + type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5658053064983556274, guid: 38d5ecfa2b93c4095b4cc5d4a590e676, + type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5658053064983556274, guid: 38d5ecfa2b93c4095b4cc5d4a590e676, + type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 38d5ecfa2b93c4095b4cc5d4a590e676, type: 3} +--- !u!23 &3104244537775875718 stripped +MeshRenderer: + m_CorrespondingSourceObject: {fileID: 5676213065973766948, guid: 38d5ecfa2b93c4095b4cc5d4a590e676, + type: 3} + m_PrefabInstance: {fileID: 7336795078047825314} + m_PrefabAsset: {fileID: 0} +--- !u!23 &3105080114098584800 stripped +MeshRenderer: + m_CorrespondingSourceObject: {fileID: 5676503286650650946, guid: 38d5ecfa2b93c4095b4cc5d4a590e676, + type: 3} + m_PrefabInstance: {fileID: 7336795078047825314} + m_PrefabAsset: {fileID: 0} +--- !u!23 &3103130040492677778 stripped +MeshRenderer: + m_CorrespondingSourceObject: {fileID: 5674817094780659504, guid: 38d5ecfa2b93c4095b4cc5d4a590e676, + type: 3} + m_PrefabInstance: {fileID: 7336795078047825314} + m_PrefabAsset: {fileID: 0} +--- !u!23 &3103276435380462448 stripped +MeshRenderer: + m_CorrespondingSourceObject: {fileID: 5674682012534742738, guid: 38d5ecfa2b93c4095b4cc5d4a590e676, + type: 3} + m_PrefabInstance: {fileID: 7336795078047825314} + m_PrefabAsset: {fileID: 0} +--- !u!23 &3105042399987932030 stripped +MeshRenderer: + m_CorrespondingSourceObject: {fileID: 5676466122297272028, guid: 38d5ecfa2b93c4095b4cc5d4a590e676, + type: 3} + m_PrefabInstance: {fileID: 7336795078047825314} + m_PrefabAsset: {fileID: 0} +--- !u!4 &3122394256887008528 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 5658053064983556274, guid: 38d5ecfa2b93c4095b4cc5d4a590e676, + type: 3} + m_PrefabInstance: {fileID: 7336795078047825314} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &7771609378857188914 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 3119308079644534864} + m_Modifications: + - target: {fileID: 4654706891235022486, guid: c0adcaeba3022437293536832628fdf8, + type: 3} + propertyPath: m_Name + value: Workbench_LOD0 + objectReference: {fileID: 0} + - target: {fileID: 4652357657376429546, guid: c0adcaeba3022437293536832628fdf8, + type: 3} + propertyPath: m_LocalPosition.x + value: -1.062 + objectReference: {fileID: 0} + - target: {fileID: 4652357657376429546, guid: c0adcaeba3022437293536832628fdf8, + type: 3} + propertyPath: m_LocalPosition.y + value: 0.38 + objectReference: {fileID: 0} + - target: {fileID: 4652357657376429546, guid: c0adcaeba3022437293536832628fdf8, + type: 3} + propertyPath: m_LocalPosition.z + value: 2.714 + objectReference: {fileID: 0} + - target: {fileID: 4652357657376429546, guid: c0adcaeba3022437293536832628fdf8, + type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 4652357657376429546, guid: c0adcaeba3022437293536832628fdf8, + type: 3} + propertyPath: m_LocalRotation.y + value: 0.35098988 + objectReference: {fileID: 0} + - target: {fileID: 4652357657376429546, guid: c0adcaeba3022437293536832628fdf8, + type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 4652357657376429546, guid: c0adcaeba3022437293536832628fdf8, + type: 3} + propertyPath: m_LocalRotation.w + value: 0.9363793 + objectReference: {fileID: 0} + - target: {fileID: 4652357657376429546, guid: c0adcaeba3022437293536832628fdf8, + type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4652357657376429546, guid: c0adcaeba3022437293536832628fdf8, + type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4652357657376429546, guid: c0adcaeba3022437293536832628fdf8, + type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4652357657376429546, guid: c0adcaeba3022437293536832628fdf8, + type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: c0adcaeba3022437293536832628fdf8, type: 3} +--- !u!23 &3104775600728423106 stripped +MeshRenderer: + m_CorrespondingSourceObject: {fileID: 4669156908762383600, guid: c0adcaeba3022437293536832628fdf8, + type: 3} + m_PrefabInstance: {fileID: 7771609378857188914} + m_PrefabAsset: {fileID: 0} +--- !u!23 &3103183423594365042 stripped +MeshRenderer: + m_CorrespondingSourceObject: {fileID: 4668813807992798784, guid: c0adcaeba3022437293536832628fdf8, + type: 3} + m_PrefabInstance: {fileID: 7771609378857188914} + m_PrefabAsset: {fileID: 0} +--- !u!23 &3104733647337516948 stripped +MeshRenderer: + m_CorrespondingSourceObject: {fileID: 4669238033057386918, guid: c0adcaeba3022437293536832628fdf8, + type: 3} + m_PrefabInstance: {fileID: 7771609378857188914} + m_PrefabAsset: {fileID: 0} +--- !u!23 &3104831731306437092 stripped +MeshRenderer: + m_CorrespondingSourceObject: {fileID: 4669346124161738710, guid: c0adcaeba3022437293536832628fdf8, + type: 3} + m_PrefabInstance: {fileID: 7771609378857188914} + m_PrefabAsset: {fileID: 0} +--- !u!23 &3103437077802874286 stripped +MeshRenderer: + m_CorrespondingSourceObject: {fileID: 4669056446650321820, guid: c0adcaeba3022437293536832628fdf8, + type: 3} + m_PrefabInstance: {fileID: 7771609378857188914} + m_PrefabAsset: {fileID: 0} +--- !u!4 &3119361965510487000 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 4652357657376429546, guid: c0adcaeba3022437293536832628fdf8, + type: 3} + m_PrefabInstance: {fileID: 7771609378857188914} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/ExampleAssets/Prefabs/Workbench.prefab.meta b/Assets/ExampleAssets/Prefabs/Workbench.prefab.meta new file mode 100644 index 0000000..63df21c --- /dev/null +++ b/Assets/ExampleAssets/Prefabs/Workbench.prefab.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 8850d132797ff49298ba781e8e1c9bfe +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ExampleAssets/Prefabs/Workbench_LOD0.prefab b/Assets/ExampleAssets/Prefabs/Workbench_LOD0.prefab new file mode 100644 index 0000000..8e33e07 --- /dev/null +++ b/Assets/ExampleAssets/Prefabs/Workbench_LOD0.prefab @@ -0,0 +1,436 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &4654706891235022486 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4652357657376429546} + m_Layer: 0 + m_Name: Workbench_LOD0 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 69 + m_IsActive: 1 +--- !u!4 &4652357657376429546 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4654706891235022486} + m_LocalRotation: {x: -0, y: 0.35098988, z: -0, w: 0.9363793} + m_LocalPosition: {x: -1.062, y: 0.38, z: 2.714} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 4652092723355507650} + - {fileID: 4652336866379196474} + - {fileID: 4651874659452693726} + - {fileID: 4652650453683519398} + - {fileID: 4651934421147175794} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &4654927009086941866 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4651874659452693726} + - component: {fileID: 4677371287624717592} + - component: {fileID: 4669238033057386918} + m_Layer: 0 + m_Name: Bench Top + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 69 + m_IsActive: 1 +--- !u!4 &4651874659452693726 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4654927009086941866} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0, y: 0.35, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4652357657376429546} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &4677371287624717592 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4654927009086941866} + m_Mesh: {fileID: 4300008, guid: efe9381559c516743bd05cef82f39ebb, type: 3} +--- !u!23 &4669238033057386918 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4654927009086941866} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RenderingLayerMask: 4294967295 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: bd2d742ee2ce7a740ae0cf992a38be74, type: 2} + - {fileID: 2100000, guid: a5aaee4111611af43b5abbff184fe5fa, type: 2} + - {fileID: 2100000, guid: c05de7c865075334786e6a47a543af72, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 2 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 0 + 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 +--- !u!1 &4654945356442366432 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4651934421147175794} + - component: {fileID: 4676955705559289260} + - component: {fileID: 4669156908762383600} + m_Layer: 0 + m_Name: Upper Covers + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 69 + m_IsActive: 1 +--- !u!4 &4651934421147175794 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4654945356442366432} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0, y: 0.15057836, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4652357657376429546} + m_RootOrder: 4 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &4676955705559289260 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4654945356442366432} + m_Mesh: {fileID: 4300004, guid: efe9381559c516743bd05cef82f39ebb, type: 3} +--- !u!23 &4669156908762383600 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4654945356442366432} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RenderingLayerMask: 4294967295 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: a5aaee4111611af43b5abbff184fe5fa, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 4 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 0 + 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 +--- !u!1 &4655025728248676614 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4652650453683519398} + - component: {fileID: 4677800265876148386} + - component: {fileID: 4668813807992798784} + m_Layer: 0 + m_Name: Supports + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 69 + m_IsActive: 1 +--- !u!4 &4652650453683519398 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4655025728248676614} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0.0000048828124, y: 0.18586077, z: -0.00006345749} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4652357657376429546} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &4677800265876148386 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4655025728248676614} + m_Mesh: {fileID: 4300002, guid: efe9381559c516743bd05cef82f39ebb, type: 3} +--- !u!23 &4668813807992798784 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4655025728248676614} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RenderingLayerMask: 4294967295 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 4dad30bbe2213eb4d8312f7bb6190866, type: 2} + - {fileID: 2100000, guid: a5aaee4111611af43b5abbff184fe5fa, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 6 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 0 + 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 +--- !u!1 &4655042387535137908 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4652092723355507650} + - component: {fileID: 4677493593193602690} + - component: {fileID: 4669056446650321820} + m_Layer: 0 + m_Name: Bench Bottom + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 69 + m_IsActive: 1 +--- !u!4 &4652092723355507650 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4655042387535137908} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0.01, y: -0.028999997, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4652357657376429546} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &4677493593193602690 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4655042387535137908} + m_Mesh: {fileID: 4300006, guid: efe9381559c516743bd05cef82f39ebb, type: 3} +--- !u!23 &4669056446650321820 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4655042387535137908} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RenderingLayerMask: 4294967295 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: a5aaee4111611af43b5abbff184fe5fa, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1.5 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 0 + 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 +--- !u!1 &4655337206599198174 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4652336866379196474} + - component: {fileID: 4677182166877698144} + - component: {fileID: 4669346124161738710} + m_Layer: 0 + m_Name: Bench Legs + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 69 + m_IsActive: 1 +--- !u!4 &4652336866379196474 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4655337206599198174} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0, y: -0.012217102, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4652357657376429546} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &4677182166877698144 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4655337206599198174} + m_Mesh: {fileID: 4300000, guid: efe9381559c516743bd05cef82f39ebb, type: 3} +--- !u!23 &4669346124161738710 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4655337206599198174} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RenderingLayerMask: 4294967295 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: e745492728544aa488aa0429b6068e71, type: 2} + - {fileID: 2100000, guid: a0427cf339e5891468d5f2b433b2d44a, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 3 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 0 + 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 diff --git a/Assets/ExampleAssets/Prefabs/Workbench_LOD0.prefab.meta b/Assets/ExampleAssets/Prefabs/Workbench_LOD0.prefab.meta new file mode 100644 index 0000000..4ec533d --- /dev/null +++ b/Assets/ExampleAssets/Prefabs/Workbench_LOD0.prefab.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: c0adcaeba3022437293536832628fdf8 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ExampleAssets/Prefabs/Workbench_LOD1.prefab b/Assets/ExampleAssets/Prefabs/Workbench_LOD1.prefab new file mode 100644 index 0000000..101f4d8 --- /dev/null +++ b/Assets/ExampleAssets/Prefabs/Workbench_LOD1.prefab @@ -0,0 +1,436 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &5661434200972415984 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5664361524760285604} + - component: {fileID: 5683951231692497012} + - component: {fileID: 5676213065973766948} + m_Layer: 0 + m_Name: Upper Covers Low + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 68 + m_IsActive: 1 +--- !u!4 &5664361524760285604 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5661434200972415984} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0, y: 0.15057836, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 5658053064983556274} + m_RootOrder: 4 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &5683951231692497012 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5661434200972415984} + m_Mesh: {fileID: 4300004, guid: ff6dc36862fe41641bb21568d92147c9, type: 3} +--- !u!23 &5676213065973766948 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5661434200972415984} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RenderingLayerMask: 4294967295 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: a5aaee4111611af43b5abbff184fe5fa, 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: 0 + 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 +--- !u!1 &5661467807466071258 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5658053064983556274} + m_Layer: 0 + m_Name: Workbench_LOD1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 69 + m_IsActive: 1 +--- !u!4 &5658053064983556274 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5661467807466071258} + m_LocalRotation: {x: -0, y: 0.35098988, z: -0, w: 0.9363793} + m_LocalPosition: {x: -1.062, y: 0.38, z: 2.714} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 5664165018907719136} + - {fileID: 5664072894473056284} + - {fileID: 5658007995585569874} + - {fileID: 5657988392034782802} + - {fileID: 5664361524760285604} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &5661603627820386746 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5657988392034782802} + - component: {fileID: 5684572465332221874} + - component: {fileID: 5676503286650650946} + m_Layer: 0 + m_Name: Supports Low + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 68 + m_IsActive: 1 +--- !u!4 &5657988392034782802 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5661603627820386746} + 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_Children: [] + m_Father: {fileID: 5658053064983556274} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &5684572465332221874 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5661603627820386746} + m_Mesh: {fileID: 4300002, guid: ff6dc36862fe41641bb21568d92147c9, type: 3} +--- !u!23 &5676503286650650946 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5661603627820386746} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RenderingLayerMask: 4294967295 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 4dad30bbe2213eb4d8312f7bb6190866, type: 2} + - {fileID: 2100000, guid: a5aaee4111611af43b5abbff184fe5fa, 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: 0 + 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 +--- !u!1 &5661657092234821698 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5664072894473056284} + - component: {fileID: 5684400886451945144} + - component: {fileID: 5674682012534742738} + m_Layer: 0 + m_Name: Bench Legs Low + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 69 + m_IsActive: 1 +--- !u!4 &5664072894473056284 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5661657092234821698} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0, y: -0.012217102, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 5658053064983556274} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &5684400886451945144 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5661657092234821698} + m_Mesh: {fileID: 4300000, guid: ff6dc36862fe41641bb21568d92147c9, type: 3} +--- !u!23 &5674682012534742738 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5661657092234821698} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RenderingLayerMask: 4294967295 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: e745492728544aa488aa0429b6068e71, type: 2} + - {fileID: 2100000, guid: a0427cf339e5891468d5f2b433b2d44a, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 4 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 0 + 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 +--- !u!1 &5661743273485771150 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5658007995585569874} + - component: {fileID: 5684391903230180744} + - component: {fileID: 5674817094780659504} + m_Layer: 0 + m_Name: Bench Top Low + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 69 + m_IsActive: 1 +--- !u!4 &5658007995585569874 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5661743273485771150} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0, y: 0.35, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 5658053064983556274} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &5684391903230180744 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5661743273485771150} + m_Mesh: {fileID: 4300008, guid: ff6dc36862fe41641bb21568d92147c9, type: 3} +--- !u!23 &5674817094780659504 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5661743273485771150} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RenderingLayerMask: 4294967295 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: bd2d742ee2ce7a740ae0cf992a38be74, type: 2} + - {fileID: 2100000, guid: a5aaee4111611af43b5abbff184fe5fa, type: 2} + - {fileID: 2100000, guid: c05de7c865075334786e6a47a543af72, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 4 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 0 + 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 +--- !u!1 &5661786089239428520 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5664165018907719136} + - component: {fileID: 5684341621502502256} + - component: {fileID: 5676466122297272028} + m_Layer: 0 + m_Name: Bench Bottom Low + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 69 + m_IsActive: 1 +--- !u!4 &5664165018907719136 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5661786089239428520} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0, y: -0.028999997, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 5658053064983556274} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &5684341621502502256 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5661786089239428520} + m_Mesh: {fileID: 4300006, guid: ff6dc36862fe41641bb21568d92147c9, type: 3} +--- !u!23 &5676466122297272028 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5661786089239428520} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RenderingLayerMask: 4294967295 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: a5aaee4111611af43b5abbff184fe5fa, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 2.6 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 0 + 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 diff --git a/Assets/ExampleAssets/Prefabs/Workbench_LOD1.prefab.meta b/Assets/ExampleAssets/Prefabs/Workbench_LOD1.prefab.meta new file mode 100644 index 0000000..9849828 --- /dev/null +++ b/Assets/ExampleAssets/Prefabs/Workbench_LOD1.prefab.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 38d5ecfa2b93c4095b4cc5d4a590e676 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ExampleAssets/Prefabs/Workshop Set.prefab b/Assets/ExampleAssets/Prefabs/Workshop Set.prefab new file mode 100644 index 0000000..5d4a461 --- /dev/null +++ b/Assets/ExampleAssets/Prefabs/Workshop Set.prefab @@ -0,0 +1,427 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1001 &100100000 +Prefab: + m_ObjectHideFlags: 1 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 0} + m_Modifications: [] + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 0} + m_RootGameObject: {fileID: 1059178161569566} + m_IsPrefabAsset: 1 +--- !u!1 &1059178161569566 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 6 + m_Component: + - component: {fileID: 4527368504392492} + m_Layer: 0 + m_Name: Workshop Set + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 69 + m_IsActive: 1 +--- !u!1 &1235180761666570 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 6 + m_Component: + - component: {fileID: 4594686216471428} + - component: {fileID: 33979524907054004} + - component: {fileID: 23443988575697304} + m_Layer: 0 + m_Name: Drywall Panel + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 69 + m_IsActive: 1 +--- !u!1 &1293149991175426 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 6 + m_Component: + - component: {fileID: 4531643777947948} + - component: {fileID: 33394145431370862} + - component: {fileID: 23498071657209960} + m_Layer: 0 + m_Name: Stud Frame + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 69 + m_IsActive: 1 +--- !u!1 &1586147481598998 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 6 + m_Component: + - component: {fileID: 4474707690975100} + - component: {fileID: 33427746518435680} + - component: {fileID: 23518036302632516} + m_Layer: 0 + m_Name: Stud Pile + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 69 + m_IsActive: 1 +--- !u!1 &1910320034563518 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 6 + m_Component: + - component: {fileID: 4690520183378746} + - component: {fileID: 33917801426931514} + - component: {fileID: 23465259303227802} + m_Layer: 0 + m_Name: OSB Panel + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 69 + m_IsActive: 1 +--- !u!1 &1986291140878450 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 6 + m_Component: + - component: {fileID: 4395200634295792} + - component: {fileID: 33373438061539486} + - component: {fileID: 23575124315791700} + - component: {fileID: 65922563007594602} + m_Layer: 0 + m_Name: Ground + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 69 + m_IsActive: 1 +--- !u!4 &4395200634295792 +Transform: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1986291140878450} + 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_Children: [] + m_Father: {fileID: 4527368504392492} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!4 &4474707690975100 +Transform: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1586147481598998} + 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_Children: [] + m_Father: {fileID: 4527368504392492} + m_RootOrder: 4 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!4 &4527368504392492 +Transform: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1059178161569566} + 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_Children: + - {fileID: 4594686216471428} + - {fileID: 4395200634295792} + - {fileID: 4690520183378746} + - {fileID: 4531643777947948} + - {fileID: 4474707690975100} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!4 &4531643777947948 +Transform: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1293149991175426} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0.049999997, y: 1.22, z: 1.78} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4527368504392492} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!4 &4594686216471428 +Transform: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1235180761666570} + 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_Children: [] + m_Father: {fileID: 4527368504392492} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!4 &4690520183378746 +Transform: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1910320034563518} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -1.2246468e-17, y: 0, z: -0.099999994} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4527368504392492} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!23 &23443988575697304 +MeshRenderer: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1235180761666570} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RenderingLayerMask: 4294967295 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 9b8eadc4de0544646b75ddcc43f8fd06, type: 2} + - {fileID: 2100000, guid: a68228c24abfa2f4b8954d7b0148f799, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 0 + 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 +--- !u!23 &23465259303227802 +MeshRenderer: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1910320034563518} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RenderingLayerMask: 4294967295 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: c438e5c679f1be040a135443008e2fce, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 0 + 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 +--- !u!23 &23498071657209960 +MeshRenderer: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1293149991175426} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RenderingLayerMask: 4294967295 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 027cb3d3d7dc79d41ad763e01759de07, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 2 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 0 + 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 +--- !u!23 &23518036302632516 +MeshRenderer: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1586147481598998} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RenderingLayerMask: 4294967295 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 027cb3d3d7dc79d41ad763e01759de07, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1.3 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 0 + 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 +--- !u!23 &23575124315791700 +MeshRenderer: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1986291140878450} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RenderingLayerMask: 4294967295 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: d92ef32394b5f474385d74b565a7bdd7, type: 2} + - {fileID: 2100000, guid: 027cb3d3d7dc79d41ad763e01759de07, type: 2} + - {fileID: 2100000, guid: a0427cf339e5891468d5f2b433b2d44a, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 0 + 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 +--- !u!33 &33373438061539486 +MeshFilter: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1986291140878450} + m_Mesh: {fileID: 4300002, guid: 47616bd0cda748d4cbedcfc908506b9d, type: 3} +--- !u!33 &33394145431370862 +MeshFilter: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1293149991175426} + m_Mesh: {fileID: 4300008, guid: 47616bd0cda748d4cbedcfc908506b9d, type: 3} +--- !u!33 &33427746518435680 +MeshFilter: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1586147481598998} + m_Mesh: {fileID: 4300000, guid: 47616bd0cda748d4cbedcfc908506b9d, type: 3} +--- !u!33 &33917801426931514 +MeshFilter: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1910320034563518} + m_Mesh: {fileID: 4300006, guid: 47616bd0cda748d4cbedcfc908506b9d, type: 3} +--- !u!33 &33979524907054004 +MeshFilter: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1235180761666570} + m_Mesh: {fileID: 4300004, guid: 47616bd0cda748d4cbedcfc908506b9d, type: 3} +--- !u!65 &65922563007594602 +BoxCollider: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1986291140878450} + m_Material: {fileID: 0} + m_IsTrigger: 0 + m_Enabled: 1 + serializedVersion: 2 + m_Size: {x: 5.0005503, y: 0.15000004, z: 5.000001} + m_Center: {x: 0.67022556, y: -0.07500002, z: 1.1600004} diff --git a/Assets/ExampleAssets/Prefabs/Workshop Set.prefab.meta b/Assets/ExampleAssets/Prefabs/Workshop Set.prefab.meta new file mode 100644 index 0000000..0d871e2 --- /dev/null +++ b/Assets/ExampleAssets/Prefabs/Workshop Set.prefab.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: a87f0180d46fd334b9025d0314a0dc70 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 100100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ExampleAssets/Shaders.meta b/Assets/ExampleAssets/Shaders.meta new file mode 100644 index 0000000..7f414e7 --- /dev/null +++ b/Assets/ExampleAssets/Shaders.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: eb6819cbd279a3941a65f1689b2f621e +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ExampleAssets/Shaders/Paint1G_WAnim_Shader.ShaderGraph b/Assets/ExampleAssets/Shaders/Paint1G_WAnim_Shader.ShaderGraph new file mode 100644 index 0000000..35a28c6 --- /dev/null +++ b/Assets/ExampleAssets/Shaders/Paint1G_WAnim_Shader.ShaderGraph @@ -0,0 +1,337 @@ +{ + "m_SerializedProperties": [ + { + "typeInfo": { + "fullName": "UnityEditor.ShaderGraph.Vector1ShaderProperty" + }, + "JSONnodeData": "{\n \"m_Value\": 0.10000000149011612,\n \"m_Name\": \"Speed\",\n \"m_GeneratePropertyBlock\": true,\n \"m_Guid\": {\n \"m_GuidSerialized\": \"e1f132b2-9fd9-4299-9be9-6b123f82464c\"\n },\n \"m_DefaultReferenceName\": \"Vector1_2EE2CB80\",\n \"m_OverrideReferenceName\": \"\",\n \"m_FloatType\": 0,\n \"m_RangeValues\": {\n \"x\": 0.0,\n \"y\": 1.0\n }\n}" + }, + { + "typeInfo": { + "fullName": "UnityEditor.ShaderGraph.Vector2ShaderProperty" + }, + "JSONnodeData": "{\n \"m_Value\": {\n \"x\": 0.25,\n \"y\": 0.25,\n \"z\": 0.0,\n \"w\": 0.0\n },\n \"m_Name\": \"Center\",\n \"m_GeneratePropertyBlock\": true,\n \"m_Guid\": {\n \"m_GuidSerialized\": \"4887e2c8-a799-4ef6-ac8e-57b7095ddafb\"\n },\n \"m_DefaultReferenceName\": \"Vector2_C848BFFB\",\n \"m_OverrideReferenceName\": \"\"\n}" + }, + { + "typeInfo": { + "fullName": "UnityEditor.ShaderGraph.ColorShaderProperty" + }, + "JSONnodeData": "{\n \"m_Value\": {\n \"r\": 0.11372549086809159,\n \"g\": 0.6274510025978088,\n \"b\": 0.8352941274642944,\n \"a\": 0.0\n },\n \"m_Name\": \"PaintColor_01\",\n \"m_GeneratePropertyBlock\": true,\n \"m_Guid\": {\n \"m_GuidSerialized\": \"0f4a94cd-7d2c-4ff8-9716-cfed72d9f524\"\n },\n \"m_DefaultReferenceName\": \"Color_A2AAE5B5\",\n \"m_OverrideReferenceName\": \"\",\n \"m_ColorMode\": 0,\n \"m_Hidden\": false\n}" + }, + { + "typeInfo": { + "fullName": "UnityEditor.ShaderGraph.ColorShaderProperty" + }, + "JSONnodeData": "{\n \"m_Value\": {\n \"r\": 0.045612312853336337,\n \"g\": 0.14495296776294709,\n \"b\": 0.38679248094558718,\n \"a\": 0.0\n },\n \"m_Name\": \"PaintColor_02\",\n \"m_GeneratePropertyBlock\": true,\n \"m_Guid\": {\n \"m_GuidSerialized\": \"b7a49b06-9b4c-4b59-ba25-49cc6e985011\"\n },\n \"m_DefaultReferenceName\": \"Color_23C9B10D\",\n \"m_OverrideReferenceName\": \"\",\n \"m_ColorMode\": 0,\n \"m_Hidden\": false\n}" + }, + { + "typeInfo": { + "fullName": "UnityEditor.ShaderGraph.TextureShaderProperty" + }, + "JSONnodeData": "{\n \"m_Value\": {\n \"m_SerializedTexture\": \"\",\n \"m_Guid\": \"e5c37ab0c7b37af4f981195d3caaf4b4\"\n },\n \"m_Name\": \"Label\",\n \"m_GeneratePropertyBlock\": true,\n \"m_Guid\": {\n \"m_GuidSerialized\": \"fe65f4d6-d596-4ec3-9a8f-a36939bfbaee\"\n },\n \"m_DefaultReferenceName\": \"Texture2D_C69EB180\",\n \"m_OverrideReferenceName\": \"\",\n \"m_Modifiable\": true,\n \"m_DefaultType\": 0\n}" + } + ], + "m_GUID": { + "m_GuidSerialized": "99a7cc6e-4c8d-41de-be05-8e5e9cf4fae6" + }, + "m_SerializableNodes": [ + { + "typeInfo": { + "fullName": "UnityEditor.ShaderGraph.TilingAndOffsetNode" + }, + "JSONnodeData": "{\n \"m_GuidSerialized\": \"9020103b-dc00-455f-9621-c91c1f2a3824\",\n \"m_GroupGuidSerialized\": \"00000000-0000-0000-0000-000000000000\",\n \"m_Name\": \"Tiling And Offset\",\n \"m_DrawState\": {\n \"m_Expanded\": true,\n \"m_Position\": {\n \"serializedVersion\": \"2\",\n \"x\": -127.35475158691406,\n \"y\": -438.1426696777344,\n \"width\": 208.0,\n \"height\": 326.0\n }\n },\n \"m_SerializableSlots\": [\n {\n \"typeInfo\": {\n \"fullName\": \"UnityEditor.ShaderGraph.UVMaterialSlot\"\n },\n \"JSONnodeData\": \"{\\n \\\"m_Id\\\": 0,\\n \\\"m_DisplayName\\\": \\\"UV\\\",\\n \\\"m_SlotType\\\": 0,\\n \\\"m_Priority\\\": 2147483647,\\n \\\"m_Hidden\\\": false,\\n \\\"m_ShaderOutputName\\\": \\\"UV\\\",\\n \\\"m_StageCapability\\\": 3,\\n \\\"m_Value\\\": {\\n \\\"x\\\": 0.0,\\n \\\"y\\\": 0.0\\n },\\n \\\"m_DefaultValue\\\": {\\n \\\"x\\\": 0.0,\\n \\\"y\\\": 0.0\\n },\\n \\\"m_Labels\\\": [\\n \\\"X\\\",\\n \\\"Y\\\"\\n ],\\n \\\"m_Channel\\\": 0\\n}\"\n },\n {\n \"typeInfo\": {\n \"fullName\": \"UnityEditor.ShaderGraph.Vector2MaterialSlot\"\n },\n \"JSONnodeData\": \"{\\n \\\"m_Id\\\": 1,\\n \\\"m_DisplayName\\\": \\\"Tiling\\\",\\n \\\"m_SlotType\\\": 0,\\n \\\"m_Priority\\\": 2147483647,\\n \\\"m_Hidden\\\": false,\\n \\\"m_ShaderOutputName\\\": \\\"Tiling\\\",\\n \\\"m_StageCapability\\\": 3,\\n \\\"m_Value\\\": {\\n \\\"x\\\": 4.0,\\n \\\"y\\\": 4.0\\n },\\n \\\"m_DefaultValue\\\": {\\n \\\"x\\\": 0.0,\\n \\\"y\\\": 0.0\\n },\\n \\\"m_Labels\\\": [\\n \\\"X\\\",\\n \\\"Y\\\"\\n ]\\n}\"\n },\n {\n \"typeInfo\": {\n \"fullName\": \"UnityEditor.ShaderGraph.Vector2MaterialSlot\"\n },\n \"JSONnodeData\": \"{\\n \\\"m_Id\\\": 2,\\n \\\"m_DisplayName\\\": \\\"Offset\\\",\\n \\\"m_SlotType\\\": 0,\\n \\\"m_Priority\\\": 2147483647,\\n \\\"m_Hidden\\\": false,\\n \\\"m_ShaderOutputName\\\": \\\"Offset\\\",\\n \\\"m_StageCapability\\\": 3,\\n \\\"m_Value\\\": {\\n \\\"x\\\": 0.0,\\n \\\"y\\\": 0.0\\n },\\n \\\"m_DefaultValue\\\": {\\n \\\"x\\\": 0.0,\\n \\\"y\\\": 0.0\\n },\\n \\\"m_Labels\\\": [\\n \\\"X\\\",\\n \\\"Y\\\"\\n ]\\n}\"\n },\n {\n \"typeInfo\": {\n \"fullName\": \"UnityEditor.ShaderGraph.Vector2MaterialSlot\"\n },\n \"JSONnodeData\": \"{\\n \\\"m_Id\\\": 3,\\n \\\"m_DisplayName\\\": \\\"Out\\\",\\n \\\"m_SlotType\\\": 1,\\n \\\"m_Priority\\\": 2147483647,\\n \\\"m_Hidden\\\": false,\\n \\\"m_ShaderOutputName\\\": \\\"Out\\\",\\n \\\"m_StageCapability\\\": 3,\\n \\\"m_Value\\\": {\\n \\\"x\\\": 0.0,\\n \\\"y\\\": 0.0\\n },\\n \\\"m_DefaultValue\\\": {\\n \\\"x\\\": 0.0,\\n \\\"y\\\": 0.0\\n },\\n \\\"m_Labels\\\": [\\n \\\"X\\\",\\n \\\"Y\\\"\\n ]\\n}\"\n }\n ],\n \"m_PreviewExpanded\": true\n}" + }, + { + "typeInfo": { + "fullName": "UnityEditor.ShaderGraph.MultiplyNode" + }, + "JSONnodeData": "{\n \"m_GuidSerialized\": \"6a5b01a8-4e84-4bb1-95d5-490ec32e5f20\",\n \"m_GroupGuidSerialized\": \"00000000-0000-0000-0000-000000000000\",\n \"m_Name\": \"Multiply\",\n \"m_DrawState\": {\n \"m_Expanded\": true,\n \"m_Position\": {\n \"serializedVersion\": \"2\",\n \"x\": -1004.0064086914063,\n \"y\": -383.0411071777344,\n \"width\": 122.0,\n \"height\": 118.0\n }\n },\n \"m_SerializableSlots\": [\n {\n \"typeInfo\": {\n \"fullName\": \"UnityEditor.ShaderGraph.DynamicValueMaterialSlot\"\n },\n \"JSONnodeData\": \"{\\n \\\"m_Id\\\": 0,\\n \\\"m_DisplayName\\\": \\\"A\\\",\\n \\\"m_SlotType\\\": 0,\\n \\\"m_Priority\\\": 2147483647,\\n \\\"m_Hidden\\\": false,\\n \\\"m_ShaderOutputName\\\": \\\"A\\\",\\n \\\"m_StageCapability\\\": 3,\\n \\\"m_Value\\\": {\\n \\\"e00\\\": 0.0,\\n \\\"e01\\\": 0.0,\\n \\\"e02\\\": 0.0,\\n \\\"e03\\\": 0.0,\\n \\\"e10\\\": 0.0,\\n \\\"e11\\\": 0.0,\\n \\\"e12\\\": 0.0,\\n \\\"e13\\\": 0.0,\\n \\\"e20\\\": 0.0,\\n \\\"e21\\\": 0.0,\\n \\\"e22\\\": 0.0,\\n \\\"e23\\\": 0.0,\\n \\\"e30\\\": 0.0,\\n \\\"e31\\\": 0.0,\\n \\\"e32\\\": 0.0,\\n \\\"e33\\\": 0.0\\n },\\n \\\"m_DefaultValue\\\": {\\n \\\"e00\\\": 1.0,\\n \\\"e01\\\": 0.0,\\n \\\"e02\\\": 0.0,\\n \\\"e03\\\": 0.0,\\n \\\"e10\\\": 0.0,\\n \\\"e11\\\": 1.0,\\n \\\"e12\\\": 0.0,\\n \\\"e13\\\": 0.0,\\n \\\"e20\\\": 0.0,\\n \\\"e21\\\": 0.0,\\n \\\"e22\\\": 1.0,\\n \\\"e23\\\": 0.0,\\n \\\"e30\\\": 0.0,\\n \\\"e31\\\": 0.0,\\n \\\"e32\\\": 0.0,\\n \\\"e33\\\": 1.0\\n }\\n}\"\n },\n {\n \"typeInfo\": {\n \"fullName\": \"UnityEditor.ShaderGraph.DynamicValueMaterialSlot\"\n },\n \"JSONnodeData\": \"{\\n \\\"m_Id\\\": 1,\\n \\\"m_DisplayName\\\": \\\"B\\\",\\n \\\"m_SlotType\\\": 0,\\n \\\"m_Priority\\\": 2147483647,\\n \\\"m_Hidden\\\": false,\\n \\\"m_ShaderOutputName\\\": \\\"B\\\",\\n \\\"m_StageCapability\\\": 3,\\n \\\"m_Value\\\": {\\n \\\"e00\\\": 0.009999999776482582,\\n \\\"e01\\\": 2.0,\\n \\\"e02\\\": 2.0,\\n \\\"e03\\\": 2.0,\\n \\\"e10\\\": 2.0,\\n \\\"e11\\\": 2.0,\\n \\\"e12\\\": 2.0,\\n \\\"e13\\\": 2.0,\\n \\\"e20\\\": 2.0,\\n \\\"e21\\\": 2.0,\\n \\\"e22\\\": 2.0,\\n \\\"e23\\\": 2.0,\\n \\\"e30\\\": 2.0,\\n \\\"e31\\\": 2.0,\\n \\\"e32\\\": 2.0,\\n \\\"e33\\\": 2.0\\n },\\n \\\"m_DefaultValue\\\": {\\n \\\"e00\\\": 1.0,\\n \\\"e01\\\": 0.0,\\n \\\"e02\\\": 0.0,\\n \\\"e03\\\": 0.0,\\n \\\"e10\\\": 0.0,\\n \\\"e11\\\": 1.0,\\n \\\"e12\\\": 0.0,\\n \\\"e13\\\": 0.0,\\n \\\"e20\\\": 0.0,\\n \\\"e21\\\": 0.0,\\n \\\"e22\\\": 1.0,\\n \\\"e23\\\": 0.0,\\n \\\"e30\\\": 0.0,\\n \\\"e31\\\": 0.0,\\n \\\"e32\\\": 0.0,\\n \\\"e33\\\": 1.0\\n }\\n}\"\n },\n {\n \"typeInfo\": {\n \"fullName\": \"UnityEditor.ShaderGraph.DynamicValueMaterialSlot\"\n },\n \"JSONnodeData\": \"{\\n \\\"m_Id\\\": 2,\\n \\\"m_DisplayName\\\": \\\"Out\\\",\\n \\\"m_SlotType\\\": 1,\\n \\\"m_Priority\\\": 2147483647,\\n \\\"m_Hidden\\\": false,\\n \\\"m_ShaderOutputName\\\": \\\"Out\\\",\\n \\\"m_StageCapability\\\": 3,\\n \\\"m_Value\\\": {\\n \\\"e00\\\": 0.0,\\n \\\"e01\\\": 0.0,\\n \\\"e02\\\": 0.0,\\n \\\"e03\\\": 0.0,\\n \\\"e10\\\": 0.0,\\n \\\"e11\\\": 0.0,\\n \\\"e12\\\": 0.0,\\n \\\"e13\\\": 0.0,\\n \\\"e20\\\": 0.0,\\n \\\"e21\\\": 0.0,\\n \\\"e22\\\": 0.0,\\n \\\"e23\\\": 0.0,\\n \\\"e30\\\": 0.0,\\n \\\"e31\\\": 0.0,\\n \\\"e32\\\": 0.0,\\n \\\"e33\\\": 0.0\\n },\\n \\\"m_DefaultValue\\\": {\\n \\\"e00\\\": 1.0,\\n \\\"e01\\\": 0.0,\\n \\\"e02\\\": 0.0,\\n \\\"e03\\\": 0.0,\\n \\\"e10\\\": 0.0,\\n \\\"e11\\\": 1.0,\\n \\\"e12\\\": 0.0,\\n \\\"e13\\\": 0.0,\\n \\\"e20\\\": 0.0,\\n \\\"e21\\\": 0.0,\\n \\\"e22\\\": 1.0,\\n \\\"e23\\\": 0.0,\\n \\\"e30\\\": 0.0,\\n \\\"e31\\\": 0.0,\\n \\\"e32\\\": 0.0,\\n \\\"e33\\\": 1.0\\n }\\n}\"\n }\n ],\n \"m_PreviewExpanded\": false\n}" + }, + { + "typeInfo": { + "fullName": "UnityEditor.ShaderGraph.FractionNode" + }, + "JSONnodeData": "{\n \"m_GuidSerialized\": \"49aeb989-8006-449f-881e-e987d67d8d14\",\n \"m_GroupGuidSerialized\": \"00000000-0000-0000-0000-000000000000\",\n \"m_Name\": \"Fraction\",\n \"m_DrawState\": {\n \"m_Expanded\": true,\n \"m_Position\": {\n \"serializedVersion\": \"2\",\n \"x\": -841.897216796875,\n \"y\": -384.6653747558594,\n \"width\": 124.0,\n \"height\": 94.0\n }\n },\n \"m_SerializableSlots\": [\n {\n \"typeInfo\": {\n \"fullName\": \"UnityEditor.ShaderGraph.DynamicVectorMaterialSlot\"\n },\n \"JSONnodeData\": \"{\\n \\\"m_Id\\\": 0,\\n \\\"m_DisplayName\\\": \\\"In\\\",\\n \\\"m_SlotType\\\": 0,\\n \\\"m_Priority\\\": 2147483647,\\n \\\"m_Hidden\\\": false,\\n \\\"m_ShaderOutputName\\\": \\\"In\\\",\\n \\\"m_StageCapability\\\": 3,\\n \\\"m_Value\\\": {\\n \\\"x\\\": 0.0,\\n \\\"y\\\": 0.0,\\n \\\"z\\\": 0.0,\\n \\\"w\\\": 0.0\\n },\\n \\\"m_DefaultValue\\\": {\\n \\\"x\\\": 0.0,\\n \\\"y\\\": 0.0,\\n \\\"z\\\": 0.0,\\n \\\"w\\\": 0.0\\n }\\n}\"\n },\n {\n \"typeInfo\": {\n \"fullName\": \"UnityEditor.ShaderGraph.DynamicVectorMaterialSlot\"\n },\n \"JSONnodeData\": \"{\\n \\\"m_Id\\\": 1,\\n \\\"m_DisplayName\\\": \\\"Out\\\",\\n \\\"m_SlotType\\\": 1,\\n \\\"m_Priority\\\": 2147483647,\\n \\\"m_Hidden\\\": false,\\n \\\"m_ShaderOutputName\\\": \\\"Out\\\",\\n \\\"m_StageCapability\\\": 3,\\n \\\"m_Value\\\": {\\n \\\"x\\\": 0.0,\\n \\\"y\\\": 0.0,\\n \\\"z\\\": 0.0,\\n \\\"w\\\": 0.0\\n },\\n \\\"m_DefaultValue\\\": {\\n \\\"x\\\": 0.0,\\n \\\"y\\\": 0.0,\\n \\\"z\\\": 0.0,\\n \\\"w\\\": 0.0\\n }\\n}\"\n }\n ],\n \"m_PreviewExpanded\": false\n}" + }, + { + "typeInfo": { + "fullName": "UnityEditor.ShaderGraph.TimeNode" + }, + "JSONnodeData": "{\n \"m_GuidSerialized\": \"4a55b16e-96b0-493f-8e8d-1623b1be7c8e\",\n \"m_GroupGuidSerialized\": \"00000000-0000-0000-0000-000000000000\",\n \"m_Name\": \"Time\",\n \"m_DrawState\": {\n \"m_Expanded\": true,\n \"m_Position\": {\n \"serializedVersion\": \"2\",\n \"x\": -1193.794189453125,\n \"y\": -513.6770629882813,\n \"width\": 119.0,\n \"height\": 173.0\n }\n },\n \"m_SerializableSlots\": [\n {\n \"typeInfo\": {\n \"fullName\": \"UnityEditor.ShaderGraph.Vector1MaterialSlot\"\n },\n \"JSONnodeData\": \"{\\n \\\"m_Id\\\": 0,\\n \\\"m_DisplayName\\\": \\\"Time\\\",\\n \\\"m_SlotType\\\": 1,\\n \\\"m_Priority\\\": 2147483647,\\n \\\"m_Hidden\\\": false,\\n \\\"m_ShaderOutputName\\\": \\\"Time\\\",\\n \\\"m_StageCapability\\\": 3,\\n \\\"m_Value\\\": 0.0,\\n \\\"m_DefaultValue\\\": 0.0,\\n \\\"m_Labels\\\": [\\n \\\"X\\\"\\n ]\\n}\"\n },\n {\n \"typeInfo\": {\n \"fullName\": \"UnityEditor.ShaderGraph.Vector1MaterialSlot\"\n },\n \"JSONnodeData\": \"{\\n \\\"m_Id\\\": 1,\\n \\\"m_DisplayName\\\": \\\"Sine Time\\\",\\n \\\"m_SlotType\\\": 1,\\n \\\"m_Priority\\\": 2147483647,\\n \\\"m_Hidden\\\": false,\\n \\\"m_ShaderOutputName\\\": \\\"Sine Time\\\",\\n \\\"m_StageCapability\\\": 3,\\n \\\"m_Value\\\": 0.0,\\n \\\"m_DefaultValue\\\": 0.0,\\n \\\"m_Labels\\\": [\\n \\\"X\\\"\\n ]\\n}\"\n },\n {\n \"typeInfo\": {\n \"fullName\": \"UnityEditor.ShaderGraph.Vector1MaterialSlot\"\n },\n \"JSONnodeData\": \"{\\n \\\"m_Id\\\": 2,\\n \\\"m_DisplayName\\\": \\\"Cosine Time\\\",\\n \\\"m_SlotType\\\": 1,\\n \\\"m_Priority\\\": 2147483647,\\n \\\"m_Hidden\\\": false,\\n \\\"m_ShaderOutputName\\\": \\\"Cosine Time\\\",\\n \\\"m_StageCapability\\\": 3,\\n \\\"m_Value\\\": 0.0,\\n \\\"m_DefaultValue\\\": 0.0,\\n \\\"m_Labels\\\": [\\n \\\"X\\\"\\n ]\\n}\"\n },\n {\n \"typeInfo\": {\n \"fullName\": \"UnityEditor.ShaderGraph.Vector1MaterialSlot\"\n },\n \"JSONnodeData\": \"{\\n \\\"m_Id\\\": 3,\\n \\\"m_DisplayName\\\": \\\"Delta Time\\\",\\n \\\"m_SlotType\\\": 1,\\n \\\"m_Priority\\\": 2147483647,\\n \\\"m_Hidden\\\": false,\\n \\\"m_ShaderOutputName\\\": \\\"Delta Time\\\",\\n \\\"m_StageCapability\\\": 3,\\n \\\"m_Value\\\": 0.0,\\n \\\"m_DefaultValue\\\": 0.0,\\n \\\"m_Labels\\\": [\\n \\\"X\\\"\\n ]\\n}\"\n },\n {\n \"typeInfo\": {\n \"fullName\": \"UnityEditor.ShaderGraph.Vector1MaterialSlot\"\n },\n \"JSONnodeData\": \"{\\n \\\"m_Id\\\": 4,\\n \\\"m_DisplayName\\\": \\\"Smooth Delta\\\",\\n \\\"m_SlotType\\\": 1,\\n \\\"m_Priority\\\": 2147483647,\\n \\\"m_Hidden\\\": false,\\n \\\"m_ShaderOutputName\\\": \\\"Smooth Delta\\\",\\n \\\"m_StageCapability\\\": 3,\\n \\\"m_Value\\\": 0.0,\\n \\\"m_DefaultValue\\\": 0.0,\\n \\\"m_Labels\\\": [\\n \\\"X\\\"\\n ]\\n}\"\n }\n ],\n \"m_PreviewExpanded\": true\n}" + }, + { + "typeInfo": { + "fullName": "UnityEditor.ShaderGraph.MultiplyNode" + }, + "JSONnodeData": "{\n \"m_GuidSerialized\": \"97c8a172-b5c2-4268-9501-1c853d005fd3\",\n \"m_GroupGuidSerialized\": \"00000000-0000-0000-0000-000000000000\",\n \"m_Name\": \"Multiply\",\n \"m_DrawState\": {\n \"m_Expanded\": true,\n \"m_Position\": {\n \"serializedVersion\": \"2\",\n \"x\": -647.736572265625,\n \"y\": -390.2837829589844,\n \"width\": 122.0,\n \"height\": 118.0\n }\n },\n \"m_SerializableSlots\": [\n {\n \"typeInfo\": {\n \"fullName\": \"UnityEditor.ShaderGraph.DynamicValueMaterialSlot\"\n },\n \"JSONnodeData\": \"{\\n \\\"m_Id\\\": 0,\\n \\\"m_DisplayName\\\": \\\"A\\\",\\n \\\"m_SlotType\\\": 0,\\n \\\"m_Priority\\\": 2147483647,\\n \\\"m_Hidden\\\": false,\\n \\\"m_ShaderOutputName\\\": \\\"A\\\",\\n \\\"m_StageCapability\\\": 3,\\n \\\"m_Value\\\": {\\n \\\"e00\\\": 0.0,\\n \\\"e01\\\": 0.0,\\n \\\"e02\\\": 0.0,\\n \\\"e03\\\": 0.0,\\n \\\"e10\\\": 0.0,\\n \\\"e11\\\": 0.0,\\n \\\"e12\\\": 0.0,\\n \\\"e13\\\": 0.0,\\n \\\"e20\\\": 0.0,\\n \\\"e21\\\": 0.0,\\n \\\"e22\\\": 0.0,\\n \\\"e23\\\": 0.0,\\n \\\"e30\\\": 0.0,\\n \\\"e31\\\": 0.0,\\n \\\"e32\\\": 0.0,\\n \\\"e33\\\": 0.0\\n },\\n \\\"m_DefaultValue\\\": {\\n \\\"e00\\\": 1.0,\\n \\\"e01\\\": 0.0,\\n \\\"e02\\\": 0.0,\\n \\\"e03\\\": 0.0,\\n \\\"e10\\\": 0.0,\\n \\\"e11\\\": 1.0,\\n \\\"e12\\\": 0.0,\\n \\\"e13\\\": 0.0,\\n \\\"e20\\\": 0.0,\\n \\\"e21\\\": 0.0,\\n \\\"e22\\\": 1.0,\\n \\\"e23\\\": 0.0,\\n \\\"e30\\\": 0.0,\\n \\\"e31\\\": 0.0,\\n \\\"e32\\\": 0.0,\\n \\\"e33\\\": 1.0\\n }\\n}\"\n },\n {\n \"typeInfo\": {\n \"fullName\": \"UnityEditor.ShaderGraph.DynamicValueMaterialSlot\"\n },\n \"JSONnodeData\": \"{\\n \\\"m_Id\\\": 1,\\n \\\"m_DisplayName\\\": \\\"B\\\",\\n \\\"m_SlotType\\\": 0,\\n \\\"m_Priority\\\": 2147483647,\\n \\\"m_Hidden\\\": false,\\n \\\"m_ShaderOutputName\\\": \\\"B\\\",\\n \\\"m_StageCapability\\\": 3,\\n \\\"m_Value\\\": {\\n \\\"e00\\\": 360.0,\\n \\\"e01\\\": 2.0,\\n \\\"e02\\\": 2.0,\\n \\\"e03\\\": 2.0,\\n \\\"e10\\\": 2.0,\\n \\\"e11\\\": 2.0,\\n \\\"e12\\\": 2.0,\\n \\\"e13\\\": 2.0,\\n \\\"e20\\\": 2.0,\\n \\\"e21\\\": 2.0,\\n \\\"e22\\\": 2.0,\\n \\\"e23\\\": 2.0,\\n \\\"e30\\\": 2.0,\\n \\\"e31\\\": 2.0,\\n \\\"e32\\\": 2.0,\\n \\\"e33\\\": 2.0\\n },\\n \\\"m_DefaultValue\\\": {\\n \\\"e00\\\": 1.0,\\n \\\"e01\\\": 0.0,\\n \\\"e02\\\": 0.0,\\n \\\"e03\\\": 0.0,\\n \\\"e10\\\": 0.0,\\n \\\"e11\\\": 1.0,\\n \\\"e12\\\": 0.0,\\n \\\"e13\\\": 0.0,\\n \\\"e20\\\": 0.0,\\n \\\"e21\\\": 0.0,\\n \\\"e22\\\": 1.0,\\n \\\"e23\\\": 0.0,\\n \\\"e30\\\": 0.0,\\n \\\"e31\\\": 0.0,\\n \\\"e32\\\": 0.0,\\n \\\"e33\\\": 1.0\\n }\\n}\"\n },\n {\n \"typeInfo\": {\n \"fullName\": \"UnityEditor.ShaderGraph.DynamicValueMaterialSlot\"\n },\n \"JSONnodeData\": \"{\\n \\\"m_Id\\\": 2,\\n \\\"m_DisplayName\\\": \\\"Out\\\",\\n \\\"m_SlotType\\\": 1,\\n \\\"m_Priority\\\": 2147483647,\\n \\\"m_Hidden\\\": false,\\n \\\"m_ShaderOutputName\\\": \\\"Out\\\",\\n \\\"m_StageCapability\\\": 3,\\n \\\"m_Value\\\": {\\n \\\"e00\\\": 0.0,\\n \\\"e01\\\": 0.0,\\n \\\"e02\\\": 0.0,\\n \\\"e03\\\": 0.0,\\n \\\"e10\\\": 0.0,\\n \\\"e11\\\": 0.0,\\n \\\"e12\\\": 0.0,\\n \\\"e13\\\": 0.0,\\n \\\"e20\\\": 0.0,\\n \\\"e21\\\": 0.0,\\n \\\"e22\\\": 0.0,\\n \\\"e23\\\": 0.0,\\n \\\"e30\\\": 0.0,\\n \\\"e31\\\": 0.0,\\n \\\"e32\\\": 0.0,\\n \\\"e33\\\": 0.0\\n },\\n \\\"m_DefaultValue\\\": {\\n \\\"e00\\\": 1.0,\\n \\\"e01\\\": 0.0,\\n \\\"e02\\\": 0.0,\\n \\\"e03\\\": 0.0,\\n \\\"e10\\\": 0.0,\\n \\\"e11\\\": 1.0,\\n \\\"e12\\\": 0.0,\\n \\\"e13\\\": 0.0,\\n \\\"e20\\\": 0.0,\\n \\\"e21\\\": 0.0,\\n \\\"e22\\\": 1.0,\\n \\\"e23\\\": 0.0,\\n \\\"e30\\\": 0.0,\\n \\\"e31\\\": 0.0,\\n \\\"e32\\\": 0.0,\\n \\\"e33\\\": 1.0\\n }\\n}\"\n }\n ],\n \"m_PreviewExpanded\": false\n}" + }, + { + "typeInfo": { + "fullName": "UnityEditor.ShaderGraph.RotateNode" + }, + "JSONnodeData": "{\n \"m_GuidSerialized\": \"309763c7-caeb-4c26-b438-6050bd74d6ad\",\n \"m_GroupGuidSerialized\": \"00000000-0000-0000-0000-000000000000\",\n \"m_Name\": \"Rotate\",\n \"m_DrawState\": {\n \"m_Expanded\": true,\n \"m_Position\": {\n \"serializedVersion\": \"2\",\n \"x\": -470.2304992675781,\n \"y\": -438.2924499511719,\n \"width\": 208.0,\n \"height\": 359.0\n }\n },\n \"m_SerializableSlots\": [\n {\n \"typeInfo\": {\n \"fullName\": \"UnityEditor.ShaderGraph.UVMaterialSlot\"\n },\n \"JSONnodeData\": \"{\\n \\\"m_Id\\\": 0,\\n \\\"m_DisplayName\\\": \\\"UV\\\",\\n \\\"m_SlotType\\\": 0,\\n \\\"m_Priority\\\": 2147483647,\\n \\\"m_Hidden\\\": false,\\n \\\"m_ShaderOutputName\\\": \\\"UV\\\",\\n \\\"m_StageCapability\\\": 3,\\n \\\"m_Value\\\": {\\n \\\"x\\\": 0.0,\\n \\\"y\\\": 0.0\\n },\\n \\\"m_DefaultValue\\\": {\\n \\\"x\\\": 0.0,\\n \\\"y\\\": 0.0\\n },\\n \\\"m_Labels\\\": [\\n \\\"X\\\",\\n \\\"Y\\\"\\n ],\\n \\\"m_Channel\\\": 0\\n}\"\n },\n {\n \"typeInfo\": {\n \"fullName\": \"UnityEditor.ShaderGraph.Vector2MaterialSlot\"\n },\n \"JSONnodeData\": \"{\\n \\\"m_Id\\\": 1,\\n \\\"m_DisplayName\\\": \\\"Center\\\",\\n \\\"m_SlotType\\\": 0,\\n \\\"m_Priority\\\": 2147483647,\\n \\\"m_Hidden\\\": false,\\n \\\"m_ShaderOutputName\\\": \\\"Center\\\",\\n \\\"m_StageCapability\\\": 3,\\n \\\"m_Value\\\": {\\n \\\"x\\\": 0.20000000298023225,\\n \\\"y\\\": 0.30000001192092898\\n },\\n \\\"m_DefaultValue\\\": {\\n \\\"x\\\": 0.0,\\n \\\"y\\\": 0.0\\n },\\n \\\"m_Labels\\\": [\\n \\\"X\\\",\\n \\\"Y\\\"\\n ]\\n}\"\n },\n {\n \"typeInfo\": {\n \"fullName\": \"UnityEditor.ShaderGraph.Vector1MaterialSlot\"\n },\n \"JSONnodeData\": \"{\\n \\\"m_Id\\\": 2,\\n \\\"m_DisplayName\\\": \\\"Rotation\\\",\\n \\\"m_SlotType\\\": 0,\\n \\\"m_Priority\\\": 2147483647,\\n \\\"m_Hidden\\\": false,\\n \\\"m_ShaderOutputName\\\": \\\"Rotation\\\",\\n \\\"m_StageCapability\\\": 3,\\n \\\"m_Value\\\": 6.0,\\n \\\"m_DefaultValue\\\": 0.0,\\n \\\"m_Labels\\\": [\\n \\\"X\\\"\\n ]\\n}\"\n },\n {\n \"typeInfo\": {\n \"fullName\": \"UnityEditor.ShaderGraph.Vector2MaterialSlot\"\n },\n \"JSONnodeData\": \"{\\n \\\"m_Id\\\": 3,\\n \\\"m_DisplayName\\\": \\\"Out\\\",\\n \\\"m_SlotType\\\": 1,\\n \\\"m_Priority\\\": 2147483647,\\n \\\"m_Hidden\\\": false,\\n \\\"m_ShaderOutputName\\\": \\\"Out\\\",\\n \\\"m_StageCapability\\\": 3,\\n \\\"m_Value\\\": {\\n \\\"x\\\": 0.0,\\n \\\"y\\\": 0.0\\n },\\n \\\"m_DefaultValue\\\": {\\n \\\"x\\\": 0.0,\\n \\\"y\\\": 0.0\\n },\\n \\\"m_Labels\\\": [\\n \\\"X\\\",\\n \\\"Y\\\"\\n ]\\n}\"\n }\n ],\n \"m_PreviewExpanded\": true,\n \"m_Unit\": 1\n}" + }, + { + "typeInfo": { + "fullName": "UnityEditor.ShaderGraph.PropertyNode" + }, + "JSONnodeData": "{\n \"m_GuidSerialized\": \"367af967-91be-4d7f-aaec-feaffa487fc6\",\n \"m_GroupGuidSerialized\": \"00000000-0000-0000-0000-000000000000\",\n \"m_Name\": \"Property\",\n \"m_DrawState\": {\n \"m_Expanded\": true,\n \"m_Position\": {\n \"serializedVersion\": \"2\",\n \"x\": 251.9461212158203,\n \"y\": -542.6585083007813,\n \"width\": 120.0,\n \"height\": 77.0\n }\n },\n \"m_SerializableSlots\": [\n {\n \"typeInfo\": {\n \"fullName\": \"UnityEditor.ShaderGraph.Vector4MaterialSlot\"\n },\n \"JSONnodeData\": \"{\\n \\\"m_Id\\\": 0,\\n \\\"m_DisplayName\\\": \\\"PaintColor_02\\\",\\n \\\"m_SlotType\\\": 1,\\n \\\"m_Priority\\\": 2147483647,\\n \\\"m_Hidden\\\": false,\\n \\\"m_ShaderOutputName\\\": \\\"Out\\\",\\n \\\"m_StageCapability\\\": 3,\\n \\\"m_Value\\\": {\\n \\\"x\\\": 0.0,\\n \\\"y\\\": 0.0,\\n \\\"z\\\": 0.0,\\n \\\"w\\\": 0.0\\n },\\n \\\"m_DefaultValue\\\": {\\n \\\"x\\\": 0.0,\\n \\\"y\\\": 0.0,\\n \\\"z\\\": 0.0,\\n \\\"w\\\": 0.0\\n }\\n}\"\n }\n ],\n \"m_PreviewExpanded\": true,\n \"m_PropertyGuidSerialized\": \"b7a49b06-9b4c-4b59-ba25-49cc6e985011\"\n}" + }, + { + "typeInfo": { + "fullName": "UnityEditor.ShaderGraph.LerpNode" + }, + "JSONnodeData": "{\n \"m_GuidSerialized\": \"5cc2df0e-d3f8-4dc8-8d94-871bd6e3b627\",\n \"m_GroupGuidSerialized\": \"00000000-0000-0000-0000-000000000000\",\n \"m_Name\": \"Lerp\",\n \"m_DrawState\": {\n \"m_Expanded\": true,\n \"m_Position\": {\n \"serializedVersion\": \"2\",\n \"x\": 470.3390808105469,\n \"y\": -514.1268920898438,\n \"width\": 208.0,\n \"height\": 326.0\n }\n },\n \"m_SerializableSlots\": [\n {\n \"typeInfo\": {\n \"fullName\": \"UnityEditor.ShaderGraph.DynamicVectorMaterialSlot\"\n },\n \"JSONnodeData\": \"{\\n \\\"m_Id\\\": 0,\\n \\\"m_DisplayName\\\": \\\"A\\\",\\n \\\"m_SlotType\\\": 0,\\n \\\"m_Priority\\\": 2147483647,\\n \\\"m_Hidden\\\": false,\\n \\\"m_ShaderOutputName\\\": \\\"A\\\",\\n \\\"m_StageCapability\\\": 3,\\n \\\"m_Value\\\": {\\n \\\"x\\\": 0.0,\\n \\\"y\\\": 0.0,\\n \\\"z\\\": 0.0,\\n \\\"w\\\": 0.0\\n },\\n \\\"m_DefaultValue\\\": {\\n \\\"x\\\": 0.0,\\n \\\"y\\\": 0.0,\\n \\\"z\\\": 0.0,\\n \\\"w\\\": 0.0\\n }\\n}\"\n },\n {\n \"typeInfo\": {\n \"fullName\": \"UnityEditor.ShaderGraph.DynamicVectorMaterialSlot\"\n },\n \"JSONnodeData\": \"{\\n \\\"m_Id\\\": 1,\\n \\\"m_DisplayName\\\": \\\"B\\\",\\n \\\"m_SlotType\\\": 0,\\n \\\"m_Priority\\\": 2147483647,\\n \\\"m_Hidden\\\": false,\\n \\\"m_ShaderOutputName\\\": \\\"B\\\",\\n \\\"m_StageCapability\\\": 3,\\n \\\"m_Value\\\": {\\n \\\"x\\\": 1.0,\\n \\\"y\\\": 1.0,\\n \\\"z\\\": 1.0,\\n \\\"w\\\": 1.0\\n },\\n \\\"m_DefaultValue\\\": {\\n \\\"x\\\": 0.0,\\n \\\"y\\\": 0.0,\\n \\\"z\\\": 0.0,\\n \\\"w\\\": 0.0\\n }\\n}\"\n },\n {\n \"typeInfo\": {\n \"fullName\": \"UnityEditor.ShaderGraph.DynamicVectorMaterialSlot\"\n },\n \"JSONnodeData\": \"{\\n \\\"m_Id\\\": 2,\\n \\\"m_DisplayName\\\": \\\"T\\\",\\n \\\"m_SlotType\\\": 0,\\n \\\"m_Priority\\\": 2147483647,\\n \\\"m_Hidden\\\": false,\\n \\\"m_ShaderOutputName\\\": \\\"T\\\",\\n \\\"m_StageCapability\\\": 3,\\n \\\"m_Value\\\": {\\n \\\"x\\\": 0.0,\\n \\\"y\\\": 0.0,\\n \\\"z\\\": 0.0,\\n \\\"w\\\": 0.0\\n },\\n \\\"m_DefaultValue\\\": {\\n \\\"x\\\": 0.0,\\n \\\"y\\\": 0.0,\\n \\\"z\\\": 0.0,\\n \\\"w\\\": 0.0\\n }\\n}\"\n },\n {\n \"typeInfo\": {\n \"fullName\": \"UnityEditor.ShaderGraph.DynamicVectorMaterialSlot\"\n },\n \"JSONnodeData\": \"{\\n \\\"m_Id\\\": 3,\\n \\\"m_DisplayName\\\": \\\"Out\\\",\\n \\\"m_SlotType\\\": 1,\\n \\\"m_Priority\\\": 2147483647,\\n \\\"m_Hidden\\\": false,\\n \\\"m_ShaderOutputName\\\": \\\"Out\\\",\\n \\\"m_StageCapability\\\": 3,\\n \\\"m_Value\\\": {\\n \\\"x\\\": 0.0,\\n \\\"y\\\": 0.0,\\n \\\"z\\\": 0.0,\\n \\\"w\\\": 0.0\\n },\\n \\\"m_DefaultValue\\\": {\\n \\\"x\\\": 0.0,\\n \\\"y\\\": 0.0,\\n \\\"z\\\": 0.0,\\n \\\"w\\\": 0.0\\n }\\n}\"\n }\n ],\n \"m_PreviewExpanded\": true\n}" + }, + { + "typeInfo": { + "fullName": "UnityEditor.ShaderGraph.LerpNode" + }, + "JSONnodeData": "{\n \"m_GuidSerialized\": \"d2c5549f-4e08-4c30-b300-35af7af06f2e\",\n \"m_GroupGuidSerialized\": \"00000000-0000-0000-0000-000000000000\",\n \"m_Name\": \"Lerp\",\n \"m_DrawState\": {\n \"m_Expanded\": true,\n \"m_Position\": {\n \"serializedVersion\": \"2\",\n \"x\": 1037.9202880859375,\n \"y\": -153.78536987304688,\n \"width\": 208.0,\n \"height\": 326.0\n }\n },\n \"m_SerializableSlots\": [\n {\n \"typeInfo\": {\n \"fullName\": \"UnityEditor.ShaderGraph.DynamicVectorMaterialSlot\"\n },\n \"JSONnodeData\": \"{\\n \\\"m_Id\\\": 0,\\n \\\"m_DisplayName\\\": \\\"A\\\",\\n \\\"m_SlotType\\\": 0,\\n \\\"m_Priority\\\": 2147483647,\\n \\\"m_Hidden\\\": false,\\n \\\"m_ShaderOutputName\\\": \\\"A\\\",\\n \\\"m_StageCapability\\\": 3,\\n \\\"m_Value\\\": {\\n \\\"x\\\": 0.0,\\n \\\"y\\\": 0.0,\\n \\\"z\\\": 0.0,\\n \\\"w\\\": 0.0\\n },\\n \\\"m_DefaultValue\\\": {\\n \\\"x\\\": 0.0,\\n \\\"y\\\": 0.0,\\n \\\"z\\\": 0.0,\\n \\\"w\\\": 0.0\\n }\\n}\"\n },\n {\n \"typeInfo\": {\n \"fullName\": \"UnityEditor.ShaderGraph.DynamicVectorMaterialSlot\"\n },\n \"JSONnodeData\": \"{\\n \\\"m_Id\\\": 1,\\n \\\"m_DisplayName\\\": \\\"B\\\",\\n \\\"m_SlotType\\\": 0,\\n \\\"m_Priority\\\": 2147483647,\\n \\\"m_Hidden\\\": false,\\n \\\"m_ShaderOutputName\\\": \\\"B\\\",\\n \\\"m_StageCapability\\\": 3,\\n \\\"m_Value\\\": {\\n \\\"x\\\": 1.0,\\n \\\"y\\\": 1.0,\\n \\\"z\\\": 1.0,\\n \\\"w\\\": 1.0\\n },\\n \\\"m_DefaultValue\\\": {\\n \\\"x\\\": 0.0,\\n \\\"y\\\": 0.0,\\n \\\"z\\\": 0.0,\\n \\\"w\\\": 0.0\\n }\\n}\"\n },\n {\n \"typeInfo\": {\n \"fullName\": \"UnityEditor.ShaderGraph.DynamicVectorMaterialSlot\"\n },\n \"JSONnodeData\": \"{\\n \\\"m_Id\\\": 2,\\n \\\"m_DisplayName\\\": \\\"T\\\",\\n \\\"m_SlotType\\\": 0,\\n \\\"m_Priority\\\": 2147483647,\\n \\\"m_Hidden\\\": false,\\n \\\"m_ShaderOutputName\\\": \\\"T\\\",\\n \\\"m_StageCapability\\\": 3,\\n \\\"m_Value\\\": {\\n \\\"x\\\": 0.0,\\n \\\"y\\\": 0.0,\\n \\\"z\\\": 0.0,\\n \\\"w\\\": 0.0\\n },\\n \\\"m_DefaultValue\\\": {\\n \\\"x\\\": 0.0,\\n \\\"y\\\": 0.0,\\n \\\"z\\\": 0.0,\\n \\\"w\\\": 0.0\\n }\\n}\"\n },\n {\n \"typeInfo\": {\n \"fullName\": \"UnityEditor.ShaderGraph.DynamicVectorMaterialSlot\"\n },\n \"JSONnodeData\": \"{\\n \\\"m_Id\\\": 3,\\n \\\"m_DisplayName\\\": \\\"Out\\\",\\n \\\"m_SlotType\\\": 1,\\n \\\"m_Priority\\\": 2147483647,\\n \\\"m_Hidden\\\": false,\\n \\\"m_ShaderOutputName\\\": \\\"Out\\\",\\n \\\"m_StageCapability\\\": 3,\\n \\\"m_Value\\\": {\\n \\\"x\\\": 0.0,\\n \\\"y\\\": 0.0,\\n \\\"z\\\": 0.0,\\n \\\"w\\\": 0.0\\n },\\n \\\"m_DefaultValue\\\": {\\n \\\"x\\\": 0.0,\\n \\\"y\\\": 0.0,\\n \\\"z\\\": 0.0,\\n \\\"w\\\": 0.0\\n }\\n}\"\n }\n ],\n \"m_PreviewExpanded\": true\n}" + }, + { + "typeInfo": { + "fullName": "UnityEditor.ShaderGraph.SamplerStateNode" + }, + "JSONnodeData": "{\n \"m_GuidSerialized\": \"dbdc5d2a-0c8d-472d-a0d1-583b99863487\",\n \"m_GroupGuidSerialized\": \"00000000-0000-0000-0000-000000000000\",\n \"m_Name\": \"Sampler State\",\n \"m_DrawState\": {\n \"m_Expanded\": true,\n \"m_Position\": {\n \"serializedVersion\": \"2\",\n \"x\": 258.1563415527344,\n \"y\": -869.3206176757813,\n \"width\": 117.0,\n \"height\": 134.0\n }\n },\n \"m_SerializableSlots\": [\n {\n \"typeInfo\": {\n \"fullName\": \"UnityEditor.ShaderGraph.SamplerStateMaterialSlot\"\n },\n \"JSONnodeData\": \"{\\n \\\"m_Id\\\": 0,\\n \\\"m_DisplayName\\\": \\\"Out\\\",\\n \\\"m_SlotType\\\": 1,\\n \\\"m_Priority\\\": 2147483647,\\n \\\"m_Hidden\\\": false,\\n \\\"m_ShaderOutputName\\\": \\\"Out\\\",\\n \\\"m_StageCapability\\\": 3\\n}\"\n }\n ],\n \"m_PreviewExpanded\": true,\n \"m_filter\": 0,\n \"m_wrap\": 1\n}" + }, + { + "typeInfo": { + "fullName": "UnityEditor.ShaderGraph.TilingAndOffsetNode" + }, + "JSONnodeData": "{\n \"m_GuidSerialized\": \"44bdd4e3-73e0-46fb-bb95-05054ed43244\",\n \"m_GroupGuidSerialized\": \"00000000-0000-0000-0000-000000000000\",\n \"m_Name\": \"Tiling And Offset\",\n \"m_DrawState\": {\n \"m_Expanded\": true,\n \"m_Position\": {\n \"serializedVersion\": \"2\",\n \"x\": 10.80186653137207,\n \"y\": -941.9598999023438,\n \"width\": 208.0,\n \"height\": 326.0\n }\n },\n \"m_SerializableSlots\": [\n {\n \"typeInfo\": {\n \"fullName\": \"UnityEditor.ShaderGraph.UVMaterialSlot\"\n },\n \"JSONnodeData\": \"{\\n \\\"m_Id\\\": 0,\\n \\\"m_DisplayName\\\": \\\"UV\\\",\\n \\\"m_SlotType\\\": 0,\\n \\\"m_Priority\\\": 2147483647,\\n \\\"m_Hidden\\\": false,\\n \\\"m_ShaderOutputName\\\": \\\"UV\\\",\\n \\\"m_StageCapability\\\": 3,\\n \\\"m_Value\\\": {\\n \\\"x\\\": 0.0,\\n \\\"y\\\": 0.0\\n },\\n \\\"m_DefaultValue\\\": {\\n \\\"x\\\": 0.0,\\n \\\"y\\\": 0.0\\n },\\n \\\"m_Labels\\\": [\\n \\\"X\\\",\\n \\\"Y\\\"\\n ],\\n \\\"m_Channel\\\": 0\\n}\"\n },\n {\n \"typeInfo\": {\n \"fullName\": \"UnityEditor.ShaderGraph.Vector2MaterialSlot\"\n },\n \"JSONnodeData\": \"{\\n \\\"m_Id\\\": 1,\\n \\\"m_DisplayName\\\": \\\"Tiling\\\",\\n \\\"m_SlotType\\\": 0,\\n \\\"m_Priority\\\": 2147483647,\\n \\\"m_Hidden\\\": false,\\n \\\"m_ShaderOutputName\\\": \\\"Tiling\\\",\\n \\\"m_StageCapability\\\": 3,\\n \\\"m_Value\\\": {\\n \\\"x\\\": 8.0,\\n \\\"y\\\": 32.0\\n },\\n \\\"m_DefaultValue\\\": {\\n \\\"x\\\": 0.0,\\n \\\"y\\\": 0.0\\n },\\n \\\"m_Labels\\\": [\\n \\\"X\\\",\\n \\\"Y\\\"\\n ]\\n}\"\n },\n {\n \"typeInfo\": {\n \"fullName\": \"UnityEditor.ShaderGraph.Vector2MaterialSlot\"\n },\n \"JSONnodeData\": \"{\\n \\\"m_Id\\\": 2,\\n \\\"m_DisplayName\\\": \\\"Offset\\\",\\n \\\"m_SlotType\\\": 0,\\n \\\"m_Priority\\\": 2147483647,\\n \\\"m_Hidden\\\": false,\\n \\\"m_ShaderOutputName\\\": \\\"Offset\\\",\\n \\\"m_StageCapability\\\": 3,\\n \\\"m_Value\\\": {\\n \\\"x\\\": -3.109999895095825,\\n \\\"y\\\": -6.860000133514404\\n },\\n \\\"m_DefaultValue\\\": {\\n \\\"x\\\": 0.0,\\n \\\"y\\\": 0.0\\n },\\n \\\"m_Labels\\\": [\\n \\\"X\\\",\\n \\\"Y\\\"\\n ]\\n}\"\n },\n {\n \"typeInfo\": {\n \"fullName\": \"UnityEditor.ShaderGraph.Vector2MaterialSlot\"\n },\n \"JSONnodeData\": \"{\\n \\\"m_Id\\\": 3,\\n \\\"m_DisplayName\\\": \\\"Out\\\",\\n \\\"m_SlotType\\\": 1,\\n \\\"m_Priority\\\": 2147483647,\\n \\\"m_Hidden\\\": false,\\n \\\"m_ShaderOutputName\\\": \\\"Out\\\",\\n \\\"m_StageCapability\\\": 3,\\n \\\"m_Value\\\": {\\n \\\"x\\\": 0.0,\\n \\\"y\\\": 0.0\\n },\\n \\\"m_DefaultValue\\\": {\\n \\\"x\\\": 0.0,\\n \\\"y\\\": 0.0\\n },\\n \\\"m_Labels\\\": [\\n \\\"X\\\",\\n \\\"Y\\\"\\n ]\\n}\"\n }\n ],\n \"m_PreviewExpanded\": true\n}" + }, + { + "typeInfo": { + "fullName": "UnityEditor.ShaderGraph.MultiplyNode" + }, + "JSONnodeData": "{\n \"m_GuidSerialized\": \"52c59480-55cd-4ef1-90ae-7317f15dec81\",\n \"m_GroupGuidSerialized\": \"00000000-0000-0000-0000-000000000000\",\n \"m_Name\": \"Multiply\",\n \"m_DrawState\": {\n \"m_Expanded\": true,\n \"m_Position\": {\n \"serializedVersion\": \"2\",\n \"x\": 828.8880004882813,\n \"y\": -846.0960083007813,\n \"width\": 208.0,\n \"height\": 302.0\n }\n },\n \"m_SerializableSlots\": [\n {\n \"typeInfo\": {\n \"fullName\": \"UnityEditor.ShaderGraph.DynamicValueMaterialSlot\"\n },\n \"JSONnodeData\": \"{\\n \\\"m_Id\\\": 0,\\n \\\"m_DisplayName\\\": \\\"A\\\",\\n \\\"m_SlotType\\\": 0,\\n \\\"m_Priority\\\": 2147483647,\\n \\\"m_Hidden\\\": false,\\n \\\"m_ShaderOutputName\\\": \\\"A\\\",\\n \\\"m_StageCapability\\\": 3,\\n \\\"m_Value\\\": {\\n \\\"e00\\\": 0.0,\\n \\\"e01\\\": 0.0,\\n \\\"e02\\\": 0.0,\\n \\\"e03\\\": 0.0,\\n \\\"e10\\\": 0.0,\\n \\\"e11\\\": 0.0,\\n \\\"e12\\\": 0.0,\\n \\\"e13\\\": 0.0,\\n \\\"e20\\\": 0.0,\\n \\\"e21\\\": 0.0,\\n \\\"e22\\\": 0.0,\\n \\\"e23\\\": 0.0,\\n \\\"e30\\\": 0.0,\\n \\\"e31\\\": 0.0,\\n \\\"e32\\\": 0.0,\\n \\\"e33\\\": 0.0\\n },\\n \\\"m_DefaultValue\\\": {\\n \\\"e00\\\": 1.0,\\n \\\"e01\\\": 0.0,\\n \\\"e02\\\": 0.0,\\n \\\"e03\\\": 0.0,\\n \\\"e10\\\": 0.0,\\n \\\"e11\\\": 1.0,\\n \\\"e12\\\": 0.0,\\n \\\"e13\\\": 0.0,\\n \\\"e20\\\": 0.0,\\n \\\"e21\\\": 0.0,\\n \\\"e22\\\": 1.0,\\n \\\"e23\\\": 0.0,\\n \\\"e30\\\": 0.0,\\n \\\"e31\\\": 0.0,\\n \\\"e32\\\": 0.0,\\n \\\"e33\\\": 1.0\\n }\\n}\"\n },\n {\n \"typeInfo\": {\n \"fullName\": \"UnityEditor.ShaderGraph.DynamicValueMaterialSlot\"\n },\n \"JSONnodeData\": \"{\\n \\\"m_Id\\\": 1,\\n \\\"m_DisplayName\\\": \\\"B\\\",\\n \\\"m_SlotType\\\": 0,\\n \\\"m_Priority\\\": 2147483647,\\n \\\"m_Hidden\\\": false,\\n \\\"m_ShaderOutputName\\\": \\\"B\\\",\\n \\\"m_StageCapability\\\": 3,\\n \\\"m_Value\\\": {\\n \\\"e00\\\": 2.0,\\n \\\"e01\\\": 2.0,\\n \\\"e02\\\": 2.0,\\n \\\"e03\\\": 2.0,\\n \\\"e10\\\": 2.0,\\n \\\"e11\\\": 2.0,\\n \\\"e12\\\": 2.0,\\n \\\"e13\\\": 2.0,\\n \\\"e20\\\": 2.0,\\n \\\"e21\\\": 2.0,\\n \\\"e22\\\": 2.0,\\n \\\"e23\\\": 2.0,\\n \\\"e30\\\": 2.0,\\n \\\"e31\\\": 2.0,\\n \\\"e32\\\": 2.0,\\n \\\"e33\\\": 2.0\\n },\\n \\\"m_DefaultValue\\\": {\\n \\\"e00\\\": 1.0,\\n \\\"e01\\\": 0.0,\\n \\\"e02\\\": 0.0,\\n \\\"e03\\\": 0.0,\\n \\\"e10\\\": 0.0,\\n \\\"e11\\\": 1.0,\\n \\\"e12\\\": 0.0,\\n \\\"e13\\\": 0.0,\\n \\\"e20\\\": 0.0,\\n \\\"e21\\\": 0.0,\\n \\\"e22\\\": 1.0,\\n \\\"e23\\\": 0.0,\\n \\\"e30\\\": 0.0,\\n \\\"e31\\\": 0.0,\\n \\\"e32\\\": 0.0,\\n \\\"e33\\\": 1.0\\n }\\n}\"\n },\n {\n \"typeInfo\": {\n \"fullName\": \"UnityEditor.ShaderGraph.DynamicValueMaterialSlot\"\n },\n \"JSONnodeData\": \"{\\n \\\"m_Id\\\": 2,\\n \\\"m_DisplayName\\\": \\\"Out\\\",\\n \\\"m_SlotType\\\": 1,\\n \\\"m_Priority\\\": 2147483647,\\n \\\"m_Hidden\\\": false,\\n \\\"m_ShaderOutputName\\\": \\\"Out\\\",\\n \\\"m_StageCapability\\\": 3,\\n \\\"m_Value\\\": {\\n \\\"e00\\\": 0.0,\\n \\\"e01\\\": 0.0,\\n \\\"e02\\\": 0.0,\\n \\\"e03\\\": 0.0,\\n \\\"e10\\\": 0.0,\\n \\\"e11\\\": 0.0,\\n \\\"e12\\\": 0.0,\\n \\\"e13\\\": 0.0,\\n \\\"e20\\\": 0.0,\\n \\\"e21\\\": 0.0,\\n \\\"e22\\\": 0.0,\\n \\\"e23\\\": 0.0,\\n \\\"e30\\\": 0.0,\\n \\\"e31\\\": 0.0,\\n \\\"e32\\\": 0.0,\\n \\\"e33\\\": 0.0\\n },\\n \\\"m_DefaultValue\\\": {\\n \\\"e00\\\": 1.0,\\n \\\"e01\\\": 0.0,\\n \\\"e02\\\": 0.0,\\n \\\"e03\\\": 0.0,\\n \\\"e10\\\": 0.0,\\n \\\"e11\\\": 1.0,\\n \\\"e12\\\": 0.0,\\n \\\"e13\\\": 0.0,\\n \\\"e20\\\": 0.0,\\n \\\"e21\\\": 0.0,\\n \\\"e22\\\": 1.0,\\n \\\"e23\\\": 0.0,\\n \\\"e30\\\": 0.0,\\n \\\"e31\\\": 0.0,\\n \\\"e32\\\": 0.0,\\n \\\"e33\\\": 1.0\\n }\\n}\"\n }\n ],\n \"m_PreviewExpanded\": true\n}" + }, + { + "typeInfo": { + "fullName": "UnityEditor.ShaderGraph.OneMinusNode" + }, + "JSONnodeData": "{\n \"m_GuidSerialized\": \"4db1e547-cdce-4d9e-8b6b-844e6593fd67\",\n \"m_GroupGuidSerialized\": \"00000000-0000-0000-0000-000000000000\",\n \"m_Name\": \"One Minus\",\n \"m_DrawState\": {\n \"m_Expanded\": true,\n \"m_Position\": {\n \"serializedVersion\": \"2\",\n \"x\": 1241.6168212890625,\n \"y\": 762.75634765625,\n \"width\": 124.0,\n \"height\": 94.0\n }\n },\n \"m_SerializableSlots\": [\n {\n \"typeInfo\": {\n \"fullName\": \"UnityEditor.ShaderGraph.DynamicVectorMaterialSlot\"\n },\n \"JSONnodeData\": \"{\\n \\\"m_Id\\\": 0,\\n \\\"m_DisplayName\\\": \\\"In\\\",\\n \\\"m_SlotType\\\": 0,\\n \\\"m_Priority\\\": 2147483647,\\n \\\"m_Hidden\\\": false,\\n \\\"m_ShaderOutputName\\\": \\\"In\\\",\\n \\\"m_StageCapability\\\": 3,\\n \\\"m_Value\\\": {\\n \\\"x\\\": 1.0,\\n \\\"y\\\": 1.0,\\n \\\"z\\\": 1.0,\\n \\\"w\\\": 1.0\\n },\\n \\\"m_DefaultValue\\\": {\\n \\\"x\\\": 0.0,\\n \\\"y\\\": 0.0,\\n \\\"z\\\": 0.0,\\n \\\"w\\\": 0.0\\n }\\n}\"\n },\n {\n \"typeInfo\": {\n \"fullName\": \"UnityEditor.ShaderGraph.DynamicVectorMaterialSlot\"\n },\n \"JSONnodeData\": \"{\\n \\\"m_Id\\\": 1,\\n \\\"m_DisplayName\\\": \\\"Out\\\",\\n \\\"m_SlotType\\\": 1,\\n \\\"m_Priority\\\": 2147483647,\\n \\\"m_Hidden\\\": false,\\n \\\"m_ShaderOutputName\\\": \\\"Out\\\",\\n \\\"m_StageCapability\\\": 3,\\n \\\"m_Value\\\": {\\n \\\"x\\\": 0.0,\\n \\\"y\\\": 0.0,\\n \\\"z\\\": 0.0,\\n \\\"w\\\": 0.0\\n },\\n \\\"m_DefaultValue\\\": {\\n \\\"x\\\": 0.0,\\n \\\"y\\\": 0.0,\\n \\\"z\\\": 0.0,\\n \\\"w\\\": 0.0\\n }\\n}\"\n }\n ],\n \"m_PreviewExpanded\": false\n}" + }, + { + "typeInfo": { + "fullName": "UnityEditor.ShaderGraph.SampleTexture2DNode" + }, + "JSONnodeData": "{\n \"m_GuidSerialized\": \"59879faf-0816-46ec-849d-f6f526f4e1a3\",\n \"m_GroupGuidSerialized\": \"00000000-0000-0000-0000-000000000000\",\n \"m_Name\": \"Sample Texture 2D\",\n \"m_DrawState\": {\n \"m_Expanded\": true,\n \"m_Position\": {\n \"serializedVersion\": \"2\",\n \"x\": 753.4375,\n \"y\": 675.1155395507813,\n \"width\": 208.0,\n \"height\": 407.0\n }\n },\n \"m_SerializableSlots\": [\n {\n \"typeInfo\": {\n \"fullName\": \"UnityEditor.ShaderGraph.Vector4MaterialSlot\"\n },\n \"JSONnodeData\": \"{\\n \\\"m_Id\\\": 0,\\n \\\"m_DisplayName\\\": \\\"RGBA\\\",\\n \\\"m_SlotType\\\": 1,\\n \\\"m_Priority\\\": 2147483647,\\n \\\"m_Hidden\\\": false,\\n \\\"m_ShaderOutputName\\\": \\\"RGBA\\\",\\n \\\"m_StageCapability\\\": 2,\\n \\\"m_Value\\\": {\\n \\\"x\\\": 0.0,\\n \\\"y\\\": 0.0,\\n \\\"z\\\": 0.0,\\n \\\"w\\\": 0.0\\n },\\n \\\"m_DefaultValue\\\": {\\n \\\"x\\\": 0.0,\\n \\\"y\\\": 0.0,\\n \\\"z\\\": 0.0,\\n \\\"w\\\": 0.0\\n }\\n}\"\n },\n {\n \"typeInfo\": {\n \"fullName\": \"UnityEditor.ShaderGraph.Vector1MaterialSlot\"\n },\n \"JSONnodeData\": \"{\\n \\\"m_Id\\\": 4,\\n \\\"m_DisplayName\\\": \\\"R\\\",\\n \\\"m_SlotType\\\": 1,\\n \\\"m_Priority\\\": 2147483647,\\n \\\"m_Hidden\\\": false,\\n \\\"m_ShaderOutputName\\\": \\\"R\\\",\\n \\\"m_StageCapability\\\": 2,\\n \\\"m_Value\\\": 0.0,\\n \\\"m_DefaultValue\\\": 0.0,\\n \\\"m_Labels\\\": [\\n \\\"X\\\"\\n ]\\n}\"\n },\n {\n \"typeInfo\": {\n \"fullName\": \"UnityEditor.ShaderGraph.Vector1MaterialSlot\"\n },\n \"JSONnodeData\": \"{\\n \\\"m_Id\\\": 5,\\n \\\"m_DisplayName\\\": \\\"G\\\",\\n \\\"m_SlotType\\\": 1,\\n \\\"m_Priority\\\": 2147483647,\\n \\\"m_Hidden\\\": false,\\n \\\"m_ShaderOutputName\\\": \\\"G\\\",\\n \\\"m_StageCapability\\\": 2,\\n \\\"m_Value\\\": 0.0,\\n \\\"m_DefaultValue\\\": 0.0,\\n \\\"m_Labels\\\": [\\n \\\"X\\\"\\n ]\\n}\"\n },\n {\n \"typeInfo\": {\n \"fullName\": \"UnityEditor.ShaderGraph.Vector1MaterialSlot\"\n },\n \"JSONnodeData\": \"{\\n \\\"m_Id\\\": 6,\\n \\\"m_DisplayName\\\": \\\"B\\\",\\n \\\"m_SlotType\\\": 1,\\n \\\"m_Priority\\\": 2147483647,\\n \\\"m_Hidden\\\": false,\\n \\\"m_ShaderOutputName\\\": \\\"B\\\",\\n \\\"m_StageCapability\\\": 2,\\n \\\"m_Value\\\": 0.0,\\n \\\"m_DefaultValue\\\": 0.0,\\n \\\"m_Labels\\\": [\\n \\\"X\\\"\\n ]\\n}\"\n },\n {\n \"typeInfo\": {\n \"fullName\": \"UnityEditor.ShaderGraph.Vector1MaterialSlot\"\n },\n \"JSONnodeData\": \"{\\n \\\"m_Id\\\": 7,\\n \\\"m_DisplayName\\\": \\\"A\\\",\\n \\\"m_SlotType\\\": 1,\\n \\\"m_Priority\\\": 2147483647,\\n \\\"m_Hidden\\\": false,\\n \\\"m_ShaderOutputName\\\": \\\"A\\\",\\n \\\"m_StageCapability\\\": 2,\\n \\\"m_Value\\\": 0.0,\\n \\\"m_DefaultValue\\\": 0.0,\\n \\\"m_Labels\\\": [\\n \\\"X\\\"\\n ]\\n}\"\n },\n {\n \"typeInfo\": {\n \"fullName\": \"UnityEditor.ShaderGraph.Texture2DInputMaterialSlot\"\n },\n \"JSONnodeData\": \"{\\n \\\"m_Id\\\": 1,\\n \\\"m_DisplayName\\\": \\\"Texture\\\",\\n \\\"m_SlotType\\\": 0,\\n \\\"m_Priority\\\": 2147483647,\\n \\\"m_Hidden\\\": false,\\n \\\"m_ShaderOutputName\\\": \\\"Texture\\\",\\n \\\"m_StageCapability\\\": 3,\\n \\\"m_Texture\\\": {\\n \\\"m_SerializedTexture\\\": \\\"\\\",\\n \\\"m_Guid\\\": \\\"ca084ebab0cef7c4ba746cdb442f9c1e\\\"\\n },\\n \\\"m_DefaultType\\\": 0\\n}\"\n },\n {\n \"typeInfo\": {\n \"fullName\": \"UnityEditor.ShaderGraph.UVMaterialSlot\"\n },\n \"JSONnodeData\": \"{\\n \\\"m_Id\\\": 2,\\n \\\"m_DisplayName\\\": \\\"UV\\\",\\n \\\"m_SlotType\\\": 0,\\n \\\"m_Priority\\\": 2147483647,\\n \\\"m_Hidden\\\": false,\\n \\\"m_ShaderOutputName\\\": \\\"UV\\\",\\n \\\"m_StageCapability\\\": 3,\\n \\\"m_Value\\\": {\\n \\\"x\\\": 0.0,\\n \\\"y\\\": 0.0\\n },\\n \\\"m_DefaultValue\\\": {\\n \\\"x\\\": 0.0,\\n \\\"y\\\": 0.0\\n },\\n \\\"m_Labels\\\": [\\n \\\"X\\\",\\n \\\"Y\\\"\\n ],\\n \\\"m_Channel\\\": 0\\n}\"\n },\n {\n \"typeInfo\": {\n \"fullName\": \"UnityEditor.ShaderGraph.SamplerStateMaterialSlot\"\n },\n \"JSONnodeData\": \"{\\n \\\"m_Id\\\": 3,\\n \\\"m_DisplayName\\\": \\\"Sampler\\\",\\n \\\"m_SlotType\\\": 0,\\n \\\"m_Priority\\\": 2147483647,\\n \\\"m_Hidden\\\": false,\\n \\\"m_ShaderOutputName\\\": \\\"Sampler\\\",\\n \\\"m_StageCapability\\\": 3\\n}\"\n }\n ],\n \"m_PreviewExpanded\": true,\n \"m_TextureType\": 0,\n \"m_NormalMapSpace\": 0\n}" + }, + { + "typeInfo": { + "fullName": "UnityEditor.ShaderGraph.SampleTexture2DNode" + }, + "JSONnodeData": "{\n \"m_GuidSerialized\": \"2412bffb-43d9-49bd-9a75-e766514bb313\",\n \"m_GroupGuidSerialized\": \"00000000-0000-0000-0000-000000000000\",\n \"m_Name\": \"Sample Texture 2D\",\n \"m_DrawState\": {\n \"m_Expanded\": true,\n \"m_Position\": {\n \"serializedVersion\": \"2\",\n \"x\": 1038.0806884765625,\n \"y\": 238.3743896484375,\n \"width\": 208.0,\n \"height\": 407.0\n }\n },\n \"m_SerializableSlots\": [\n {\n \"typeInfo\": {\n \"fullName\": \"UnityEditor.ShaderGraph.Vector4MaterialSlot\"\n },\n \"JSONnodeData\": \"{\\n \\\"m_Id\\\": 0,\\n \\\"m_DisplayName\\\": \\\"RGBA\\\",\\n \\\"m_SlotType\\\": 1,\\n \\\"m_Priority\\\": 2147483647,\\n \\\"m_Hidden\\\": false,\\n \\\"m_ShaderOutputName\\\": \\\"RGBA\\\",\\n \\\"m_StageCapability\\\": 2,\\n \\\"m_Value\\\": {\\n \\\"x\\\": 0.0,\\n \\\"y\\\": 0.0,\\n \\\"z\\\": 0.0,\\n \\\"w\\\": 0.0\\n },\\n \\\"m_DefaultValue\\\": {\\n \\\"x\\\": 0.0,\\n \\\"y\\\": 0.0,\\n \\\"z\\\": 0.0,\\n \\\"w\\\": 0.0\\n }\\n}\"\n },\n {\n \"typeInfo\": {\n \"fullName\": \"UnityEditor.ShaderGraph.Vector1MaterialSlot\"\n },\n \"JSONnodeData\": \"{\\n \\\"m_Id\\\": 4,\\n \\\"m_DisplayName\\\": \\\"R\\\",\\n \\\"m_SlotType\\\": 1,\\n \\\"m_Priority\\\": 2147483647,\\n \\\"m_Hidden\\\": false,\\n \\\"m_ShaderOutputName\\\": \\\"R\\\",\\n \\\"m_StageCapability\\\": 2,\\n \\\"m_Value\\\": 0.0,\\n \\\"m_DefaultValue\\\": 0.0,\\n \\\"m_Labels\\\": [\\n \\\"X\\\"\\n ]\\n}\"\n },\n {\n \"typeInfo\": {\n \"fullName\": \"UnityEditor.ShaderGraph.Vector1MaterialSlot\"\n },\n \"JSONnodeData\": \"{\\n \\\"m_Id\\\": 5,\\n \\\"m_DisplayName\\\": \\\"G\\\",\\n \\\"m_SlotType\\\": 1,\\n \\\"m_Priority\\\": 2147483647,\\n \\\"m_Hidden\\\": false,\\n \\\"m_ShaderOutputName\\\": \\\"G\\\",\\n \\\"m_StageCapability\\\": 2,\\n \\\"m_Value\\\": 0.0,\\n \\\"m_DefaultValue\\\": 0.0,\\n \\\"m_Labels\\\": [\\n \\\"X\\\"\\n ]\\n}\"\n },\n {\n \"typeInfo\": {\n \"fullName\": \"UnityEditor.ShaderGraph.Vector1MaterialSlot\"\n },\n \"JSONnodeData\": \"{\\n \\\"m_Id\\\": 6,\\n \\\"m_DisplayName\\\": \\\"B\\\",\\n \\\"m_SlotType\\\": 1,\\n \\\"m_Priority\\\": 2147483647,\\n \\\"m_Hidden\\\": false,\\n \\\"m_ShaderOutputName\\\": \\\"B\\\",\\n \\\"m_StageCapability\\\": 2,\\n \\\"m_Value\\\": 0.0,\\n \\\"m_DefaultValue\\\": 0.0,\\n \\\"m_Labels\\\": [\\n \\\"X\\\"\\n ]\\n}\"\n },\n {\n \"typeInfo\": {\n \"fullName\": \"UnityEditor.ShaderGraph.Vector1MaterialSlot\"\n },\n \"JSONnodeData\": \"{\\n \\\"m_Id\\\": 7,\\n \\\"m_DisplayName\\\": \\\"A\\\",\\n \\\"m_SlotType\\\": 1,\\n \\\"m_Priority\\\": 2147483647,\\n \\\"m_Hidden\\\": false,\\n \\\"m_ShaderOutputName\\\": \\\"A\\\",\\n \\\"m_StageCapability\\\": 2,\\n \\\"m_Value\\\": 0.0,\\n \\\"m_DefaultValue\\\": 0.0,\\n \\\"m_Labels\\\": [\\n \\\"X\\\"\\n ]\\n}\"\n },\n {\n \"typeInfo\": {\n \"fullName\": \"UnityEditor.ShaderGraph.Texture2DInputMaterialSlot\"\n },\n \"JSONnodeData\": \"{\\n \\\"m_Id\\\": 1,\\n \\\"m_DisplayName\\\": \\\"Texture\\\",\\n \\\"m_SlotType\\\": 0,\\n \\\"m_Priority\\\": 2147483647,\\n \\\"m_Hidden\\\": false,\\n \\\"m_ShaderOutputName\\\": \\\"Texture\\\",\\n \\\"m_StageCapability\\\": 3,\\n \\\"m_Texture\\\": {\\n \\\"m_SerializedTexture\\\": \\\"\\\",\\n \\\"m_Guid\\\": \\\"ac80c335ebd6dde4fa54a82050064545\\\"\\n },\\n \\\"m_DefaultType\\\": 3\\n}\"\n },\n {\n \"typeInfo\": {\n \"fullName\": \"UnityEditor.ShaderGraph.UVMaterialSlot\"\n },\n \"JSONnodeData\": \"{\\n \\\"m_Id\\\": 2,\\n \\\"m_DisplayName\\\": \\\"UV\\\",\\n \\\"m_SlotType\\\": 0,\\n \\\"m_Priority\\\": 2147483647,\\n \\\"m_Hidden\\\": false,\\n \\\"m_ShaderOutputName\\\": \\\"UV\\\",\\n \\\"m_StageCapability\\\": 3,\\n \\\"m_Value\\\": {\\n \\\"x\\\": 0.0,\\n \\\"y\\\": 0.0\\n },\\n \\\"m_DefaultValue\\\": {\\n \\\"x\\\": 0.0,\\n \\\"y\\\": 0.0\\n },\\n \\\"m_Labels\\\": [\\n \\\"X\\\",\\n \\\"Y\\\"\\n ],\\n \\\"m_Channel\\\": 0\\n}\"\n },\n {\n \"typeInfo\": {\n \"fullName\": \"UnityEditor.ShaderGraph.SamplerStateMaterialSlot\"\n },\n \"JSONnodeData\": \"{\\n \\\"m_Id\\\": 3,\\n \\\"m_DisplayName\\\": \\\"Sampler\\\",\\n \\\"m_SlotType\\\": 0,\\n \\\"m_Priority\\\": 2147483647,\\n \\\"m_Hidden\\\": false,\\n \\\"m_ShaderOutputName\\\": \\\"Sampler\\\",\\n \\\"m_StageCapability\\\": 3\\n}\"\n }\n ],\n \"m_PreviewExpanded\": true,\n \"m_TextureType\": 1,\n \"m_NormalMapSpace\": 0\n}" + }, + { + "typeInfo": { + "fullName": "UnityEditor.ShaderGraph.SampleTexture2DNode" + }, + "JSONnodeData": "{\n \"m_GuidSerialized\": \"2382f642-29e1-4e82-bbd3-a49f7ac84770\",\n \"m_GroupGuidSerialized\": \"00000000-0000-0000-0000-000000000000\",\n \"m_Name\": \"Sample Texture 2D\",\n \"m_DrawState\": {\n \"m_Expanded\": true,\n \"m_Position\": {\n \"serializedVersion\": \"2\",\n \"x\": 461.5018615722656,\n \"y\": -986.6386108398438,\n \"width\": 208.0,\n \"height\": 407.0\n }\n },\n \"m_SerializableSlots\": [\n {\n \"typeInfo\": {\n \"fullName\": \"UnityEditor.ShaderGraph.Vector4MaterialSlot\"\n },\n \"JSONnodeData\": \"{\\n \\\"m_Id\\\": 0,\\n \\\"m_DisplayName\\\": \\\"RGBA\\\",\\n \\\"m_SlotType\\\": 1,\\n \\\"m_Priority\\\": 2147483647,\\n \\\"m_Hidden\\\": false,\\n \\\"m_ShaderOutputName\\\": \\\"RGBA\\\",\\n \\\"m_StageCapability\\\": 2,\\n \\\"m_Value\\\": {\\n \\\"x\\\": 0.0,\\n \\\"y\\\": 0.0,\\n \\\"z\\\": 0.0,\\n \\\"w\\\": 0.0\\n },\\n \\\"m_DefaultValue\\\": {\\n \\\"x\\\": 0.0,\\n \\\"y\\\": 0.0,\\n \\\"z\\\": 0.0,\\n \\\"w\\\": 0.0\\n }\\n}\"\n },\n {\n \"typeInfo\": {\n \"fullName\": \"UnityEditor.ShaderGraph.Vector1MaterialSlot\"\n },\n \"JSONnodeData\": \"{\\n \\\"m_Id\\\": 4,\\n \\\"m_DisplayName\\\": \\\"R\\\",\\n \\\"m_SlotType\\\": 1,\\n \\\"m_Priority\\\": 2147483647,\\n \\\"m_Hidden\\\": false,\\n \\\"m_ShaderOutputName\\\": \\\"R\\\",\\n \\\"m_StageCapability\\\": 2,\\n \\\"m_Value\\\": 0.0,\\n \\\"m_DefaultValue\\\": 0.0,\\n \\\"m_Labels\\\": [\\n \\\"X\\\"\\n ]\\n}\"\n },\n {\n \"typeInfo\": {\n \"fullName\": \"UnityEditor.ShaderGraph.Vector1MaterialSlot\"\n },\n \"JSONnodeData\": \"{\\n \\\"m_Id\\\": 5,\\n \\\"m_DisplayName\\\": \\\"G\\\",\\n \\\"m_SlotType\\\": 1,\\n \\\"m_Priority\\\": 2147483647,\\n \\\"m_Hidden\\\": false,\\n \\\"m_ShaderOutputName\\\": \\\"G\\\",\\n \\\"m_StageCapability\\\": 2,\\n \\\"m_Value\\\": 0.0,\\n \\\"m_DefaultValue\\\": 0.0,\\n \\\"m_Labels\\\": [\\n \\\"X\\\"\\n ]\\n}\"\n },\n {\n \"typeInfo\": {\n \"fullName\": \"UnityEditor.ShaderGraph.Vector1MaterialSlot\"\n },\n \"JSONnodeData\": \"{\\n \\\"m_Id\\\": 6,\\n \\\"m_DisplayName\\\": \\\"B\\\",\\n \\\"m_SlotType\\\": 1,\\n \\\"m_Priority\\\": 2147483647,\\n \\\"m_Hidden\\\": false,\\n \\\"m_ShaderOutputName\\\": \\\"B\\\",\\n \\\"m_StageCapability\\\": 2,\\n \\\"m_Value\\\": 0.0,\\n \\\"m_DefaultValue\\\": 0.0,\\n \\\"m_Labels\\\": [\\n \\\"X\\\"\\n ]\\n}\"\n },\n {\n \"typeInfo\": {\n \"fullName\": \"UnityEditor.ShaderGraph.Vector1MaterialSlot\"\n },\n \"JSONnodeData\": \"{\\n \\\"m_Id\\\": 7,\\n \\\"m_DisplayName\\\": \\\"A\\\",\\n \\\"m_SlotType\\\": 1,\\n \\\"m_Priority\\\": 2147483647,\\n \\\"m_Hidden\\\": false,\\n \\\"m_ShaderOutputName\\\": \\\"A\\\",\\n \\\"m_StageCapability\\\": 2,\\n \\\"m_Value\\\": 0.0,\\n \\\"m_DefaultValue\\\": 0.0,\\n \\\"m_Labels\\\": [\\n \\\"X\\\"\\n ]\\n}\"\n },\n {\n \"typeInfo\": {\n \"fullName\": \"UnityEditor.ShaderGraph.Texture2DInputMaterialSlot\"\n },\n \"JSONnodeData\": \"{\\n \\\"m_Id\\\": 1,\\n \\\"m_DisplayName\\\": \\\"Texture\\\",\\n \\\"m_SlotType\\\": 0,\\n \\\"m_Priority\\\": 2147483647,\\n \\\"m_Hidden\\\": false,\\n \\\"m_ShaderOutputName\\\": \\\"Texture\\\",\\n \\\"m_StageCapability\\\": 3,\\n \\\"m_Texture\\\": {\\n \\\"m_SerializedTexture\\\": \\\"\\\",\\n \\\"m_Guid\\\": \\\"e5c37ab0c7b37af4f981195d3caaf4b4\\\"\\n },\\n \\\"m_DefaultType\\\": 0\\n}\"\n },\n {\n \"typeInfo\": {\n \"fullName\": \"UnityEditor.ShaderGraph.UVMaterialSlot\"\n },\n \"JSONnodeData\": \"{\\n \\\"m_Id\\\": 2,\\n \\\"m_DisplayName\\\": \\\"UV\\\",\\n \\\"m_SlotType\\\": 0,\\n \\\"m_Priority\\\": 2147483647,\\n \\\"m_Hidden\\\": false,\\n \\\"m_ShaderOutputName\\\": \\\"UV\\\",\\n \\\"m_StageCapability\\\": 3,\\n \\\"m_Value\\\": {\\n \\\"x\\\": 0.0,\\n \\\"y\\\": 0.0\\n },\\n \\\"m_DefaultValue\\\": {\\n \\\"x\\\": 0.0,\\n \\\"y\\\": 0.0\\n },\\n \\\"m_Labels\\\": [\\n \\\"X\\\",\\n \\\"Y\\\"\\n ],\\n \\\"m_Channel\\\": 0\\n}\"\n },\n {\n \"typeInfo\": {\n \"fullName\": \"UnityEditor.ShaderGraph.SamplerStateMaterialSlot\"\n },\n \"JSONnodeData\": \"{\\n \\\"m_Id\\\": 3,\\n \\\"m_DisplayName\\\": \\\"Sampler\\\",\\n \\\"m_SlotType\\\": 0,\\n \\\"m_Priority\\\": 2147483647,\\n \\\"m_Hidden\\\": false,\\n \\\"m_ShaderOutputName\\\": \\\"Sampler\\\",\\n \\\"m_StageCapability\\\": 3\\n}\"\n }\n ],\n \"m_PreviewExpanded\": true,\n \"m_TextureType\": 0,\n \"m_NormalMapSpace\": 0\n}" + }, + { + "typeInfo": { + "fullName": "UnityEditor.ShaderGraph.SampleTexture2DNode" + }, + "JSONnodeData": "{\n \"m_GuidSerialized\": \"9ac17bdf-7d9c-4368-9b32-54394ddd7f7b\",\n \"m_GroupGuidSerialized\": \"00000000-0000-0000-0000-000000000000\",\n \"m_Name\": \"Sample Texture 2D\",\n \"m_DrawState\": {\n \"m_Expanded\": true,\n \"m_Position\": {\n \"serializedVersion\": \"2\",\n \"x\": 574.1618041992188,\n \"y\": -85.51277923583985,\n \"width\": 208.0,\n \"height\": 407.0\n }\n },\n \"m_SerializableSlots\": [\n {\n \"typeInfo\": {\n \"fullName\": \"UnityEditor.ShaderGraph.Vector4MaterialSlot\"\n },\n \"JSONnodeData\": \"{\\n \\\"m_Id\\\": 0,\\n \\\"m_DisplayName\\\": \\\"RGBA\\\",\\n \\\"m_SlotType\\\": 1,\\n \\\"m_Priority\\\": 2147483647,\\n \\\"m_Hidden\\\": false,\\n \\\"m_ShaderOutputName\\\": \\\"RGBA\\\",\\n \\\"m_StageCapability\\\": 2,\\n \\\"m_Value\\\": {\\n \\\"x\\\": 0.0,\\n \\\"y\\\": 0.0,\\n \\\"z\\\": 0.0,\\n \\\"w\\\": 0.0\\n },\\n \\\"m_DefaultValue\\\": {\\n \\\"x\\\": 0.0,\\n \\\"y\\\": 0.0,\\n \\\"z\\\": 0.0,\\n \\\"w\\\": 0.0\\n }\\n}\"\n },\n {\n \"typeInfo\": {\n \"fullName\": \"UnityEditor.ShaderGraph.Vector1MaterialSlot\"\n },\n \"JSONnodeData\": \"{\\n \\\"m_Id\\\": 4,\\n \\\"m_DisplayName\\\": \\\"R\\\",\\n \\\"m_SlotType\\\": 1,\\n \\\"m_Priority\\\": 2147483647,\\n \\\"m_Hidden\\\": false,\\n \\\"m_ShaderOutputName\\\": \\\"R\\\",\\n \\\"m_StageCapability\\\": 2,\\n \\\"m_Value\\\": 0.0,\\n \\\"m_DefaultValue\\\": 0.0,\\n \\\"m_Labels\\\": [\\n \\\"X\\\"\\n ]\\n}\"\n },\n {\n \"typeInfo\": {\n \"fullName\": \"UnityEditor.ShaderGraph.Vector1MaterialSlot\"\n },\n \"JSONnodeData\": \"{\\n \\\"m_Id\\\": 5,\\n \\\"m_DisplayName\\\": \\\"G\\\",\\n \\\"m_SlotType\\\": 1,\\n \\\"m_Priority\\\": 2147483647,\\n \\\"m_Hidden\\\": false,\\n \\\"m_ShaderOutputName\\\": \\\"G\\\",\\n \\\"m_StageCapability\\\": 2,\\n \\\"m_Value\\\": 0.0,\\n \\\"m_DefaultValue\\\": 0.0,\\n \\\"m_Labels\\\": [\\n \\\"X\\\"\\n ]\\n}\"\n },\n {\n \"typeInfo\": {\n \"fullName\": \"UnityEditor.ShaderGraph.Vector1MaterialSlot\"\n },\n \"JSONnodeData\": \"{\\n \\\"m_Id\\\": 6,\\n \\\"m_DisplayName\\\": \\\"B\\\",\\n \\\"m_SlotType\\\": 1,\\n \\\"m_Priority\\\": 2147483647,\\n \\\"m_Hidden\\\": false,\\n \\\"m_ShaderOutputName\\\": \\\"B\\\",\\n \\\"m_StageCapability\\\": 2,\\n \\\"m_Value\\\": 0.0,\\n \\\"m_DefaultValue\\\": 0.0,\\n \\\"m_Labels\\\": [\\n \\\"X\\\"\\n ]\\n}\"\n },\n {\n \"typeInfo\": {\n \"fullName\": \"UnityEditor.ShaderGraph.Vector1MaterialSlot\"\n },\n \"JSONnodeData\": \"{\\n \\\"m_Id\\\": 7,\\n \\\"m_DisplayName\\\": \\\"A\\\",\\n \\\"m_SlotType\\\": 1,\\n \\\"m_Priority\\\": 2147483647,\\n \\\"m_Hidden\\\": false,\\n \\\"m_ShaderOutputName\\\": \\\"A\\\",\\n \\\"m_StageCapability\\\": 2,\\n \\\"m_Value\\\": 0.0,\\n \\\"m_DefaultValue\\\": 0.0,\\n \\\"m_Labels\\\": [\\n \\\"X\\\"\\n ]\\n}\"\n },\n {\n \"typeInfo\": {\n \"fullName\": \"UnityEditor.ShaderGraph.Texture2DInputMaterialSlot\"\n },\n \"JSONnodeData\": \"{\\n \\\"m_Id\\\": 1,\\n \\\"m_DisplayName\\\": \\\"Texture\\\",\\n \\\"m_SlotType\\\": 0,\\n \\\"m_Priority\\\": 2147483647,\\n \\\"m_Hidden\\\": false,\\n \\\"m_ShaderOutputName\\\": \\\"Texture\\\",\\n \\\"m_StageCapability\\\": 3,\\n \\\"m_Texture\\\": {\\n \\\"m_SerializedTexture\\\": \\\"\\\",\\n \\\"m_Guid\\\": \\\"2de0d72a6700bd94ea57111b29e246fc\\\"\\n },\\n \\\"m_DefaultType\\\": 0\\n}\"\n },\n {\n \"typeInfo\": {\n \"fullName\": \"UnityEditor.ShaderGraph.UVMaterialSlot\"\n },\n \"JSONnodeData\": \"{\\n \\\"m_Id\\\": 2,\\n \\\"m_DisplayName\\\": \\\"UV\\\",\\n \\\"m_SlotType\\\": 0,\\n \\\"m_Priority\\\": 2147483647,\\n \\\"m_Hidden\\\": false,\\n \\\"m_ShaderOutputName\\\": \\\"UV\\\",\\n \\\"m_StageCapability\\\": 3,\\n \\\"m_Value\\\": {\\n \\\"x\\\": 0.0,\\n \\\"y\\\": 0.0\\n },\\n \\\"m_DefaultValue\\\": {\\n \\\"x\\\": 0.0,\\n \\\"y\\\": 0.0\\n },\\n \\\"m_Labels\\\": [\\n \\\"X\\\",\\n \\\"Y\\\"\\n ],\\n \\\"m_Channel\\\": 0\\n}\"\n },\n {\n \"typeInfo\": {\n \"fullName\": \"UnityEditor.ShaderGraph.SamplerStateMaterialSlot\"\n },\n \"JSONnodeData\": \"{\\n \\\"m_Id\\\": 3,\\n \\\"m_DisplayName\\\": \\\"Sampler\\\",\\n \\\"m_SlotType\\\": 0,\\n \\\"m_Priority\\\": 2147483647,\\n \\\"m_Hidden\\\": false,\\n \\\"m_ShaderOutputName\\\": \\\"Sampler\\\",\\n \\\"m_StageCapability\\\": 3\\n}\"\n }\n ],\n \"m_PreviewExpanded\": true,\n \"m_TextureType\": 0,\n \"m_NormalMapSpace\": 0\n}" + }, + { + "typeInfo": { + "fullName": "UnityEditor.ShaderGraph.SampleTexture2DNode" + }, + "JSONnodeData": "{\n \"m_GuidSerialized\": \"c988adc3-0276-4e5b-a459-04c4efe2214d\",\n \"m_GroupGuidSerialized\": \"00000000-0000-0000-0000-000000000000\",\n \"m_Name\": \"Sample Texture 2D\",\n \"m_DrawState\": {\n \"m_Expanded\": true,\n \"m_Position\": {\n \"serializedVersion\": \"2\",\n \"x\": 175.07325744628907,\n \"y\": -459.3332214355469,\n \"width\": 208.0,\n \"height\": 407.0\n }\n },\n \"m_SerializableSlots\": [\n {\n \"typeInfo\": {\n \"fullName\": \"UnityEditor.ShaderGraph.Vector4MaterialSlot\"\n },\n \"JSONnodeData\": \"{\\n \\\"m_Id\\\": 0,\\n \\\"m_DisplayName\\\": \\\"RGBA\\\",\\n \\\"m_SlotType\\\": 1,\\n \\\"m_Priority\\\": 2147483647,\\n \\\"m_Hidden\\\": false,\\n \\\"m_ShaderOutputName\\\": \\\"RGBA\\\",\\n \\\"m_StageCapability\\\": 2,\\n \\\"m_Value\\\": {\\n \\\"x\\\": 0.0,\\n \\\"y\\\": 0.0,\\n \\\"z\\\": 0.0,\\n \\\"w\\\": 0.0\\n },\\n \\\"m_DefaultValue\\\": {\\n \\\"x\\\": 0.0,\\n \\\"y\\\": 0.0,\\n \\\"z\\\": 0.0,\\n \\\"w\\\": 0.0\\n }\\n}\"\n },\n {\n \"typeInfo\": {\n \"fullName\": \"UnityEditor.ShaderGraph.Vector1MaterialSlot\"\n },\n \"JSONnodeData\": \"{\\n \\\"m_Id\\\": 4,\\n \\\"m_DisplayName\\\": \\\"R\\\",\\n \\\"m_SlotType\\\": 1,\\n \\\"m_Priority\\\": 2147483647,\\n \\\"m_Hidden\\\": false,\\n \\\"m_ShaderOutputName\\\": \\\"R\\\",\\n \\\"m_StageCapability\\\": 2,\\n \\\"m_Value\\\": 0.0,\\n \\\"m_DefaultValue\\\": 0.0,\\n \\\"m_Labels\\\": [\\n \\\"X\\\"\\n ]\\n}\"\n },\n {\n \"typeInfo\": {\n \"fullName\": \"UnityEditor.ShaderGraph.Vector1MaterialSlot\"\n },\n \"JSONnodeData\": \"{\\n \\\"m_Id\\\": 5,\\n \\\"m_DisplayName\\\": \\\"G\\\",\\n \\\"m_SlotType\\\": 1,\\n \\\"m_Priority\\\": 2147483647,\\n \\\"m_Hidden\\\": false,\\n \\\"m_ShaderOutputName\\\": \\\"G\\\",\\n \\\"m_StageCapability\\\": 2,\\n \\\"m_Value\\\": 0.0,\\n \\\"m_DefaultValue\\\": 0.0,\\n \\\"m_Labels\\\": [\\n \\\"X\\\"\\n ]\\n}\"\n },\n {\n \"typeInfo\": {\n \"fullName\": \"UnityEditor.ShaderGraph.Vector1MaterialSlot\"\n },\n \"JSONnodeData\": \"{\\n \\\"m_Id\\\": 6,\\n \\\"m_DisplayName\\\": \\\"B\\\",\\n \\\"m_SlotType\\\": 1,\\n \\\"m_Priority\\\": 2147483647,\\n \\\"m_Hidden\\\": false,\\n \\\"m_ShaderOutputName\\\": \\\"B\\\",\\n \\\"m_StageCapability\\\": 2,\\n \\\"m_Value\\\": 0.0,\\n \\\"m_DefaultValue\\\": 0.0,\\n \\\"m_Labels\\\": [\\n \\\"X\\\"\\n ]\\n}\"\n },\n {\n \"typeInfo\": {\n \"fullName\": \"UnityEditor.ShaderGraph.Vector1MaterialSlot\"\n },\n \"JSONnodeData\": \"{\\n \\\"m_Id\\\": 7,\\n \\\"m_DisplayName\\\": \\\"A\\\",\\n \\\"m_SlotType\\\": 1,\\n \\\"m_Priority\\\": 2147483647,\\n \\\"m_Hidden\\\": false,\\n \\\"m_ShaderOutputName\\\": \\\"A\\\",\\n \\\"m_StageCapability\\\": 2,\\n \\\"m_Value\\\": 0.0,\\n \\\"m_DefaultValue\\\": 0.0,\\n \\\"m_Labels\\\": [\\n \\\"X\\\"\\n ]\\n}\"\n },\n {\n \"typeInfo\": {\n \"fullName\": \"UnityEditor.ShaderGraph.Texture2DInputMaterialSlot\"\n },\n \"JSONnodeData\": \"{\\n \\\"m_Id\\\": 1,\\n \\\"m_DisplayName\\\": \\\"Texture\\\",\\n \\\"m_SlotType\\\": 0,\\n \\\"m_Priority\\\": 2147483647,\\n \\\"m_Hidden\\\": false,\\n \\\"m_ShaderOutputName\\\": \\\"Texture\\\",\\n \\\"m_StageCapability\\\": 3,\\n \\\"m_Texture\\\": {\\n \\\"m_SerializedTexture\\\": \\\"\\\",\\n \\\"m_Guid\\\": \\\"5e98de278b2ccc14f89b76b85596a3f3\\\"\\n },\\n \\\"m_DefaultType\\\": 0\\n}\"\n },\n {\n \"typeInfo\": {\n \"fullName\": \"UnityEditor.ShaderGraph.UVMaterialSlot\"\n },\n \"JSONnodeData\": \"{\\n \\\"m_Id\\\": 2,\\n \\\"m_DisplayName\\\": \\\"UV\\\",\\n \\\"m_SlotType\\\": 0,\\n \\\"m_Priority\\\": 2147483647,\\n \\\"m_Hidden\\\": false,\\n \\\"m_ShaderOutputName\\\": \\\"UV\\\",\\n \\\"m_StageCapability\\\": 3,\\n \\\"m_Value\\\": {\\n \\\"x\\\": 0.0,\\n \\\"y\\\": 0.0\\n },\\n \\\"m_DefaultValue\\\": {\\n \\\"x\\\": 0.0,\\n \\\"y\\\": 0.0\\n },\\n \\\"m_Labels\\\": [\\n \\\"X\\\",\\n \\\"Y\\\"\\n ],\\n \\\"m_Channel\\\": 0\\n}\"\n },\n {\n \"typeInfo\": {\n \"fullName\": \"UnityEditor.ShaderGraph.SamplerStateMaterialSlot\"\n },\n \"JSONnodeData\": \"{\\n \\\"m_Id\\\": 3,\\n \\\"m_DisplayName\\\": \\\"Sampler\\\",\\n \\\"m_SlotType\\\": 0,\\n \\\"m_Priority\\\": 2147483647,\\n \\\"m_Hidden\\\": false,\\n \\\"m_ShaderOutputName\\\": \\\"Sampler\\\",\\n \\\"m_StageCapability\\\": 3\\n}\"\n }\n ],\n \"m_PreviewExpanded\": true,\n \"m_TextureType\": 0,\n \"m_NormalMapSpace\": 0\n}" + }, + { + "typeInfo": { + "fullName": "UnityEditor.ShaderGraph.PBRMasterNode" + }, + "JSONnodeData": "{\n \"m_GuidSerialized\": \"e3bb227e-6063-41c2-a0da-934cccb289e7\",\n \"m_GroupGuidSerialized\": \"00000000-0000-0000-0000-000000000000\",\n \"m_Name\": \"PBR Master\",\n \"m_DrawState\": {\n \"m_Expanded\": true,\n \"m_Position\": {\n \"serializedVersion\": \"2\",\n \"x\": 1649.890625,\n \"y\": 361.7998352050781,\n \"width\": 208.0,\n \"height\": 550.0\n }\n },\n \"m_SerializableSlots\": [\n {\n \"typeInfo\": {\n \"fullName\": \"UnityEditor.ShaderGraph.PositionMaterialSlot\"\n },\n \"JSONnodeData\": \"{\\n \\\"m_Id\\\": 9,\\n \\\"m_DisplayName\\\": \\\"Position\\\",\\n \\\"m_SlotType\\\": 0,\\n \\\"m_Priority\\\": 2147483647,\\n \\\"m_Hidden\\\": false,\\n \\\"m_ShaderOutputName\\\": \\\"Position\\\",\\n \\\"m_StageCapability\\\": 1,\\n \\\"m_Value\\\": {\\n \\\"x\\\": 0.0,\\n \\\"y\\\": 0.0,\\n \\\"z\\\": 0.0\\n },\\n \\\"m_DefaultValue\\\": {\\n \\\"x\\\": 0.0,\\n \\\"y\\\": 0.0,\\n \\\"z\\\": 0.0\\n },\\n \\\"m_Labels\\\": [\\n \\\"X\\\",\\n \\\"Y\\\",\\n \\\"Z\\\"\\n ],\\n \\\"m_Space\\\": 0\\n}\"\n },\n {\n \"typeInfo\": {\n \"fullName\": \"UnityEditor.ShaderGraph.ColorRGBMaterialSlot\"\n },\n \"JSONnodeData\": \"{\\n \\\"m_Id\\\": 0,\\n \\\"m_DisplayName\\\": \\\"Albedo\\\",\\n \\\"m_SlotType\\\": 0,\\n \\\"m_Priority\\\": 2147483647,\\n \\\"m_Hidden\\\": false,\\n \\\"m_ShaderOutputName\\\": \\\"Albedo\\\",\\n \\\"m_StageCapability\\\": 2,\\n \\\"m_Value\\\": {\\n \\\"x\\\": 0.5,\\n \\\"y\\\": 0.5,\\n \\\"z\\\": 0.5\\n },\\n \\\"m_DefaultValue\\\": {\\n \\\"x\\\": 0.0,\\n \\\"y\\\": 0.0,\\n \\\"z\\\": 0.0\\n },\\n \\\"m_Labels\\\": [\\n \\\"X\\\",\\n \\\"Y\\\",\\n \\\"Z\\\"\\n ],\\n \\\"m_ColorMode\\\": 0\\n}\"\n },\n {\n \"typeInfo\": {\n \"fullName\": \"UnityEditor.ShaderGraph.NormalMaterialSlot\"\n },\n \"JSONnodeData\": \"{\\n \\\"m_Id\\\": 1,\\n \\\"m_DisplayName\\\": \\\"Normal\\\",\\n \\\"m_SlotType\\\": 0,\\n \\\"m_Priority\\\": 2147483647,\\n \\\"m_Hidden\\\": false,\\n \\\"m_ShaderOutputName\\\": \\\"Normal\\\",\\n \\\"m_StageCapability\\\": 2,\\n \\\"m_Value\\\": {\\n \\\"x\\\": 0.0,\\n \\\"y\\\": 0.0,\\n \\\"z\\\": 0.0\\n },\\n \\\"m_DefaultValue\\\": {\\n \\\"x\\\": 0.0,\\n \\\"y\\\": 0.0,\\n \\\"z\\\": 0.0\\n },\\n \\\"m_Labels\\\": [\\n \\\"X\\\",\\n \\\"Y\\\",\\n \\\"Z\\\"\\n ],\\n \\\"m_Space\\\": 3\\n}\"\n },\n {\n \"typeInfo\": {\n \"fullName\": \"UnityEditor.ShaderGraph.ColorRGBMaterialSlot\"\n },\n \"JSONnodeData\": \"{\\n \\\"m_Id\\\": 4,\\n \\\"m_DisplayName\\\": \\\"Emission\\\",\\n \\\"m_SlotType\\\": 0,\\n \\\"m_Priority\\\": 2147483647,\\n \\\"m_Hidden\\\": false,\\n \\\"m_ShaderOutputName\\\": \\\"Emission\\\",\\n \\\"m_StageCapability\\\": 2,\\n \\\"m_Value\\\": {\\n \\\"x\\\": 0.0,\\n \\\"y\\\": 0.0,\\n \\\"z\\\": 0.0\\n },\\n \\\"m_DefaultValue\\\": {\\n \\\"x\\\": 0.0,\\n \\\"y\\\": 0.0,\\n \\\"z\\\": 0.0\\n },\\n \\\"m_Labels\\\": [\\n \\\"X\\\",\\n \\\"Y\\\",\\n \\\"Z\\\"\\n ],\\n \\\"m_ColorMode\\\": 0\\n}\"\n },\n {\n \"typeInfo\": {\n \"fullName\": \"UnityEditor.ShaderGraph.Vector1MaterialSlot\"\n },\n \"JSONnodeData\": \"{\\n \\\"m_Id\\\": 2,\\n \\\"m_DisplayName\\\": \\\"Metallic\\\",\\n \\\"m_SlotType\\\": 0,\\n \\\"m_Priority\\\": 2147483647,\\n \\\"m_Hidden\\\": false,\\n \\\"m_ShaderOutputName\\\": \\\"Metallic\\\",\\n \\\"m_StageCapability\\\": 2,\\n \\\"m_Value\\\": 0.0,\\n \\\"m_DefaultValue\\\": 0.0,\\n \\\"m_Labels\\\": [\\n \\\"X\\\"\\n ]\\n}\"\n },\n {\n \"typeInfo\": {\n \"fullName\": \"UnityEditor.ShaderGraph.Vector1MaterialSlot\"\n },\n \"JSONnodeData\": \"{\\n \\\"m_Id\\\": 5,\\n \\\"m_DisplayName\\\": \\\"Smoothness\\\",\\n \\\"m_SlotType\\\": 0,\\n \\\"m_Priority\\\": 2147483647,\\n \\\"m_Hidden\\\": false,\\n \\\"m_ShaderOutputName\\\": \\\"Smoothness\\\",\\n \\\"m_StageCapability\\\": 2,\\n \\\"m_Value\\\": 0.5,\\n \\\"m_DefaultValue\\\": 0.5,\\n \\\"m_Labels\\\": [\\n \\\"X\\\"\\n ]\\n}\"\n },\n {\n \"typeInfo\": {\n \"fullName\": \"UnityEditor.ShaderGraph.Vector1MaterialSlot\"\n },\n \"JSONnodeData\": \"{\\n \\\"m_Id\\\": 6,\\n \\\"m_DisplayName\\\": \\\"Occlusion\\\",\\n \\\"m_SlotType\\\": 0,\\n \\\"m_Priority\\\": 2147483647,\\n \\\"m_Hidden\\\": false,\\n \\\"m_ShaderOutputName\\\": \\\"Occlusion\\\",\\n \\\"m_StageCapability\\\": 2,\\n \\\"m_Value\\\": 1.0,\\n \\\"m_DefaultValue\\\": 1.0,\\n \\\"m_Labels\\\": [\\n \\\"X\\\"\\n ]\\n}\"\n },\n {\n \"typeInfo\": {\n \"fullName\": \"UnityEditor.ShaderGraph.Vector1MaterialSlot\"\n },\n \"JSONnodeData\": \"{\\n \\\"m_Id\\\": 7,\\n \\\"m_DisplayName\\\": \\\"Alpha\\\",\\n \\\"m_SlotType\\\": 0,\\n \\\"m_Priority\\\": 2147483647,\\n \\\"m_Hidden\\\": false,\\n \\\"m_ShaderOutputName\\\": \\\"Alpha\\\",\\n \\\"m_StageCapability\\\": 2,\\n \\\"m_Value\\\": 1.0,\\n \\\"m_DefaultValue\\\": 1.0,\\n \\\"m_Labels\\\": [\\n \\\"X\\\"\\n ]\\n}\"\n },\n {\n \"typeInfo\": {\n \"fullName\": \"UnityEditor.ShaderGraph.Vector1MaterialSlot\"\n },\n \"JSONnodeData\": \"{\\n \\\"m_Id\\\": 8,\\n \\\"m_DisplayName\\\": \\\"AlphaClipThreshold\\\",\\n \\\"m_SlotType\\\": 0,\\n \\\"m_Priority\\\": 2147483647,\\n \\\"m_Hidden\\\": false,\\n \\\"m_ShaderOutputName\\\": \\\"AlphaClipThreshold\\\",\\n \\\"m_StageCapability\\\": 2,\\n \\\"m_Value\\\": 0.0,\\n \\\"m_DefaultValue\\\": 0.0,\\n \\\"m_Labels\\\": [\\n \\\"X\\\"\\n ]\\n}\"\n }\n ],\n \"m_PreviewExpanded\": true,\n \"m_SerializableSubShaders\": [\n {\n \"typeInfo\": {\n \"fullName\": \"UnityEditor.Rendering.LWRP.LightWeightPBRSubShader\"\n },\n \"JSONnodeData\": \"{}\"\n }\n ],\n \"m_Model\": 1,\n \"m_SurfaceType\": 0,\n \"m_AlphaMode\": 0,\n \"m_TwoSided\": false\n}" + }, + { + "typeInfo": { + "fullName": "UnityEditor.ShaderGraph.PropertyNode" + }, + "JSONnodeData": "{\n \"m_GuidSerialized\": \"d5ead3cd-72df-4b1d-978c-bbe2da1f9114\",\n \"m_GroupGuidSerialized\": \"00000000-0000-0000-0000-000000000000\",\n \"m_Name\": \"Property\",\n \"m_DrawState\": {\n \"m_Expanded\": true,\n \"m_Position\": {\n \"serializedVersion\": \"2\",\n \"x\": -1161.0980224609375,\n \"y\": -314.5289001464844,\n \"width\": 91.0,\n \"height\": 77.0\n }\n },\n \"m_SerializableSlots\": [\n {\n \"typeInfo\": {\n \"fullName\": \"UnityEditor.ShaderGraph.Vector1MaterialSlot\"\n },\n \"JSONnodeData\": \"{\\n \\\"m_Id\\\": 0,\\n \\\"m_DisplayName\\\": \\\"Speed\\\",\\n \\\"m_SlotType\\\": 1,\\n \\\"m_Priority\\\": 2147483647,\\n \\\"m_Hidden\\\": false,\\n \\\"m_ShaderOutputName\\\": \\\"Out\\\",\\n \\\"m_StageCapability\\\": 3,\\n \\\"m_Value\\\": 0.0,\\n \\\"m_DefaultValue\\\": 0.0,\\n \\\"m_Labels\\\": [\\n \\\"X\\\"\\n ]\\n}\"\n }\n ],\n \"m_PreviewExpanded\": true,\n \"m_PropertyGuidSerialized\": \"e1f132b2-9fd9-4299-9be9-6b123f82464c\"\n}" + }, + { + "typeInfo": { + "fullName": "UnityEditor.ShaderGraph.PropertyNode" + }, + "JSONnodeData": "{\n \"m_GuidSerialized\": \"ef7748ab-c526-44e6-bac8-b831ff0c7ba8\",\n \"m_GroupGuidSerialized\": \"00000000-0000-0000-0000-000000000000\",\n \"m_Name\": \"Property\",\n \"m_DrawState\": {\n \"m_Expanded\": true,\n \"m_Position\": {\n \"serializedVersion\": \"2\",\n \"x\": -619.5936279296875,\n \"y\": -488.9008483886719,\n \"width\": 91.0,\n \"height\": 77.0\n }\n },\n \"m_SerializableSlots\": [\n {\n \"typeInfo\": {\n \"fullName\": \"UnityEditor.ShaderGraph.Vector2MaterialSlot\"\n },\n \"JSONnodeData\": \"{\\n \\\"m_Id\\\": 0,\\n \\\"m_DisplayName\\\": \\\"Center\\\",\\n \\\"m_SlotType\\\": 1,\\n \\\"m_Priority\\\": 2147483647,\\n \\\"m_Hidden\\\": false,\\n \\\"m_ShaderOutputName\\\": \\\"Out\\\",\\n \\\"m_StageCapability\\\": 3,\\n \\\"m_Value\\\": {\\n \\\"x\\\": 0.0,\\n \\\"y\\\": 0.0\\n },\\n \\\"m_DefaultValue\\\": {\\n \\\"x\\\": 0.0,\\n \\\"y\\\": 0.0\\n },\\n \\\"m_Labels\\\": [\\n \\\"X\\\",\\n \\\"Y\\\"\\n ]\\n}\"\n }\n ],\n \"m_PreviewExpanded\": true,\n \"m_PropertyGuidSerialized\": \"4887e2c8-a799-4ef6-ac8e-57b7095ddafb\"\n}" + }, + { + "typeInfo": { + "fullName": "UnityEditor.ShaderGraph.PropertyNode" + }, + "JSONnodeData": "{\n \"m_GuidSerialized\": \"08462c90-488c-4bbf-aa3b-7eca6b276140\",\n \"m_GroupGuidSerialized\": \"00000000-0000-0000-0000-000000000000\",\n \"m_Name\": \"Property\",\n \"m_DrawState\": {\n \"m_Expanded\": true,\n \"m_Position\": {\n \"serializedVersion\": \"2\",\n \"x\": 248.6184844970703,\n \"y\": -641.4854125976563,\n \"width\": 120.0,\n \"height\": 77.0\n }\n },\n \"m_SerializableSlots\": [\n {\n \"typeInfo\": {\n \"fullName\": \"UnityEditor.ShaderGraph.Vector4MaterialSlot\"\n },\n \"JSONnodeData\": \"{\\n \\\"m_Id\\\": 0,\\n \\\"m_DisplayName\\\": \\\"PaintColor_01\\\",\\n \\\"m_SlotType\\\": 1,\\n \\\"m_Priority\\\": 2147483647,\\n \\\"m_Hidden\\\": false,\\n \\\"m_ShaderOutputName\\\": \\\"Out\\\",\\n \\\"m_StageCapability\\\": 3,\\n \\\"m_Value\\\": {\\n \\\"x\\\": 0.0,\\n \\\"y\\\": 0.0,\\n \\\"z\\\": 0.0,\\n \\\"w\\\": 0.0\\n },\\n \\\"m_DefaultValue\\\": {\\n \\\"x\\\": 0.0,\\n \\\"y\\\": 0.0,\\n \\\"z\\\": 0.0,\\n \\\"w\\\": 0.0\\n }\\n}\"\n }\n ],\n \"m_PreviewExpanded\": true,\n \"m_PropertyGuidSerialized\": \"0f4a94cd-7d2c-4ff8-9716-cfed72d9f524\"\n}" + }, + { + "typeInfo": { + "fullName": "UnityEditor.ShaderGraph.PropertyNode" + }, + "JSONnodeData": "{\n \"m_GuidSerialized\": \"b84f18a7-0ab0-4059-8df9-942d0e957217\",\n \"m_GroupGuidSerialized\": \"00000000-0000-0000-0000-000000000000\",\n \"m_Name\": \"Property\",\n \"m_DrawState\": {\n \"m_Expanded\": true,\n \"m_Position\": {\n \"serializedVersion\": \"2\",\n \"x\": 312.3653869628906,\n \"y\": -1020.9982299804688,\n \"width\": 91.0,\n \"height\": 77.0\n }\n },\n \"m_SerializableSlots\": [\n {\n \"typeInfo\": {\n \"fullName\": \"UnityEditor.ShaderGraph.Texture2DMaterialSlot\"\n },\n \"JSONnodeData\": \"{\\n \\\"m_Id\\\": 0,\\n \\\"m_DisplayName\\\": \\\"Label\\\",\\n \\\"m_SlotType\\\": 1,\\n \\\"m_Priority\\\": 2147483647,\\n \\\"m_Hidden\\\": false,\\n \\\"m_ShaderOutputName\\\": \\\"Out\\\",\\n \\\"m_StageCapability\\\": 3\\n}\"\n }\n ],\n \"m_PreviewExpanded\": true,\n \"m_PropertyGuidSerialized\": \"fe65f4d6-d596-4ec3-9a8f-a36939bfbaee\"\n}" + } + ], + "m_Groups": [], + "m_SerializableEdges": [ + { + "typeInfo": { + "fullName": "UnityEditor.Graphing.Edge" + }, + "JSONnodeData": "{\n \"m_OutputSlot\": {\n \"m_SlotId\": 7,\n \"m_NodeGUIDSerialized\": \"59879faf-0816-46ec-849d-f6f526f4e1a3\"\n },\n \"m_InputSlot\": {\n \"m_SlotId\": 0,\n \"m_NodeGUIDSerialized\": \"4db1e547-cdce-4d9e-8b6b-844e6593fd67\"\n }\n}" + }, + { + "typeInfo": { + "fullName": "UnityEditor.Graphing.Edge" + }, + "JSONnodeData": "{\n \"m_OutputSlot\": {\n \"m_SlotId\": 1,\n \"m_NodeGUIDSerialized\": \"4db1e547-cdce-4d9e-8b6b-844e6593fd67\"\n },\n \"m_InputSlot\": {\n \"m_SlotId\": 5,\n \"m_NodeGUIDSerialized\": \"e3bb227e-6063-41c2-a0da-934cccb289e7\"\n }\n}" + }, + { + "typeInfo": { + "fullName": "UnityEditor.Graphing.Edge" + }, + "JSONnodeData": "{\n \"m_OutputSlot\": {\n \"m_SlotId\": 4,\n \"m_NodeGUIDSerialized\": \"59879faf-0816-46ec-849d-f6f526f4e1a3\"\n },\n \"m_InputSlot\": {\n \"m_SlotId\": 2,\n \"m_NodeGUIDSerialized\": \"e3bb227e-6063-41c2-a0da-934cccb289e7\"\n }\n}" + }, + { + "typeInfo": { + "fullName": "UnityEditor.Graphing.Edge" + }, + "JSONnodeData": "{\n \"m_OutputSlot\": {\n \"m_SlotId\": 5,\n \"m_NodeGUIDSerialized\": \"59879faf-0816-46ec-849d-f6f526f4e1a3\"\n },\n \"m_InputSlot\": {\n \"m_SlotId\": 6,\n \"m_NodeGUIDSerialized\": \"e3bb227e-6063-41c2-a0da-934cccb289e7\"\n }\n}" + }, + { + "typeInfo": { + "fullName": "UnityEditor.Graphing.Edge" + }, + "JSONnodeData": "{\n \"m_OutputSlot\": {\n \"m_SlotId\": 0,\n \"m_NodeGUIDSerialized\": \"9ac17bdf-7d9c-4368-9b32-54394ddd7f7b\"\n },\n \"m_InputSlot\": {\n \"m_SlotId\": 0,\n \"m_NodeGUIDSerialized\": \"52c59480-55cd-4ef1-90ae-7317f15dec81\"\n }\n}" + }, + { + "typeInfo": { + "fullName": "UnityEditor.Graphing.Edge" + }, + "JSONnodeData": "{\n \"m_OutputSlot\": {\n \"m_SlotId\": 0,\n \"m_NodeGUIDSerialized\": \"2382f642-29e1-4e82-bbd3-a49f7ac84770\"\n },\n \"m_InputSlot\": {\n \"m_SlotId\": 1,\n \"m_NodeGUIDSerialized\": \"52c59480-55cd-4ef1-90ae-7317f15dec81\"\n }\n}" + }, + { + "typeInfo": { + "fullName": "UnityEditor.Graphing.Edge" + }, + "JSONnodeData": "{\n \"m_OutputSlot\": {\n \"m_SlotId\": 3,\n \"m_NodeGUIDSerialized\": \"44bdd4e3-73e0-46fb-bb95-05054ed43244\"\n },\n \"m_InputSlot\": {\n \"m_SlotId\": 2,\n \"m_NodeGUIDSerialized\": \"2382f642-29e1-4e82-bbd3-a49f7ac84770\"\n }\n}" + }, + { + "typeInfo": { + "fullName": "UnityEditor.Graphing.Edge" + }, + "JSONnodeData": "{\n \"m_OutputSlot\": {\n \"m_SlotId\": 0,\n \"m_NodeGUIDSerialized\": \"dbdc5d2a-0c8d-472d-a0d1-583b99863487\"\n },\n \"m_InputSlot\": {\n \"m_SlotId\": 3,\n \"m_NodeGUIDSerialized\": \"2382f642-29e1-4e82-bbd3-a49f7ac84770\"\n }\n}" + }, + { + "typeInfo": { + "fullName": "UnityEditor.Graphing.Edge" + }, + "JSONnodeData": "{\n \"m_OutputSlot\": {\n \"m_SlotId\": 0,\n \"m_NodeGUIDSerialized\": \"2412bffb-43d9-49bd-9a75-e766514bb313\"\n },\n \"m_InputSlot\": {\n \"m_SlotId\": 1,\n \"m_NodeGUIDSerialized\": \"e3bb227e-6063-41c2-a0da-934cccb289e7\"\n }\n}" + }, + { + "typeInfo": { + "fullName": "UnityEditor.Graphing.Edge" + }, + "JSONnodeData": "{\n \"m_OutputSlot\": {\n \"m_SlotId\": 7,\n \"m_NodeGUIDSerialized\": \"9ac17bdf-7d9c-4368-9b32-54394ddd7f7b\"\n },\n \"m_InputSlot\": {\n \"m_SlotId\": 2,\n \"m_NodeGUIDSerialized\": \"d2c5549f-4e08-4c30-b300-35af7af06f2e\"\n }\n}" + }, + { + "typeInfo": { + "fullName": "UnityEditor.Graphing.Edge" + }, + "JSONnodeData": "{\n \"m_OutputSlot\": {\n \"m_SlotId\": 4,\n \"m_NodeGUIDSerialized\": \"c988adc3-0276-4e5b-a459-04c4efe2214d\"\n },\n \"m_InputSlot\": {\n \"m_SlotId\": 2,\n \"m_NodeGUIDSerialized\": \"5cc2df0e-d3f8-4dc8-8d94-871bd6e3b627\"\n }\n}" + }, + { + "typeInfo": { + "fullName": "UnityEditor.Graphing.Edge" + }, + "JSONnodeData": "{\n \"m_OutputSlot\": {\n \"m_SlotId\": 1,\n \"m_NodeGUIDSerialized\": \"49aeb989-8006-449f-881e-e987d67d8d14\"\n },\n \"m_InputSlot\": {\n \"m_SlotId\": 0,\n \"m_NodeGUIDSerialized\": \"97c8a172-b5c2-4268-9501-1c853d005fd3\"\n }\n}" + }, + { + "typeInfo": { + "fullName": "UnityEditor.Graphing.Edge" + }, + "JSONnodeData": "{\n \"m_OutputSlot\": {\n \"m_SlotId\": 2,\n \"m_NodeGUIDSerialized\": \"97c8a172-b5c2-4268-9501-1c853d005fd3\"\n },\n \"m_InputSlot\": {\n \"m_SlotId\": 2,\n \"m_NodeGUIDSerialized\": \"309763c7-caeb-4c26-b438-6050bd74d6ad\"\n }\n}" + }, + { + "typeInfo": { + "fullName": "UnityEditor.Graphing.Edge" + }, + "JSONnodeData": "{\n \"m_OutputSlot\": {\n \"m_SlotId\": 2,\n \"m_NodeGUIDSerialized\": \"6a5b01a8-4e84-4bb1-95d5-490ec32e5f20\"\n },\n \"m_InputSlot\": {\n \"m_SlotId\": 0,\n \"m_NodeGUIDSerialized\": \"49aeb989-8006-449f-881e-e987d67d8d14\"\n }\n}" + }, + { + "typeInfo": { + "fullName": "UnityEditor.Graphing.Edge" + }, + "JSONnodeData": "{\n \"m_OutputSlot\": {\n \"m_SlotId\": 2,\n \"m_NodeGUIDSerialized\": \"52c59480-55cd-4ef1-90ae-7317f15dec81\"\n },\n \"m_InputSlot\": {\n \"m_SlotId\": 0,\n \"m_NodeGUIDSerialized\": \"d2c5549f-4e08-4c30-b300-35af7af06f2e\"\n }\n}" + }, + { + "typeInfo": { + "fullName": "UnityEditor.Graphing.Edge" + }, + "JSONnodeData": "{\n \"m_OutputSlot\": {\n \"m_SlotId\": 3,\n \"m_NodeGUIDSerialized\": \"5cc2df0e-d3f8-4dc8-8d94-871bd6e3b627\"\n },\n \"m_InputSlot\": {\n \"m_SlotId\": 1,\n \"m_NodeGUIDSerialized\": \"d2c5549f-4e08-4c30-b300-35af7af06f2e\"\n }\n}" + }, + { + "typeInfo": { + "fullName": "UnityEditor.Graphing.Edge" + }, + "JSONnodeData": "{\n \"m_OutputSlot\": {\n \"m_SlotId\": 3,\n \"m_NodeGUIDSerialized\": \"d2c5549f-4e08-4c30-b300-35af7af06f2e\"\n },\n \"m_InputSlot\": {\n \"m_SlotId\": 0,\n \"m_NodeGUIDSerialized\": \"e3bb227e-6063-41c2-a0da-934cccb289e7\"\n }\n}" + }, + { + "typeInfo": { + "fullName": "UnityEditor.Graphing.Edge" + }, + "JSONnodeData": "{\n \"m_OutputSlot\": {\n \"m_SlotId\": 3,\n \"m_NodeGUIDSerialized\": \"9020103b-dc00-455f-9621-c91c1f2a3824\"\n },\n \"m_InputSlot\": {\n \"m_SlotId\": 2,\n \"m_NodeGUIDSerialized\": \"c988adc3-0276-4e5b-a459-04c4efe2214d\"\n }\n}" + }, + { + "typeInfo": { + "fullName": "UnityEditor.Graphing.Edge" + }, + "JSONnodeData": "{\n \"m_OutputSlot\": {\n \"m_SlotId\": 3,\n \"m_NodeGUIDSerialized\": \"309763c7-caeb-4c26-b438-6050bd74d6ad\"\n },\n \"m_InputSlot\": {\n \"m_SlotId\": 0,\n \"m_NodeGUIDSerialized\": \"9020103b-dc00-455f-9621-c91c1f2a3824\"\n }\n}" + }, + { + "typeInfo": { + "fullName": "UnityEditor.Graphing.Edge" + }, + "JSONnodeData": "{\n \"m_OutputSlot\": {\n \"m_SlotId\": 0,\n \"m_NodeGUIDSerialized\": \"d5ead3cd-72df-4b1d-978c-bbe2da1f9114\"\n },\n \"m_InputSlot\": {\n \"m_SlotId\": 1,\n \"m_NodeGUIDSerialized\": \"6a5b01a8-4e84-4bb1-95d5-490ec32e5f20\"\n }\n}" + }, + { + "typeInfo": { + "fullName": "UnityEditor.Graphing.Edge" + }, + "JSONnodeData": "{\n \"m_OutputSlot\": {\n \"m_SlotId\": 0,\n \"m_NodeGUIDSerialized\": \"ef7748ab-c526-44e6-bac8-b831ff0c7ba8\"\n },\n \"m_InputSlot\": {\n \"m_SlotId\": 1,\n \"m_NodeGUIDSerialized\": \"309763c7-caeb-4c26-b438-6050bd74d6ad\"\n }\n}" + }, + { + "typeInfo": { + "fullName": "UnityEditor.Graphing.Edge" + }, + "JSONnodeData": "{\n \"m_OutputSlot\": {\n \"m_SlotId\": 0,\n \"m_NodeGUIDSerialized\": \"4a55b16e-96b0-493f-8e8d-1623b1be7c8e\"\n },\n \"m_InputSlot\": {\n \"m_SlotId\": 0,\n \"m_NodeGUIDSerialized\": \"6a5b01a8-4e84-4bb1-95d5-490ec32e5f20\"\n }\n}" + }, + { + "typeInfo": { + "fullName": "UnityEditor.Graphing.Edge" + }, + "JSONnodeData": "{\n \"m_OutputSlot\": {\n \"m_SlotId\": 0,\n \"m_NodeGUIDSerialized\": \"08462c90-488c-4bbf-aa3b-7eca6b276140\"\n },\n \"m_InputSlot\": {\n \"m_SlotId\": 0,\n \"m_NodeGUIDSerialized\": \"5cc2df0e-d3f8-4dc8-8d94-871bd6e3b627\"\n }\n}" + }, + { + "typeInfo": { + "fullName": "UnityEditor.Graphing.Edge" + }, + "JSONnodeData": "{\n \"m_OutputSlot\": {\n \"m_SlotId\": 0,\n \"m_NodeGUIDSerialized\": \"367af967-91be-4d7f-aaec-feaffa487fc6\"\n },\n \"m_InputSlot\": {\n \"m_SlotId\": 1,\n \"m_NodeGUIDSerialized\": \"5cc2df0e-d3f8-4dc8-8d94-871bd6e3b627\"\n }\n}" + }, + { + "typeInfo": { + "fullName": "UnityEditor.Graphing.Edge" + }, + "JSONnodeData": "{\n \"m_OutputSlot\": {\n \"m_SlotId\": 0,\n \"m_NodeGUIDSerialized\": \"b84f18a7-0ab0-4059-8df9-942d0e957217\"\n },\n \"m_InputSlot\": {\n \"m_SlotId\": 1,\n \"m_NodeGUIDSerialized\": \"2382f642-29e1-4e82-bbd3-a49f7ac84770\"\n }\n}" + } + ], + "m_PreviewData": { + "serializedMesh": { + "m_SerializedMesh": "", + "m_Guid": "" + } + }, + "m_Path": "" +} \ No newline at end of file diff --git a/Assets/ExampleAssets/Shaders/Paint1G_WAnim_Shader.ShaderGraph.meta b/Assets/ExampleAssets/Shaders/Paint1G_WAnim_Shader.ShaderGraph.meta new file mode 100644 index 0000000..a8fdd7f --- /dev/null +++ b/Assets/ExampleAssets/Shaders/Paint1G_WAnim_Shader.ShaderGraph.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 5e5eca56e1993e741b41ac9c687d01a5 +ScriptedImporter: + fileIDToRecycleName: + 4800000: MainAsset + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 625f186215c104763be7675aa2d941aa, type: 3} diff --git a/Assets/ExampleAssets/Textures.meta b/Assets/ExampleAssets/Textures.meta new file mode 100644 index 0000000..ea5a0d3 --- /dev/null +++ b/Assets/ExampleAssets/Textures.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 1cc500c8cdb999142b9017ebf0cf407d +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ExampleAssets/Textures/Concrete.meta b/Assets/ExampleAssets/Textures/Concrete.meta new file mode 100644 index 0000000..6da5453 --- /dev/null +++ b/Assets/ExampleAssets/Textures/Concrete.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 47c259102c9296845a85c9d7207b82f2 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ExampleAssets/Textures/Concrete/Ground_Albedo.tif b/Assets/ExampleAssets/Textures/Concrete/Ground_Albedo.tif new file mode 100644 index 0000000..c772d2a Binary files /dev/null and b/Assets/ExampleAssets/Textures/Concrete/Ground_Albedo.tif differ diff --git a/Assets/ExampleAssets/Textures/Concrete/Ground_Albedo.tif.meta b/Assets/ExampleAssets/Textures/Concrete/Ground_Albedo.tif.meta new file mode 100644 index 0000000..72820fc --- /dev/null +++ b/Assets/ExampleAssets/Textures/Concrete/Ground_Albedo.tif.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 87ce03bd447ccce48bbff87ac0d8355f +TextureImporter: + fileIDToRecycleName: {} + externalObjects: {} + serializedVersion: 6 + 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 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: 2 + mipBias: -100 + 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 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - serializedVersion: 2 + buildTarget: DefaultTexturePlatform + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Standalone + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: iPhone + maxTextureSize: 4096 + resizeAlgorithm: 0 + textureFormat: 32 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 1 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Android + maxTextureSize: 4096 + resizeAlgorithm: 0 + textureFormat: 34 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 1 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Windows Store Apps + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + vertices: [] + indices: + edges: [] + weights: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ExampleAssets/Textures/Concrete/Ground_MetallicOcculusionSmoothness.tif b/Assets/ExampleAssets/Textures/Concrete/Ground_MetallicOcculusionSmoothness.tif new file mode 100644 index 0000000..c5771c5 Binary files /dev/null and b/Assets/ExampleAssets/Textures/Concrete/Ground_MetallicOcculusionSmoothness.tif differ diff --git a/Assets/ExampleAssets/Textures/Concrete/Ground_MetallicOcculusionSmoothness.tif.meta b/Assets/ExampleAssets/Textures/Concrete/Ground_MetallicOcculusionSmoothness.tif.meta new file mode 100644 index 0000000..fb2c1b6 --- /dev/null +++ b/Assets/ExampleAssets/Textures/Concrete/Ground_MetallicOcculusionSmoothness.tif.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: a8d38587573a5f34c91c4ae0fbd8bfef +TextureImporter: + fileIDToRecycleName: {} + externalObjects: {} + serializedVersion: 6 + 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 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: 2 + mipBias: -100 + 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 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - serializedVersion: 2 + buildTarget: DefaultTexturePlatform + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Standalone + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: iPhone + maxTextureSize: 4096 + resizeAlgorithm: 0 + textureFormat: 33 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 1 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Android + maxTextureSize: 4096 + resizeAlgorithm: 0 + textureFormat: 47 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 1 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Windows Store Apps + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + vertices: [] + indices: + edges: [] + weights: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ExampleAssets/Textures/Concrete/Ground_Normal.tif b/Assets/ExampleAssets/Textures/Concrete/Ground_Normal.tif new file mode 100644 index 0000000..94c1a8f Binary files /dev/null and b/Assets/ExampleAssets/Textures/Concrete/Ground_Normal.tif differ diff --git a/Assets/ExampleAssets/Textures/Concrete/Ground_Normal.tif.meta b/Assets/ExampleAssets/Textures/Concrete/Ground_Normal.tif.meta new file mode 100644 index 0000000..8bee1d0 --- /dev/null +++ b/Assets/ExampleAssets/Textures/Concrete/Ground_Normal.tif.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: fab85e0cacda9644a99e5182a86b71f5 +TextureImporter: + fileIDToRecycleName: {} + externalObjects: {} + serializedVersion: 6 + 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 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 2 + aniso: 2 + mipBias: -100 + 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: 1 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - serializedVersion: 2 + buildTarget: DefaultTexturePlatform + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Standalone + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: iPhone + maxTextureSize: 4096 + resizeAlgorithm: 0 + textureFormat: 32 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 1 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Android + maxTextureSize: 4096 + resizeAlgorithm: 0 + textureFormat: 34 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 1 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Windows Store Apps + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + vertices: [] + indices: + edges: [] + weights: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ExampleAssets/Textures/Drywall.meta b/Assets/ExampleAssets/Textures/Drywall.meta new file mode 100644 index 0000000..01c20d3 --- /dev/null +++ b/Assets/ExampleAssets/Textures/Drywall.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 0389f6104fd857940908a1705ab749f3 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ExampleAssets/Textures/Drywall/DrywallPainted_Normal.tif b/Assets/ExampleAssets/Textures/Drywall/DrywallPainted_Normal.tif new file mode 100644 index 0000000..b862f6b Binary files /dev/null and b/Assets/ExampleAssets/Textures/Drywall/DrywallPainted_Normal.tif differ diff --git a/Assets/ExampleAssets/Textures/Drywall/DrywallPainted_Normal.tif.meta b/Assets/ExampleAssets/Textures/Drywall/DrywallPainted_Normal.tif.meta new file mode 100644 index 0000000..a4d8585 --- /dev/null +++ b/Assets/ExampleAssets/Textures/Drywall/DrywallPainted_Normal.tif.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 2cd242c9999e92b4ca96dab876cfaf13 +TextureImporter: + fileIDToRecycleName: {} + externalObjects: {} + serializedVersion: 6 + 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 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 2 + aniso: 2 + mipBias: -100 + 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: 1 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - serializedVersion: 2 + buildTarget: DefaultTexturePlatform + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Standalone + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: iPhone + maxTextureSize: 4096 + resizeAlgorithm: 0 + textureFormat: 32 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 1 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Android + maxTextureSize: 4096 + resizeAlgorithm: 0 + textureFormat: 34 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 1 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Windows Store Apps + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + vertices: [] + indices: + edges: [] + weights: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ExampleAssets/Textures/Drywall/Drywall_Albedo.tif b/Assets/ExampleAssets/Textures/Drywall/Drywall_Albedo.tif new file mode 100644 index 0000000..475602b Binary files /dev/null and b/Assets/ExampleAssets/Textures/Drywall/Drywall_Albedo.tif differ diff --git a/Assets/ExampleAssets/Textures/Drywall/Drywall_Albedo.tif.meta b/Assets/ExampleAssets/Textures/Drywall/Drywall_Albedo.tif.meta new file mode 100644 index 0000000..1061aeb --- /dev/null +++ b/Assets/ExampleAssets/Textures/Drywall/Drywall_Albedo.tif.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: eae496078d11426448124eaf8b285e6b +TextureImporter: + fileIDToRecycleName: {} + externalObjects: {} + serializedVersion: 6 + 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 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: 2 + mipBias: -100 + 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 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - serializedVersion: 2 + buildTarget: DefaultTexturePlatform + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Standalone + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: iPhone + maxTextureSize: 4096 + resizeAlgorithm: 0 + textureFormat: 33 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 1 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Android + maxTextureSize: 4096 + resizeAlgorithm: 0 + textureFormat: 47 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 1 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Windows Store Apps + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + vertices: [] + indices: + edges: [] + weights: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ExampleAssets/Textures/Drywall/Drywall_AlbedoSmoothness.tif b/Assets/ExampleAssets/Textures/Drywall/Drywall_AlbedoSmoothness.tif new file mode 100644 index 0000000..3057e9b Binary files /dev/null and b/Assets/ExampleAssets/Textures/Drywall/Drywall_AlbedoSmoothness.tif differ diff --git a/Assets/ExampleAssets/Textures/Drywall/Drywall_AlbedoSmoothness.tif.meta b/Assets/ExampleAssets/Textures/Drywall/Drywall_AlbedoSmoothness.tif.meta new file mode 100644 index 0000000..fc6242e --- /dev/null +++ b/Assets/ExampleAssets/Textures/Drywall/Drywall_AlbedoSmoothness.tif.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 3e11968c372730442aae3b4f7c909931 +TextureImporter: + fileIDToRecycleName: {} + externalObjects: {} + serializedVersion: 6 + 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 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: 2 + mipBias: -100 + 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 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - serializedVersion: 2 + buildTarget: DefaultTexturePlatform + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Standalone + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: iPhone + maxTextureSize: 4096 + resizeAlgorithm: 0 + textureFormat: 33 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 1 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Android + maxTextureSize: 4096 + resizeAlgorithm: 0 + textureFormat: 47 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 1 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Windows Store Apps + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + vertices: [] + indices: + edges: [] + weights: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ExampleAssets/Textures/Drywall/Drywall_Normal.tif b/Assets/ExampleAssets/Textures/Drywall/Drywall_Normal.tif new file mode 100644 index 0000000..811fede Binary files /dev/null and b/Assets/ExampleAssets/Textures/Drywall/Drywall_Normal.tif differ diff --git a/Assets/ExampleAssets/Textures/Drywall/Drywall_Normal.tif.meta b/Assets/ExampleAssets/Textures/Drywall/Drywall_Normal.tif.meta new file mode 100644 index 0000000..42e5d29 --- /dev/null +++ b/Assets/ExampleAssets/Textures/Drywall/Drywall_Normal.tif.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: e231e4c02c48ee14aafa55f7b1a843c1 +TextureImporter: + fileIDToRecycleName: {} + externalObjects: {} + serializedVersion: 6 + 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 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 2 + aniso: 2 + mipBias: -100 + 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: 1 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - serializedVersion: 2 + buildTarget: DefaultTexturePlatform + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Standalone + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: iPhone + maxTextureSize: 4096 + resizeAlgorithm: 0 + textureFormat: 32 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 1 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Android + maxTextureSize: 4096 + resizeAlgorithm: 0 + textureFormat: 34 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 1 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Windows Store Apps + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + vertices: [] + indices: + edges: [] + weights: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ExampleAssets/Textures/Metal.meta b/Assets/ExampleAssets/Textures/Metal.meta new file mode 100644 index 0000000..527850b --- /dev/null +++ b/Assets/ExampleAssets/Textures/Metal.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c805204817006b648aa2d0cb8f7861d8 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ExampleAssets/Textures/Metal/Metal_Albedo.tif b/Assets/ExampleAssets/Textures/Metal/Metal_Albedo.tif new file mode 100644 index 0000000..58fba42 Binary files /dev/null and b/Assets/ExampleAssets/Textures/Metal/Metal_Albedo.tif differ diff --git a/Assets/ExampleAssets/Textures/Metal/Metal_Albedo.tif.meta b/Assets/ExampleAssets/Textures/Metal/Metal_Albedo.tif.meta new file mode 100644 index 0000000..e05ab2b --- /dev/null +++ b/Assets/ExampleAssets/Textures/Metal/Metal_Albedo.tif.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 77583f99dea53b641804bb357092ec83 +TextureImporter: + fileIDToRecycleName: {} + externalObjects: {} + serializedVersion: 6 + 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 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: 2 + mipBias: -100 + 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 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - serializedVersion: 2 + buildTarget: DefaultTexturePlatform + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Standalone + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: iPhone + maxTextureSize: 4096 + resizeAlgorithm: 0 + textureFormat: 32 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 1 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Android + maxTextureSize: 4096 + resizeAlgorithm: 0 + textureFormat: 34 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 1 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Windows Store Apps + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + vertices: [] + indices: + edges: [] + weights: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ExampleAssets/Textures/Metal/Metal_MetallicSmoothness.tif b/Assets/ExampleAssets/Textures/Metal/Metal_MetallicSmoothness.tif new file mode 100644 index 0000000..2fb0907 Binary files /dev/null and b/Assets/ExampleAssets/Textures/Metal/Metal_MetallicSmoothness.tif differ diff --git a/Assets/ExampleAssets/Textures/Metal/Metal_MetallicSmoothness.tif.meta b/Assets/ExampleAssets/Textures/Metal/Metal_MetallicSmoothness.tif.meta new file mode 100644 index 0000000..5357b8d --- /dev/null +++ b/Assets/ExampleAssets/Textures/Metal/Metal_MetallicSmoothness.tif.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 40da0395b61db4448b98bab66d6b549c +TextureImporter: + fileIDToRecycleName: {} + externalObjects: {} + serializedVersion: 6 + 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 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: 2 + mipBias: -100 + 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 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - serializedVersion: 2 + buildTarget: DefaultTexturePlatform + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Standalone + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: iPhone + maxTextureSize: 4096 + resizeAlgorithm: 0 + textureFormat: 33 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 1 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Android + maxTextureSize: 4096 + resizeAlgorithm: 0 + textureFormat: 47 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 1 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Windows Store Apps + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + vertices: [] + indices: + edges: [] + weights: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ExampleAssets/Textures/Metal/Metal_Normal.tif b/Assets/ExampleAssets/Textures/Metal/Metal_Normal.tif new file mode 100644 index 0000000..95b4c0e Binary files /dev/null and b/Assets/ExampleAssets/Textures/Metal/Metal_Normal.tif differ diff --git a/Assets/ExampleAssets/Textures/Metal/Metal_Normal.tif.meta b/Assets/ExampleAssets/Textures/Metal/Metal_Normal.tif.meta new file mode 100644 index 0000000..09659e7 --- /dev/null +++ b/Assets/ExampleAssets/Textures/Metal/Metal_Normal.tif.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 3b0b7c1f4ac9f6b499e27cf84e722ff4 +TextureImporter: + fileIDToRecycleName: {} + externalObjects: {} + serializedVersion: 6 + 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 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 2 + aniso: 2 + mipBias: -100 + 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: 1 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - serializedVersion: 2 + buildTarget: DefaultTexturePlatform + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Standalone + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: iPhone + maxTextureSize: 4096 + resizeAlgorithm: 0 + textureFormat: 32 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 1 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Android + maxTextureSize: 4096 + resizeAlgorithm: 0 + textureFormat: 34 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 1 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Windows Store Apps + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + vertices: [] + indices: + edges: [] + weights: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ExampleAssets/Textures/Plastic.meta b/Assets/ExampleAssets/Textures/Plastic.meta new file mode 100644 index 0000000..f84eb23 --- /dev/null +++ b/Assets/ExampleAssets/Textures/Plastic.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 64d6ecb2a87dd444b85a7ff79b149c04 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ExampleAssets/Textures/Plastic/Elastic_MetallicOcculusionSmoothness.tif b/Assets/ExampleAssets/Textures/Plastic/Elastic_MetallicOcculusionSmoothness.tif new file mode 100644 index 0000000..70b365e Binary files /dev/null and b/Assets/ExampleAssets/Textures/Plastic/Elastic_MetallicOcculusionSmoothness.tif differ diff --git a/Assets/ExampleAssets/Textures/Plastic/Elastic_MetallicOcculusionSmoothness.tif.meta b/Assets/ExampleAssets/Textures/Plastic/Elastic_MetallicOcculusionSmoothness.tif.meta new file mode 100644 index 0000000..4947620 --- /dev/null +++ b/Assets/ExampleAssets/Textures/Plastic/Elastic_MetallicOcculusionSmoothness.tif.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: f5df2fb0c070b57429f8ca23b216093b +TextureImporter: + fileIDToRecycleName: {} + externalObjects: {} + serializedVersion: 6 + 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 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: 2 + mipBias: -100 + 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 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - serializedVersion: 2 + buildTarget: DefaultTexturePlatform + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Standalone + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: iPhone + maxTextureSize: 4096 + resizeAlgorithm: 0 + textureFormat: 33 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 1 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Android + maxTextureSize: 4096 + resizeAlgorithm: 0 + textureFormat: 47 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 1 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Windows Store Apps + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + vertices: [] + indices: + edges: [] + weights: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ExampleAssets/Textures/Plastic/Elastic_Normal.tif b/Assets/ExampleAssets/Textures/Plastic/Elastic_Normal.tif new file mode 100644 index 0000000..f937ea2 Binary files /dev/null and b/Assets/ExampleAssets/Textures/Plastic/Elastic_Normal.tif differ diff --git a/Assets/ExampleAssets/Textures/Plastic/Elastic_Normal.tif.meta b/Assets/ExampleAssets/Textures/Plastic/Elastic_Normal.tif.meta new file mode 100644 index 0000000..e1a822d --- /dev/null +++ b/Assets/ExampleAssets/Textures/Plastic/Elastic_Normal.tif.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: db17334dfe5991a4bbe241ee9a728c38 +TextureImporter: + fileIDToRecycleName: {} + externalObjects: {} + serializedVersion: 6 + 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 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 2 + aniso: 2 + mipBias: -100 + 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: 1 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - serializedVersion: 2 + buildTarget: DefaultTexturePlatform + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Standalone + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: iPhone + maxTextureSize: 4096 + resizeAlgorithm: 0 + textureFormat: 32 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 1 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Android + maxTextureSize: 4096 + resizeAlgorithm: 0 + textureFormat: 34 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 1 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Windows Store Apps + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + vertices: [] + indices: + edges: [] + weights: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ExampleAssets/Textures/Plastic/PlasticRidges_Albedo.tif b/Assets/ExampleAssets/Textures/Plastic/PlasticRidges_Albedo.tif new file mode 100644 index 0000000..49acdcb Binary files /dev/null and b/Assets/ExampleAssets/Textures/Plastic/PlasticRidges_Albedo.tif differ diff --git a/Assets/ExampleAssets/Textures/Plastic/PlasticRidges_Albedo.tif.meta b/Assets/ExampleAssets/Textures/Plastic/PlasticRidges_Albedo.tif.meta new file mode 100644 index 0000000..94e1517 --- /dev/null +++ b/Assets/ExampleAssets/Textures/Plastic/PlasticRidges_Albedo.tif.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: ecb23393a0d1b424a82fff68a4c00a66 +TextureImporter: + fileIDToRecycleName: {} + externalObjects: {} + serializedVersion: 6 + 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 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: 2 + mipBias: -100 + 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 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - serializedVersion: 2 + buildTarget: DefaultTexturePlatform + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Standalone + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: iPhone + maxTextureSize: 4096 + resizeAlgorithm: 0 + textureFormat: 32 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 1 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Android + maxTextureSize: 4096 + resizeAlgorithm: 0 + textureFormat: 34 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 1 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Windows Store Apps + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + vertices: [] + indices: + edges: [] + weights: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ExampleAssets/Textures/Plastic/PlasticRidges_MetallicOcculusionSmoothness.tif b/Assets/ExampleAssets/Textures/Plastic/PlasticRidges_MetallicOcculusionSmoothness.tif new file mode 100644 index 0000000..c90a00b Binary files /dev/null and b/Assets/ExampleAssets/Textures/Plastic/PlasticRidges_MetallicOcculusionSmoothness.tif differ diff --git a/Assets/ExampleAssets/Textures/Plastic/PlasticRidges_MetallicOcculusionSmoothness.tif.meta b/Assets/ExampleAssets/Textures/Plastic/PlasticRidges_MetallicOcculusionSmoothness.tif.meta new file mode 100644 index 0000000..54a5473 --- /dev/null +++ b/Assets/ExampleAssets/Textures/Plastic/PlasticRidges_MetallicOcculusionSmoothness.tif.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 201c1f77fe872924a86132486bc97e82 +TextureImporter: + fileIDToRecycleName: {} + externalObjects: {} + serializedVersion: 6 + 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 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: 2 + mipBias: -100 + 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 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - serializedVersion: 2 + buildTarget: DefaultTexturePlatform + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Standalone + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: iPhone + maxTextureSize: 4096 + resizeAlgorithm: 0 + textureFormat: 33 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 1 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Android + maxTextureSize: 4096 + resizeAlgorithm: 0 + textureFormat: 47 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 1 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Windows Store Apps + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + vertices: [] + indices: + edges: [] + weights: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ExampleAssets/Textures/Plastic/PlasticRidges_Normal.tif b/Assets/ExampleAssets/Textures/Plastic/PlasticRidges_Normal.tif new file mode 100644 index 0000000..e9dcf6b Binary files /dev/null and b/Assets/ExampleAssets/Textures/Plastic/PlasticRidges_Normal.tif differ diff --git a/Assets/ExampleAssets/Textures/Plastic/PlasticRidges_Normal.tif.meta b/Assets/ExampleAssets/Textures/Plastic/PlasticRidges_Normal.tif.meta new file mode 100644 index 0000000..b72f5f6 --- /dev/null +++ b/Assets/ExampleAssets/Textures/Plastic/PlasticRidges_Normal.tif.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: c021d051fa0cba84282b4a2577aa85c5 +TextureImporter: + fileIDToRecycleName: {} + externalObjects: {} + serializedVersion: 6 + 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 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 2 + aniso: 2 + mipBias: -100 + 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: 1 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - serializedVersion: 2 + buildTarget: DefaultTexturePlatform + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Standalone + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: iPhone + maxTextureSize: 4096 + resizeAlgorithm: 0 + textureFormat: 32 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 1 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Android + maxTextureSize: 4096 + resizeAlgorithm: 0 + textureFormat: 34 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 1 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Windows Store Apps + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + vertices: [] + indices: + edges: [] + weights: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ExampleAssets/Textures/Plastic/PlasticRough_Albedo.tif b/Assets/ExampleAssets/Textures/Plastic/PlasticRough_Albedo.tif new file mode 100644 index 0000000..e1089a3 Binary files /dev/null and b/Assets/ExampleAssets/Textures/Plastic/PlasticRough_Albedo.tif differ diff --git a/Assets/ExampleAssets/Textures/Plastic/PlasticRough_Albedo.tif.meta b/Assets/ExampleAssets/Textures/Plastic/PlasticRough_Albedo.tif.meta new file mode 100644 index 0000000..6effa73 --- /dev/null +++ b/Assets/ExampleAssets/Textures/Plastic/PlasticRough_Albedo.tif.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 7b82d12aad56cc445b99fd1cf06a232d +TextureImporter: + fileIDToRecycleName: {} + externalObjects: {} + serializedVersion: 6 + 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 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: 2 + mipBias: -100 + 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 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - serializedVersion: 2 + buildTarget: DefaultTexturePlatform + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Standalone + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: iPhone + maxTextureSize: 4096 + resizeAlgorithm: 0 + textureFormat: 32 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 1 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Android + maxTextureSize: 4096 + resizeAlgorithm: 0 + textureFormat: 34 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 1 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Windows Store Apps + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + vertices: [] + indices: + edges: [] + weights: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ExampleAssets/Textures/Plastic/PlasticRough_MetallicOcculusionSmoothness.tif b/Assets/ExampleAssets/Textures/Plastic/PlasticRough_MetallicOcculusionSmoothness.tif new file mode 100644 index 0000000..b0d1856 Binary files /dev/null and b/Assets/ExampleAssets/Textures/Plastic/PlasticRough_MetallicOcculusionSmoothness.tif differ diff --git a/Assets/ExampleAssets/Textures/Plastic/PlasticRough_MetallicOcculusionSmoothness.tif.meta b/Assets/ExampleAssets/Textures/Plastic/PlasticRough_MetallicOcculusionSmoothness.tif.meta new file mode 100644 index 0000000..c98bad2 --- /dev/null +++ b/Assets/ExampleAssets/Textures/Plastic/PlasticRough_MetallicOcculusionSmoothness.tif.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: ee7680f1374ab4449b6d5f6b2c2c1936 +TextureImporter: + fileIDToRecycleName: {} + externalObjects: {} + serializedVersion: 6 + 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 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: 2 + mipBias: -100 + 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 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - serializedVersion: 2 + buildTarget: DefaultTexturePlatform + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Standalone + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: iPhone + maxTextureSize: 4096 + resizeAlgorithm: 0 + textureFormat: 33 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 1 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Android + maxTextureSize: 4096 + resizeAlgorithm: 0 + textureFormat: 47 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 1 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Windows Store Apps + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + vertices: [] + indices: + edges: [] + weights: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ExampleAssets/Textures/Plastic/Plastic_AlbedoSmoothness.tif b/Assets/ExampleAssets/Textures/Plastic/Plastic_AlbedoSmoothness.tif new file mode 100644 index 0000000..e33e419 Binary files /dev/null and b/Assets/ExampleAssets/Textures/Plastic/Plastic_AlbedoSmoothness.tif differ diff --git a/Assets/ExampleAssets/Textures/Plastic/Plastic_AlbedoSmoothness.tif.meta b/Assets/ExampleAssets/Textures/Plastic/Plastic_AlbedoSmoothness.tif.meta new file mode 100644 index 0000000..f093db2 --- /dev/null +++ b/Assets/ExampleAssets/Textures/Plastic/Plastic_AlbedoSmoothness.tif.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 1f89fed00b6bc904c861ab847a811cb8 +TextureImporter: + fileIDToRecycleName: {} + externalObjects: {} + serializedVersion: 6 + 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 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: 2 + mipBias: -100 + 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 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - serializedVersion: 2 + buildTarget: DefaultTexturePlatform + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Standalone + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: iPhone + maxTextureSize: 4096 + resizeAlgorithm: 0 + textureFormat: 33 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 1 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Android + maxTextureSize: 4096 + resizeAlgorithm: 0 + textureFormat: 47 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 1 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Windows Store Apps + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + vertices: [] + indices: + edges: [] + weights: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ExampleAssets/Textures/Plastic/Plastic_Normal.tif b/Assets/ExampleAssets/Textures/Plastic/Plastic_Normal.tif new file mode 100644 index 0000000..1c0909c Binary files /dev/null and b/Assets/ExampleAssets/Textures/Plastic/Plastic_Normal.tif differ diff --git a/Assets/ExampleAssets/Textures/Plastic/Plastic_Normal.tif.meta b/Assets/ExampleAssets/Textures/Plastic/Plastic_Normal.tif.meta new file mode 100644 index 0000000..b938ee5 --- /dev/null +++ b/Assets/ExampleAssets/Textures/Plastic/Plastic_Normal.tif.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: e109905c411b0f84e82eaaf2705ece30 +TextureImporter: + fileIDToRecycleName: {} + externalObjects: {} + serializedVersion: 6 + 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 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 2 + aniso: 2 + mipBias: -100 + 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: 1 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - serializedVersion: 2 + buildTarget: DefaultTexturePlatform + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Standalone + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: iPhone + maxTextureSize: 4096 + resizeAlgorithm: 0 + textureFormat: 32 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 1 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Android + maxTextureSize: 4096 + resizeAlgorithm: 0 + textureFormat: 34 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 1 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Windows Store Apps + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + vertices: [] + indices: + edges: [] + weights: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ExampleAssets/Textures/Props.meta b/Assets/ExampleAssets/Textures/Props.meta new file mode 100644 index 0000000..387505d --- /dev/null +++ b/Assets/ExampleAssets/Textures/Props.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: abf7b1f1f7dfcba4c9243d4679f56e71 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ExampleAssets/Textures/Props/Construction_Light.meta b/Assets/ExampleAssets/Textures/Props/Construction_Light.meta new file mode 100644 index 0000000..5bc0386 --- /dev/null +++ b/Assets/ExampleAssets/Textures/Props/Construction_Light.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: fa8e348df46f41a40866e1358c46c58a +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ExampleAssets/Textures/Props/Construction_Light/ConstructionLight_Albedo.tif b/Assets/ExampleAssets/Textures/Props/Construction_Light/ConstructionLight_Albedo.tif new file mode 100644 index 0000000..dadd77e Binary files /dev/null and b/Assets/ExampleAssets/Textures/Props/Construction_Light/ConstructionLight_Albedo.tif differ diff --git a/Assets/ExampleAssets/Textures/Props/Construction_Light/ConstructionLight_Albedo.tif.meta b/Assets/ExampleAssets/Textures/Props/Construction_Light/ConstructionLight_Albedo.tif.meta new file mode 100644 index 0000000..1629746 --- /dev/null +++ b/Assets/ExampleAssets/Textures/Props/Construction_Light/ConstructionLight_Albedo.tif.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 2ec6e1532acb1254f9f3797b5d82db44 +TextureImporter: + fileIDToRecycleName: {} + externalObjects: {} + serializedVersion: 6 + 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 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: 2 + mipBias: -100 + 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 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - serializedVersion: 2 + buildTarget: DefaultTexturePlatform + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Standalone + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: iPhone + maxTextureSize: 4096 + resizeAlgorithm: 0 + textureFormat: 32 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 1 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Android + maxTextureSize: 4096 + resizeAlgorithm: 0 + textureFormat: 34 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 1 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Windows Store Apps + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + vertices: [] + indices: + edges: [] + weights: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ExampleAssets/Textures/Props/Construction_Light/ConstructionLight_MetallicOcculusionSmoothness.tif b/Assets/ExampleAssets/Textures/Props/Construction_Light/ConstructionLight_MetallicOcculusionSmoothness.tif new file mode 100644 index 0000000..5084bcd Binary files /dev/null and b/Assets/ExampleAssets/Textures/Props/Construction_Light/ConstructionLight_MetallicOcculusionSmoothness.tif differ diff --git a/Assets/ExampleAssets/Textures/Props/Construction_Light/ConstructionLight_MetallicOcculusionSmoothness.tif.meta b/Assets/ExampleAssets/Textures/Props/Construction_Light/ConstructionLight_MetallicOcculusionSmoothness.tif.meta new file mode 100644 index 0000000..8a35c9c --- /dev/null +++ b/Assets/ExampleAssets/Textures/Props/Construction_Light/ConstructionLight_MetallicOcculusionSmoothness.tif.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 9a81f1a59f171804e84fce76584bdcb7 +TextureImporter: + fileIDToRecycleName: {} + externalObjects: {} + serializedVersion: 6 + 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 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: 2 + mipBias: -100 + 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 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - serializedVersion: 2 + buildTarget: DefaultTexturePlatform + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Standalone + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: iPhone + maxTextureSize: 4096 + resizeAlgorithm: 0 + textureFormat: 33 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 1 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Android + maxTextureSize: 4096 + resizeAlgorithm: 0 + textureFormat: 47 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 1 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Windows Store Apps + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + vertices: [] + indices: + edges: [] + weights: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ExampleAssets/Textures/Props/Hammer.meta b/Assets/ExampleAssets/Textures/Props/Hammer.meta new file mode 100644 index 0000000..f658b2b --- /dev/null +++ b/Assets/ExampleAssets/Textures/Props/Hammer.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 65ba28c90924bf641b0800d7c3aa08eb +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ExampleAssets/Textures/Props/Hammer/Hammer_Albedo.tif b/Assets/ExampleAssets/Textures/Props/Hammer/Hammer_Albedo.tif new file mode 100644 index 0000000..7e03431 Binary files /dev/null and b/Assets/ExampleAssets/Textures/Props/Hammer/Hammer_Albedo.tif differ diff --git a/Assets/ExampleAssets/Textures/Props/Hammer/Hammer_Albedo.tif.meta b/Assets/ExampleAssets/Textures/Props/Hammer/Hammer_Albedo.tif.meta new file mode 100644 index 0000000..160c7d6 --- /dev/null +++ b/Assets/ExampleAssets/Textures/Props/Hammer/Hammer_Albedo.tif.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 59c8de363dc14c54986d0751c2c38342 +TextureImporter: + fileIDToRecycleName: {} + externalObjects: {} + serializedVersion: 6 + 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 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: 2 + mipBias: -100 + 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 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - serializedVersion: 2 + buildTarget: DefaultTexturePlatform + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Standalone + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: iPhone + maxTextureSize: 4096 + resizeAlgorithm: 0 + textureFormat: 32 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 1 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Android + maxTextureSize: 4096 + resizeAlgorithm: 0 + textureFormat: 34 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 1 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Windows Store Apps + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + vertices: [] + indices: + edges: [] + weights: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ExampleAssets/Textures/Props/Hammer/Hammer_MetallicOcculusionSmoothness.tif b/Assets/ExampleAssets/Textures/Props/Hammer/Hammer_MetallicOcculusionSmoothness.tif new file mode 100644 index 0000000..c29e05d Binary files /dev/null and b/Assets/ExampleAssets/Textures/Props/Hammer/Hammer_MetallicOcculusionSmoothness.tif differ diff --git a/Assets/ExampleAssets/Textures/Props/Hammer/Hammer_MetallicOcculusionSmoothness.tif.meta b/Assets/ExampleAssets/Textures/Props/Hammer/Hammer_MetallicOcculusionSmoothness.tif.meta new file mode 100644 index 0000000..66e6c9f --- /dev/null +++ b/Assets/ExampleAssets/Textures/Props/Hammer/Hammer_MetallicOcculusionSmoothness.tif.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 6c509e4ae024b5e4faeefb92dab5c812 +TextureImporter: + fileIDToRecycleName: {} + externalObjects: {} + serializedVersion: 6 + 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 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: 2 + mipBias: -100 + 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 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - serializedVersion: 2 + buildTarget: DefaultTexturePlatform + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Standalone + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: iPhone + maxTextureSize: 4096 + resizeAlgorithm: 0 + textureFormat: 33 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 1 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Android + maxTextureSize: 4096 + resizeAlgorithm: 0 + textureFormat: 47 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 1 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Windows Store Apps + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + vertices: [] + indices: + edges: [] + weights: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ExampleAssets/Textures/Props/Hammer/Hammer_Normal.tif b/Assets/ExampleAssets/Textures/Props/Hammer/Hammer_Normal.tif new file mode 100644 index 0000000..377f8d8 Binary files /dev/null and b/Assets/ExampleAssets/Textures/Props/Hammer/Hammer_Normal.tif differ diff --git a/Assets/ExampleAssets/Textures/Props/Hammer/Hammer_Normal.tif.meta b/Assets/ExampleAssets/Textures/Props/Hammer/Hammer_Normal.tif.meta new file mode 100644 index 0000000..436ce5a --- /dev/null +++ b/Assets/ExampleAssets/Textures/Props/Hammer/Hammer_Normal.tif.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: c517a9b1527aec343806327b47ad22df +TextureImporter: + fileIDToRecycleName: {} + externalObjects: {} + serializedVersion: 6 + 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 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 2 + aniso: 2 + mipBias: -100 + 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: 1 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - serializedVersion: 2 + buildTarget: DefaultTexturePlatform + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Standalone + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: iPhone + maxTextureSize: 4096 + resizeAlgorithm: 0 + textureFormat: 32 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 1 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Android + maxTextureSize: 4096 + resizeAlgorithm: 0 + textureFormat: 34 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 1 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Windows Store Apps + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + vertices: [] + indices: + edges: [] + weights: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ExampleAssets/Textures/Props/HardHat.meta b/Assets/ExampleAssets/Textures/Props/HardHat.meta new file mode 100644 index 0000000..4e6947d --- /dev/null +++ b/Assets/ExampleAssets/Textures/Props/HardHat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 2d8107af768e1c54aab35a9245f96fb1 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ExampleAssets/Textures/Props/HardHat/SafetyHat_Albedo.tif b/Assets/ExampleAssets/Textures/Props/HardHat/SafetyHat_Albedo.tif new file mode 100644 index 0000000..ba5219e Binary files /dev/null and b/Assets/ExampleAssets/Textures/Props/HardHat/SafetyHat_Albedo.tif differ diff --git a/Assets/ExampleAssets/Textures/Props/HardHat/SafetyHat_Albedo.tif.meta b/Assets/ExampleAssets/Textures/Props/HardHat/SafetyHat_Albedo.tif.meta new file mode 100644 index 0000000..d4e3231 --- /dev/null +++ b/Assets/ExampleAssets/Textures/Props/HardHat/SafetyHat_Albedo.tif.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: dd61af2ec9847eb4d8e17529fa61b143 +TextureImporter: + fileIDToRecycleName: {} + externalObjects: {} + serializedVersion: 6 + 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 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: 2 + mipBias: -100 + 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 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - serializedVersion: 2 + buildTarget: DefaultTexturePlatform + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Standalone + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: iPhone + maxTextureSize: 4096 + resizeAlgorithm: 0 + textureFormat: 32 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 1 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Android + maxTextureSize: 4096 + resizeAlgorithm: 0 + textureFormat: 34 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 1 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Windows Store Apps + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + vertices: [] + indices: + edges: [] + weights: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ExampleAssets/Textures/Props/HardHat/SafetyHat_MetallicOcculusionSmoothness.tif b/Assets/ExampleAssets/Textures/Props/HardHat/SafetyHat_MetallicOcculusionSmoothness.tif new file mode 100644 index 0000000..bb179b2 Binary files /dev/null and b/Assets/ExampleAssets/Textures/Props/HardHat/SafetyHat_MetallicOcculusionSmoothness.tif differ diff --git a/Assets/ExampleAssets/Textures/Props/HardHat/SafetyHat_MetallicOcculusionSmoothness.tif.meta b/Assets/ExampleAssets/Textures/Props/HardHat/SafetyHat_MetallicOcculusionSmoothness.tif.meta new file mode 100644 index 0000000..aef9c93 --- /dev/null +++ b/Assets/ExampleAssets/Textures/Props/HardHat/SafetyHat_MetallicOcculusionSmoothness.tif.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 6f61f8dd4499250438f1aa39448e860a +TextureImporter: + fileIDToRecycleName: {} + externalObjects: {} + serializedVersion: 6 + 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 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: 2 + mipBias: -100 + 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 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - serializedVersion: 2 + buildTarget: DefaultTexturePlatform + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Standalone + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: iPhone + maxTextureSize: 4096 + resizeAlgorithm: 0 + textureFormat: 33 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 1 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Android + maxTextureSize: 4096 + resizeAlgorithm: 0 + textureFormat: 47 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 1 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Windows Store Apps + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + vertices: [] + indices: + edges: [] + weights: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ExampleAssets/Textures/Props/HardHat/SafetyHat_Normal.tif b/Assets/ExampleAssets/Textures/Props/HardHat/SafetyHat_Normal.tif new file mode 100644 index 0000000..0f352b3 Binary files /dev/null and b/Assets/ExampleAssets/Textures/Props/HardHat/SafetyHat_Normal.tif differ diff --git a/Assets/ExampleAssets/Textures/Props/HardHat/SafetyHat_Normal.tif.meta b/Assets/ExampleAssets/Textures/Props/HardHat/SafetyHat_Normal.tif.meta new file mode 100644 index 0000000..8127e83 --- /dev/null +++ b/Assets/ExampleAssets/Textures/Props/HardHat/SafetyHat_Normal.tif.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: d608c45da8580c9408ee50eb9a8c40f3 +TextureImporter: + fileIDToRecycleName: {} + externalObjects: {} + serializedVersion: 6 + 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 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 2 + aniso: 2 + mipBias: -100 + 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: 1 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - serializedVersion: 2 + buildTarget: DefaultTexturePlatform + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Standalone + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: iPhone + maxTextureSize: 4096 + resizeAlgorithm: 0 + textureFormat: 32 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 1 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Android + maxTextureSize: 4096 + resizeAlgorithm: 0 + textureFormat: 34 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 1 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Windows Store Apps + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + vertices: [] + indices: + edges: [] + weights: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ExampleAssets/Textures/Props/Jigsaw.meta b/Assets/ExampleAssets/Textures/Props/Jigsaw.meta new file mode 100644 index 0000000..ae9b257 --- /dev/null +++ b/Assets/ExampleAssets/Textures/Props/Jigsaw.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f23328cbe6fee514b868007ab8567c3d +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ExampleAssets/Textures/Props/Jigsaw/Jigsaw_Albedo.tif b/Assets/ExampleAssets/Textures/Props/Jigsaw/Jigsaw_Albedo.tif new file mode 100644 index 0000000..dc1a7e7 Binary files /dev/null and b/Assets/ExampleAssets/Textures/Props/Jigsaw/Jigsaw_Albedo.tif differ diff --git a/Assets/ExampleAssets/Textures/Props/Jigsaw/Jigsaw_Albedo.tif.meta b/Assets/ExampleAssets/Textures/Props/Jigsaw/Jigsaw_Albedo.tif.meta new file mode 100644 index 0000000..af0a2cf --- /dev/null +++ b/Assets/ExampleAssets/Textures/Props/Jigsaw/Jigsaw_Albedo.tif.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: b3f247b26e080ca468f1daa963c192ee +TextureImporter: + fileIDToRecycleName: {} + externalObjects: {} + serializedVersion: 6 + 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 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: 2 + mipBias: -100 + 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 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - serializedVersion: 2 + buildTarget: DefaultTexturePlatform + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Standalone + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: iPhone + maxTextureSize: 4096 + resizeAlgorithm: 0 + textureFormat: 32 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 1 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Android + maxTextureSize: 4096 + resizeAlgorithm: 0 + textureFormat: 34 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 1 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Windows Store Apps + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + vertices: [] + indices: + edges: [] + weights: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ExampleAssets/Textures/Props/Jigsaw/Jigsaw_MetallicOcculusionSmoothness.tif b/Assets/ExampleAssets/Textures/Props/Jigsaw/Jigsaw_MetallicOcculusionSmoothness.tif new file mode 100644 index 0000000..e57a7f9 Binary files /dev/null and b/Assets/ExampleAssets/Textures/Props/Jigsaw/Jigsaw_MetallicOcculusionSmoothness.tif differ diff --git a/Assets/ExampleAssets/Textures/Props/Jigsaw/Jigsaw_MetallicOcculusionSmoothness.tif.meta b/Assets/ExampleAssets/Textures/Props/Jigsaw/Jigsaw_MetallicOcculusionSmoothness.tif.meta new file mode 100644 index 0000000..e54cecb --- /dev/null +++ b/Assets/ExampleAssets/Textures/Props/Jigsaw/Jigsaw_MetallicOcculusionSmoothness.tif.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 3017ed6fed9d3bb49ba99bf738e2d626 +TextureImporter: + fileIDToRecycleName: {} + externalObjects: {} + serializedVersion: 6 + 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 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: 2 + mipBias: -100 + 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 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - serializedVersion: 2 + buildTarget: DefaultTexturePlatform + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Standalone + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: iPhone + maxTextureSize: 4096 + resizeAlgorithm: 0 + textureFormat: 33 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 1 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Android + maxTextureSize: 4096 + resizeAlgorithm: 0 + textureFormat: 47 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 1 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Windows Store Apps + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + vertices: [] + indices: + edges: [] + weights: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ExampleAssets/Textures/Props/Jigsaw/Jigsaw_Normal.tif b/Assets/ExampleAssets/Textures/Props/Jigsaw/Jigsaw_Normal.tif new file mode 100644 index 0000000..6452fb7 Binary files /dev/null and b/Assets/ExampleAssets/Textures/Props/Jigsaw/Jigsaw_Normal.tif differ diff --git a/Assets/ExampleAssets/Textures/Props/Jigsaw/Jigsaw_Normal.tif.meta b/Assets/ExampleAssets/Textures/Props/Jigsaw/Jigsaw_Normal.tif.meta new file mode 100644 index 0000000..59aadc7 --- /dev/null +++ b/Assets/ExampleAssets/Textures/Props/Jigsaw/Jigsaw_Normal.tif.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 06969fc081d8cc146af6634f75abe652 +TextureImporter: + fileIDToRecycleName: {} + externalObjects: {} + serializedVersion: 6 + 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 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 2 + aniso: 2 + mipBias: -100 + 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: 1 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - serializedVersion: 2 + buildTarget: DefaultTexturePlatform + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Standalone + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: iPhone + maxTextureSize: 4096 + resizeAlgorithm: 0 + textureFormat: 32 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 1 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Android + maxTextureSize: 4096 + resizeAlgorithm: 0 + textureFormat: 34 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 1 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Windows Store Apps + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + vertices: [] + indices: + edges: [] + weights: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ExampleAssets/Textures/Props/Paint.meta b/Assets/ExampleAssets/Textures/Props/Paint.meta new file mode 100644 index 0000000..07b317d --- /dev/null +++ b/Assets/ExampleAssets/Textures/Props/Paint.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 661b3094cbb8d57488db75686cf31627 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ExampleAssets/Textures/Props/Paint/Paint1G_Albedo.tif b/Assets/ExampleAssets/Textures/Props/Paint/Paint1G_Albedo.tif new file mode 100644 index 0000000..2d0954a Binary files /dev/null and b/Assets/ExampleAssets/Textures/Props/Paint/Paint1G_Albedo.tif differ diff --git a/Assets/ExampleAssets/Textures/Props/Paint/Paint1G_Albedo.tif.meta b/Assets/ExampleAssets/Textures/Props/Paint/Paint1G_Albedo.tif.meta new file mode 100644 index 0000000..4e2e433 --- /dev/null +++ b/Assets/ExampleAssets/Textures/Props/Paint/Paint1G_Albedo.tif.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 2de0d72a6700bd94ea57111b29e246fc +TextureImporter: + fileIDToRecycleName: {} + externalObjects: {} + serializedVersion: 6 + 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 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: 2 + mipBias: -100 + 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 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - serializedVersion: 2 + buildTarget: DefaultTexturePlatform + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Standalone + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: iPhone + maxTextureSize: 4096 + resizeAlgorithm: 0 + textureFormat: 33 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 1 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Android + maxTextureSize: 4096 + resizeAlgorithm: 0 + textureFormat: 47 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 1 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Windows Store Apps + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + vertices: [] + indices: + edges: [] + weights: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ExampleAssets/Textures/Props/Paint/Paint1G_MetallicOcculusionRoughness.tif b/Assets/ExampleAssets/Textures/Props/Paint/Paint1G_MetallicOcculusionRoughness.tif new file mode 100644 index 0000000..ce6400e Binary files /dev/null and b/Assets/ExampleAssets/Textures/Props/Paint/Paint1G_MetallicOcculusionRoughness.tif differ diff --git a/Assets/ExampleAssets/Textures/Props/Paint/Paint1G_MetallicOcculusionRoughness.tif.meta b/Assets/ExampleAssets/Textures/Props/Paint/Paint1G_MetallicOcculusionRoughness.tif.meta new file mode 100644 index 0000000..b82a725 --- /dev/null +++ b/Assets/ExampleAssets/Textures/Props/Paint/Paint1G_MetallicOcculusionRoughness.tif.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: ca084ebab0cef7c4ba746cdb442f9c1e +TextureImporter: + fileIDToRecycleName: {} + externalObjects: {} + serializedVersion: 6 + 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 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: 2 + mipBias: -100 + 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 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - serializedVersion: 2 + buildTarget: DefaultTexturePlatform + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Standalone + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: iPhone + maxTextureSize: 4096 + resizeAlgorithm: 0 + textureFormat: 33 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 1 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Android + maxTextureSize: 4096 + resizeAlgorithm: 0 + textureFormat: 47 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 1 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Windows Store Apps + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + vertices: [] + indices: + edges: [] + weights: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ExampleAssets/Textures/Props/Paint/Paint1G_Normal.tif b/Assets/ExampleAssets/Textures/Props/Paint/Paint1G_Normal.tif new file mode 100644 index 0000000..285402f Binary files /dev/null and b/Assets/ExampleAssets/Textures/Props/Paint/Paint1G_Normal.tif differ diff --git a/Assets/ExampleAssets/Textures/Props/Paint/Paint1G_Normal.tif.meta b/Assets/ExampleAssets/Textures/Props/Paint/Paint1G_Normal.tif.meta new file mode 100644 index 0000000..42827c1 --- /dev/null +++ b/Assets/ExampleAssets/Textures/Props/Paint/Paint1G_Normal.tif.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: ac80c335ebd6dde4fa54a82050064545 +TextureImporter: + fileIDToRecycleName: {} + externalObjects: {} + serializedVersion: 6 + 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 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 2 + aniso: 2 + mipBias: -100 + 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: 1 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - serializedVersion: 2 + buildTarget: DefaultTexturePlatform + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Standalone + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: iPhone + maxTextureSize: 4096 + resizeAlgorithm: 0 + textureFormat: 32 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 1 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Android + maxTextureSize: 4096 + resizeAlgorithm: 0 + textureFormat: 34 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 1 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Windows Store Apps + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + vertices: [] + indices: + edges: [] + weights: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ExampleAssets/Textures/Props/Paint/Paint5G_AlbedoSmoothness.tif b/Assets/ExampleAssets/Textures/Props/Paint/Paint5G_AlbedoSmoothness.tif new file mode 100644 index 0000000..8c98e12 Binary files /dev/null and b/Assets/ExampleAssets/Textures/Props/Paint/Paint5G_AlbedoSmoothness.tif differ diff --git a/Assets/ExampleAssets/Textures/Props/Paint/Paint5G_AlbedoSmoothness.tif.meta b/Assets/ExampleAssets/Textures/Props/Paint/Paint5G_AlbedoSmoothness.tif.meta new file mode 100644 index 0000000..5c9806a --- /dev/null +++ b/Assets/ExampleAssets/Textures/Props/Paint/Paint5G_AlbedoSmoothness.tif.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 5d25a5cd577a4c54e94fdf9cc6f1a631 +TextureImporter: + fileIDToRecycleName: {} + externalObjects: {} + serializedVersion: 6 + 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 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: 2 + mipBias: -100 + 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 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - serializedVersion: 2 + buildTarget: DefaultTexturePlatform + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Standalone + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: iPhone + maxTextureSize: 4096 + resizeAlgorithm: 0 + textureFormat: 33 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 1 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Android + maxTextureSize: 4096 + resizeAlgorithm: 0 + textureFormat: 47 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 1 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Windows Store Apps + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + vertices: [] + indices: + edges: [] + weights: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ExampleAssets/Textures/Props/Paint/PaintAnimMask.tif b/Assets/ExampleAssets/Textures/Props/Paint/PaintAnimMask.tif new file mode 100644 index 0000000..3b27733 Binary files /dev/null and b/Assets/ExampleAssets/Textures/Props/Paint/PaintAnimMask.tif differ diff --git a/Assets/ExampleAssets/Textures/Props/Paint/PaintAnimMask.tif.meta b/Assets/ExampleAssets/Textures/Props/Paint/PaintAnimMask.tif.meta new file mode 100644 index 0000000..2f72b93 --- /dev/null +++ b/Assets/ExampleAssets/Textures/Props/Paint/PaintAnimMask.tif.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 5e98de278b2ccc14f89b76b85596a3f3 +TextureImporter: + fileIDToRecycleName: {} + externalObjects: {} + serializedVersion: 6 + 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 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: 2 + mipBias: -100 + 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 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - serializedVersion: 2 + buildTarget: DefaultTexturePlatform + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Standalone + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: iPhone + maxTextureSize: 4096 + resizeAlgorithm: 0 + textureFormat: 32 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 1 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Android + maxTextureSize: 4096 + resizeAlgorithm: 0 + textureFormat: 34 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 1 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Windows Store Apps + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + vertices: [] + indices: + edges: [] + weights: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ExampleAssets/Textures/Props/Paint/PaintLabel.tif b/Assets/ExampleAssets/Textures/Props/Paint/PaintLabel.tif new file mode 100644 index 0000000..1e62af3 Binary files /dev/null and b/Assets/ExampleAssets/Textures/Props/Paint/PaintLabel.tif differ diff --git a/Assets/ExampleAssets/Textures/Props/Paint/PaintLabel.tif.meta b/Assets/ExampleAssets/Textures/Props/Paint/PaintLabel.tif.meta new file mode 100644 index 0000000..26849de --- /dev/null +++ b/Assets/ExampleAssets/Textures/Props/Paint/PaintLabel.tif.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: e5c37ab0c7b37af4f981195d3caaf4b4 +TextureImporter: + fileIDToRecycleName: {} + externalObjects: {} + serializedVersion: 6 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 1 + 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 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 3 + mipBias: -100 + 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 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - serializedVersion: 2 + buildTarget: DefaultTexturePlatform + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Standalone + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: iPhone + maxTextureSize: 4096 + resizeAlgorithm: 0 + textureFormat: 32 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 1 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Android + maxTextureSize: 4096 + resizeAlgorithm: 0 + textureFormat: 34 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 1 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Windows Store Apps + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + vertices: [] + indices: + edges: [] + weights: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ExampleAssets/Textures/Props/Paint/Paintbrush_Albedo.tif b/Assets/ExampleAssets/Textures/Props/Paint/Paintbrush_Albedo.tif new file mode 100644 index 0000000..40c3b38 Binary files /dev/null and b/Assets/ExampleAssets/Textures/Props/Paint/Paintbrush_Albedo.tif differ diff --git a/Assets/ExampleAssets/Textures/Props/Paint/Paintbrush_Albedo.tif.meta b/Assets/ExampleAssets/Textures/Props/Paint/Paintbrush_Albedo.tif.meta new file mode 100644 index 0000000..f3b17ee --- /dev/null +++ b/Assets/ExampleAssets/Textures/Props/Paint/Paintbrush_Albedo.tif.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 4675081b0baf66345adc734388155502 +TextureImporter: + fileIDToRecycleName: {} + externalObjects: {} + serializedVersion: 6 + 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 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: 2 + mipBias: -100 + 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 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - serializedVersion: 2 + buildTarget: DefaultTexturePlatform + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Standalone + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: iPhone + maxTextureSize: 4096 + resizeAlgorithm: 0 + textureFormat: 32 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 1 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Android + maxTextureSize: 4096 + resizeAlgorithm: 0 + textureFormat: 34 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 1 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Windows Store Apps + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + vertices: [] + indices: + edges: [] + weights: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ExampleAssets/Textures/Props/Paint/Paintbrush_MetallicOcculusionSmoothness.tif b/Assets/ExampleAssets/Textures/Props/Paint/Paintbrush_MetallicOcculusionSmoothness.tif new file mode 100644 index 0000000..1f56b01 Binary files /dev/null and b/Assets/ExampleAssets/Textures/Props/Paint/Paintbrush_MetallicOcculusionSmoothness.tif differ diff --git a/Assets/ExampleAssets/Textures/Props/Paint/Paintbrush_MetallicOcculusionSmoothness.tif.meta b/Assets/ExampleAssets/Textures/Props/Paint/Paintbrush_MetallicOcculusionSmoothness.tif.meta new file mode 100644 index 0000000..0973439 --- /dev/null +++ b/Assets/ExampleAssets/Textures/Props/Paint/Paintbrush_MetallicOcculusionSmoothness.tif.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 888916a5e87c05948b1a97b3c0d42556 +TextureImporter: + fileIDToRecycleName: {} + externalObjects: {} + serializedVersion: 6 + 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 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: 2 + mipBias: -100 + 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 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - serializedVersion: 2 + buildTarget: DefaultTexturePlatform + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Standalone + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: iPhone + maxTextureSize: 4096 + resizeAlgorithm: 0 + textureFormat: 33 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 1 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Android + maxTextureSize: 4096 + resizeAlgorithm: 0 + textureFormat: 47 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 1 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Windows Store Apps + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + vertices: [] + indices: + edges: [] + weights: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ExampleAssets/Textures/Props/Paint/Paintbrush_Normal.tif b/Assets/ExampleAssets/Textures/Props/Paint/Paintbrush_Normal.tif new file mode 100644 index 0000000..fe975ca Binary files /dev/null and b/Assets/ExampleAssets/Textures/Props/Paint/Paintbrush_Normal.tif differ diff --git a/Assets/ExampleAssets/Textures/Props/Paint/Paintbrush_Normal.tif.meta b/Assets/ExampleAssets/Textures/Props/Paint/Paintbrush_Normal.tif.meta new file mode 100644 index 0000000..81ecf81 --- /dev/null +++ b/Assets/ExampleAssets/Textures/Props/Paint/Paintbrush_Normal.tif.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 09e745bf0b8ff6a4bb5785d14168289a +TextureImporter: + fileIDToRecycleName: {} + externalObjects: {} + serializedVersion: 6 + 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 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 2 + aniso: 2 + mipBias: -100 + 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: 1 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - serializedVersion: 2 + buildTarget: DefaultTexturePlatform + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Standalone + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: iPhone + maxTextureSize: 4096 + resizeAlgorithm: 0 + textureFormat: 32 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 1 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Android + maxTextureSize: 4096 + resizeAlgorithm: 0 + textureFormat: 34 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 1 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Windows Store Apps + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + vertices: [] + indices: + edges: [] + weights: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ExampleAssets/Textures/Wood.meta b/Assets/ExampleAssets/Textures/Wood.meta new file mode 100644 index 0000000..4e33de1 --- /dev/null +++ b/Assets/ExampleAssets/Textures/Wood.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: cebb473fb6009324ea0c85fcc4debbdf +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ExampleAssets/Textures/Wood/OBS_Albedo.tif b/Assets/ExampleAssets/Textures/Wood/OBS_Albedo.tif new file mode 100644 index 0000000..c5999b6 Binary files /dev/null and b/Assets/ExampleAssets/Textures/Wood/OBS_Albedo.tif differ diff --git a/Assets/ExampleAssets/Textures/Wood/OBS_Albedo.tif.meta b/Assets/ExampleAssets/Textures/Wood/OBS_Albedo.tif.meta new file mode 100644 index 0000000..3e0771d --- /dev/null +++ b/Assets/ExampleAssets/Textures/Wood/OBS_Albedo.tif.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 7140a9bc83a12ea49a081dda89216fff +TextureImporter: + fileIDToRecycleName: {} + externalObjects: {} + serializedVersion: 6 + 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 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: 2 + mipBias: -100 + 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 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - serializedVersion: 2 + buildTarget: DefaultTexturePlatform + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Standalone + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: iPhone + maxTextureSize: 4096 + resizeAlgorithm: 0 + textureFormat: 32 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 1 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Android + maxTextureSize: 4096 + resizeAlgorithm: 0 + textureFormat: 34 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 1 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Windows Store Apps + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + vertices: [] + indices: + edges: [] + weights: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ExampleAssets/Textures/Wood/OBS_MetallicOcculusionSmoothness.tif b/Assets/ExampleAssets/Textures/Wood/OBS_MetallicOcculusionSmoothness.tif new file mode 100644 index 0000000..4ac7bbb Binary files /dev/null and b/Assets/ExampleAssets/Textures/Wood/OBS_MetallicOcculusionSmoothness.tif differ diff --git a/Assets/ExampleAssets/Textures/Wood/OBS_MetallicOcculusionSmoothness.tif.meta b/Assets/ExampleAssets/Textures/Wood/OBS_MetallicOcculusionSmoothness.tif.meta new file mode 100644 index 0000000..7d9c770 --- /dev/null +++ b/Assets/ExampleAssets/Textures/Wood/OBS_MetallicOcculusionSmoothness.tif.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 22638a9216f1ebf4cb43273a00879f51 +TextureImporter: + fileIDToRecycleName: {} + externalObjects: {} + serializedVersion: 6 + 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 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: 2 + mipBias: -100 + 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 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - serializedVersion: 2 + buildTarget: DefaultTexturePlatform + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Standalone + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: iPhone + maxTextureSize: 4096 + resizeAlgorithm: 0 + textureFormat: 33 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 1 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Android + maxTextureSize: 4096 + resizeAlgorithm: 0 + textureFormat: 47 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 1 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Windows Store Apps + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + vertices: [] + indices: + edges: [] + weights: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ExampleAssets/Textures/Wood/OBS_Normal.tif b/Assets/ExampleAssets/Textures/Wood/OBS_Normal.tif new file mode 100644 index 0000000..3163d72 Binary files /dev/null and b/Assets/ExampleAssets/Textures/Wood/OBS_Normal.tif differ diff --git a/Assets/ExampleAssets/Textures/Wood/OBS_Normal.tif.meta b/Assets/ExampleAssets/Textures/Wood/OBS_Normal.tif.meta new file mode 100644 index 0000000..a9fad0b --- /dev/null +++ b/Assets/ExampleAssets/Textures/Wood/OBS_Normal.tif.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: fcce267dfc966b6408dc2ebe0cfb60ed +TextureImporter: + fileIDToRecycleName: {} + externalObjects: {} + serializedVersion: 6 + 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 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 2 + aniso: 2 + mipBias: -100 + 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: 1 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - serializedVersion: 2 + buildTarget: DefaultTexturePlatform + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Standalone + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: iPhone + maxTextureSize: 4096 + resizeAlgorithm: 0 + textureFormat: 32 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 1 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Android + maxTextureSize: 4096 + resizeAlgorithm: 0 + textureFormat: 34 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 1 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Windows Store Apps + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + vertices: [] + indices: + edges: [] + weights: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ExampleAssets/Textures/Wood/Plywood_Albedo.tif b/Assets/ExampleAssets/Textures/Wood/Plywood_Albedo.tif new file mode 100644 index 0000000..5c1a098 Binary files /dev/null and b/Assets/ExampleAssets/Textures/Wood/Plywood_Albedo.tif differ diff --git a/Assets/ExampleAssets/Textures/Wood/Plywood_Albedo.tif.meta b/Assets/ExampleAssets/Textures/Wood/Plywood_Albedo.tif.meta new file mode 100644 index 0000000..cbbe012 --- /dev/null +++ b/Assets/ExampleAssets/Textures/Wood/Plywood_Albedo.tif.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 9644eb6aca67672449e2bcbb0eab8e84 +TextureImporter: + fileIDToRecycleName: {} + externalObjects: {} + serializedVersion: 6 + 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 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: 2 + mipBias: -100 + 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 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - serializedVersion: 2 + buildTarget: DefaultTexturePlatform + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Standalone + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: iPhone + maxTextureSize: 4096 + resizeAlgorithm: 0 + textureFormat: 32 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 1 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Android + maxTextureSize: 4096 + resizeAlgorithm: 0 + textureFormat: 34 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 1 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Windows Store Apps + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + vertices: [] + indices: + edges: [] + weights: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ExampleAssets/Textures/Wood/Plywood_MetallicOcculusionSmoothness.tif b/Assets/ExampleAssets/Textures/Wood/Plywood_MetallicOcculusionSmoothness.tif new file mode 100644 index 0000000..e2a4416 Binary files /dev/null and b/Assets/ExampleAssets/Textures/Wood/Plywood_MetallicOcculusionSmoothness.tif differ diff --git a/Assets/ExampleAssets/Textures/Wood/Plywood_MetallicOcculusionSmoothness.tif.meta b/Assets/ExampleAssets/Textures/Wood/Plywood_MetallicOcculusionSmoothness.tif.meta new file mode 100644 index 0000000..17814de --- /dev/null +++ b/Assets/ExampleAssets/Textures/Wood/Plywood_MetallicOcculusionSmoothness.tif.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 2e38f7921b7d7b1418ab63c08117ffb8 +TextureImporter: + fileIDToRecycleName: {} + externalObjects: {} + serializedVersion: 6 + 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 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: 2 + mipBias: -100 + 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 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - serializedVersion: 2 + buildTarget: DefaultTexturePlatform + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Standalone + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: iPhone + maxTextureSize: 4096 + resizeAlgorithm: 0 + textureFormat: 33 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 1 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Android + maxTextureSize: 4096 + resizeAlgorithm: 0 + textureFormat: 47 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 1 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Windows Store Apps + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + vertices: [] + indices: + edges: [] + weights: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ExampleAssets/Textures/Wood/Plywood_Normal.tif b/Assets/ExampleAssets/Textures/Wood/Plywood_Normal.tif new file mode 100644 index 0000000..1d2e873 Binary files /dev/null and b/Assets/ExampleAssets/Textures/Wood/Plywood_Normal.tif differ diff --git a/Assets/ExampleAssets/Textures/Wood/Plywood_Normal.tif.meta b/Assets/ExampleAssets/Textures/Wood/Plywood_Normal.tif.meta new file mode 100644 index 0000000..540cd83 --- /dev/null +++ b/Assets/ExampleAssets/Textures/Wood/Plywood_Normal.tif.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 2148396b133b56f40baa7ea4fd22982a +TextureImporter: + fileIDToRecycleName: {} + externalObjects: {} + serializedVersion: 6 + 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 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 2 + aniso: 2 + mipBias: -100 + 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: 1 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - serializedVersion: 2 + buildTarget: DefaultTexturePlatform + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Standalone + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: iPhone + maxTextureSize: 4096 + resizeAlgorithm: 0 + textureFormat: 32 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 1 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Android + maxTextureSize: 4096 + resizeAlgorithm: 0 + textureFormat: 34 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 1 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Windows Store Apps + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + vertices: [] + indices: + edges: [] + weights: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Jammo-Character.meta b/Assets/Jammo-Character.meta new file mode 100644 index 0000000..5f347a9 --- /dev/null +++ b/Assets/Jammo-Character.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: dba0998f014877947acab85debae565f +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Jammo-Character/Animations.meta b/Assets/Jammo-Character/Animations.meta new file mode 100644 index 0000000..661cc8e --- /dev/null +++ b/Assets/Jammo-Character/Animations.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 26552bc9bca1cb441aff43749198fd1a +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Jammo-Character/Animations/AnimatorController_Jamo.controller b/Assets/Jammo-Character/Animations/AnimatorController_Jamo.controller new file mode 100644 index 0000000..b78d219 --- /dev/null +++ b/Assets/Jammo-Character/Animations/AnimatorController_Jamo.controller @@ -0,0 +1,326 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!206 &-8017843642331918328 +BlendTree: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Blend Tree + m_Childs: + - serializedVersion: 2 + m_Motion: {fileID: 7400000, guid: 8086bf483fcb5224191109120cd0dc03, type: 2} + m_Threshold: 0 + m_Position: {x: 0, y: 0} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: Blend + m_Mirror: 0 + - serializedVersion: 2 + m_Motion: {fileID: 7400000, guid: d19e758bb93175945a76f03c6e803137, type: 2} + m_Threshold: 0.25 + m_Position: {x: 0, y: 0} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: Blend + m_Mirror: 0 + - serializedVersion: 2 + m_Motion: {fileID: 7400000, guid: 6bb3f56b719796048bfe0af7dda91336, type: 2} + m_Threshold: 0.6 + m_Position: {x: 0, y: 0} + m_TimeScale: 0.9 + m_CycleOffset: 0 + m_DirectBlendParameter: Blend + m_Mirror: 0 + m_BlendParameter: Blend + m_BlendParameterY: Blend + m_MinThreshold: 0 + m_MaxThreshold: 0.6 + m_UseAutomaticThresholds: 0 + m_NormalizedBlendValues: 0 + m_BlendType: 0 +--- !u!206 &-7050039448294522756 +BlendTree: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Blend Tree + m_Childs: + - serializedVersion: 2 + m_Motion: {fileID: 7400000, guid: 8086bf483fcb5224191109120cd0dc03, type: 2} + m_Threshold: 0 + m_Position: {x: 0, y: 0} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: Blend + m_Mirror: 0 + - serializedVersion: 2 + m_Motion: {fileID: 7400000, guid: 6bb3f56b719796048bfe0af7dda91336, type: 2} + m_Threshold: 0.25 + m_Position: {x: 0, y: 0.2} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: Blend + m_Mirror: 0 + - serializedVersion: 2 + m_Motion: {fileID: 7400000, guid: c4cc47503f3d29242b6272c114ba822e, type: 2} + m_Threshold: 0.5 + m_Position: {x: 0, y: -0.2} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: Blend + m_Mirror: 0 + - serializedVersion: 2 + m_Motion: {fileID: 7400000, guid: 60eb7c85d36416943b8138849b6f2d84, type: 2} + m_Threshold: 0.75 + m_Position: {x: -0.2, y: 0} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: Blend + m_Mirror: 0 + - serializedVersion: 2 + m_Motion: {fileID: 7400000, guid: bd66bd1e564e11b4a8c6fed735b5aa10, type: 2} + m_Threshold: 1 + m_Position: {x: 0.2, y: 0} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: Blend + m_Mirror: 0 + m_BlendParameter: X + m_BlendParameterY: Y + m_MinThreshold: 0 + m_MaxThreshold: 1 + m_UseAutomaticThresholds: 1 + m_NormalizedBlendValues: 0 + m_BlendType: 2 +--- !u!1101 &-5904577482151600265 +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: shooting + m_EventTreshold: 0 + m_DstStateMachine: {fileID: 0} + m_DstState: {fileID: 8323864833032332515} + m_Solo: 0 + m_Mute: 0 + m_IsExit: 0 + serializedVersion: 3 + m_TransitionDuration: 0.25 + m_TransitionOffset: 0 + m_ExitTime: 0.8369565 + m_HasExitTime: 0 + m_HasFixedDuration: 1 + m_InterruptionSource: 0 + m_OrderedInterruption: 1 + m_CanTransitionToSelf: 1 +--- !u!1101 &-788194962525229518 +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: shooting + m_EventTreshold: 0 + m_DstStateMachine: {fileID: 0} + m_DstState: {fileID: 6559091717608044577} + m_Solo: 0 + m_Mute: 0 + m_IsExit: 0 + serializedVersion: 3 + m_TransitionDuration: 0.25 + m_TransitionOffset: 0 + m_ExitTime: 0.81707317 + m_HasExitTime: 0 + m_HasFixedDuration: 1 + m_InterruptionSource: 0 + m_OrderedInterruption: 1 + m_CanTransitionToSelf: 1 +--- !u!1102 &-147722287955622700 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Test + m_Speed: 1 + m_CycleOffset: 0 + m_Transitions: [] + m_StateMachineBehaviours: [] + m_Position: {x: 50, y: 50, z: 0} + m_IKOnFeet: 0 + m_WriteDefaultValues: 1 + m_Mirror: 0 + m_SpeedParameterActive: 0 + m_MirrorParameterActive: 0 + m_CycleOffsetParameterActive: 0 + m_TimeParameterActive: 0 + m_Motion: {fileID: 7400000, guid: d19e758bb93175945a76f03c6e803137, 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: AnimatorController_Jamo + serializedVersion: 5 + m_AnimatorParameters: + - m_Name: Blend + m_Type: 1 + m_DefaultFloat: 0 + m_DefaultInt: 0 + m_DefaultBool: 0 + m_Controller: {fileID: 0} + - m_Name: X + m_Type: 1 + m_DefaultFloat: 0 + m_DefaultInt: 0 + m_DefaultBool: 0 + m_Controller: {fileID: 0} + - m_Name: Y + m_Type: 1 + m_DefaultFloat: 0 + m_DefaultInt: 0 + m_DefaultBool: 0 + m_Controller: {fileID: 0} + - m_Name: shooting + m_Type: 4 + m_DefaultFloat: 0 + m_DefaultInt: 0 + m_DefaultBool: 0 + m_Controller: {fileID: 0} + m_AnimatorLayers: + - serializedVersion: 5 + m_Name: Base Layer + m_StateMachine: {fileID: 7459675453670605269} + 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 &6559091717608044577 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: NormalStatus + m_Speed: 1 + m_CycleOffset: 0 + m_Transitions: + - {fileID: -5904577482151600265} + m_StateMachineBehaviours: [] + m_Position: {x: 50, y: 50, z: 0} + m_IKOnFeet: 0 + m_WriteDefaultValues: 1 + m_Mirror: 0 + m_SpeedParameterActive: 0 + m_MirrorParameterActive: 0 + m_CycleOffsetParameterActive: 0 + m_TimeParameterActive: 0 + m_Motion: {fileID: -8017843642331918328} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1107 &7459675453670605269 +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: 6559091717608044577} + m_Position: {x: 130, y: 110, z: 0} + - serializedVersion: 1 + m_State: {fileID: -147722287955622700} + m_Position: {x: 130, y: 230, z: 0} + - serializedVersion: 1 + m_State: {fileID: 8323864833032332515} + m_Position: {x: 130, y: 50, z: 0} + m_ChildStateMachines: [] + m_AnyStateTransitions: + - {fileID: 8974236960747973591} + m_EntryTransitions: [] + m_StateMachineTransitions: {} + m_StateMachineBehaviours: [] + m_AnyStatePosition: {x: 380, y: 110, z: 0} + m_EntryPosition: {x: -160, y: 200, z: 0} + m_ExitPosition: {x: 800, y: 120, z: 0} + m_ParentStateMachinePosition: {x: 800, y: 20, z: 0} + m_DefaultState: {fileID: 6559091717608044577} +--- !u!1102 &8323864833032332515 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Strafing + m_Speed: 1 + m_CycleOffset: 0 + m_Transitions: + - {fileID: -788194962525229518} + m_StateMachineBehaviours: [] + m_Position: {x: 50, y: 50, z: 0} + m_IKOnFeet: 0 + m_WriteDefaultValues: 1 + m_Mirror: 0 + m_SpeedParameterActive: 0 + m_MirrorParameterActive: 0 + m_CycleOffsetParameterActive: 0 + m_TimeParameterActive: 0 + m_Motion: {fileID: -7050039448294522756} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1101 &8974236960747973591 +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: normal + m_EventTreshold: 0 + m_DstStateMachine: {fileID: 0} + m_DstState: {fileID: 6559091717608044577} + m_Solo: 0 + m_Mute: 0 + m_IsExit: 0 + serializedVersion: 3 + m_TransitionDuration: 0.25 + m_TransitionOffset: 0 + m_ExitTime: 0.75 + m_HasExitTime: 0 + m_HasFixedDuration: 1 + m_InterruptionSource: 0 + m_OrderedInterruption: 1 + m_CanTransitionToSelf: 1 diff --git a/Assets/Jammo-Character/Animations/AnimatorController_Jamo.controller.meta b/Assets/Jammo-Character/Animations/AnimatorController_Jamo.controller.meta new file mode 100644 index 0000000..1efaefd --- /dev/null +++ b/Assets/Jammo-Character/Animations/AnimatorController_Jamo.controller.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 535d24752e3d6444da644e79e90ec2ca +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 9100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Jammo-Character/Animations/Default.meta b/Assets/Jammo-Character/Animations/Default.meta new file mode 100644 index 0000000..a828e64 --- /dev/null +++ b/Assets/Jammo-Character/Animations/Default.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: af649c378c243224f85a315a25a02b2a +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Jammo-Character/Animations/Default/a_Idle.anim b/Assets/Jammo-Character/Animations/Default/a_Idle.anim new file mode 100644 index 0000000..44c3ed4 --- /dev/null +++ b/Assets/Jammo-Character/Animations/Default/a_Idle.anim @@ -0,0 +1,2589 @@ +%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: a_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, 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.033333335 + 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: Armature.001 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.03737857, y: 0.36615998, z: 0.01102516, w: 0.92973554} + inSlope: {x: -0.00437323, y: 0.0060671563, z: 0.0022228248, w: -0.0025928018} + outSlope: {x: -0.00437323, y: 0.0060671563, z: 0.0022228248, w: -0.0025928018} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6333334 + value: {x: -0.03866077, y: 0.3657431, z: 0.011564202, w: 0.9298406} + inSlope: {x: 0.0048532384, y: -0.0035928225, z: -0.0024741027, w: 0.001646878} + outSlope: {x: 0.0048532384, y: -0.0035928225, z: -0.0024741027, w: 0.001646878} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9666668 + value: {x: -0.037366986, y: 0.36617362, z: 0.011002532, w: 0.9297309} + inSlope: {x: 0.0025593794, y: 0.00001341101, z: -0.0009397486, w: 0.000109076216} + outSlope: {x: 0.0025593794, y: 0.00001341101, z: -0.0009397486, w: 0.000109076216} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.050509237, y: -0.039223026, z: 0.011009862, w: 0.9978924} + inSlope: {x: -0.0007752701, y: -0.000055432316, z: -0.00033262183, w: 0.0000411272} + outSlope: {x: -0.0007752701, y: -0.000055432316, z: -0.00033262183, w: 0.0000411272} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6333334 + value: {x: 0.049743272, y: -0.039201252, z: 0.010873915, w: 0.9979332} + inSlope: {x: 0.004208222, y: 0.00014422476, z: 0.00046712393, w: -0.0002092125} + outSlope: {x: 0.004208222, y: 0.00014422476, z: 0.00046712393, w: -0.0002092125} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9666668 + value: {x: 0.050540797, y: -0.03923686, z: 0.010954723, w: 0.99789083} + inSlope: {x: 0.00056404475, y: 0.000056996792, z: 0.000049676615, w: -0.00002682202} + outSlope: {x: 0.00056404475, y: 0.000056996792, z: 0.000049676615, w: -0.00002682202} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.10063449, y: -0.08101744, z: 0.018551832, w: 0.9914458} + inSlope: {x: -0.0015252827, y: -0.000044479963, z: -0.00032130626, w: 0.00015735625} + outSlope: {x: -0.0015252827, y: -0.000044479963, z: -0.00032130626, w: 0.00015735625} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3666668 + value: {x: 0.096763894, y: -0.080437765, z: 0.017391812, w: 0.9918992} + inSlope: {x: 0.008317411, y: -0.00038556888, z: 0.0025174194, w: -0.00088602235} + outSlope: {x: 0.008317411, y: -0.00038556888, z: 0.0025174194, w: -0.00088602235} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9666668 + value: {x: 0.10069759, y: -0.081045814, z: 0.018447751, w: 0.991439} + inSlope: {x: 0.001127419, y: 0.000040903582, z: 0.00023608965, w: -0.00011622875} + outSlope: {x: 0.001127419, y: 0.000040903582, z: 0.00023608965, w: -0.00011622875} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.08818795, y: -0.08124372, z: 0.01753393, w: 0.9926303} + inSlope: {x: -0.0015315412, y: -0.000046044584, z: -0.00032130626, w: 0.00013768673} + outSlope: {x: -0.0015315412, y: -0.000046044584, z: -0.00032130626, w: 0.00013768673} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3666668 + value: {x: 0.08431189, y: -0.080649495, z: 0.016381264, w: 0.99303514} + inSlope: {x: 0.008327022, y: -0.00041842592, z: 0.002512055, w: -0.0007823104} + outSlope: {x: 0.008327022, y: -0.00041842592, z: 0.002512055, w: -0.0007823104} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9666668 + value: {x: 0.08825117, y: -0.081270725, z: 0.017429486, w: 0.9926243} + inSlope: {x: 0.0011314423, y: 0.000038444894, z: 0.00023653668, w: -0.00010192367} + outSlope: {x: 0.0011314423, y: 0.000038444894, z: 0.00023653668, w: -0.00010192367} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.012052105, y: 0.011098238, z: -0.0021851747, w: 0.9998634} + inSlope: {x: 0.009233755, y: -0.000062836334, z: 0.0010453281, w: 0.00011444091} + outSlope: {x: 0.009233755, y: -0.000062836334, z: 0.0010453281, w: 0.00011444091} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000001 + value: {x: 0.011648112, y: 0.010577723, z: -0.0014851516, w: 0.9998751} + inSlope: {x: -0.0076629915, y: -0.00012602191, z: -0.00009423353, w: 0.00008940701} + outSlope: {x: -0.0076629915, y: -0.00012602191, z: -0.00009423353, w: 0.00008940701} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9666668 + value: {x: -0.01205167, y: 0.011030833, z: -0.0021983648, w: 0.99986416} + inSlope: {x: -0.0060063163, y: -0.00061481097, z: 0.000044291257, w: -0.00006437285} + outSlope: {x: -0.0060063163, y: -0.00061481097, z: 0.000044291257, w: -0.00006437285} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.0009797239, y: -0.17525768, z: 0.027473629, w: 0.9841387} + inSlope: {x: 0.008858868, y: 0.005623698, z: -0.0031024215, w: 0.0010764599} + outSlope: {x: 0.008858868, y: 0.005623698, z: -0.0031024215, w: 0.0010764599} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6333334 + value: {x: 0.0113855, y: -0.17562564, z: 0.019205466, w: 0.9842038} + inSlope: {x: -0.080307335, y: -0.006882102, z: -0.0052924207, w: -0.00020474211} + outSlope: {x: -0.080307335, y: -0.006882102, z: -0.0052924207, w: -0.00020474211} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.016048515, y: -0.17672509, z: 0.016348206, w: 0.98399365} + inSlope: {x: 0.011543121, y: -0.004716222, z: 0.015911298, w: -0.00092357484} + outSlope: {x: 0.011543121, y: -0.004716222, z: 0.015911298, w: -0.00092357484} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9666668 + value: {x: 0.0009906257, y: -0.1752561, z: 0.027534807, w: 0.98413724} + inSlope: {x: 0.009961656, y: -0.0036795342, z: 0.0018298764, w: -0.0007152539} + outSlope: {x: 0.009961656, y: -0.0036795342, z: 0.0018298764, w: -0.0007152539} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.06928724, y: 0, z: -0, w: 0.99759674} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: -0.06928724, y: 0, z: -0, w: 0.99759674} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head/mixamorig:HeadTop_End + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.40506425, y: -0.45798013, z: 0.59357256, w: 0.5233056} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.40506425, y: -0.45798013, z: 0.59357256, w: 0.5233056} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head/mixamorig:LeftEar + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.40506425, y: 0.45798013, z: -0.59357256, w: 0.5233056} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.40506425, y: 0.45798013, z: -0.59357256, w: 0.5233056} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head/mixamorig:RightEar + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.4852892, y: -0.50013953, z: 0.50714666, w: 0.5071066} + inSlope: {x: 0.0031068919, y: 0.0020062923, z: -0.0034850833, w: 0.0024908779} + outSlope: {x: 0.0031068919, y: 0.0020062923, z: -0.0034850833, w: 0.0024908779} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0333334 + value: {x: 0.46425766, y: -0.5226601, z: 0.49920365, w: 0.51194435} + inSlope: {x: 0.043872856, y: 0.045638643, z: 0.0097793285, w: -0.0027295956} + outSlope: {x: 0.043872856, y: 0.045638643, z: 0.0097793285, w: -0.0027295956} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9666668 + value: {x: 0.48529086, y: -0.50014037, z: 0.50714713, w: 0.50710374} + inSlope: {x: 0.0041359556, y: 0.003928532, z: 0.000464915, w: -0.0005471692} + outSlope: {x: 0.0041359556, y: 0.003928532, z: 0.000464915, w: -0.0005471692} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.53901666, y: 0.113815255, z: -0.0010943015, w: 0.8345693} + inSlope: {x: -0.0034350154, y: -0.0012141465, z: -0.0028709134, w: 0.0023800132} + outSlope: {x: -0.0034350154, y: -0.0012141465, z: -0.0028709134, w: 0.0023800132} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.55325305, y: 0.10288179, z: -0.0016783419, w: 0.8266339} + inSlope: {x: -0.023506008, y: 0.008492217, z: -0.0069906902, w: 0.014664546} + outSlope: {x: -0.023506008, y: 0.008492217, z: -0.0069906902, w: 0.014664546} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9666668 + value: {x: 0.5390199, y: 0.11376181, z: -0.0010695687, w: 0.8345746} + inSlope: {x: -0.005670175, y: 0.0032255715, z: -0.0058817915, w: 0.0032186424} + outSlope: {x: -0.005670175, y: 0.0032255715, z: -0.0058817915, w: 0.0032186424} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.02129544, y: -0.003548826, z: -0.40892637, w: 0.912312} + inSlope: {x: 0.0004002638, y: 0.0012223677, z: -0.0031927226, w: -0.0014358758} + outSlope: {x: 0.0004002638, y: 0.0012223677, z: -0.0031927226, w: -0.0014358758} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.029160457, y: -0.009285407, z: -0.42282194, w: 0.9056959} + inSlope: {x: -0.00687318, y: 0.0053701648, z: 0.012220141, w: 0.005982218} + outSlope: {x: -0.00687318, y: 0.0053701648, z: 0.012220141, w: 0.005982218} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9666668 + value: {x: 0.021141242, y: -0.0034853288, z: -0.40894106, w: 0.9123092} + inSlope: {x: -0.0011180312, y: 0.00022735853, z: 0.0042146333, w: 0.0019168804} + outSlope: {x: -0.0011180312, y: 0.00022735853, z: 0.0042146333, w: 0.0019168804} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.16290498, y: -0.18352282, z: -0.0023035645, w: 0.9694205} + inSlope: {x: 0.004639327, y: 0.0043541193, z: 0.0017313728, w: 0.001605749} + outSlope: {x: 0.004639327, y: 0.0043541193, z: 0.0017313728, w: 0.001605749} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.099833935, y: -0.18226658, z: 0.004728031, w: 0.9781563} + inSlope: {x: -0.021422891, y: 0.0019012378, z: -0.008954986, w: -0.0017926074} + outSlope: {x: -0.021422891, y: 0.0019012378, z: -0.008954986, w: -0.0017926074} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9666668 + value: {x: -0.1629018, y: -0.18350492, z: -0.0023342979, w: 0.9694243} + inSlope: {x: -0.03195799, y: -0.000060349543, z: -0.0017659296, w: -0.0053679803} + outSlope: {x: -0.03195799, y: -0.000060349543, z: -0.0017659296, w: -0.0053679803} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.25888777, y: -0.21664503, z: -0.28504884, w: 0.89710045} + inSlope: {x: 0.019007025, y: -0.022565423, z: 0.019942222, w: -0.0046223397} + outSlope: {x: 0.019007025, y: -0.022565423, z: 0.019942222, w: -0.0046223397} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6333334 + value: {x: 0.26079822, y: -0.22224775, z: -0.2720995, w: 0.8991953} + inSlope: {x: 0.002052778, y: -0.007942462, z: 0.019440198, w: 0.0033321988} + outSlope: {x: 0.002052778, y: -0.007942462, z: 0.019440198, w: 0.0033321988} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4333334 + value: {x: 0.258929, y: -0.21969806, z: -0.27919272, w: 0.89818704} + inSlope: {x: 0.01119734, y: -0.007258735, z: -0.005624151, w: -0.0067484444} + outSlope: {x: 0.01119734, y: -0.007258735, z: -0.005624151, w: -0.0067484444} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9666668 + value: {x: 0.25888988, y: -0.21664672, z: -0.28504595, w: 0.8971003} + inSlope: {x: 0.001939232, y: 0.000030398289, z: 0.0009736393, w: -0.00024318631} + outSlope: {x: 0.001939232, y: 0.000030398289, z: 0.0009736393, w: -0.00024318631} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.002646152, y: -0.13443339, z: 0.032004815, w: 0.9904021} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9666668 + value: {x: -0.002646152, y: -0.13443339, z: 0.032004815, w: 0.9904021} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.000000029852178, y: -0.043534193, z: 0.000000046415348, w: 0.9990519} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.000000029852178, y: -0.043534193, z: 0.000000046415348, w: 0.9990519} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2/mixamorig:LeftHandThumb3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.020066848, y: 0.04093227, z: 0.014504506, w: 0.9988551} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.020066848, y: 0.04093227, z: 0.014504506, w: 0.9988551} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2/mixamorig:LeftHandThumb3/mixamorig:LeftHandThumb4 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.029439183, y: 0.0380105, z: -0.090052605, w: 0.9947759} + inSlope: {x: 0.020712351, y: -0.0021554902, z: 0.00026665628, w: -0.000513196} + outSlope: {x: 0.020712351, y: -0.0021554902, z: 0.00026665628, w: -0.000513196} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.04384291, y: 0.037830308, z: -0.09096719, w: 0.9941688} + inSlope: {x: 0.0076886727, y: -0.00029146625, z: -0.0030254226, w: -0.0006017095} + outSlope: {x: 0.0076886727, y: -0.00029146625, z: -0.0030254226, w: -0.0006017095} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9666667 + value: {x: 0.06299008, y: 0.03585313, z: -0.09322575, w: 0.9930034} + inSlope: {x: 0.16905746, y: -0.016388144, z: -0.01817936, w: -0.011825871} + outSlope: {x: 0.16905746, y: -0.016388144, z: -0.01817936, w: -0.011825871} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4333334 + value: {x: 0.04158804, y: 0.037509564, z: -0.091219, w: 0.99425477} + inSlope: {x: -0.100937486, y: 0.009320518, z: 0.007429279, w: 0.004602675} + outSlope: {x: -0.100937486, y: 0.009320518, z: 0.007429279, w: 0.004602675} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9666668 + value: {x: 0.029453298, y: 0.03791444, z: -0.090154655, w: 0.99476993} + inSlope: {x: -0.0000051967663, y: -0.00000022351684, z: -0.0000011175841, + w: 0} + outSlope: {x: -0.0000051967663, y: -0.00000022351684, z: -0.0000011175841, + w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.14247237, y: -0.006145533, z: 0.011306244, w: 0.98971516} + inSlope: {x: 0.00092893833, y: -0.000009234062, z: 0.00004562549, w: -0.00013411045} + outSlope: {x: 0.00092893833, y: -0.000009234062, z: 0.00004562549, w: -0.00013411045} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7666667 + value: {x: 0.15508263, y: -0.005814537, z: 0.010283089, w: 0.9878309} + inSlope: {x: -0.003618744, y: 0.00043875037, z: -0.00012149559, w: 0.0005722041} + outSlope: {x: -0.003618744, y: 0.00043875037, z: -0.00012149559, w: 0.0005722041} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.19612816, y: -0.004521836, z: 0.0066340202, w: 0.9805454} + inSlope: {x: 0.2538537, y: 0.007832799, z: -0.022537775, w: -0.050395988} + outSlope: {x: 0.2538537, y: 0.007832799, z: -0.022537775, w: -0.050395988} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333334 + value: {x: 0.14624298, y: -0.005995809, z: 0.011047752, w: 0.9891689} + inSlope: {x: -0.02681854, y: -0.00081027235, z: 0.002352565, w: 0.0039464273} + outSlope: {x: -0.02681854, y: -0.00081027235, z: 0.002352565, w: 0.0039464273} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9666668 + value: {x: 0.14248694, y: -0.0060968543, z: 0.011324374, w: 0.98971313} + inSlope: {x: -0.0017952872, y: 0.0000169314, z: -0.000078789686, w: 0.00025927954} + outSlope: {x: -0.0017952872, y: 0.0000169314, z: -0.000078789686, w: 0.00025927954} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.000000022760513, y: 0.000000009330513, z: -0.000000012038417, + 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.033333335 + value: {x: 0.000000022760513, y: 0.000000009330513, z: -0.000000012038417, + 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: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2/mixamorig:LeftHandIndex3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.044488586, y: -0.00000004266307, z: 0.000000010700742, w: 0.9990099} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.044488586, y: -0.00000004266307, z: 0.000000010700742, w: 0.9990099} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2/mixamorig:LeftHandIndex3/mixamorig:LeftHandIndex4 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.11844597, y: 0.014457783, z: 0.05658926, w: 0.9912413} + inSlope: {x: 0.00954531, y: 0.0011956784, z: -0.0031037626, w: -0.0009834766} + outSlope: {x: 0.00954531, y: 0.0011956784, z: -0.0031037626, w: -0.0009834766} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.12914036, y: 0.018624486, z: 0.04273963, w: 0.9905298} + inSlope: {x: -0.01728149, y: -0.0049856724, z: 0.0177221, w: 0.0015842929} + outSlope: {x: -0.01728149, y: -0.0049856724, z: 0.0177221, w: 0.0015842929} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9666668 + value: {x: 0.11845228, y: 0.014494838, z: 0.056597594, w: 0.9912395} + inSlope: {x: 0.00020161219, y: -0.00095469627, z: 0.00419474, w: -0.00024855073} + outSlope: {x: 0.00020161219, y: -0.00095469627, z: 0.00419474, w: -0.00024855073} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.19013472, y: -0.011733202, z: -0.0068158437, w: 0.98166424} + inSlope: {x: 0.0024081764, y: 0.000015450642, z: -0.00010267831, w: -0.00046670434} + outSlope: {x: 0.0024081764, y: 0.000015450642, z: -0.00010267831, w: -0.00046670434} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6333334 + value: {x: 0.20121025, y: -0.011616534, z: -0.007504819, w: 0.97945046} + inSlope: {x: 0.013023941, y: 0.0011498717, z: -0.0016742239, w: -0.002688473} + outSlope: {x: 0.013023941, y: 0.0011498717, z: -0.0016742239, w: -0.002688473} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.22859398, y: -0.011213638, z: -0.009400882, w: 0.9734119} + inSlope: {x: 0.5534372, y: 0.0077519612, z: -0.038024925, w: -0.130983} + outSlope: {x: 0.5534372, y: 0.0077519612, z: -0.038024925, w: -0.130983} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.26103646, y: -0.010752557, z: -0.011633282, w: 0.965199} + inSlope: {x: -0.15389742, y: -0.0022152094, z: 0.010601268, w: 0.040799942} + outSlope: {x: -0.15389742, y: -0.0022152094, z: 0.010601268, w: 0.040799942} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9666667 + value: {x: 0.2086133, y: -0.011490141, z: -0.008029537, w: 0.97789776} + inSlope: {x: -0.22595263, y: -0.003088022, z: 0.015498398, w: 0.049029935} + outSlope: {x: -0.22595263, y: -0.003088022, z: 0.015498398, w: 0.049029935} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.20222874, y: -0.011573591, z: -0.0075866245, w: 0.97924054} + inSlope: {x: -0.015958935, y: -0.000095917, z: 0.0008531738, w: 0.0033009085} + outSlope: {x: -0.015958935, y: -0.000095917, z: 0.0008531738, w: 0.0033009085} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9666668 + value: {x: 0.19013399, y: -0.011656317, z: -0.006824689, w: 0.98166525} + inSlope: {x: -0.0022678017, y: -0.000009052432, z: 0.00009822168, w: 0.0004398811} + outSlope: {x: -0.0022678017, y: -0.000009052432, z: 0.00009822168, w: 0.0004398811} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.0000013290806, y: 0.002925688, z: 0.00044960633, w: 0.99999565} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: -0.0000013290806, y: 0.002925688, z: 0.00044960633, w: 0.99999565} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2/mixamorig:LeftHandMiddle3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.010558604, y: -0.0028612756, z: -0.0028610702, w: 0.9999361} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.010558604, y: -0.0028612756, z: -0.0028610702, w: 0.9999361} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2/mixamorig:LeftHandMiddle3/mixamorig:LeftHandMiddle4 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.2853372, y: 0.006463922, z: 0.1375692, w: 0.94848067} + inSlope: {x: 0.009546875, y: 0.0016973772, z: -0.0015981494, w: -0.0026518104} + outSlope: {x: 0.009546875, y: 0.0016973772, z: -0.0015981494, w: -0.0026518104} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.2965484, y: 0.013865447, z: 0.1254008, w: 0.9466475} + inSlope: {x: -0.016891673, y: -0.008824658, z: 0.017616207, w: 0.0030872256} + outSlope: {x: -0.016891673, y: -0.008824658, z: 0.017616207, w: 0.0030872256} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9666668 + value: {x: 0.28533626, y: 0.006505905, z: 0.1375572, w: 0.94848245} + inSlope: {x: -0.0025257403, y: -0.00044287066, z: 0.00022262277, w: 0.00073134707} + outSlope: {x: -0.0025257403, y: -0.00044287066, z: 0.00022262277, w: 0.00073134707} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.33737767, y: -0.011501206, z: -0.04150582, w: 0.9403836} + inSlope: {x: 0.004661679, y: -0.000018328426, z: -0.00035952774, w: -0.0016897916} + outSlope: {x: 0.004661679, y: -0.000018328426, z: -0.00035952774, w: -0.0016897916} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3000001 + value: {x: 0.34690902, y: -0.011906565, z: -0.04144753, w: 0.9369069} + inSlope: {x: -0.017054843, y: 0.00088458497, z: -0.00021552687, w: 0.0063166083} + outSlope: {x: -0.017054843, y: 0.00088458497, z: -0.00021552687, w: 0.0063166083} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9666668 + value: {x: 0.3373758, y: -0.011487026, z: -0.041533735, w: 0.94038326} + inSlope: {x: -0.0017058805, y: 0.000005587921, z: 0.00012997504, w: 0.0006186946} + outSlope: {x: -0.0017058805, y: 0.000005587921, z: 0.00012997504, w: 0.0006186946} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 2.0816682e-17, y: -1.4444476e-34, z: -6.938894e-18, 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.033333335 + value: {x: 2.0816682e-17, y: -1.4444476e-34, z: -6.938894e-18, 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: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2/mixamorig:LeftHandPinky3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.04451906, y: -0.000000046632405, z: 0.000000008835368, w: 0.99900854} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.04451906, y: -0.000000046632405, z: 0.000000008835368, w: 0.99900854} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2/mixamorig:LeftHandPinky3/mixamorig:LeftHandPinky4 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.5331825, y: 0.4513025, z: -0.47845784, w: 0.5320907} + inSlope: {x: -0.0077515836, y: 0.0076085324, z: 0.0025105474, w: 0.003569126} + outSlope: {x: -0.0077515836, y: 0.0076085324, z: 0.0025105474, w: 0.003569126} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9333334 + value: {x: 0.5070094, y: 0.47921664, z: -0.4710323, w: 0.5398347} + inSlope: {x: 0.030952692, y: -0.03149271, z: -0.008752941, w: -0.008746683} + outSlope: {x: 0.030952692, y: -0.03149271, z: -0.008752941, w: -0.008746683} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9666668 + value: {x: 0.5331624, y: 0.45128328, z: -0.47846746, w: 0.5321185} + inSlope: {x: 0.0050979718, y: -0.0050005186, z: -0.0016388254, w: -0.0023406683} + outSlope: {x: 0.0050979718, y: -0.0050005186, z: -0.0016388254, w: -0.0023406683} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.48889887, y: -0.06311312, z: -0.22511962, w: 0.84042597} + inSlope: {x: 0.004172623, y: 0.002773851, z: 0.007928163, w: -0.00009655952} + outSlope: {x: 0.004172623, y: 0.002773851, z: 0.007928163, w: -0.00009655952} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9333334 + value: {x: 0.5178066, y: -0.039146204, z: -0.22092098, w: 0.82555306} + inSlope: {x: -0.0063961735, y: -0.0076268623, z: -0.00132926, w: 0.0032955399} + outSlope: {x: -0.0063961735, y: -0.0076268623, z: -0.00132926, w: 0.0032955399} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9666668 + value: {x: 0.48890036, y: -0.06312125, z: -0.22511652, w: 0.8404253} + inSlope: {x: -0.000796614, y: -0.0037349663, z: 0.0001792605, w: 0.00023066936} + outSlope: {x: -0.000796614, y: -0.0037349663, z: 0.0001792605, w: 0.00023066936} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.0736736, y: -0.077456295, z: 0.34885487, w: 0.93106014} + inSlope: {x: 0.0076024975, y: 0.010859369, z: 0.0040760636, w: -0.0012284516} + outSlope: {x: 0.0076024975, y: 0.010859369, z: 0.0040760636, w: -0.0012284516} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9666667 + value: {x: 0.09415722, y: -0.0462625, z: 0.3563129, w: 0.9284586} + inSlope: {x: -0.011308093, y: -0.017996188, z: 0.0038977005, w: -0.0012463343} + outSlope: {x: -0.011308093, y: -0.017996188, z: 0.0038977005, w: -0.0012463343} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9666668 + value: {x: 0.07369694, y: -0.077447094, z: 0.3488549, w: 0.93105906} + inSlope: {x: -0.0023131757, y: -0.007711778, z: -0.0032150662, w: 0.00074744027} + outSlope: {x: -0.0023131757, y: -0.007711778, z: -0.0032150662, w: 0.00074744027} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.112002924, y: 0.10891626, z: 0.06899333, w: 0.98530835} + inSlope: {x: -0.010379254, y: -0.0061364467, z: -0.0051328535, w: 0.0022155046} + outSlope: {x: -0.010379254, y: -0.0061364467, z: -0.0051328535, w: 0.0022155046} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5666667 + value: {x: 0.11081821, y: 0.09531147, z: 0.05815087, w: 0.98754925} + inSlope: {x: 0.05059887, y: -0.024163015, z: -0.00844214, w: -0.0028485062} + outSlope: {x: 0.05059887, y: -0.024163015, z: -0.00844214, w: -0.0028485062} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7333335 + value: {x: 0.1162778, y: 0.10726681, z: 0.07275404, w: 0.9847234} + inSlope: {x: -0.01903328, y: 0.018644687, z: -0.002058041, w: 0.00036835752} + outSlope: {x: -0.01903328, y: 0.018644687, z: -0.002058041, w: 0.00036835752} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9666668 + value: {x: 0.11200357, y: 0.108916156, z: 0.06899301, w: 0.98530835} + inSlope: {x: -0.007505472, y: 0.0016609536, z: -0.016924694, w: 0.0018614482} + outSlope: {x: -0.007505472, y: 0.0016609536, z: -0.016924694, w: 0.0018614482} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.1795027, y: 0.081749775, z: 0.29634726, w: 0.9344914} + inSlope: {x: -0.017846972, y: -0.022265015, z: -0.032081008, w: 0.015512108} + outSlope: {x: -0.017846972, y: -0.022265015, z: -0.032081008, w: 0.015512108} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.17863823, y: 0.08115832, z: 0.2943763, w: 0.93533117} + inSlope: {x: -0.011949021, y: -0.018123021, z: 0.013513863, w: -0.00039428344} + outSlope: {x: -0.011949021, y: -0.018123021, z: 0.013513863, w: -0.00039428344} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666668 + value: {x: 0.18005362, y: 0.08189245, z: 0.29950708, w: 0.9333648} + inSlope: {x: -0.01002518, y: -0.014682046, z: -0.0085575655, w: 0.0059804176} + outSlope: {x: -0.01002518, y: -0.014682046, z: -0.0085575655, w: 0.0059804176} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7333335 + value: {x: 0.17807285, y: 0.07995875, z: 0.29586843, w: 0.9350714} + inSlope: {x: -0.009319993, y: -0.01010789, z: -0.012719465, w: 0.0066679623} + outSlope: {x: -0.009319993, y: -0.01010789, z: -0.012719465, w: 0.0066679623} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9666668 + value: {x: 0.17950207, y: 0.08174932, z: 0.29634765, w: 0.9344914} + inSlope: {x: 0.00529869, y: 0.008003243, z: -0.001978571, w: -0.001088974} + outSlope: {x: 0.00529869, y: 0.008003243, z: -0.001978571, w: -0.001088974} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.08043334, y: 0.14491053, z: -0.19282395, w: 0.96713513} + inSlope: {x: 0.018832011, y: 0.006628185, z: 0.010282247, w: -0.00051677227} + outSlope: {x: 0.018832011, y: 0.006628185, z: 0.010282247, w: -0.00051677227} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6333334 + value: {x: 0.08057448, y: 0.14544538, z: -0.19634695, w: 0.9663339} + inSlope: {x: -0.008481258, y: 0.0006899989, z: 0.03611863, w: 0.007940233} + outSlope: {x: -0.008481258, y: 0.0006899989, z: 0.03611863, w: 0.007940233} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7333335 + value: {x: 0.08044952, y: 0.14514138, z: -0.19132508, w: 0.9673968} + inSlope: {x: 0.006389234, y: 0.002101731, z: 0.0033654948, w: -0.00017970797} + outSlope: {x: 0.006389234, y: 0.002101731, z: 0.0033654948, w: -0.00017970797} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9666668 + value: {x: 0.080449365, y: 0.144897, z: -0.19282083, w: 0.96713644} + inSlope: {x: 0.001965607, y: 0.00014796814, z: -0.003013454, w: -0.0007867793} + outSlope: {x: 0.001965607, y: 0.00014796814, z: -0.003013454, w: -0.0007867793} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.00000007002527, y: 0.043534335, z: -0.000000026769452, w: 0.9990519} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: -0.00000007002527, y: 0.043534335, z: -0.000000026769452, w: 0.9990519} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2/mixamorig:RightHandThumb3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.02006678, y: -0.040932428, z: -0.01450449, w: 0.9988551} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.02006678, y: -0.040932428, z: -0.01450449, w: 0.9988551} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2/mixamorig:RightHandThumb3/mixamorig:RightHandThumb4 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.03555003, y: -0.033309303, z: 0.018900625, w: 0.9986338} + inSlope: {x: -0.020697711, y: -0.0016658752, z: 0.004689004, w: 0.0005847215} + outSlope: {x: -0.020697711, y: -0.0016658752, z: 0.004689004, w: 0.0005847215} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.86666673 + value: {x: 0.033153288, y: -0.033248477, z: 0.018784069, w: 0.99872047} + inSlope: {x: 0.020329645, y: -0.005679468, z: 0.018801957, w: -0.0012293463} + outSlope: {x: 0.020329645, y: -0.005679468, z: 0.018801957, w: -0.0012293463} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4333334 + value: {x: 0.036803458, y: -0.03383044, z: 0.020556845, w: 0.99853814} + inSlope: {x: -0.004150722, y: 0.0021437015, z: -0.0077528767, w: 0.00038623848} + outSlope: {x: -0.004150722, y: 0.0021437015, z: -0.0077528767, w: 0.00038623848} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7 + value: {x: 0.04970939, y: -0.033216193, z: 0.020649787, w: 0.99799764} + inSlope: {x: -0.07242325, y: -0.0005272209, z: -0.008968264, w: 0.0037452537} + outSlope: {x: -0.07242325, y: -0.0005272209, z: -0.008968264, w: 0.0037452537} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9666668 + value: {x: 0.035551988, y: -0.033336494, z: 0.018918931, w: 0.9986325} + inSlope: {x: -0.0017879112, y: -0.00006549043, z: 0.00006459637, w: 0.000060796578} + outSlope: {x: -0.0017879112, y: -0.00006549043, z: 0.00006459637, w: 0.000060796578} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.14690115, y: 0.007010383, z: -0.014230973, w: 0.989024} + inSlope: {x: -0.009289383, y: -0.00011100433, z: 0.0006240885, w: 0.001387596} + outSlope: {x: -0.009289383, y: -0.00011100433, z: 0.0006240885, w: 0.001387596} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4333334 + value: {x: 0.14614478, y: 0.0070191505, z: -0.014237468, w: 0.98913586} + inSlope: {x: 0.0077278987, y: -0.0003214882, z: 0.00087621703, w: -0.001129211} + outSlope: {x: 0.0077278987, y: -0.0003214882, z: 0.00087621703, w: -0.001129211} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.18111223, y: 0.00608416, z: -0.011862742, w: 0.9833721} + inSlope: {x: 0.37272942, y: -0.010360795, z: 0.025393311, w: -0.06743517} + outSlope: {x: 0.37272942, y: -0.010360795, z: 0.025393311, w: -0.06743517} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9000001 + value: {x: 0.14713264, y: 0.006987181, z: -0.014175023, w: 0.9889905} + inSlope: {x: -0.0253203, y: 0.0006207783, z: -0.0014205383, w: 0.0037613548} + outSlope: {x: -0.0253203, y: 0.0006207783, z: -0.0014205383, w: 0.0037613548} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9666668 + value: {x: 0.14690596, y: 0.006982559, z: -0.014152439, w: 0.9890246} + inSlope: {x: -0.004260678, y: -0.00004443794, z: 0.00029096304, w: 0.00063836406} + outSlope: {x: -0.004260678, y: -0.00004443794, z: 0.00029096304, w: 0.00063836406} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.000000026262791, y: 0.00000011679445, z: 0.0000000116797185, + 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.033333335 + value: {x: -0.000000026262791, y: 0.00000011679445, z: 0.0000000116797185, + 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: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2/mixamorig:RightHandIndex3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.044488534, y: -0.0000001329465, z: 0.0000000011262105, w: 0.9990099} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.044488534, y: -0.0000001329465, z: 0.0000000011262105, w: 0.9990099} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2/mixamorig:RightHandIndex3/mixamorig:RightHandIndex4 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.10668883, y: -0.036466278, z: 0.003013945, w: 0.99361897} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9666668 + value: {x: 0.10668883, y: -0.036466278, z: 0.003013945, w: 0.99361897} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.26403102, y: 0.01184807, z: 0.0065379264, w: 0.96441925} + inSlope: {x: -0.014259516, y: 0.0000173226, z: -0.00033037268, w: 0.0039017198} + outSlope: {x: -0.014259516, y: 0.0000173226, z: -0.00033037268, w: 0.0039017198} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.28511015, y: 0.011592086, z: 0.007612596, w: 0.9583944} + inSlope: {x: 0.14877722, y: -0.001817085, z: 0.0075054355, w: -0.04430741} + outSlope: {x: 0.14877722, y: -0.001817085, z: 0.0075054355, w: -0.04430741} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9666668 + value: {x: 0.26402912, y: 0.01178144, z: 0.006602984, w: 0.96442014} + inSlope: {x: -0.012268391, y: 0.000015813815, z: -0.00028830877, w: 0.0033634813} + outSlope: {x: -0.012268391, y: 0.000015813815, z: -0.00028830877, w: 0.0033634813} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.0000013361561, y: -0.0029256486, z: -0.00044958666, w: 0.99999565} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: -0.0000013361561, y: -0.0029256486, z: -0.00044958666, w: 0.99999565} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2/mixamorig:RightHandMiddle3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.010558606, y: 0.0028612681, z: 0.0028610835, w: 0.9999361} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.010558606, y: 0.0028612681, z: 0.0028610835, w: 0.9999361} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2/mixamorig:RightHandMiddle3/mixamorig:RightHandMiddle4 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.2012794, y: 0.005455595, z: -0.06200581, w: 0.97755414} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9666668 + value: {x: 0.2012794, y: 0.005455595, z: -0.06200581, w: 0.97755414} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.35110188, y: 0.010205993, z: 0.059749197, w: 0.93437326} + inSlope: {x: 0.0051444764, y: -0.00000039115545, z: 0.0006602704, w: -0.001975894} + outSlope: {x: 0.0051444764, y: -0.00000039115545, z: 0.0006602704, w: -0.001975894} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.3662169, y: 0.010899508, z: 0.06036624, w: 0.9285054} + inSlope: {x: 0.070062876, y: 0.0032292819, z: 0.0027550757, w: -0.027852058} + outSlope: {x: 0.070062876, y: 0.0032292819, z: 0.0027550757, w: -0.027852058} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.3734855, y: 0.01122381, z: 0.06064626, w: 0.9255834} + inSlope: {x: -0.048834577, y: -0.0038073296, z: -0.002836327, w: 0.019893963} + outSlope: {x: -0.048834577, y: -0.0038073296, z: -0.002836327, w: 0.019893963} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.36803046, y: 0.010923064, z: 0.06040614, w: 0.9277852} + inSlope: {x: 0.022918612, y: 0.0041587385, z: 0.0025783305, w: -0.009281348} + outSlope: {x: 0.022918612, y: 0.0041587385, z: 0.0025783305, w: -0.009281348} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.35964474, y: 0.010593234, z: 0.060103778, w: 0.9310913} + inSlope: {x: -0.014767409, y: -0.0006698704, z: -0.00057187176, w: 0.0057739257} + outSlope: {x: -0.014767409, y: -0.0006698704, z: -0.00057187176, w: 0.0057739257} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7 + value: {x: 0.3911186, y: 0.012039026, z: 0.061325535, w: 0.91821593} + inSlope: {x: 0.261805, y: 0.012065118, z: 0.009976698, w: -0.11130092} + outSlope: {x: 0.261805, y: 0.012065118, z: 0.009976698, w: -0.11130092} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9333334 + value: {x: 0.35130176, y: 0.010210774, z: 0.05977253, w: 0.93429655} + inSlope: {x: -0.038281854, y: -0.0016556508, z: -0.0015181315, w: 0.014560829} + outSlope: {x: -0.038281854, y: -0.0016556508, z: -0.0015181315, w: 0.014560829} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9666668 + value: {x: 0.3511001, y: 0.010208021, z: 0.05976547, w: 0.9343729} + inSlope: {x: -0.0060501536, y: -0.00008258947, z: -0.0002117822, w: 0.0022906004} + outSlope: {x: -0.0060501536, y: -0.00008258947, z: -0.0002117822, w: 0.0022906004} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.00000004816181, y: -0.0000000060804526, z: -0.000000005597914, + 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.033333335 + value: {x: 0.00000004816181, y: -0.0000000060804526, z: -0.000000005597914, + 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: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2/mixamorig:RightHandPinky3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.04451916, y: 0.0000001303945, z: -0.000000030228918, w: 0.99900854} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.04451916, y: 0.0000001303945, z: -0.000000030228918, w: 0.99900854} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2/mixamorig:RightHandPinky3/mixamorig:RightHandPinky4 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.06848949, y: 0.24508402, z: 0.9597824, w: 0.118578054} + inSlope: {x: -0.0013263522, y: -0.011378824, z: 0.002750158, w: 0.00046715137} + outSlope: {x: -0.0013263522, y: -0.011378824, z: 0.002750158, w: 0.00046715137} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6333334 + value: {x: -0.06865628, y: 0.2426851, z: 0.9604574, w: 0.11794867} + inSlope: {x: 0.0010598089, y: 0.011502888, z: -0.0032222301, w: 0.0031874732} + outSlope: {x: 0.0010598089, y: 0.011502888, z: -0.0032222301, w: 0.0031874732} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9666668 + value: {x: -0.06844345, y: 0.2450482, z: 0.9597963, w: 0.11856603} + inSlope: {x: 0.0002881132, y: 0.0031497993, z: -0.0008332707, w: 0.00038847225} + outSlope: {x: 0.0002881132, y: 0.0031497993, z: -0.0008332707, w: 0.00038847225} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:LeftUpLeg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.3125475, y: -0.12849121, z: 0.0180926, w: 0.9409977} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9666668 + value: {x: -0.3125475, y: -0.12849121, z: 0.0180926, w: 0.9409977} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.5686242, y: 0.05651671, z: 0.060179472, w: 0.81844413} + inSlope: {x: -0.0055021043, y: 0.0014751031, z: 0.0039546937, w: 0.003429651} + outSlope: {x: -0.0055021043, y: 0.0014751031, z: 0.0039546937, w: 0.003429651} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6000001 + value: {x: 0.56909084, y: 0.05603523, z: 0.059750527, w: 0.8181843} + inSlope: {x: -0.006324645, y: 0.0029916093, z: 0.0045836107, w: 0.0038596964} + outSlope: {x: -0.006324645, y: 0.0029916093, z: 0.0045836107, w: 0.0038596964} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9666668 + value: {x: 0.5685576, y: 0.05643642, z: 0.060343865, w: 0.8184838} + inSlope: {x: -0.0013160671, y: 0.0003133706, z: 0.0009844799, w: 0.0008207538} + outSlope: {x: -0.0013160671, y: 0.0003133706, z: 0.0009844799, w: 0.0008207538} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.19272469, y: 0.017406391, z: -0.0977762, w: 0.9762142} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9666668 + value: {x: 0.19272469, y: 0.017406391, z: -0.0977762, w: 0.9762142} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot/mixamorig:LeftToeBase + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.04573715, y: 0.039433047, z: 0.0727525, w: 0.99552006} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.04573715, y: 0.039433047, z: 0.0727525, w: 0.99552006} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot/mixamorig:LeftToeBase/mixamorig:LeftToe_End + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.13232401, y: -0.07706179, z: 0.9806432, w: -0.122027546} + inSlope: {x: -0.0014041363, y: 0.0008862465, z: -0.00015377997, w: -0.0033096222} + outSlope: {x: -0.0014041363, y: 0.0008862465, z: -0.00015377997, w: -0.0033096222} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.13392, y: -0.09611298, z: 0.9783776, w: -0.124920316} + inSlope: {x: 0.0004030032, y: 0.012015061, z: 0.0016665442, w: 0.0042329654} + outSlope: {x: 0.0004030032, y: 0.012015061, z: 0.0016665442, w: 0.0042329654} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9666668 + value: {x: 0.13227655, y: -0.07702251, z: 0.9806513, w: -0.12203889} + inSlope: {x: -0.00074252294, y: 0.0055608754, z: 0.00073492335, w: 0.0015838402} + outSlope: {x: -0.00074252294, y: 0.0055608754, z: 0.00073492335, w: 0.0015838402} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:RightUpLeg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.25291654, y: -0.060951512, z: 0.079138964, w: 0.96231765} + inSlope: {x: 0.0006705522, y: 0.00486575, z: -0.0039645284, w: 0.0008082389} + outSlope: {x: 0.0006705522, y: 0.00486575, z: -0.0039645284, w: 0.0008082389} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.22551003, y: -0.06335471, z: 0.07488353, w: 0.96929044} + inSlope: {x: -0.032225832, y: -0.0022105814, z: 0.0019711968, w: -0.007787342} + outSlope: {x: -0.032225832, y: -0.0022105814, z: 0.0019711968, w: -0.007787342} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9666668 + value: {x: -0.25296178, y: -0.060924497, z: 0.079150446, w: 0.9623065} + inSlope: {x: -0.0044783833, y: -0.00064428727, z: 0.0016875521, w: -0.001355406} + outSlope: {x: -0.0044783833, y: -0.00064428727, z: 0.0016875521, w: -0.001355406} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.70975846, y: -0.13072397, z: -0.15113656, w: 0.6755086} + inSlope: {x: -0.0024765728, y: 0.0039231777, z: 0.0029075143, w: 0.0040125847} + outSlope: {x: -0.0024765728, y: 0.0039231777, z: 0.0029075143, w: 0.0040125847} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.7031949, y: -0.13069713, z: -0.15117635, w: 0.6823349} + inSlope: {x: 0.019078542, y: -0.0019374469, z: -0.0023406718, w: -0.020547494} + outSlope: {x: 0.019078542, y: -0.0019374469, z: -0.0023406718, w: -0.020547494} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9666668 + value: {x: 0.7097792, y: -0.13075964, z: -0.15112817, w: 0.6754818} + inSlope: {x: 0.0011569231, y: -0.0004184235, z: -0.0002869956, w: -0.0013607704} + outSlope: {x: 0.0011569231, y: -0.0004184235, z: -0.0002869956, w: -0.0013607704} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.18422875, y: -0.034875363, z: 0.124548055, w: 0.9743363} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9666668 + value: {x: 0.18422875, y: -0.034875363, z: 0.124548055, w: 0.9743363} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot/mixamorig:RightToeBase + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.04573715, y: -0.039433047, z: -0.0727525, w: 0.99552006} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.04573715, y: -0.039433047, z: -0.0727525, w: 0.99552006} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot/mixamorig:RightToeBase/mixamorig:RightToe_End + m_CompressedRotationCurves: [] + m_EulerCurves: [] + m_PositionCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.00019039473, y: 0.016216818, z: -0.0003248182} + inSlope: {x: -0.00005905494, y: 0.000051641455, z: -0.000038233124} + outSlope: {x: -0.00005905494, y: 0.000051641455, z: -0.000038233124} + tangentMode: 0 + weightedMode: 0 + 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.00019847631, y: 0.016226424, z: -0.00031712002} + inSlope: {x: 0.000009676974, y: 0.000054412223, z: 0.00016538057} + outSlope: {x: 0.000009680378, y: 0.0000543424, z: 0.00016537105} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: -0.00019917966, y: 0.016243886, z: -0.00027890105} + inSlope: {x: -0.00005866326, y: 0.00008617468, z: 0.0002550234} + outSlope: {x: -0.000058660622, y: 0.00008608272, z: 0.00025502453} + tangentMode: 0 + weightedMode: 0 + 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.00020465243, y: 0.01625082, z: -0.0002475619} + inSlope: {x: 0.000011188723, y: 0.000101389196, z: 0.00020388333} + outSlope: {x: 0.000011187939, y: 0.0001013295, z: 0.00020388362} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.73333335 + value: {x: -0.00020363572, y: 0.016275607, z: -0.00020443524} + inSlope: {x: 0.000024788456, y: 0.000045932997, z: 0.00022196262} + outSlope: {x: 0.000024794646, y: 0.000046077832, z: 0.00022196441} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.9 + value: {x: -0.00019998205, y: 0.016282704, z: -0.00017913933} + inSlope: {x: 0.000020995702, y: 0.000027438593, z: 0.000029191076} + outSlope: {x: 0.000020995794, y: 0.000027000879, z: 0.000029187862} + tangentMode: 0 + weightedMode: 0 + 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.00019414672, y: 0.016267873, z: -0.00020661468} + inSlope: {x: 0.000029101777, y: -0.000006956718, z: -0.00017874144} + outSlope: {x: 0.000029100956, y: -0.0000069549933, z: -0.00017873534} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.3666667 + value: {x: -0.00019110394, y: 0.01625035, z: -0.00024276004} + inSlope: {x: 0.000042629916, y: -0.00010005243, z: -0.00014257671} + outSlope: {x: 0.000042631484, y: -0.000100306184, z: -0.00014257655} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.5666667 + value: {x: -0.00018539655, y: 0.016236437, z: -0.00028193477} + inSlope: {x: 0.000014076422, y: -0.000103582366, z: -0.00024499802} + outSlope: {x: 0.000014079878, y: -0.00010324895, z: -0.00024501095} + tangentMode: 0 + weightedMode: 0 + 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.00018825765, y: 0.016222414, z: -0.00031373935} + inSlope: {x: -0.00003102427, y: -0.000052850628, z: -0.00006280344} + outSlope: {x: -0.000031021846, y: -0.000052722906, z: -0.00006280967} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.9666667 + value: {x: -0.0001904964, y: 0.016216723, z: -0.00032463868} + inSlope: {x: -0.00000877471, y: -0.0000067812866, z: -0.000031558124} + outSlope: {x: -0.00000877471, y: -0.0000067812866, z: -0.000031558124} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips + m_ScaleCurves: [] + m_FloatCurves: [] + m_PPtrCurves: [] + m_SampleRate: 30 + 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: 1083781737 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1083781737 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 408225041 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3001700786 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3132553515 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 168334831 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 215603437 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1852142506 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1775379527 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1207142558 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3198065886 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 10533847 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1714668715 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2119318601 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1454392865 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2471676248 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2364716999 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3092991833 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 407569882 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3106263194 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 688943277 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2140469971 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 971364194 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1021604224 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1601611806 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 4126269581 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3155596823 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1185900278 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1886386198 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 4080340377 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1014061991 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1587372701 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 357817416 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1915810720 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2015721024 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 407230557 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2938783533 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2486468252 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1925155201 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 523512273 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2334650127 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 4220895696 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 565509406 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2538289614 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2853632173 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3575002567 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 733358149 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1941555904 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2280639224 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3482077456 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3984737358 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1692231856 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 440322630 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3048725362 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2828911296 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1935085395 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 395264987 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3974837130 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2435940167 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1651132406 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3169137491 + 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: 1.9666668 + 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/Jammo-Character/Animations/Default/a_Idle.anim.meta b/Assets/Jammo-Character/Animations/Default/a_Idle.anim.meta new file mode 100644 index 0000000..4efdd51 --- /dev/null +++ b/Assets/Jammo-Character/Animations/Default/a_Idle.anim.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 6b64f85c5ee58984a8e4d87ffdce9b5d +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 7400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Jammo-Character/Animations/Default/a_Idle_Battle.anim b/Assets/Jammo-Character/Animations/Default/a_Idle_Battle.anim new file mode 100644 index 0000000..df89b59 --- /dev/null +++ b/Assets/Jammo-Character/Animations/Default/a_Idle_Battle.anim @@ -0,0 +1,5326 @@ +%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: a_Idle_Battle + 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, 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.033333335 + 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: Armature.001 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.017650854, y: 0.40756443, z: 0.0333887, w: 0.9123951} + inSlope: {x: 0.10254319, y: 0.01718849, z: -0.107214764, w: -0.0061458345} + outSlope: {x: 0.10254319, y: 0.01718849, z: -0.107214764, w: -0.0061458345} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: 0.020356532, y: 0.3953541, z: 0.019712178, w: 0.91809165} + inSlope: {x: -0.17118046, y: -0.102637865, z: 0.024852931, w: 0.047301654} + outSlope: {x: -0.17118046, y: -0.102637865, z: 0.024852931, w: 0.047301654} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.014382598, y: 0.3821948, z: 0.022165708, w: 0.92370397} + inSlope: {x: 0.15095034, y: 0.076092035, z: -0.04040875, w: -0.032925904} + outSlope: {x: 0.15095034, y: 0.076092035, z: -0.04040875, w: -0.032925904} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.70000005 + value: {x: 0.021716472, y: 0.3874833, z: 0.036285717, w: 0.92090636} + inSlope: {x: -0.11511038, y: -0.007065829, z: 0.10864969, w: 0.0014600139} + outSlope: {x: -0.11511038, y: -0.007065829, z: 0.10864969, w: 0.0014600139} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9666667 + value: {x: 0.014115754, y: 0.41189876, z: 0.03215939, w: 0.91055256} + inSlope: {x: 0.1018885, y: 0.006086385, z: -0.094495125, w: -0.001025499} + outSlope: {x: 0.1018885, y: 0.006086385, z: -0.094495125, w: -0.001025499} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.012109938, y: 0.41208914, z: 0.02354127, w: 0.91075885} + inSlope: {x: -0.12671232, y: -0.013564838, z: 0.003542112, w: 0.0077784136} + outSlope: {x: -0.12671232, y: -0.013564838, z: 0.003542112, w: 0.0077784136} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4666667 + value: {x: 0.016241554, y: 0.4087693, z: 0.023999523, w: 0.91217756} + inSlope: {x: 0.09841514, y: 0.028107759, z: 0.04358301, w: -0.015462929} + outSlope: {x: 0.09841514, y: 0.028107759, z: 0.04358301, w: -0.015462929} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7666668 + value: {x: 0.0058755837, y: 0.40865314, z: 0.046829022, w: 0.9114687} + inSlope: {x: 0.012424745, y: 0.061998427, z: -0.015476752, w: -0.027091231} + outSlope: {x: 0.012424745, y: 0.061998427, z: -0.015476752, w: -0.027091231} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.0666668 + value: {x: 0.007536613, y: 0.41689846, z: 0.023518108, w: 0.9086175} + inSlope: {x: -0.16211355, y: -0.07912256, z: -0.0023195818, w: 0.037609972} + outSlope: {x: -0.16211355, y: -0.07912256, z: -0.0023195818, w: 0.037609972} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.007610661, y: 0.4096301, z: 0.025443658, w: 0.91186506} + inSlope: {x: 0.1643173, y: 0.10136614, z: -0.016314635, w: -0.046502396} + outSlope: {x: 0.1643173, y: 0.10136614, z: -0.016314635, w: -0.046502396} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.5333335 + value: {x: 0.01515276, y: 0.41225547, z: 0.044094946, w: 0.90987444} + inSlope: {x: -0.12769799, y: -0.032216936, z: 0.13515832, w: 0.01024426} + outSlope: {x: -0.12769799, y: -0.032216936, z: 0.13515832, w: 0.01024426} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.766667 + value: {x: -0.000021659373, y: 0.4200995, z: 0.04391724, w: 0.90641475} + inSlope: {x: 0.06807927, y: -0.0733272, z: -0.079505, w: 0.037615336} + outSlope: {x: 0.06807927, y: -0.0733272, z: -0.079505, w: 0.037615336} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.966667 + value: {x: 0.0032053343, y: 0.39132124, z: 0.024307368, w: 0.9199275} + inSlope: {x: -0.1453476, y: -0.177505, z: -0.03594101, w: 0.07691393} + outSlope: {x: -0.1453476, y: -0.177505, z: -0.03594101, w: 0.07691393} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.2333336 + value: {x: 0.013682167, y: 0.37845337, z: 0.021603895, w: 0.92526704} + inSlope: {x: 0.2601772, y: 0.08504041, z: -0.007878074, w: -0.038408376} + outSlope: {x: 0.2601772, y: 0.08504041, z: -0.007878074, w: -0.038408376} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.4 + value: {x: 0.026035767, y: 0.37807745, z: 0.033420615, w: 0.9248041} + inSlope: {x: -0.15563466, y: -0.00091776345, z: 0.12726581, w: 0.00003129244} + outSlope: {x: -0.15563466, y: -0.00091776345, z: 0.12726581, w: 0.00003129244} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.6000001 + value: {x: 0.011893281, y: 0.40260145, z: 0.03813829, w: 0.9145032} + inSlope: {x: 0.068163574, y: 0.1485887, z: -0.05971324, w: -0.06358093} + outSlope: {x: 0.068163574, y: 0.1485887, z: -0.05971324, w: -0.06358093} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.01765085, y: 0.40756443, z: 0.03338878, w: 0.9123951} + inSlope: {x: 0.09210215, y: 0.043422323, z: -0.07582154, w: -0.018104928} + outSlope: {x: 0.09210215, y: 0.043422323, z: -0.07582154, w: -0.018104928} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.05398636, y: -0.005278495, z: -0.02340622, w: 0.99825335} + inSlope: {x: -0.04971016, y: -0.012608728, z: 0.07068951, w: 0.0041520596} + outSlope: {x: -0.04971016, y: -0.012608728, z: 0.07068951, w: 0.0041520596} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: 0.054804333, y: -0.010461499, z: -0.014163489, w: 0.99834186} + inSlope: {x: -0.03259527, y: 0.009432869, z: -0.03508029, w: 0.0013884903} + outSlope: {x: -0.03259527, y: 0.009432869, z: -0.03508029, w: 0.0013884903} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.05464437, y: -0.0032700961, z: -0.0324796, w: 0.99797213} + inSlope: {x: 0.024281938, y: 0.0348574, z: -0.049387246, w: -0.0027921805} + outSlope: {x: 0.024281938, y: 0.0348574, z: -0.049387246, w: -0.0027921805} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.056192175, y: -0.009905183, z: -0.009647017, w: 0.9983243} + inSlope: {x: 0.038845688, y: -0.019651055, z: 0.04228297, w: -0.0019446034} + outSlope: {x: 0.038845688, y: -0.019651055, z: 0.04228297, w: -0.0019446034} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6333334 + value: {x: 0.055459134, y: -0.0055726846, z: -0.028340496, w: 0.9980431} + inSlope: {x: 0.046524636, y: 0.022870408, z: -0.06431351, w: -0.004250411} + outSlope: {x: 0.046524636, y: 0.022870408, z: -0.06431351, w: -0.004250411} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.1000001 + value: {x: 0.059173934, y: -0.012095065, z: -0.007364457, w: 0.99814725} + inSlope: {x: 0.04880435, y: -0.003923028, z: 0.009379918, w: -0.0028538732} + outSlope: {x: 0.04880435, y: -0.003923028, z: 0.009379918, w: -0.0028538732} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.5333335 + value: {x: 0.056827422, y: -0.0049977587, z: -0.03158564, w: 0.99787176} + inSlope: {x: 0.056343094, y: 0.03937687, z: -0.08410555, w: -0.0056192335} + outSlope: {x: 0.056343094, y: 0.03937687, z: -0.08410555, w: -0.0056192335} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.0000002 + value: {x: 0.06055588, y: -0.0089179315, z: -0.009102961, w: 0.9980835} + inSlope: {x: 0.047836516, y: -0.0077816686, z: 0.014238199, w: -0.002824369} + outSlope: {x: 0.047836516, y: -0.0077816686, z: 0.014238199, w: -0.002824369} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.4 + value: {x: 0.05347962, y: -0.007297959, z: -0.030313186, w: 0.99808204} + inSlope: {x: 0.061786585, y: 0.018646302, z: -0.07033737, w: -0.0052946857} + outSlope: {x: 0.061786585, y: 0.018646302, z: -0.07033737, w: -0.0052946857} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.053986277, y: -0.005278416, z: -0.023406267, w: 0.9982534} + inSlope: {x: -0.054485664, y: -0.013666357, z: 0.053807568, w: 0.0042378944} + outSlope: {x: -0.054485664, y: -0.013666357, z: 0.053807568, w: 0.0042378944} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.109814145, y: -0.014446393, z: -0.018883126, w: 0.9936677} + inSlope: {x: -0.10157994, y: -0.018226922, z: 0.06629968, w: 0.011966228} + outSlope: {x: -0.10157994, y: -0.018226922, z: 0.06629968, w: 0.011966228} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.11172107, y: -0.027411746, z: -0.0035203397, w: 0.9933552} + inSlope: {x: 0.08285367, y: -0.010030205, z: 0.013024098, w: -0.009495021} + outSlope: {x: 0.08285367, y: -0.010030205, z: 0.013024098, w: -0.009495021} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.1062741, y: -0.015595679, z: -0.016902309, w: 0.9940709} + inSlope: {x: 0.09359747, y: 0.07468828, z: -0.07070859, w: -0.010045767} + outSlope: {x: 0.09359747, y: 0.07468828, z: -0.07070859, w: -0.010045767} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1333334 + value: {x: 0.1109465, y: -0.021575462, z: -0.007715077, w: 0.9935622} + inSlope: {x: 0.09059008, y: -0.051154315, z: 0.06119331, w: -0.010754755} + outSlope: {x: 0.09059008, y: -0.051154315, z: 0.06119331, w: -0.010754755} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6333334 + value: {x: 0.11334327, y: -0.01490272, z: -0.014612543, w: 0.9933367} + inSlope: {x: 0.09537196, y: 0.029581763, z: -0.072086096, w: -0.011457514} + outSlope: {x: 0.09537196, y: 0.029581763, z: -0.072086096, w: -0.011457514} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.0666668 + value: {x: 0.116320066, y: -0.027201852, z: -0.0027174265, w: 0.9928355} + inSlope: {x: 0.10738033, y: -0.04302111, z: 0.0405883, w: -0.013622059} + outSlope: {x: 0.10738033, y: -0.04302111, z: 0.0405883, w: -0.013622059} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.3666668 + value: {x: 0.110608496, y: -0.021885455, z: -0.0044974317, w: 0.9936129} + inSlope: {x: -0.076802336, y: 0.025379589, z: -0.03011081, w: 0.008996137} + outSlope: {x: -0.076802336, y: 0.025379589, z: -0.03011081, w: 0.008996137} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.7 + value: {x: 0.12446743, y: -0.012070292, z: -0.022036072, w: 0.99190557} + inSlope: {x: -0.026104718, y: -0.023216475, z: 0.0293325, w: 0.0036352733} + outSlope: {x: -0.026104718, y: -0.023216475, z: 0.0293325, w: 0.0036352733} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.966667 + value: {x: 0.11922971, y: -0.021958116, z: -0.0035893153, w: 0.99261737} + inSlope: {x: 0.10781783, y: -0.03301976, z: 0.054644376, w: -0.013472702} + outSlope: {x: 0.10781783, y: -0.03301976, z: 0.054644376, w: -0.013472702} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.266667 + value: {x: 0.105828814, y: -0.021582233, z: -0.00682505, w: 0.9941267} + inSlope: {x: -0.115428194, y: 0.014138076, z: -0.06192036, w: 0.012244295} + outSlope: {x: -0.115428194, y: 0.014138076, z: -0.06192036, w: 0.012244295} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.5333335 + value: {x: 0.11853236, y: -0.01268953, z: -0.023919193, w: 0.99258095} + inSlope: {x: -0.00027984404, y: 0.032642096, z: -0.0068377955, w: 0.0003191832} + outSlope: {x: -0.00027984404, y: 0.032642096, z: -0.0068377955, w: 0.0003191832} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.10981406, y: -0.01444658, z: -0.018883092, w: 0.9936678} + inSlope: {x: -0.11119309, y: -0.019351207, z: 0.043095037, w: 0.013074887} + outSlope: {x: -0.11119309, y: -0.019351207, z: 0.043095037, w: 0.013074887} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.097182296, y: -0.015417248, z: -0.018995851, w: 0.9949659} + inSlope: {x: -0.10157413, y: -0.0150259575, z: 0.06600257, w: 0.010696649} + outSlope: {x: -0.10157413, y: -0.0150259575, z: 0.06600257, w: 0.010696649} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.099082105, y: -0.028022489, z: -0.003761593, w: 0.99467754} + inSlope: {x: 0.08291312, y: -0.010625488, z: 0.013035948, w: -0.008454324} + outSlope: {x: 0.08291312, y: -0.010625488, z: 0.013035948, w: -0.008454324} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.09357347, y: -0.016927738, z: -0.017006528, w: 0.9953232} + inSlope: {x: 0.094229914, y: 0.070994236, z: -0.06996535, w: -0.00885576} + outSlope: {x: 0.094229914, y: 0.070994236, z: -0.06996535, w: -0.00885576} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1333334 + value: {x: 0.098338306, y: -0.022188714, z: -0.007907764, w: 0.99487424} + inSlope: {x: 0.090770125, y: -0.05006372, z: 0.060734335, w: -0.009609453} + outSlope: {x: 0.090770125, y: -0.05006372, z: 0.060734335, w: -0.009609453} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6333334 + value: {x: 0.1006518, y: -0.016512284, z: -0.014711704, w: 0.9946759} + inSlope: {x: 0.09550014, y: 0.025976885, z: -0.07164707, w: -0.010251412} + outSlope: {x: 0.09550014, y: 0.025976885, z: -0.07164707, w: -0.010251412} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.0666668 + value: {x: 0.10369794, y: -0.027829036, z: -0.0029572737, w: 0.9942151} + inSlope: {x: 0.10772398, y: -0.041833084, z: 0.040191825, w: -0.012263071} + outSlope: {x: 0.10772398, y: -0.041833084, z: 0.040191825, w: -0.012263071} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.3666668 + value: {x: 0.09788426, y: -0.023063727, z: -0.0046666535, w: 0.9949196} + inSlope: {x: -0.07702496, y: 0.024376385, z: -0.029905472, w: 0.008026071} + outSlope: {x: -0.07702496, y: 0.024376385, z: -0.029905472, w: 0.008026071} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.7 + value: {x: 0.11185283, y: -0.013562134, z: -0.022114718, w: 0.9933861} + inSlope: {x: -0.025972284, y: -0.017697971, z: 0.028912706, w: 0.003316986} + outSlope: {x: -0.025972284, y: -0.017697971, z: 0.028912706, w: 0.003316986} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.966667 + value: {x: 0.10663045, y: -0.022671731, z: -0.0037748523, w: 0.9940331} + inSlope: {x: 0.10791494, y: -0.033437878, z: 0.054431006, w: -0.012121767} + outSlope: {x: 0.10791494, y: -0.033437878, z: 0.054431006, w: -0.012121767} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.266667 + value: {x: 0.09309412, y: -0.022720281, z: -0.0069769435, w: 0.9953736} + inSlope: {x: -0.115933456, y: 0.013137892, z: -0.061715737, w: 0.010786068} + outSlope: {x: -0.115933456, y: 0.013137892, z: -0.061715737, w: 0.010786068} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.5333335 + value: {x: 0.105888225, y: -0.014125427, z: -0.023990577, w: 0.9939883} + inSlope: {x: 0.0009254748, y: 0.037899774, z: -0.006894569, w: 0.00031292468} + outSlope: {x: 0.0009254748, y: 0.037899774, z: -0.006894569, w: 0.00031292468} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.09718234, y: -0.015417167, z: -0.018995875, w: 0.99496585} + inSlope: {x: -0.11132407, y: -0.016166387, z: 0.042806756, w: 0.011685502} + outSlope: {x: -0.11132407, y: -0.016166387, z: 0.042806756, w: 0.011685502} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.013840838, y: -0.04561304, z: -0.0018069242, w: 0.9988617} + inSlope: {x: 0.078874655, y: 0.04384551, z: 0.011723138, w: 0.00297904} + outSlope: {x: 0.078874655, y: 0.04384551, z: 0.011723138, w: 0.00297904} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: -0.012686397, y: -0.040246528, z: 0.010041674, w: 0.9990588} + inSlope: {x: 0.047842156, y: -0.003479215, z: -0.02232048, w: 0.0007000563} + outSlope: {x: 0.047842156, y: -0.003479215, z: -0.02232048, w: 0.0007000563} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.70000005 + value: {x: -0.026271714, y: -0.04340937, z: -0.0013428739, w: 0.998711} + inSlope: {x: -0.02224536, y: -0.00865929, z: -0.052049693, w: -0.0009933112} + outSlope: {x: -0.02224536, y: -0.00865929, z: -0.052049693, w: -0.0009933112} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0333334 + value: {x: -0.015866296, y: -0.041607473, z: -0.0016242937, w: 0.99900675} + inSlope: {x: -0.051224932, y: 0.00873974, z: 0.04881991, w: -0.00038892057} + outSlope: {x: -0.051224932, y: 0.00873974, z: 0.04881991, w: -0.00038892057} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3666668 + value: {x: -0.014412703, y: -0.044617426, z: 0.007917785, w: 0.9988688} + inSlope: {x: 0.043389343, y: -0.01823202, z: -0.020125862, w: -0.000026822114} + outSlope: {x: 0.043389343, y: -0.01823202, z: -0.020125862, w: -0.000026822114} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7666668 + value: {x: -0.020980889, y: -0.045464423, z: -0.0051668817, w: 0.99873227} + inSlope: {x: 0.0628833, y: 0.0094323885, z: -0.016835298, w: 0.0016674416} + outSlope: {x: 0.0628833, y: 0.0094323885, z: -0.016835298, w: 0.0016674416} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.2333333 + value: {x: -0.019139556, y: -0.046232898, z: 0.0155039495, w: 0.99862695} + inSlope: {x: 0.029238807, y: -0.0041039363, z: -0.00984922, w: 0.0005248175} + outSlope: {x: 0.029238807, y: -0.0041039363, z: -0.00984922, w: 0.0005248175} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.7 + value: {x: -0.025268715, y: -0.04159932, z: -0.00443196, w: 0.998805} + inSlope: {x: 0.10610667, y: 0.010219582, z: 0.00840107, w: 0.0031363885} + outSlope: {x: 0.10610667, y: 0.010219582, z: 0.00840107, w: 0.0031363885} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.9333334 + value: {x: -0.03137103, y: -0.04164742, z: 0.0108705135, w: 0.9985806} + inSlope: {x: -0.12396714, y: -0.0076399744, z: 0.08515007, w: -0.005067574} + outSlope: {x: -0.12396714, y: -0.0076399744, z: 0.08515007, w: -0.005067574} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.266667 + value: {x: -0.024223506, y: -0.04223308, z: 0.005411095, w: 0.99879944} + inSlope: {x: -0.026248457, y: 0.0035198438, z: -0.06971061, w: -0.00012338173} + outSlope: {x: -0.026248457, y: 0.0035198438, z: -0.06971061, w: -0.00012338173} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.5000002 + value: {x: -0.028563162, y: -0.04411273, z: -0.00012991567, w: 0.9986182} + inSlope: {x: 0.12697218, y: -0.061006676, z: 0.042142995, w: 0.0009244689} + outSlope: {x: 0.12697218, y: -0.061006676, z: 0.042142995, w: 0.0009244689} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.013840795, y: -0.045613218, z: -0.0018068175, w: 0.9988617} + inSlope: {x: 0.083235286, y: 0.026720416, z: -0.00017755682, w: 0.0025016093} + outSlope: {x: 0.083235286, y: 0.026720416, z: -0.00017755682, w: 0.0025016093} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.013715001, y: -0.22998454, z: 0.18815155, w: 0.95473456} + inSlope: {x: 0.05342879, y: 0.18980382, z: -0.119425796, w: 0.0674808} + outSlope: {x: 0.05342879, y: 0.18980382, z: -0.119425796, w: 0.0674808} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.0028086146, y: -0.19346222, z: 0.1762322, w: 0.96514595} + inSlope: {x: -0.1986002, y: 0.1697143, z: 0.056136604, w: 0.023516715} + outSlope: {x: -0.1986002, y: 0.1697143, z: 0.056136604, w: 0.023516715} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.020820405, y: -0.19376524, z: 0.20469625, w: 0.9592294} + inSlope: {x: 0.2095816, y: -0.06310744, z: 0.06264877, w: -0.030410875} + outSlope: {x: 0.2095816, y: -0.06310744, z: 0.06264877, w: -0.030410875} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6333334 + value: {x: -0.002856675, y: -0.20841485, z: 0.21222132, w: 0.9547341} + inSlope: {x: -0.27285147, y: -0.0721463, z: 0.04461675, w: -0.026426021} + outSlope: {x: -0.27285147, y: -0.0721463, z: 0.04461675, w: -0.026426021} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000001 + value: {x: -0.005628639, y: -0.22326185, z: 0.20424893, w: 0.95310277} + inSlope: {x: 0.22545826, y: -0.08560404, z: -0.07380076, w: -0.0029763589} + outSlope: {x: 0.22545826, y: -0.08560404, z: -0.07380076, w: -0.0029763589} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.010989587, y: -0.21416248, z: 0.18146083, w: 0.95973206} + inSlope: {x: -0.17531684, y: 0.13169569, z: -0.074849054, w: 0.045536734} + outSlope: {x: -0.17531684, y: 0.13169569, z: -0.074849054, w: 0.045536734} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2 + value: {x: -0.003591769, y: -0.20265248, z: 0.19957519, w: 0.9586912} + inSlope: {x: 0.14522965, y: -0.015023515, z: 0.08892873, w: -0.02121987} + outSlope: {x: 0.14522965, y: -0.015023515, z: 0.08892873, w: -0.02121987} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4333334 + value: {x: 0.02471192, y: -0.22157812, z: 0.20908025, w: 0.95214385} + inSlope: {x: -0.12494303, y: -0.08856194, z: 0.014831065, w: -0.020674486} + outSlope: {x: -0.12494303, y: -0.08856194, z: 0.014831065, w: -0.020674486} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7 + value: {x: -0.011966417, y: -0.22803387, z: 0.20577057, w: 0.951586} + inSlope: {x: 0.10172212, y: -0.06097126, z: -0.112916425, w: 0.010882605} + outSlope: {x: 0.10172212, y: -0.06097126, z: -0.112916425, w: 0.010882605} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9333334 + value: {x: 0.0138279665, y: -0.21897976, z: 0.18369971, w: 0.95818114} + inSlope: {x: -0.11416877, y: 0.09469196, z: -0.038825642, w: 0.030679088} + outSlope: {x: -0.11416877, y: 0.09469196, z: -0.038825642, w: 0.030679088} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.1333334 + value: {x: 0.009792589, y: -0.20879118, z: 0.19771332, w: 0.9577159} + inSlope: {x: 0.23408222, y: -0.006146735, z: 0.15954643, w: -0.036914386} + outSlope: {x: 0.23408222, y: -0.006146735, z: 0.15954643, w: -0.036914386} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.045479365, y: -0.21434385, z: 0.20945124, w: 0.9529525} + inSlope: {x: -0.1271608, y: -0.030976415, z: 0.04121531, w: -0.010164687} + outSlope: {x: -0.1271608, y: -0.030976415, z: 0.04121531, w: -0.010164687} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.6000001 + value: {x: -0.016544584, y: -0.20667186, z: 0.2065052, w: 0.9562262} + inSlope: {x: 0.03659361, y: -0.058110114, z: -0.14321624, w: 0.018754024} + outSlope: {x: 0.03659361, y: -0.058110114, z: -0.14321624, w: 0.018754024} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.016624842, y: -0.20232493, z: 0.17857395, w: 0.9627562} + inSlope: {x: -0.12834418, y: 0.1078714, z: -0.01087771, w: 0.02661648} + outSlope: {x: -0.12834418, y: 0.1078714, z: -0.01087771, w: 0.02661648} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.0000002 + value: {x: -0.012885158, y: -0.18533272, z: 0.19893977, w: 0.96224153} + inSlope: {x: -0.027958773, y: 0.046051335, z: 0.23144849, w: -0.039100386} + outSlope: {x: -0.027958773, y: 0.046051335, z: 0.23144849, w: -0.039100386} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.2000003 + value: {x: 0.02192522, y: -0.19653103, z: 0.21067859, w: 0.957345} + inSlope: {x: -0.11485703, y: -0.076590315, z: 0.04040875, w: -0.022219373} + outSlope: {x: -0.11485703, y: -0.076590315, z: 0.04040875, w: -0.022219373} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.3666668 + value: {x: -0.02683532, y: -0.20100172, z: 0.21712527, w: 0.95484805} + inSlope: {x: -0.31008753, y: 0.03818419, z: -0.0102299545, w: 0.0023916387} + outSlope: {x: -0.31008753, y: 0.03818419, z: -0.0102299545, w: 0.0023916387} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.5000002 + value: {x: -0.021001594, y: -0.21595418, z: 0.20801668, w: 0.9537567} + inSlope: {x: 0.30677712, y: -0.28486228, z: -0.0927929, w: -0.037942566} + outSlope: {x: 0.30677712, y: -0.28486228, z: -0.0927929, w: -0.037942566} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.6333334 + value: {x: 0.011699455, y: -0.23316273, z: 0.19152106, w: 0.95331943} + inSlope: {x: 0.08756644, y: 0.0640492, z: -0.10220947, w: 0.035131607} + outSlope: {x: 0.08756644, y: 0.0640492, z: -0.10220947, w: 0.035131607} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.013714826, y: -0.22998461, z: 0.18815117, w: 0.95473456} + inSlope: {x: 0.060461182, y: 0.09534368, z: -0.101097025, w: 0.042454045} + outSlope: {x: 0.060461182, y: 0.09534368, z: -0.101097025, w: 0.042454045} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.06928724, y: 0, z: -0, w: 0.99759674} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: -0.06928724, y: 0, z: -0, w: 0.99759674} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head/mixamorig:HeadTop_End + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.40506425, y: -0.45798013, z: 0.59357256, w: 0.5233056} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.40506425, y: -0.45798013, z: 0.59357256, w: 0.5233056} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head/mixamorig:LeftEar + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.40506425, y: 0.45798013, z: -0.59357256, w: 0.5233056} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.40506425, y: 0.45798013, z: -0.59357256, w: 0.5233056} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head/mixamorig:RightEar + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.46796077, y: -0.50734276, z: 0.5439526, w: 0.47721234} + inSlope: {x: -0.059309896, y: -0.054883357, z: -0.045889016, w: 0.05172282} + outSlope: {x: -0.059309896, y: -0.054883357, z: -0.045889016, w: 0.05172282} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: 0.45669183, y: -0.51752937, z: 0.5364278, w: 0.48563477} + inSlope: {x: 0.015595259, y: 0.013283195, z: -0.006040335, w: 0.006152541} + outSlope: {x: 0.015595259, y: 0.013283195, z: -0.006040335, w: 0.006152541} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.70000005 + value: {x: 0.46745536, y: -0.50786597, z: 0.542034, w: 0.47932953} + inSlope: {x: -0.005228964, y: -0.0051605674, z: -0.0060036695, w: 0.006433716} + outSlope: {x: -0.005228964, y: -0.0051605674, z: -0.0060036695, w: 0.006433716} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.46358523, y: -0.5114327, z: 0.53841263, w: 0.48336032} + inSlope: {x: -0.06888622, y: -0.063067615, z: -0.05933936, w: 0.06543513} + outSlope: {x: -0.06888622, y: -0.063067615, z: -0.05933936, w: 0.06543513} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4000001 + value: {x: 0.46222997, y: -0.51269245, z: 0.5368938, w: 0.48501036} + inSlope: {x: -0.012175899, y: -0.010857593, z: -0.0080081895, w: 0.008954564} + outSlope: {x: -0.012175899, y: -0.010857593, z: -0.0080081895, w: 0.008954564} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6333334 + value: {x: 0.45984244, y: -0.51490563, z: 0.5331411, w: 0.489058} + inSlope: {x: 0.014897004, y: 0.013434304, z: 0.020619947, w: -0.022313766} + outSlope: {x: 0.014897004, y: 0.013434304, z: 0.020619947, w: -0.022313766} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9000001 + value: {x: 0.4554607, y: -0.51872355, z: 0.532605, w: 0.4897076} + inSlope: {x: -0.08541368, y: -0.07507242, z: -0.038140155, w: 0.041402616} + outSlope: {x: -0.08541368, y: -0.07507242, z: -0.038140155, w: 0.041402616} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.45614824, y: -0.51813877, z: 0.5318568, w: 0.49049914} + inSlope: {x: 0.010233531, y: 0.01022012, z: 0.03332648, w: -0.03482673} + outSlope: {x: 0.010233531, y: 0.01022012, z: 0.03332648, w: -0.03482673} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.6000001 + value: {x: 0.45980537, y: -0.5146543, z: 0.5406775, w: 0.4810175} + inSlope: {x: 0.016158089, y: 0.015542522, z: 0.031318396, w: -0.033973787} + outSlope: {x: 0.016158089, y: 0.015542522, z: 0.031318396, w: -0.033973787} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.8666668 + value: {x: 0.45206335, y: -0.521563, z: 0.5360402, w: 0.48607802} + inSlope: {x: -0.025386686, y: -0.022314213, z: -0.0069406694, w: 0.007397987} + outSlope: {x: -0.025386686, y: -0.022314213, z: -0.0069406694, w: 0.007397987} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.1000001 + value: {x: 0.46098453, y: -0.51390606, z: 0.534041, w: 0.48805133} + inSlope: {x: 0.02808633, y: 0.02388867, z: -0.019209106, w: 0.019653011} + outSlope: {x: 0.02808633, y: 0.02388867, z: -0.019209106, w: 0.019653011} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.4 + value: {x: 0.46644092, y: -0.5090368, z: 0.534812, w: 0.48712483} + inSlope: {x: 0.08417003, y: 0.076555684, z: 0.06603962, w: -0.073199786} + outSlope: {x: 0.08417003, y: 0.076555684, z: 0.06603962, w: -0.073199786} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.6333334 + value: {x: 0.46943465, y: -0.5059791, z: 0.54517436, w: 0.4758163} + inSlope: {x: -0.037837513, y: -0.035064552, z: -0.032821327, w: 0.03759656} + outSlope: {x: -0.037837513, y: -0.035064552, z: -0.032821327, w: 0.03759656} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.46796075, y: -0.50734276, z: 0.5439527, w: 0.47721222} + inSlope: {x: -0.04421715, y: -0.04090909, z: -0.036649738, w: 0.04187737} + outSlope: {x: -0.04421715, y: -0.04090909, z: -0.036649738, w: 0.04187737} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.49629733, y: 0.3260262, z: -0.03670122, w: 0.8037717} + inSlope: {x: -0.43888268, y: -0.09118795, z: 0.1350757, w: 0.3076404} + outSlope: {x: -0.43888268, y: -0.09118795, z: 0.1350757, w: 0.3076404} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.45107642, y: 0.34937438, z: -0.06589654, w: 0.8186118} + inSlope: {x: -0.18338577, y: 0.432179, z: -0.73596305, w: -0.14674456} + outSlope: {x: -0.18338577, y: 0.432179, z: -0.73596305, w: -0.14674456} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.47236067, y: 0.3857535, z: -0.17221037, w: 0.7735717} + inSlope: {x: 0.45119855, y: -0.14982598, z: -0.417179, w: -0.29158655} + outSlope: {x: 0.45119855, y: -0.14982598, z: -0.417179, w: -0.29158655} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.5052004, y: 0.33591044, z: -0.16783902, w: 0.7770243} + inSlope: {x: -0.09375483, y: -0.28529614, z: 0.44266963, w: 0.27870646} + outSlope: {x: -0.09375483, y: -0.28529614, z: 0.44266963, w: 0.27870646} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5666667 + value: {x: 0.4743867, y: 0.36536554, z: -0.068765976, w: 0.7979577} + inSlope: {x: -0.075656146, y: 0.5318155, z: 0.440317, w: -0.16043818} + outSlope: {x: -0.075656146, y: 0.5318155, z: 0.440317, w: -0.16043818} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.4911809, y: 0.42078218, z: -0.041164614, w: 0.7615702} + inSlope: {x: 0.1899326, y: -0.116292916, z: -0.04347905, w: -0.0608853} + outSlope: {x: 0.1899326, y: -0.116292916, z: -0.04347905, w: -0.0608853} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.90000004 + value: {x: 0.50486505, y: 0.38868004, z: -0.04230857, w: 0.7695772} + inSlope: {x: -0.10789719, y: -0.014610929, z: -0.08410397, w: 0.07319481} + outSlope: {x: -0.10789719, y: -0.014610929, z: -0.08410397, w: 0.07319481} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.49788192, y: 0.40563515, z: -0.11028714, w: 0.75855815} + inSlope: {x: 0.067425884, y: 0.06499714, z: -0.73723197, w: -0.18774676} + outSlope: {x: 0.067425884, y: 0.06499714, z: -0.73723197, w: -0.18774676} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2333333 + value: {x: 0.50815153, y: 0.3868685, z: -0.19236563, w: 0.7450572} + inSlope: {x: -0.035413094, y: -0.25314668, z: 0.111640796, w: 0.18329296} + outSlope: {x: -0.035413094, y: -0.25314668, z: 0.111640796, w: 0.18329296} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4333334 + value: {x: 0.46117982, y: 0.38149616, z: -0.06801319, w: 0.79821557} + inSlope: {x: -0.23339622, y: 0.24202937, z: 0.65490055, w: 0.077124305} + outSlope: {x: -0.23339622, y: 0.24202937, z: 0.65490055, w: 0.077124305} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6000001 + value: {x: 0.46326417, y: 0.4082576, z: -0.025027294, w: 0.78618425} + inSlope: {x: 0.27957815, y: -0.074122876, z: -0.09454395, w: -0.13033113} + outSlope: {x: 0.27957815, y: -0.074122876, z: -0.09454395, w: -0.13033113} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7333335 + value: {x: 0.50427926, y: 0.3756494, z: -0.028879927, w: 0.7770174} + inSlope: {x: 0.027592998, y: -0.29907987, z: 0.081132874, w: 0.12985557} + outSlope: {x: 0.027592998, y: -0.29907987, z: 0.081132874, w: 0.12985557} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9000001 + value: {x: 0.46259055, y: 0.37256473, z: -0.02778464, w: 0.80401087} + inSlope: {x: -0.2474215, y: 0.19862492, z: -0.33645824, w: 0.037542917} + outSlope: {x: -0.2474215, y: 0.19862492, z: -0.33645824, w: 0.037542917} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.0666668 + value: {x: 0.44967252, y: 0.38987595, z: -0.14787242, w: 0.78988934} + inSlope: {x: 0.14312549, y: -0.11314284, z: -0.72232604, w: -0.15836403} + outSlope: {x: 0.14312549, y: -0.11314284, z: -0.72232604, w: -0.15836403} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.2333333 + value: {x: 0.46321368, y: 0.34532306, z: -0.15308262, w: 0.8017174} + inSlope: {x: -0.16055688, y: -0.22155492, z: 0.64838624, w: 0.3093955} + outSlope: {x: -0.16055688, y: -0.22155492, z: 0.64838624, w: 0.3093955} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.4 + value: {x: 0.43862882, y: 0.3531993, z: -0.027076384, w: 0.8259067} + inSlope: {x: 0.023967348, y: 0.26634717, z: 0.585601, w: -0.10587494} + outSlope: {x: 0.023967348, y: 0.26634717, z: 0.585601, w: -0.10587494} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.5666668 + value: {x: 0.48624626, y: 0.38118953, z: 0.019157786, w: 0.7860611} + inSlope: {x: 0.44266057, y: -0.15685886, z: 0.1184798, w: -0.2000894} + outSlope: {x: 0.44266057, y: -0.15685886, z: 0.1184798, w: -0.2000894} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.50405836, y: 0.34533298, z: 0.010077193, w: 0.79156095} + inSlope: {x: -0.1991721, y: -0.3314185, z: -0.27178362, w: 0.27422306} + outSlope: {x: -0.1991721, y: -0.3314185, z: -0.27178362, w: 0.27422306} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.44342896, y: 0.35182285, z: -0.0650245, w: 0.8218049} + inSlope: {x: -0.2471135, y: 0.2675649, z: -0.837826, w: -0.050447926} + outSlope: {x: -0.2471135, y: 0.2675649, z: -0.837826, w: -0.050447926} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.0000002 + value: {x: 0.43731526, y: 0.37147188, z: -0.21383648, w: 0.79059345} + inSlope: {x: 0.30625716, y: -0.18826756, z: -0.41981348, w: -0.1925801} + outSlope: {x: 0.30625716, y: -0.18826756, z: -0.41981348, w: -0.1925801} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.1333334 + value: {x: 0.4798634, y: 0.32831252, z: -0.19840749, w: 0.78903514} + inSlope: {x: 0.19698966, y: -0.315779, z: 0.56585276, w: 0.15330449} + outSlope: {x: 0.19698966, y: -0.315779, z: 0.56585276, w: 0.15330449} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.266667 + value: {x: 0.4911338, y: 0.3171057, z: -0.11449054, w: 0.8031958} + inSlope: {x: 0.08608111, y: 0.16674952, z: 0.55349827, w: -0.03799621} + outSlope: {x: 0.08608111, y: 0.16674952, z: 0.55349827, w: -0.03799621} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.3666668 + value: {x: 0.49968892, y: 0.3426204, z: -0.0982758, w: 0.7894708} + inSlope: {x: 0.060633183, y: 0.26244098, z: -0.17760488, w: -0.17446803} + outSlope: {x: 0.060633183, y: 0.26244098, z: -0.17760488, w: -0.17446803} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.466667 + value: {x: 0.5102615, y: 0.35346383, z: -0.10231612, w: 0.77732104} + inSlope: {x: 0.17200072, y: -0.07088496, z: 0.3397803, w: -0.038291905} + outSlope: {x: 0.17200072, y: -0.07088496, z: 0.3397803, w: -0.038291905} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.6000001 + value: {x: 0.51647764, y: 0.3392438, z: -0.04065139, w: 0.7851828} + inSlope: {x: -0.19698697, y: -0.1948573, z: 0.21897876, w: 0.22487931} + outSlope: {x: -0.19698697, y: -0.1948573, z: 0.21897876, w: 0.22487931} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.4962974, y: 0.32602623, z: -0.03670115, w: 0.8037716} + inSlope: {x: -0.34201685, y: -0.1832326, z: -0.0042984677, w: 0.29017594} + outSlope: {x: -0.34201685, y: -0.1832326, z: -0.0042984677, w: 0.29017594} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.050061285, y: -0.08271802, z: -0.6169577, w: 0.7810344} + inSlope: {x: 0.007935427, y: -0.015396549, z: -0.09793996, w: -0.07985114} + outSlope: {x: 0.007935427, y: -0.015396549, z: -0.09793996, w: -0.07985114} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: 0.049584284, y: -0.08179505, z: -0.6110838, w: 0.7857656} + inSlope: {x: -0.009724403, y: 0.01881804, z: 0.11984196, w: 0.095945284} + outSlope: {x: -0.009724403, y: 0.01881804, z: 0.11984196, w: 0.095945284} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: 0.05004485, y: -0.082686424, z: -0.61675745, w: 0.781197} + inSlope: {x: 0.011934103, y: -0.023115512, z: -0.14705397, w: -0.119229615} + outSlope: {x: 0.011934103, y: -0.023115512, z: -0.14705397, w: -0.119229615} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.05087545, y: -0.084297165, z: -0.6269952, w: 0.77277595} + inSlope: {x: -0.011288244, y: 0.021896996, z: 0.13908505, w: 0.11588216} + outSlope: {x: -0.011288244, y: 0.021896996, z: 0.13908505, w: 0.11588216} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.04997806, y: -0.08255687, z: -0.61593384, w: 0.78186446} + inSlope: {x: 0.009643707, y: -0.018689394, z: -0.11890492, w: -0.096226856} + outSlope: {x: 0.009643707, y: -0.018689394, z: -0.11890492, w: -0.096226856} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3666668 + value: {x: 0.049688425, y: -0.08199663, z: -0.61236686, w: 0.7847385} + inSlope: {x: -0.0041445703, y: 0.008016896, z: 0.051029008, w: 0.040870592} + outSlope: {x: -0.0041445703, y: 0.008016896, z: 0.051029008, w: 0.040870592} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.8000001 + value: {x: 0.04945722, y: -0.08154914, z: -0.60951734, w: 0.78701484} + inSlope: {x: 0.011473719, y: -0.022210501, z: -0.14145447, w: -0.112560794} + outSlope: {x: 0.011473719, y: -0.022210501, z: -0.14145447, w: -0.112560794} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.0666668 + value: {x: 0.049199034, y: -0.08104894, z: -0.6063332, w: 0.7895382} + inSlope: {x: -0.018616393, y: 0.036006905, z: 0.22943369, w: 0.18090445} + outSlope: {x: -0.018616393, y: 0.036006905, z: 0.22943369, w: 0.18090445} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.266667 + value: {x: 0.04787134, y: -0.07848475, z: -0.5899729, w: 0.8021723} + inSlope: {x: 0.009135025, y: -0.017630454, z: -0.1125962, w: -0.08516084} + outSlope: {x: 0.009135025, y: -0.017630454, z: -0.1125962, w: -0.08516084} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.6000001 + value: {x: 0.0497684, y: -0.08215146, z: -0.6133522, w: 0.7839473} + inSlope: {x: 0.0044334163, y: -0.008578048, z: -0.05459284, w: -0.04389171} + outSlope: {x: 0.0044334163, y: -0.008578048, z: -0.05459284, w: -0.04389171} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.9 + value: {x: 0.050323118, y: -0.083225965, z: -0.6201879, w: 0.77840096} + inSlope: {x: -0.016807633, y: 0.032588087, z: 0.20721067, w: 0.16925469} + outSlope: {x: -0.016807633, y: 0.032588087, z: 0.20721067, w: 0.16925469} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.1333334 + value: {x: 0.04620234, y: -0.07526825, z: -0.5694023, w: 0.81730115} + inSlope: {x: 0.002297817, y: -0.0044340314, z: -0.028375115, w: -0.020386595} + outSlope: {x: 0.002297817, y: -0.0044340314, z: -0.028375115, w: -0.020386595} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.3666668 + value: {x: 0.04792199, y: -0.07858161, z: -0.59059274, w: 0.8017036} + inSlope: {x: -0.0050078565, y: 0.009663897, z: 0.061699808, w: 0.04662846} + outSlope: {x: -0.0050078565, y: 0.009663897, z: 0.061699808, w: 0.04662846} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.5666668 + value: {x: 0.048840385, y: -0.08035643, z: -0.60191643, w: 0.79300326} + inSlope: {x: 0.013573388, y: -0.02623583, z: -0.16725287, w: -0.13049406} + outSlope: {x: 0.013573388, y: -0.02623583, z: -0.16725287, w: -0.13049406} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.050060973, y: -0.08271804, z: -0.6169575, w: 0.7810347} + inSlope: {x: 0.010970804, y: -0.021249374, z: -0.13520314, w: -0.109094486} + outSlope: {x: 0.010970804, y: -0.021249374, z: -0.13520314, w: -0.109094486} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.13283831, y: -0.044535577, z: -0.123815484, w: 0.98236465} + inSlope: {x: -0.009003281, y: 0.28036505, z: 0.06559253, w: 0.020779965} + outSlope: {x: -0.009003281, y: 0.28036505, z: 0.06559253, w: 0.020779965} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.116593316, y: -0.032300327, z: -0.12180464, w: 0.98515296} + inSlope: {x: -0.21426421, y: -0.13031772, z: 0.06468447, w: 0.028944608} + outSlope: {x: -0.21426421, y: -0.13031772, z: 0.06468447, w: 0.028944608} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.11054009, y: -0.055062238, z: -0.11450321, w: 0.98571706} + inSlope: {x: 0.06892719, y: -0.025123416, z: 0.002992116, w: -0.008709134} + outSlope: {x: 0.06892719, y: -0.025123416, z: 0.002992116, w: -0.008709134} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.1221143, y: -0.016299875, z: -0.11431864, w: 0.98577565} + inSlope: {x: 0.023604915, y: 0.23826985, z: -0.07236278, w: -0.00716329} + outSlope: {x: 0.023604915, y: 0.23826985, z: -0.07236278, w: -0.00716329} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.12458852, y: 0.0018801499, z: -0.1125813, w: 0.985799} + inSlope: {x: 0.025996989, y: 0.022849604, z: -0.026382089, w: -0.006299616} + outSlope: {x: 0.025996989, y: 0.022849604, z: -0.026382089, w: -0.006299616} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.112770155, y: -0.024999293, z: -0.11137098, w: 0.98704326} + inSlope: {x: -0.060606103, y: -0.024689322, z: -0.0026828705, w: 0.006074312} + outSlope: {x: -0.060606103, y: -0.024689322, z: -0.0026828705, w: 0.006074312} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.116009705, y: -0.03187222, z: -0.111047104, w: 0.98650616} + inSlope: {x: 0.014869623, y: -0.10229762, z: -0.02983178, w: -0.008459695} + outSlope: {x: 0.014869623, y: -0.10229762, z: -0.02983178, w: -0.008459695} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2 + value: {x: 0.120071284, y: -0.054109253, z: -0.10910678, w: 0.98526686} + inSlope: {x: -0.09823768, y: -0.1870015, z: -0.022881724, w: -0.0008189685} + outSlope: {x: -0.09823768, y: -0.1870015, z: -0.022881724, w: -0.0008189685} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4666667 + value: {x: 0.10437393, y: -0.03123116, z: -0.10515143, w: 0.9884705} + inSlope: {x: -0.040140506, y: 0.11042899, z: 0.0057737087, w: 0.0083756475} + outSlope: {x: -0.040140506, y: 0.11042899, z: 0.0057737087, w: 0.0083756475} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6333334 + value: {x: 0.102344364, y: -0.028341422, z: -0.11382233, w: 0.9878092} + inSlope: {x: -0.045764677, y: -0.15540485, z: -0.06449523, w: -0.007209785} + outSlope: {x: -0.045764677, y: -0.15540485, z: -0.06449523, w: -0.007209785} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.11106023, y: -0.027296903, z: -0.11940701, w: 0.9862365} + inSlope: {x: 0.021956436, y: 0.2468028, z: 0.031520057, w: 0.007898204} + outSlope: {x: 0.021956436, y: 0.2468028, z: 0.031520057, w: 0.007898204} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.0666668 + value: {x: 0.106419474, y: -0.024524603, z: -0.11806, w: 0.98698294} + inSlope: {x: -0.054646373, y: -0.24994764, z: 0.027672935, w: 0.002740326} + outSlope: {x: -0.054646373, y: -0.24994764, z: 0.027672935, w: 0.002740326} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.2 + value: {x: 0.106743254, y: -0.045114085, z: -0.11330869, w: 0.9867785} + inSlope: {x: -0.0072521414, y: 0.13787004, z: 0.0034377016, w: 0.007138259} + outSlope: {x: -0.0072521414, y: 0.13787004, z: 0.0034377016, w: 0.007138259} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.3666668 + value: {x: 0.09494198, y: -0.016200908, z: -0.117680825, w: 0.98836976} + inSlope: {x: 0.02496513, y: 0.043209184, z: 0.030046806, w: 0.0018873829} + outSlope: {x: 0.02496513, y: 0.043209184, z: 0.030046806, w: 0.0018873829} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.6000001 + value: {x: 0.10235979, y: -0.013244801, z: -0.12077545, w: 0.98729956} + inSlope: {x: 0.03370959, y: -0.09484393, z: -0.010973374, w: -0.00631482} + outSlope: {x: 0.03370959, y: -0.09484393, z: -0.010973374, w: -0.00631482} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.7333336 + value: {x: 0.10433032, y: -0.02885412, z: -0.11867955, w: 0.9870146} + inSlope: {x: 0.016112544, y: 0.13945283, z: 0.0068123536, w: 0.002852082} + outSlope: {x: 0.016112544, y: 0.13945283, z: 0.0068123536, w: 0.002852082} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.8666668 + value: {x: 0.09810439, y: -0.01161326, z: -0.11545829, w: 0.98838764} + inSlope: {x: -0.21458575, y: -0.0789542, z: 0.017889345, w: 0.021966418} + outSlope: {x: -0.21458575, y: -0.0789542, z: 0.017889345, w: 0.021966418} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.0666668 + value: {x: 0.07516935, y: -0.057670288, z: -0.112259336, w: 0.98915195} + inSlope: {x: 0.05319172, y: -0.24681321, z: -0.054361276, w: -0.024263285} + outSlope: {x: 0.05319172, y: -0.24681321, z: -0.054361276, w: -0.024263285} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.3666668 + value: {x: 0.106865376, y: -0.061361652, z: -0.1200957, w: 0.9850846} + inSlope: {x: -0.02969711, y: -0.013847811, z: 0.02643923, w: 0.005559331} + outSlope: {x: -0.02969711, y: -0.013847811, z: 0.02643923, w: 0.005559331} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.5000002 + value: {x: 0.11742656, y: -0.08046519, z: -0.124658175, w: 0.9819352} + inSlope: {x: 0.26402396, y: -0.22738191, z: -0.14476165, w: -0.06816483} + outSlope: {x: 0.26402396, y: -0.22738191, z: -0.14476165, w: -0.06816483} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.6333334 + value: {x: 0.13570555, y: -0.054376025, z: -0.12651259, w: 0.9811329} + inSlope: {x: -0.06855085, y: 0.30400163, z: 0.069791704, w: 0.035350654} + outSlope: {x: -0.06855085, y: 0.30400163, z: 0.069791704, w: 0.035350654} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.13283859, y: -0.044535354, z: -0.12381559, w: 0.9823646} + inSlope: {x: -0.08600869, y: 0.2952204, z: 0.08091003, w: 0.036950145} + outSlope: {x: -0.08600869, y: 0.2952204, z: 0.08091003, w: 0.036950145} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.30138215, y: -0.27846822, z: -0.3329131, w: 0.8489953} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.30138215, y: -0.27846822, z: -0.3329131, w: 0.8489953} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.52613884, y: 0.023103941, z: 0.59166986, w: 0.61038584} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.52613884, y: 0.023103941, z: 0.59166986, w: 0.61038584} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.32701176, y: 0.07528804, z: 0.23607428, w: 0.91195613} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.32701176, y: 0.07528804, z: 0.23607428, w: 0.91195613} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2/mixamorig:LeftHandThumb3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.02006684, y: 0.040932316, z: 0.014504458, w: 0.9988551} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.02006684, y: 0.040932316, z: 0.014504458, w: 0.9988551} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2/mixamorig:LeftHandThumb3/mixamorig:LeftHandThumb4 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.7579776, y: -0.008057779, z: 0.085639715, w: 0.64658403} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.7579776, y: -0.008057779, z: 0.085639715, w: 0.64658403} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.7359188, y: -0.003488483, z: 0.11527558, w: 0.6671753} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.7359188, y: -0.003488483, z: 0.11527558, w: 0.6671753} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.40334126, y: 0.00000024091256, z: 0.06102121, w: 0.91301274} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.40334126, y: 0.00000024091256, z: 0.06102121, w: 0.91301274} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2/mixamorig:LeftHandIndex3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.04448858, y: -0.000000035061785, z: -0.00000000317324, w: 0.9990099} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.04448858, y: -0.000000035061785, z: -0.00000000317324, w: 0.9990099} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2/mixamorig:LeftHandIndex3/mixamorig:LeftHandIndex4 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.7571772, y: -0.002866297, z: 0.09169904, w: 0.6467347} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.7571772, y: -0.002866297, z: 0.09169904, w: 0.6467347} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.7351249, y: -0.008824403, z: 0.12053876, w: 0.66707116} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.7351249, y: -0.008824403, z: 0.12053876, w: 0.66707116} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.40321887, y: 0.0028525295, z: 0.062227376, w: 0.912981} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.40321887, y: 0.0028525295, z: 0.062227376, w: 0.912981} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2/mixamorig:LeftHandMiddle3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.010558624, y: -0.0028612893, z: -0.0028611354, w: 0.9999361} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.010558624, y: -0.0028612893, z: -0.0028611354, w: 0.9999361} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2/mixamorig:LeftHandMiddle3/mixamorig:LeftHandMiddle4 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.7539585, y: -0.038547445, z: 0.104389064, w: 0.64742845} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.7539585, y: -0.038547445, z: 0.104389064, w: 0.64742845} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.7397206, y: -0.026652014, z: 0.08785834, w: 0.66662145} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.7397206, y: -0.026652014, z: 0.08785834, w: 0.66662145} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.40334976, y: -0.000000028670026, z: 0.06096505, w: 0.91301274} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.40334976, y: -0.000000028670026, z: 0.06096505, w: 0.91301274} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2/mixamorig:LeftHandPinky3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.044519093, y: -0.000000046289404, z: 0.000000020282139, w: 0.99900854} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.044519093, y: -0.000000046289404, z: 0.000000020282139, w: 0.99900854} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2/mixamorig:LeftHandPinky3/mixamorig:LeftHandPinky4 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.4661783, y: 0.50849336, z: -0.48688173, w: 0.53577834} + inSlope: {x: -0.07657706, y: 0.070372224, z: -0.04977822, w: -0.04586756} + outSlope: {x: -0.07657706, y: 0.070372224, z: -0.04977822, w: -0.04586756} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: 0.451038, y: 0.52187866, z: -0.48840433, w: 0.53447974} + inSlope: {x: -0.0011122229, y: 0.0014045835, z: -0.008018465, w: -0.007750691} + outSlope: {x: -0.0011122229, y: 0.0014045835, z: -0.008018465, w: -0.007750691} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.45646062, y: 0.5174889, z: -0.49449083, w: 0.5285147} + inSlope: {x: -0.001444838, y: 0.0013482748, z: -0.0019763357, w: -0.0019186682} + outSlope: {x: -0.001444838, y: 0.0013482748, z: -0.0019763357, w: -0.0019186682} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.46675515, y: 0.50862265, z: -0.4985957, w: 0.5242566} + inSlope: {x: -0.07100426, y: 0.060796674, z: 0.05481848, w: 0.056256592} + outSlope: {x: -0.07100426, y: 0.060796674, z: 0.05481848, w: 0.056256592} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5000001 + value: {x: 0.46017063, y: 0.51420987, z: -0.49355584, w: 0.5293713} + inSlope: {x: -0.030363012, y: 0.02572235, z: 0.018929664, w: 0.019097302} + outSlope: {x: -0.030363012, y: 0.02572235, z: 0.018929664, w: 0.019097302} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.46877158, y: 0.5067637, z: -0.49681735, w: 0.5259432} + inSlope: {x: 0.0049768547, y: -0.004068031, z: -0.008581294, w: -0.008605434} + outSlope: {x: 0.0049768547, y: -0.004068031, z: -0.008581294, w: -0.008605434} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.45971373, y: 0.5142713, z: -0.48703068, w: 0.5357141} + inSlope: {x: 0.022843502, y: -0.019048173, z: -0.016554164, w: -0.016403511} + outSlope: {x: 0.022843502, y: -0.019048173, z: -0.016554164, w: -0.016403511} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.5666668 + value: {x: 0.46300814, y: 0.5118573, z: -0.4967272, w: 0.5262012} + inSlope: {x: 0.06266093, y: -0.0536192, z: -0.036793686, w: -0.03767971} + outSlope: {x: 0.06266093, y: -0.0536192, z: -0.036793686, w: -0.03767971} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.4685005, y: 0.5069935, z: -0.49654093, w: 0.5262243} + inSlope: {x: -0.04647647, y: 0.039685108, z: 0.04006017, w: 0.041004755} + outSlope: {x: -0.04647647, y: 0.039685108, z: 0.04006017, w: 0.041004755} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.2333336 + value: {x: 0.45594278, y: 0.51772684, z: -0.4890036, w: 0.53380764} + inSlope: {x: -0.12180281, y: 0.10139475, z: 0.082914755, w: 0.081498995} + outSlope: {x: -0.12180281, y: 0.10139475, z: 0.082914755, w: 0.081498995} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.466667 + value: {x: 0.44894916, y: 0.5236306, z: -0.4875821, w: 0.535275} + inSlope: {x: 0.086156905, y: -0.071673006, z: -0.040994212, w: -0.039623164} + outSlope: {x: 0.086156905, y: -0.071673006, z: -0.040994212, w: -0.039623164} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.6000001 + value: {x: 0.4681106, y: 0.50645196, z: -0.48058614, w: 0.5416787} + inSlope: {x: 0.036046244, y: -0.028192725, z: -0.06854705, w: -0.06565696} + outSlope: {x: 0.036046244, y: -0.028192725, z: -0.06854705, w: -0.06565696} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.4661789, y: 0.508493, z: -0.48688203, w: 0.5357779} + inSlope: {x: -0.054228954, y: 0.053005867, z: -0.094727665, w: -0.08850225} + outSlope: {x: -0.054228954, y: 0.053005867, z: -0.094727665, w: -0.08850225} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.5053749, y: -0.09374389, z: 0.36999944, w: 0.7738919} + inSlope: {x: -0.09444594, y: 0.21680786, z: -0.39700624, w: 0.27156115} + outSlope: {x: -0.09444594, y: 0.21680786, z: -0.39700624, w: 0.27156115} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.50612175, y: -0.10856515, z: 0.32160005, w: 0.7928605} + inSlope: {x: 0.07144869, y: -0.604012, z: -0.27125406, w: -0.020880105} + outSlope: {x: 0.07144869, y: -0.604012, z: -0.27125406, w: -0.020880105} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: 0.5126901, y: -0.18051639, z: 0.31844988, w: 0.77662885} + inSlope: {x: 0.17080845, y: -0.5364599, z: 0.21282482, w: -0.32342616} + outSlope: {x: 0.17080845, y: -0.5364599, z: 0.21282482, w: -0.32342616} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.55377316, y: -0.17467123, z: 0.3372457, w: 0.74100655} + inSlope: {x: -0.020677177, y: 0.4444399, z: 0.09537217, w: 0.07575542} + outSlope: {x: -0.020677177, y: 0.4444399, z: 0.09537217, w: 0.07575542} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5666667 + value: {x: 0.52410454, y: -0.118768945, z: 0.37167278, w: 0.75701237} + inSlope: {x: -0.15570046, y: 0.042923793, z: 0.2888878, w: -0.027302213} + outSlope: {x: -0.15570046, y: 0.042923793, z: 0.2888878, w: -0.027302213} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.4964878, y: -0.1269566, z: 0.41075268, w: 0.75409824} + inSlope: {x: 0.01579548, y: 0.1150978, z: -0.0047657713, w: 0.0112518575} + outSlope: {x: 0.01579548, y: 0.1150978, z: -0.0047657713, w: 0.0112518575} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9333334 + value: {x: 0.514305, y: -0.10151913, z: 0.36283866, w: 0.7704106} + inSlope: {x: 0.123659685, y: -0.071181625, z: -0.2788362, w: 0.039709184} + outSlope: {x: 0.123659685, y: -0.071181625, z: -0.2788362, w: 0.039709184} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.52803576, y: -0.14052877, z: 0.37010977, w: 0.751298} + inSlope: {x: 0.033122554, y: -0.24335894, z: 0.35920775, w: -0.2460799} + outSlope: {x: 0.033122554, y: -0.24335894, z: 0.35920775, w: -0.2460799} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666668 + value: {x: 0.5424478, y: -0.12642193, z: 0.41367462, w: 0.72016746} + inSlope: {x: -0.041112065, y: 0.29802436, z: 0.00005846657, w: 0.08275157} + outSlope: {x: -0.041112065, y: 0.29802436, z: 0.00005846657, w: 0.08275157} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4333334 + value: {x: 0.50677544, y: -0.102848455, z: 0.41035795, w: 0.75113726} + inSlope: {x: -0.2218019, y: -0.18572527, z: 0.18629703, w: 0.021680316} + outSlope: {x: -0.2218019, y: -0.18572527, z: 0.18629703, w: 0.021680316} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.49185318, y: -0.14571345, z: 0.4722466, w: 0.7168202} + inSlope: {x: 0.15342608, y: 0.16552418, z: 0.0029325522, w: -0.07397361} + outSlope: {x: 0.15342608, y: 0.16552418, z: 0.0029325522, w: -0.07397361} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.8000001 + value: {x: 0.4987219, y: -0.106791206, z: 0.43820626, w: 0.74016714} + inSlope: {x: -0.08488663, y: 0.2332364, z: -0.42349976, w: 0.34193817} + outSlope: {x: -0.08488663, y: 0.2332364, z: -0.42349976, w: 0.34193817} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.5139196, y: -0.1433708, z: 0.3906856, w: 0.75013083} + inSlope: {x: 0.24949336, y: -0.45787126, z: 0.104962036, w: -0.3144607} + outSlope: {x: 0.24949336, y: -0.45787126, z: 0.104962036, w: -0.3144607} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.1333334 + value: {x: 0.5476971, y: -0.16592191, z: 0.42010638, w: 0.70427865} + inSlope: {x: 0.052910198, y: 0.262361, z: 0.23507483, w: -0.11977058} + outSlope: {x: 0.052910198, y: 0.262361, z: 0.23507483, w: -0.11977058} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.3000002 + value: {x: 0.51973516, y: -0.11829111, z: 0.44538978, w: 0.71938205} + inSlope: {x: -0.19468653, y: 0.0049145967, z: 0.11155765, w: 0.072569914} + outSlope: {x: -0.19468653, y: 0.0049145967, z: 0.11155765, w: 0.072569914} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.5333335 + value: {x: 0.49564397, y: -0.15676558, z: 0.4790347, w: 0.70730996} + inSlope: {x: -0.083167784, y: 0.15523255, z: 0.11065285, w: 0.017320829} + outSlope: {x: -0.083167784, y: 0.15523255, z: 0.11065285, w: 0.017320829} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.7 + value: {x: 0.4994621, y: -0.094030485, z: 0.4394334, w: 0.74067146} + inSlope: {x: -0.044277683, y: 0.3263682, z: -0.5982548, w: 0.42589873} + outSlope: {x: -0.044277683, y: 0.3263682, z: -0.5982548, w: 0.42589873} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.4998552, y: -0.09561402, z: 0.35311985, w: 0.7850536} + inSlope: {x: 0.14747113, y: -0.34852624, z: -0.5944201, w: 0.1316483} + outSlope: {x: 0.14747113, y: -0.34852624, z: -0.5944201, w: 0.1316483} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.966667 + value: {x: 0.5188443, y: -0.16310745, z: 0.32799566, w: 0.7724089} + inSlope: {x: 0.18909897, y: -0.4007644, z: 0.25194174, w: -0.31866813} + outSlope: {x: 0.18909897, y: -0.4007644, z: 0.25194174, w: -0.31866813} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.1000001 + value: {x: 0.5435165, y: -0.15445119, z: 0.38704118, w: 0.7286521} + inSlope: {x: 0.0015056152, y: 0.38919294, z: 0.5269258, w: -0.19849169} + outSlope: {x: 0.0015056152, y: 0.38919294, z: 0.5269258, w: -0.19849169} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.2333336 + value: {x: 0.5247716, y: -0.10582444, z: 0.43095, w: 0.72642833} + inSlope: {x: -0.18138099, y: 0.22178012, z: 0.16154021, w: 0.06840623} + outSlope: {x: -0.18138099, y: 0.22178012, z: 0.16154021, w: 0.06840623} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.3666668 + value: {x: 0.5091458, y: -0.1223621, z: 0.45912004, w: 0.7176398} + inSlope: {x: -0.063518345, y: -0.32850823, z: 0.21744153, w: -0.14884576} + outSlope: {x: -0.063518345, y: -0.32850823, z: 0.21744153, w: -0.14884576} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.466667 + value: {x: 0.51368445, y: -0.12684272, z: 0.4682292, w: 0.70767266} + inSlope: {x: 0.17199272, y: 0.26936817, z: -0.13567919, w: 0.01145952} + outSlope: {x: 0.17199272, y: 0.26936817, z: -0.13567919, w: 0.01145952} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.5333335 + value: {x: 0.5215411, y: -0.11303957, z: 0.439269, w: 0.7226753} + inSlope: {x: -0.06815946, y: 0.016138978, z: -0.68228173, w: 0.46179727} + outSlope: {x: -0.06815946, y: 0.016138978, z: -0.68228173, w: 0.46179727} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.6000001 + value: {x: 0.5104375, y: -0.10943481, z: 0.39568913, w: 0.75558436} + inSlope: {x: -0.12653422, y: 0.21315724, z: -0.4828741, w: 0.37135756} + outSlope: {x: -0.12653422, y: 0.21315724, z: -0.4828741, w: 0.37135756} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.5053748, y: -0.09374389, z: 0.36999944, w: 0.773892} + inSlope: {x: -0.05553966, y: 0.2081405, z: -0.3563783, w: 0.23680888} + outSlope: {x: -0.05553966, y: 0.2081405, z: -0.3563783, w: 0.23680888} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.060541503, y: 0.10325715, z: 0.7461184, w: 0.65496576} + inSlope: {x: 0.0051792334, y: 0.010307728, z: 0.06385982, w: -0.07510542} + outSlope: {x: 0.0051792334, y: 0.010307728, z: 0.06385982, w: -0.07510542} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.06010567, y: 0.10239196, z: 0.74074656, w: 0.6612093} + inSlope: {x: -0.009321627, y: -0.018500203, z: -0.11490585, w: 0.13273896} + outSlope: {x: -0.009321627, y: -0.018500203, z: -0.11490585, w: 0.13273896} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: 0.05946899, y: 0.101129904, z: 0.7329003, w: 0.6701442} + inSlope: {x: 0.0016675503, y: 0.0032811211, z: 0.020471495, w: -0.023072341} + outSlope: {x: 0.0016675503, y: 0.0032811211, z: 0.020471495, w: -0.023072341} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.059316352, y: 0.10082797, z: 0.73101974, w: 0.672254} + inSlope: {x: -0.004197043, y: -0.008332842, z: -0.051836375, w: 0.057992045} + outSlope: {x: -0.004197043, y: -0.008332842, z: -0.051836375, w: 0.057992045} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.059143737, y: 0.10048702, z: 0.7288947, w: 0.6746235} + inSlope: {x: -0.0070576807, y: -0.0139532, z: -0.08695551, w: 0.09662667} + outSlope: {x: -0.0070576807, y: -0.0139532, z: -0.08695551, w: 0.09662667} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.060057096, y: 0.1022959, z: 0.74014986, w: 0.6618964} + inSlope: {x: 0.0063859997, y: 0.012647166, z: 0.07860208, w: -0.09036088} + outSlope: {x: 0.0063859997, y: 0.012647166, z: 0.07860208, w: -0.09036088} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7666668 + value: {x: 0.059536137, y: 0.10126269, z: 0.7337273, w: 0.6692127} + inSlope: {x: -0.0070886384, y: -0.014043389, z: -0.08735158, w: 0.09868303} + outSlope: {x: -0.0070886384, y: -0.014043389, z: -0.08735158, w: 0.09868303} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.0333335 + value: {x: 0.059650198, y: 0.10148974, z: 0.7351373, w: 0.66761875} + inSlope: {x: -0.004938942, y: -0.009769478, z: -0.060810912, w: 0.06883338} + outSlope: {x: -0.004938942, y: -0.009769478, z: -0.060810912, w: 0.06883338} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.059204042, y: 0.100606084, z: 0.7296369, w: 0.6737977} + inSlope: {x: 0.0043592644, y: 0.008617834, z: 0.053722017, w: -0.05979812} + outSlope: {x: 0.0043592644, y: 0.008617834, z: 0.053722017, w: -0.05979812} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.6333334 + value: {x: 0.059931897, y: 0.10204819, z: 0.73860884, w: 0.6636651} + inSlope: {x: -0.0049295137, y: -0.00978549, z: -0.060787853, w: 0.069696374} + outSlope: {x: -0.0049295137, y: -0.00978549, z: -0.060787853, w: 0.069696374} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.8666668 + value: {x: 0.06096378, y: 0.104096435, z: 0.75132126, w: 0.6488172} + inSlope: {x: 0.0035638209, y: 0.007089532, z: 0.043904226, w: -0.052116264} + outSlope: {x: 0.0035638209, y: 0.007089532, z: 0.043904226, w: -0.052116264} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.2000003 + value: {x: 0.05945555, y: 0.10110443, z: 0.73273885, w: 0.6703258} + inSlope: {x: 0.0092025325, y: 0.018212616, z: 0.113366954, w: -0.12789735} + outSlope: {x: 0.0092025325, y: 0.018212616, z: 0.113366954, w: -0.12789735} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.4 + value: {x: 0.060184874, y: 0.10254961, z: 0.7417248, w: 0.6600801} + inSlope: {x: -0.006414509, y: -0.012717594, z: -0.079000965, w: 0.09121129} + outSlope: {x: -0.006414509, y: -0.012717594, z: -0.079000965, w: 0.09121129} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.6333334 + value: {x: 0.060361557, y: 0.10289976, z: 0.7438999, w: 0.657557} + inSlope: {x: 0.005663099, y: 0.011242043, z: 0.069786675, w: -0.08120306} + outSlope: {x: 0.005663099, y: 0.011242043, z: 0.069786675, w: -0.08120306} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.0605414, y: 0.103257336, z: 0.7461184, w: 0.65496564} + inSlope: {x: 0.0053952686, y: 0.010727282, z: 0.0665564, w: -0.07774122} + outSlope: {x: 0.0053952686, y: 0.010727282, z: 0.0665564, w: -0.07774122} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.01488384, y: -0.01457979, z: 0.12744102, w: 0.99162734} + inSlope: {x: 0.028575359, y: -0.09908298, z: -0.060609426, w: 0.0056612487} + outSlope: {x: 0.028575359, y: -0.09908298, z: -0.060609426, w: 0.0056612487} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: 0.030321103, y: -0.021731406, z: 0.10726554, w: 0.99353033} + inSlope: {x: 0.10819766, y: 0.1883437, z: -0.08745287, w: 0.010026992} + outSlope: {x: 0.10819766, y: 0.1883437, z: -0.08745287, w: 0.010026992} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.04516309, y: 0.011401739, z: 0.11065009, w: 0.9927673} + inSlope: {x: 0.009328794, y: 0.031517133, z: 0.03132327, w: -0.004217323} + outSlope: {x: 0.009328794, y: 0.031517133, z: 0.03132327, w: -0.004217323} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5666667 + value: {x: 0.016649598, y: 0.0125656575, z: 0.10837058, w: 0.9938917} + inSlope: {x: 0.03925597, y: -0.0088631315, z: -0.07749548, w: 0.007954534} + outSlope: {x: 0.03925597, y: -0.0088631315, z: -0.07749548, w: 0.007954534} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.020475524, y: 0.003527823, z: 0.10859868, w: 0.9938685} + inSlope: {x: -0.007607646, y: 0.09081762, z: -0.025681585, w: 0.002586543} + outSlope: {x: -0.007607646, y: 0.09081762, z: -0.025681585, w: 0.002586543} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9666667 + value: {x: 0.023812793, y: 0.010822106, z: 0.10612372, w: 0.99400884} + inSlope: {x: -0.07327688, y: 0.029500194, z: 0.08730878, w: -0.007976003} + outSlope: {x: -0.07327688, y: 0.029500194, z: 0.08730878, w: -0.007976003} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.024124188, y: 0.0093410425, z: 0.11608099, w: 0.9929028} + inSlope: {x: 0.19310191, y: 0.072979294, z: 0.0040339762, w: -0.006199476} + outSlope: {x: 0.19310191, y: 0.072979294, z: 0.0040339762, w: -0.006199476} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3000001 + value: {x: 0.03727778, y: 0.046119984, z: 0.10497744, w: 0.9927049} + inSlope: {x: -0.06798864, y: -0.041911345, z: 0.053335108, w: -0.0013455761} + outSlope: {x: -0.06798864, y: -0.041911345, z: 0.053335108, w: -0.0013455761} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4666667 + value: {x: 0.018112412, y: 0.02149733, z: 0.1112625, w: 0.9933934} + inSlope: {x: -0.012498096, y: -0.11176468, z: -0.054844312, w: 0.008859331} + outSlope: {x: -0.012498096, y: -0.11176468, z: -0.054844312, w: 0.008859331} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.022775752, y: 0.017065838, z: 0.1116821, w: 0.9933364} + inSlope: {x: -0.0066363504, y: 0.15690835, z: -0.071274966, w: 0.0053420714} + outSlope: {x: -0.0066363504, y: 0.15690835, z: -0.071274966, w: 0.0053420714} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.8000001 + value: {x: 0.0070940075, y: 0.025698226, z: 0.114474855, w: 0.9930684} + inSlope: {x: -0.19158217, y: -0.07076608, z: 0.2474889, w: -0.025622271} + outSlope: {x: -0.19158217, y: -0.07076608, z: 0.2474889, w: -0.025622271} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9333334 + value: {x: 0.0073843463, y: 0.019042116, z: 0.13067798, w: 0.9912145} + inSlope: {x: 0.07170208, y: 0.0017035361, z: -0.031704355, w: 0.0036460133} + outSlope: {x: 0.07170208, y: 0.0017035361, z: -0.031704355, w: 0.0036460133} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.0333335 + value: {x: 0.02728627, y: 0.019088566, z: 0.118787885, w: 0.9923611} + inSlope: {x: 0.33026707, y: 0.05909109, z: -0.27196985, w: 0.022065587} + outSlope: {x: 0.33026707, y: 0.05909109, z: -0.27196985, w: 0.022065587} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.032022797, y: 0.043779034, z: 0.09672462, w: 0.9938322} + inSlope: {x: -0.15352415, y: 0.17292397, z: 0.12066297, w: -0.014477684} + outSlope: {x: -0.15352415, y: 0.17292397, z: 0.12066297, w: -0.014477684} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.3000002 + value: {x: 0.0080253165, y: 0.040163573, z: 0.11036699, w: 0.99304664} + inSlope: {x: -0.0970511, y: -0.13216838, z: -0.01489421, w: 0.008086868} + outSlope: {x: -0.0970511, y: -0.13216838, z: -0.01489421, w: 0.008086868} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.4333334 + value: {x: 0.014677171, y: 0.023668649, z: 0.10441252, w: 0.9941441} + inSlope: {x: -0.026378267, y: -0.2701618, z: -0.1488634, w: 0.021824261} + outSlope: {x: -0.026378267, y: -0.2701618, z: -0.1488634, w: 0.021824261} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.6000001 + value: {x: 0.0005955136, y: -0.008529552, z: 0.09431862, w: 0.99550533} + inSlope: {x: -0.076597154, y: 0.070287794, z: -0.0397221, w: 0.0044050855} + outSlope: {x: -0.076597154, y: 0.070287794, z: -0.0397221, w: 0.0044050855} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.7333336 + value: {x: -0.0062761316, y: -0.0060231616, z: 0.09469606, w: 0.9954682} + inSlope: {x: -0.070853695, y: -0.108532935, z: 0.13239644, w: -0.013784736} + outSlope: {x: -0.070853695, y: -0.108532935, z: 0.13239644, w: -0.013784736} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.0000002 + value: {x: 0.0056741033, y: -0.009509291, z: 0.110082276, w: 0.99386084} + inSlope: {x: 0.012281777, y: 0.2001144, z: -0.095913425, w: 0.012360525} + outSlope: {x: 0.012281777, y: 0.2001144, z: -0.095913425, w: 0.012360525} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.2000003 + value: {x: -0.0022723167, y: 0.026576126, z: 0.114317074, w: 0.9930862} + inSlope: {x: -0.011543276, y: 0.074132055, z: 0.05007276, w: -0.007831156} + outSlope: {x: -0.011543276, y: 0.074132055, z: 0.05007276, w: -0.007831156} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.3666668 + value: {x: -0.0069915573, y: 0.016556608, z: 0.12294538, w: 0.9922507} + inSlope: {x: -0.020484079, y: -0.08627758, z: -0.010910119, w: 0.002751055} + outSlope: {x: -0.020484079, y: -0.08627758, z: -0.010910119, w: 0.002751055} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.5000002 + value: {x: -0.01570876, y: 0.025349436, z: 0.11920471, w: 0.99242175} + inSlope: {x: -0.011768049, y: 0.012211636, z: 0.08592275, w: -0.011060547} + outSlope: {x: -0.011768049, y: 0.012211636, z: 0.08592275, w: -0.011060547} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.6000001 + value: {x: 0.0069767977, y: -0.0044941544, z: 0.13239186, w: 0.9911627} + inSlope: {x: 0.26120007, y: -0.26089936, z: -0.06288959, w: 0.006808347} + outSlope: {x: 0.26120007, y: -0.26089936, z: -0.06288959, w: 0.006808347} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.014883479, y: -0.014579676, z: 0.12744087, w: 0.99162734} + inSlope: {x: 0.06996094, y: -0.11454125, z: -0.06913624, w: 0.0065356554} + outSlope: {x: 0.06996094, y: -0.11454125, z: -0.06913624, w: 0.0065356554} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.42965665, y: 0.11167612, z: 0.06543882, w: 0.8936674} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.42965665, y: 0.11167612, z: 0.06543882, w: 0.8936674} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.3720893, y: 0.041477136, z: -0.68250614, w: 0.6277058} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.3720893, y: 0.041477136, z: -0.68250614, w: 0.6277058} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.26182738, y: -0.027423376, z: -0.28299516, w: 0.92228425} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.26182738, y: -0.027423376, z: -0.28299516, w: 0.92228425} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2/mixamorig:RightHandThumb3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.020066785, y: -0.040932294, z: -0.014504484, w: 0.9988551} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.020066785, y: -0.040932294, z: -0.014504484, w: 0.9988551} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2/mixamorig:RightHandThumb3/mixamorig:RightHandThumb4 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.7426735, y: 0.0071854102, z: -0.08387082, w: 0.66434187} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.7426735, y: 0.0071854102, z: -0.08387082, w: 0.66434187} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.75301474, y: 0.0033840418, z: -0.11885647, w: 0.64717114} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.75301474, y: 0.0033840418, z: -0.11885647, w: 0.64717114} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.4152122, y: 0.000000068244226, z: -0.06331384, w: 0.90751874} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.4152122, y: 0.000000068244226, z: -0.06331384, w: 0.90751874} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2/mixamorig:RightHandIndex3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.04448846, y: -0.000000030300008, z: -0.00000014193128, w: 0.9990099} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.04448846, y: -0.000000030300008, z: -0.00000014193128, w: 0.9990099} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2/mixamorig:RightHandIndex3/mixamorig:RightHandIndex4 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.74197704, y: 0.0018576802, z: -0.08982387, w: 0.66437817} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.74197704, y: 0.0018576802, z: -0.08982387, w: 0.66437817} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.75210077, y: 0.008543907, z: -0.12424214, w: 0.6471749} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.75210077, y: 0.008543907, z: -0.12424214, w: 0.6471749} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.41508517, y: -0.002841584, z: -0.06454108, w: 0.9074859} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.41508517, y: -0.002841584, z: -0.06454108, w: 0.9074859} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2/mixamorig:RightHandMiddle3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.0105587, y: 0.002861286, z: 0.0028611259, w: 0.9999361} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.0105587, y: 0.002861286, z: 0.0028611259, w: 0.9999361} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2/mixamorig:RightHandMiddle3/mixamorig:RightHandMiddle4 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.74309593, y: 0.010609901, z: -0.08004125, w: 0.66429603} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.74309593, y: 0.010609901, z: -0.08004125, w: 0.66429603} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.75362545, y: 0.000092721515, z: -0.1149209, w: 0.64717996} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.75362545, y: 0.000092721515, z: -0.1149209, w: 0.64717996} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.41522092, y: 0.000000056791656, z: -0.063256346, w: 0.90751874} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.41522092, y: 0.000000056791656, z: -0.063256346, w: 0.90751874} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2/mixamorig:RightHandPinky3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.044519126, y: -0.000000007891367, z: -0.0000000028597271, w: 0.99900854} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.044519126, y: -0.000000007891367, z: -0.0000000028597271, w: 0.99900854} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2/mixamorig:RightHandPinky3/mixamorig:RightHandPinky4 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.12054593, y: 0.3422866, z: 0.876531, w: 0.3162309} + inSlope: {x: -0.003301352, y: 0.032047927, z: 0.059171315, w: -0.20235656} + outSlope: {x: -0.003301352, y: 0.032047927, z: 0.059171315, w: -0.20235656} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.1126949, y: 0.38149366, z: 0.87139136, w: 0.28712294} + inSlope: {x: 0.04580241, y: 0.05024136, z: -0.011093617, w: -0.015023949} + outSlope: {x: 0.04580241, y: 0.05024136, z: -0.011093617, w: -0.015023949} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: -0.10838721, y: 0.36598557, z: 0.880024, w: 0.28260314} + inSlope: {x: -0.021843921, y: -0.16400822, z: 0.07091585, w: -0.01626313} + outSlope: {x: -0.021843921, y: -0.16400822, z: 0.07091585, w: -0.01626313} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000001 + value: {x: -0.11726619, y: 0.36873356, z: 0.86067283, w: 0.3309479} + inSlope: {x: -0.008272841, y: -0.17358503, z: 0.060651038, w: 0.031707708} + outSlope: {x: -0.008272841, y: -0.17358503, z: 0.060651038, w: 0.031707708} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9666667 + value: {x: -0.119612075, y: 0.34233755, z: 0.87801296, w: 0.31239608} + inSlope: {x: 0.025214577, y: 0.09953598, z: 0.015174164, w: -0.14244287} + outSlope: {x: 0.025214577, y: 0.09953598, z: 0.015174164, w: -0.14244287} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.11930112, y: 0.36755052, z: 0.8709962, w: 0.30338037} + inSlope: {x: -0.002376104, y: -0.008396664, z: 0.0056183394, w: -0.0069183176} + outSlope: {x: -0.002376104, y: -0.008396664, z: 0.0056183394, w: -0.0069183176} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3666668 + value: {x: -0.11557792, y: 0.34755504, z: 0.88196987, w: 0.2966082} + inSlope: {x: -0.023722012, y: -0.20220886, z: 0.08655479, w: -0.02921144} + outSlope: {x: -0.023722012, y: -0.20220886, z: 0.08655479, w: -0.02921144} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6000001 + value: {x: -0.12232534, y: 0.3532694, z: 0.86792356, w: 0.32702613} + inSlope: {x: 0.006021451, y: 0.1339449, z: -0.12778388, w: 0.19746941} + outSlope: {x: 0.006021451, y: 0.1339449, z: -0.12778388, w: 0.19746941} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9333334 + value: {x: -0.12120477, y: 0.35283595, z: 0.87153476, w: 0.3181878} + inSlope: {x: -0.007663506, y: 0.1251513, z: -0.0005310597, w: -0.14016679} + outSlope: {x: -0.007663506, y: 0.1251513, z: -0.0005310597, w: -0.14016679} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.266667 + value: {x: -0.117103465, y: 0.35169622, z: 0.87902004, w: 0.29986718} + inSlope: {x: 0.0044234837, y: -0.20531633, z: 0.094580695, w: -0.03482971} + outSlope: {x: 0.0044234837, y: -0.20531633, z: 0.094580695, w: -0.03482971} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.4333334 + value: {x: -0.12147511, y: 0.34251404, z: 0.8764373, w: 0.3158888} + inSlope: {x: 0.0011403868, y: 0.13915358, z: -0.13549727, w: 0.22512695} + outSlope: {x: 0.0011403868, y: 0.13915358, z: -0.13549727, w: 0.22512695} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.6333334 + value: {x: -0.113891676, y: 0.3503862, z: 0.8643439, w: 0.34229806} + inSlope: {x: -0.042009242, y: -0.14683232, z: 0.06377941, w: -0.02506616} + outSlope: {x: -0.042009242, y: -0.14683232, z: 0.06377941, w: -0.02506616} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.11647222, y: 0.35178965, z: 0.87487, w: 0.31189868} + inSlope: {x: 0.05359137, y: 0.27653244, z: -0.025201166, w: -0.22173038} + outSlope: {x: 0.05359137, y: 0.27653244, z: -0.025201166, w: -0.22173038} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.1000001 + value: {x: -0.107924044, y: 0.3808383, z: 0.8733089, w: 0.28398266} + inSlope: {x: -0.0070453873, y: -0.18172878, z: 0.08143462, w: -0.009915689} + outSlope: {x: -0.0070453873, y: -0.18172878, z: 0.08143462, w: -0.009915689} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.111015074, y: 0.3638277, z: 0.8759654, w: 0.2966305} + inSlope: {x: 0.0027064632, y: 0.14375179, z: -0.11255632, w: 0.15632018} + outSlope: {x: 0.0027064632, y: 0.14375179, z: -0.11255632, w: 0.15632018} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.5666668 + value: {x: -0.11759146, y: 0.35118383, z: 0.8694542, w: 0.32694265} + inSlope: {x: -0.029246612, y: -0.20442922, z: 0.09019384, w: -0.031061798} + outSlope: {x: -0.029246612, y: -0.20442922, z: 0.09019384, w: -0.031061798} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.120546125, y: 0.34228644, z: 0.8765312, w: 0.31623054} + inSlope: {x: -0.018318387, y: 0.016233638, z: 0.040805377, w: -0.13655587} + outSlope: {x: -0.018318387, y: 0.016233638, z: 0.040805377, w: -0.13655587} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:LeftUpLeg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.45401946, y: -0.11807965, z: 0.0061860057, w: 0.8831111} + inSlope: {x: 0.034189224, y: 0.09925335, z: 0.063187644, w: 0.0301069} + outSlope: {x: 0.034189224, y: 0.09925335, z: 0.063187644, w: 0.0301069} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.47283226, y: -0.1041872, z: 0.021480693, w: 0.8747076} + inSlope: {x: -0.31921905, y: 0.06440609, z: 0.12108364, w: -0.16815838} + outSlope: {x: -0.31921905, y: 0.06440609, z: 0.12108364, w: -0.16815838} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: -0.50052226, y: -0.10179568, z: 0.023082558, w: 0.85940814} + inSlope: {x: 0.24215373, y: -0.046344075, z: -0.13088688, w: 0.13802193} + outSlope: {x: 0.24215373, y: -0.046344075, z: -0.13088688, w: 0.13802193} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.41952598, y: -0.117952146, z: -0.005599485, w: 0.90002996} + inSlope: {x: -0.016821412, y: 0.005606702, z: -0.019953597, w: -0.0072660763} + outSlope: {x: -0.016821412, y: 0.005606702, z: -0.019953597, w: -0.0072660763} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.86666673 + value: {x: -0.45782936, y: -0.11973486, z: 0.00085502706, w: 0.88093996} + inSlope: {x: 0.052063502, y: 0.019958206, z: 0.013216408, w: 0.0296581} + outSlope: {x: 0.052063502, y: 0.019958206, z: 0.013216408, w: 0.0296581} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0333334 + value: {x: -0.46329018, y: -0.11272935, z: 0.01493381, w: 0.8788807} + inSlope: {x: -0.2566108, y: 0.09163502, z: 0.15373734, w: -0.1266431} + outSlope: {x: -0.2566108, y: 0.09163502, z: 0.15373734, w: -0.1266431} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666668 + value: {x: -0.5028775, y: -0.10378503, z: 0.02814613, w: 0.85764253} + inSlope: {x: 0.17585187, y: -0.028009193, z: -0.12768643, w: 0.10318099} + outSlope: {x: 0.17585187, y: -0.028009193, z: -0.12768643, w: 0.10318099} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5000001 + value: {x: -0.4244242, y: -0.11964732, z: -0.0015358642, w: 0.8975223} + inSlope: {x: 0.06505053, y: -0.03847143, z: -0.04430949, w: 0.025820648} + outSlope: {x: 0.06505053, y: -0.03847143, z: -0.04430949, w: 0.025820648} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7666668 + value: {x: -0.47481677, y: -0.11890928, z: 0.002330982, w: 0.8720116} + inSlope: {x: -0.07208354, y: 0.013170106, z: 0.037996173, w: -0.037420426} + outSlope: {x: -0.07208354, y: 0.013170106, z: 0.037996173, w: -0.037420426} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9666668 + value: {x: -0.485293, y: -0.10829584, z: 0.022892041, w: 0.86731696} + inSlope: {x: -0.24643232, y: 0.10395099, z: 0.15884227, w: -0.12946416} + outSlope: {x: -0.24643232, y: 0.10395099, z: 0.15884227, w: -0.12946416} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.2 + value: {x: -0.5068386, y: -0.103509575, z: 0.031795315, w: 0.8552131} + inSlope: {x: 0.30497506, y: -0.0625228, z: -0.11971029, w: 0.17652886} + outSlope: {x: 0.30497506, y: -0.0625228, z: -0.11971029, w: 0.17652886} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.4333334 + value: {x: -0.4309389, y: -0.12029622, z: -0.0022576058, w: 0.894324} + inSlope: {x: -0.12089353, y: -0.030590065, z: -0.04829856, w: -0.062962234} + outSlope: {x: -0.12089353, y: -0.030590065, z: -0.04829856, w: -0.062962234} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.6333334 + value: {x: -0.4845208, y: -0.12340209, z: -0.002006556, w: 0.86602974} + inSlope: {x: -0.15073046, y: 0.04930486, z: 0.088806644, w: -0.07683821} + outSlope: {x: -0.15073046, y: 0.04930486, z: 0.088806644, w: -0.07683821} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.8666668 + value: {x: -0.4984239, y: -0.10648908, z: 0.022380468, w: 0.8600772} + inSlope: {x: -0.2441653, y: 0.10590936, z: 0.109519616, w: -0.13163936} + outSlope: {x: -0.2441653, y: 0.10590936, z: 0.109519616, w: -0.13163936} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.0666668 + value: {x: -0.5240208, y: -0.096507184, z: 0.03135243, w: 0.84563917} + inSlope: {x: 0.26346916, y: -0.03171, z: -0.10019684, w: 0.16218886} + outSlope: {x: 0.26346916, y: -0.03171, z: -0.10019684, w: 0.16218886} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.266667 + value: {x: -0.4272655, y: -0.115865916, z: -0.0040459605, w: 0.8966621} + inSlope: {x: 0.36710805, y: -0.07018085, z: -0.19274613, w: 0.16656443} + outSlope: {x: 0.36710805, y: -0.07018085, z: -0.19274613, w: 0.16656443} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.5333335 + value: {x: -0.45544747, y: -0.12112482, z: -0.0024822608, w: 0.88198084} + inSlope: {x: -0.06061977, y: -0.058591906, z: 0.06940192, w: -0.038917996} + outSlope: {x: -0.06061977, y: -0.058591906, z: 0.06940192, w: -0.038917996} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.4540188, y: -0.11807901, z: 0.0061853756, w: 0.8831116} + inSlope: {x: -0.0061136545, y: 0.07633239, z: 0.08899534, w: 0.006701953} + outSlope: {x: -0.0061136545, y: 0.07633239, z: 0.08899534, w: 0.006701953} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.6308044, y: 0.0054932744, z: 0.23284128, w: 0.74016255} + inSlope: {x: 0.03314674, y: -0.017158132, z: -0.20151748, w: 0.0342983} + outSlope: {x: 0.03314674, y: -0.017158132, z: -0.20151748, w: 0.0342983} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: 0.64016646, y: -0.029642712, z: 0.20169921, w: 0.7406927} + inSlope: {x: 0.036326054, y: -0.26172763, z: -0.000673905, w: -0.04144192} + outSlope: {x: 0.036326054, y: -0.26172763, z: -0.000673905, w: -0.04144192} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: 0.6175184, y: -0.02051235, z: 0.22456565, w: 0.75353867} + inSlope: {x: -0.1754398, y: 0.34185636, z: 0.11421768, w: 0.118882716} + outSlope: {x: -0.1754398, y: 0.34185636, z: 0.11421768, w: 0.118882716} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6333334 + value: {x: 0.59563005, y: 0.0052296626, z: 0.24895836, w: 0.7636866} + inSlope: {x: -0.06318031, y: -0.13380614, z: 0.15440114, w: -0.00019849278} + outSlope: {x: -0.06318031, y: -0.13380614, z: 0.15440114, w: -0.00019849278} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000001 + value: {x: 0.6063187, y: -0.007399317, z: 0.2571255, w: 0.7524688} + inSlope: {x: 0.19306363, y: 0.11413558, z: -0.09934592, w: -0.12078345} + outSlope: {x: 0.19306363, y: 0.11413558, z: -0.09934592, w: -0.12078345} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.6358663, y: -0.0024478037, z: 0.21295305, w: 0.74183494} + inSlope: {x: 0.11420231, y: -0.1948278, z: -0.14177187, w: -0.057896428} + outSlope: {x: 0.11420231, y: -0.1948278, z: -0.14177187, w: -0.057896428} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3000001 + value: {x: 0.64248437, y: -0.0187368, z: 0.21235913, w: 0.7360478} + inSlope: {x: -0.12233746, y: 0.16516222, z: 0.11645626, w: 0.076997355} + outSlope: {x: -0.12233746, y: 0.16516222, z: 0.11645626, w: 0.076997355} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.607961, y: 0.013853485, z: 0.24848938, w: 0.7539526} + inSlope: {x: -0.035952333, y: -0.14868972, z: 0.1367378, w: -0.013424422} + outSlope: {x: -0.035952333, y: -0.14868972, z: 0.1367378, w: -0.013424422} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7666668 + value: {x: 0.6242759, y: -0.003846256, z: 0.25105485, w: 0.73975414} + inSlope: {x: 0.12143803, y: 0.028861102, z: -0.12448725, w: -0.060062766} + outSlope: {x: 0.12143803, y: 0.028861102, z: -0.12448725, w: -0.060062766} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.0333335 + value: {x: 0.6489789, y: -0.021893812, z: 0.2059795, w: 0.7320653} + inSlope: {x: 0.08238197, y: -0.20524363, z: -0.07488182, w: -0.05797577} + outSlope: {x: 0.08238197, y: -0.20524363, z: -0.07488182, w: -0.05797577} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.2333333 + value: {x: 0.6377212, y: -0.030549252, z: 0.21468481, w: 0.73911357} + inSlope: {x: -0.14727075, y: 0.27712655, z: 0.098087884, w: 0.109358735} + outSlope: {x: -0.14727075, y: 0.27712655, z: 0.098087884, w: 0.109358735} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.4333334 + value: {x: 0.61310005, y: 0.024272338, z: 0.24108893, w: 0.7519278} + inSlope: {x: -0.028808739, y: 0.009989198, z: 0.15093073, w: -0.025190437} + outSlope: {x: -0.028808739, y: 0.009989198, z: 0.15093073, w: -0.025190437} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.6333334 + value: {x: 0.63185877, y: 0.012061596, z: 0.24953096, w: 0.7337189} + inSlope: {x: 0.16217008, y: -0.027056992, z: -0.13825057, w: -0.09228864} + outSlope: {x: 0.16217008, y: -0.027056992, z: -0.13825057, w: -0.09228864} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.9333334 + value: {x: 0.6485304, y: -0.03476415, z: 0.2038725, w: 0.73255426} + inSlope: {x: 0.013060585, y: -0.29581505, z: -0.035930395, w: -0.015506722} + outSlope: {x: 0.013060585, y: -0.29581505, z: -0.035930395, w: -0.015506722} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.1333334 + value: {x: 0.6308479, y: -0.048142664, z: 0.21763039, w: 0.7432027} + inSlope: {x: -0.16982065, y: 0.25755033, z: 0.14642462, w: 0.11728774} + outSlope: {x: -0.16982065, y: 0.25755033, z: 0.14642462, w: 0.11728774} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.3666668 + value: {x: 0.5959396, y: 0.0070346766, z: 0.2545899, w: 0.7615711} + inSlope: {x: -0.046910986, y: -0.15372175, z: 0.13885653, w: -0.008417673} + outSlope: {x: -0.046910986, y: -0.15372175, z: 0.13885653, w: -0.008417673} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.5333335 + value: {x: 0.6132026, y: -0.0035018947, z: 0.255614, w: 0.74741685} + inSlope: {x: 0.18806416, y: 0.16441512, z: -0.13192278, w: -0.10854463} + outSlope: {x: 0.18806416, y: 0.16441512, z: -0.13192278, w: -0.10854463} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.63080376, y: 0.0054933713, z: 0.23284127, w: 0.7401631} + inSlope: {x: 0.06636864, y: -0.048886478, z: -0.18555138, w: 0.0030988485} + outSlope: {x: 0.06636864, y: -0.048886478, z: -0.18555138, w: 0.0030988485} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.16970278, y: 0.028958876, z: -0.12205009, w: 0.9774795} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.16970278, y: 0.028958876, z: -0.12205009, w: 0.9774795} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot/mixamorig:LeftToeBase + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.04573715, y: 0.039433047, z: 0.0727525, w: 0.99552006} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.04573715, y: 0.039433047, z: 0.0727525, w: 0.99552006} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot/mixamorig:LeftToeBase/mixamorig:LeftToe_End + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.13999152, y: 0.13202126, z: 0.95642495, w: -0.21959981} + inSlope: {x: 0.07531508, y: -0.029703675, z: -0.0038194654, w: 0.014031081} + outSlope: {x: 0.07531508, y: -0.029703675, z: -0.0038194654, w: 0.014031081} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: 0.1478603, y: 0.13781224, z: 0.9509345, w: -0.23424062} + inSlope: {x: -0.0064410986, y: 0.054869708, z: -0.056505196, w: -0.20138983} + outSlope: {x: -0.0064410986, y: 0.054869708, z: -0.056505196, w: -0.20138983} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.15021457, y: 0.112109855, z: 0.9509752, w: -0.24599428} + inSlope: {x: 0.01372955, y: -0.10747303, z: 0.04422335, w: 0.12975517} + outSlope: {x: 0.01372955, y: -0.10747303, z: 0.04422335, w: 0.12975517} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.70000005 + value: {x: 0.13485901, y: 0.14932868, z: 0.95609486, w: -0.2130647} + inSlope: {x: -0.027799979, y: -0.023552943, z: 0.0040608654, w: -0.015793301} + outSlope: {x: -0.027799979, y: -0.023552943, z: 0.0040608654, w: -0.015793301} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9333334 + value: {x: 0.12991795, y: 0.14489233, z: 0.95672697, w: -0.21633567} + inSlope: {x: 0.05411894, y: -0.08111334, z: -0.00060260633, w: -0.024631847} + outSlope: {x: 0.05411894, y: -0.08111334, z: -0.00060260633, w: -0.024631847} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2 + value: {x: 0.13247803, y: 0.15582126, z: 0.9472987, w: -0.2465653} + inSlope: {x: -0.012276259, y: -0.037776493, z: -0.013931407, w: -0.084351085} + outSlope: {x: -0.012276259, y: -0.037776493, z: -0.013931407, w: -0.084351085} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4333334 + value: {x: 0.13763858, y: 0.14004716, z: 0.95354563, w: -0.22845817} + inSlope: {x: -0.06599335, y: 0.121601194, z: 0.033903155, w: 0.17728725} + outSlope: {x: -0.06599335, y: 0.121601194, z: 0.033903155, w: 0.17728725} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6333334 + value: {x: 0.12653026, y: 0.15790133, z: 0.9559675, w: -0.212564} + inSlope: {x: 0.0010040413, y: -0.050955538, z: -0.00089496456, w: -0.04116323} + outSlope: {x: 0.0010040413, y: -0.050955538, z: -0.00089496456, w: -0.04116323} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.12952264, y: 0.14460374, z: 0.95668256, w: -0.21696112} + inSlope: {x: 0.048249763, y: -0.11271395, z: 0.011231303, w: 0.0030237623} + outSlope: {x: 0.048249763, y: -0.11271395, z: 0.011231303, w: 0.0030237623} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.136238, y: 0.15878564, z: 0.94892216, w: -0.23616342} + inSlope: {x: -0.00704188, y: 0.15730226, z: -0.089929044, w: -0.26003563} + outSlope: {x: -0.00704188, y: 0.15730226, z: -0.089929044, w: -0.26003563} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.2 + value: {x: 0.13508812, y: 0.141758, z: 0.94675606, w: -0.25555608} + inSlope: {x: 0.018994976, y: -0.13499951, z: 0.05445247, w: 0.1368813} + outSlope: {x: 0.018994976, y: -0.13499951, z: 0.05445247, w: 0.1368813} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.4 + value: {x: 0.1262857, y: 0.16156076, z: 0.95447886, w: -0.21661088} + inSlope: {x: -0.11413145, y: 0.2157314, z: 0.017517524, w: 0.17041431} + outSlope: {x: -0.11413145, y: 0.2157314, z: 0.017517524, w: 0.17041431} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.6333334 + value: {x: 0.11777277, y: 0.16295086, z: 0.955674, w: -0.21509042} + inSlope: {x: -0.010814565, y: -0.047200665, z: -0.008505293, w: -0.07931098} + outSlope: {x: -0.010814565, y: -0.047200665, z: -0.008505293, w: -0.07931098} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.13189325, y: 0.13318272, z: 0.9562061, w: -0.22480308} + inSlope: {x: 0.07567592, y: 0.03961023, z: -0.048677668, w: -0.13808629} + outSlope: {x: 0.07567592, y: 0.03961023, z: -0.048677668, w: -0.13808629} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.0666668 + value: {x: 0.14678244, y: 0.12006403, z: 0.9444088, w: -0.26857328} + inSlope: {x: 0.059524756, y: -0.1849747, z: 0.04219834, w: 0.099226184} + outSlope: {x: 0.059524756, y: -0.1849747, z: 0.04219834, w: 0.099226184} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.2333336 + value: {x: 0.14784348, y: 0.11261957, z: 0.955027, w: -0.23104697} + inSlope: {x: -0.062293917, y: 0.17051724, z: 0.059233066, w: 0.28902906} + outSlope: {x: -0.062293917, y: 0.17051724, z: 0.059233066, w: 0.28902906} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.4333334 + value: {x: 0.14038302, y: 0.13439801, z: 0.957716, w: -0.21215542} + inSlope: {x: -0.053652324, y: -0.022579413, z: 0.0012043203, w: -0.044238836} + outSlope: {x: -0.053652324, y: -0.022579413, z: 0.0012043203, w: -0.044238836} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.1399914, y: 0.13202244, z: 0.95642495, w: -0.2195995} + inSlope: {x: 0.07436611, y: -0.10731484, z: 0.009056934, w: 0.020995459} + outSlope: {x: 0.07436611, y: -0.10731484, z: 0.009056934, w: 0.020995459} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:RightUpLeg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.41098967, y: 0.079455644, z: 0.05833248, w: 0.90629554} + inSlope: {x: 0.5058038, y: -0.04759669, z: 0.2561628, w: 0.21029232} + outSlope: {x: 0.5058038, y: -0.04759669, z: 0.2561628, w: 0.21029232} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.37114725, y: 0.07254548, z: 0.087315366, w: 0.92160887} + inSlope: {x: -0.2717466, y: 0.037590254, z: 0.030226933, w: -0.11631039} + outSlope: {x: -0.2717466, y: 0.037590254, z: 0.030226933, w: -0.11631039} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.41831595, y: 0.075231835, z: 0.08343778, w: 0.90132684} + inSlope: {x: -0.0066675246, y: -0.034496453, z: -0.03127065, w: 0.0026804218} + outSlope: {x: -0.0066675246, y: -0.034496453, z: -0.03127065, w: 0.0026804218} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5666667 + value: {x: -0.40742233, y: 0.06707945, z: 0.06498595, w: 0.90845156} + inSlope: {x: -0.27233148, y: -0.035162304, z: -0.17583883, w: -0.108063556} + outSlope: {x: -0.27233148, y: -0.035162304, z: -0.17583883, w: -0.108063556} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000001 + value: {x: -0.4788263, y: 0.069614075, z: 0.0394035, w: 0.8742578} + inSlope: {x: 0.041398644, y: 0.04738918, z: 0.1176976, w: 0.0132519435} + outSlope: {x: 0.041398644, y: 0.04738918, z: 0.1176976, w: 0.0132519435} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.4014873, y: 0.084925316, z: 0.07087837, w: 0.90916} + inSlope: {x: 0.2904036, y: 0.049488954, z: 0.07705761, w: 0.11897026} + outSlope: {x: 0.2904036, y: 0.049488954, z: 0.07705761, w: 0.11897026} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666668 + value: {x: -0.42844588, y: 0.08940911, z: 0.07654625, w: 0.8958688} + inSlope: {x: 0.095058404, y: -0.0032055858, z: -0.042890504, w: 0.049198873} + outSlope: {x: 0.095058404, y: -0.0032055858, z: -0.042890504, w: 0.049198873} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4666667 + value: {x: -0.41285285, y: 0.08486029, z: 0.06337944, w: 0.9046184} + inSlope: {x: -0.20819592, y: -0.08433245, z: -0.10249069, w: -0.08045633} + outSlope: {x: -0.20819592, y: -0.08433245, z: -0.10249069, w: -0.08045633} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7333335 + value: {x: -0.48157293, y: 0.08092272, z: 0.035667736, w: 0.8719328} + inSlope: {x: 0.116859905, y: 0.017584786, z: 0.09612179, w: 0.05832289} + outSlope: {x: 0.116859905, y: 0.017584786, z: 0.09612179, w: 0.05832289} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9333334 + value: {x: -0.40652874, y: 0.08498586, z: 0.06850434, w: 0.9070937} + inSlope: {x: 0.10795497, y: 0.0025451453, z: 0.106861636, w: 0.040636405} + outSlope: {x: 0.10795497, y: 0.0025451453, z: 0.106861636, w: 0.040636405} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.44050664, y: 0.09119564, z: 0.0720558, w: 0.89019394} + inSlope: {x: 0.0381786, y: -0.06981674, z: 0.04877624, w: 0.021983406} + outSlope: {x: 0.0381786, y: -0.06981674, z: 0.04877624, w: 0.021983406} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.4 + value: {x: -0.42757344, y: 0.08183869, z: 0.060696088, w: 0.8982201} + inSlope: {x: -0.2656024, y: -0.047796115, z: -0.16592062, w: -0.11183302} + outSlope: {x: -0.2656024, y: -0.047796115, z: -0.16592062, w: -0.11183302} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.6333334 + value: {x: -0.4865704, y: 0.091935486, z: 0.035188645, w: 0.8680777} + inSlope: {x: 0.14430164, y: 0.12779419, z: 0.10424796, w: 0.062373936} + outSlope: {x: 0.14430164, y: 0.12779419, z: 0.10424796, w: 0.062373936} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.8000002 + value: {x: -0.40843678, y: 0.09481298, z: 0.07192422, w: 0.9049955} + inSlope: {x: 0.31479642, y: -0.18213457, z: 0.22972417, w: 0.144902} + outSlope: {x: 0.31479642, y: -0.18213457, z: 0.22972417, w: 0.144902} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.0666668 + value: {x: -0.44878894, y: 0.08450259, z: 0.07916255, w: 0.88610446} + inSlope: {x: 0.10643597, y: -0.09511748, z: 0.04601468, w: 0.058387276} + outSlope: {x: 0.10643597, y: -0.09511748, z: 0.04601468, w: 0.058387276} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.3000002 + value: {x: -0.40907788, y: 0.05850506, z: 0.06557284, w: 0.9082581} + inSlope: {x: -0.21201363, y: -0.13802259, z: -0.17562377, w: -0.07491328} + outSlope: {x: -0.21201363, y: -0.13802259, z: -0.17562377, w: -0.07491328} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.466667 + value: {x: -0.47644502, y: 0.05899732, z: 0.042678736, w: 0.87618375} + inSlope: {x: -0.19939008, y: 0.11636892, z: -0.036125008, w: -0.11357498} + outSlope: {x: -0.19939008, y: 0.11636892, z: -0.036125008, w: -0.11357498} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.6000001 + value: {x: -0.45197025, y: 0.07687966, z: 0.043204926, w: 0.88766307} + inSlope: {x: 0.54440224, y: 0.090132035, z: 0.1820679, w: 0.25914097} + outSlope: {x: 0.54440224, y: 0.090132035, z: 0.1820679, w: 0.25914097} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.4109914, y: 0.07945505, z: 0.0583327, w: 0.9062948} + inSlope: {x: 0.63360184, y: 0.019350592, z: 0.2346382, w: 0.28037694} + outSlope: {x: 0.63360184, y: 0.019350592, z: 0.2346382, w: 0.28037694} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.70407397, y: -0.1580133, z: -0.20789792, w: 0.6603713} + inSlope: {x: -0.2968293, y: -0.12143745, z: -0.11111631, w: 0.24797378} + outSlope: {x: -0.2968293, y: -0.12143745, z: -0.11111631, w: 0.24797378} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: 0.6799203, y: -0.17323345, z: -0.2241685, w: 0.6763484} + inSlope: {x: 0.14734356, y: 0.05236633, z: -0.017392786, w: -0.14077125} + outSlope: {x: 0.14734356, y: 0.05236633, z: -0.017392786, w: -0.14077125} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.699682, y: -0.17170037, z: -0.22716713, w: 0.65525514} + inSlope: {x: -0.026483234, y: -0.020306993, z: 0.024957279, w: 0.03156155} + outSlope: {x: -0.026483234, y: -0.020306993, z: 0.024957279, w: 0.03156155} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6333334 + value: {x: 0.712759, y: -0.16401096, z: -0.20597053, w: 0.65011626} + inSlope: {x: 0.21259458, y: 0.092687085, z: 0.15171602, w: -0.16162995} + outSlope: {x: 0.21259458, y: 0.092687085, z: 0.15171602, w: -0.16162995} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.7303169, y: -0.15232736, z: -0.1960575, w: 0.63639224} + inSlope: {x: -0.14865425, y: -0.0032608723, z: -0.068473205, w: 0.14811336} + outSlope: {x: -0.14865425, y: -0.0032608723, z: -0.068473205, w: 0.14811336} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.6849688, y: -0.17345397, z: -0.224245, w: 0.6711524} + inSlope: {x: -0.004253093, y: 0.029811664, z: -0.030098438, w: 0.001991095} + outSlope: {x: -0.004253093, y: 0.029811664, z: -0.030098438, w: 0.001991095} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.69674295, y: -0.16877235, z: -0.22683652, w: 0.65924984} + inSlope: {x: -0.027860079, y: -0.007933751, z: 0.015936313, w: 0.032876693} + outSlope: {x: -0.027860079, y: -0.007933751, z: 0.015936313, w: 0.032876693} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.71549153, y: -0.16051608, z: -0.1990742, w: 0.6501353} + inSlope: {x: 0.2007131, y: 0.07918188, z: 0.12705392, w: -0.16244695} + outSlope: {x: 0.2007131, y: 0.07918188, z: 0.12705392, w: -0.16244695} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.8000001 + value: {x: 0.72115093, y: -0.15320478, z: -0.20195292, w: 0.6447361} + inSlope: {x: -0.24285549, y: -0.10665189, z: -0.15027538, w: 0.19840407} + outSlope: {x: -0.24285549, y: -0.10665189, z: -0.15027538, w: 0.19840407} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.68590194, y: -0.16409129, z: -0.22585611, w: 0.6720131} + inSlope: {x: 0.020725245, y: 0.015497103, z: -0.08478881, w: -0.0459666} + outSlope: {x: 0.020725245, y: 0.015497103, z: -0.08478881, w: -0.0459666} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.2333333 + value: {x: 0.69979155, y: -0.16624738, z: -0.23076063, w: 0.6552886} + inSlope: {x: -0.04157411, y: -0.018768761, z: 0.06261457, w: 0.061536796} + outSlope: {x: -0.04157411, y: -0.018768761, z: 0.06261457, w: 0.061536796} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.4666667 + value: {x: 0.7128589, y: -0.15926558, z: -0.19879283, w: 0.6534126} + inSlope: {x: 0.20824614, y: 0.07141881, z: 0.12486102, w: -0.17180125} + outSlope: {x: 0.20824614, y: 0.07141881, z: 0.12486102, w: -0.17180125} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.7 + value: {x: 0.71946293, y: -0.15922956, z: -0.199898, w: 0.6458018} + inSlope: {x: -0.24574235, y: -0.12640625, z: -0.19200833, w: 0.18244062} + outSlope: {x: -0.24574235, y: -0.12640625, z: -0.19200833, w: 0.18244062} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.8666668 + value: {x: 0.6884692, y: -0.17433758, z: -0.2230677, w: 0.66772556} + inSlope: {x: 0.036835708, y: -0.026086072, z: -0.062712565, w: -0.06598688} + outSlope: {x: 0.036835708, y: -0.026086072, z: -0.062712565, w: -0.06598688} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.1000001 + value: {x: 0.7146862, y: -0.17267664, z: -0.22690563, w: 0.63868636} + inSlope: {x: -0.03378961, y: 0.00540175, z: 0.02570654, w: 0.04830663} + outSlope: {x: -0.03378961, y: 0.00540175, z: 0.02570654, w: 0.04830663} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.7117282, y: -0.16761291, z: -0.20535162, w: 0.65052253} + inSlope: {x: 0.19492525, y: 0.1360726, z: 0.11728998, w: -0.1419623} + outSlope: {x: 0.19492525, y: 0.1360726, z: 0.11728998, w: -0.1419623} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.5666668 + value: {x: 0.7354368, y: -0.14654109, z: -0.19045706, w: 0.63354915} + inSlope: {x: -0.2066662, y: 0.011813577, z: -0.049319386, w: 0.22651903} + outSlope: {x: -0.2066662, y: 0.011813577, z: -0.049319386, w: 0.22651903} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.70407444, y: -0.15801227, z: -0.20789833, w: 0.6603708} + inSlope: {x: -0.34641477, y: -0.17262892, z: -0.23581602, w: 0.26069486} + outSlope: {x: -0.34641477, y: -0.17262892, z: -0.23581602, w: 0.26069486} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.16971263, y: -0.028988967, z: 0.122042224, w: 0.97747785} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.16971263, y: -0.028988967, z: 0.122042224, w: 0.97747785} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot/mixamorig:RightToeBase + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.04573715, y: -0.039433047, z: -0.0727525, w: 0.99552006} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.04573715, y: -0.039433047, z: -0.0727525, w: 0.99552006} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot/mixamorig:RightToeBase/mixamorig:RightToe_End + m_CompressedRotationCurves: [] + m_EulerCurves: [] + m_PositionCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.00030038838, y: 0.014249532, z: -0.000048388814} + inSlope: {x: -0.0032021862, y: 0.0026647134, z: 0.002822922} + outSlope: {x: -0.0032021862, y: 0.0026647134, z: 0.002822922} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.00019364878, y: 0.014338357, z: 0.00004570858} + inSlope: {x: -0.0033083968, y: 0.0023709477, z: 0.0026295686} + outSlope: {x: -0.0033084007, y: 0.0023708611, z: 0.0026295695} + tangentMode: 0 + weightedMode: 0 + 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.00007982832, y: 0.014407595, z: 0.00012691575} + inSlope: {x: -0.0033983984, y: 0.0014638487, z: 0.00224344} + outSlope: {x: -0.0033983996, y: 0.0014639412, z: 0.0022434408} + tangentMode: 0 + weightedMode: 0 + 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.000032911244, y: 0.014435943, z: 0.00019527128} + inSlope: {x: -0.0033065958, y: 0.0001832927, z: 0.0018880307} + outSlope: {x: -0.0033065963, y: 0.00018329622, z: 0.0018880278} + tangentMode: 0 + weightedMode: 0 + 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.00031079736, y: 0.014269154, z: 0.00035084892} + inSlope: {x: -0.0017763835, y: -0.0027674024, z: 0.001318489} + outSlope: {x: -0.0017763835, y: -0.0027674877, z: 0.0013184937} + tangentMode: 0 + weightedMode: 0 + 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.00036446817, y: 0.014081256, z: 0.00041808913} + inSlope: {x: 0.00018096785, y: -0.0024063557, z: 0.00044401578} + outSlope: {x: 0.00018096037, y: -0.0024066258, z: 0.0004440215} + tangentMode: 0 + weightedMode: 0 + 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.0003044014, y: 0.013989027, z: 0.00039999603} + inSlope: {x: 0.0014029978, y: -0.000063906315, z: -0.00102688} + outSlope: {x: 0.0014029907, y: -0.000063560765, z: -0.0010268879} + tangentMode: 0 + weightedMode: 0 + 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.00011968544, y: 0.014143012, z: 0.0001948655} + inSlope: {x: 0.0019184683, y: 0.0024207027, z: -0.0028840997} + outSlope: {x: 0.0019184687, y: 0.0024208117, z: -0.002884102} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.46666667 + value: {x: -0.00005713146, y: 0.014225705, z: 0.000091040514} + inSlope: {x: 0.0018129711, y: 0.002262604, z: -0.0032920456} + outSlope: {x: 0.0018129728, y: 0.0022625325, z: -0.0032920456} + tangentMode: 0 + weightedMode: 0 + 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.0000011797515, y: 0.01429385, z: -0.000024604968} + inSlope: {x: 0.0017073248, y: 0.0015545996, z: -0.0036256933} + outSlope: {x: 0.0017073182, y: 0.0015543463, z: -0.0036256772} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: 0.00005669056, y: 0.014329347, z: -0.00015067318} + inSlope: {x: 0.001667979, y: 0.0004233917, z: -0.0039015284} + outSlope: {x: 0.0016680053, y: 0.00042346588, z: -0.0039015915} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.6 + value: {x: 0.00016668435, y: 0.014276339, z: -0.0004104807} + inSlope: {x: 0.0016184598, y: -0.0017978736, z: -0.0034745426} + outSlope: {x: 0.001618491, y: -0.0017978323, z: -0.003474601} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.7 + value: {x: 0.00032291817, y: 0.014022003, z: -0.0006481511} + inSlope: {x: 0.0013258501, y: -0.0025289454, z: -0.000998592} + outSlope: {x: 0.0013258414, y: -0.0025289424, z: -0.0009985984} + tangentMode: 0 + weightedMode: 0 + 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.00038013517, y: 0.013897364, z: -0.0006421622} + inSlope: {x: 0.00016866787, y: -0.0008586941, z: 0.001076677} + outSlope: {x: 0.0001686674, y: -0.0008589618, z: 0.00107666} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.8666667 + value: {x: 0.00030504676, y: 0.013994652, z: -0.00044109026} + inSlope: {x: -0.0014060343, y: 0.0024610495, z: 0.002683799} + outSlope: {x: -0.0014060581, y: 0.002461391, z: 0.0026838335} + tangentMode: 0 + weightedMode: 0 + 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.00018534144, y: 0.014172439, z: -0.00025269092} + inSlope: {x: -0.0022564046, y: 0.002223055, z: 0.002689091} + outSlope: {x: -0.0022564237, y: 0.002223226, z: 0.0026891157} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.96666664 + value: {x: 0.0001019975, y: 0.014234306, z: -0.00016706546} + inSlope: {x: -0.0026671253, y: 0.0013245575, z: 0.002446998} + outSlope: {x: -0.0026670804, y: 0.0013245844, z: 0.0024469611} + tangentMode: 0 + weightedMode: 0 + 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.000007533974, y: 0.014260741, z: -0.00008955837} + inSlope: {x: -0.002886828, y: 0.00024659262, z: 0.0022716706} + outSlope: {x: -0.002886851, y: 0.00024686908, z: 0.0022716904} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.0333333 + value: {x: -0.00009045906, y: 0.014250753, z: -0.000015619586} + inSlope: {x: -0.002903316, y: -0.000683986, z: 0.0022487943} + outSlope: {x: -0.0029032456, y: -0.000684055, z: 0.0022487363} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.0666667 + value: {x: -0.0001860194, y: 0.014215134, z: 0.00006036044} + inSlope: {x: -0.0026245895, y: -0.0014020337, z: 0.002132867} + outSlope: {x: -0.002624675, y: -0.0014021441, z: 0.0021329387} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.1333333 + value: {x: -0.00032073757, y: 0.014090283, z: 0.0001828185} + inSlope: {x: -0.0012432281, y: -0.0019588673, z: 0.001523455} + outSlope: {x: -0.0012432159, y: -0.0019591977, z: 0.001523449} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.2333333 + value: {x: -0.00032257132, y: 0.013961661, z: 0.0002586485} + inSlope: {x: 0.0010975068, y: -0.00004299365, z: -0.00032543245} + outSlope: {x: 0.0010975185, y: -0.00004307041, z: -0.00032543417} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.3 + value: {x: -0.00020978793, y: 0.014023199, z: 0.00018845906} + inSlope: {x: 0.002131675, y: 0.0017229639, z: -0.0016240809} + outSlope: {x: 0.0021316148, y: 0.0017230617, z: -0.0016240239} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.3666667 + value: {x: -0.000054414126, y: 0.01416921, z: 0.00005244418} + inSlope: {x: 0.0022717752, y: 0.002250467, z: -0.0023870068} + outSlope: {x: 0.0022717807, y: 0.0022506134, z: -0.002387012} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.4 + value: {x: 0.00001840552, y: 0.014241707, z: -0.00003276653} + inSlope: {x: 0.0020735657, y: 0.0018863438, z: -0.002728503} + outSlope: {x: 0.0020735522, y: 0.0018862381, z: -0.002728485} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.4666667 + value: {x: 0.00014372254, y: 0.014316347, z: -0.0002350149} + inSlope: {x: 0.0016926602, y: 0.00006891973, z: -0.0031870427} + outSlope: {x: 0.0016927044, y: 0.000068852, z: -0.0031871237} + tangentMode: 0 + weightedMode: 0 + 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.00031709392, y: 0.014061779, z: -0.0005888586} + inSlope: {x: 0.0010516428, y: -0.0029095793, z: -0.001339644} + outSlope: {x: 0.0010516511, y: -0.0029097085, z: -0.0013396647} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.7 + value: {x: 0.000376316, y: 0.013844901, z: -0.00057751685} + inSlope: {x: -0.00019185824, y: -0.0009098368, z: 0.0013757298} + outSlope: {x: -0.00019186076, y: -0.0009099747, z: 0.0013757568} + tangentMode: 0 + weightedMode: 0 + 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.00020387849, y: 0.013998492, z: -0.0002770477} + inSlope: {x: -0.0021323422, y: 0.0023852452, z: 0.0026190402} + outSlope: {x: -0.002132402, y: 0.0023855704, z: 0.002619111} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.8666667 + value: {x: 0.00012699634, y: 0.014076659, z: -0.00018986454} + inSlope: {x: -0.002582947, y: 0.0021430645, z: 0.0027481683} + outSlope: {x: -0.0025829517, y: 0.0021428177, z: 0.0027481746} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.9 + value: {x: 0.00003168195, y: 0.014141362, z: -0.00009383629} + inSlope: {x: -0.0029805058, y: 0.0013548435, z: 0.002800435} + outSlope: {x: -0.002980486, y: 0.0013547057, z: 0.0028004157} + tangentMode: 0 + weightedMode: 0 + 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.000071703245, y: 0.014166982, z: -0.0000031696554} + inSlope: {x: -0.003104438, y: 0.00011833396, z: 0.0026327828} + outSlope: {x: -0.0031043382, y: 0.00011826388, z: 0.002632699} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.0333333 + value: {x: -0.00034029636, y: 0.014016459, z: 0.00022363111} + inSlope: {x: -0.0017188297, y: -0.0024107613, z: 0.0017603955} + outSlope: {x: -0.0017188077, y: -0.0024108652, z: 0.0017603779} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.1 + value: {x: -0.00039040128, y: 0.013866393, z: 0.0003044313} + inSlope: {x: 0.00021428296, y: -0.0015291566, z: 0.00045827404} + outSlope: {x: 0.00021425392, y: -0.0015289959, z: 0.00045826304} + tangentMode: 0 + weightedMode: 0 + 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.00033102962, y: 0.013841361, z: 0.00028149277} + inSlope: {x: 0.0013101167, y: 0.0008490808, z: -0.0011339876} + outSlope: {x: 0.0013101505, y: 0.0008490722, z: -0.0011340183} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.2666667 + value: {x: -0.00016132256, y: 0.014064398, z: 0.000072331546} + inSlope: {x: 0.0018516872, y: 0.0029877585, z: -0.0027614525} + outSlope: {x: 0.0018516717, y: 0.0029873701, z: -0.0027614415} + tangentMode: 0 + weightedMode: 0 + 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.000039618793, y: 0.014245046, z: -0.00013647} + inSlope: {x: 0.001803278, y: 0.0017341627, z: -0.003534737} + outSlope: {x: 0.0018032376, y: 0.001733715, z: -0.0035346535} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.3666666 + value: {x: 0.000020519032, y: 0.014280924, z: -0.00026116587} + inSlope: {x: 0.0017865183, y: 0.0003530998, z: -0.0037749228} + outSlope: {x: 0.001786403, y: 0.0003534449, z: -0.003774678} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.4333334 + value: {x: 0.00013453291, y: 0.0142124435, z: -0.0004986498} + inSlope: {x: 0.0015772695, y: -0.0022379265, z: -0.0028908243} + outSlope: {x: 0.0015772944, y: -0.0022377747, z: -0.0028908798} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.5666666 + value: {x: 0.00028223742, y: 0.013817729, z: -0.00063029554} + inSlope: {x: 0.00036726313, y: -0.0017743038, z: 0.0008914805} + outSlope: {x: 0.00036725655, y: -0.0017739447, z: 0.0008914575} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.6333334 + value: {x: 0.0002664034, y: 0.0137753235, z: -0.0005104011} + inSlope: {x: -0.00089193945, y: 0.0004346531, z: 0.0027150172} + outSlope: {x: -0.00089198555, y: 0.0004347804, z: 0.0027151771} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.7 + value: {x: 0.00017394524, y: 0.0138716735, z: -0.00028745361} + inSlope: {x: -0.001710762, y: 0.0022707686, z: 0.0035686465} + outSlope: {x: -0.0017107856, y: 0.0022711924, z: 0.0035686954} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.7333333 + value: {x: 0.00011243154, y: 0.013958689, z: -0.00016802296} + inSlope: {x: -0.0019998937, y: 0.0025915252, z: 0.0034564205} + outSlope: {x: -0.0019999037, y: 0.002591496, z: 0.0034564366} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.7666667 + value: {x: 0.000040618823, y: 0.014044421, z: -0.000057025103} + inSlope: {x: -0.0023816118, y: 0.0022968787, z: 0.0032996975} + outSlope: {x: -0.0023816011, y: 0.0022967153, z: 0.0032996836} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.8 + value: {x: -0.000046342084, y: 0.014111793, z: 0.000051956293} + inSlope: {x: -0.0027195907, y: 0.0014179717, z: 0.0031956532} + outSlope: {x: -0.0027195527, y: 0.0014181456, z: 0.0031956078} + tangentMode: 0 + weightedMode: 0 + 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.0001406858, y: 0.014138946, z: 0.0001560168} + inSlope: {x: -0.002741167, y: -0.0000055552614, z: 0.002964591} + outSlope: {x: -0.0027410989, y: -0.000005561867, z: 0.0029645234} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.9 + value: {x: -0.00030095177, y: 0.014038705, z: 0.00032760313} + inSlope: {x: -0.0018268914, y: -0.002547541, z: 0.0020953487} + outSlope: {x: -0.0018270023, y: -0.0025476068, z: 0.0020954781} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.9666667 + value: {x: -0.00037739912, y: 0.0138429515, z: 0.00043628173} + inSlope: {x: -0.00041759803, y: -0.0026894915, z: 0.0011190947} + outSlope: {x: -0.0004175948, y: -0.0026896514, z: 0.0011190985} + tangentMode: 0 + weightedMode: 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.00037872346, y: 0.013762261, z: 0.00046389631} + inSlope: {x: 0.00034257802, y: -0.0018519501, z: 0.00038194272} + outSlope: {x: 0.00034257708, y: -0.0018519281, z: 0.00038194619} + tangentMode: 0 + weightedMode: 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.0333333 + value: {x: -0.00035456108, y: 0.0137194805, z: 0.000461745} + inSlope: {x: 0.0013016486, y: -0.00015472682, z: -0.00037498027} + outSlope: {x: 0.0013016426, y: -0.00015506601, z: -0.0003749792} + tangentMode: 0 + weightedMode: 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.1 + value: {x: -0.00020239053, y: 0.0138303125, z: 0.00039376863} + inSlope: {x: 0.00281088, y: 0.0027273267, z: -0.0016825037} + outSlope: {x: 0.0028107052, y: 0.0027270042, z: -0.0016823953} + tangentMode: 0 + weightedMode: 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.1333334 + value: {x: -0.00010455809, y: 0.013933737, z: 0.0003267322} + inSlope: {x: 0.002810874, y: 0.0032402822, z: -0.0023614902} + outSlope: {x: 0.0028110605, y: 0.0032405911, z: -0.0023616313} + tangentMode: 0 + weightedMode: 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.00001498961, y: 0.0140463505, z: 0.00023632926} + inSlope: {x: 0.0024219276, y: 0.003327103, z: -0.0031065836} + outSlope: {x: 0.0024219798, y: 0.0033273466, z: -0.003106659} + tangentMode: 0 + weightedMode: 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.2 + value: {x: 0.000056905512, y: 0.014155546, z: 0.00011962435} + inSlope: {x: 0.0024188627, y: 0.003094548, z: -0.003595496} + outSlope: {x: 0.0024188936, y: 0.0030943775, z: -0.0035955461} + tangentMode: 0 + weightedMode: 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.2333333 + value: {x: 0.00014626869, y: 0.014252642, z: -0.0000033719998} + inSlope: {x: 0.0027104004, y: 0.002518937, z: -0.00356301} + outSlope: {x: 0.0027104174, y: 0.0025194138, z: -0.0035630264} + tangentMode: 0 + weightedMode: 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.2666667 + value: {x: 0.00023759925, y: 0.014323488, z: -0.00011791001} + inSlope: {x: 0.00262003, y: 0.0014303507, z: -0.0034526899} + outSlope: {x: 0.0026200118, y: 0.0014300427, z: -0.0034526736} + tangentMode: 0 + weightedMode: 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.3 + value: {x: 0.0003209366, y: 0.014347979, z: -0.0002335506} + inSlope: {x: 0.002080371, y: -0.00022049661, z: -0.0034656215} + outSlope: {x: 0.0020803474, y: -0.00022060877, z: -0.0034655768} + tangentMode: 0 + weightedMode: 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.3666666 + value: {x: 0.00041931184, y: 0.014217913, z: -0.00044435408} + inSlope: {x: 0.001340235, y: -0.00287734, z: -0.0023472756} + outSlope: {x: 0.0013401463, y: -0.002877224, z: -0.0023471394} + tangentMode: 0 + weightedMode: 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.4333334 + value: {x: 0.0005089354, y: 0.014026758, z: -0.00052523706} + inSlope: {x: 0.0011455081, y: -0.002356119, z: -0.000046020294} + outSlope: {x: 0.0011455243, y: -0.002356005, z: -0.000046017714} + tangentMode: 0 + weightedMode: 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.00056069356, y: 0.013923369, z: -0.0004686674} + inSlope: {x: 0.00030871917, y: -0.0005171694, z: 0.001285959} + outSlope: {x: 0.0003087214, y: -0.00051693455, z: 0.0012859496} + tangentMode: 0 + weightedMode: 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.5333333 + value: {x: 0.00056258653, y: 0.013925431, z: -0.00042276943} + inSlope: {x: -0.00038576382, y: 0.0008820729, z: 0.0018068734} + outSlope: {x: -0.0003857548, y: 0.00088176277, z: 0.0018068658} + tangentMode: 0 + weightedMode: 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.5666666 + value: {x: 0.0005349762, y: 0.013982161, z: -0.0003482094} + inSlope: {x: -0.0013423463, y: 0.0022708927, z: 0.0026367705} + outSlope: {x: -0.0013423293, y: 0.0022708569, z: 0.002636714} + tangentMode: 0 + weightedMode: 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.6 + value: {x: 0.000473097, y: 0.014076827, z: -0.00024698672} + inSlope: {x: -0.002136514, y: 0.002810024, z: 0.003035573} + outSlope: {x: -0.0021363767, y: 0.0028100193, z: 0.003035393} + tangentMode: 0 + weightedMode: 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.6333334 + value: {x: 0.00039254414, y: 0.014169502, z: -0.00014584065} + inSlope: {x: -0.002590561, y: 0.0025905052, z: 0.0029788623} + outSlope: {x: -0.0025907212, y: 0.0025907077, z: 0.0029790576} + tangentMode: 0 + weightedMode: 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.00030038532, y: 0.014249538, z: -0.000048386097} + inSlope: {x: -0.002764732, y: 0.002401165, z: 0.0029236053} + outSlope: {x: -0.002764732, y: 0.002401165, z: 0.0029236053} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips + m_ScaleCurves: [] + m_FloatCurves: [] + m_PPtrCurves: [] + m_SampleRate: 30 + 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: 1083781737 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1083781737 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 408225041 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3001700786 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3132553515 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 168334831 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 215603437 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1852142506 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1775379527 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1207142558 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3198065886 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 407569882 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3106263194 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 688943277 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2140469971 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1886386198 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 395264987 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 4080340377 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1014061991 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1587372701 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 357817416 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1915810720 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2015721024 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 407230557 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2938783533 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 10533847 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2486468252 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1925155201 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 523512273 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1714668715 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2119318601 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2334650127 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 4220895696 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1454392865 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2471676248 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 565509406 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2538289614 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2364716999 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3092991833 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2853632173 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3575002567 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 971364194 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1021604224 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 733358149 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1941555904 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1601611806 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 4126269581 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2280639224 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3482077456 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3984737358 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3155596823 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1692231856 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 440322630 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3048725362 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1185900278 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2828911296 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1935085395 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3974837130 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2435940167 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1651132406 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3169137491 + 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: 3.6666667 + 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/Jammo-Character/Animations/Default/a_Idle_Battle.anim.meta b/Assets/Jammo-Character/Animations/Default/a_Idle_Battle.anim.meta new file mode 100644 index 0000000..d5f2f79 --- /dev/null +++ b/Assets/Jammo-Character/Animations/Default/a_Idle_Battle.anim.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 6bd646364b2a3db42bcd783601e3d363 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 7400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Jammo-Character/Animations/Default/a_Idle_Happy.anim b/Assets/Jammo-Character/Animations/Default/a_Idle_Happy.anim new file mode 100644 index 0000000..442ea01 --- /dev/null +++ b/Assets/Jammo-Character/Animations/Default/a_Idle_Happy.anim @@ -0,0 +1,10114 @@ +%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: a_Idle_Happy + 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, 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.033333335 + 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: Armature.001 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.008127272, y: 0.007998123, z: 0.008851483, w: 0.9998958} + inSlope: {x: -0.03319214, y: -0.09127438, z: 0.030858226, w: 0.000014305114} + outSlope: {x: -0.03319214, y: -0.09127438, z: 0.030858226, w: 0.000014305114} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: -0.00913921, y: 0.0067793606, z: 0.011916724, w: 0.9998643} + inSlope: {x: 0.15760413, y: 0.014451303, z: -0.048576318, w: 0.0019168856} + outSlope: {x: 0.15760413, y: 0.014451303, z: -0.048576318, w: 0.0019168856} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5666667 + value: {x: -0.0002296368, y: -0.022212427, z: 0.009949976, w: 0.99970376} + inSlope: {x: -0.12457505, y: -0.58791226, z: 0.014152807, w: -0.014752157} + outSlope: {x: -0.12457505, y: -0.58791226, z: 0.014152807, w: -0.014752157} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.70000005 + value: {x: -0.014140253, y: -0.09194577, z: 0.0034186468, w: 0.99565774} + inSlope: {x: -0.014770223, y: -0.37700605, z: -0.11785726, w: -0.034555797} + outSlope: {x: -0.014770223, y: -0.37700605, z: -0.11785726, w: -0.034555797} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9333334 + value: {x: -0.007999377, y: -0.08598679, z: -0.010062114, w: 0.9962134} + inSlope: {x: -0.053487625, y: 0.69045305, z: 0.09596887, w: 0.05782217} + outSlope: {x: -0.053487625, y: 0.69045305, z: 0.09596887, w: 0.05782217} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0333334 + value: {x: -0.019162565, y: -0.018212201, z: -0.0031092074, w: 0.99964565} + inSlope: {x: -0.07199719, y: 0.40667266, z: 0.03324373, w: 0.007581697} + outSlope: {x: -0.07199719, y: 0.40667266, z: 0.03324373, w: 0.007581697} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.018077208, y: 0.024438292, z: 0.008001105, w: 0.9995059} + inSlope: {x: 0.008820956, y: 0.35591653, z: 0.13273992, w: -0.00939847} + outSlope: {x: 0.008820956, y: 0.35591653, z: 0.13273992, w: -0.00939847} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4000001 + value: {x: -0.015945457, y: 0.07473024, z: 0.024569152, w: 0.99677354} + inSlope: {x: -0.06223985, y: 0.19641478, z: 0.042562537, w: -0.016786173} + outSlope: {x: -0.06223985, y: 0.19641478, z: 0.042562537, w: -0.016786173} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6000001 + value: {x: -0.00958136, y: 0.08401392, z: 0.031627964, w: 0.9959164} + inSlope: {x: 0.054636095, y: -0.20444074, z: 0.0031253337, w: 0.017515708} + outSlope: {x: 0.054636095, y: -0.20444074, z: 0.0031253337, w: 0.017515708} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.8000001 + value: {x: 0.00005643275, y: 0.041141845, z: 0.0195022, w: 0.998963} + inSlope: {x: -0.058496326, y: -0.10914752, z: 0.023391092, w: 0.0040116943} + outSlope: {x: -0.058496326, y: -0.10914752, z: 0.023391092, w: 0.0040116943} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.0666668 + value: {x: -0.0064702886, y: -0.0016653343, z: 0.006110665, w: 0.99995905} + inSlope: {x: 0.017678337, y: -0.05895599, z: -0.089018, w: 0.00056773477} + outSlope: {x: 0.017678337, y: -0.05895599, z: -0.089018, w: 0.00056773477} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.3000002 + value: {x: -0.010150033, y: -0.019340249, z: 0.00068722974, w: 0.9997612} + inSlope: {x: -0.13683012, y: -0.20638269, z: -0.06059513, w: -0.0053179315} + outSlope: {x: -0.13683012, y: -0.20638269, z: -0.06059513, w: -0.0053179315} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.5333335 + value: {x: -0.0014534276, y: -0.01961275, z: -0.0015534944, w: 0.9998054} + inSlope: {x: 0.01598801, y: 0.112217374, z: 0.017617078, w: 0.0021395108} + outSlope: {x: 0.01598801, y: 0.112217374, z: 0.017617078, w: 0.0021395108} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.8000002 + value: {x: -0.0053530964, y: 0.009480606, z: 0.0069328034, w: 0.99991673} + inSlope: {x: -0.027170882, y: 0.012671955, z: 0.02464314, w: -0.00042915385} + outSlope: {x: -0.027170882, y: 0.012671955, z: 0.02464314, w: -0.00042915385} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.9333334 + value: {x: -0.008127264, y: 0.007998381, z: 0.008851354, w: 0.9998958} + inSlope: {x: -0.01762195, y: -0.015556855, z: 0.008887145, w: -0.00008761891} + outSlope: {x: -0.01762195, y: -0.015556855, z: 0.008887145, w: -0.00008761891} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.009327653, y: 0.0016765882, z: 0.017647946, w: 0.9997994} + inSlope: {x: -0.035641722, y: 0.04080367, z: -0.02816392, w: 0.0006991624} + outSlope: {x: -0.035641722, y: 0.04080367, z: -0.02816392, w: 0.0006991624} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.024127442, y: 0.016357584, z: 0.01743528, w: 0.99942297} + inSlope: {x: 0.03866966, y: -0.06674431, z: 0.055906404, w: -0.000820756} + outSlope: {x: 0.03866966, y: -0.06674431, z: 0.055906404, w: -0.000820756} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: 0.013757153, y: -0.0007017282, z: 0.018598553, w: 0.99973214} + inSlope: {x: -0.14500552, y: -0.23320782, z: 0.11125845, w: -0.0005158796} + outSlope: {x: -0.14500552, y: -0.23320782, z: 0.11125845, w: -0.0005158796} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6333334 + value: {x: 0.021841481, y: -0.03023143, z: 0.029321672, w: 0.998874} + inSlope: {x: 0.16876802, y: -0.12199313, z: -0.077912144, w: -0.005043448} + outSlope: {x: 0.16876802, y: -0.12199313, z: -0.077912144, w: -0.005043448} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.86666673 + value: {x: 0.02526751, y: -0.03314759, z: 0.022892347, w: 0.99886876} + inSlope: {x: -0.048182294, y: 0.045739494, z: -0.022189522, w: 0.0032517319} + outSlope: {x: -0.048182294, y: 0.045739494, z: -0.022189522, w: 0.0032517319} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.03318604, y: -0.019030768, z: 0.018809136, w: 0.99909097} + inSlope: {x: -0.013385242, y: 0.17324874, z: 0.09970863, w: 0.0017845647} + outSlope: {x: -0.013385242, y: 0.17324874, z: 0.09970863, w: 0.0017845647} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.009155603, y: 0.0054076677, z: 0.0259271, w: 0.99960726} + inSlope: {x: -0.10958323, y: 0.07152294, z: 0.05114545, w: -0.00059902534} + outSlope: {x: -0.10958323, y: 0.07152294, z: 0.05114545, w: -0.00059902534} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6000001 + value: {x: 0.01724119, y: 0.020903774, z: 0.026831245, w: 0.9992727} + inSlope: {x: 0.004953876, y: 0.017238375, z: 0.025763344, w: -0.0011229494} + outSlope: {x: 0.004953876, y: 0.017238375, z: 0.025763344, w: -0.0011229494} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7666668 + value: {x: 0.014743293, y: -0.0014883695, z: 0.038055334, w: 0.9991658} + inSlope: {x: -0.021134933, y: -0.26069, z: 0.00074604526, w: 0.000048279806} + outSlope: {x: -0.021134933, y: -0.26069, z: 0.00074604526, w: 0.000048279806} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.0333335 + value: {x: 0.023220029, y: -0.008781047, z: 0.026190797, w: 0.9993487} + inSlope: {x: -0.05151753, y: -0.033855245, z: -0.016643414, w: 0.0013142788} + outSlope: {x: -0.05151753, y: -0.033855245, z: -0.016643414, w: 0.0013142788} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.3000002 + value: {x: 0.021326251, y: -0.0074144877, z: 0.013591887, w: 0.9996527} + inSlope: {x: 0.056549206, y: 0.085548624, z: 0.021960929, w: -0.00081807456} + outSlope: {x: 0.056549206, y: 0.085548624, z: 0.021960929, w: -0.00081807456} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.5666668 + value: {x: 0.0151317455, y: -0.00037027465, z: 0.012995081, w: 0.999801} + inSlope: {x: -0.060018003, y: 0.036024503, z: 0.0070926053, w: 0.00084221445} + outSlope: {x: -0.060018003, y: 0.036024503, z: 0.0070926053, w: 0.00084221445} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.9333334 + value: {x: 0.00925453, y: 0.0016773563, z: 0.017647946, w: 0.9998} + inSlope: {x: 0.000108853084, y: -0.0036752515, z: 0.013280747, w: -0.00022530578} + outSlope: {x: 0.000108853084, y: -0.0036752515, z: 0.013280747, w: -0.00022530578} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.03352353, y: -0.00061434164, z: 0.00089057646, w: 0.9994374} + inSlope: {x: 0.027089974, y: 0.011704456, z: -0.017113617, w: 0.00091016287} + outSlope: {x: 0.027089974, y: 0.011704456, z: -0.017113617, w: 0.00091016287} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: -0.032014515, y: -0.005941277, z: 0.004096, w: 0.99946135} + inSlope: {x: 0.017989086, y: -0.05653557, z: 0.021373741, w: 0.00017702565} + outSlope: {x: 0.017989086, y: -0.05653557, z: 0.021373741, w: 0.00017702565} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.027940528, y: -0.008786613, z: -0.0036929394, w: 0.9995642} + inSlope: {x: -0.009163311, y: 0.017767569, z: -0.0076635517, w: -0.00013232158} + outSlope: {x: -0.009163311, y: 0.017767569, z: -0.0076635517, w: -0.00013232158} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4333334 + value: {x: -0.033678714, y: 0.0026887886, z: 0.0046459404, w: 0.9994183} + inSlope: {x: -0.024188574, y: 0.019709475, z: 0.004188602, w: -0.00088870607} + outSlope: {x: -0.024188574, y: 0.019709475, z: 0.004188602, w: -0.00088870607} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.8000001 + value: {x: -0.031965237, y: -0.0037026461, z: 0.009504928, w: 0.999437} + inSlope: {x: 0.007636424, y: -0.05022335, z: -0.021398501, w: 0.0002825263} + outSlope: {x: 0.007636424, y: -0.05022335, z: -0.021398501, w: 0.0002825263} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.2 + value: {x: -0.03321558, y: -0.0054308795, z: 0.0010793832, w: 0.9994329} + inSlope: {x: 0.025460334, y: 0.006192703, z: -0.03231455, w: 0.00091105787} + outSlope: {x: 0.025460334, y: 0.006192703, z: -0.03231455, w: 0.00091105787} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.9333334 + value: {x: -0.033563558, y: -0.0005620406, z: 0.000888729, w: 0.9994361} + inSlope: {x: 0.0003009665, y: 0.000113279784, z: 0.0017410556, w: 0.000008940705} + outSlope: {x: 0.0003009665, y: 0.000113279784, z: 0.0017410556, w: 0.000008940705} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.046059333, y: -0.00067379215, z: 0.0008986631, w: 0.9989381} + inSlope: {x: 0.027114337, y: 0.012038729, z: -0.016933553, w: 0.0012552737} + outSlope: {x: 0.027114337, y: 0.012038729, z: -0.016933553, w: 0.0012552737} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: -0.044584937, y: -0.006040946, z: 0.0040328656, w: 0.9989792} + inSlope: {x: 0.01761936, y: -0.05686143, z: 0.020677716, w: 0.00038355557} + outSlope: {x: 0.01761936, y: -0.05686143, z: 0.020677716, w: 0.00038355557} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.040420312, y: -0.008730518, z: -0.0037517154, w: 0.9991376} + inSlope: {x: -0.009140819, y: 0.017954178, z: -0.0074026026, w: -0.0002449739} + outSlope: {x: -0.009140819, y: 0.017954178, z: -0.0074026026, w: -0.0002449739} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4333334 + value: {x: -0.046199713, y: 0.0026008557, z: 0.004697969, w: 0.9989178} + inSlope: {x: -0.024043791, y: 0.019607149, z: 0.004485838, w: -0.0011855375} + outSlope: {x: -0.024043791, y: 0.019607149, z: 0.004485838, w: -0.0011855375} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.8000001 + value: {x: -0.044565294, y: -0.0038811977, z: 0.009471395, w: 0.99895406} + inSlope: {x: 0.0072133048, y: -0.049744636, z: -0.02208568, w: 0.0003585223} + outSlope: {x: 0.0072133048, y: -0.049744636, z: -0.02208568, w: 0.0003585223} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.2 + value: {x: -0.045752335, y: -0.005476919, z: 0.0010174988, w: 0.9989373} + inSlope: {x: 0.025672063, y: 0.006716348, z: -0.032278568, w: 0.0012418639} + outSlope: {x: 0.025672063, y: 0.006716348, z: -0.032278568, w: 0.0012418639} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.9333334 + value: {x: -0.04609864, y: -0.0006292353, z: 0.0008976014, w: 0.9989363} + inSlope: {x: 0.00030141353, y: 0.00007800416, z: 0.0017636431, w: 0.000012516987} + outSlope: {x: 0.00030141353, y: 0.00007800416, z: 0.0017636431, w: 0.000012516987} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.0020814568, y: 0.0026659714, z: 0.0037671246, w: 0.9999872} + inSlope: {x: 0.03243467, y: 0.006170114, z: -0.007542532, w: -0.000075101845} + outSlope: {x: 0.03243467, y: 0.006170114, z: -0.007542532, w: -0.000075101845} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.0030832023, y: 0.0007047104, z: 0.007836922, w: 0.9999643} + inSlope: {x: -0.017721053, y: -0.01866636, z: 0.028374262, w: -0.00014573324} + outSlope: {x: -0.017721053, y: -0.01866636, z: 0.028374262, w: -0.00014573324} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.0034509834, y: 0.008693256, z: -0.008140189, w: 0.99992317} + inSlope: {x: 0.0030750511, y: 0.08455505, z: -0.05947798, w: -0.0011435151} + outSlope: {x: 0.0030750511, y: 0.08455505, z: -0.05947798, w: -0.0011435151} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.006628395, y: 0.013612337, z: -0.00459386, w: 0.99987483} + inSlope: {x: 0.02012315, y: 0.00034319697, z: 0.0077793314, w: 0.0001698733} + outSlope: {x: 0.02012315, y: 0.00034319697, z: 0.0077793314, w: 0.0001698733} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1333334 + value: {x: -0.010814965, y: 0.007704427, z: 0.011691318, w: 0.99984354} + inSlope: {x: -0.06960556, y: -0.05000305, z: 0.002733616, w: -0.00037819138} + outSlope: {x: -0.06960556, y: -0.05000305, z: 0.002733616, w: -0.00037819138} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3666668 + value: {x: 0.030363256, y: -0.018522354, z: 0.045954965, w: 0.99831015} + inSlope: {x: 0.3558107, y: -0.20762627, z: 0.2942508, w: -0.028440341} + outSlope: {x: 0.3558107, y: -0.20762627, z: 0.2942508, w: -0.028440341} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6333334 + value: {x: 0.07674494, y: -0.05777259, z: 0.10130706, w: 0.9902068} + inSlope: {x: -0.0037379973, y: 0.013024037, z: 0.012581584, w: -0.00023603463} + outSlope: {x: -0.0037379973, y: 0.013024037, z: 0.012581584, w: -0.00023603463} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9333334 + value: {x: 0.03319194, y: -0.025645994, z: 0.04479576, w: 0.9981152} + inSlope: {x: -0.27944648, y: 0.14333642, z: -0.21770383, w: 0.022881016} + outSlope: {x: -0.27944648, y: 0.14333642, z: -0.21770383, w: 0.022881016} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.3000002 + value: {x: -0.009793499, y: 0.007689548, z: -0.009866573, w: 0.9998738} + inSlope: {x: 0.05526454, y: 0.039535314, z: -0.012148504, w: 0.00015646234} + outSlope: {x: 0.05526454, y: 0.039535314, z: -0.012148504, w: 0.00015646234} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.5666668 + value: {x: -0.009177437, y: 0.008567006, z: -0.0010175216, w: 0.99992067} + inSlope: {x: 0.087487996, y: -0.032767076, z: 0.02848873, w: 0.0011041771} + outSlope: {x: 0.087487996, y: -0.032767076, z: 0.02848873, w: 0.0011041771} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.9333334 + value: {x: 0.0020813786, y: 0.0026655672, z: 0.0037501513, w: 0.99998724} + inSlope: {x: 0.0066502085, y: -0.0064981533, z: 0.00847164, w: -0.000026822116} + outSlope: {x: 0.0066502085, y: -0.0064981533, z: 0.00847164, w: -0.000026822116} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.01112218, y: 0.056324955, z: 0.07475683, w: 0.9955477} + inSlope: {x: -0.07474313, y: 0.03905989, z: 0.08931845, w: -0.010006427} + outSlope: {x: -0.07474313, y: 0.03905989, z: 0.08931845, w: -0.010006427} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.0130208265, y: 0.050264206, z: 0.10549682, w: 0.99306315} + inSlope: {x: 0.106185004, y: -0.07260253, z: 0.121409185, w: -0.0074717402} + outSlope: {x: 0.106185004, y: -0.07260253, z: 0.121409185, w: -0.0074717402} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.003995021, y: 0.053587507, z: 0.09086945, w: 0.994412} + inSlope: {x: 0.010623553, y: -0.032198302, z: -0.021371173, w: 0.0037255888} + outSlope: {x: 0.010623553, y: -0.032198302, z: -0.021371173, w: 0.0037255888} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: -0.0054469667, y: 0.04498575, z: 0.06144107, w: 0.9970816} + inSlope: {x: -0.17532802, y: -0.02206552, z: -0.65854883, w: 0.037744064} + outSlope: {x: -0.17532802, y: -0.02206552, z: -0.65854883, w: 0.037744064} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5666667 + value: {x: -0.028184664, y: 0.069358714, z: -0.021527424, w: 0.9969612} + inSlope: {x: -0.18853097, y: 0.53214103, z: -0.7164986, w: -0.056201234} + outSlope: {x: -0.18853097, y: 0.53214103, z: -0.7164986, w: -0.056201234} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.052334562, y: 0.117750555, z: -0.048296448, w: 0.99048644} + inSlope: {x: -0.27630657, y: 0.242948, z: 0.20199376, w: -0.033508852} + outSlope: {x: -0.27630657, y: 0.242948, z: 0.20199376, w: -0.033508852} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000001 + value: {x: -0.05968484, y: 0.12369472, z: 0.0012250342, w: 0.99052304} + inSlope: {x: 0.072023265, y: -0.00992026, z: 0.30947876, w: 0.005376932} + outSlope: {x: 0.072023265, y: -0.00992026, z: 0.30947876, w: 0.005376932} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.90000004 + value: {x: -0.072235435, y: 0.12385462, z: 0.05199426, w: 0.9883009} + inSlope: {x: -0.31325644, y: 0.0073835654, z: 0.95408046, w: -0.08004246} + outSlope: {x: -0.31325644, y: 0.0073835654, z: 0.95408046, w: -0.08004246} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.09091139, y: 0.1240058, z: 0.16394854, w: 0.9744119} + inSlope: {x: 0.06317768, y: -0.020273875, z: 0.7141557, w: -0.10526865} + outSlope: {x: 0.06317768, y: -0.020273875, z: 0.7141557, w: -0.10526865} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1333334 + value: {x: -0.07596882, y: 0.099660724, z: 0.16444145, w: 0.9783943} + inSlope: {x: -0.009393141, y: -0.30335534, z: -0.127548, w: 0.05197577} + outSlope: {x: -0.009393141, y: -0.30335534, z: -0.127548, w: 0.05197577} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666668 + value: {x: -0.08810718, y: 0.074411586, z: 0.14341865, w: 0.9829197} + inSlope: {x: -0.17075233, y: -0.097979665, z: -0.3078085, w: 0.036923252} + outSlope: {x: -0.17075233, y: -0.097979665, z: -0.3078085, w: 0.036923252} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4000001 + value: {x: -0.11037136, y: 0.052487466, z: 0.13108885, w: 0.9838084} + inSlope: {x: -0.16063586, y: -0.2727108, z: 0.11218998, w: -0.018765647} + outSlope: {x: -0.16063586, y: -0.2727108, z: 0.11218998, w: -0.018765647} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6000001 + value: {x: -0.17367212, y: 0.021688018, z: 0.118201606, w: 0.97744364} + inSlope: {x: -0.14878097, y: 0.061572686, z: -0.13007998, w: -0.011679201} + outSlope: {x: -0.14878097, y: 0.061572686, z: -0.13007998, w: -0.011679201} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7666668 + value: {x: -0.1380911, y: 0.040253986, z: 0.073305264, w: 0.9868824} + inSlope: {x: 0.55858433, y: 0.08019735, z: -0.46087703, w: 0.107793614} + outSlope: {x: 0.55858433, y: 0.08019735, z: -0.46087703, w: 0.107793614} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9000001 + value: {x: -0.06864728, y: 0.04393422, z: 0.0240641, w: 0.9963826} + inSlope: {x: 0.23879752, y: 0.046499714, z: -0.16291519, w: 0.01924755} + outSlope: {x: 0.23879752, y: 0.046499714, z: -0.16291519, w: 0.01924755} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.0666668 + value: {x: -0.031218821, y: 0.046119865, z: 0.022287356, w: 0.9981992} + inSlope: {x: 0.36885455, y: -0.004256949, z: 0.0077335704, w: 0.011576425} + outSlope: {x: 0.36885455, y: -0.004256949, z: 0.0077335704, w: 0.011576425} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.2 + value: {x: -0.008281015, y: 0.05140355, z: 0.0013338837, w: 0.99864274} + inSlope: {x: -0.015844598, y: 0.11186247, z: -0.38203782, w: -0.005971497} + outSlope: {x: -0.015844598, y: 0.11186247, z: -0.38203782, w: -0.005971497} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.0019191928, y: 0.0846289, z: -0.029835358, w: 0.99596393} + inSlope: {x: -0.012995621, y: 0.3110667, z: 0.11830458, w: -0.023097418} + outSlope: {x: -0.012995621, y: 0.3110667, z: 0.11830458, w: -0.023097418} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.5333335 + value: {x: -0.02606667, y: 0.10048452, z: 0.026099117, w: 0.9942546} + inSlope: {x: 0.005358192, y: -0.16073912, z: 0.25881737, w: 0.0094995} + outSlope: {x: 0.005358192, y: -0.16073912, z: 0.25881737, w: 0.0094995} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.766667 + value: {x: -0.015612188, y: 0.06406593, z: 0.06800845, w: 0.99550325} + inSlope: {x: 0.03078961, y: -0.06228805, z: 0.054508463, w: 0.0007939346} + outSlope: {x: 0.03078961, y: -0.06228805, z: 0.054508463, w: 0.0007939346} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.9333334 + value: {x: -0.011121101, y: 0.05632388, z: 0.07474042, w: 0.995549} + inSlope: {x: 0.0100414455, y: -0.036814917, z: 0.038210563, w: -0.0006240612} + outSlope: {x: 0.0100414455, y: -0.036814917, z: 0.038210563, w: -0.0006240612} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.06928724, y: 0, z: -0, w: 0.99759674} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: -0.06928724, y: 0, z: -0, w: 0.99759674} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head/mixamorig:HeadTop_End + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.40506425, y: -0.45798013, z: 0.59357256, w: 0.5233056} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.40506425, y: -0.45798013, z: 0.59357256, w: 0.5233056} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head/mixamorig:LeftEar + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.40506425, y: 0.45798013, z: -0.59357256, w: 0.5233056} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.40506425, y: 0.45798013, z: -0.59357256, w: 0.5233056} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head/mixamorig:RightEar + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.5100289, y: -0.48341393, z: 0.563609, w: 0.4341963} + inSlope: {x: 0.073678486, y: 0.07289528, z: 0.022181867, w: -0.0346604} + outSlope: {x: 0.073678486, y: 0.07289528, z: 0.022181867, w: -0.0346604} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.5297843, y: -0.46328834, z: 0.5551556, w: 0.44327736} + inSlope: {x: 0.055649582, y: 0.06421566, z: -0.18025067, w: 0.2264401} + outSlope: {x: 0.055649582, y: 0.06421566, z: -0.18025067, w: 0.2264401} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: 0.5037902, y: -0.48810863, z: 0.5361433, w: 0.46956992} + inSlope: {x: -0.11035855, y: -0.113344744, z: 0.060901303, w: -0.069329694} + outSlope: {x: -0.11035855, y: -0.113344744, z: 0.060901303, w: -0.069329694} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.49591994, y: -0.49713805, z: 0.56232053, w: 0.4367069} + inSlope: {x: 0.11104699, y: 0.101241276, z: 0.24083558, w: -0.32087362} + outSlope: {x: 0.11104699, y: 0.101241276, z: 0.24083558, w: -0.32087362} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.5025532, y: -0.49077696, z: 0.5734167, w: 0.4216296} + inSlope: {x: -0.13931969, y: -0.13583328, z: -0.050434433, w: 0.07453451} + outSlope: {x: -0.13931969, y: -0.13583328, z: -0.050434433, w: 0.07453451} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.70000005 + value: {x: 0.48764914, y: -0.50506663, z: 0.5629449, w: 0.43611825} + inSlope: {x: -0.02438438, y: -0.022108527, z: -0.09094924, w: 0.1193355} + outSlope: {x: -0.02438438, y: -0.022108527, z: -0.09094924, w: 0.1193355} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.48144937, y: -0.5106197, z: 0.5508501, w: 0.45170587} + inSlope: {x: -0.050695576, y: -0.04617158, z: -0.04791233, w: 0.060815107} + outSlope: {x: -0.050695576, y: -0.04617158, z: -0.04791233, w: 0.060815107} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.4890811, y: -0.5036002, z: 0.5544655, w: 0.4469391} + inSlope: {x: 0.0026746087, y: 0.005564684, z: -0.085776016, w: 0.109159924} + outSlope: {x: 0.0026746087, y: 0.005564684, z: -0.085776016, w: 0.109159924} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1333334 + value: {x: 0.49543607, y: -0.4972318, z: 0.54660624, w: 0.45664567} + inSlope: {x: 0.047596175, y: 0.042757023, z: 0.06175069, w: -0.0791019} + outSlope: {x: 0.047596175, y: 0.042757023, z: 0.06175069, w: -0.0791019} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3000001 + value: {x: 0.5064331, y: -0.4869263, z: 0.56000125, w: 0.4391206} + inSlope: {x: 0.23762205, y: 0.23440965, z: 0.0856904, w: -0.12478319} + outSlope: {x: 0.23762205, y: 0.23440965, z: 0.0856904, w: -0.12478319} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4333334 + value: {x: 0.531533, y: -0.46134183, z: 0.5629728, w: 0.43324134} + inSlope: {x: -0.0010344405, y: -0.0008404255, z: 0.029548137, w: -0.038190223} + outSlope: {x: -0.0010344405, y: -0.0008404255, z: 0.029548137, w: -0.038190223} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6000001 + value: {x: 0.53125215, y: -0.46143973, z: 0.5725991, w: 0.4206837} + inSlope: {x: 0.06480212, y: 0.06979996, z: 0.03552407, w: -0.053782757} + outSlope: {x: 0.06480212, y: 0.06979996, z: 0.03552407, w: -0.053782757} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.8000001 + value: {x: 0.53933513, y: -0.452163, z: 0.58339417, w: 0.4053609} + inSlope: {x: -0.07288642, y: -0.08188524, z: -0.06448215, w: 0.09748989} + outSlope: {x: -0.07288642, y: -0.08188524, z: -0.06448215, w: 0.09748989} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9666668 + value: {x: 0.5163118, y: -0.47696528, z: 0.56485546, w: 0.43227848} + inSlope: {x: -0.055043444, y: -0.058468625, z: -0.10084392, w: 0.13351412} + outSlope: {x: -0.055043444, y: -0.058468625, z: -0.10084392, w: 0.13351412} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.49927175, y: -0.49418938, z: 0.5617397, w: 0.43698183} + inSlope: {x: -0.05215158, y: -0.051909734, z: 0.011537086, w: -0.013728452} + outSlope: {x: -0.05215158, y: -0.051909734, z: 0.011537086, w: -0.013728452} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.3000002 + value: {x: 0.50552714, y: -0.48792243, z: 0.56189907, w: 0.43662736} + inSlope: {x: -0.005535191, y: -0.005972391, z: -0.14373167, w: 0.18368411} + outSlope: {x: -0.005535191, y: -0.005972391, z: -0.14373167, w: 0.18368411} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.4 + value: {x: 0.500639, y: -0.49285424, z: 0.55252236, w: 0.44852477} + inSlope: {x: -0.0022673625, y: -0.0027595488, z: 0.05352085, w: -0.06682462} + outSlope: {x: -0.0022673625, y: -0.0027595488, z: 0.05352085, w: -0.06682462} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.6333334 + value: {x: 0.50711477, y: -0.48637676, z: 0.5629993, w: 0.43509105} + inSlope: {x: -0.009895573, y: -0.009743581, z: 0.028390316, w: -0.036038194} + outSlope: {x: -0.009895573, y: -0.009743581, z: 0.028390316, w: -0.036038194} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.9333334 + value: {x: 0.51002896, y: -0.48341364, z: 0.5636096, w: 0.43419573} + inSlope: {x: 0.011093627, y: 0.0112581365, z: -0.004311208, w: 0.0051051425} + outSlope: {x: 0.011093627, y: 0.0112581365, z: -0.004311208, w: 0.0051051425} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.4447184, y: -0.16509892, z: -0.090761386, w: 0.87563133} + inSlope: {x: -0.06552547, y: 0.55498034, z: -0.17091705, w: 0.11345922} + outSlope: {x: -0.06552547, y: 0.55498034, z: -0.17091705, w: 0.11345922} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: 0.4279644, y: -0.123582095, z: -0.12244738, w: 0.8868938} + inSlope: {x: -0.3913222, y: -0.28282803, z: -0.6919251, w: 0.043093257} + outSlope: {x: -0.3913222, y: -0.28282803, z: -0.6919251, w: 0.043093257} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.38615373, y: -0.20431393, z: -0.19216616, w: 0.8787567} + inSlope: {x: -0.857203, y: -2.0608048, z: -1.2485032, w: -0.41011143} + outSlope: {x: -0.857203, y: -2.0608048, z: -1.2485032, w: -0.41011143} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: 0.35422733, y: -0.28454792, z: -0.23490019, w: 0.8592889} + inSlope: {x: -0.97418356, y: -2.448937, z: -1.1372347, w: -0.7223295} + outSlope: {x: -0.97418356, y: -2.448937, z: -1.1372347, w: -0.7223295} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: 0.27403605, y: -0.48125058, z: -0.28559822, w: 0.7821354} + inSlope: {x: -0.45728272, y: -1.0192297, z: 0.12625115, w: -0.40108505} + outSlope: {x: -0.45728272, y: -1.0192297, z: 0.12625115, w: -0.40108505} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.25573817, y: -0.5013884, z: -0.25398737, w: 0.78657365} + inSlope: {x: -0.053751, y: 0.31454706, z: 0.20613793, w: 0.28328857} + outSlope: {x: -0.053751, y: 0.31454706, z: 0.20613793, w: 0.28328857} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: 0.25262257, y: -0.4555525, z: -0.24705529, w: 0.8170786} + inSlope: {x: 0.08450578, y: 1.5478776, z: 0.18670915, w: 0.8454722} + outSlope: {x: 0.08450578, y: 1.5478776, z: 0.18670915, w: 0.8454722} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.2597602, y: -0.3839459, z: -0.23736969, w: 0.8536778} + inSlope: {x: 0.60821784, y: 2.9124284, z: 0.5665934, w: 1.1763775} + outSlope: {x: 0.60821784, y: 2.9124284, z: 0.5665934, w: 1.1763775} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: 0.29317045, y: -0.26139057, z: -0.20928238, w: 0.89550376} + inSlope: {x: 1.4738789, y: 3.9332273, z: 1.3062981, w: 0.8968146} + outSlope: {x: 1.4738789, y: 3.9332273, z: 1.3062981, w: 0.8968146} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5666667 + value: {x: 0.35801888, y: -0.121730536, z: -0.15028307, w: 0.9134655} + inSlope: {x: 2.008317, y: 3.542336, z: 2.097315, w: 0.08542794} + outSlope: {x: 2.008317, y: 3.542336, z: 2.097315, w: 0.08542794} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.42705825, y: -0.025234815, z: -0.06946141, w: 0.901199} + inSlope: {x: 1.6850235, y: 1.8442328, z: 2.173321, w: -0.46507263} + outSlope: {x: 1.6850235, y: 1.8442328, z: 2.173321, w: -0.46507263} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6333334 + value: {x: 0.47035375, y: 0.0012182544, z: -0.0053950255, w: 0.88246065} + inSlope: {x: 0.8322475, y: -0.07762557, z: 1.2957579, w: -0.3902622} + outSlope: {x: 0.8322475, y: -0.07762557, z: 1.2957579, w: -0.3902622} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.4606113, y: -0.17222193, z: -0.0048576025, w: 0.87071997} + inSlope: {x: -0.28545153, y: -1.9852717, z: -0.31499574, w: -0.22201622} + outSlope: {x: -0.28545153, y: -1.9852717, z: -0.31499574, w: -0.22201622} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.46269748, y: -0.26816717, z: 0.022380712, w: 0.8446872} + inSlope: {x: 0.12405489, y: -0.007983349, z: 1.0167024, w: -0.10623968} + outSlope: {x: 0.12405489, y: -0.007983349, z: 1.0167024, w: -0.10623968} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9333334 + value: {x: 0.47381064, y: -0.23519436, z: 0.14803664, w: 0.83562684} + inSlope: {x: 0.3137144, y: 0.28174543, z: 0.81671154, w: -0.23435093} + outSlope: {x: 0.3137144, y: 0.28174543, z: 0.81671154, w: -0.23435093} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0333334 + value: {x: 0.52234185, y: -0.24437054, z: 0.13448812, w: 0.80582565} + inSlope: {x: 0.28823054, y: -0.4195965, z: -0.81607306, w: -0.1795727} + outSlope: {x: 0.28823054, y: -0.4195965, z: -0.81607306, w: -0.1795727} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1333334 + value: {x: 0.5058983, y: -0.26587734, z: 0.0524886, w: 0.8189146} + inSlope: {x: -0.4575765, y: 0.36074474, z: -0.6203702, w: 0.43587303} + outSlope: {x: -0.4575765, y: 0.36074474, z: -0.6203702, w: 0.43587303} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666668 + value: {x: 0.4300272, y: -0.1583785, z: -0.019554174, w: 0.88860035} + inSlope: {x: -0.8139449, y: 0.68506384, z: -0.6868492, w: 0.49880284} + outSlope: {x: -0.8139449, y: 0.68506384, z: -0.6868492, w: 0.49880284} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3666668 + value: {x: 0.34489578, y: -0.089020714, z: -0.08414278, w: 0.9306139} + inSlope: {x: -0.47427812, y: 0.878726, z: -0.4003671, w: 0.22834504} + outSlope: {x: -0.47427812, y: 0.878726, z: -0.4003671, w: 0.22834504} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4666667 + value: {x: 0.34394196, y: -0.034169156, z: -0.11138932, w: 0.9317343} + inSlope: {x: 0.08257632, y: -0.19984865, z: -0.38469446, w: -0.086731836} + outSlope: {x: 0.08257632, y: -0.19984865, z: -0.38469446, w: -0.086731836} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6000001 + value: {x: 0.33239406, y: -0.13130456, z: -0.17665341, w: 0.91709703} + inSlope: {x: -0.071072176, y: -0.63655555, z: -0.42293411, w: -0.14434028} + outSlope: {x: -0.071072176, y: -0.63655555, z: -0.42293411, w: -0.14434028} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7 + value: {x: 0.3251192, y: -0.17165321, z: -0.21900779, w: 0.9038077} + inSlope: {x: -0.10552966, y: -0.15822358, z: -0.38426355, w: -0.08366255} + outSlope: {x: -0.10552966, y: -0.15822358, z: -0.38426355, w: -0.08366255} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.8000001 + value: {x: 0.3423498, y: -0.14151782, z: -0.21560808, w: 0.9034835} + inSlope: {x: 0.6054181, y: 0.67025584, z: 0.689323, w: 0.030688077} + outSlope: {x: 0.6054181, y: 0.67025584, z: 0.689323, w: 0.030688077} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9000001 + value: {x: 0.40060765, y: -0.102856055, z: -0.11347932, w: 0.9033585} + inSlope: {x: 0.2205672, y: -0.13621868, z: 0.9015837, w: 0.0040224227} + outSlope: {x: 0.2205672, y: -0.13621868, z: 0.9015837, w: 0.0040224227} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.4004527, y: -0.13174665, z: -0.043464508, w: 0.90575457} + inSlope: {x: -0.011565795, y: -0.145586, z: 0.6233667, w: 0.014725355} + outSlope: {x: -0.011565795, y: -0.145586, z: 0.6233667, w: 0.014725355} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.41605526, y: -0.13508978, z: 0.011814348, w: 0.8991714} + inSlope: {x: 0.1453933, y: -0.03600489, z: 0.0053398088, w: -0.07254846} + outSlope: {x: 0.1453933, y: -0.03600489, z: 0.0053398088, w: -0.07254846} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.3000002 + value: {x: 0.4432664, y: -0.12868613, z: 0.0015030303, w: 0.8871035} + inSlope: {x: 0.4578504, y: 0.040981956, z: -0.050570417, w: -0.22361329} + outSlope: {x: 0.4578504, y: 0.040981956, z: -0.050570417, w: -0.22361329} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.4 + value: {x: 0.47246504, y: -0.15289147, z: -0.021107135, w: 0.8677301} + inSlope: {x: -0.047194853, y: -0.40707234, z: -0.45436448, w: -0.057723872} + outSlope: {x: -0.047194853, y: -0.40707234, z: -0.45436448, w: -0.057723872} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.5333335 + value: {x: 0.4536627, y: -0.17209019, z: -0.0708276, w: 0.8715266} + inSlope: {x: -0.08818129, y: 0.09519079, z: -0.1904216, w: 0.049375042} + outSlope: {x: -0.08818129, y: 0.09519079, z: -0.1904216, w: 0.049375042} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.9 + value: {x: 0.44698134, y: -0.16391237, z: -0.08978324, w: 0.8748025} + inSlope: {x: -0.063642174, y: -0.040160306, z: -0.030183598, w: 0.021891318} + outSlope: {x: -0.063642174, y: -0.040160306, z: -0.030183598, w: 0.021891318} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.9333334 + value: {x: 0.44471833, y: -0.16509894, z: -0.09076131, w: 0.87563145} + inSlope: {x: -0.06789035, y: -0.03559697, z: -0.029342277, w: 0.024869466} + outSlope: {x: -0.06789035, y: -0.03559697, z: -0.029342277, w: 0.024869466} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.006032756, y: 0.029829118, z: -0.07434614, w: 0.99676806} + inSlope: {x: -0.035422828, y: -0.10960366, z: 0.4363414, w: 0.03261566} + outSlope: {x: -0.035422828, y: -0.10960366, z: 0.4363414, w: 0.03261566} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.0049035745, y: 0.026335217, z: -0.06043646, w: 0.99781257} + inSlope: {x: 0.05438613, y: 0.16834417, z: -0.6702202, w: -0.050647262} + outSlope: {x: 0.05438613, y: 0.16834417, z: -0.6702202, w: -0.050647262} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: 0.02248113, y: 0.08047803, z: -0.27706134, w: 0.9572121} + inSlope: {x: 0.14014998, y: 0.42931628, z: -1.7272743, w: -0.53898996} + outSlope: {x: 0.14014998, y: 0.42931628, z: -1.7272743, w: -0.53898996} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.031536568, y: 0.10812767, z: -0.3886594, w: 0.91447127} + inSlope: {x: 0.0035958765, y: 0.010952305, z: -0.044314817, w: -0.019449502} + outSlope: {x: 0.0035958765, y: 0.010952305, z: -0.044314817, w: -0.019449502} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.021901513, y: 0.07870202, z: -0.26991776, w: 0.9594117} + inSlope: {x: -0.19171816, y: -0.58778036, z: 2.3627095, w: 0.69024956} + outSlope: {x: -0.19171816, y: -0.58778036, z: 2.3627095, w: 0.69024956} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: 0.014663598, y: 0.056470614, z: -0.18071721, w: 0.9818031} + inSlope: {x: -0.20854166, y: -0.64187324, z: 2.5700884, w: 0.52555877} + outSlope: {x: -0.20854166, y: -0.64187324, z: 2.5700884, w: 0.52555877} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.004358423, y: 0.024644976, z: -0.053710766, w: 0.99824286} + inSlope: {x: -0.056773752, y: -0.1756901, z: 0.69969165, w: 0.05849367} + outSlope: {x: -0.056773752, y: -0.1756901, z: 0.69969165, w: 0.05849367} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.70000005 + value: {x: 0.007256987, y: 0.03361611, z: -0.089432806, w: 0.995399} + inSlope: {x: 0.025535826, y: 0.07899733, z: -0.31472063, w: -0.028856086} + outSlope: {x: 0.025535826, y: 0.07899733, z: -0.31472063, w: -0.028856086} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.005772566, y: 0.029025039, z: -0.07114426, w: 0.997027} + inSlope: {x: -0.024487302, y: -0.0757857, z: 0.30174947, w: 0.023445189} + outSlope: {x: -0.024487302, y: -0.0757857, z: 0.30174947, w: 0.023445189} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.0019662906, y: 0.017230045, z: -0.024231667, w: 0.99955595} + inSlope: {x: 0.019962747, y: 0.061913192, z: -0.24604443, w: -0.008539241} + outSlope: {x: 0.019962747, y: 0.061913192, z: -0.24604443, w: -0.008539241} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1333334 + value: {x: 0.0074953195, y: 0.034353677, z: -0.09237191, w: 0.9951036} + inSlope: {x: 0.026323915, y: 0.08138252, z: -0.32432812, w: -0.031860128} + outSlope: {x: 0.026323915, y: 0.08138252, z: -0.32432812, w: -0.031860128} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666668 + value: {x: 0.008511152, y: 0.03749307, z: -0.10488967, w: 0.99374044} + inSlope: {x: 0.003936806, y: 0.0121543, z: -0.048483424, w: -0.00557541} + outSlope: {x: 0.003936806, y: 0.0121543, z: -0.048483424, w: -0.00557541} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3666668 + value: {x: 0.0065392056, y: 0.03139614, z: -0.08058755, w: 0.9962315} + inSlope: {x: -0.050897427, y: -0.15747628, z: 0.62724453, w: 0.054287866} + outSlope: {x: -0.050897427, y: -0.15747628, z: 0.62724453, w: 0.054287866} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4666667 + value: {x: 0.0034111585, y: 0.021711025, z: -0.042042147, w: 0.9988741} + inSlope: {x: 0.021766648, y: 0.06742917, z: -0.26822498, w: -0.01515355} + outSlope: {x: 0.021766648, y: 0.06742917, z: -0.26822498, w: -0.01515355} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6333334 + value: {x: 0.012609925, y: 0.050143577, z: -0.15540455, w: 0.98649687} + inSlope: {x: 0.039299697, y: 0.1211617, z: -0.48433968, w: -0.0812719} + outSlope: {x: 0.039299697, y: 0.1211617, z: -0.48433968, w: -0.0812719} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7666668 + value: {x: 0.012058958, y: 0.048445795, z: -0.14861794, w: 0.9876337} + inSlope: {x: -0.05685611, y: -0.17536339, z: 0.7007165, w: 0.11098187} + outSlope: {x: -0.05685611, y: -0.17536339, z: 0.7007165, w: 0.11098187} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9000001 + value: {x: 0.0042158384, y: 0.02420444, z: -0.051958427, w: 0.998347} + inSlope: {x: -0.023877019, y: -0.073971, z: 0.29431713, w: 0.018511731} + outSlope: {x: -0.023877019, y: -0.073971, z: 0.29431713, w: 0.018511731} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.0666668 + value: {x: 0.0032791055, y: 0.021301745, z: -0.040414218, w: 0.99895054} + inSlope: {x: -0.002561435, y: -0.007916212, z: 0.03146156, w: 0.0014635934} + outSlope: {x: -0.002561435, y: -0.007916212, z: 0.03146156, w: 0.0014635934} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.266667 + value: {x: 0.004517719, y: 0.025139319, z: -0.05567714, w: 0.9981221} + inSlope: {x: -0.004276557, y: -0.013238575, z: 0.05267038, w: 0.0032740766} + outSlope: {x: -0.004276557, y: -0.013238575, z: 0.05267038, w: 0.0032740766} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.3666668 + value: {x: 0.0057089743, y: 0.028827446, z: -0.07035729, w: 0.9970889} + inSlope: {x: 0.03425844, y: 0.10603146, z: -0.42221978, w: -0.03376904} + outSlope: {x: 0.03425844, y: 0.10603146, z: -0.42221978, w: -0.03376904} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.5000002 + value: {x: 0.00798704, y: 0.035873447, z: -0.09843087, w: 0.99446505} + inSlope: {x: -0.011968303, y: -0.036977112, z: 0.14742275, w: 0.015706996} + outSlope: {x: -0.011968303, y: -0.036977112, z: 0.14742275, w: 0.015706996} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.00583438, y: 0.029215686, z: -0.071903095, w: 0.9969666} + inSlope: {x: -0.0016345704, y: -0.0050591817, z: 0.020157043, w: 0.0016254202} + outSlope: {x: -0.0016345704, y: -0.0050591817, z: 0.020157043, w: 0.0016254202} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.9333334 + value: {x: 0.006032747, y: 0.029829072, z: -0.0743461, w: 0.99676806} + inSlope: {x: 0.0013180136, y: 0.00406003, z: -0.016174182, w: -0.001330377} + outSlope: {x: 0.0013180136, y: 0.00406003, z: -0.016174182, w: -0.001330377} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.019274747, y: -0.050847843, z: 0.0009439755, w: 0.99851996} + inSlope: {x: 0.08366396, y: -0.49430048, z: 0.2544588, w: -0.03232062} + outSlope: {x: 0.08366396, y: -0.49430048, z: 0.2544588, w: -0.03232062} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: 0.025113782, y: -0.099295, z: 0.023461988, w: 0.99446434} + inSlope: {x: 0.17860235, y: -1.0125109, z: 0.45154363, w: -0.11917411} + outSlope: {x: 0.17860235, y: -1.0125109, z: 0.45154363, w: -0.11917411} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.053621594, y: -0.14774689, z: 0.03223492, w: 0.98704433} + inSlope: {x: -0.096494965, y: 0.6842108, z: -0.7874287, w: 0.11249628} + outSlope: {x: -0.096494965, y: 0.6842108, z: -0.7874287, w: 0.11249628} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: 0.009396732, y: -0.05420789, z: -0.051784035, w: 0.9971417} + inSlope: {x: -1.0121381, y: 1.7780912, z: -1.0969548, w: 0.05143941} + outSlope: {x: -1.0121381, y: 1.7780912, z: -1.0969548, w: 0.05143941} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: -0.05216925, y: 0.07137719, z: -0.0710849, w: 0.99354446} + inSlope: {x: -0.5603534, y: 1.7482336, z: 0.6146711, w: -0.10676356} + outSlope: {x: -0.5603534, y: 1.7482336, z: 0.6146711, w: -0.10676356} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: -0.06676639, y: 0.15730402, z: -0.0058173332, w: 0.98527354} + inSlope: {x: -0.0009340048, y: 0.61843485, z: 0.6863329, w: -0.08080064} + outSlope: {x: -0.0009340048, y: 0.61843485, z: 0.6863329, w: -0.08080064} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: -0.050473444, y: 0.15505268, z: 0.0036842243, w: 0.98660916} + inSlope: {x: 0.66678965, y: -0.65133464, z: -0.32999045, w: 0.122358814} + outSlope: {x: 0.66678965, y: -0.65133464, z: -0.32999045, w: 0.122358814} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.011637233, y: 0.07075002, z: -0.05162408, w: 0.99608934} + inSlope: {x: 0.25684732, y: -1.5923284, z: -1.3485265, w: 0.03422506} + outSlope: {x: 0.25684732, y: -1.5923284, z: -1.3485265, w: 0.03422506} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: -0.0024301193, y: 0.016610889, z: -0.10412294, w: 0.99442273} + inSlope: {x: -1.4194373, y: -1.2197366, z: -1.353059, w: -0.14609623} + outSlope: {x: -1.4194373, y: -1.2197366, z: -1.353059, w: -0.14609623} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5666667 + value: {x: -0.082991995, y: -0.010565815, z: -0.14182809, w: 0.9863496} + inSlope: {x: -2.6765795, y: -0.046702236, z: -0.5869049, w: -0.32246062} + outSlope: {x: -2.6765795, y: -0.046702236, z: -0.5869049, w: -0.32246062} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.18086872, y: 0.013497363, z: -0.14324996, w: 0.97292536} + inSlope: {x: -2.0369523, y: 1.2809498, z: 0.49785808, w: -0.29303056} + outSlope: {x: -2.0369523, y: 1.2809498, z: 0.49785808, w: -0.29303056} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6333334 + value: {x: -0.21878876, y: 0.07483087, z: -0.10863752, w: 0.9668142} + inSlope: {x: 0.19192779, y: 1.4616977, z: 1.485247, w: 0.08380318} + outSlope: {x: 0.19192779, y: 1.4616977, z: 1.485247, w: 0.08380318} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.16807361, y: 0.11094389, z: -0.044233527, w: 0.9785122} + inSlope: {x: 2.2532656, y: -0.01363647, z: 1.8308854, w: 0.4199865} + outSlope: {x: 2.2532656, y: -0.01363647, z: 1.8308854, w: 0.4199865} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.70000005 + value: {x: -0.06857101, y: 0.0739217, z: 0.013421488, w: 0.9948133} + inSlope: {x: 2.662139, y: -1.9046865, z: 1.0205402, w: 0.31547502} + outSlope: {x: 2.662139, y: -1.9046865, z: 1.0205402, w: 0.31547502} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.00940233, y: -0.016035143, z: 0.02380253, w: 0.9995439} + inSlope: {x: 1.4560616, y: -2.7897549, z: -0.21227004, w: -0.022816509} + outSlope: {x: 1.4560616, y: -2.7897549, z: -0.21227004, w: -0.022816509} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000001 + value: {x: 0.011615292, y: -0.18446814, z: -0.023949495, w: 0.982478} + inSlope: {x: -0.45308667, y: -1.5999744, z: -0.40065974, w: -0.26840237} + outSlope: {x: -0.45308667, y: -1.5999744, z: -0.40065974, w: -0.26840237} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.86666673 + value: {x: -0.00007822779, y: -0.21595146, z: -0.009468989, w: 0.97635823} + inSlope: {x: 0.09942283, y: 0.35043287, z: 0.7547321, w: 0.07579212} + outSlope: {x: 0.09942283, y: 0.35043287, z: 0.7547321, w: 0.07579212} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9333334 + value: {x: 0.007112286, y: -0.18360274, z: 0.056649864, w: 0.98134106} + inSlope: {x: 0.14743514, y: 0.018267334, z: 0.8739242, w: -0.04427261} + outSlope: {x: 0.14743514, y: 0.018267334, z: 0.8739242, w: -0.04427261} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.034282673, y: -0.21464644, z: 0.0907263, w: 0.9718644} + inSlope: {x: 0.6213021, y: -0.35293642, z: 0.02168724, w: -0.09903704} + outSlope: {x: 0.6213021, y: -0.35293642, z: 0.02168724, w: -0.09903704} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.0633371, y: -0.18551731, z: 0.05722249, w: 0.9789266} + inSlope: {x: -0.10772947, y: 1.3901511, z: -0.9475867, w: 0.2978846} + outSlope: {x: -0.10772947, y: 1.3901511, z: -0.9475867, w: 0.2978846} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1333334 + value: {x: 0.020781923, y: -0.06065962, z: -0.019922404, w: 0.9977433} + inSlope: {x: -0.86205894, y: 1.6756879, z: -0.9804105, w: 0.12094233} + outSlope: {x: -0.86205894, y: 1.6756879, z: -0.9804105, w: 0.12094233} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2 + value: {x: -0.029793896, y: 0.012897491, z: -0.05124036, w: 0.9981585} + inSlope: {x: -0.47494197, y: 0.5830846, z: 0.061459363, w: -0.012454402} + outSlope: {x: -0.47494197, y: 0.5830846, z: 0.061459363, w: -0.012454402} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3000001 + value: {x: -0.038654782, y: 0.049886744, z: -0.023632996, w: 0.99772674} + inSlope: {x: 0.031387463, y: 0.47332478, z: 0.0968037, w: -0.020502824} + outSlope: {x: 0.031387463, y: 0.47332478, z: 0.0968037, w: -0.020502824} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4000001 + value: {x: -0.06633857, y: 0.07500763, z: -0.01722996, w: 0.9948247} + inSlope: {x: -0.43364292, y: -0.32745206, z: 0.33858865, w: -0.0012114653} + outSlope: {x: -0.43364292, y: -0.32745206, z: 0.33858865, w: -0.0012114653} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4666667 + value: {x: -0.069111735, y: 0.030916829, z: 0.014744893, w: 0.9970207} + inSlope: {x: 0.5933656, y: -0.6870167, z: 0.295479, w: 0.055284742} + outSlope: {x: 0.5933656, y: -0.6870167, z: 0.295479, w: 0.055284742} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333334 + value: {x: -0.0015528991, y: 0.006050274, z: 0.00771308, w: 0.99995077} + inSlope: {x: 0.9294411, y: 0.09432336, z: -0.38293922, w: 0.007784672} + outSlope: {x: 0.9294411, y: 0.09432336, z: -0.38293922, w: 0.007784672} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6333334 + value: {x: 0.027579045, y: 0.04750431, z: -0.021165438, w: 0.9982659} + inSlope: {x: -0.06980316, y: 0.28049308, z: -0.0913986, w: -0.012087833} + outSlope: {x: -0.06980316, y: 0.28049308, z: -0.0913986, w: -0.012087833} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7333335 + value: {x: 0.038831636, y: 0.049242236, z: -0.029571703, w: 0.9975935} + inSlope: {x: 0.1391568, y: -0.14612985, z: -0.036004797, w: 0.000941467} + outSlope: {x: 0.1391568, y: -0.14612985, z: -0.036004797, w: 0.000941467} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.02402522, y: -0.00006833611, z: 0.0010634421, w: 0.9997108} + inSlope: {x: -0.24362421, y: -0.85213363, z: 0.6183758, w: 0.003548596} + outSlope: {x: -0.24362421, y: -0.85213363, z: 0.6183758, w: 0.003548596} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9333334 + value: {x: 0.010003235, y: -0.05903431, z: 0.035939194, w: 0.99755865} + inSlope: {x: -0.19280468, y: -0.08225951, z: -0.11646721, w: 0.0008314629} + outSlope: {x: -0.19280468, y: -0.08225951, z: -0.11646721, w: 0.0008314629} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.0333335 + value: {x: -0.01365059, y: -0.04435234, z: 0.018104538, w: 0.9987586} + inSlope: {x: -0.14308292, y: 0.24802126, z: 0.0053481013, w: 0.008942459} + outSlope: {x: -0.14308292, y: 0.24802126, z: 0.0053481013, w: 0.008942459} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.0015896658, y: -0.019546796, z: 0.03176568, w: 0.9993029} + inSlope: {x: 0.24422893, y: 0.15956926, z: -0.028813293, w: 0.0042521995} + outSlope: {x: 0.24422893, y: 0.15956926, z: -0.028813293, w: 0.0042521995} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.266667 + value: {x: -0.0068297666, y: 0.007732542, z: 0.006918516, w: 0.9999229} + inSlope: {x: -0.2285423, y: 0.03969109, z: -0.20706813, w: 0.0011783756} + outSlope: {x: -0.2285423, y: 0.03969109, z: -0.20706813, w: 0.0011783756} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.0005898964, y: -0.008918498, z: 0.011473569, w: 0.99989426} + inSlope: {x: 0.56435126, y: -0.2617094, z: 0.2378785, w: -0.00813783} + outSlope: {x: 0.56435126, y: -0.2617094, z: 0.2378785, w: -0.00813783} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.4 + value: {x: 0.049106102, y: -0.0054966784, z: 0.01947833, w: 0.9985885} + inSlope: {x: 0.44615757, y: 0.3985597, z: -0.17074396, w: -0.015108898} + outSlope: {x: 0.44615757, y: 0.3985597, z: -0.17074396, w: -0.015108898} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.5000002 + value: {x: 0.025956832, y: 0.018734641, z: -0.016576054, w: 0.9993501} + inSlope: {x: -0.42161644, y: -0.33325037, z: -0.16755593, w: 0.014504443} + outSlope: {x: -0.42161644, y: -0.33325037, z: -0.16755593, w: 0.014504443} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.6000001 + value: {x: 0.02411634, y: -0.037885725, z: 0.00045886735, w: 0.99899095} + inSlope: {x: 0.20742297, y: -0.40507907, z: 0.30041674, w: -0.018514413} + outSlope: {x: 0.20742297, y: -0.40507907, z: 0.30041674, w: -0.018514413} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.7 + value: {x: 0.025577668, y: -0.046419937, z: 0.009407369, w: 0.99855024} + inSlope: {x: -0.15848687, y: 0.088842124, z: -0.14347965, w: 0.009263432} + outSlope: {x: -0.15848687, y: 0.088842124, z: -0.14347965, w: 0.009263432} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.9333334 + value: {x: 0.019274665, y: -0.050847724, z: 0.0009439085, w: 0.99851996} + inSlope: {x: 0.06396153, y: 0.024323747, z: 0.046085935, w: 0.000073313786} + outSlope: {x: 0.06396153, y: 0.024323747, z: 0.046085935, w: 0.000073313786} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.0044621737, y: -0.18016137, z: -0.32617605, w: 0.92797154} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: -0.0044621737, y: -0.18016137, z: -0.32617605, w: 0.92797154} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.20127204, y: -0.13609737, z: 0.096676625, w: 0.965205} + inSlope: {x: -0.0737071, y: -0.020644067, z: -0.061073672, w: 0.018405316} + outSlope: {x: -0.0737071, y: -0.020644067, z: -0.061073672, w: 0.018405316} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.19975288, y: -0.13651095, z: 0.09540989, w: 0.9655882} + inSlope: {x: -0.07481643, y: -0.02177194, z: -0.06226436, w: 0.018593969} + outSlope: {x: -0.07481643, y: -0.02177194, z: -0.06226436, w: 0.018593969} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.18909417, y: -0.13926247, z: 0.08656301, w: 0.9681716} + inSlope: {x: 0.0043767393, y: 0.006238604, z: 0.0044603273, w: -0.00039250776} + outSlope: {x: 0.0043767393, y: 0.006238604, z: 0.0044603273, w: -0.00039250776} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: 0.21045367, y: -0.13372006, z: 0.10431714, w: 0.9627805} + inSlope: {x: 0.6775816, y: 0.17216998, z: 0.55057985, w: -0.19000423} + outSlope: {x: 0.6775816, y: 0.17216998, z: 0.55057985, w: -0.19000423} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: 0.2583338, y: -0.1206027, z: 0.14260589, w: 0.94783026} + inSlope: {x: 0.2890004, y: 0.08774929, z: 0.23096617, w: -0.09633146} + outSlope: {x: 0.2890004, y: 0.08774929, z: 0.23096617, w: -0.09633146} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.19465221, y: -0.13767278, z: 0.09122301, w: 0.9668687} + inSlope: {x: -0.2335893, y: -0.060558517, z: -0.19326013, w: 0.059759673} + outSlope: {x: -0.2335893, y: -0.060558517, z: -0.19326013, w: 0.059759673} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7666667 + value: {x: 0.20390111, y: -0.13543728, z: 0.09885564, w: 0.9645251} + inSlope: {x: 0.06007584, y: 0.017144665, z: 0.04940323, w: -0.015116917} + outSlope: {x: 0.06007584, y: 0.017144665, z: 0.04940323, w: -0.015116917} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9333334 + value: {x: 0.17813444, y: -0.14289623, z: 0.07713807, w: 0.9705146} + inSlope: {x: -0.21672514, y: -0.06451964, z: -0.18590924, w: 0.045694105} + outSlope: {x: -0.21672514, y: -0.06451964, z: -0.18590924, w: 0.045694105} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0333334 + value: {x: 0.18240787, y: -0.14160664, z: 0.08081038, w: 0.9696106} + inSlope: {x: 0.31717372, y: 0.09335938, z: 0.27028137, w: -0.06967214} + outSlope: {x: 0.31717372, y: 0.09335938, z: 0.27028137, w: -0.06967214} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1333334 + value: {x: 0.2102702, y: -0.13341561, z: 0.104218796, w: 0.9628734} + inSlope: {x: 0.074789405, y: 0.021853687, z: 0.062215462, w: -0.019681104} + outSlope: {x: 0.074789405, y: 0.021853687, z: 0.062215462, w: -0.019681104} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666668 + value: {x: 0.21291904, y: -0.13274199, z: 0.10637409, w: 0.9621485} + inSlope: {x: 0.14975683, y: 0.04173672, z: 0.122847915, w: -0.041269347} + outSlope: {x: 0.14975683, y: 0.04173672, z: 0.122847915, w: -0.041269347} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4000001 + value: {x: 0.21709245, y: -0.13158086, z: 0.10979465, w: 0.96099037} + inSlope: {x: -0.21472466, y: -0.062104598, z: -0.17682514, w: 0.05967474} + outSlope: {x: -0.21472466, y: -0.062104598, z: -0.17682514, w: 0.05967474} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333334 + value: {x: 0.19668221, y: -0.13744095, z: 0.092865795, w: 0.96633434} + inSlope: {x: -0.00996151, y: -0.0031529397, z: -0.008259423, w: 0.0023826978} + outSlope: {x: -0.00996151, y: -0.0031529397, z: -0.008259423, w: 0.0023826978} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7333335 + value: {x: 0.20421703, y: -0.13528381, z: 0.09915068, w: 0.9644495} + inSlope: {x: 0.055728126, y: 0.016210563, z: 0.046489727, w: -0.014136102} + outSlope: {x: 0.055728126, y: 0.016210563, z: 0.046489727, w: -0.014136102} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9000001 + value: {x: 0.20107798, y: -0.13621406, z: 0.09652318, w: 0.96524435} + inSlope: {x: 0.08968064, y: 0.024848903, z: 0.0741142, w: -0.022622667} + outSlope: {x: 0.08968064, y: 0.024848903, z: 0.0741142, w: -0.022622667} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.1000001 + value: {x: 0.2010451, y: -0.13622233, z: 0.09650052, w: 0.96525234} + inSlope: {x: -0.04178707, y: -0.011660244, z: -0.034476366, w: 0.010582219} + outSlope: {x: -0.04178707, y: -0.011660244, z: -0.034476366, w: 0.010582219} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.266667 + value: {x: 0.20114362, y: -0.13619168, z: 0.09660664, w: 0.9652255} + inSlope: {x: -0.21334785, y: -0.061714374, z: -0.17785859, w: 0.053054877} + outSlope: {x: -0.21334785, y: -0.061714374, z: -0.17785859, w: 0.053054877} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.3666668 + value: {x: 0.19032834, y: -0.13927074, z: 0.087564826, w: 0.9678384} + inSlope: {x: 0.13126856, y: 0.037247647, z: 0.11012222, w: -0.030968815} + outSlope: {x: 0.13126856, y: 0.037247647, z: 0.11012222, w: -0.030968815} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.5000002 + value: {x: 0.20301592, y: -0.13564038, z: 0.098159745, w: 0.96475434} + inSlope: {x: -0.07506508, y: -0.021179805, z: -0.061976474, w: 0.019024877} + outSlope: {x: -0.07506508, y: -0.021179805, z: -0.061976474, w: 0.019024877} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.8666668 + value: {x: 0.2015803, y: -0.13603589, z: 0.09698911, w: 0.965118} + inSlope: {x: -0.00596725, y: -0.0015492007, z: -0.005214331, w: 0.0015521063} + outSlope: {x: -0.00596725, y: -0.0015492007, z: -0.005214331, w: 0.0015521063} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.9333334 + value: {x: 0.2012845, y: -0.13609345, z: 0.09666859, w: 0.96520376} + inSlope: {x: -0.003398809, y: -0.00041171946, z: -0.0044768346, w: 0.0010979186} + outSlope: {x: -0.003398809, y: -0.00041171946, z: -0.0044768346, w: 0.0010979186} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.2548968, y: 0.011480756, z: 0.023407282, w: 0.96661675} + inSlope: {x: 0.061895546, y: 0.0107209, z: 0.0073170657, w: 0.01594305} + outSlope: {x: 0.061895546, y: 0.0107209, z: 0.0073170657, w: 0.01594305} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.26738158, y: 0.006535946, z: 0.019191073, w: 0.9633774} + inSlope: {x: 0.12903747, y: 0.04832959, z: 0.053612735, w: 0.034072988} + outSlope: {x: 0.12903747, y: 0.04832959, z: 0.053612735, w: 0.034072988} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.258249, y: 0.010136071, z: 0.021739164, w: 0.96578056} + inSlope: {x: 0.0435859, y: 0.0035409073, z: -0.0062532914, w: 0.011662246} + outSlope: {x: 0.0435859, y: 0.0035409073, z: -0.0062532914, w: 0.011662246} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.24081683, y: 0.014772237, z: 0.0271069, w: 0.9700795} + inSlope: {x: 0.36256585, y: 0.12264445, z: 0.1361242, w: 0.085129745} + outSlope: {x: 0.36256585, y: 0.12264445, z: 0.1361242, w: 0.085129745} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: -0.25189388, y: 0.0113126915, z: 0.022381771, w: 0.9674299} + inSlope: {x: -1.1227868, y: -0.41046172, z: -0.45093536, w: -0.30290985} + outSlope: {x: -1.1227868, y: -0.41046172, z: -0.45093536, w: -0.30290985} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: -0.34106302, y: -0.02764336, z: -0.013017752, w: 0.9395437} + inSlope: {x: -0.0608674, y: -0.3609486, z: -0.11423268, w: -0.027808115} + outSlope: {x: -0.0608674, y: -0.3609486, z: -0.11423268, w: -0.027808115} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.30947715, y: -0.03265234, z: -0.0064011975, w: 0.9503246} + inSlope: {x: 1.6527127, y: 0.15303825, z: 0.46480918, w: 0.49673605} + outSlope: {x: 1.6527127, y: 0.15303825, z: 0.46480918, w: 0.49673605} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: -0.23088214, y: -0.017440792, z: 0.01796954, w: 0.97265947} + inSlope: {x: 1.8963014, y: 0.54139477, z: 0.6788183, w: 0.48005423} + outSlope: {x: 1.8963014, y: 0.54139477, z: 0.6788183, w: 0.48005423} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5666667 + value: {x: -0.18305695, y: 0.0034406744, z: 0.038853392, w: 0.98232824} + inSlope: {x: 0.40555757, y: 0.4024104, z: 0.28568226, w: 0.08398068} + outSlope: {x: 0.40555757, y: 0.4024104, z: 0.28568226, w: 0.08398068} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6333334 + value: {x: -0.2513835, y: 0.00707068, z: 0.023391768, w: 0.967579} + inSlope: {x: -0.9682691, y: -0.04083811, z: -0.29501194, w: -0.2269327} + outSlope: {x: -0.9682691, y: -0.04083811, z: -0.29501194, w: -0.2269327} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.2683962, y: 0.0066640363, z: 0.017347574, w: 0.96312934} + inSlope: {x: 0.035532743, y: 0.061643273, z: -0.0064320713, w: 0.008759074} + outSlope: {x: 0.035532743, y: 0.061643273, z: -0.0064320713, w: 0.008759074} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.22278564, y: 0.014892403, z: 0.03051085, w: 0.97427607} + inSlope: {x: 0.52397764, y: 0.068019, z: 0.15048969, w: 0.11953003} + outSlope: {x: 0.52397764, y: 0.068019, z: 0.15048969, w: 0.11953003} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.90000004 + value: {x: -0.2451526, y: 0.012714546, z: 0.023831908, w: 0.96910816} + inSlope: {x: 0.34372407, y: 0.048824243, z: 0.048650656, w: 0.08277562} + outSlope: {x: 0.34372407, y: 0.048824243, z: 0.048650656, w: 0.08277562} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.2223636, y: 0.015911862, z: 0.02745738, w: 0.9744472} + inSlope: {x: -0.4763382, y: -0.09816953, z: -0.10802133, w: -0.10893772} + outSlope: {x: -0.4763382, y: -0.09816953, z: -0.10802133, w: -0.10893772} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.2800147, y: 0.0013789474, z: 0.014670051, w: 0.9598827} + inSlope: {x: -0.0105531365, y: -0.0053951554, z: 0.025260018, w: -0.0034083128} + outSlope: {x: -0.0105531365, y: -0.0053951554, z: 0.025260018, w: -0.0034083128} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2 + value: {x: -0.25657737, y: 0.010487043, z: 0.023781685, w: 0.9661742} + inSlope: {x: -0.23023075, y: -0.097783886, z: -0.0964153, w: -0.0610525} + outSlope: {x: -0.23023075, y: -0.097783886, z: -0.0964153, w: -0.0610525} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3000001 + value: {x: -0.32011756, y: -0.016589519, z: -0.00005653375, w: 0.9472326} + inSlope: {x: -0.106992066, y: -0.056297094, z: -0.028085489, w: -0.034948323} + outSlope: {x: -0.106992066, y: -0.056297094, z: -0.028085489, w: -0.034948323} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4000001 + value: {x: -0.2489329, y: 0.010352632, z: 0.025959658, w: 0.9681174} + inSlope: {x: 0.5849626, y: 0.23413768, z: 0.20181754, w: 0.15062407} + outSlope: {x: 0.5849626, y: 0.23413768, z: 0.20181754, w: 0.15062407} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333334 + value: {x: -0.2656346, y: 0.0075186263, z: 0.019013533, w: 0.963857} + inSlope: {x: -0.06558946, y: -0.016955601, z: -0.018826108, w: -0.017277911} + outSlope: {x: -0.06558946, y: -0.016955601, z: -0.018826108, w: -0.017277911} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6333334 + value: {x: -0.2664654, y: 0.0069057806, z: 0.018565316, w: 0.9636409} + inSlope: {x: -0.24447465, y: -0.09927666, z: -0.09165948, w: -0.06649381} + outSlope: {x: -0.24447465, y: -0.09927666, z: -0.09165948, w: -0.06649381} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7333335 + value: {x: -0.29070505, y: -0.0030669267, z: 0.010386293, w: 0.95675147} + inSlope: {x: 0.24765754, y: 0.07857597, z: 0.08668075, w: 0.07178224} + outSlope: {x: 0.24765754, y: 0.07857597, z: 0.08668075, w: 0.07178224} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.23779455, y: 0.013992633, z: 0.027291736, w: 0.97083116} + inSlope: {x: 0.21950991, y: 0.06930339, z: 0.06756632, w: 0.052695613} + outSlope: {x: 0.21950991, y: 0.06930339, z: 0.06756632, w: 0.052695613} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9333334 + value: {x: -0.2409559, y: 0.012326621, z: 0.026630795, w: 0.97009236} + inSlope: {x: 0.04486294, y: -0.0040811375, z: 0.015577173, w: 0.010673372} + outSlope: {x: 0.04486294, y: -0.0040811375, z: 0.015577173, w: 0.010673372} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.0666668 + value: {x: -0.2211155, y: 0.015047359, z: 0.031266816, w: 0.9746302} + inSlope: {x: 0.08276701, y: 0.024281977, z: 0.017701535, w: 0.018187184} + outSlope: {x: 0.08276701, y: 0.024281977, z: 0.017701535, w: 0.018187184} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.1333334 + value: {x: -0.23820366, y: 0.011626851, z: 0.026248202, w: 0.97079086} + inSlope: {x: -0.6330719, y: -0.14505245, z: -0.17729974, w: -0.15260711} + outSlope: {x: -0.6330719, y: -0.14505245, z: -0.17729974, w: -0.15260711} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.2 + value: {x: -0.279692, y: 0.0014706919, z: 0.014906119, w: 0.9599729} + inSlope: {x: -0.109077945, y: -0.02710792, z: -0.025205165, w: -0.029714432} + outSlope: {x: -0.109077945, y: -0.02710792, z: -0.025205165, w: -0.029714432} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.3000002 + value: {x: -0.23241515, y: 0.014830603, z: 0.02787122, w: 0.97210413} + inSlope: {x: 0.13732477, y: 0.05965764, z: 0.029526707, w: 0.03295991} + outSlope: {x: 0.13732477, y: 0.05965764, z: 0.029526707, w: 0.03295991} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.4 + value: {x: -0.27632797, y: 0.0032150494, z: 0.01513035, w: 0.96093893} + inSlope: {x: -0.3486249, y: -0.12072709, z: -0.09392441, w: -0.095740646} + outSlope: {x: -0.3486249, y: -0.12072709, z: -0.09392441, w: -0.095740646} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.6000001 + value: {x: -0.25020593, y: 0.012383634, z: 0.024193104, w: 0.9678111} + inSlope: {x: -0.045255616, y: -0.0140518965, z: -0.012148323, w: -0.011356484} + outSlope: {x: -0.045255616, y: -0.0140518965, z: -0.012148323, w: -0.011356484} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.7333336 + value: {x: -0.25882053, y: 0.009929943, z: 0.022143628, w: 0.9656205} + inSlope: {x: 0.04716163, y: 0.017710771, z: 0.016714761, w: 0.012060081} + outSlope: {x: 0.04716163, y: 0.017710771, z: 0.016714761, w: 0.012060081} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.9333334 + value: {x: -0.25489697, y: 0.011480543, z: 0.023407577, w: 0.9666167} + inSlope: {x: 0.019434411, y: 0.007489908, z: 0.006660267, w: 0.004883413} + outSlope: {x: 0.019434411, y: 0.007489908, z: 0.006660267, w: 0.004883413} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2/mixamorig:LeftHandThumb3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.020066818, y: 0.040932305, z: 0.014504457, w: 0.9988551} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.020066818, y: 0.040932305, z: 0.014504457, w: 0.9988551} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2/mixamorig:LeftHandThumb3/mixamorig:LeftHandThumb4 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.163775, y: 0.044551514, z: -0.045939956, w: 0.9844198} + inSlope: {x: -0.18154754, y: -0.064431354, z: 0.013709663, w: 0.033110976} + outSlope: {x: -0.18154754, y: -0.064431354, z: 0.013709663, w: 0.033110976} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.15632358, y: 0.04317788, z: -0.04642007, w: 0.9856692} + inSlope: {x: 0.28854573, y: 0.047092877, z: 0.007143279, w: -0.048007064} + outSlope: {x: 0.28854573, y: 0.047092877, z: 0.007143279, w: -0.048007064} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: 0.18363021, y: 0.047049087, z: -0.046715725, w: 0.9807568} + inSlope: {x: 0.10457197, y: 0.0063796905, z: 0.010725261, w: -0.019502344} + outSlope: {x: 0.10457197, y: 0.0063796905, z: 0.010725261, w: -0.019502344} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.18711048, y: 0.047092184, z: -0.045948837, w: 0.980133} + inSlope: {x: -0.32400632, y: 0.006074253, z: -0.09576771, w: 0.055023722} + outSlope: {x: -0.32400632, y: 0.006074253, z: -0.09576771, w: 0.055023722} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.16685428, y: 0.047587957, z: -0.052951243, w: 0.983408} + inSlope: {x: 0.49982968, y: -0.022217225, z: 0.15007797, w: -0.0803974} + outSlope: {x: 0.49982968, y: -0.022217225, z: 0.15007797, w: -0.0803974} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5666667 + value: {x: 0.21130799, y: 0.0443773, z: -0.03783138, w: 0.97567844} + inSlope: {x: 0.3228365, y: -0.052516364, z: 0.14708793, w: -0.05844887} + outSlope: {x: 0.3228365, y: -0.052516364, z: 0.14708793, w: -0.05844887} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.20055489, y: 0.03925298, z: -0.03567425, w: 0.97824556} + inSlope: {x: -0.0657142, y: -0.04993369, z: 0.015502263, w: 0.016246157} + outSlope: {x: -0.0657142, y: -0.04993369, z: 0.015502263, w: 0.016246157} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.17113952, y: 0.039316516, z: -0.04054207, w: 0.98362684} + inSlope: {x: -0.84476525, y: -0.058104903, z: -0.10238651, w: 0.14082402} + outSlope: {x: -0.84476525, y: -0.058104903, z: -0.10238651, w: 0.14082402} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9333334 + value: {x: 0.09430417, y: 0.033216756, z: -0.048623, w: 0.9938004} + inSlope: {x: -0.15895574, y: 0.013638228, z: -0.03240208, w: 0.014499105} + outSlope: {x: -0.15895574, y: 0.013638228, z: -0.03240208, w: 0.014499105} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.16718623, y: 0.046356555, z: -0.049378134, w: 0.9835963} + inSlope: {x: 0.31451058, y: 0.008432732, z: 0.062163167, w: -0.049902484} + outSlope: {x: 0.31451058, y: 0.008432732, z: 0.062163167, w: -0.049902484} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2333333 + value: {x: 0.16599178, y: 0.045039963, z: -0.046886522, w: 0.9839816} + inSlope: {x: -0.3360172, y: 0.023977028, z: -0.12741368, w: 0.048925232} + outSlope: {x: -0.3360172, y: 0.023977028, z: -0.12741368, w: 0.048925232} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.15346964, y: 0.043892246, z: -0.049288217, w: 0.9859469} + inSlope: {x: 0.26916152, y: -0.07565988, z: 0.15298781, w: -0.031902146} + outSlope: {x: 0.26916152, y: -0.07565988, z: 0.15298781, w: -0.031902146} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4333334 + value: {x: 0.1654206, y: 0.03989038, z: -0.041737612, w: 0.98453176} + inSlope: {x: -0.23405112, y: 0.0570759, z: -0.10484218, w: 0.031790465} + outSlope: {x: -0.23405112, y: 0.0570759, z: -0.10484218, w: 0.031790465} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333334 + value: {x: 0.15127912, y: 0.04559787, z: -0.051755134, w: 0.9860816} + inSlope: {x: 0.10355393, y: 0.010531145, z: 0.0043570856, w: -0.016336456} + outSlope: {x: 0.10355393, y: 0.010531145, z: 0.0043570856, w: -0.016336456} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.14910139, y: 0.04641612, z: -0.0544296, w: 0.9862311} + inSlope: {x: -0.312688, y: 0.010363841, z: -0.107211575, w: 0.0403494} + outSlope: {x: -0.312688, y: 0.010363841, z: -0.107211575, w: 0.0403494} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7666668 + value: {x: 0.1350595, y: 0.044099063, z: -0.05378778, w: 0.9883932} + inSlope: {x: 0.2926427, y: -0.059119068, z: 0.16776541, w: -0.029861957} + outSlope: {x: 0.2926427, y: -0.059119068, z: 0.16776541, w: -0.029861957} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.8666668 + value: {x: 0.17168267, y: 0.040708113, z: -0.040924646, w: 0.9834598} + inSlope: {x: 0.15430075, y: 0.009841197, z: 0.017241685, w: -0.026216764} + outSlope: {x: 0.15430075, y: 0.009841197, z: 0.017241685, w: -0.026216764} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.0333335 + value: {x: 0.18994947, y: 0.04004446, z: -0.037529066, w: 0.98025876} + inSlope: {x: 0.09670293, y: -0.011792747, z: 0.025315564, w: -0.017226879} + outSlope: {x: 0.09670293, y: -0.011792747, z: 0.025315564, w: -0.017226879} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.1333334 + value: {x: 0.1796689, y: 0.040971313, z: -0.0401895, w: 0.98205155} + inSlope: {x: -0.40345109, y: 0.044262525, z: -0.11311802, w: 0.06611115} + outSlope: {x: -0.40345109, y: 0.044262525, z: -0.11311802, w: 0.06611115} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.2333333 + value: {x: 0.15065534, y: 0.042663813, z: -0.046971515, w: 0.98654777} + inSlope: {x: 0.04244466, y: -0.03188359, z: 0.04272919, w: -0.0032248604} + outSlope: {x: 0.04244466, y: -0.03188359, z: 0.04272919, w: -0.0032248604} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.15522365, y: 0.043470465, z: -0.04772834, w: 0.9857677} + inSlope: {x: -0.023925997, y: 0.058274847, z: -0.08501063, w: -0.0029075174} + outSlope: {x: -0.023925997, y: 0.058274847, z: -0.08501063, w: -0.0029075174} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.5000002 + value: {x: 0.15787274, y: 0.04440617, z: -0.047361355, w: 0.9853229} + inSlope: {x: -0.03824009, y: -0.021139272, z: 0.02664521, w: 0.008387235} + outSlope: {x: -0.03824009, y: -0.021139272, z: 0.02664521, w: 0.008387235} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.7333336 + value: {x: 0.15922557, y: 0.044703856, z: -0.04746571, w: 0.98508674} + inSlope: {x: 0.019263182, y: 0.00036757012, z: 0.0033171768, w: -0.0029817221} + outSlope: {x: 0.019263182, y: 0.00036757012, z: 0.0033171768, w: -0.0029817221} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.9333334 + value: {x: 0.16377494, y: 0.044551488, z: -0.04593985, w: 0.9844199} + inSlope: {x: 0.01950236, y: -0.0016482191, z: 0.008886614, w: -0.0027465846} + outSlope: {x: 0.01950236, y: -0.0016482191, z: 0.008886614, w: -0.0027465846} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.2768773, y: -0.0050200997, z: 0.038284194, w: 0.9601292} + inSlope: {x: -0.0793755, y: -0.0001259381, z: -0.010973363, w: 0.02320647} + outSlope: {x: -0.0793755, y: -0.0001259381, z: -0.010973363, w: 0.02320647} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.2712987, y: -0.005028659, z: 0.037512913, w: 0.96175075} + inSlope: {x: 0.11039166, y: 0.00016818286, z: 0.01526227, w: -0.0317502} + outSlope: {x: 0.11039166, y: 0.00016818286, z: 0.01526227, w: -0.0317502} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.28471258, y: -0.0050078635, z: 0.039367486, w: 0.95779115} + inSlope: {x: 0.075776435, y: 0.00012143283, z: 0.010478609, w: -0.022762122} + outSlope: {x: 0.075776435, y: 0.00012143283, z: 0.010478609, w: -0.022762122} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.27438122, y: -0.005023994, z: 0.037939, w: 0.9608592} + inSlope: {x: -0.3760411, y: -0.0005706747, z: -0.051995836, w: 0.10863211} + outSlope: {x: -0.3760411, y: -0.0005706747, z: -0.051995836, w: 0.10863211} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: 0.262803, y: -0.0050413935, z: 0.036338247, w: 0.9641518} + inSlope: {x: 0.48913878, y: 0.000752011, z: 0.067633696, w: -0.14343214} + outSlope: {x: 0.48913878, y: 0.000752011, z: 0.067633696, w: -0.14343214} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5666667 + value: {x: 0.33558717, y: -0.004919331, z: 0.04640198, w: 0.94085276} + inSlope: {x: -0.25390998, y: -0.00045712886, z: -0.035108723, w: 0.0872551} + outSlope: {x: -0.25390998, y: -0.00045712886, z: -0.035108723, w: 0.0872551} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6333334 + value: {x: 0.2799251, y: -0.0050156154, z: 0.03870562, w: 0.95922816} + inSlope: {x: -0.60591614, y: -0.0009796554, z: -0.083780885, w: 0.18770538} + outSlope: {x: -0.60591614, y: -0.0009796554, z: -0.083780885, w: 0.18770538} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7666667 + value: {x: 0.3015706, y: -0.00498036, z: 0.041698538, w: 0.9525186} + inSlope: {x: -0.018231407, y: -0.000030929194, z: -0.0025207158, w: 0.005767638} + outSlope: {x: -0.018231407, y: -0.000030929194, z: -0.0025207158, w: 0.005767638} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9333334 + value: {x: 0.25977033, y: -0.0050456254, z: 0.035918817, w: 0.964989} + inSlope: {x: -0.088477984, y: -0.0001238705, z: -0.012234221, w: 0.024432233} + outSlope: {x: -0.088477984, y: -0.0001238705, z: -0.012234221, w: 0.024432233} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2 + value: {x: 0.28239536, y: -0.0050115096, z: 0.03904705, w: 0.95849} + inSlope: {x: -0.0783854, y: -0.00012081128, z: -0.010839152, w: 0.02347561} + outSlope: {x: -0.0783854, y: -0.00012081128, z: -0.010839152, w: 0.02347561} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4666667 + value: {x: 0.2740726, y: -0.0050244317, z: 0.037896376, w: 0.96094894} + inSlope: {x: -0.07459846, y: -0.00011706719, z: -0.010315492, w: 0.02172946} + outSlope: {x: -0.07459846, y: -0.00011706719, z: -0.010315492, w: 0.02172946} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.26874214, y: -0.0050324546, z: 0.037159376, w: 0.962482} + inSlope: {x: -0.069690116, y: -0.000102678416, z: -0.0096361805, w: 0.019918103} + outSlope: {x: -0.069690116, y: -0.000102678416, z: -0.0096361805, w: 0.019918103} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.8666668 + value: {x: 0.27969798, y: -0.0050158035, z: 0.038674127, w: 0.9592957} + inSlope: {x: 0.03364654, y: 0.000051842097, z: 0.00465587, w: -0.010029678} + outSlope: {x: 0.03364654, y: 0.000051842097, z: 0.00465587, w: -0.010029678} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.1333334 + value: {x: 0.2841495, y: -0.0050089057, z: 0.039289728, w: 0.95796156} + inSlope: {x: -0.11998159, y: -0.0001905837, z: -0.01659054, w: 0.03633145} + outSlope: {x: -0.11998159, y: -0.0001905837, z: -0.01659054, w: 0.03633145} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.27227998, y: -0.0050271223, z: 0.03764855, w: 0.96146816} + inSlope: {x: -0.051708568, y: -0.00007698087, z: -0.0071499376, w: 0.015008762} + outSlope: {x: -0.051708568, y: -0.00007698087, z: -0.0071499376, w: 0.015008762} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.5333335 + value: {x: 0.27489, y: -0.0050232452, z: 0.038009442, w: 0.96071094} + inSlope: {x: -0.028675523, y: -0.000042831565, z: -0.003966041, w: 0.008373865} + outSlope: {x: -0.028675523, y: -0.000042831565, z: -0.003966041, w: 0.008373865} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.9 + value: {x: 0.2774501, y: -0.005019497, z: 0.03836335, w: 0.9599607} + inSlope: {x: -0.014362796, y: -0.00002389543, z: -0.0019852836, w: 0.0042289533} + outSlope: {x: -0.014362796, y: -0.00002389543, z: -0.0019852836, w: 0.0042289533} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.9333334 + value: {x: 0.27687728, y: -0.0050202752, z: 0.03828414, w: 0.96012926} + inSlope: {x: -0.01718493, y: -0.000023343622, z: -0.002376216, w: 0.0050568627} + outSlope: {x: -0.01718493, y: -0.000023343622, z: -0.002376216, w: 0.0050568627} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.16592874, y: -0.00000014216273, z: 0.02205974, w: 0.985891} + inSlope: {x: 0.10399192, y: 0.0000046752934, z: 0.013819969, w: -0.018002985} + outSlope: {x: 0.10399192, y: 0.0000046752934, z: 0.013819969, w: -0.018002985} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.17350386, y: -0.00000013464906, z: 0.02306666, w: 0.98456305} + inSlope: {x: 0.08414556, y: 0.0000026370792, z: 0.011183774, w: -0.015085632} + outSlope: {x: 0.08414556, y: 0.0000026370792, z: 0.011183774, w: -0.015085632} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.16328599, y: 0.00000016166705, z: 0.0217083, w: 0.9863399} + inSlope: {x: -0.29782605, y: 0.0000011563941, z: -0.039591365, w: 0.050293215} + outSlope: {x: -0.29782605, y: 0.0000011563941, z: -0.039591365, w: 0.050293215} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5666667 + value: {x: 0.15707691, y: 0.00000003213082, z: 0.020882905, w: 0.9873656} + inSlope: {x: 0.30049142, y: -0.0000010461383, z: 0.039947003, w: -0.050771568} + outSlope: {x: 0.30049142, y: -0.0000010461383, z: 0.039947003, w: -0.050771568} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.19446842, y: 0.000000082651795, z: 0.025853865, w: 0.98056805} + inSlope: {x: -0.037857898, y: -0.000002274509, z: -0.0050337324, w: 0.007415385} + outSlope: {x: -0.037857898, y: -0.000002274509, z: -0.0050337324, w: 0.007415385} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000001 + value: {x: 0.17361188, y: -0.000000032993643, z: 0.023081142, w: 0.9845437} + inSlope: {x: 0.011062576, y: 0.00000093448193, z: 0.0014720897, w: -0.0019982508} + outSlope: {x: 0.011062576, y: 0.00000093448193, z: 0.0014720897, w: -0.0019982508} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.18789996, y: 0.0000000042039754, z: 0.024980718, w: 0.9818705} + inSlope: {x: -0.16656405, y: -0.00000060102144, z: -0.022143755, w: 0.03211762} + outSlope: {x: -0.16656405, y: -0.00000060102144, z: -0.022143755, w: 0.03211762} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1333334 + value: {x: 0.17787665, y: -0.000000060183815, z: 0.023648126, w: 0.98376864} + inSlope: {x: 0.08861206, y: -0.0000004494301, z: 0.011779636, w: -0.016291723} + outSlope: {x: 0.08861206, y: -0.0000004494301, z: 0.011779636, w: -0.016291723} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3666668 + value: {x: 0.1898661, y: 0.0000000010923383, z: 0.025241982, w: 0.9814855} + inSlope: {x: -0.015958313, y: 0.0000012518633, z: -0.0021220827, w: 0.0031167394} + outSlope: {x: -0.015958313, y: 0.0000012518633, z: -0.0021220827, w: 0.0031167394} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.17105834, y: 0.000000003989759, z: 0.022741746, w: 0.9849984} + inSlope: {x: -0.01806645, y: -0.0000014870251, z: -0.0023998483, w: 0.003191826} + outSlope: {x: -0.01806645, y: -0.0000014870251, z: -0.0023998483, w: 0.003191826} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9000001 + value: {x: 0.17014931, y: -0.000000078100186, z: 0.022620767, w: 0.9851587} + inSlope: {x: -0.044300303, y: -0.000002540355, z: -0.005887678, w: 0.007811494} + outSlope: {x: -0.044300303, y: -0.000002540355, z: -0.005887678, w: 0.007811494} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.266667 + value: {x: 0.17917563, y: 0.000000002748653, z: 0.023820791, w: 0.9835287} + inSlope: {x: 0.105366, y: 0.000000044578655, z: 0.014007652, w: -0.019473672} + outSlope: {x: 0.105366, y: 0.000000044578655, z: 0.014007652, w: -0.019473672} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.4666667 + value: {x: 0.16796148, y: -0.0000000406659, z: 0.02232986, w: 0.9855406} + inSlope: {x: 0.04626191, y: -0.00000040684026, z: 0.0061508985, w: -0.008041235} + outSlope: {x: 0.04626191, y: -0.00000040684026, z: 0.0061508985, w: -0.008041235} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.9 + value: {x: 0.16664955, y: -0.000000037066137, z: 0.0221555, w: 0.98576725} + inSlope: {x: -0.009780908, y: -0.0000017360948, z: -0.0012976875, w: 0.0016781704} + outSlope: {x: -0.009780908, y: -0.0000017360948, z: -0.0012976875, w: 0.0016781704} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.9333334 + value: {x: 0.16592865, y: -0.000000043042974, z: 0.022059748, w: 0.985891} + inSlope: {x: -0.021627119, y: -0.00000017930527, z: -0.002872537, w: 0.0037121808} + outSlope: {x: -0.021627119, y: -0.00000017930527, z: -0.002872537, w: 0.0037121808} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2/mixamorig:LeftHandIndex3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.04448854, y: 0.000000096039855, z: -0.000000092802985, w: 0.9990099} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.04448854, y: 0.000000096039855, z: -0.000000092802985, w: 0.9990099} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2/mixamorig:LeftHandIndex3/mixamorig:LeftHandIndex4 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.16829759, y: 0.030611262, z: 0.0073775635, w: 0.98523325} + inSlope: {x: -0.15721275, y: -0.021127312, z: 0.03174281, w: 0.026818512} + outSlope: {x: -0.15721275, y: -0.021127312, z: 0.03174281, w: 0.026818512} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.16597582, y: 0.029136524, z: 0.010513716, w: 0.9856432} + inSlope: {x: 0.242549, y: 0.017373139, z: -0.015090298, w: -0.041415088} + outSlope: {x: 0.242549, y: 0.017373139, z: -0.015090298, w: -0.041415088} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.19529638, y: 0.03239085, z: 0.006578238, w: 0.9801872} + inSlope: {x: 0.11169927, y: -0.0006889366, z: 0.015067367, w: -0.022147002} + outSlope: {x: 0.11169927, y: -0.0006889366, z: 0.015067367, w: -0.022147002} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: 0.17952487, y: 0.033661887, z: 0.0018291752, w: 0.98317564} + inSlope: {x: -0.17751643, y: -0.007972308, z: -0.0044511035, w: 0.033710007} + outSlope: {x: -0.17751643, y: -0.007972308, z: -0.0044511035, w: 0.033710007} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.19865325, y: 0.028231593, z: 0.015724832, w: 0.97953695} + inSlope: {x: 0.704321, y: -0.14356045, z: 0.36665934, w: -0.14794436} + outSlope: {x: 0.704321, y: -0.14356045, z: 0.36665934, w: -0.14794436} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5666667 + value: {x: 0.23909369, y: 0.021336904, z: 0.032828275, w: 0.9702068} + inSlope: {x: 0.0994907, y: 0.035295542, z: -0.059868105, w: -0.022671754} + outSlope: {x: 0.0994907, y: 0.035295542, z: -0.059868105, w: -0.022671754} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.21465567, y: 0.032863155, z: 0.007978477, w: 0.97610414} + inSlope: {x: -0.064798914, y: 0.024509622, z: -0.056563683, w: 0.014365038} + outSlope: {x: -0.064798914, y: 0.024509622, z: -0.056563683, w: 0.014365038} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000001 + value: {x: 0.20962328, y: 0.030862061, z: 0.011459295, w: 0.97722787} + inSlope: {x: -0.38480464, y: -0.00049834186, z: -0.04179686, w: 0.08099291} + outSlope: {x: -0.38480464, y: -0.00049834186, z: -0.04179686, w: 0.08099291} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9333334 + value: {x: 0.13610145, y: 0.028470771, z: 0.009224697, w: 0.9902428} + inSlope: {x: -0.091684885, y: 0.01309165, z: -0.04089992, w: 0.013217902} + outSlope: {x: -0.091684885, y: 0.01309165, z: -0.04089992, w: 0.013217902} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.19724303, y: 0.031956673, z: 0.007735638, w: 0.9798031} + inSlope: {x: 0.21007463, y: -0.005944205, z: 0.03743763, w: -0.041660964} + outSlope: {x: 0.21007463, y: -0.005944205, z: 0.03743763, w: -0.041660964} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.18209234, y: 0.029926604, z: 0.010406808, w: 0.98277086} + inSlope: {x: 0.04120734, y: -0.032955714, z: 0.07662984, w: -0.007519106} + outSlope: {x: 0.04120734, y: -0.032955714, z: 0.07662984, w: -0.007519106} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4666667 + value: {x: 0.17810106, y: 0.030895455, z: 0.007823476, w: 0.98349595} + inSlope: {x: -0.08623749, y: 0.037029162, z: -0.09173785, w: 0.015365483} + outSlope: {x: -0.08623749, y: 0.037029162, z: -0.09173785, w: 0.015365483} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.17735392, y: 0.032778457, z: 0.0035302606, w: 0.98359483} + inSlope: {x: -0.15643016, y: -0.00054493593, z: -0.017937936, w: 0.028171267} + outSlope: {x: -0.15643016, y: -0.00054493593, z: -0.017937936, w: 0.028171267} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.1738081, y: 0.030404707, z: 0.008449321, w: 0.9842738} + inSlope: {x: 0.1303689, y: -0.0014752189, z: 0.0176281, w: -0.023065194} + outSlope: {x: 0.1303689, y: -0.0014752189, z: 0.0176281, w: -0.023065194} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.17294271, y: 0.030407738, z: 0.0083489, w: 0.984427} + inSlope: {x: -0.19292186, y: -0.005235733, z: -0.00914697, w: 0.034335885} + outSlope: {x: -0.19292186, y: -0.005235733, z: -0.00914697, w: 0.034335885} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.4333334 + value: {x: 0.17571424, y: 0.031458855, z: 0.0062932456, w: 0.9839183} + inSlope: {x: -0.0019723196, y: -0.013585234, z: 0.030423835, w: 0.00059545087} + outSlope: {x: -0.0019723196, y: -0.013585234, z: 0.030423835, w: 0.00059545087} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.6333334 + value: {x: 0.1659549, y: 0.030616371, z: 0.0071080937, w: 0.98563236} + inSlope: {x: 0.013251913, y: -0.0004446045, z: 0.0024798792, w: -0.002228918} + outSlope: {x: 0.013251913, y: -0.0004446045, z: 0.0024798792, w: -0.002228918} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.9333334 + value: {x: 0.1683028, y: 0.030628707, z: 0.0073381118, w: 0.98523206} + inSlope: {x: 0.01910897, y: -0.00003693629, z: 0.0021913808, w: -0.0032740862} + outSlope: {x: 0.01910897, y: -0.00003693629, z: 0.0021913808, w: -0.0032740862} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.25918743, y: -0.013128065, z: 0.037397973, w: 0.96501344} + inSlope: {x: -0.077852, y: -0.0003291573, z: -0.011373236, w: 0.021232365} + outSlope: {x: -0.077852, y: -0.0003291573, z: -0.011373236, w: 0.021232365} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: 0.2581977, y: -0.013132191, z: 0.037253458, w: 0.9652842} + inSlope: {x: 0.08669211, y: 0.00036232168, z: 0.012660695, w: -0.023627575} + outSlope: {x: 0.08669211, y: 0.00036232168, z: 0.012660695, w: -0.023627575} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.26297358, y: -0.013112026, z: 0.037951116, w: 0.9639672} + inSlope: {x: -0.14937262, y: -0.0006366892, z: -0.02182591, w: 0.04142939} + outSlope: {x: -0.14937262, y: -0.0006366892, z: -0.02182591, w: 0.04142939} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.2693076, y: -0.013084867, z: 0.038876392, w: 0.96218026} + inSlope: {x: 0.38551253, y: 0.0016941362, z: 0.056324266, w: -0.11068761} + outSlope: {x: 0.38551253, y: 0.0016941362, z: 0.056324266, w: -0.11068761} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5666667 + value: {x: 0.28611317, y: -0.01300909, z: 0.041331753, w: 0.9572156} + inSlope: {x: -0.114681154, y: -0.0005215648, z: -0.01675685, w: 0.03411686} + outSlope: {x: -0.114681154, y: -0.0005215648, z: -0.01675685, w: 0.03411686} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.26310122, y: -0.013111371, z: 0.037969712, w: 0.9639316} + inSlope: {x: 0.102560855, y: 0.0004434581, z: 0.014983529, w: -0.029111769} + outSlope: {x: 0.102560855, y: 0.0004434581, z: 0.014983529, w: -0.029111769} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000001 + value: {x: 0.27697402, y: -0.013050685, z: 0.03999656, w: 0.95995593} + inSlope: {x: -0.21166079, y: -0.00094240566, z: -0.030923367, w: 0.06174984} + outSlope: {x: -0.21166079, y: -0.00094240566, z: -0.030923367, w: 0.06174984} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9666667 + value: {x: 0.24739261, y: -0.01317664, z: 0.03567497, w: 0.9681687} + inSlope: {x: 0.10012249, y: 0.00040403605, z: 0.014626546, w: -0.026261533} + outSlope: {x: 0.10012249, y: 0.00040403605, z: 0.014626546, w: -0.026261533} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2333333 + value: {x: 0.2652318, y: -0.013102355, z: 0.038281024, w: 0.96333534} + inSlope: {x: -0.050602496, y: -0.00021804098, z: -0.007392718, w: 0.014204068} + outSlope: {x: -0.050602496, y: -0.00021804098, z: -0.007392718, w: 0.014204068} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7333335 + value: {x: 0.2582192, y: -0.013132068, z: 0.037256673, w: 0.9652784} + inSlope: {x: -0.014695784, y: -0.00006293396, z: -0.0021460408, w: 0.0040224087} + outSlope: {x: -0.014695784, y: -0.00006293396, z: -0.0021460408, w: 0.0040224087} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.2596628, y: -0.013126052, z: 0.03746743, w: 0.96488297} + inSlope: {x: -0.05886739, y: -0.0002477134, z: -0.008599841, w: 0.016201451} + outSlope: {x: -0.05886739, y: -0.0002477134, z: -0.008599841, w: 0.016201451} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.5666668 + value: {x: 0.257808, y: -0.013133981, z: 0.03719646, w: 0.96539056} + inSlope: {x: -0.012107504, y: -0.00005280604, z: -0.0017689744, w: 0.0033035907} + outSlope: {x: -0.012107504, y: -0.00005280604, z: -0.0017689744, w: 0.0033035907} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.9333334 + value: {x: 0.25918704, y: -0.013128299, z: 0.037397858, w: 0.96501356} + inSlope: {x: 0.00058472215, y: -0.000004498292, z: 0.000081695696, w: -0.00015914455} + outSlope: {x: 0.00058472215, y: -0.000004498292, z: 0.000081695696, w: -0.00015914455} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.22043934, y: 0.0029514658, z: 0.03018789, w: 0.974929} + inSlope: {x: -0.012844651, y: 0.0000028917564, z: -0.0017310305, w: 0.002954006} + outSlope: {x: -0.012844651, y: 0.0000028917564, z: -0.0017310305, w: 0.002954006} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.21744736, y: 0.0029521089, z: 0.029784514, w: 0.97561306} + inSlope: {x: -0.030076953, y: 0.00000743894, z: -0.004056255, w: 0.0068280105} + outSlope: {x: -0.030076953, y: 0.00000743894, z: -0.004056255, w: 0.0068280105} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: 0.23090382, y: 0.0029488693, z: 0.031599004, w: 0.9724589} + inSlope: {x: 0.3286202, y: -0.00008580629, z: 0.044312775, w: -0.0799263} + outSlope: {x: 0.3286202, y: -0.00008580629, z: 0.044312775, w: -0.0799263} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5666667 + value: {x: 0.24895197, y: 0.0029438334, z: 0.034032576, w: 0.96791327} + inSlope: {x: -0.2011229, y: 0.0000629621, z: -0.027118437, w: 0.05164239} + outSlope: {x: -0.2011229, y: 0.0000629621, z: -0.027118437, w: 0.05164239} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.21761285, y: 0.0029521533, z: 0.02980684, w: 0.97557545} + inSlope: {x: -0.09266372, y: 0.000022243505, z: -0.012496957, w: 0.021443391} + outSlope: {x: -0.09266372, y: 0.000022243505, z: -0.012496957, w: 0.021443391} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.22555101, y: 0.0029503643, z: 0.030877197, w: 0.9737375} + inSlope: {x: -0.012148389, y: 0.0000055041164, z: -0.0016366215, w: 0.0028628097} + outSlope: {x: -0.012148389, y: 0.0000055041164, z: -0.0016366215, w: 0.0028628097} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.2222866, y: 0.002951046, z: 0.030437015, w: 0.9745017} + inSlope: {x: 0.08155286, y: -0.00001925744, z: 0.0109973475, w: -0.01888724} + outSlope: {x: 0.08155286, y: -0.00001925744, z: 0.0109973475, w: -0.01888724} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666668 + value: {x: 0.22814862, y: 0.002949736, z: 0.031227415, w: 0.973121} + inSlope: {x: 0.07227138, y: -0.000017822007, z: 0.0097456565, w: -0.017231386} + outSlope: {x: 0.07227138, y: -0.000017822007, z: 0.0097456565, w: -0.017231386} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6333334 + value: {x: 0.22059713, y: 0.0029512716, z: 0.03020919, w: 0.9748926} + inSlope: {x: 0.02976495, y: -0.000006255001, z: 0.0040152986, w: -0.0068754023} + outSlope: {x: 0.02976495, y: -0.000006255001, z: 0.0040152986, w: -0.0068754023} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.22261024, y: 0.0029509768, z: 0.030480739, w: 0.97442645} + inSlope: {x: 0.05748918, y: -0.000012953545, z: 0.0077521503, w: -0.013342215} + outSlope: {x: 0.05748918, y: -0.000012953545, z: 0.0077521503, w: -0.013342215} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.4 + value: {x: 0.22029023, y: 0.0029514784, z: 0.030167837, w: 0.9749633} + inSlope: {x: 0.055553965, y: -0.000011626409, z: 0.0074897963, w: -0.0127619635} + outSlope: {x: 0.055553965, y: -0.000011626409, z: 0.0074897963, w: -0.0127619635} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.7333336 + value: {x: 0.22159936, y: 0.0029512006, z: 0.03034427, w: 0.9746611} + inSlope: {x: 0.0074225254, y: -0.0000015925448, z: 0.0010020231, w: -0.0017174984} + outSlope: {x: 0.0074225254, y: -0.0000015925448, z: 0.0010020231, w: -0.0017174984} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.9333334 + value: {x: 0.22043984, y: 0.0029515782, z: 0.030187892, w: 0.97492886} + inSlope: {x: 0.0020925722, y: 0.000004051257, z: 0.0002773295, w: -0.0004827981} + outSlope: {x: 0.0020925722, y: 0.000004051257, z: 0.0002773295, w: -0.0004827981} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2/mixamorig:LeftHandMiddle3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.010558667, y: -0.002861282, z: -0.0028610663, w: 0.9999361} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.010558667, y: -0.002861282, z: -0.0028610663, w: 0.9999361} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2/mixamorig:LeftHandMiddle3/mixamorig:LeftHandMiddle4 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.24514167, y: 0.0772418, z: 0.058350347, w: 0.96464217} + inSlope: {x: -0.12568653, y: -0.01289226, z: 0.0023394448, w: 0.032536983} + outSlope: {x: -0.12568653, y: -0.01289226, z: 0.0023394448, w: 0.032536983} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.24243018, y: 0.07745352, z: 0.05776785, w: 0.96534526} + inSlope: {x: 0.1770394, y: 0.000059790502, z: 0.020468157, w: -0.045730762} + outSlope: {x: 0.1770394, y: 0.000059790502, z: 0.020468157, w: -0.045730762} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.24923979, y: 0.07850802, z: 0.057245456, w: 0.9635554} + inSlope: {x: 0.02323665, y: -0.020488279, z: 0.029776491, w: -0.006103814} + outSlope: {x: 0.02323665, y: -0.020488279, z: 0.029776491, w: -0.006103814} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.2439394, y: 0.07988948, z: 0.054775592, w: 0.96494085} + inSlope: {x: -0.26386786, y: 0.09277279, z: -0.15639348, w: 0.066700265} + outSlope: {x: -0.26386786, y: 0.09277279, z: -0.15639348, w: 0.066700265} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: 0.23223926, y: 0.085990295, z: 0.045271967, w: 0.96779186} + inSlope: {x: 0.4097219, y: -0.041309662, z: 0.11561301, w: -0.10719548} + outSlope: {x: 0.4097219, y: -0.041309662, z: 0.11561301, w: -0.10719548} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: 0.30462623, y: 0.07175843, z: 0.07261166, w: 0.9469853} + inSlope: {x: 1.0955899, y: -0.23690088, z: 0.4059377, w: -0.35319656} + outSlope: {x: 1.0955899, y: -0.23690088, z: 0.4059377, w: -0.35319656} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5666667 + value: {x: 0.33276424, y: 0.06555068, z: 0.08245563, w: 0.9371084} + inSlope: {x: 0.24787001, y: -0.05219154, z: 0.07948148, w: -0.08460742} + outSlope: {x: 0.24787001, y: -0.05219154, z: 0.07948148, w: -0.08460742} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.24924666, y: 0.078223325, z: 0.05747976, w: 0.9635628} + inSlope: {x: -0.59571433, y: 0.032206576, z: -0.10851537, w: 0.16723943} + outSlope: {x: -0.59571433, y: 0.032206576, z: -0.10851537, w: 0.16723943} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7666667 + value: {x: 0.26217973, y: 0.07446117, z: 0.06388095, w: 0.96001905} + inSlope: {x: 0.087292425, y: 0.011648601, z: -0.008168047, w: -0.02363829} + outSlope: {x: 0.087292425, y: 0.011648601, z: -0.008168047, w: -0.02363829} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9333334 + value: {x: 0.20990485, y: 0.076062046, z: 0.05656965, w: 0.9731158} + inSlope: {x: -0.21678971, y: 0.009429203, z: -0.036703806, w: 0.048817083} + outSlope: {x: -0.21678971, y: 0.009429203, z: -0.036703806, w: 0.048817083} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0333334 + value: {x: 0.2257066, y: 0.079364054, z: 0.053332575, w: 0.96949136} + inSlope: {x: 0.48581028, y: 0.038164444, z: 0.0026069642, w: -0.117125735} + outSlope: {x: 0.48581028, y: 0.038164444, z: 0.0026069642, w: -0.117125735} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1333334 + value: {x: 0.26004228, y: 0.07976495, z: 0.05690588, w: 0.960613} + inSlope: {x: 0.04434969, y: -0.02915101, z: 0.042474408, w: -0.011952765} + outSlope: {x: 0.04434969, y: -0.02915101, z: 0.042474408, w: -0.011952765} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.25168043, y: 0.081566125, z: 0.053532925, w: 0.96288013} + inSlope: {x: 0.11518291, y: -0.08627683, z: 0.12580647, w: -0.029974554} + outSlope: {x: 0.11518291, y: -0.08627683, z: 0.12580647, w: -0.029974554} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4333334 + value: {x: 0.24887942, y: 0.07563373, z: 0.06089179, w: 0.96365494} + inSlope: {x: -0.18649685, y: 0.02772155, z: -0.056635402, w: 0.04939203} + outSlope: {x: -0.18649685, y: 0.02772155, z: -0.056635402, w: 0.04939203} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.24158962, y: 0.079229034, z: 0.055349603, w: 0.9655536} + inSlope: {x: 0.05350871, y: -0.005683376, z: 0.013717093, w: -0.01367926} + outSlope: {x: 0.05350871, y: -0.005683376, z: 0.013717093, w: -0.01367926} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7666668 + value: {x: 0.23974362, y: 0.07794372, z: 0.056847665, w: 0.96603113} + inSlope: {x: 0.056254916, y: -0.059725475, z: 0.08615856, w: -0.014180852} + outSlope: {x: 0.056254916, y: -0.059725475, z: 0.08615856, w: -0.014180852} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.0333335 + value: {x: 0.25137618, y: 0.07535268, z: 0.06154996, w: 0.9629868} + inSlope: {x: 0.000397332, y: -0.012843274, z: 0.016463678, w: -0.00014839368} + outSlope: {x: 0.000397332, y: -0.012843274, z: 0.016463678, w: -0.00014839368} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.2 + value: {x: 0.2406378, y: 0.07808318, z: 0.056738053, w: 0.9658039} + inSlope: {x: 0.044086397, y: -0.021916574, z: 0.0343636, w: -0.0112965815} + outSlope: {x: 0.044086397, y: -0.021916574, z: 0.0343636, w: -0.0112965815} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.3000002 + value: {x: 0.23394409, y: 0.07647178, z: 0.05818829, w: 0.9674897} + inSlope: {x: -0.15741006, y: 0.045693263, z: -0.07959681, w: 0.0392944} + outSlope: {x: -0.15741006, y: 0.045693263, z: -0.07959681, w: 0.0392944} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.5000002 + value: {x: 0.24421516, y: 0.07820412, z: 0.056960825, w: 0.9648827} + inSlope: {x: -0.07479058, y: -0.023876831, z: 0.02367582, w: 0.019429887} + outSlope: {x: -0.07479058, y: -0.023876831, z: 0.02367582, w: 0.019429887} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.8666668 + value: {x: 0.24520014, y: 0.077257566, z: 0.058353394, w: 0.96462584} + inSlope: {x: -0.0019394625, y: 0.00053409534, z: -0.0011120002, w: 0.0005176668} + outSlope: {x: -0.0019394625, y: 0.00053409534, z: -0.0011120002, w: 0.0005176668} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.9333334 + value: {x: 0.2451412, y: 0.07725151, z: 0.05835224, w: 0.96464145} + inSlope: {x: 0.000012069952, y: -0.00022374115, z: 0.0003403056, w: -0.000005364423} + outSlope: {x: 0.000012069952, y: -0.00022374115, z: 0.0003403056, w: -0.000005364423} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.28044593, y: -0.00013744667, z: 0.03728559, w: 0.95914537} + inSlope: {x: -0.084447555, y: 0.000001330627, z: -0.011229738, w: 0.024991034} + outSlope: {x: -0.084447555, y: 0.000001330627, z: -0.011229738, w: 0.024991034} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: 0.28343824, y: -0.0001373404, z: 0.037683573, w: 0.9582498} + inSlope: {x: 0.16093162, y: 0.000005551484, z: 0.021395251, w: -0.048403136} + outSlope: {x: 0.16093162, y: 0.000005551484, z: 0.021395251, w: -0.048403136} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: 0.3010146, y: -0.00013645965, z: 0.040020034, w: 0.9527794} + inSlope: {x: -0.008072961, y: 0.0000032606467, z: -0.0010755602, w: 0.0025704373} + outSlope: {x: -0.008072961, y: 0.0000032606467, z: -0.0010755602, w: 0.0025704373} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: 0.26096383, y: -0.00013792599, z: 0.034695443, w: 0.9647249} + inSlope: {x: 0.16488463, y: 0.000005810138, z: 0.021922402, w: -0.04630651} + outSlope: {x: 0.16488463, y: 0.000005810138, z: 0.021922402, w: -0.04630651} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.3004041, y: -0.00013626914, z: 0.039938923, w: 0.95297545} + inSlope: {x: 0.112565205, y: 0.0000047787807, z: 0.014965783, w: -0.035899594} + outSlope: {x: 0.112565205, y: 0.0000047787807, z: 0.014965783, w: -0.035899594} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.2882886, y: -0.00013682389, z: 0.038328134, w: 0.9567762} + inSlope: {x: -0.3012407, y: -0.0000124966755, z: -0.040050358, w: 0.092401214} + outSlope: {x: -0.3012407, y: -0.0000124966755, z: -0.040050358, w: 0.092401214} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9666667 + value: {x: 0.2833136, y: -0.0001370872, z: 0.037666786, w: 0.9582873} + inSlope: {x: 0.12949762, y: 0.00000475477, z: 0.017215999, w: -0.038776733} + outSlope: {x: 0.12949762, y: 0.00000475477, z: 0.017215999, w: -0.038776733} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.28864026, y: -0.00013688642, z: 0.03837499, w: 0.95666826} + inSlope: {x: 0.023880623, y: 0.0000024641508, z: 0.0031750118, w: -0.007302768} + outSlope: {x: 0.023880623, y: 0.0000024641508, z: 0.0031750118, w: -0.007302768} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3666668 + value: {x: 0.27826637, y: -0.00013724399, z: 0.03699574, w: 0.9597912} + inSlope: {x: 0.10398648, y: 0.000004801688, z: 0.0138251, w: -0.030692494} + outSlope: {x: 0.10398648, y: 0.000004801688, z: 0.0138251, w: -0.030692494} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6333334 + value: {x: 0.28526372, y: -0.00013699368, z: 0.03792618, w: 0.9576984} + inSlope: {x: -0.07495083, y: -0.0000007142086, z: -0.0099640805, w: 0.022607468} + outSlope: {x: -0.07495083, y: -0.0000007142086, z: -0.0099640805, w: 0.022607468} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.8000001 + value: {x: 0.27837256, y: -0.00013732185, z: 0.037009828, w: 0.95975983} + inSlope: {x: 0.11311422, y: 0.000009162477, z: 0.015037595, w: -0.033352405} + outSlope: {x: 0.11311422, y: 0.000009162477, z: 0.015037595, w: -0.033352405} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.0666668 + value: {x: 0.2863779, y: -0.00013684378, z: 0.038074188, w: 0.9573599} + inSlope: {x: 0.00846506, y: -0.00000057298223, z: 0.0011256346, w: -0.0025695588} + outSlope: {x: 0.00846506, y: -0.00000057298223, z: 0.0011256346, w: -0.0025695588} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.266667 + value: {x: 0.28003094, y: -0.00013738392, z: 0.03723042, w: 0.95926875} + inSlope: {x: 0.15494454, y: 0.000008632258, z: 0.020599086, w: -0.046023905} + outSlope: {x: 0.15494454, y: 0.000008632258, z: 0.020599086, w: -0.046023905} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.5666668 + value: {x: 0.28176716, y: -0.00013718265, z: 0.037461177, w: 0.95875126} + inSlope: {x: -0.0015252843, y: -0.0000006253691, z: -0.00020334517, w: 0.000455976} + outSlope: {x: -0.0015252843, y: -0.0000006253691, z: -0.00020334517, w: 0.000455976} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.9333334 + value: {x: 0.2804273, y: -0.0001373443, z: 0.03728318, w: 0.9591509} + inSlope: {x: 0.00009477147, y: -0.000001383452, z: 0.000014416887, w: -0.000028610257} + outSlope: {x: 0.00009477147, y: -0.000001383452, z: 0.000014416887, w: -0.000028610257} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.23249942, y: 0.00000001048072, z: 0.03087718, w: 0.9721063} + inSlope: {x: -0.09153216, y: -0.0000026247237, z: -0.012154597, w: 0.022122858} + outSlope: {x: -0.09153216, y: -0.0000026247237, z: -0.012154597, w: 0.022122858} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: 0.23638327, y: -0.0000000434141, z: 0.031393025, w: 0.9711526} + inSlope: {x: -0.026086273, y: -0.0000019812749, z: -0.0034612233, w: 0.006462336} + outSlope: {x: -0.026086273, y: -0.0000019812749, z: -0.0034612233, w: 0.006462336} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: 0.24185486, y: 0.000000031074073, z: 0.032119535, w: 0.9697807} + inSlope: {x: 0.2048782, y: -0.000000101111596, z: 0.027210467, w: -0.052239627} + outSlope: {x: 0.2048782, y: -0.000000101111596, z: 0.027210467, w: -0.052239627} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5666667 + value: {x: 0.25154778, y: -0.00000004477983, z: 0.03340694, w: 0.96726817} + inSlope: {x: -0.17076069, y: 0.000000087766225, z: -0.022678759, w: 0.044643603} + outSlope: {x: -0.17076069, y: 0.000000087766225, z: -0.022678759, w: 0.044643603} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.70000005 + value: {x: 0.23773874, y: 0.000000115714855, z: 0.031572964, w: 0.9708159} + inSlope: {x: 0.14618869, y: -0.00000023485131, z: 0.01941414, w: -0.036546893} + outSlope: {x: 0.14618869, y: -0.00000023485131, z: 0.01941414, w: -0.036546893} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.23609735, y: -0.0000000408425, z: 0.0313551, w: 0.9712234} + inSlope: {x: -0.2123402, y: -0.0000009904419, z: -0.028200075, w: 0.052456856} + outSlope: {x: -0.2123402, y: -0.0000009904419, z: -0.028200075, w: 0.052456856} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0333334 + value: {x: 0.2329966, y: 0.00000018308592, z: 0.030943211, w: 0.97198516} + inSlope: {x: 0.11636014, y: -0.0000002664949, z: 0.015454117, w: -0.028317839} + outSlope: {x: 0.11636014, y: -0.0000002664949, z: 0.015454117, w: -0.028317839} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.23969887, y: -0.00000013865012, z: 0.031833325, w: 0.9703253} + inSlope: {x: -0.021404207, y: 0.0000006137327, z: -0.002843415, w: 0.005367983} + outSlope: {x: -0.021404207, y: 0.0000006137327, z: -0.002843415, w: 0.005367983} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7 + value: {x: 0.23271497, y: -0.000000004879045, z: 0.030905902, w: 0.9720538} + inSlope: {x: -0.017627, y: -0.0000002791772, z: -0.0023409498, w: 0.0042888448} + outSlope: {x: -0.017627, y: -0.0000002791772, z: -0.0023409498, w: 0.0042888448} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.266667 + value: {x: 0.23012784, y: 0.00000003506109, z: 0.030562185, w: 0.9726804} + inSlope: {x: -0.037781443, y: -0.0000022183306, z: -0.0050164647, w: 0.009117685} + outSlope: {x: -0.037781443, y: -0.0000022183306, z: -0.0050164647, w: 0.009117685} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.5000002 + value: {x: 0.23292604, y: -0.000000109589145, z: 0.030933836, w: 0.9720024} + inSlope: {x: -0.049021482, y: -0.000000079185725, z: -0.006510514, w: 0.011959042} + outSlope: {x: -0.049021482, y: -0.000000079185725, z: -0.006510514, w: 0.011959042} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.9333334 + value: {x: 0.23249951, y: -0.00000005905913, z: 0.03087708, w: 0.9721063} + inSlope: {x: -0.0026781883, y: -0.000003181386, z: -0.00035835465, w: 0.0006526715} + outSlope: {x: -0.0026781883, y: -0.000003181386, z: -0.00035835465, w: 0.0006526715} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2/mixamorig:LeftHandPinky3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.044519085, y: -0.000000011890608, z: -0.000000004553846, w: 0.99900854} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.044519085, y: -0.000000011890608, z: -0.000000004553846, w: 0.99900854} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2/mixamorig:LeftHandPinky3/mixamorig:LeftHandPinky4 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.4839039, y: -0.51056224, z: 0.5415239, w: -0.4603424} + inSlope: {x: 0.01402527, y: -0.01497209, z: 0.008445382, w: 0.011821388} + outSlope: {x: 0.01402527, y: -0.01497209, z: 0.008445382, w: 0.011821388} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.4880172, y: -0.50591725, z: 0.5363354, w: -0.46715236} + inSlope: {x: 0.06584508, y: -0.044648033, z: -0.22156027, w: -0.27292857} + outSlope: {x: 0.06584508, y: -0.044648033, z: -0.22156027, w: -0.27292857} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: -0.4697427, y: -0.52104366, z: 0.5101183, w: -0.49762905} + inSlope: {x: 0.09907947, y: -0.08452446, z: -0.08574576, w: -0.09330065} + outSlope: {x: 0.09907947, y: -0.08452446, z: -0.08574576, w: -0.09330065} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: -0.46675152, y: -0.5244854, z: 0.51346177, w: -0.49337116} + inSlope: {x: -0.26347134, y: 0.22722796, z: 0.2222015, w: 0.24343923} + outSlope: {x: -0.26347134, y: 0.22722796, z: 0.2222015, w: 0.24343923} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5666667 + value: {x: -0.4969806, y: -0.49652296, z: 0.5341909, w: -0.47022897} + inSlope: {x: -0.068808846, y: 0.069908105, z: 0.018896088, w: 0.019014094} + outSlope: {x: -0.068808846, y: 0.069908105, z: 0.018896088, w: 0.019014094} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.48620063, y: -0.506517, z: 0.5244015, w: -0.48171836} + inSlope: {x: 0.09424034, y: -0.08784416, z: -0.0646511, w: -0.07378403} + outSlope: {x: 0.09424034, y: -0.08784416, z: -0.0646511, w: -0.07378403} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.47384006, y: -0.5188046, z: 0.5235609, w: -0.4818728} + inSlope: {x: -0.0033102483, y: -0.010201376, z: 0.12696949, w: 0.15327613} + outSlope: {x: -0.0033102483, y: -0.010201376, z: 0.12696949, w: 0.15327613} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9666667 + value: {x: -0.5007576, y: -0.4936849, z: 0.5458595, w: -0.45558164} + inSlope: {x: -0.19077632, y: 0.19789626, z: 0.015007867, w: 0.010875026} + outSlope: {x: -0.19077632, y: 0.19789626, z: 0.015007867, w: 0.010875026} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1333334 + value: {x: -0.48542142, y: -0.5088131, z: 0.5389796, w: -0.46365535} + inSlope: {x: 0.08252073, y: -0.07492562, z: -0.09119776, w: -0.11000943} + outSlope: {x: 0.08252073, y: -0.07492562, z: -0.09119776, w: -0.11000943} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3000001 + value: {x: -0.47401947, y: -0.518987, z: 0.5268168, w: -0.47793525} + inSlope: {x: -0.024215005, y: 0.01784386, z: 0.0533778, w: 0.06373784} + outSlope: {x: -0.024215005, y: 0.01784386, z: 0.0533778, w: 0.06373784} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4333334 + value: {x: -0.4802247, y: -0.5123374, z: 0.5230137, w: -0.48306462} + inSlope: {x: 0.104163684, y: -0.08673199, z: -0.14254256, w: -0.16526447} + outSlope: {x: 0.104163684, y: -0.08673199, z: -0.14254256, w: -0.16526447} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.45590106, y: -0.534321, z: 0.50945234, w: -0.49710524} + inSlope: {x: 0.009006865, y: -0.016681569, z: 0.059718546, w: 0.07108576} + outSlope: {x: 0.009006865, y: -0.016681569, z: 0.059718546, w: 0.07108576} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.48260874, y: -0.509669, z: 0.52116597, w: -0.48550218} + inSlope: {x: -0.013506381, y: 0.019567722, z: -0.04451926, w: -0.05505453} + outSlope: {x: -0.013506381, y: 0.019567722, z: -0.04451926, w: -0.05505453} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9666668 + value: {x: -0.4747073, y: -0.517936, z: 0.523924, w: -0.48155904} + inSlope: {x: -0.011814298, y: 0.0039026714, z: 0.061950117, w: 0.07477689} + outSlope: {x: -0.011814298, y: 0.0039026714, z: 0.061950117, w: 0.07477689} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.2333333 + value: {x: -0.48890507, y: -0.50531226, z: 0.53885734, w: -0.46396583} + inSlope: {x: -0.13996139, y: 0.13662876, z: 0.061101444, w: 0.06924594} + outSlope: {x: -0.13996139, y: 0.13662876, z: 0.061101444, w: 0.06924594} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.4666667 + value: {x: -0.4890453, y: -0.5058408, z: 0.5472692, w: -0.45327294} + inSlope: {x: -0.009440911, y: 0.00795363, z: 0.019402158, w: 0.024730353} + outSlope: {x: -0.009440911, y: 0.00795363, z: 0.019402158, w: 0.024730353} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.9333334 + value: {x: -0.4838792, y: -0.51054287, z: 0.5415519, w: -0.46035686} + inSlope: {x: -0.0047457265, y: 0.006719834, z: -0.0057095345, w: -0.009188362} + outSlope: {x: -0.0047457265, y: 0.006719834, z: -0.0057095345, w: -0.009188362} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.52604496, y: 0.023665538, z: -0.084485024, w: 0.845919} + inSlope: {x: -0.0441277, y: 0.058488972, z: 0.13600118, w: 0.038886663} + outSlope: {x: -0.0441277, y: 0.058488972, z: 0.13600118, w: 0.038886663} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: 0.5191671, y: 0.0024931538, z: -0.069513686, w: 0.8518375} + inSlope: {x: -0.015788367, y: -0.46111566, z: 0.14575045, w: 0.023261003} + outSlope: {x: -0.015788367, y: -0.46111566, z: 0.14575045, w: 0.023261003} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: 0.52863127, y: 0.011940716, z: -0.057921704, w: 0.84678894} + inSlope: {x: 0.07217286, y: 0.9512145, z: 0.074795894, w: -0.062476687} + outSlope: {x: 0.07217286, y: 0.9512145, z: 0.074795894, w: -0.062476687} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: 0.5237788, y: 0.13461506, z: -0.06696436, w: 0.83848095} + inSlope: {x: -0.14890106, y: 0.9540723, z: -0.27016222, w: -0.075081296} + outSlope: {x: -0.14890106, y: 0.9540723, z: -0.27016222, w: -0.075081296} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: 0.5050959, y: 0.1641343, z: -0.1131166, w: 0.8397278} + inSlope: {x: -0.11020304, y: -0.6070036, z: -0.44071847, w: 0.11761219} + outSlope: {x: -0.11020304, y: -0.6070036, z: -0.44071847, w: 0.11761219} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.49439564, y: 0.07961258, z: -0.14577319, w: 0.85322034} + inSlope: {x: -0.062452666, y: -1.8213458, z: -0.5368035, w: 0.101569116} + outSlope: {x: -0.062452666, y: -1.8213458, z: -0.5368035, w: 0.101569116} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5666667 + value: {x: 0.50971496, y: -0.03386985, z: -0.18522583, w: 0.8394849} + inSlope: {x: 0.4598782, y: -0.7535537, z: -0.5017393, w: -0.3999165} + outSlope: {x: 0.4598782, y: -0.7535537, z: -0.5017393, w: -0.3999165} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6333334 + value: {x: 0.5404763, y: -0.00060343236, z: -0.19391721, w: 0.81870705} + inSlope: {x: 0.32469743, y: 1.4276259, z: 0.31381372, w: -0.15869913} + outSlope: {x: 0.32469743, y: 1.4276259, z: 0.31381372, w: -0.15869913} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.70000005 + value: {x: 0.5511659, y: 0.11147306, z: -0.15814121, w: 0.81165344} + inSlope: {x: 0.021609614, y: 1.2708691, z: 0.5192611, w: -0.06898281} + outSlope: {x: 0.021609614, y: 1.2708691, z: 0.5192611, w: -0.06898281} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000001 + value: {x: 0.54503447, y: 0.14176723, z: -0.11775822, w: 0.8179074} + inSlope: {x: -0.1444996, y: -0.3136889, z: 0.4679933, w: 0.21445519} + outSlope: {x: -0.1444996, y: -0.3136889, z: 0.4679933, w: 0.21445519} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.86666673 + value: {x: 0.52418315, y: 0.11461301, z: -0.07060865, w: 0.8408985} + inSlope: {x: -0.52290034, y: -0.5210211, z: 0.9805553, w: 0.46936786} + outSlope: {x: -0.52290034, y: -0.5210211, z: 0.9805553, w: 0.46936786} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9333334 + value: {x: 0.48562497, y: 0.053608872, z: 0.0013201159, w: 0.8725209} + inSlope: {x: -0.25274122, y: -1.529069, z: 0.7910675, w: 0.22710605} + outSlope: {x: -0.25274122, y: -1.529069, z: 0.7910675, w: 0.22710605} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.50901127, y: -0.068965636, z: 0.008298738, w: 0.8579524} + inSlope: {x: 0.7437843, y: -1.4197994, z: -0.61266387, w: -0.5374783} + outSlope: {x: 0.7437843, y: -1.4197994, z: -0.61266387, w: -0.5374783} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.5516677, y: -0.102015235, z: -0.048356887, w: 0.82638806} + inSlope: {x: 0.25066698, y: 0.41269892, z: -0.5339978, w: -0.14528647} + outSlope: {x: 0.25066698, y: 0.41269892, z: -0.5339978, w: -0.14528647} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.533933, y: 0.011973209, z: -0.053850714, w: 0.84372526} + inSlope: {x: -0.26340747, y: 1.2334411, z: -0.07003081, w: 0.15133306} + outSlope: {x: -0.26340747, y: 1.2334411, z: -0.07003081, w: 0.15133306} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3000001 + value: {x: 0.51633626, y: 0.06789458, z: -0.11165663, w: 0.84635687} + inSlope: {x: -0.15765503, y: -0.6166273, z: -0.63994336, w: 0.053457372} + outSlope: {x: -0.15765503, y: -0.6166273, z: -0.63994336, w: 0.053457372} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4000001 + value: {x: 0.5159664, y: -0.03411734, z: -0.18266355, w: 0.8362109} + inSlope: {x: 0.22547565, y: -0.521497, z: -0.6297164, w: -0.28731135} + outSlope: {x: 0.22547565, y: -0.521497, z: -0.6297164, w: -0.28731135} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4666667 + value: {x: 0.5325987, y: -0.01389165, z: -0.20457755, w: 0.8211539} + inSlope: {x: 0.19908686, y: 0.972305, z: 0.00089583546, w: -0.12179997} + outSlope: {x: 0.19908686, y: 0.972305, z: 0.00089583546, w: -0.12179997} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.54902726, y: 0.09665209, z: -0.19299854, w: 0.80745214} + inSlope: {x: 0.21155721, y: 0.67385054, z: 0.0085829105, w: -0.21727839} + outSlope: {x: 0.21155721, y: 0.67385054, z: 0.0085829105, w: -0.21727839} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7333335 + value: {x: 0.57771504, y: 0.090764426, z: -0.18144123, w: 0.79062396} + inSlope: {x: -0.02617571, y: -0.64403176, z: 0.21990971, w: 0.14014804} + outSlope: {x: -0.02617571, y: -0.64403176, z: 0.21990971, w: 0.14014804} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.5747078, y: 0.030993681, z: -0.14929096, w: 0.8040289} + inSlope: {x: -0.031275373, y: -0.073437616, z: 0.4251514, w: 0.104319945} + outSlope: {x: -0.031275373, y: -0.073437616, z: 0.4251514, w: 0.104319945} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9666668 + value: {x: 0.55071694, y: 0.093329355, z: -0.101530425, w: 0.82322055} + inSlope: {x: -0.21468231, y: 0.17756999, z: 0.10589702, w: 0.13885716} + outSlope: {x: -0.21468231, y: 0.17756999, z: 0.10589702, w: 0.13885716} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.1000001 + value: {x: 0.54010046, y: 0.043176875, z: -0.10415409, w: 0.8340139} + inSlope: {x: -0.037057437, y: -0.41539133, z: 0.020671023, w: 0.04921411} + outSlope: {x: -0.037057437, y: -0.41539133, z: 0.020671023, w: 0.04921411} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.4 + value: {x: 0.5225314, y: -0.00020858235, z: -0.102093264, w: 0.8464856} + inSlope: {x: -0.04051123, y: -0.033267282, z: -0.0029171286, w: 0.02465936} + outSlope: {x: -0.04051123, y: -0.033267282, z: -0.0029171286, w: 0.02465936} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.530331, y: 0.012268807, z: -0.088424675, w: 0.8430775} + inSlope: {x: -0.017296689, y: 0.1877797, z: 0.12135565, w: 0.020870287} + outSlope: {x: -0.017296689, y: 0.1877797, z: 0.12135565, w: 0.020870287} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.9333334 + value: {x: 0.5260217, y: 0.023663742, z: -0.08448335, w: 0.8459336} + inSlope: {x: 0.0016576068, y: -0.018749163, z: -0.0074628065, w: -0.0012463343} + outSlope: {x: 0.0016576068, y: -0.018749163, z: -0.0074628065, w: -0.0012463343} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.0098250415, y: -0.0415529, z: 0.12108724, w: 0.9917231} + inSlope: {x: 0.006603095, y: -0.020373946, z: 0.081325464, w: -0.010970234} + outSlope: {x: 0.006603095, y: -0.020373946, z: 0.081325464, w: -0.010970234} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: 0.009206582, y: -0.039642647, z: 0.1134641, w: 0.9927082} + inSlope: {x: -0.03809286, y: 0.11770526, z: -0.46951413, w: 0.056000046} + outSlope: {x: -0.03809286, y: 0.11770526, z: -0.46951413, w: 0.056000046} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.005589906, y: -0.028459983, z: 0.06889411, w: 0.9972023} + inSlope: {x: 0.019864535, y: -0.061445497, z: 0.24477024, w: -0.021870723} + outSlope: {x: 0.019864535, y: -0.061445497, z: 0.24477024, w: -0.021870723} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.013485023, y: -0.052839924, z: 0.16618821, w: 0.984585} + inSlope: {x: 0.09186311, y: -0.28305265, z: 1.1321232, w: -0.20397575} + outSlope: {x: 0.09186311, y: -0.28305265, z: 1.1321232, w: -0.20397575} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.020401498, y: -0.07410354, z: 0.25143188, w: 0.96481836} + inSlope: {x: 0.00028796587, y: -0.0008984022, z: 0.0036137253, w: -0.0009834487} + outSlope: {x: 0.00028796587, y: -0.0008984022, z: 0.0036137253, w: -0.0009834487} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: 0.017203122, y: -0.06428268, z: 0.21201491, w: 0.97499824} + inSlope: {x: -0.108973876, y: 0.3351776, z: -1.3430442, w: 0.29658633} + outSlope: {x: -0.108973876, y: 0.3351776, z: -1.3430442, w: 0.29658633} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: 0.0072115646, y: -0.033476412, z: 0.08887604, w: 0.99545383} + inSlope: {x: -0.1302859, y: 0.40268207, z: -1.6057005, w: 0.17902479} + outSlope: {x: -0.1302859, y: 0.40268207, z: -1.6057005, w: 0.17902479} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.0042714835, y: -0.024375767, z: 0.052639402, w: 0.99830693} + inSlope: {x: 0.06533941, y: -0.2022032, z: 0.80525595, w: -0.06638999} + outSlope: {x: 0.06533941, y: -0.2022032, z: 0.80525595, w: -0.06638999} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.0135732, y: -0.053111233, z: 0.1672732, w: 0.98438543} + inSlope: {x: 0.15101862, y: -0.46533683, z: 1.8612006, w: -0.3354093} + outSlope: {x: 0.15101862, y: -0.46533683, z: 1.8612006, w: -0.3354093} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7666667 + value: {x: 0.023058418, y: -0.0822456, z: 0.28417468, w: 0.9549601} + inSlope: {x: 0.04107839, y: -0.12581137, z: 0.506254, w: -0.15981571} + outSlope: {x: 0.04107839, y: -0.12581137, z: 0.506254, w: -0.15981571} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.90000004 + value: {x: 0.021845637, y: -0.07853099, z: 0.26922977, w: 0.95962024} + inSlope: {x: -0.095419206, y: 0.29260737, z: -1.176035, w: 0.33992702} + outSlope: {x: -0.095419206, y: 0.29260737, z: -1.176035, w: 0.33992702} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9666667 + value: {x: 0.012695034, y: -0.050405957, z: 0.15645403, w: 0.9863165} + inSlope: {x: -0.1381412, y: 0.4256758, z: -1.7024509, w: 0.3039813} + outSlope: {x: -0.1381412, y: 0.4256758, z: -1.7024509, w: 0.3039813} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0333334 + value: {x: 0.0064304853, y: -0.031059818, z: 0.07924742, w: 0.9963503} + inSlope: {x: -0.031326186, y: 0.09685085, z: -0.38602808, w: 0.039271012} + outSlope: {x: -0.031326186, y: 0.09685085, z: -0.38602808, w: 0.039271012} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.011103345, y: -0.04549684, z: 0.1368348, w: 0.9894862} + inSlope: {x: 0.054490834, y: -0.16814259, z: 0.6716401, w: -0.10115782} + outSlope: {x: 0.054490834, y: -0.16814259, z: 0.6716401, w: -0.10115782} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3000001 + value: {x: 0.012828223, y: -0.050816547, z: 0.15809555, w: 0.98603195} + inSlope: {x: -0.070060775, y: 0.21603253, z: -0.8634347, w: 0.14145358} + outSlope: {x: -0.070060775, y: 0.21603253, z: -0.8634347, w: 0.14145358} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4000001 + value: {x: 0.0043662735, y: -0.024669364, z: 0.05380748, w: 0.998237} + inSlope: {x: -0.025771651, y: 0.07978096, z: -0.3176066, w: 0.023905657} + outSlope: {x: -0.025771651, y: 0.07978096, z: -0.3176066, w: 0.023905657} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333334 + value: {x: 0.0107779745, y: -0.04449344, z: 0.13282791, w: 0.99008125} + inSlope: {x: 0.05283634, y: -0.1630736, z: 0.6511892, w: -0.093426794} + outSlope: {x: 0.05283634, y: -0.1630736, z: 0.6511892, w: -0.093426794} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7 + value: {x: 0.012867577, y: -0.05093869, z: 0.15858333, w: 0.9859468} + inSlope: {x: -0.04570428, y: 0.14088877, z: -0.5632379, w: 0.095339894} + outSlope: {x: -0.04570428, y: 0.14088877, z: -0.5632379, w: 0.095339894} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.0071995845, y: -0.0334386, z: 0.08872549, w: 0.9954687} + inSlope: {x: 0.0194227, y: -0.060024537, z: 0.2393079, w: -0.02586715} + outSlope: {x: 0.0194227, y: -0.060024537, z: 0.2393079, w: -0.02586715} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9666668 + value: {x: 0.015846131, y: -0.06010955, z: 0.1952897, w: 0.9787736} + inSlope: {x: 0.05772638, y: -0.17760056, z: 0.7113397, w: -0.15031286} + outSlope: {x: 0.05772638, y: -0.17760056, z: 0.7113397, w: -0.15031286} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.1000001 + value: {x: 0.017232629, y: -0.064373426, z: 0.21237926, w: 0.9749124} + inSlope: {x: -0.023091579, y: 0.070982724, z: -0.28459942, w: 0.06689793} + outSlope: {x: -0.023091579, y: 0.070982724, z: -0.28459942, w: 0.06689793} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.266667 + value: {x: 0.011696386, y: -0.04732771, z: 0.14414991, w: 0.98835427} + inSlope: {x: -0.06823402, y: 0.21046758, z: -0.84092337, w: 0.1318168} + outSlope: {x: -0.06823402, y: 0.21046758, z: -0.84092337, w: 0.1318168} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.3666668 + value: {x: 0.006768751, y: -0.03210634, z: 0.08341682, w: 0.9959744} + inSlope: {x: -0.0059701, y: 0.018470492, z: -0.07360603, w: 0.007270581} + outSlope: {x: -0.0059701, y: 0.018470492, z: -0.07360603, w: 0.007270581} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.5000002 + value: {x: 0.008253293, y: -0.03669684, z: 0.10171372, w: 0.99410236} + inSlope: {x: -0.0015000645, y: 0.004640815, z: -0.018512856, w: 0.0020429646} + outSlope: {x: -0.0015000645, y: 0.004640815, z: -0.018512856, w: 0.0020429646} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.008876177, y: -0.038621098, z: 0.10938895, w: 0.99320877} + inSlope: {x: 0.016061738, y: -0.049635276, z: 0.19799528, w: -0.023835026} + outSlope: {x: 0.016061738, y: -0.049635276, z: 0.19799528, w: -0.023835026} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.9333334 + value: {x: 0.009825339, y: -0.041552834, z: 0.1210872, w: 0.9917231} + inSlope: {x: -0.0020452142, y: 0.006285763, z: -0.025078902, w: 0.003358129} + outSlope: {x: -0.0020452142, y: 0.006285763, z: -0.025078902, w: 0.003358129} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.015383748, y: 0.12244967, z: 0.12686947, w: 0.98421216} + inSlope: {x: 0.01690071, y: -0.12943067, z: 0.05558252, w: 0.008332729} + outSlope: {x: 0.01690071, y: -0.12943067, z: 0.05558252, w: 0.008332729} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.013125888, y: 0.127247, z: 0.12171895, w: 0.9842868} + inSlope: {x: 0.07499837, y: 0.64860433, z: -0.21666506, w: -0.06263227} + outSlope: {x: 0.07499837, y: 0.64860433, z: -0.21666506, w: -0.06263227} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: 0.037309866, y: 0.18974623, z: 0.13052051, w: 0.9724036} + inSlope: {x: 0.048671253, y: -0.14713237, z: 0.4002682, w: -0.028631689} + outSlope: {x: 0.048671253, y: -0.14713237, z: 0.4002682, w: -0.028631689} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.004553736, y: 0.102610156, z: 0.1491672, w: 0.98346305} + inSlope: {x: -0.33445698, y: -0.96845263, z: -0.14846878, w: 0.12971343} + outSlope: {x: -0.33445698, y: -0.96845263, z: -0.14846878, w: 0.12971343} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: 0.008209691, y: 0.047535963, z: 0.1344457, w: 0.9897461} + inSlope: {x: 0.16391127, y: -0.16048227, z: 0.098992966, w: -0.0063246493} + outSlope: {x: 0.16391127, y: -0.16048227, z: 0.098992966, w: -0.0063246493} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.006581907, y: 0.054421682, z: 0.13984069, w: 0.98865545} + inSlope: {x: -0.8094753, y: 0.44336426, z: -0.38927373, w: 0.009766802} + outSlope: {x: -0.8094753, y: 0.44336426, z: -0.38927373, w: 0.009766802} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5666667 + value: {x: -0.08101205, y: 0.09652773, z: 0.068394594, w: 0.9896675} + inSlope: {x: -0.83304095, y: 0.4078933, z: -1.2625289, w: -0.0036549626} + outSlope: {x: -0.83304095, y: 0.4078933, z: -1.2625289, w: -0.0036549626} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.09893644, y: 0.10247199, z: 0.03072312, w: 0.98932666} + inSlope: {x: -0.246159, y: -0.049036846, z: -0.51326567, w: 0.009106083} + outSlope: {x: -0.246159, y: -0.049036846, z: -0.51326567, w: 0.009106083} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.09550232, y: 0.08861499, z: 0.082078576, w: 0.9880738} + inSlope: {x: -0.20275411, y: 0.26117885, z: 1.7029243, w: -0.20603913} + outSlope: {x: -0.20275411, y: 0.26117885, z: 1.7029243, w: -0.20603913} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.70000005 + value: {x: -0.110939585, y: 0.110670544, z: 0.14770521, w: 0.9765386} + inSlope: {x: -0.6366259, y: 0.95881367, z: 1.7039988, w: -0.43819436} + outSlope: {x: -0.6366259, y: 0.95881367, z: 1.7039988, w: -0.43819436} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7666667 + value: {x: -0.15090734, y: 0.1761275, z: 0.20871992, w: 0.9500748} + inSlope: {x: 0.051556483, y: -0.024496585, z: -0.048985586, w: 0.021098226} + outSlope: {x: 0.051556483, y: -0.024496585, z: -0.048985586, w: 0.021098226} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.09446112, y: 0.08247001, z: 0.16106246, w: 0.97894573} + inSlope: {x: 1.3681983, y: -2.1733809, z: -0.8996635, w: 0.44940066} + outSlope: {x: 1.3681983, y: -2.1733809, z: -0.8996635, w: 0.44940066} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.90000004 + value: {x: 0.00596052, y: -0.040159106, z: 0.12312405, w: 0.9915605} + inSlope: {x: 1.113322, y: -0.6252431, z: 0.085685074, w: -0.014126252} + outSlope: {x: 1.113322, y: -0.6252431, z: 0.085685074, w: -0.014126252} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9333334 + value: {x: 0.03092774, y: -0.03567209, z: 0.13814759, w: 0.9892857} + inSlope: {x: 0.0052864254, y: 0.83611584, z: 0.5729611, w: -0.072027154} + outSlope: {x: 0.0052864254, y: 0.83611584, z: 0.5729611, w: -0.072027154} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9666667 + value: {x: 0.0063129934, y: 0.015581905, z: 0.16132145, w: 0.9867587} + inSlope: {x: -1.4374652, y: 1.7796311, z: 0.36951646, w: -0.1239441} + outSlope: {x: -1.4374652, y: 1.7796311, z: 0.36951646, w: -0.1239441} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.06490318, y: 0.082969874, z: 0.162782, w: 0.9810228} + inSlope: {x: -2.1707785, y: 1.5665698, z: -0.38069266, w: -0.19690344} + outSlope: {x: -2.1707785, y: 1.5665698, z: -0.38069266, w: -0.19690344} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0333334 + value: {x: -0.1384057, y: 0.12001992, z: 0.13594186, w: 0.9736318} + inSlope: {x: -1.4349736, y: 0.35250187, z: -0.79903865, w: -0.08831142} + outSlope: {x: -1.4349736, y: 0.35250187, z: -0.79903865, w: -0.08831142} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.16056825, y: 0.10647011, z: 0.10951271, w: 0.9751353} + inSlope: {x: 0.38731816, y: -0.8230793, z: -0.45654547, w: 0.18364477} + outSlope: {x: 0.38731816, y: -0.8230793, z: -0.45654547, w: 0.18364477} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.11258451, y: 0.06514802, z: 0.105505526, w: 0.9858748} + inSlope: {x: 1.9508486, y: -1.1360726, z: 0.17436661, w: 0.24833044} + outSlope: {x: 1.9508486, y: -1.1360726, z: 0.17436661, w: 0.24833044} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1333334 + value: {x: -0.030511511, y: 0.030731875, z: 0.121137194, w: 0.9916907} + inSlope: {x: 2.0566924, y: -0.5859887, z: 0.6119084, w: 0.040761255} + outSlope: {x: 2.0566924, y: -0.5859887, z: 0.6119084, w: 0.040761255} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.024528475, y: 0.026082017, z: 0.14629944, w: 0.9885922} + inSlope: {x: 0.84816307, y: 0.33146894, z: 0.71430546, w: -0.11691403} + outSlope: {x: 0.84816307, y: 0.33146894, z: 0.71430546, w: -0.11691403} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2333333 + value: {x: -0.0019461899, y: 0.0889483, z: 0.17869337, w: 0.979874} + inSlope: {x: -0.73348784, y: 0.808298, z: 0.14636964, w: -0.090463735} + outSlope: {x: -0.73348784, y: 0.808298, z: 0.14636964, w: -0.090463735} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666668 + value: {x: -0.022866577, y: 0.10671633, z: 0.17851548, w: 0.9778655} + inSlope: {x: -0.35414124, y: 0.1372542, z: -0.07032624, w: -0.0054143835} + outSlope: {x: -0.35414124, y: 0.1372542, z: -0.07032624, w: -0.0054143835} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.026139453, y: 0.0802594, z: 0.16242523, w: 0.9831039} + inSlope: {x: -0.2569111, y: -0.29152557, z: -0.5403226, w: 0.10304414} + outSlope: {x: -0.2569111, y: -0.29152557, z: -0.5403226, w: 0.10304414} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4000001 + value: {x: -0.069058865, y: 0.10363505, z: 0.10303977, w: 0.98685026} + inSlope: {x: -0.51945615, y: 0.9677112, z: -0.93910545, w: -0.038901903} + outSlope: {x: -0.51945615, y: 0.9677112, z: -0.93910545, w: -0.038901903} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4333334 + value: {x: -0.07731348, y: 0.14317763, z: 0.07537643, w: 0.9837892} + inSlope: {x: 0.2751301, y: 1.0411074, z: -0.37878382, w: -0.094848365} + outSlope: {x: 0.2751301, y: 1.0411074, z: -0.37878382, w: -0.094848365} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4666667 + value: {x: -0.050716877, y: 0.17304215, z: 0.07778754, w: 0.98052704} + inSlope: {x: 1.116735, y: 0.42522025, z: 0.5077028, w: -0.070306055} + outSlope: {x: 1.116735, y: 0.42522025, z: 0.5077028, w: -0.070306055} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333334 + value: {x: 0.03981226, y: 0.13913406, z: 0.141368, w: 0.9793221} + inSlope: {x: 0.9642848, y: -1.0650055, z: 0.64948076, w: 0.032275945} + outSlope: {x: 0.9642848, y: -1.0650055, z: 0.64948076, w: 0.032275945} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6000001 + value: {x: 0.06401978, y: 0.07870096, z: 0.14668438, w: 0.9839671} + inSlope: {x: -0.015902635, y: -0.3351957, z: -0.19420701, w: 0.0602915} + outSlope: {x: -0.015902635, y: -0.3351957, z: -0.19420701, w: 0.0602915} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.059567638, y: 0.08942698, z: 0.14026348, w: 0.9842666} + inSlope: {x: 0.0085232295, y: 0.36436033, z: 0.096440926, w: -0.047981188} + outSlope: {x: 0.0085232295, y: 0.36436033, z: 0.096440926, w: -0.047981188} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7666668 + value: {x: 0.056245897, y: 0.14778337, z: 0.13934411, w: 0.9775376} + inSlope: {x: -0.07082631, y: 1.1464481, z: -0.43578818, w: -0.12022835} + outSlope: {x: -0.07082631, y: 1.1464481, z: -0.43578818, w: -0.12022835} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.062237296, y: 0.24644865, z: 0.096996106, w: 0.96227926} + inSlope: {x: 0.22163776, y: 1.2227961, z: -0.4544499, w: -0.26458365} + outSlope: {x: 0.22163776, y: 1.2227961, z: -0.4544499, w: -0.26458365} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9000001 + value: {x: 0.061966155, y: 0.2648459, z: 0.10225031, w: 0.95684993} + inSlope: {x: -0.5917711, y: -0.9631889, z: 0.64935493, w: 0.20125437} + outSlope: {x: -0.5917711, y: -0.9631889, z: 0.64935493, w: 0.20125437} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9666668 + value: {x: -0.012007829, y: 0.13904378, z: 0.16493514, w: 0.9763806} + inSlope: {x: -1.1509349, y: -2.1393065, z: 0.8119721, w: 0.16777827} + outSlope: {x: -1.1509349, y: -2.1393065, z: 0.8119721, w: 0.16777827} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.0333335 + value: {x: -0.061009593, y: 0.01735273, z: 0.18777137, w: 0.98016256} + inSlope: {x: -0.19053791, y: -1.2408864, z: -0.17694187, w: 0.058042035} + outSlope: {x: -0.19053791, y: -1.2408864, z: -0.17694187, w: 0.058042035} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.1333334 + value: {x: -0.03517171, y: -0.011980841, z: 0.1475228, w: 0.98836046} + inSlope: {x: 0.3820458, y: 0.411459, z: -0.20216097, w: 0.04781221} + outSlope: {x: 0.3820458, y: 0.411459, z: -0.20216097, w: 0.04781221} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.2333333 + value: {x: -0.0044096764, y: 0.04075106, z: 0.15450956, w: 0.9871407} + inSlope: {x: 0.090075895, y: 0.53885806, z: 0.14288557, w: -0.044373456} + outSlope: {x: 0.090075895, y: 0.53885806, z: 0.14288557, w: -0.044373456} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.013734491, y: 0.11032698, z: 0.12860738, w: 0.9854438} + inSlope: {x: -0.022532534, y: 0.6637231, z: -0.6174695, w: 0.008051999} + outSlope: {x: -0.022532534, y: 0.6637231, z: -0.6174695, w: 0.008051999} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.4333334 + value: {x: -0.009304439, y: 0.14495091, z: 0.10277327, w: 0.9840429} + inSlope: {x: -0.072826594, y: 0.15308544, z: 0.20699006, w: -0.04549478} + outSlope: {x: -0.072826594, y: 0.15308544, z: 0.20699006, w: -0.04549478} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.5333335 + value: {x: -0.018204588, y: 0.15487239, z: 0.11969737, w: 0.98048747} + inSlope: {x: 0.035436694, y: 0.022350198, z: -0.004017953, w: -0.0024265076} + outSlope: {x: 0.035436694, y: 0.022350198, z: -0.004017953, w: -0.0024265076} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.7333336 + value: {x: 0.0075350082, y: 0.13489434, z: 0.12788244, w: 0.98254406} + inSlope: {x: 0.116687685, y: -0.3399085, z: 0.06219917, w: 0.037907563} + outSlope: {x: 0.116687685, y: -0.3399085, z: 0.06219917, w: 0.037907563} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.9333334 + value: {x: 0.015383677, y: 0.12244966, z: 0.12686953, w: 0.98421216} + inSlope: {x: 0.027144875, y: 0.023394473, z: -0.0151629895, w: -0.0013554109} + outSlope: {x: 0.027144875, y: 0.023394473, z: -0.0151629895, w: -0.0013554109} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.065453045, y: 0.17473829, z: 0.33820283, w: 0.9223889} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.065453045, y: 0.17473829, z: 0.33820283, w: 0.9223889} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.14641602, y: 0.17248681, z: -0.13522413, w: 0.9646373} + inSlope: {x: 0.18362491, y: -0.072422765, z: -0.15974252, w: -0.038453933} + outSlope: {x: 0.18362491, y: -0.072422765, z: -0.15974252, w: -0.038453933} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.1423284, y: 0.17345248, z: -0.13206813, w: 0.96551275} + inSlope: {x: -0.16388008, y: 0.050473142, z: 0.13440171, w: 0.033800308} + outSlope: {x: -0.16388008, y: 0.050473142, z: 0.13440171, w: 0.033800308} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.14596894, y: 0.17260939, z: -0.13487352, w: 0.9647322} + inSlope: {x: 0.036247376, y: -0.012820513, z: -0.030756446, w: -0.007537008} + outSlope: {x: 0.036247376, y: -0.012820513, z: -0.030756446, w: -0.007537008} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.16180164, y: 0.16650997, z: -0.14845318, w: 0.9612785} + inSlope: {x: -0.07873286, y: 0.0299321, z: 0.06657375, w: 0.018169278} + outSlope: {x: -0.07873286, y: 0.0299321, z: 0.06657375, w: 0.018169278} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.16190115, y: 0.16647077, z: -0.14852664, w: 0.96125716} + inSlope: {x: 0.14071718, y: -0.053207874, z: -0.11843383, w: -0.03288567} + outSlope: {x: 0.14071718, y: -0.053207874, z: -0.11843383, w: -0.03288567} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7666667 + value: {x: 0.15960196, y: 0.16732475, z: -0.14659874, w: 0.9617892} + inSlope: {x: -0.061186723, y: 0.0223287, z: 0.05108263, w: 0.014162052} + outSlope: {x: -0.061186723, y: 0.0223287, z: 0.05108263, w: 0.014162052} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.90000004 + value: {x: 0.17551942, y: 0.1614322, z: -0.15980054, w: 0.9579125} + inSlope: {x: 0.17189324, y: -0.062911905, z: -0.14106101, w: -0.043678895} + outSlope: {x: 0.17189324, y: -0.062911905, z: -0.14106101, w: -0.043678895} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.16136506, y: 0.16663605, z: -0.14809167, w: 0.9613858} + inSlope: {x: 0.00089697726, y: -0.000054314733, z: -0.00055857, w: -0.00022888184} + outSlope: {x: 0.00089697726, y: -0.000054314733, z: -0.00055857, w: -0.00022888184} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666668 + value: {x: 0.17235072, y: 0.16253456, z: -0.15722519, w: 0.9587273} + inSlope: {x: 0.021116884, y: -0.007715989, z: -0.017371206, w: -0.0052374233} + outSlope: {x: 0.021116884, y: -0.007715989, z: -0.017371206, w: -0.0052374233} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4333334 + value: {x: 0.14558859, y: 0.17245327, z: -0.13474394, w: 0.9648357} + inSlope: {x: 0.106662616, y: -0.03586318, z: -0.08864866, w: -0.022433124} + outSlope: {x: 0.106662616, y: -0.03586318, z: -0.08864866, w: -0.022433124} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333334 + value: {x: 0.15135343, y: 0.17053416, z: -0.1395171, w: 0.96361053} + inSlope: {x: -0.067580335, y: 0.025222177, z: 0.05747331, w: 0.014435662} + outSlope: {x: -0.067580335, y: 0.025222177, z: 0.05747331, w: 0.014435662} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6333334 + value: {x: 0.15312342, y: 0.16984013, z: -0.141037, w: 0.9632321} + inSlope: {x: 0.061548483, y: -0.023383968, z: -0.052445505, w: -0.013162506} + outSlope: {x: 0.061548483, y: -0.023383968, z: -0.052445505, w: -0.013162506} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7333335 + value: {x: 0.1291248, y: 0.17712004, z: -0.121458106, w: 0.96809256} + inSlope: {x: -0.4452552, y: 0.12354264, z: 0.3607421, w: 0.08326104} + outSlope: {x: -0.4452552, y: 0.12354264, z: 0.3607421, w: 0.08326104} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.8000001 + value: {x: 0.116614036, y: 0.18041928, z: -0.11133415, w: 0.97028595} + inSlope: {x: 0.23671992, y: -0.06334512, z: -0.19215107, w: -0.041730743} + outSlope: {x: 0.23671992, y: -0.06334512, z: -0.19215107, w: -0.041730743} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9000001 + value: {x: 0.16006522, y: 0.16716088, z: -0.14694183, w: 0.96168834} + inSlope: {x: 0.2284207, y: -0.08356341, z: -0.19138542, w: -0.051270474} + outSlope: {x: 0.2284207, y: -0.08356341, z: -0.19138542, w: -0.051270474} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.16242449, y: 0.16624865, z: -0.14892763, w: 0.9611453} + inSlope: {x: 0.018452276, y: -0.0071447412, z: -0.015575156, w: -0.004297797} + outSlope: {x: 0.018452276, y: -0.0071447412, z: -0.015575156, w: -0.004297797} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.3666668 + value: {x: 0.14570329, y: 0.1727725, z: -0.1346044, w: 0.96478075} + inSlope: {x: 0.004832451, y: -0.001490639, z: -0.003859703, w: -0.0010058293} + outSlope: {x: 0.004832451, y: -0.001490639, z: -0.003859703, w: -0.0010058293} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.6000001 + value: {x: 0.1429422, y: 0.17334627, z: -0.13253331, w: 0.9653774} + inSlope: {x: 0.06575173, y: -0.016331539, z: -0.051119603, w: -0.013808919} + outSlope: {x: 0.06575173, y: -0.016331539, z: -0.051119603, w: -0.013808919} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.9333334 + value: {x: 0.14641602, y: 0.17248677, z: -0.13522415, w: 0.96463734} + inSlope: {x: -0.025806898, y: 0.010192404, z: 0.022895359, w: 0.005326872} + outSlope: {x: -0.025806898, y: 0.010192404, z: 0.022895359, w: 0.005326872} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.24194981, y: -0.038547777, z: 0.01358458, w: 0.9694276} + inSlope: {x: -0.1489587, y: 0.14043252, z: 0.056504056, w: -0.033178926} + outSlope: {x: -0.1489587, y: 0.14043252, z: 0.056504056, w: -0.033178926} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.24398792, y: -0.037133515, z: 0.014548375, w: 0.9689579} + inSlope: {x: 0.063205145, y: -0.041340165, z: -0.027394492, w: 0.014639498} + outSlope: {x: 0.063205145, y: -0.041340165, z: -0.027394492, w: 0.014639498} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: -0.2470239, y: -0.033082597, z: 0.015894204, w: 0.96831405} + inSlope: {x: -0.43065155, y: 0.3060449, z: 0.14512049, w: -0.10365304} + outSlope: {x: -0.43065155, y: 0.3060449, z: 0.14512049, w: -0.10365304} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: -0.26471502, y: -0.017764151, z: 0.022591779, w: 0.96389836} + inSlope: {x: 0.37326327, y: -0.13468361, z: -0.080159724, w: 0.094998576} + outSlope: {x: 0.37326327, y: -0.13468361, z: -0.080159724, w: 0.094998576} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5666667 + value: {x: -0.17464204, y: -0.06306081, z: -0.0033043227, w: 0.982605} + inSlope: {x: 0.50663596, y: -0.22811085, z: -0.15077284, w: 0.08161869} + outSlope: {x: 0.50663596, y: -0.22811085, z: -0.15077284, w: 0.08161869} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.16854684, y: -0.06330598, z: -0.0043574427, w: 0.983649} + inSlope: {x: -0.01925668, y: 0.020429512, z: 0.012689495, w: -0.0019231397} + outSlope: {x: -0.01925668, y: 0.020429512, z: 0.012689495, w: -0.0019231397} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000001 + value: {x: -0.2237232, y: -0.043954447, z: 0.009267107, w: 0.973617} + inSlope: {x: -1.086673, y: 0.60401404, z: 0.34090167, w: -0.23797818} + outSlope: {x: -1.086673, y: 0.60401404, z: 0.34090167, w: -0.23797818} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.90000004 + value: {x: -0.30644032, y: 0.015649773, z: 0.03671755, w: 0.9510527} + inSlope: {x: 0.5392035, y: -0.2579605, z: -0.12975319, w: 0.16464545} + outSlope: {x: 0.5392035, y: -0.2579605, z: -0.12975319, w: 0.16464545} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9333334 + value: {x: -0.26644352, y: -0.0071248934, z: 0.026409237, w: 0.9634623} + inSlope: {x: 1.467299, y: -0.889819, z: -0.44065017, w: 0.3891126} + outSlope: {x: 1.467299, y: -0.889819, z: -0.44065017, w: 0.3891126} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9666667 + value: {x: -0.20862041, y: -0.043671478, z: 0.007340879, w: 0.97699356} + inSlope: {x: 1.339184, y: -0.82254153, z: -0.44767195, w: 0.2814087} + outSlope: {x: 1.339184, y: -0.82254153, z: -0.44767195, w: 0.2814087} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.17716467, y: -0.061960943, z: -0.0034355335, w: 0.98222286} + inSlope: {x: 0.20082107, y: -0.17451409, z: -0.08539485, w: 0.033021763} + outSlope: {x: 0.20082107, y: -0.17451409, z: -0.08539485, w: 0.033021763} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.23764907, y: -0.033586845, z: 0.014716144, w: 0.97065866} + inSlope: {x: -1.0457035, y: 0.5244338, z: 0.30295965, w: -0.230908} + outSlope: {x: -1.0457035, y: 0.5244338, z: 0.30295965, w: -0.230908} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.26494592, y: -0.020343497, z: 0.021845205, w: 0.96380115} + inSlope: {x: -0.33466005, y: 0.1380311, z: 0.07562522, w: -0.08324072} + outSlope: {x: -0.33466005, y: 0.1380311, z: 0.07562522, w: -0.08324072} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2 + value: {x: -0.22673701, y: -0.04401656, z: 0.008985728, w: 0.9729194} + inSlope: {x: 0.0045944005, y: 0.008802794, z: 0.00057069585, w: 0.0014555454} + outSlope: {x: 0.0045944005, y: 0.008802794, z: 0.00057069585, w: 0.0014555454} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3000001 + value: {x: -0.25817657, y: -0.022528842, z: 0.020127188, w: 0.96562535} + inSlope: {x: 0.3211754, y: -0.14274323, z: -0.07248857, w: 0.07837959} + outSlope: {x: 0.3211754, y: -0.14274323, z: -0.07248857, w: 0.07837959} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4000001 + value: {x: -0.19833922, y: -0.0552864, z: 0.0028923634, w: 0.9785687} + inSlope: {x: -0.13829215, y: 0.03449469, z: 0.03075711, w: -0.028407302} + outSlope: {x: -0.13829215, y: 0.03449469, z: 0.03075711, w: -0.028407302} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5000001 + value: {x: -0.25587645, y: -0.029022185, z: 0.018425927, w: 0.96609807} + inSlope: {x: -0.22436173, y: 0.108680755, z: 0.062446896, w: -0.055060245} + outSlope: {x: -0.22436173, y: 0.108680755, z: 0.062446896, w: -0.055060245} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6333334 + value: {x: -0.24861461, y: -0.03217098, z: 0.016587077, w: 0.967926} + inSlope: {x: -0.16342625, y: 0.09128943, z: 0.04847906, w: -0.040343143} + outSlope: {x: -0.16342625, y: 0.09128943, z: 0.04847906, w: -0.040343143} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7333335 + value: {x: -0.24353921, y: -0.036051884, z: 0.01596223, w: 0.9690893} + inSlope: {x: 0.8187297, y: -0.3438024, z: -0.19836594, w: 0.18435714} + outSlope: {x: 0.8187297, y: -0.3438024, z: -0.19836594, w: 0.18435714} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.8000001 + value: {x: -0.16112107, y: -0.067419045, z: -0.0056059766, w: 0.98461324} + inSlope: {x: 0.9498782, y: -0.3281174, z: -0.2622267, w: 0.14619127} + outSlope: {x: 0.9498782, y: -0.3281174, z: -0.2622267, w: 0.14619127} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.8666668 + value: {x: -0.1636682, y: -0.06543888, z: -0.0059296032, w: 0.9843248} + inSlope: {x: -1.0403734, y: 0.40719616, z: 0.2731271, w: -0.16159773} + outSlope: {x: -1.0403734, y: 0.40719616, z: 0.2731271, w: -0.16159773} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9333334 + value: {x: -0.2534812, y: -0.027847698, z: 0.018314749, w: 0.96676594} + inSlope: {x: -0.9248329, y: 0.4358043, z: 0.2524336, w: -0.22070462} + outSlope: {x: -0.9248329, y: 0.4358043, z: 0.2524336, w: -0.22070462} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.0666668 + value: {x: -0.25791395, y: -0.023314912, z: 0.020313676, w: 0.9656729} + inSlope: {x: 0.10404344, y: -0.10354275, z: -0.04515671, w: 0.026867712} + outSlope: {x: 0.10404344, y: -0.10354275, z: -0.04515671, w: 0.026867712} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.27803305, y: -0.010735482, z: 0.027133422, w: 0.9601282} + inSlope: {x: -0.20045194, y: 0.13901697, z: 0.069119446, w: -0.056614336} + outSlope: {x: -0.20045194, y: 0.13901697, z: 0.069119446, w: -0.056614336} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.2333333 + value: {x: -0.26132566, y: -0.020905564, z: 0.022013979, w: 0.9647732} + inSlope: {x: 0.72679365, y: -0.43815774, z: -0.23095724, w: 0.18580496} + outSlope: {x: 0.72679365, y: -0.43815774, z: -0.23095724, w: 0.18580496} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.3000002 + value: {x: -0.20663965, y: -0.052079625, z: 0.0044108867, w: 0.97702014} + inSlope: {x: 0.47605768, y: -0.23744099, z: -0.1429131, w: 0.09472141} + outSlope: {x: 0.47605768, y: -0.23744099, z: -0.1429131, w: 0.09472141} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.4333334 + value: {x: -0.22096321, y: -0.046678744, z: 0.008343962, w: 0.9741287} + inSlope: {x: -0.14061092, y: 0.044142887, z: 0.03413272, w: -0.029793112} + outSlope: {x: -0.14061092, y: 0.044142887, z: 0.03413272, w: -0.029793112} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.6333334 + value: {x: -0.22581801, y: -0.04497006, z: 0.009486194, w: 0.97308475} + inSlope: {x: -0.2116893, y: 0.08289783, z: 0.05241535, w: -0.045994565} + outSlope: {x: -0.2116893, y: 0.08289783, z: 0.05241535, w: -0.045994565} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.9333334 + value: {x: -0.24194981, y: -0.038547825, z: 0.01358455, w: 0.9694276} + inSlope: {x: -0.0011001538, y: -0.0039620735, z: -0.00032463143, w: -0.0004273657} + outSlope: {x: -0.0011001538, y: -0.0039620735, z: -0.00032463143, w: -0.0004273657} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2/mixamorig:RightHandThumb3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.020066883, y: -0.04093232, z: -0.0145045025, w: 0.9988551} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.020066883, y: -0.04093232, z: -0.0145045025, w: 0.9988551} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2/mixamorig:RightHandThumb3/mixamorig:RightHandThumb4 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.100933835, y: -0.047006316, z: 0.07284366, w: 0.9911088} + inSlope: {x: 0.04457451, y: -0.012314691, z: 0.024092717, w: -0.0069415565} + outSlope: {x: 0.04457451, y: -0.012314691, z: 0.024092717, w: -0.0069415565} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: 0.096405275, y: -0.045750994, z: 0.07101032, w: 0.9917512} + inSlope: {x: 0.12951526, y: -0.022224221, z: 0.019662376, w: -0.0150570255} + outSlope: {x: 0.12951526, y: -0.022224221, z: 0.019662376, w: -0.0150570255} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.120535135, y: -0.047609862, z: 0.06915162, w: 0.9891525} + inSlope: {x: 0.29018474, y: -0.028498698, z: -0.0092566395, w: -0.035825375} + outSlope: {x: 0.29018474, y: -0.028498698, z: -0.0092566395, w: -0.035825375} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.12565947, y: -0.049680725, z: 0.07288653, w: 0.9881443} + inSlope: {x: -0.2328185, y: 0.0019038767, z: 0.061547045, w: 0.02424717} + outSlope: {x: -0.2328185, y: 0.0019038767, z: 0.061547045, w: 0.02424717} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: 0.1155903, y: -0.04571835, z: 0.066025615, w: 0.99004513} + inSlope: {x: 0.41596013, y: 0.10465242, z: -0.3438702, w: -0.027221773} + outSlope: {x: 0.41596013, y: 0.10465242, z: -0.3438702, w: -0.027221773} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: 0.16934204, y: -0.03925787, z: 0.04007411, w: 0.98395944} + inSlope: {x: 0.4427362, y: 0.019815251, z: -0.13227487, w: -0.06313289} + outSlope: {x: 0.4427362, y: 0.019815251, z: -0.13227487, w: -0.06313289} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6333334 + value: {x: 0.14165898, y: -0.045642313, z: 0.05934462, w: 0.98708045} + inSlope: {x: -0.019047663, y: -0.039035957, z: 0.08782263, w: -0.0037828404} + outSlope: {x: -0.019047663, y: -0.039035957, z: 0.08782263, w: -0.0037828404} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.16348097, y: -0.046165306, z: 0.05534964, w: 0.98391014} + inSlope: {x: -0.13461012, y: -0.018357811, z: 0.06732111, w: 0.0168979} + outSlope: {x: -0.13461012, y: -0.018357811, z: 0.06732111, w: 0.0168979} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.11542493, y: -0.04918297, z: 0.07467157, w: 0.98928374} + inSlope: {x: -0.8125385, y: -0.0043660947, z: 0.25569946, w: 0.07270217} + outSlope: {x: -0.8125385, y: -0.0043660947, z: 0.25569946, w: 0.07270217} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.90000004 + value: {x: 0.07032164, y: -0.047451507, z: 0.0842491, w: 0.99282694} + inSlope: {x: 0.097036466, y: 0.038833246, z: -0.13608262, w: 0.0039840024} + outSlope: {x: 0.097036466, y: 0.038833246, z: -0.13608262, w: 0.0039840024} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9666667 + value: {x: 0.13537453, y: -0.044672374, z: 0.058823776, w: 0.9880374} + inSlope: {x: 1.0023146, y: 0.030203212, z: -0.32806537, w: -0.10447304} + outSlope: {x: 1.0023146, y: 0.030203212, z: -0.32806537, w: -0.10447304} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.15843982, y: -0.044103485, z: 0.052118327, w: 0.9850053} + inSlope: {x: -0.014019966, y: -0.009422489, z: 0.025011174, w: -0.000025197864} + outSlope: {x: -0.014019966, y: -0.009422489, z: 0.025011174, w: -0.000025197864} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.08387046, y: -0.04633449, z: 0.07682938, w: 0.9924294} + inSlope: {x: -1.2492929, y: -0.015809402, z: 0.4052078, w: 0.08600421} + outSlope: {x: -1.2492929, y: -0.015809402, z: 0.4052078, w: 0.08600421} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.051153675, y: -0.046354502, z: 0.08750504, w: 0.99376935} + inSlope: {x: -0.38929504, y: -0.004993591, z: 0.1388688, w: 0.016168386} + outSlope: {x: -0.38929504, y: -0.004993591, z: 0.1388688, w: 0.016168386} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2 + value: {x: 0.10890654, y: -0.04783699, z: 0.07293366, w: 0.99021804} + inSlope: {x: 0.29864615, y: -0.014245561, z: -0.054218896, w: -0.025873508} + outSlope: {x: 0.29864615, y: -0.014245561, z: -0.054218896, w: -0.025873508} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3000001 + value: {x: 0.09060351, y: -0.045758184, z: 0.07291319, w: 0.9921597} + inSlope: {x: 0.17892386, y: 0.07474435, z: -0.23425564, w: 0.0017675776} + outSlope: {x: 0.17892386, y: 0.07474435, z: -0.23425564, w: 0.0017675776} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4000001 + value: {x: 0.117270246, y: -0.04097262, z: 0.05468763, w: 0.99074626} + inSlope: {x: -0.44243202, y: -0.05054287, z: 0.2303167, w: 0.03181818} + outSlope: {x: -0.44243202, y: -0.05054287, z: 0.2303167, w: 0.03181818} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4666667 + value: {x: 0.07056195, y: -0.04612967, z: 0.08013235, w: 0.99321294} + inSlope: {x: -0.37284324, y: -0.050306894, z: 0.24692933, w: 0.0089290915} + outSlope: {x: -0.37284324, y: -0.050306894, z: 0.24692933, w: 0.0089290915} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6000001 + value: {x: 0.090725474, y: -0.047422502, z: 0.07743661, w: 0.9917276} + inSlope: {x: -0.08023947, y: -0.0076437322, z: 0.048164245, w: 0.002769841} + outSlope: {x: -0.08023947, y: -0.0076437322, z: 0.048164245, w: 0.002769841} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7333335 + value: {x: 0.053569607, y: -0.04356633, z: 0.07779326, w: 0.99457556} + inSlope: {x: 0.18989849, y: 0.054903477, z: -0.21393737, w: 0.007021101} + outSlope: {x: 0.18989849, y: 0.054903477, z: -0.21393737, w: 0.007021101} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.10171492, y: -0.042978924, z: 0.06303352, w: 0.99188393} + inSlope: {x: 0.18512459, y: -0.055909287, z: 0.09142499, w: -0.026300848} + outSlope: {x: 0.18512459, y: -0.055909287, z: 0.09142499, w: -0.026300848} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9333334 + value: {x: 0.09736938, y: -0.049133204, z: 0.0802221, w: 0.9907924} + inSlope: {x: 0.09591031, y: -0.038889218, z: 0.080877334, w: -0.01803068} + outSlope: {x: 0.09591031, y: -0.038889218, z: 0.080877334, w: -0.01803068} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.1333334 + value: {x: 0.10267704, y: -0.0488389, z: 0.07764908, w: 0.9904761} + inSlope: {x: -0.33284658, y: 0.012863998, z: 0.06941642, w: 0.029112725} + outSlope: {x: -0.33284658, y: 0.012863998, z: 0.06941642, w: 0.029112725} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.2333333 + value: {x: 0.08670569, y: -0.047210522, z: 0.07812688, w: 0.9920431} + inSlope: {x: 0.24371484, y: 0.026515953, z: -0.14602317, w: -0.009749774} + outSlope: {x: 0.24371484, y: 0.026515953, z: -0.14602317, w: -0.009749774} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.114345685, y: -0.04502731, z: 0.06479557, w: 0.99030256} + inSlope: {x: 0.059072584, y: 0.0004064669, z: -0.015753075, w: -0.005599564} + outSlope: {x: 0.059072584, y: 0.0004064669, z: -0.015753075, w: -0.005599564} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.5333335 + value: {x: 0.0991778, y: -0.04529971, z: 0.06940206, w: 0.9916124} + inSlope: {x: 0.045437224, y: -0.003376625, z: -0.003916029, w: -0.0044703525} + outSlope: {x: 0.045437224, y: -0.003376625, z: -0.003916029, w: -0.0044703525} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.9 + value: {x: 0.10117465, y: -0.047108356, z: 0.07306788, w: 0.9910629} + inSlope: {x: 0.0056712013, y: 0.0010936719, z: -0.0049171643, w: -0.00016272085} + outSlope: {x: 0.0056712013, y: 0.0010936719, z: -0.0049171643, w: -0.00016272085} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.9333334 + value: {x: 0.100933805, y: -0.047006417, z: 0.07284367, w: 0.9911088} + inSlope: {x: -0.007225431, y: 0.0030581683, z: -0.006726316, w: 0.0013768686} + outSlope: {x: -0.007225431, y: 0.0030581683, z: -0.006726316, w: 0.0013768686} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.33596325, y: 0.0049202866, z: -0.039339058, w: 0.94104034} + inSlope: {x: 0.022386609, y: -0.000036656853, z: -0.002621859, w: -0.008111} + outSlope: {x: 0.022386609, y: -0.000036656853, z: -0.002621859, w: -0.008111} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: 0.33402336, y: 0.0049241944, z: -0.039112013, w: 0.9417401} + inSlope: {x: 0.0836031, y: -0.00015694412, z: -0.009789446, w: -0.030016594} + outSlope: {x: 0.0836031, y: -0.00015694412, z: -0.009789446, w: -0.030016594} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.36221737, y: 0.004868439, z: -0.042413246, w: 0.9311155} + inSlope: {x: 0.44988292, y: -0.000929106, z: -0.05267898, w: -0.17757565} + outSlope: {x: 0.44988292, y: -0.000929106, z: -0.05267898, w: -0.17757565} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.3795357, y: 0.0048318105, z: -0.04444115, w: 0.92409647} + inSlope: {x: -0.19009839, y: 0.00041328362, z: 0.022259034, w: 0.07867454} + outSlope: {x: -0.19009839, y: 0.00041328362, z: 0.022259034, w: 0.07867454} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.70000005 + value: {x: 0.3695766, y: 0.0048531713, z: -0.043274947, w: 0.9281794} + inSlope: {x: 0.045610953, y: -0.00009403096, z: -0.005339327, w: -0.018379387} + outSlope: {x: 0.045610953, y: -0.00009403096, z: -0.005339327, w: -0.018379387} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000001 + value: {x: 0.33927196, y: 0.0049143424, z: -0.03972648, w: 0.93983626} + inSlope: {x: -0.7368208, y: 0.0013995335, z: 0.0862764, w: 0.26763442} + outSlope: {x: -0.7368208, y: 0.0013995335, z: 0.0862764, w: 0.26763442} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.86666673 + value: {x: 0.2994028, y: 0.0049853246, z: -0.03505805, w: 0.9534695} + inSlope: {x: 0.043065935, y: -0.000074536714, z: -0.0050390773, w: -0.014439352} + outSlope: {x: 0.043065935, y: -0.000074536714, z: -0.0050390773, w: -0.014439352} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9666667 + value: {x: 0.386121, y: 0.0048174392, z: -0.04521225, w: 0.9213269} + inSlope: {x: 0.5254265, y: -0.0011117557, z: -0.061523397, w: -0.21299621} + outSlope: {x: 0.5254265, y: -0.0011117557, z: -0.061523397, w: -0.21299621} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0333334 + value: {x: 0.36062402, y: 0.0048717773, z: -0.0422267, w: 0.9317422} + inSlope: {x: -0.9074376, y: 0.0018477193, z: 0.10625469, w: 0.35344157} + outSlope: {x: -0.9074376, y: 0.0018477193, z: 0.10625469, w: 0.35344157} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.3165464, y: 0.0049561043, z: -0.037065607, w: 0.9478396} + inSlope: {x: 0.03520195, y: -0.000066243694, z: -0.004122697, w: -0.012446102} + outSlope: {x: 0.03520195, y: -0.000066243694, z: -0.004122697, w: -0.012446102} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2 + value: {x: 0.3604474, y: 0.004872084, z: -0.042206097, w: 0.93181145} + inSlope: {x: 0.053338014, y: -0.00010636644, z: -0.0062472615, w: -0.020415206} + outSlope: {x: 0.053338014, y: -0.00010636644, z: -0.0062472615, w: -0.020415206} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3000001 + value: {x: 0.34055904, y: 0.0049115825, z: -0.0398773, w: 0.93936425} + inSlope: {x: -0.017591286, y: 0.00003230529, z: 0.0020616706, w: 0.006535656} + outSlope: {x: -0.017591286, y: 0.00003230529, z: 0.0020616706, w: 0.006535656} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4000001 + value: {x: 0.3350216, y: 0.004922172, z: -0.039228804, w: 0.94138056} + inSlope: {x: -0.32467055, y: 0.00060672464, z: 0.03801912, w: 0.116199665} + outSlope: {x: -0.32467055, y: 0.00060672464, z: 0.03801912, w: 0.116199665} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5000001 + value: {x: 0.31172085, y: 0.004964442, z: -0.036500428, w: 0.94945943} + inSlope: {x: 0.032518744, y: -0.000057569865, z: -0.003808077, w: -0.010905891} + outSlope: {x: 0.032518744, y: -0.000057569865, z: -0.003808077, w: -0.010905891} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.31169194, y: 0.0049644927, z: -0.036497068, w: 0.94946903} + inSlope: {x: -0.14550194, y: 0.00025205105, z: 0.017036906, w: 0.04829769} + outSlope: {x: -0.14550194, y: 0.00025205105, z: 0.017036906, w: 0.04829769} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.8666668 + value: {x: 0.31826752, y: 0.0049527977, z: -0.037267063, w: 0.94725525} + inSlope: {x: 0.45533687, y: -0.0008151466, z: -0.053316243, w: -0.15592834} + outSlope: {x: 0.45533687, y: -0.0008151466, z: -0.053316243, w: -0.15592834} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9666668 + value: {x: 0.35033342, y: 0.004892349, z: -0.04102171, w: 0.9357135} + inSlope: {x: -0.007994704, y: 0.000015563179, z: 0.0009361915, w: 0.003000643} + outSlope: {x: -0.007994704, y: 0.000015563179, z: 0.0009361915, w: 0.003000643} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.2 + value: {x: 0.33029494, y: 0.004931004, z: -0.03867549, w: 0.9430722} + inSlope: {x: 0.16003102, y: -0.00030074996, z: -0.018738825, w: -0.057024714} + outSlope: {x: 0.16003102, y: -0.00030074996, z: -0.018738825, w: -0.057024714} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.6000001 + value: {x: 0.34482032, y: 0.004903406, z: -0.04037628, w: 0.9377871} + inSlope: {x: -0.017511712, y: 0.00003155091, z: 0.0020507742, w: 0.006507939} + outSlope: {x: -0.017511712, y: 0.00003155091, z: 0.0020507742, w: 0.006507939} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.33667132, y: 0.004919038, z: -0.039422188, w: 0.9407838} + inSlope: {x: -0.00056326436, y: 0.0000007334172, z: 0.000064373075, w: 0.00020474219} + outSlope: {x: -0.00056326436, y: 0.0000007334172, z: 0.000064373075, w: 0.00020474219} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.9333334 + value: {x: 0.3359916, y: 0.0049203844, z: -0.039342385, w: 0.9410301} + inSlope: {x: -0.009168693, y: 0.000020577592, z: 0.0010706495, w: 0.0033187899} + outSlope: {x: -0.009168693, y: 0.000020577592, z: 0.0010706495, w: 0.0033187899} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.23673365, y: -0.000000041010313, z: -0.026465926, w: 0.97121406} + inSlope: {x: 0.0693132, y: 0.0000004385692, z: -0.007747728, w: -0.017194748} + outSlope: {x: 0.0693132, y: 0.0000004385692, z: -0.007747728, w: -0.017194748} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: 0.23123576, y: -0.000000019868347, z: -0.025851374, w: 0.97255427} + inSlope: {x: 0.01588156, y: 0.0000018680555, z: -0.001776067, w: -0.0038436002} + outSlope: {x: 0.01588156, y: 0.0000018680555, z: -0.001776067, w: -0.0038436002} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5666667 + value: {x: 0.26115364, y: 0.000000068565875, z: -0.029196104, w: 0.9648556} + inSlope: {x: -0.05122755, y: -0.0000009600188, z: 0.0057266885, w: 0.0139528625} + outSlope: {x: -0.05122755, y: -0.0000009600188, z: 0.0057266885, w: 0.0139528625} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7666667 + value: {x: 0.24650593, y: -0.000000051020983, z: -0.02755847, w: 0.9687494} + inSlope: {x: -0.009927294, y: -0.000003712435, z: 0.0011114115, w: 0.0025507787} + outSlope: {x: -0.009927294, y: -0.000003712435, z: 0.0011114115, w: 0.0025507787} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.90000004 + value: {x: 0.2485887, y: -0.00000006090295, z: -0.027791284, w: 0.9682104} + inSlope: {x: 0.22417854, y: 0.000001026237, z: -0.02506046, w: -0.05878239} + outSlope: {x: 0.22417854, y: 0.000001026237, z: -0.02506046, w: -0.05878239} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.26312748, y: 0.00000004005593, z: -0.02941674, w: 0.9643125} + inSlope: {x: -0.1485619, y: 0.0000017497314, z: 0.01661044, w: 0.040487863} + outSlope: {x: -0.1485619, y: 0.0000017497314, z: 0.01661044, w: 0.040487863} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1333334 + value: {x: 0.24319248, y: 0.00000009762581, z: -0.02718804, w: 0.969597} + inSlope: {x: 0.024792114, y: -0.00000298538, z: -0.0027701082, w: -0.006310346} + outSlope: {x: 0.024792114, y: -0.00000298538, z: -0.0027701082, w: -0.006310346} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.24032648, y: 0.000000116107024, z: -0.0268676, w: 0.9703202} + inSlope: {x: 0.08526371, y: -0.00000029135526, z: -0.009532748, w: -0.021361133} + outSlope: {x: 0.08526371, y: -0.00000029135526, z: -0.009532748, w: -0.021361133} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9333334 + value: {x: 0.23972283, y: 0.00000011238616, z: -0.02680021, w: 0.9704714} + inSlope: {x: 0.016266935, y: 0.000003245144, z: -0.0018212487, w: -0.0040608663} + outSlope: {x: 0.016266935, y: 0.000003245144, z: -0.0018212487, w: -0.0040608663} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.23722567, y: -0.000000016206016, z: -0.026520977, w: 0.9710925} + inSlope: {x: 0.0058360454, y: -0.0000017476041, z: -0.0006523362, w: -0.0014421358} + outSlope: {x: 0.0058360454, y: -0.0000017476041, z: -0.0006523362, w: -0.0014421358} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.9333334 + value: {x: 0.23673368, y: -0.000000049998608, z: -0.026466006, w: 0.97121406} + inSlope: {x: -0.01237483, y: 0.0000018258436, z: 0.0013845799, w: 0.0030577213} + outSlope: {x: -0.01237483, y: 0.0000018258436, z: 0.0013845799, w: 0.0030577213} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2/mixamorig:RightHandIndex3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.044488687, y: 0.00000003669162, z: -0.00000010723824, w: 0.9990099} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.044488687, y: 0.00000003669162, z: -0.00000010723824, w: 0.9990099} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2/mixamorig:RightHandIndex3/mixamorig:RightHandIndex4 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.20834014, y: -0.048029687, z: 0.02956767, w: 0.97642887} + inSlope: {x: 0.09604498, y: -0.031840727, z: 0.048506908, w: -0.023753641} + outSlope: {x: 0.09604498, y: -0.031840727, z: 0.048506908, w: -0.023753641} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.19183356, y: -0.046079718, z: 0.028398812, w: 0.97993374} + inSlope: {x: 0.09457578, y: -0.010705307, z: 0.006206545, w: -0.019460313} + outSlope: {x: 0.09457578, y: -0.010705307, z: 0.006206545, w: -0.019460313} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.22340862, y: -0.046787005, z: 0.024310295, w: 0.9732978} + inSlope: {x: 0.2813841, y: -0.0009647012, z: -0.0479092, w: -0.063411005} + outSlope: {x: 0.2813841, y: -0.0009647012, z: -0.0479092, w: -0.063411005} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: 0.22051902, y: -0.051400725, z: 0.03419759, w: 0.9734269} + inSlope: {x: -0.4597253, y: 0.0052776374, z: 0.0764785, w: 0.100716956} + outSlope: {x: -0.4597253, y: 0.0052776374, z: 0.0764785, w: 0.100716956} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: 0.18748342, y: -0.03867775, z: 0.012867052, w: 0.98142165} + inSlope: {x: -0.061696343, y: 0.06547127, z: -0.13397959, w: 0.017200993} + outSlope: {x: -0.061696343, y: 0.06547127, z: -0.13397959, w: 0.017200993} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6333334 + value: {x: 0.20188217, y: -0.05135006, z: 0.03785622, w: 0.9773299} + inSlope: {x: 0.41130656, y: -0.13680753, z: 0.21065861, w: -0.100051776} + outSlope: {x: 0.41130656, y: -0.13680753, z: 0.21065861, w: -0.100051776} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.23127003, y: -0.049943533, z: 0.0291847, w: 0.9711684} + inSlope: {x: 0.03998619, y: 0.08225917, z: -0.17109409, w: 0.00006972952} + outSlope: {x: 0.03998619, y: 0.08225917, z: -0.17109409, w: 0.00006972952} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.22001323, y: -0.048791535, z: 0.028989172, w: 0.9738446} + inSlope: {x: -0.3957422, y: -0.0833451, z: 0.2478778, w: 0.075479135} + outSlope: {x: -0.3957422, y: -0.0833451, z: 0.2478778, w: 0.075479135} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9333334 + value: {x: 0.19873923, y: -0.054727916, z: 0.04585552, w: 0.9774481} + inSlope: {x: 0.43277487, y: 0.0525382, z: -0.20505881, w: -0.07960353} + outSlope: {x: 0.43277487, y: 0.0525382, z: -0.20505881, w: -0.07960353} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.23197083, y: -0.048047364, z: 0.025313146, w: 0.9712056} + inSlope: {x: -0.014386028, y: 0.056626163, z: -0.11305115, w: 0.009699613} + outSlope: {x: -0.014386028, y: 0.056626163, z: -0.11305115, w: 0.009699613} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.17384201, y: -0.05247922, z: 0.046479035, w: 0.98227525} + inSlope: {x: -0.18583307, y: -0.047562663, z: 0.14656858, w: 0.026298247} + outSlope: {x: -0.18583307, y: -0.047562663, z: 0.14656858, w: 0.026298247} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2 + value: {x: 0.21500781, y: -0.052560207, z: 0.037700374, w: 0.97446793} + inSlope: {x: 0.27463502, y: -0.0078317225, z: -0.042461533, w: -0.057194587} + outSlope: {x: 0.27463502, y: -0.0078317225, z: -0.042461533, w: -0.057194587} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.18541163, y: -0.04696497, z: 0.03152334, w: 0.98103166} + inSlope: {x: -0.13906008, y: 0.13921559, z: -0.28148282, w: 0.04241377} + outSlope: {x: -0.13906008, y: 0.13921559, z: -0.28148282, w: 0.04241377} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4333334 + value: {x: 0.19016162, y: -0.045056988, z: 0.02644537, w: 0.98036176} + inSlope: {x: 0.14725208, y: -0.10674091, z: 0.20787816, w: -0.03936235} + outSlope: {x: 0.14725208, y: -0.10674091, z: 0.20787816, w: -0.03936235} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.21678881, y: -0.047542635, z: 0.02701617, w: 0.97468585} + inSlope: {x: 0.086028084, y: 0.017659357, z: -0.052365135, w: -0.016534926} + outSlope: {x: 0.086028084, y: 0.017659357, z: -0.052365135, w: -0.016534926} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7 + value: {x: 0.18756866, y: -0.048530456, z: 0.034588855, w: 0.9804419} + inSlope: {x: -0.40085816, y: 0.07668194, z: -0.09422889, w: 0.0841918} + outSlope: {x: -0.40085816, y: 0.07668194, z: -0.09422889, w: 0.0841918} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.19383676, y: -0.039692562, z: 0.014182171, w: 0.98012793} + inSlope: {x: 0.3424836, y: -0.1060315, z: 0.17711176, w: -0.07553987} + outSlope: {x: 0.3424836, y: -0.1060315, z: 0.17711176, w: -0.07553987} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9666668 + value: {x: 0.23923081, y: -0.057741325, z: 0.04286807, w: 0.9682959} + inSlope: {x: 0.18027514, y: -0.002628643, z: -0.03429721, w: -0.042639025} + outSlope: {x: 0.18027514, y: -0.002628643, z: -0.03429721, w: -0.042639025} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.1333334 + value: {x: 0.22612165, y: -0.051056933, z: 0.032394405, w: 0.97222054} + inSlope: {x: -0.19948232, y: -0.032129765, z: 0.104255885, w: 0.0410584} + outSlope: {x: -0.19948232, y: -0.032129765, z: 0.104255885, w: 0.0410584} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.266667 + value: {x: 0.20923468, y: -0.048223965, z: 0.029805535, w: 0.9762207} + inSlope: {x: -0.09782621, y: 0.099720724, z: -0.19067629, w: 0.031799294} + outSlope: {x: -0.09782621, y: 0.099720724, z: -0.19067629, w: 0.031799294} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.4666667 + value: {x: 0.19382562, y: -0.0467599, z: 0.029522575, w: 0.97947615} + inSlope: {x: -0.19707888, y: 0.010943827, z: 0.012111923, w: 0.03928712} + outSlope: {x: -0.19707888, y: 0.010943827, z: 0.012111923, w: 0.03928712} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.7333336 + value: {x: 0.2086472, y: -0.04855402, z: 0.03061, w: 0.97630525} + inSlope: {x: 0.015083316, y: 0.0012065542, z: -0.005367239, w: -0.002988856} + outSlope: {x: 0.015083316, y: 0.0012065542, z: -0.005367239, w: -0.002988856} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.9333334 + value: {x: 0.20834005, y: -0.048029672, z: 0.029567473, w: 0.97642887} + inSlope: {x: -0.005921876, y: 0.0014628111, z: -0.0019701961, w: 0.00139475} + outSlope: {x: -0.005921876, y: 0.0014628111, z: -0.0019701961, w: 0.00139475} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.2974451, y: 0.012958915, z: -0.036675718, w: 0.95394623} + inSlope: {x: -0.02913147, y: 0.00014411284, z: 0.003635287, w: 0.00920534} + outSlope: {x: -0.02913147, y: 0.00014411284, z: 0.003635287, w: 0.00920534} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: 0.30268997, y: 0.012933802, z: -0.03733085, w: 0.9522699} + inSlope: {x: 0.016801814, y: -0.000082645616, z: -0.0020992768, w: -0.0053983964} + outSlope: {x: 0.016801814, y: -0.000082645616, z: -0.0020992768, w: -0.0053983964} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.3085121, y: 0.012904809, z: -0.038057804, w: 0.95037115} + inSlope: {x: 0.2710649, y: -0.0013574491, z: -0.033854224, w: -0.089772634} + outSlope: {x: 0.2710649, y: -0.0013574491, z: -0.033854224, w: -0.089772634} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.32188624, y: 0.012836982, z: -0.039728276, w: 0.9458574} + inSlope: {x: -0.116250485, y: 0.0005984258, z: 0.014519185, w: 0.039952386} + outSlope: {x: -0.116250485, y: 0.0005984258, z: 0.014519185, w: 0.039952386} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.31639808, y: 0.012865222, z: -0.039042823, w: 0.9477354} + inSlope: {x: 0.046931967, y: -0.0002390799, z: -0.005862249, w: -0.015874213} + outSlope: {x: 0.046931967, y: -0.0002390799, z: -0.005862249, w: -0.015874213} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.3037214, y: 0.012928712, z: -0.03745962, w: 0.9519364} + inSlope: {x: -0.3355497, y: 0.0016350299, z: 0.041905828, w: 0.10831475} + outSlope: {x: -0.3355497, y: 0.0016350299, z: 0.041905828, w: 0.10831475} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9333334 + value: {x: 0.30565277, y: 0.012919124, z: -0.037700616, w: 0.95130867} + inSlope: {x: 0.5909927, y: -0.0029510176, z: -0.07381424, w: -0.19551164} + outSlope: {x: 0.5909927, y: -0.0029510176, z: -0.07381424, w: -0.19551164} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.3409327, y: 0.012735155, z: -0.04210731, w: 0.9390579} + inSlope: {x: 0.03695421, y: -0.00019632105, z: -0.004616091, w: -0.013148379} + outSlope: {x: 0.03695421, y: -0.00019632105, z: -0.004616091, w: -0.013148379} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.29676744, y: 0.012962289, z: -0.036591154, w: 0.95416045} + inSlope: {x: -0.22909167, y: 0.0011205077, z: 0.02861014, w: 0.074171185} + outSlope: {x: -0.22909167, y: 0.0011205077, z: 0.02861014, w: 0.074171185} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2333333 + value: {x: 0.30745262, y: 0.012910362, z: -0.037925478, w: 0.9507197} + inSlope: {x: -0.0821179, y: 0.00040611636, z: 0.010256132, w: 0.026782697} + outSlope: {x: -0.0821179, y: 0.00040611636, z: 0.010256132, w: 0.026782697} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3666668 + value: {x: 0.3020088, y: 0.012937113, z: -0.03724567, w: 0.9524894} + inSlope: {x: 0.024180936, y: -0.00011523685, z: -0.00301932, w: -0.007756031} + outSlope: {x: 0.024180936, y: -0.00011523685, z: -0.00301932, w: -0.007756031} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333334 + value: {x: 0.30044892, y: 0.012944624, z: -0.037050873, w: 0.9529901} + inSlope: {x: 0.08840837, y: -0.00042721204, z: -0.011041715, w: -0.028322365} + outSlope: {x: 0.08840837, y: -0.00042721204, z: -0.011041715, w: -0.028322365} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7 + value: {x: 0.292436, y: 0.01298288, z: -0.03605011, w: 0.9555172} + inSlope: {x: -0.18726948, y: 0.00088515633, z: 0.023388345, w: 0.058323704} + outSlope: {x: -0.18726948, y: 0.00088515633, z: 0.023388345, w: 0.058323704} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.0333335 + value: {x: 0.3094557, y: 0.012900308, z: -0.038175784, w: 0.9500597} + inSlope: {x: 0.0022186239, y: -0.000009457536, z: -0.000277775, w: -0.0007331338} + outSlope: {x: 0.0022186239, y: -0.000009457536, z: -0.000277775, w: -0.0007331338} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.266667 + value: {x: 0.30491152, y: 0.012922836, z: -0.037608184, w: 0.9515501} + inSlope: {x: 0.023721311, y: -0.00011769518, z: -0.0029624817, w: -0.0076952106} + outSlope: {x: 0.023721311, y: -0.00011769518, z: -0.0029624817, w: -0.0076952106} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.4666667 + value: {x: 0.30445853, y: 0.0129251, z: -0.037551627, w: 0.95169735} + inSlope: {x: -0.05673781, y: 0.00027587492, z: 0.007086359, w: 0.018331908} + outSlope: {x: -0.05673781, y: 0.00027587492, z: 0.007086359, w: 0.018331908} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.6333334 + value: {x: 0.2951643, y: 0.012969986, z: -0.036390968, w: 0.9546652} + inSlope: {x: 0.05743554, y: -0.0002738091, z: -0.0071710045, w: -0.018028932} + outSlope: {x: 0.05743554, y: -0.0002738091, z: -0.0071710045, w: -0.018028932} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.9333334 + value: {x: 0.29744518, y: 0.01295919, z: -0.036675636, w: 0.9539462} + inSlope: {x: 0.0008699306, y: 0.000001788141, z: -0.00010516505, w: -0.00027537372} + outSlope: {x: 0.0008699306, y: 0.000001788141, z: -0.00010516505, w: -0.00027537372} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.24093457, y: -0.0029466646, z: -0.027853489, w: 0.9701371} + inSlope: {x: 0.050261017, y: 0.000016763806, z: -0.005710255, w: -0.012692212} + outSlope: {x: 0.050261017, y: 0.000016763806, z: -0.005710255, w: -0.012692212} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.23788106, y: -0.002947465, z: -0.027506288, w: 0.9709003} + inSlope: {x: 0.054541152, y: 0.000016166594, z: -0.006200792, w: -0.013613104} + outSlope: {x: 0.054541152, y: 0.000016166594, z: -0.006200792, w: -0.013613104} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6333334 + value: {x: 0.24853815, y: -0.0029443654, z: -0.028717794, w: 0.9681918} + inSlope: {x: -0.10206521, y: -0.000030845404, z: 0.011603712, w: 0.026545823} + outSlope: {x: -0.10206521, y: -0.000030845404, z: 0.011603712, w: 0.026545823} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.86666673 + value: {x: 0.2510691, y: -0.002943513, z: -0.029005509, w: 0.96753} + inSlope: {x: 0.14208978, y: 0.000046617348, z: -0.016153492, w: -0.037275553} + outSlope: {x: 0.14208978, y: 0.000046617348, z: -0.016153492, w: -0.037275553} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.24865551, y: -0.0029444317, z: -0.028731095, w: 0.96816134} + inSlope: {x: -0.019771699, y: -0.0000047567346, z: 0.0022512136, w: 0.0051301764} + outSlope: {x: -0.019771699, y: -0.0000047567346, z: 0.0022512136, w: 0.0051301764} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666668 + value: {x: 0.24676639, y: -0.0029450282, z: -0.02851636, w: 0.9686509} + inSlope: {x: 0.05937216, y: 0.000019774281, z: -0.0067508286, w: -0.015258167} + outSlope: {x: 0.05937216, y: 0.000019774281, z: -0.0067508286, w: -0.015258167} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4666667 + value: {x: 0.24281771, y: -0.0029461402, z: -0.028067494, w: 0.96966136} + inSlope: {x: 0.014917346, y: 0.0000060524335, z: -0.0016972536, w: -0.0037747663} + outSlope: {x: 0.014917346, y: 0.0000060524335, z: -0.0016972536, w: -0.0037747663} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7 + value: {x: 0.24667668, y: -0.0029449356, z: -0.028506177, w: 0.968674} + inSlope: {x: 0.030078763, y: 0.000011060625, z: -0.003419819, w: -0.0077301324} + outSlope: {x: 0.030078763, y: 0.000011060625, z: -0.003419819, w: -0.0077301324} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9333334 + value: {x: 0.24374454, y: -0.002945846, z: -0.028172862, w: 0.96942574} + inSlope: {x: 0.026106376, y: 0.000006600747, z: -0.0029651248, w: -0.0066447225} + outSlope: {x: 0.026106376, y: 0.000006600747, z: -0.0029651248, w: -0.0066447225} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.2 + value: {x: 0.24789129, y: -0.0029445696, z: -0.028644223, w: 0.9683598} + inSlope: {x: -0.002666342, y: -0.0000022980407, z: 0.00030350895, w: 0.00068843435} + outSlope: {x: -0.002666342, y: -0.0000022980407, z: 0.00030350895, w: 0.00068843435} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.5666668 + value: {x: 0.23542404, y: -0.0029481014, z: -0.02722695, w: 0.97150683} + inSlope: {x: 0.008450083, y: 0.000003321332, z: -0.0009606789, w: -0.0020831842} + outSlope: {x: 0.008450083, y: 0.000003321332, z: -0.0009606789, w: -0.0020831842} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.9333334 + value: {x: 0.24093458, y: -0.0029467968, z: -0.027853318, w: 0.9701371} + inSlope: {x: -0.0064860345, y: -0.000009953519, z: 0.00074006687, w: 0.0016325727} + outSlope: {x: -0.0064860345, y: -0.000009953519, z: 0.00074006687, w: 0.0016325727} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2/mixamorig:RightHandMiddle3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.010558602, y: 0.0028612704, z: 0.0028610982, w: 0.9999361} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.010558602, y: 0.0028612704, z: 0.0028610982, w: 0.9999361} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2/mixamorig:RightHandMiddle3/mixamorig:RightHandMiddle4 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.24478246, y: -0.10660615, z: -0.11638013, w: 0.95664644} + inSlope: {x: 0.20430161, y: -0.03526993, z: 0.06861806, w: -0.048732158} + outSlope: {x: 0.20430161, y: -0.03526993, z: 0.06861806, w: -0.048732158} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: 0.23973472, y: -0.104553975, z: -0.118007705, w: 0.9579509} + inSlope: {x: -0.09060031, y: -0.06990037, z: 0.077055156, w: 0.02457529} + outSlope: {x: -0.09060031, y: -0.06990037, z: 0.077055156, w: 0.02457529} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.22436705, y: -0.10587501, z: -0.116032444, w: 0.96176213} + inSlope: {x: -0.10118254, y: 0.008595811, z: -0.0072714696, w: 0.023971798} + outSlope: {x: -0.10118254, y: 0.008595811, z: -0.0072714696, w: 0.023971798} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: 0.24474499, y: -0.11279164, z: -0.10508708, w: 0.9572537} + inSlope: {x: 0.20520711, y: -0.095616736, z: 0.16282642, w: -0.0444451} + outSlope: {x: 0.20520711, y: -0.095616736, z: 0.16282642, w: -0.0444451} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.23099078, y: -0.115941904, z: -0.09928968, w: 0.96090704} + inSlope: {x: -0.48194224, y: -0.008047417, z: 0.017510256, w: 0.116224594} + outSlope: {x: -0.48194224, y: -0.008047417, z: 0.017510256, w: 0.116224594} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5666667 + value: {x: 0.21730745, y: -0.11801895, z: -0.095242895, w: 0.96424985} + inSlope: {x: 0.46770698, y: -0.10236889, z: 0.18323663, w: -0.106663495} + outSlope: {x: 0.46770698, y: -0.10236889, z: 0.18323663, w: -0.106663495} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.29161376, y: -0.12847698, z: -0.080052994, w: 0.9444822} + inSlope: {x: 0.059407666, y: 0.049774583, z: -0.08793369, w: -0.018613733} + outSlope: {x: 0.059407666, y: 0.049774583, z: -0.08793369, w: -0.018613733} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000001 + value: {x: 0.2223466, y: -0.109247096, z: -0.110978216, w: 0.9624505} + inSlope: {x: -0.17911573, y: 0.0982047, z: -0.17339718, w: 0.034233887} + outSlope: {x: -0.17911573, y: 0.0982047, z: -0.17339718, w: 0.034233887} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.90000004 + value: {x: 0.2531669, y: -0.11464962, z: -0.10176257, w: 0.95519966} + inSlope: {x: 0.48788875, y: -0.22203995, z: 0.3771447, w: -0.11603684} + outSlope: {x: 0.48788875, y: -0.22203995, z: 0.3771447, w: -0.11603684} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.26850405, y: -0.12462243, z: -0.084888116, w: 0.9514036} + inSlope: {x: -0.3591695, y: 0.16442195, z: -0.27104238, w: 0.09479358} + outSlope: {x: -0.3591695, y: 0.16442195, z: -0.27104238, w: 0.09479358} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.21681777, y: -0.11017399, z: -0.110506035, w: 0.9636598} + inSlope: {x: -0.1917133, y: -0.018240493, z: 0.03050849, w: 0.045757625} + outSlope: {x: -0.1917133, y: -0.018240493, z: 0.03050849, w: 0.045757625} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2333333 + value: {x: 0.24688599, y: -0.11404339, z: -0.10270161, w: 0.9568144} + inSlope: {x: 0.3138645, y: 0.002184331, z: -0.0072697955, w: -0.08125299} + outSlope: {x: 0.3138645, y: 0.002184331, z: -0.0072697955, w: -0.08125299} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.255102, y: -0.111271165, z: -0.107632905, w: 0.9544406} + inSlope: {x: -0.25641656, y: 0.102501705, z: -0.1509779, w: 0.062235203} + outSlope: {x: -0.25641656, y: 0.102501705, z: -0.1509779, w: 0.062235203} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4666667 + value: {x: 0.21052395, y: -0.102021284, z: -0.118301205, w: 0.9650265} + inSlope: {x: -0.19639283, y: -0.018902633, z: 0.039726958, w: 0.046078548} + outSlope: {x: -0.19639283, y: -0.018902633, z: 0.039726958, w: 0.046078548} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6333334 + value: {x: 0.21887209, y: -0.09949319, z: -0.12125775, w: 0.96306425} + inSlope: {x: 0.38377172, y: 0.020242875, z: -0.040107332, w: -0.09107539} + outSlope: {x: 0.38377172, y: 0.020242875, z: -0.040107332, w: -0.09107539} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7333335 + value: {x: 0.24692553, y: -0.08857824, z: -0.1332274, w: 0.95573646} + inSlope: {x: -0.071770936, y: 0.17352545, z: -0.16545013, w: 0.011360097} + outSlope: {x: -0.071770936, y: 0.17352545, z: -0.16545013, w: 0.011360097} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.22913888, y: -0.08979061, z: -0.13202287, w: 0.96020985} + inSlope: {x: -0.0024217516, y: -0.2789523, z: 0.29703233, w: 0.013729358} + outSlope: {x: -0.0024217516, y: -0.2789523, z: 0.29703233, w: 0.013729358} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9666668 + value: {x: 0.24620874, y: -0.119255684, z: -0.09337625, w: 0.9573088} + inSlope: {x: -0.03401362, y: 0.0012382157, z: 0.0034793578, w: 0.009152663} + outSlope: {x: -0.03401362, y: 0.0012382157, z: 0.0034793578, w: 0.009152663} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.1333334 + value: {x: 0.23428026, y: -0.110177025, z: -0.11005605, w: 0.9596153} + inSlope: {x: 0.11459793, y: 0.0013200948, z: -0.00048581697, w: -0.027996924} + outSlope: {x: 0.11459793, y: 0.0013200948, z: -0.00048581697, w: -0.027996924} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.266667 + value: {x: 0.23963746, y: -0.10817787, z: -0.11245123, w: 0.9582412} + inSlope: {x: -0.040007167, y: 0.085117, z: -0.12862724, w: 0.004553455} + outSlope: {x: -0.040007167, y: 0.085117, z: -0.12862724, w: 0.004553455} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.4333334 + value: {x: 0.24687672, y: -0.10907441, z: -0.111855134, w: 0.95636976} + inSlope: {x: -0.0588361, y: -0.026392402, z: 0.04632146, w: 0.017596202} + outSlope: {x: -0.0588361, y: -0.026392402, z: 0.04632146, w: 0.017596202} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.7333336 + value: {x: 0.24312527, y: -0.10754353, z: -0.114720434, w: 0.9571644} + inSlope: {x: -0.03555927, y: -0.0010497372, z: 0.0008873454, w: 0.009028286} + outSlope: {x: -0.03555927, y: -0.0010497372, z: 0.0008873454, w: 0.009028286} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.9333334 + value: {x: 0.24478228, y: -0.10660604, z: -0.11638024, w: 0.95664644} + inSlope: {x: -0.005273228, y: -0.0012584042, z: 0.0021272174, w: 0.0014680638} + outSlope: {x: -0.005273228, y: -0.0012584042, z: 0.0021272174, w: 0.0014680638} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.25477985, y: 0.00013827303, z: -0.028484669, w: 0.9665795} + inSlope: {x: -0.0972712, y: 0.0000055595588, z: 0.0108778095, w: 0.02578318} + outSlope: {x: -0.0972712, y: 0.0000055595588, z: 0.0108778095, w: 0.02578318} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: 0.25126296, y: 0.00013848057, z: -0.02809142, w: 0.9675111} + inSlope: {x: 0.0803992, y: -0.000002286251, z: -0.008988192, w: -0.0210911} + outSlope: {x: 0.0803992, y: -0.000002286251, z: -0.008988192, w: -0.0210911} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.27164537, y: 0.00013760172, z: -0.030370183, w: 0.9619181} + inSlope: {x: 0.25005567, y: -0.000012995444, z: -0.027956277, w: -0.07101507} + outSlope: {x: 0.25005567, y: -0.000012995444, z: -0.027956277, w: -0.07101507} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.2690638, y: 0.00013782235, z: -0.030081516, w: 0.96265244} + inSlope: {x: -0.55316305, y: 0.000022380984, z: 0.06184329, w: 0.15079913} + outSlope: {x: -0.55316305, y: 0.000022380984, z: 0.06184329, w: 0.15079913} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.19881856, y: 0.00014014551, z: -0.022228103, w: 0.97978425} + inSlope: {x: -0.07266132, y: 0.000004151886, z: 0.0081236595, w: 0.015707074} + outSlope: {x: -0.07266132, y: 0.000004151886, z: 0.0081236595, w: 0.015707074} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.21638845, y: 0.00013972026, z: -0.024192454, w: 0.9760076} + inSlope: {x: -0.11902182, y: 0.0000017761325, z: 0.013306653, w: 0.026243608} + outSlope: {x: -0.11902182, y: 0.0000017761325, z: 0.013306653, w: 0.026243608} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.70000005 + value: {x: 0.2131051, y: 0.00013980108, z: -0.023825312, w: 0.97673875} + inSlope: {x: 0.37861183, y: -0.00001279289, z: -0.042328015, w: -0.08568499} + outSlope: {x: 0.37861183, y: -0.00001279289, z: -0.042328015, w: -0.08568499} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.27368695, y: 0.00013768655, z: -0.03059838, w: 0.96133196} + inSlope: {x: -0.22493781, y: 0.000009748538, z: 0.025146767, w: 0.062112734} + outSlope: {x: -0.22493781, y: 0.000009748538, z: 0.025146767, w: 0.062112734} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9333334 + value: {x: 0.18783203, y: 0.00014059861, z: -0.020999707, w: 0.9819766} + inSlope: {x: -0.6383116, y: 0.000014477761, z: 0.071366146, w: 0.13162756} + outSlope: {x: -0.6383116, y: 0.000014477761, z: 0.071366146, w: 0.13162756} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.19865093, y: 0.00014012765, z: -0.022209315, w: 0.97981864} + inSlope: {x: 0.8364507, y: -0.00002333658, z: -0.093519375, w: -0.17848109} + outSlope: {x: 0.8364507, y: -0.00002333658, z: -0.093519375, w: -0.17848109} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.2602802, y: 0.00013821719, z: -0.029099535, w: 0.96509457} + inSlope: {x: 0.4837706, y: -0.000019397794, z: -0.054084588, w: -0.12658787} + outSlope: {x: 0.4837706, y: -0.000019397794, z: -0.054084588, w: -0.12658787} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.25209293, y: 0.00013840671, z: -0.028184107, w: 0.9672925} + inSlope: {x: -0.13218966, y: 0.000008088763, z: 0.014778455, w: 0.03524873} + outSlope: {x: -0.13218966, y: 0.000008088763, z: 0.014778455, w: 0.03524873} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666668 + value: {x: 0.2370047, y: 0.0001388672, z: -0.026497317, w: 0.9711471} + inSlope: {x: -0.35714823, y: 0.000012413724, z: 0.039930776, w: 0.08754457} + outSlope: {x: -0.35714823, y: 0.000012413724, z: 0.039930776, w: 0.08754457} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3666668 + value: {x: 0.22089921, y: 0.0001394919, z: -0.02469665, w: 0.97498393} + inSlope: {x: 0.2919788, y: -0.000014222818, z: -0.032644104, w: -0.06848842} + outSlope: {x: 0.2919788, y: -0.000014222818, z: -0.032644104, w: -0.06848842} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5000001 + value: {x: 0.27255425, y: 0.00013765089, z: -0.030471817, w: 0.96165776} + inSlope: {x: 0.19601601, y: -0.000009268981, z: -0.02191443, w: -0.05586587} + outSlope: {x: 0.19601601, y: -0.000009268981, z: -0.02191443, w: -0.05586587} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.2597084, y: 0.0001381541, z: -0.029035572, w: 0.9652505} + inSlope: {x: -0.29514563, y: 0.000015757338, z: 0.03299654, w: 0.08067466} + outSlope: {x: -0.29514563, y: 0.000015757338, z: 0.03299654, w: 0.08067466} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7666668 + value: {x: 0.25350687, y: 0.00013844718, z: -0.028342301, w: 0.9669183} + inSlope: {x: 0.13906038, y: -0.0000065010017, z: -0.015546713, w: -0.036894716} + outSlope: {x: 0.13906038, y: -0.0000065010017, z: -0.015546713, w: -0.036894716} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.8666668 + value: {x: 0.24816588, y: 0.00013848694, z: -0.027745122, w: 0.96832013} + inSlope: {x: -0.21281272, y: 0.0000080551345, z: 0.023792567, w: 0.055375043} + outSlope: {x: -0.21281272, y: 0.0000080551345, z: 0.023792567, w: 0.055375043} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.1333334 + value: {x: 0.2550131, y: 0.00013831962, z: -0.028510753, w: 0.9665172} + inSlope: {x: -0.16221277, y: 0.0000058031637, z: 0.018133398, w: 0.043057542} + outSlope: {x: -0.16221277, y: 0.0000058031637, z: 0.018133398, w: 0.043057542} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.266667 + value: {x: 0.24556144, y: 0.00013860791, z: -0.02745393, w: 0.9689922} + inSlope: {x: 0.145495, y: -0.000005042448, z: -0.016267423, w: -0.037430145} + outSlope: {x: 0.145495, y: -0.000005042448, z: -0.016267423, w: -0.037430145} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.5666668 + value: {x: 0.24813098, y: 0.00013855212, z: -0.027741222, w: 0.9683292} + inSlope: {x: 0.03527421, y: -0.000002190429, z: -0.0039435215, w: -0.009155283} + outSlope: {x: 0.03527421, y: -0.000002190429, z: -0.0039435215, w: -0.009155283} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.9333334 + value: {x: 0.2547799, y: 0.00013827304, z: -0.028484594, w: 0.96657944} + inSlope: {x: -0.007910736, y: 0.0000014943377, z: 0.000883174, w: 0.0021117947} + outSlope: {x: -0.007910736, y: 0.0000014943377, z: 0.000883174, w: 0.0021117947} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.20644864, y: -0.000000034912656, z: -0.023051219, w: 0.9781859} + inSlope: {x: -0.021714715, y: -0.0000005825409, z: 0.0024242138, w: 0.0046312804} + outSlope: {x: -0.021714715, y: -0.0000005825409, z: 0.0024242138, w: 0.0046312804} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.2134579, y: 0.000000043155662, z: -0.023833819, w: 0.9766615} + inSlope: {x: 0.10701568, y: 0.00000244393, z: -0.011949857, w: -0.023659768} + outSlope: {x: 0.10701568, y: 0.00000244393, z: -0.011949857, w: -0.023659768} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: 0.20689853, y: 0.000000038649265, z: -0.023101462, w: 0.97808963} + inSlope: {x: -0.2549308, y: 0.0000012644026, z: 0.028463157, w: 0.054510538} + outSlope: {x: -0.2549308, y: 0.0000012644026, z: 0.028463157, w: 0.054510538} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5666667 + value: {x: 0.20359167, y: -0.000000005821712, z: -0.02273222, w: 0.97879195} + inSlope: {x: 0.08700457, y: -0.00000006830393, z: -0.00971465, w: -0.018186264} + outSlope: {x: 0.08700457, y: -0.00000006830393, z: -0.00971465, w: -0.018186264} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7666667 + value: {x: 0.2090985, y: -0.00000012956515, z: -0.023347016, w: 0.97761583} + inSlope: {x: 0.013415951, y: 0.0000012320791, z: -0.0014972861, w: -0.0028932071} + outSlope: {x: 0.013415951, y: 0.0000012320791, z: -0.0014972861, w: -0.0028932071} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9333334 + value: {x: 0.19468276, y: 0.000000044634554, z: -0.021737583, w: 0.9806254} + inSlope: {x: 0.09186661, y: 0.00000039513975, z: -0.010259316, w: -0.018661033} + outSlope: {x: 0.09186661, y: 0.00000039513975, z: -0.010259316, w: -0.018661033} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2 + value: {x: 0.21318915, y: 0.000000020969084, z: -0.023803776, w: 0.9767209} + inSlope: {x: -0.05284091, y: 0.00000044450218, z: 0.0059013963, w: 0.011575531} + outSlope: {x: -0.05284091, y: 0.00000044450218, z: 0.0059013963, w: 0.011575531} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3666668 + value: {x: 0.19590189, y: 0.0000000431369, z: -0.021873636, w: 0.9803795} + inSlope: {x: 0.014772724, y: 0.0000019272734, z: -0.0016516832, w: -0.0029960298} + outSlope: {x: 0.014772724, y: 0.0000019272734, z: -0.0016516832, w: -0.0029960298} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.20043507, y: -0.000000013546439, z: -0.022379821, w: 0.97945136} + inSlope: {x: -0.16279772, y: -0.0000010836359, z: 0.018177655, w: 0.033727024} + outSlope: {x: -0.16279772, y: -0.0000010836359, z: 0.018177655, w: 0.033727024} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.0666668 + value: {x: 0.2110352, y: 0.00000008120107, z: -0.02356346, w: 0.9771944} + inSlope: {x: -0.039688684, y: 0.0000014674463, z: 0.0044332487, w: 0.008662649} + outSlope: {x: -0.039688684, y: 0.0000014674463, z: 0.0044332487, w: 0.008662649} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.3000002 + value: {x: 0.20823461, y: -0.00000005109221, z: -0.023250572, w: 0.9778025} + inSlope: {x: 0.033993904, y: 0.0000012271536, z: -0.0037962794, w: -0.0073143905} + outSlope: {x: 0.033993904, y: 0.0000012271536, z: -0.0037962794, w: -0.0073143905} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.9333334 + value: {x: 0.2064486, y: -0.0000000146110555, z: -0.023051163, w: 0.9781859} + inSlope: {x: 0.013399882, y: 0.0000011981263, z: -0.0014941036, w: -0.0028610257} + outSlope: {x: 0.013399882, y: 0.0000011981263, z: -0.0014941036, 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} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2/mixamorig:RightHandPinky3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.044519152, y: 0.00000010180501, z: -0.000000049916533, w: 0.99900854} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.044519152, y: 0.00000010180501, z: -0.000000049916533, w: 0.99900854} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2/mixamorig:RightHandPinky3/mixamorig:RightHandPinky4 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.06646264, y: 0.029770868, z: 0.9971079, w: 0.02173229} + inSlope: {x: 0.03829233, y: 0.04973659, z: 0.00057756895, w: 0.01913538} + outSlope: {x: 0.03829233, y: 0.04973659, z: 0.00057756895, w: 0.01913538} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: -0.075631775, y: 0.040741175, z: 0.9958591, w: 0.029743882} + inSlope: {x: -0.09496552, y: 0.24292248, z: -0.019973518, w: 0.08825284} + outSlope: {x: -0.09496552, y: 0.24292248, z: -0.019973518, w: 0.08825284} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: -0.08024049, y: 0.056053273, z: 0.99465555, w: 0.03286074} + inSlope: {x: 0.043556716, y: -0.16497743, z: 0.01661002, w: -0.121150866} + outSlope: {x: 0.043556716, y: -0.16497743, z: 0.01661002, w: -0.121150866} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: -0.060684443, y: 0.04732869, z: 0.99688196, w: 0.01742976} + inSlope: {x: 0.18451399, y: 0.16887766, z: 0.004241463, w: -0.052446082} + outSlope: {x: 0.18451399, y: 0.16887766, z: 0.004241463, w: -0.052446082} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.70000005 + value: {x: -0.062292807, y: 0.087555416, z: 0.9941118, w: 0.013981142} + inSlope: {x: -0.038701527, y: 0.32133287, z: -0.028837323, w: -0.101614356} + outSlope: {x: -0.038701527, y: 0.32133287, z: -0.028837323, w: -0.101614356} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000001 + value: {x: -0.06715649, y: 0.09001951, z: 0.99366945, w: 0.0027411273} + inSlope: {x: -0.07385474, y: -0.334526, z: 0.024440296, w: -0.04716972} + outSlope: {x: -0.07385474, y: -0.334526, z: 0.024440296, w: -0.04716972} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.90000004 + value: {x: -0.06458325, y: 0.054591376, z: 0.99641407, w: 0.0027940092} + inSlope: {x: 0.11620487, y: -0.19923249, z: 0.018408004, w: 0.044209022} + outSlope: {x: 0.11620487, y: -0.19923249, z: 0.018408004, w: 0.044209022} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.06848269, y: 0.023690866, z: 0.99722934, w: 0.01681087} + inSlope: {x: -0.20978138, y: -0.36387092, z: -0.007789119, w: 0.15040901} + outSlope: {x: -0.20978138, y: -0.36387092, z: -0.007789119, w: 0.15040901} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.08459478, y: 0.019641593, z: 0.99579954, w: 0.029003803} + inSlope: {x: -0.08216415, y: 0.24921173, z: -0.015980586, w: 0.14782822} + outSlope: {x: -0.08216415, y: 0.24921173, z: -0.015980586, w: 0.14782822} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2333333 + value: {x: -0.09518184, y: 0.00933181, z: 0.9943602, w: 0.04583738} + inSlope: {x: 0.010078864, y: -0.2368566, z: 0.0014707359, w: 0.047729082} + outSlope: {x: 0.010078864, y: -0.2368566, z: 0.0014707359, w: 0.047729082} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3666668 + value: {x: -0.085726306, y: 0.0012859423, z: 0.99546415, w: 0.04123747} + inSlope: {x: -0.025976678, y: -0.12406358, z: -0.0006678777, w: -0.03619398} + outSlope: {x: -0.025976678, y: -0.12406358, z: -0.0006678777, w: -0.03619398} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333334 + value: {x: -0.101542674, y: 0.0036117875, z: 0.9935497, w: 0.050349053} + inSlope: {x: -0.09541555, y: 0.20932466, z: -0.012854053, w: 0.047715146} + outSlope: {x: -0.09541555, y: 0.20932466, z: -0.012854053, w: 0.047715146} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7 + value: {x: -0.08910676, y: 0.04225419, z: 0.9940747, w: 0.045717083} + inSlope: {x: 0.23115021, y: 0.37252462, z: 0.014902349, w: -0.24019307} + outSlope: {x: 0.23115021, y: 0.37252462, z: 0.014902349, w: -0.24019307} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.8000001 + value: {x: -0.07259111, y: 0.077200726, z: 0.9939813, w: 0.02778126} + inSlope: {x: 0.020327587, y: 0.051729355, z: -0.0028798012, w: 0.01958495} + outSlope: {x: 0.020327587, y: 0.051729355, z: -0.0028798012, w: 0.01958495} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9333334 + value: {x: -0.07798117, y: 0.062053543, z: 0.9943715, w: 0.03596835} + inSlope: {x: -0.01079935, y: -0.052816615, z: 0.002962049, w: -0.014516916} + outSlope: {x: -0.01079935, y: -0.052816615, z: 0.002962049, w: -0.014516916} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.1333334 + value: {x: -0.072923176, y: 0.04831032, z: 0.9959357, w: 0.021457838} + inSlope: {x: 0.18619633, y: -0.03523694, z: 0.017918961, w: -0.11972934} + outSlope: {x: 0.18619633, y: -0.03523694, z: 0.017918961, w: -0.11972934} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.3000002 + value: {x: -0.064495556, y: 0.044757906, z: 0.9967464, w: 0.018266305} + inSlope: {x: -0.048685826, y: -0.27555913, z: 0.009358237, w: -0.01985999} + outSlope: {x: -0.048685826, y: -0.27555913, z: 0.009358237, w: -0.01985999} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.4333334 + value: {x: -0.06460758, y: 0.03443235, z: 0.9972212, w: 0.013793244} + inSlope: {x: 0.01658076, y: 0.103263184, z: -0.0025767114, w: 0.007673514} + outSlope: {x: 0.01658076, y: 0.103263184, z: -0.0025767114, w: 0.007673514} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.9 + value: {x: -0.06616198, y: 0.029542057, z: 0.9971398, w: 0.02149565} + inSlope: {x: -0.009004519, y: 0.0063489066, z: -0.0008976468, w: 0.0051910854} + outSlope: {x: -0.009004519, y: 0.0063489066, z: -0.0008976468, w: 0.0051910854} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.9333334 + value: {x: -0.06646735, y: 0.029738285, z: 0.9971077, w: 0.021773346} + inSlope: {x: -0.009161093, y: 0.0058868397, z: -0.00096380804, w: 0.008330894} + outSlope: {x: -0.009161093, y: 0.0058868397, z: -0.00096380804, w: 0.008330894} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:LeftUpLeg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.17594354, y: 0.014023324, z: -0.063920006, w: 0.98222274} + inSlope: {x: -0.1675777, y: -0.06876717, z: -0.04736803, w: -0.03273189} + outSlope: {x: -0.1675777, y: -0.06876717, z: -0.04736803, w: -0.03273189} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.19663647, y: 0.0019506121, z: -0.06420639, w: 0.97837} + inSlope: {x: -0.33273154, y: -0.08343815, z: 0.030201778, w: -0.06511329} + outSlope: {x: -0.33273154, y: -0.08343815, z: 0.030201778, w: -0.06511329} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: -0.26366696, y: -0.020101178, z: -0.056973465, w: 0.96272} + inSlope: {x: 0.279153, y: 0.10351966, z: -0.04934363, w: 0.07432307} + outSlope: {x: 0.279153, y: 0.10351966, z: -0.04934363, w: 0.07432307} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.20498556, y: 0.009571382, z: -0.06769057, w: 0.97637457} + inSlope: {x: 0.21564074, y: 0.096908264, z: -0.15570983, w: 0.034473553} + outSlope: {x: 0.21564074, y: 0.096908264, z: -0.15570983, w: 0.034473553} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.21354493, y: -0.028769169, z: -0.07395288, w: 0.97370523} + inSlope: {x: -0.2052063, y: -0.75203085, z: 0.11826013, w: -0.058802083} + outSlope: {x: -0.2052063, y: -0.75203085, z: 0.11826013, w: -0.058802083} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.23012924, y: -0.07708464, z: -0.062030494, w: 0.9681171} + inSlope: {x: -0.41580522, y: -0.5269146, z: 0.16478902, w: -0.12810409} + outSlope: {x: -0.41580522, y: -0.5269146, z: 0.16478902, w: -0.12810409} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000001 + value: {x: -0.23188132, y: -0.09901903, z: -0.05096357, w: 0.9663483} + inSlope: {x: 0.6968075, y: -0.008090076, z: 0.055117827, w: 0.16514276} + outSlope: {x: 0.6968075, y: -0.008090076, z: 0.055117827, w: 0.16514276} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.90000004 + value: {x: -0.16289002, y: -0.08067703, z: -0.05367906, w: 0.98187405} + inSlope: {x: 0.13763507, y: 0.6126558, z: -0.15863968, w: 0.062204033} + outSlope: {x: 0.13763507, y: 0.6126558, z: -0.15863968, w: 0.062204033} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.16660003, y: -0.014092507, z: -0.059901003, w: 0.9841025} + inSlope: {x: 0.047884062, y: 0.29311094, z: 0.13525802, w: 0.02200482} + outSlope: {x: 0.047884062, y: 0.29311094, z: 0.13525802, w: 0.02200482} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.16785343, y: -0.012198202, z: -0.04854387, w: 0.98454046} + inSlope: {x: -0.38133115, y: -0.0505798, z: 0.113022976, w: -0.06354427} + outSlope: {x: -0.38133115, y: -0.0505798, z: 0.113022976, w: -0.06354427} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.21470323, y: -0.009074749, z: -0.044874143, w: 0.9756057} + inSlope: {x: -0.028427638, y: 0.12025133, z: 0.022122324, w: -0.0040796436} + outSlope: {x: -0.028427638, y: 0.12025133, z: 0.022122324, w: -0.0040796436} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666668 + value: {x: -0.18761955, y: 0.020324998, z: -0.0484631, w: 0.98083496} + inSlope: {x: 0.16252676, y: 0.46351618, z: -0.14574972, w: 0.01457148} + outSlope: {x: 0.16252676, y: 0.46351618, z: -0.14574972, w: 0.01457148} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3666668 + value: {x: -0.1947254, y: 0.053431716, z: -0.061497595, w: 0.9774687} + inSlope: {x: -0.008952947, y: 0.07386927, z: -0.0005621016, w: -0.005634401} + outSlope: {x: -0.008952947, y: 0.07386927, z: -0.0005621016, w: -0.005634401} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5000001 + value: {x: -0.20159805, y: 0.041614387, z: -0.04970835, w: 0.9773206} + inSlope: {x: -0.23169062, y: -0.19503634, z: 0.09721184, w: -0.034954526} + outSlope: {x: -0.23169062, y: -0.19503634, z: 0.09721184, w: -0.034954526} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.22087266, y: 0.019394249, z: -0.045313768, w: 0.97405636} + inSlope: {x: -0.070402466, y: 0.05798025, z: -0.110611394, w: -0.022445641} + outSlope: {x: -0.070402466, y: 0.05798025, z: -0.110611394, w: -0.022445641} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7666668 + value: {x: -0.25407174, y: 0.022235751, z: -0.06347841, w: 0.96484387} + inSlope: {x: -0.4447176, y: -0.051763248, z: -0.19377968, w: -0.12667727} + outSlope: {x: -0.4447176, y: -0.051763248, z: -0.19377968, w: -0.12667727} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9666668 + value: {x: -0.23450308, y: -0.016051292, z: -0.05072251, w: 0.9706585} + inSlope: {x: 0.26257914, y: -0.15906517, z: 0.08072411, w: 0.064988196} + outSlope: {x: 0.26257914, y: -0.15906517, z: 0.08072411, w: 0.064988196} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.1333334 + value: {x: -0.19869271, y: -0.01953374, z: -0.049041715, w: 0.9786392} + inSlope: {x: 0.22777498, y: 0.2689076, z: -0.17177586, w: 0.042910915} + outSlope: {x: 0.22777498, y: 0.2689076, z: -0.17177586, w: 0.042910915} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.2333333 + value: {x: -0.19599634, y: 0.0010123499, z: -0.06573226, w: 0.97839856} + inSlope: {x: -0.047651254, y: -0.07981523, z: -0.020269979, w: -0.011035518} + outSlope: {x: -0.047651254, y: -0.07981523, z: -0.020269979, w: -0.011035518} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.17032748, y: -0.023306787, z: -0.058487736, w: 0.98337406} + inSlope: {x: 0.4089275, y: -0.1605833, z: 0.040807333, w: 0.0708077} + outSlope: {x: 0.4089275, y: -0.1605833, z: 0.040807333, w: 0.0708077} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.5000002 + value: {x: -0.1601067, y: -0.014391802, z: -0.06092452, w: 0.98511267} + inSlope: {x: -0.025577955, y: 0.10357821, z: -0.035248257, w: -0.004841379} + outSlope: {x: -0.025577955, y: 0.10357821, z: -0.035248257, w: -0.004841379} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.17294733, y: 0.015949376, z: -0.06467624, w: 0.98267585} + inSlope: {x: -0.03439422, y: -0.009190039, z: 0.004745838, w: -0.0055933055} + outSlope: {x: -0.03439422, y: -0.009190039, z: 0.004745838, w: -0.0055933055} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.9333334 + value: {x: -0.17597967, y: 0.014030724, z: -0.063872874, w: 0.9822192} + inSlope: {x: -0.026842233, y: -0.020345664, z: 0.009097391, w: -0.0039053} + outSlope: {x: -0.026842233, y: -0.020345664, z: 0.009097391, w: -0.0039053} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.6376066, y: 0.045202434, z: 0.040464137, w: 0.76796955} + inSlope: {x: 0.06290853, y: -0.008643977, z: -0.01970954, w: -0.05083322} + outSlope: {x: 0.06290853, y: -0.008643977, z: -0.01970954, w: -0.05083322} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: 0.61957407, y: 0.044655774, z: 0.028972793, w: 0.7831312} + inSlope: {x: -0.25775316, y: 0.03881481, z: -0.033187505, w: 0.2031836} + outSlope: {x: -0.25775316, y: 0.03881481, z: -0.033187505, w: 0.2031836} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: 0.6214032, y: 0.045933988, z: 0.030062838, w: 0.7815653} + inSlope: {x: 0.4659695, y: -0.027921408, z: 0.021489972, w: -0.37097993} + outSlope: {x: 0.4659695, y: -0.027921408, z: 0.021489972, w: -0.37097993} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: 0.6494573, y: 0.04383856, z: 0.0380784, w: 0.75817776} + inSlope: {x: -0.054289654, y: -0.016824644, z: 0.040123187, w: 0.045175515} + outSlope: {x: -0.054289654, y: -0.016824644, z: 0.040123187, w: 0.045175515} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.5796785, y: 0.031735353, z: 0.017257074, w: 0.8140442} + inSlope: {x: -0.2702693, y: -0.27898633, z: 0.06016615, w: 0.20300394} + outSlope: {x: -0.2702693, y: -0.27898633, z: 0.06016615, w: 0.20300394} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.86666673 + value: {x: 0.5865096, y: 0.022114947, z: 0.02078033, w: 0.8093736} + inSlope: {x: 0.3536377, y: 0.26817566, z: 0.014751038, w: -0.2657873} + outSlope: {x: 0.3536377, y: 0.26817566, z: 0.014751038, w: -0.2657873} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.6263943, y: 0.04283858, z: 0.036376804, w: 0.7774779} + inSlope: {x: -0.049899567, y: 0.04152538, z: -0.017209452, w: 0.03826061} + outSlope: {x: -0.049899567, y: 0.04152538, z: -0.017209452, w: 0.03826061} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.60582644, y: 0.046988055, z: 0.026065987, w: 0.7937802} + inSlope: {x: -0.09480448, y: 0.07943848, z: 0.014016052, w: 0.06751926} + outSlope: {x: -0.09480448, y: 0.07943848, z: 0.014016052, w: 0.06751926} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666668 + value: {x: 0.6362728, y: 0.054284118, z: 0.035732813, w: 0.7687219} + inSlope: {x: 0.41066915, y: 0.03399633, z: 0.229254, w: -0.35317424} + outSlope: {x: 0.41066915, y: 0.03399633, z: 0.229254, w: -0.35317424} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4000001 + value: {x: 0.6671475, y: 0.0614655, z: 0.04396051, w: 0.7410828} + inSlope: {x: -0.02026411, y: 0.11600453, z: -0.04805506, w: 0.011343073} + outSlope: {x: -0.02026411, y: 0.11600453, z: -0.04805506, w: 0.011343073} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6000001 + value: {x: 0.6554388, y: 0.06790029, z: 0.041175134, w: 0.75106204} + inSlope: {x: 0.12685862, y: 0.024683809, z: 0.1554896, w: -0.12211468} + outSlope: {x: 0.12685862, y: 0.024683809, z: 0.1554896, w: -0.12211468} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7 + value: {x: 0.6698546, y: 0.06232256, z: 0.050905135, w: 0.7381188} + inSlope: {x: 0.06725638, y: -0.18564667, z: -0.0552843, w: -0.041676182} + outSlope: {x: 0.06725638, y: -0.18564667, z: -0.0552843, w: -0.041676182} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.67482555, y: 0.05660963, z: 0.05265426, w: 0.7339165} + inSlope: {x: -0.014048491, y: 0.11707352, z: 0.071808964, w: -0.0008574384} + outSlope: {x: -0.014048491, y: 0.11707352, z: 0.071808964, w: -0.0008574384} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.0666668 + value: {x: 0.64210105, y: 0.057869934, z: 0.037650976, w: 0.76350486} + inSlope: {x: -0.129296, y: -0.02518865, z: -0.056275647, w: 0.113437876} + outSlope: {x: -0.129296, y: -0.02518865, z: -0.056275647, w: 0.113437876} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.2 + value: {x: 0.63685375, y: 0.046294942, z: 0.041894842, w: 0.76845235} + inSlope: {x: 0.110041305, y: -0.06682361, z: 0.027998712, w: -0.088672124} + outSlope: {x: 0.110041305, y: -0.06682361, z: 0.027998712, w: -0.088672124} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.3000002 + value: {x: 0.6332615, y: 0.046481013, z: 0.04203466, w: 0.77139646} + inSlope: {x: -0.2307596, y: -0.0027718982, z: -0.049309164, w: 0.19163328} + outSlope: {x: -0.2307596, y: -0.0027718982, z: -0.049309164, w: 0.19163328} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.4 + value: {x: 0.61672676, y: 0.04568082, z: 0.039006285, w: 0.7848821} + inSlope: {x: 0.01640083, y: 0.0054478515, z: 0.016121041, w: -0.014069094} + outSlope: {x: 0.01640083, y: 0.0054478515, z: 0.016121041, w: -0.014069094} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.6363372, y: 0.04672909, z: 0.042190846, w: 0.76883763} + inSlope: {x: 0.016509011, y: -0.019755326, z: -0.02823877, w: -0.0109112365} + outSlope: {x: 0.016509011, y: -0.019755326, z: -0.02823877, w: -0.0109112365} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.9333334 + value: {x: 0.6376261, y: 0.04526638, z: 0.04041257, w: 0.7679523} + inSlope: {x: 0.013173235, y: -0.008079939, z: -0.0076396093, w: -0.010049352} + outSlope: {x: 0.013173235, y: -0.008079939, z: -0.0076396093, w: -0.010049352} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.17286153, y: 0.024773939, z: -0.12338271, w: 0.9768735} + inSlope: {x: 0.024012921, y: 0.031201744, z: 0.0067524607, w: -0.0042146444} + outSlope: {x: 0.024012921, y: 0.031201744, z: 0.0067524607, w: -0.0042146444} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.20874286, y: 0.03488387, z: -0.12276869, w: 0.9696068} + inSlope: {x: 0.5010486, y: 0.0045434535, z: -0.031812105, w: -0.113017544} + outSlope: {x: 0.5010486, y: 0.0045434535, z: -0.031812105, w: -0.113017544} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: 0.22714171, y: 0.032910295, z: -0.124636136, w: 0.9652924} + inSlope: {x: 0.5306278, y: -0.23892105, z: -0.115378454, w: -0.13295709} + outSlope: {x: 0.5306278, y: -0.23892105, z: -0.115378454, w: -0.13295709} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: 0.24411805, y: 0.018955803, z: -0.13046059, w: 0.960743} + inSlope: {x: 0.5246504, y: -0.21972194, z: -0.10013883, w: -0.14109941} + outSlope: {x: 0.5246504, y: -0.21972194, z: -0.10013883, w: -0.14109941} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: 0.2800548, y: 0.025277115, z: -0.12881003, w: 0.9509671} + inSlope: {x: -0.2843931, y: 0.08789866, z: 0.05910647, w: 0.087424755} + outSlope: {x: -0.2843931, y: 0.08789866, z: 0.05910647, w: 0.087424755} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: 0.2147136, y: 0.028564828, z: -0.12516186, w: 0.96820277} + inSlope: {x: -0.618736, y: 0.09189054, z: 0.05489301, w: 0.14509058} + outSlope: {x: -0.618736, y: 0.09189054, z: 0.05489301, w: 0.14509058} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.20519388, y: 0.034345496, z: -0.12271127, w: 0.97039056} + inSlope: {x: 0.48426962, y: -0.024642842, z: -0.040220927, w: -0.109283} + outSlope: {x: 0.48426962, y: -0.024642842, z: -0.040220927, w: -0.109283} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.70000005 + value: {x: 0.26545334, y: 0.0121024195, z: -0.13413449, w: 0.9546706} + inSlope: {x: 0.46529683, y: -0.046009958, z: -0.041160252, w: -0.1330447} + outSlope: {x: 0.46529683, y: -0.046009958, z: -0.041160252, w: -0.1330447} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.24851446, y: 0.018613406, z: -0.13033065, w: 0.95963955} + inSlope: {x: -0.7703974, y: 0.15669361, z: 0.09187682, w: 0.2057898} + outSlope: {x: -0.7703974, y: 0.15669361, z: 0.09187682, w: 0.2057898} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.90000004 + value: {x: 0.18913125, y: 0.030202938, z: -0.12293, w: 0.9737584} + inSlope: {x: -0.6240075, y: 0.03137929, z: 0.052927073, w: 0.13356335} + outSlope: {x: -0.6240075, y: 0.03137929, z: 0.052927073, w: 0.13356335} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.1779885, y: 0.026980523, z: -0.123121, w: 0.97592694} + inSlope: {x: 0.21896933, y: 0.037427474, z: -0.0036110454, w: -0.04239939} + outSlope: {x: 0.21896933, y: 0.037427474, z: -0.0036110454, w: -0.04239939} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.25654805, y: 0.020030629, z: -0.13028875, w: 0.9575002} + inSlope: {x: 0.06789035, y: -0.15122433, z: -0.067002535, w: -0.0235525} + outSlope: {x: 0.06789035, y: -0.15122433, z: -0.067002535, w: -0.0235525} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2333333 + value: {x: 0.23893549, y: 0.021998689, z: -0.12906274, w: 0.96216875} + inSlope: {x: -0.48840714, y: 0.31571928, z: 0.13642836, w: 0.12952553} + outSlope: {x: -0.48840714, y: 0.31571928, z: 0.13642836, w: 0.12952553} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666668 + value: {x: 0.22028048, y: 0.03663392, z: -0.12294383, w: 0.96696395} + inSlope: {x: -0.5370837, y: 0.18050401, z: 0.09578313, w: 0.13006912} + outSlope: {x: -0.5370837, y: 0.18050401, z: 0.09578313, w: 0.13006912} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3666668 + value: {x: 0.18081878, y: 0.03064649, z: -0.12227429, w: 0.97540474} + inSlope: {x: -0.08618932, y: -0.013081642, z: 0.0016273123, w: 0.01704895} + outSlope: {x: -0.08618932, y: -0.013081642, z: 0.0016273123, w: 0.01704895} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333334 + value: {x: 0.24305421, y: 0.040086687, z: -0.12323884, w: 0.96131676} + inSlope: {x: 0.37221432, y: 0.056424007, z: -0.00449561, w: -0.09509334} + outSlope: {x: 0.37221432, y: 0.056424007, z: -0.00449561, w: -0.09509334} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7 + value: {x: 0.20179796, y: 0.033830337, z: -0.12265492, w: 0.9711276} + inSlope: {x: -0.3763873, y: -0.057107136, z: 0.006372475, w: 0.08059494} + outSlope: {x: -0.3763873, y: -0.057107136, z: 0.006372475, w: 0.08059494} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7333335 + value: {x: 0.18823908, y: 0.031772807, z: -0.12241541, w: 0.97394615} + inSlope: {x: -0.14490642, y: -0.021989219, z: 0.0025258483, w: 0.030426856} + outSlope: {x: -0.14490642, y: -0.021989219, z: 0.0025258483, w: 0.030426856} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.19429244, y: 0.032691445, z: -0.12252512, w: 0.97271234} + inSlope: {x: -0.085911945, y: -0.013036806, z: 0.0015318748, w: 0.017741004} + outSlope: {x: -0.085911945, y: -0.013036806, z: 0.0015318748, w: 0.017741004} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.0666668 + value: {x: 0.21286063, y: 0.035508577, z: -0.12283303, w: 0.9686803} + inSlope: {x: 0.055646278, y: 0.00844131, z: -0.0008773067, w: -0.012468707} + outSlope: {x: 0.055646278, y: 0.00844131, z: -0.0008773067, w: -0.012468707} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.2 + value: {x: 0.17570724, y: 0.025348023, z: -0.12341693, w: 0.9763466} + inSlope: {x: -0.19921836, y: -0.057749018, z: -0.003518167, w: 0.03735695} + outSlope: {x: -0.19921836, y: -0.057749018, z: -0.003518167, w: 0.03735695} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.4333334 + value: {x: 0.17472138, y: 0.01989138, z: -0.12477351, w: 0.9764775} + inSlope: {x: -0.036799274, y: 0.0053984816, z: 0.003919717, w: 0.006958551} + outSlope: {x: -0.036799274, y: 0.0053984816, z: 0.003919717, w: 0.006958551} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.8666668 + value: {x: 0.17325139, y: 0.024569368, z: -0.12346263, w: 0.9767995} + inSlope: {x: -0.00032968854, y: 0.008406387, z: 0.0022442287, w: 0.00013142837} + outSlope: {x: -0.00032968854, y: 0.008406387, z: 0.0022442287, w: 0.00013142837} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.9333334 + value: {x: 0.17288154, y: 0.024747275, z: -0.12339102, w: 0.9768696} + inSlope: {x: -0.00877262, y: 0.00011986133, z: 0.0006140029, w: 0.0016272083} + outSlope: {x: -0.00877262, y: 0.00011986133, z: 0.0006140029, w: 0.0016272083} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot/mixamorig:LeftToeBase + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.04573715, y: 0.039433047, z: 0.0727525, w: 0.99552006} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.04573715, y: 0.039433047, z: 0.0727525, w: 0.99552006} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot/mixamorig:LeftToeBase/mixamorig:LeftToe_End + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.101047, y: -0.05669687, z: 0.9928719, w: -0.027936993} + inSlope: {x: 0.064435825, y: -0.3024566, z: -0.024474261, w: 0.03523819} + outSlope: {x: 0.064435825, y: -0.3024566, z: -0.024474261, w: 0.03523819} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: 0.10347174, y: -0.05735803, z: 0.992584, w: -0.027941028} + inSlope: {x: -0.0043600416, y: 0.398606, z: 0.020366011, w: -0.054339703} + outSlope: {x: -0.0043600416, y: 0.398606, z: 0.020366011, w: -0.054339703} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.10283656, y: -0.022501465, z: 0.9938657, w: -0.033900093} + inSlope: {x: 0.009608788, y: 0.09918593, z: -0.000021457468, w: -0.040149145} + outSlope: {x: 0.009608788, y: 0.09918593, z: -0.000021457468, w: -0.040149145} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: 0.10081064, y: -0.0062432666, z: 0.99413997, w: -0.0385228} + inSlope: {x: -0.012151632, y: -0.12586057, z: 0.002448856, w: 0.05100978} + outSlope: {x: -0.012151632, y: -0.12586057, z: 0.002448856, w: 0.05100978} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: 0.1024533, y: -0.036248643, z: 0.9938053, w: -0.023246028} + inSlope: {x: 0.09153299, y: -0.7316936, z: -0.037214726, w: 0.16530758} + outSlope: {x: 0.09153299, y: -0.7316936, z: -0.037214726, w: 0.16530758} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5666667 + value: {x: 0.10640943, y: -0.06722279, z: 0.991889, w: -0.01773145} + inSlope: {x: 0.10144851, y: -0.60356486, z: -0.043221105, w: 0.09258013} + outSlope: {x: 0.10144851, y: -0.60356486, z: -0.043221105, w: 0.09258013} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.70000005 + value: {x: 0.115393534, y: -0.053763222, z: 0.9914847, w: -0.027421657} + inSlope: {x: 0.07128844, y: 0.16368105, z: -0.0029844092, w: -0.138292} + outSlope: {x: 0.07128844, y: 0.16368105, z: -0.0029844092, w: -0.138292} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.117245324, y: -0.05164043, z: 0.9909406, w: -0.04029395} + inSlope: {x: -0.015201442, y: -0.19737029, z: -0.005205265, w: 0.108340815} + outSlope: {x: -0.015201442, y: -0.19737029, z: -0.005205265, w: 0.108340815} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9333334 + value: {x: 0.11908175, y: -0.08070558, z: 0.989083, w: -0.031953137} + inSlope: {x: -0.024196904, y: 0.031418405, z: 0.0038248422, w: -0.04407633} + outSlope: {x: -0.024196904, y: 0.031418405, z: 0.0038248422, w: -0.04407633} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.112037845, y: -0.020561574, z: 0.99216425, w: -0.051330972} + inSlope: {x: -0.014758048, y: 0.3226717, z: 0.0076898877, w: -0.018563254} + outSlope: {x: -0.014758048, y: 0.3226717, z: 0.0076898877, w: -0.018563254} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666668 + value: {x: 0.110133134, y: -0.041886684, z: 0.99233466, w: -0.037258107} + inSlope: {x: 0.019834261, y: -0.8857094, z: -0.039082482, w: 0.2139447} + outSlope: {x: 0.019834261, y: -0.8857094, z: -0.039082482, w: 0.2139447} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3000001 + value: {x: 0.11105179, y: -0.07985367, z: 0.9901362, w: -0.030351557} + inSlope: {x: -0.0036113746, y: -0.51878536, z: -0.027635718, w: 0.0843783} + outSlope: {x: -0.0036113746, y: -0.51878536, z: -0.027635718, w: 0.0843783} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.109892376, y: -0.07647234, z: 0.9904923, w: -0.031632893} + inSlope: {x: -0.015456028, y: 0.07213063, z: 0.0057819523, w: -0.049066596} + outSlope: {x: -0.015456028, y: 0.07213063, z: 0.0057819523, w: -0.049066596} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4333334 + value: {x: 0.109632485, y: -0.070871025, z: 0.99083656, w: -0.03465391} + inSlope: {x: -0.05073582, y: 0.11414319, z: 0.0155738145, w: 0.0570322} + outSlope: {x: -0.05073582, y: 0.11414319, z: 0.0155738145, w: 0.0570322} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4666667 + value: {x: 0.107126966, y: -0.066285476, z: 0.9915288, w: -0.031633373} + inSlope: {x: -0.101901345, y: 0.54081905, z: 0.040661324, w: 0.027848518} + outSlope: {x: -0.101901345, y: 0.54081905, z: 0.040661324, w: 0.027848518} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333334 + value: {x: 0.10002658, y: -0.00831865, z: 0.99429333, w: -0.03614334} + inSlope: {x: -0.054464318, y: 0.5891814, z: 0.01132072, w: -0.08924249} + outSlope: {x: -0.054464318, y: 0.5891814, z: 0.01132072, w: -0.08924249} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6000001 + value: {x: 0.09936748, y: 0.002497311, z: 0.9942978, w: -0.03862295} + inSlope: {x: 0.012209977, y: -0.30484694, z: -0.0009825833, w: 0.05347139} + outSlope: {x: 0.012209977, y: -0.30484694, z: -0.0009825833, w: 0.05347139} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.099869415, y: -0.027111404, z: 0.9940153, w: -0.034996863} + inSlope: {x: -0.014698855, y: -0.11953804, z: -0.0024515414, w: -0.041775722} + outSlope: {x: -0.014698855, y: -0.11953804, z: -0.0024515414, w: -0.041775722} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7333335 + value: {x: 0.09823689, y: -0.016079487, z: 0.99419117, w: -0.040926322} + inSlope: {x: -0.012126347, y: 0.14890884, z: 0.002475675, w: -0.039322518} + outSlope: {x: -0.012126347, y: 0.14890884, z: 0.002475675, w: -0.039322518} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.8666668 + value: {x: 0.100525156, y: -0.01012404, z: 0.9941362, w: -0.038541332} + inSlope: {x: 0.07781017, y: -0.18253224, z: -0.0076702205, w: 0.05452642} + outSlope: {x: 0.07781017, y: -0.18253224, z: -0.0076702205, w: 0.05452642} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.1000001 + value: {x: 0.11627298, y: -0.024640655, z: 0.9917632, w: -0.047742743} + inSlope: {x: 0.0070115244, y: -0.07182798, z: -0.0038802663, w: -0.026244156} + outSlope: {x: 0.0070115244, y: -0.07182798, z: -0.0038802663, w: -0.026244156} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.2 + value: {x: 0.10763995, y: -0.041089058, z: 0.99269825, w: -0.035714395} + inSlope: {x: -0.16154133, y: 0.029852286, z: 0.024696909, w: 0.16674152} + outSlope: {x: -0.16154133, y: 0.029852286, z: 0.024696909, w: 0.16674152} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.266667 + value: {x: 0.0997128, y: -0.03515349, z: 0.99396366, w: -0.029289663} + inSlope: {x: 0.006064916, y: -0.26806158, z: -0.009989469, w: 0.057193086} + outSlope: {x: 0.006064916, y: -0.26806158, z: -0.009989469, w: 0.057193086} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.10506878, y: -0.0567422, z: 0.9924011, w: -0.02968079} + inSlope: {x: 0.069407366, y: -0.07784845, z: -0.013077569, w: -0.05482133} + outSlope: {x: 0.069407366, y: -0.07784845, z: -0.013077569, w: -0.05482133} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.4666667 + value: {x: 0.10432373, y: -0.04161842, z: 0.9931957, w: -0.030768732} + inSlope: {x: -0.016480945, y: 0.024585575, z: 0.0038784747, w: 0.034601133} + outSlope: {x: -0.016480945, y: 0.024585575, z: 0.0038784747, w: 0.034601133} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.9333334 + value: {x: 0.10104633, y: -0.056690976, z: 0.9928722, w: -0.027939595} + inSlope: {x: 0.009520957, y: -0.06292636, z: -0.004246835, w: 0.008732163} + outSlope: {x: 0.009520957, y: -0.06292636, z: -0.004246835, w: 0.008732163} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:RightUpLeg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.052010644, y: -0.052587442, z: 0.0690718, w: 0.99486613} + inSlope: {x: 0.42243728, y: -0.04568595, z: -0.051672306, w: 0.020180939} + outSlope: {x: 0.42243728, y: -0.04568595, z: -0.051672306, w: 0.020180939} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: -0.0379294, y: -0.054110307, z: 0.06734939, w: 0.99553883} + inSlope: {x: -0.21528532, y: -0.02237778, z: -0.020868255, w: -0.012578665} + outSlope: {x: -0.21528532, y: -0.02237778, z: -0.020868255, w: -0.012578665} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: -0.14462914, y: -0.052009556, z: 0.068756215, w: 0.9857231} + inSlope: {x: -0.7189981, y: 0.024381228, z: -0.007849709, w: -0.09607137} + outSlope: {x: -0.7189981, y: 0.024381228, z: -0.007849709, w: -0.09607137} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: -0.17769551, y: -0.04801748, z: 0.06626177, w: 0.9806773} + inSlope: {x: -0.37337673, y: 0.06847966, z: -0.021006951, w: -0.06326885} + outSlope: {x: -0.37337673, y: 0.06847966, z: -0.021006951, w: -0.06326885} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.20189635, y: -0.043842882, z: 0.06589498, w: 0.9762036} + inSlope: {x: 0.21299088, y: -0.027254263, z: 0.028482268, w: 0.03934175} + outSlope: {x: 0.21299088, y: -0.027254263, z: 0.028482268, w: 0.03934175} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: -0.17428933, y: -0.04995002, z: 0.069684155, w: 0.9809548} + inSlope: {x: 0.24606836, y: -0.14298086, z: 0.080678925, w: 0.03202108} + outSlope: {x: 0.24606836, y: -0.14298086, z: 0.080678925, w: 0.03202108} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.14428976, y: -0.0685565, z: 0.07747283, w: 0.98411304} + inSlope: {x: 0.88026404, y: -0.19598195, z: 0.03157331, w: 0.10643451} + outSlope: {x: 0.88026404, y: -0.19598195, z: 0.03157331, w: 0.10643451} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: -0.10767468, y: -0.0747793, z: 0.077772915, w: 0.9883145} + inSlope: {x: 1.2934781, y: -0.17404538, z: -0.025217885, w: 0.12129296} + outSlope: {x: 1.2934781, y: -0.17404538, z: -0.025217885, w: 0.12129296} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5666667 + value: {x: -0.058057815, y: -0.08015954, z: 0.075791635, w: 0.99219924} + inSlope: {x: 0.63457304, y: -0.106378935, z: -0.017724225, w: 0.048429012} + outSlope: {x: 0.63457304, y: -0.106378935, z: -0.017724225, w: 0.048429012} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.13554923, y: -0.0728413, z: 0.081993364, w: 0.9846815} + inSlope: {x: -0.9264828, y: 0.09777906, z: 0.081606224, w: -0.12095781} + outSlope: {x: -0.9264828, y: 0.09777906, z: 0.081606224, w: -0.12095781} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000001 + value: {x: -0.19036448, y: -0.0730431, z: 0.093628064, w: 0.97450495} + inSlope: {x: -0.0078053363, y: -0.05691927, z: 0.11490416, w: -0.016742326} + outSlope: {x: -0.0078053363, y: -0.05691927, z: 0.11490416, w: -0.016742326} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.86666673 + value: {x: -0.15831776, y: -0.079213, z: 0.09737576, w: 0.97937673} + inSlope: {x: 1.0287085, y: -0.10832626, z: -0.068447135, w: 0.15755835} + outSlope: {x: 1.0287085, y: -0.10832626, z: -0.068447135, w: 0.15755835} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9333334 + value: {x: -0.093687646, y: -0.08041185, z: 0.08594951, w: 0.98861986} + inSlope: {x: 0.39867917, y: 0.09535816, z: -0.19506533, w: 0.066798605} + outSlope: {x: 0.39867917, y: 0.09535816, z: -0.19506533, w: 0.066798605} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.17797625, y: -0.024464507, z: 0.055117726, w: 0.98218536} + inSlope: {x: -0.37082487, y: 0.2821344, z: -0.17482176, w: -0.04908083} + outSlope: {x: -0.37082487, y: 0.2821344, z: -0.17482176, w: -0.04908083} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2 + value: {x: -0.1765889, y: 0.0071500046, z: 0.035788924, w: 0.9836079} + inSlope: {x: 0.7750642, y: 0.32507986, z: -0.17399053, w: 0.13585044} + outSlope: {x: 0.7750642, y: 0.32507986, z: -0.17399053, w: 0.13585044} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666668 + value: {x: -0.09039278, y: 0.020578517, z: 0.02902368, w: 0.9952705} + inSlope: {x: 2.1028788, y: 0.050408527, z: -0.015334995, w: 0.14954907} + outSlope: {x: 2.1028788, y: 0.050408527, z: -0.015334995, w: 0.14954907} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3000001 + value: {x: -0.0008403067, y: 0.020139582, z: 0.029910289, w: 0.99934936} + inSlope: {x: 1.3355923, y: -0.042170204, z: 0.005900754, w: 0.06206906} + outSlope: {x: 1.3355923, y: -0.042170204, z: 0.005900754, w: 0.06206906} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.0013533805, y: 0.017767172, z: 0.029417064, w: 0.9994084} + inSlope: {x: -0.0022772038, y: -0.07071826, z: -0.0041737, w: 0.0013804431} + outSlope: {x: -0.0022772038, y: -0.07071826, z: -0.0041737, w: 0.0013804431} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4333334 + value: {x: -0.0014661496, y: 0.016553422, z: 0.029910421, w: 0.99941444} + inSlope: {x: -0.017139563, y: 0.06572676, z: 0.018853266, w: -0.0017255561} + outSlope: {x: -0.017139563, y: 0.06572676, z: 0.018853266, w: -0.0017255561} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4666667 + value: {x: -0.0018222079, y: 0.019415041, z: 0.030914044, w: 0.99933183} + inSlope: {x: -0.83057547, y: 0.09911288, z: 0.0054875594, w: -0.026384827} + outSlope: {x: -0.83057547, y: 0.09911288, z: 0.0054875594, w: -0.026384827} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5000001 + value: {x: -0.05683799, y: 0.023160955, z: 0.030276256, w: 0.99765545} + inSlope: {x: -1.4869461, y: 0.08690818, z: -0.029276695, w: -0.07772593} + outSlope: {x: -1.4869461, y: 0.08690818, z: -0.029276695, w: -0.07772593} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6000001 + value: {x: -0.11392596, y: 0.027165078, z: 0.028045814, w: 0.9927217} + inSlope: {x: 0.66808105, y: -0.038528234, z: 0.04589671, w: 0.065442346} + outSlope: {x: 0.66808105, y: -0.038528234, z: 0.04589671, w: 0.065442346} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.05229896, y: 0.015503025, z: 0.03473599, w: 0.99790674} + inSlope: {x: 0.25081027, y: -0.28833067, z: 0.12937394, w: 0.016562656} + outSlope: {x: 0.25081027, y: -0.28833067, z: 0.12937394, w: 0.016562656} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7333335 + value: {x: -0.07576933, y: -0.004383432, z: 0.045007262, w: 0.9960995} + inSlope: {x: -0.36356586, y: -0.2457301, z: 0.14700752, w: -0.033297796} + outSlope: {x: -0.36356586, y: -0.2457301, z: 0.14700752, w: -0.033297796} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7666668 + value: {x: -0.083185785, y: -0.0114707025, z: 0.049340565, w: 0.99524575} + inSlope: {x: -0.44599938, y: -0.1511283, z: 0.09106337, w: -0.046475574} + outSlope: {x: -0.44599938, y: -0.1511283, z: 0.09106337, w: -0.046475574} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.11867487, y: -0.01594694, z: 0.05106192, w: 0.99149114} + inSlope: {x: -0.18914455, y: -0.075274624, z: 0.002635151, w: -0.022736214} + outSlope: {x: -0.18914455, y: -0.075274624, z: 0.002635151, w: -0.022736214} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9000001 + value: {x: -0.115578294, y: -0.024140872, z: 0.05230104, w: 0.9916267} + inSlope: {x: -0.07999629, y: -0.13109553, z: 0.036469303, w: -0.014835313} + outSlope: {x: -0.07999629, y: -0.13109553, z: 0.036469303, w: -0.014835313} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.12606923, y: -0.03136525, z: 0.054327432, w: 0.990036} + inSlope: {x: 0.011045489, y: -0.0033773822, z: -0.01615873, w: 0.0021931657} + outSlope: {x: 0.011045489, y: -0.0033773822, z: -0.01615873, w: 0.0021931657} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.10465499, y: -0.045864128, z: 0.06165336, w: 0.99153554} + inSlope: {x: 0.5174193, y: -0.2746616, z: 0.18798357, w: 0.029139545} + outSlope: {x: 0.5174193, y: -0.2746616, z: 0.18798357, w: 0.029139545} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.2 + value: {x: -0.08583342, y: -0.055583764, z: 0.06847372, w: 0.9923983} + inSlope: {x: 0.03129828, y: -0.24890566, z: 0.21984422, w: -0.025642838} + outSlope: {x: 0.03129828, y: -0.24890566, z: 0.21984422, w: -0.025642838} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.2333333 + value: {x: -0.10256844, y: -0.062457822, z: 0.07630963, w: 0.989826} + inSlope: {x: -0.26385352, y: -0.1878838, z: 0.19540134, w: -0.05172278} + outSlope: {x: -0.26385352, y: -0.1878838, z: 0.19540134, w: -0.05172278} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.3000002 + value: {x: -0.08800614, y: -0.07321985, z: 0.0833537, w: 0.9899222} + inSlope: {x: 0.21252435, y: -0.13489613, z: 0.04166659, w: 0.0073054503} + outSlope: {x: 0.21252435, y: -0.13489613, z: 0.04166659, w: 0.0073054503} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.4333334 + value: {x: -0.10526587, y: -0.07843984, z: 0.08446716, w: 0.9877407} + inSlope: {x: 0.08061543, y: 0.00097017834, z: -0.017158331, w: 0.00994564} + outSlope: {x: 0.08061543, y: 0.00097017834, z: -0.017158331, w: 0.00994564} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.6000001 + value: {x: -0.082603015, y: -0.06524161, z: 0.073662795, w: 0.9917127} + inSlope: {x: 0.04793805, y: 0.15358293, z: -0.07620722, w: 0.019837637} + outSlope: {x: 0.04793805, y: 0.15358293, z: -0.07620722, w: 0.019837637} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.9333334 + value: {x: -0.05201375, y: -0.05258768, z: 0.0690719, w: 0.99486595} + inSlope: {x: 0.103016816, y: -0.007800989, z: -0.0022809973, w: 0.005312567} + outSlope: {x: 0.103016816, y: -0.007800989, z: -0.0022809973, w: 0.005312567} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.58243644, y: -0.060643725, z: -0.06781209, w: 0.80776954} + inSlope: {x: -0.14157236, y: -0.0015459581, z: -0.001592785, w: 0.1012051} + outSlope: {x: -0.14157236, y: -0.0015459581, z: -0.001592785, w: 0.1012051} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: 0.5879792, y: -0.062376, z: -0.06933805, w: 0.8034812} + inSlope: {x: 0.33920193, y: -0.06367569, z: -0.0565214, w: -0.25886175} + outSlope: {x: 0.33920193, y: -0.06367569, z: -0.0565214, w: -0.25886175} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.60219145, y: -0.06813457, z: -0.07369231, w: 0.79201806} + inSlope: {x: -0.18246795, y: -0.030665357, z: -0.011172069, w: 0.1340675} + outSlope: {x: -0.18246795, y: -0.030665357, z: -0.011172069, w: 0.1340675} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.5605777, y: -0.07186457, z: -0.078980185, w: 0.82118833} + inSlope: {x: 0.38757735, y: 0.06288391, z: -0.04228993, w: -0.26769605} + outSlope: {x: 0.38757735, y: 0.06288391, z: -0.04228993, w: -0.26769605} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.6178014, y: -0.063846335, z: -0.07548758, w: 0.780094} + inSlope: {x: 0.17662638, y: 0.065427296, z: 0.1753043, w: -0.11436868} + outSlope: {x: 0.17662638, y: 0.065427296, z: 0.1753043, w: -0.11436868} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5666667 + value: {x: 0.5959913, y: -0.07022333, z: -0.06640352, w: 0.7971534} + inSlope: {x: -0.41185218, y: -0.3379196, z: 0.015447766, w: 0.2819662} + outSlope: {x: -0.41185218, y: -0.3379196, z: 0.015447766, w: 0.2819662} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.5784921, y: -0.12083585, z: -0.06987821, w: 0.8036558} + inSlope: {x: -0.13255388, y: -0.41603822, z: -0.084260136, w: 0.026721053} + outSlope: {x: -0.13255388, y: -0.41603822, z: -0.084260136, w: 0.026721053} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000001 + value: {x: 0.583626, y: -0.14859538, z: -0.08503636, w: 0.7937688} + inSlope: {x: 0.29699036, y: -0.073385194, z: -0.010833371, w: -0.23452348} + outSlope: {x: 0.29699036, y: -0.073385194, z: -0.010833371, w: -0.23452348} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.90000004 + value: {x: 0.6189496, y: -0.124247, z: -0.07122947, w: 0.7722633} + inSlope: {x: 0.16238639, y: 0.5849666, z: 0.07939961, w: -0.02971983} + outSlope: {x: 0.16238639, y: 0.5849666, z: 0.07939961, w: -0.02971983} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.62288576, y: -0.0685331, z: -0.075622685, w: 0.7756274} + inSlope: {x: -0.02272357, y: 0.22586182, z: 0.04971147, w: 0.044084698} + outSlope: {x: -0.02272357, y: 0.22586182, z: 0.04971147, w: 0.044084698} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.5864411, y: -0.068028994, z: -0.053014956, w: 0.805387} + inSlope: {x: -0.16668515, y: 0.07180023, z: 0.15289456, w: 0.13763858} + outSlope: {x: -0.16668515, y: 0.07180023, z: 0.15289456, w: 0.13763858} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666668 + value: {x: 0.5730164, y: -0.056497846, z: -0.03695639, w: 0.8167585} + inSlope: {x: -0.38592705, y: 0.09869358, z: 0.029597621, w: 0.2738849} + outSlope: {x: -0.38592705, y: 0.09869358, z: 0.029597621, w: 0.2738849} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3000001 + value: {x: 0.55243576, y: -0.05431844, z: -0.039669953, w: 0.83083725} + inSlope: {x: -0.1481922, y: 0.026901687, z: -0.19329011, w: 0.094269015} + outSlope: {x: -0.1481922, y: 0.026901687, z: -0.19329011, w: 0.094269015} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.56313694, y: -0.0547044, z: -0.049842384, w: 0.8230431} + inSlope: {x: 0.19585586, y: 0.03675922, z: -0.2754089, w: -0.146471} + outSlope: {x: 0.19585586, y: 0.03675922, z: -0.2754089, w: -0.146471} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4333334 + value: {x: 0.5493534, y: -0.03971145, z: -0.06097059, w: 0.832416} + inSlope: {x: -0.42956245, y: 0.12823698, z: 0.07501374, w: 0.29311833} + outSlope: {x: -0.42956245, y: 0.12823698, z: 0.07501374, w: 0.29311833} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4666667 + value: {x: 0.5322513, y: -0.036879163, z: -0.056578234, w: 0.84388834} + inSlope: {x: -0.16132195, y: 0.036509894, z: 0.13253805, w: 0.115580276} + outSlope: {x: -0.16132195, y: 0.036509894, z: 0.13253805, w: 0.115580276} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333334 + value: {x: 0.5435719, y: -0.040400017, z: -0.05175875, w: 0.8367906} + inSlope: {x: 0.094134, y: -0.09538475, z: 0.010184301, w: -0.06483173} + outSlope: {x: 0.094134, y: -0.09538475, z: 0.010184301, w: -0.06483173} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6000001 + value: {x: 0.54391104, y: -0.04759839, z: -0.05056515, w: 0.83626455} + inSlope: {x: -0.11433101, y: -0.13210759, z: 0.024610752, w: 0.06772672} + outSlope: {x: -0.11433101, y: -0.13210759, z: 0.024610752, w: 0.06772672} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.5425681, y: -0.06295069, z: -0.061965566, w: 0.8353546} + inSlope: {x: 0.356094, y: -0.29207855, z: -0.4017179, w: -0.28781116} + outSlope: {x: 0.356094, y: -0.29207855, z: -0.4017179, w: -0.28781116} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7333335 + value: {x: 0.58343107, y: -0.07243624, z: -0.08021298, w: 0.80493915} + inSlope: {x: 0.5647304, y: 0.08406054, z: 0.06855842, w: -0.39171827} + outSlope: {x: 0.5647304, y: 0.08406054, z: 0.06855842, w: -0.39171827} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.8000001 + value: {x: 0.6052522, y: -0.06593002, z: -0.07161369, w: 0.7900598} + inSlope: {x: 0.024798833, y: -0.056726985, z: -0.07238775, w: -0.03038231} + outSlope: {x: 0.024798833, y: -0.056726985, z: -0.07238775, w: -0.03038231} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.8666668 + value: {x: 0.5960011, y: -0.06952823, z: -0.07162786, w: 0.79675466} + inSlope: {x: -0.105833575, y: 0.044415157, z: 0.20562778, w: 0.10120948} + outSlope: {x: -0.105833575, y: 0.044415157, z: 0.20562778, w: 0.10120948} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.0666668 + value: {x: 0.6016355, y: -0.06895926, z: -0.05969345, w: 0.79354644} + inSlope: {x: 0.0713817, y: 0.012279499, z: 0.0038055, w: -0.052748375} + outSlope: {x: 0.0713817, y: 0.012279499, z: 0.0038055, w: -0.052748375} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.60672975, y: -0.068078876, z: -0.06844522, w: 0.7890244} + inSlope: {x: -0.013105286, y: 0.026135135, z: -0.12761113, w: 0.0013455767} + outSlope: {x: -0.013105286, y: 0.026135135, z: -0.12761113, w: 0.0013455767} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.2 + value: {x: 0.6054652, y: -0.06678491, z: -0.07201767, w: 0.7897881} + inSlope: {x: 0.08393265, y: -0.016490236, z: -0.16034216, w: -0.08154906} + outSlope: {x: 0.08393265, y: -0.016490236, z: -0.16034216, w: -0.08154906} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.266667 + value: {x: 0.6124036, y: -0.06939768, z: -0.08022388, w: 0.7833964} + inSlope: {x: -0.115758896, y: 0.021172732, z: 0.037404116, w: 0.095071904} + outSlope: {x: -0.115758896, y: 0.021172732, z: 0.037404116, w: 0.095071904} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.60322165, y: -0.06905881, z: -0.0780011, w: 0.7907404} + inSlope: {x: -0.0042960104, y: -0.034523416, z: -0.035116408, w: -0.003184679} + outSlope: {x: -0.0042960104, y: -0.034523416, z: -0.035116408, w: -0.003184679} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.5333335 + value: {x: 0.6051066, y: -0.06575553, z: -0.07492122, w: 0.7898792} + inSlope: {x: -0.039236285, y: 0.042936284, z: 0.057580378, w: 0.039076246} + outSlope: {x: -0.039236285, y: 0.042936284, z: 0.057580378, w: 0.039076246} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.9333334 + value: {x: 0.5824353, y: -0.06064282, z: -0.067811005, w: 0.80777055} + inSlope: {x: -0.0465167, y: 0.0020883253, z: 0.001838656, w: 0.03391925} + outSlope: {x: -0.0465167, y: 0.0020883253, z: 0.001838656, w: 0.03391925} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.19113155, y: -0.033017974, z: 0.12226538, w: 0.97336} + inSlope: {x: 0.025781391, y: 0.020285098, z: 0.0065566595, w: -0.00521779} + outSlope: {x: 0.025781391, y: 0.020285098, z: 0.0065566595, w: -0.00521779} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.22117467, y: -0.03676952, z: 0.122956514, w: 0.96675307} + inSlope: {x: 0.5942146, y: -0.09023148, z: 0.0082492465, w: -0.14240475} + outSlope: {x: 0.5942146, y: -0.09023148, z: 0.0082492465, w: -0.14240475} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.24391367, y: -0.04021712, z: 0.12324895, w: 0.9610923} + inSlope: {x: 0.3819343, y: -0.057904758, z: 0.004838594, w: -0.0956592} + outSlope: {x: 0.3819343, y: -0.057904758, z: 0.004838594, w: -0.0956592} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: 0.24663696, y: -0.040629838, z: 0.12327909, w: 0.9603758} + inSlope: {x: 0.23536764, y: -0.030075945, z: -0.0024782498, w: -0.06276369} + outSlope: {x: 0.23536764, y: -0.030075945, z: -0.0024782498, w: -0.06276369} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.29683867, y: -0.047479093, z: 0.12319173, w: 0.94575703} + inSlope: {x: 0.015843809, y: -0.0035278313, z: 0.0015772509, w: -0.005262494} + outSlope: {x: 0.015843809, y: -0.0035278313, z: 0.0015772509, w: -0.005262494} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: 0.23161891, y: -0.038649376, z: 0.12302893, w: 0.96422136} + inSlope: {x: -0.85404396, y: 0.042300493, z: -0.03372199, w: 0.21025579} + outSlope: {x: -0.85404396, y: 0.042300493, z: -0.03372199, w: 0.21025579} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5666667 + value: {x: 0.18987377, y: -0.037832834, z: 0.120899454, w: 0.9736015} + inSlope: {x: 0.36267516, y: 0.06674326, z: 0.039532203, w: -0.07672644} + outSlope: {x: 0.36267516, y: 0.06674326, z: 0.039532203, w: -0.07672644} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.70000005 + value: {x: 0.27922827, y: -0.044613563, z: 0.122421674, w: 0.95134336} + inSlope: {x: 0.4410436, y: -0.05224467, z: -0.012977757, w: -0.12826857} + outSlope: {x: 0.4410436, y: -0.05224467, z: -0.012977757, w: -0.12826857} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.27173853, y: -0.04420519, z: 0.12312799, w: 0.9534378} + inSlope: {x: -0.6436008, y: 0.08946305, z: 0.0066985977, w: 0.18197802} + outSlope: {x: -0.6436008, y: 0.08946305, z: 0.0066985977, w: 0.18197802} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.86666673 + value: {x: 0.2438705, y: -0.04014079, z: 0.12320808, w: 0.9611117} + inSlope: {x: -0.63312256, y: 0.09253065, z: -0.0008444517, w: 0.1695263} + outSlope: {x: -0.63312256, y: 0.09253065, z: -0.0008444517, w: 0.1695263} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.90000004 + value: {x: 0.22953035, y: -0.038036477, z: 0.12307169, w: 0.96473956} + inSlope: {x: -0.6834593, y: 0.10260262, z: -0.009187233, w: 0.16140994} + outSlope: {x: -0.6834593, y: 0.10260262, z: -0.009187233, w: 0.16140994} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9333334 + value: {x: 0.19830653, y: -0.033300612, z: 0.1225956, w: 0.9718724} + inSlope: {x: -0.587146, y: 0.089172736, z: -0.009222437, w: 0.13159895} + outSlope: {x: -0.587146, y: 0.089172736, z: -0.009222437, w: 0.13159895} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.19943011, y: -0.033470944, z: 0.12261467, w: 0.9716342} + inSlope: {x: 0.6245892, y: -0.094851285, z: 0.009712821, w: -0.1408461} + outSlope: {x: 0.6245892, y: -0.094851285, z: 0.009712821, w: -0.1408461} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0333334 + value: {x: 0.23202662, y: -0.038415056, z: 0.123104386, w: 0.9641231} + inSlope: {x: 0.72606194, y: -0.07363119, z: 0.023346279, w: -0.17383552} + outSlope: {x: 0.72606194, y: -0.07363119, z: 0.023346279, w: -0.17383552} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.24783431, y: -0.038379703, z: 0.124171086, w: 0.96004516} + inSlope: {x: 0.5366589, y: 0.36957943, z: 0.16602185, w: -0.15205726} + outSlope: {x: 0.5366589, y: 0.36957943, z: 0.16602185, w: -0.15205726} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.26780385, y: -0.013776452, z: 0.1341725, w: 0.9539859} + inSlope: {x: 0.5124767, y: 0.4560268, z: 0.19871226, w: -0.15834591} + outSlope: {x: 0.5124767, y: 0.4560268, z: 0.19871226, w: -0.15834591} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2 + value: {x: 0.2852959, y: -0.008358871, z: 0.13762107, w: 0.9484708} + inSlope: {x: -0.32531694, y: 0.035692684, z: -0.028852774, w: 0.09997944} + outSlope: {x: -0.32531694, y: 0.035692684, z: -0.028852774, w: 0.09997944} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.18968742, y: -0.01287964, z: 0.12775004, w: 0.97341293} + inSlope: {x: -0.5732778, y: -0.088439375, z: -0.0656877, w: 0.122907735} + outSlope: {x: -0.5732778, y: -0.088439375, z: -0.0656877, w: 0.122907735} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4666667 + value: {x: 0.21480298, y: -0.020837145, z: 0.12615456, w: 0.9682513} + inSlope: {x: 0.5873246, y: -0.12320903, z: -0.018496264, w: -0.13014424} + outSlope: {x: 0.5873246, y: -0.12320903, z: -0.018496264, w: -0.13014424} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6000001 + value: {x: 0.24926946, y: -0.03054235, z: 0.12303272, w: 0.9601015} + inSlope: {x: -0.27666166, y: -0.10691957, z: -0.045202248, w: 0.072315946} + outSlope: {x: -0.27666166, y: -0.10691957, z: -0.045202248, w: 0.072315946} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6333334 + value: {x: 0.23438479, y: -0.035417963, z: 0.12108385, w: 0.9639233} + inSlope: {x: -0.5500764, y: 0.107265696, z: 0.0210063, w: 0.13201042} + outSlope: {x: -0.5500764, y: 0.107265696, z: 0.0210063, w: 0.13201042} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7333335 + value: {x: 0.17133275, y: -0.010172739, z: 0.12684613, w: 0.9769604} + inSlope: {x: -0.52345484, y: -0.2688689, z: -0.09281284, w: 0.100285895} + outSlope: {x: -0.52345484, y: -0.2688689, z: -0.09281284, w: 0.100285895} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7666668 + value: {x: 0.1567319, y: -0.026989285, z: 0.12176893, w: 0.9797342} + inSlope: {x: -0.15680209, y: -0.2160286, z: -0.06286612, w: 0.030814141} + outSlope: {x: -0.15680209, y: -0.2160286, z: -0.06286612, w: 0.030814141} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.18093145, y: -0.016446011, z: 0.1257428, w: 0.97528565} + inSlope: {x: 0.476619, y: 0.035452187, z: 0.0332797, w: -0.089691244} + outSlope: {x: 0.476619, y: 0.035452187, z: 0.0332797, w: -0.089691244} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9333334 + value: {x: 0.2099832, y: -0.030118017, z: 0.12378819, w: 0.9693691} + inSlope: {x: 0.27021915, y: 0.11380605, z: 0.054349728, w: -0.062221833} + outSlope: {x: 0.27021915, y: 0.11380605, z: 0.054349728, w: -0.062221833} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.1000001 + value: {x: 0.21695065, y: -0.022815872, z: 0.1263934, w: 0.96769655} + inSlope: {x: -0.28306988, y: -0.17790681, z: -0.076820664, w: 0.068211325} + outSlope: {x: -0.28306988, y: -0.17790681, z: -0.076820664, w: 0.068211325} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.266667 + value: {x: 0.18263556, y: -0.026673457, z: 0.12339983, w: 0.9750412} + inSlope: {x: 0.10266516, y: -0.10567637, z: -0.021360526, w: -0.019913621} + outSlope: {x: 0.10266516, y: -0.10567637, z: -0.021360526, w: -0.019913621} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.4333334 + value: {x: 0.19610928, y: -0.032956623, z: 0.122560345, w: 0.9723343} + inSlope: {x: -0.06854392, y: 0.010267114, z: -0.0012445461, w: 0.014302446} + outSlope: {x: -0.06854392, y: 0.010267114, z: -0.0012445461, w: 0.014302446} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.9333334 + value: {x: 0.19112791, y: -0.033020288, z: 0.12226458, w: 0.9733608} + inSlope: {x: -0.0036983227, y: -0.0016126797, z: -0.00059634505, w: 0.00074744294} + outSlope: {x: -0.0036983227, y: -0.0016126797, z: -0.00059634505, w: 0.00074744294} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot/mixamorig:RightToeBase + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.04573715, y: -0.039433047, z: -0.0727525, w: 0.99552006} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.04573715, y: -0.039433047, z: -0.0727525, w: 0.99552006} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot/mixamorig:RightToeBase/mixamorig:RightToe_End + m_CompressedRotationCurves: [] + m_EulerCurves: [] + m_PositionCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.00017397823, y: 0.017749803, z: -0.0005229331} + inSlope: {x: 0.00017339819, y: -0.00030748156, z: 0.0010361257} + outSlope: {x: 0.00017339819, y: -0.00030748156, z: 0.0010361257} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.00017975825, y: 0.017739553, z: -0.00048839574} + inSlope: {x: 0.00010571766, y: -0.00018009792, z: 0.0012663646} + outSlope: {x: 0.00010571894, y: -0.00017987657, z: 0.0012663732} + tangentMode: 0 + weightedMode: 0 + 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.00018348255, y: 0.017751995, z: -0.00037800524} + inSlope: {x: 0.00016788064, y: 0.00087150675, z: 0.001868976} + outSlope: {x: 0.00016788434, y: 0.0008716052, z: 0.0018689792} + tangentMode: 0 + weightedMode: 0 + 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.00020240952, y: 0.017875388, z: -0.000247236} + inSlope: {x: 0.00020503621, y: 0.0030557613, z: 0.0021246187} + outSlope: {x: 0.00020503928, y: 0.0030558188, z: 0.0021246234} + tangentMode: 0 + weightedMode: 0 + 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.00020588742, y: 0.017999617, z: -0.00017226895} + inSlope: {x: 0.000073009665, y: 0.004251829, z: 0.0023267043} + outSlope: {x: 0.00007300875, y: 0.0042518405, z: 0.0023267106} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.23333333 + value: {x: 0.00020727665, y: 0.018158853, z: -0.00009212235} + inSlope: {x: 0.0001591614, y: 0.0044950275, z: 0.0022868647} + outSlope: {x: 0.00015916195, y: 0.004495048, z: 0.0022868584} + tangentMode: 0 + weightedMode: 0 + 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.0002164982, y: 0.018299287, z: -0.000019811567} + inSlope: {x: 0.0003407405, y: 0.0035657266, z: 0.0019076542} + outSlope: {x: 0.00034074244, y: 0.0035657708, z: 0.0019076633} + tangentMode: 0 + weightedMode: 0 + 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.0002299927, y: 0.018396568, z: 0.00003505532} + inSlope: {x: 0.00032227027, y: 0.002218706, z: 0.0013348146} + outSlope: {x: 0.0003222738, y: 0.0022187384, z: 0.0013348216} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: 0.00023532673, y: 0.018446041, z: 0.00008281923} + inSlope: {x: -0.00019076043, y: -0.0012567264, z: 0.00007704451} + outSlope: {x: -0.00019075791, y: -0.0012564351, z: 0.00007704577} + tangentMode: 0 + weightedMode: 0 + 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.00021514742, y: 0.018164808, z: 0.000039582304} + inSlope: {x: -0.00025387533, y: -0.0068692286, z: -0.0014521416} + outSlope: {x: -0.00025387306, y: -0.0068693897, z: -0.0014521417} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.46666667 + value: {x: 0.00020834093, y: 0.017905444, z: -0.000022496755} + inSlope: {x: -0.0002141535, y: -0.0066813803, z: -0.0022078138} + outSlope: {x: -0.00021415418, y: -0.0066813296, z: -0.0022078129} + tangentMode: 0 + weightedMode: 0 + 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.00020087032, y: 0.017719371, z: -0.00010760574} + inSlope: {x: -0.00014593612, y: -0.003792718, z: -0.0027245362} + outSlope: {x: -0.00014593614, y: -0.003792708, z: -0.0027245213} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: 0.00019861174, y: 0.017652597, z: -0.000204133} + inSlope: {x: 0.00021938149, y: -0.0005505589, z: -0.0018540933} + outSlope: {x: 0.0002193788, y: -0.0005506266, z: -0.0018541362} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.56666666 + value: {x: 0.00021549563, y: 0.01768267, z: -0.00023121426} + inSlope: {x: 0.000434456, y: 0.001985979, z: 0.000366333} + outSlope: {x: 0.00043445165, y: 0.0019859856, z: 0.00036632313} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.6 + value: {x: 0.00022757569, y: 0.017784994, z: -0.0001797106} + inSlope: {x: -0.0000053823464, y: 0.0042722477, z: 0.0019056996} + outSlope: {x: -0.000005376046, y: 0.0042723124, z: 0.0019057308} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.6333333 + value: {x: 0.00021513725, y: 0.017967492, z: -0.000104166174} + inSlope: {x: -0.00027637786, y: 0.0052881474, z: 0.0021484669} + outSlope: {x: -0.00027637632, y: 0.0052879537, z: 0.0021484436} + tangentMode: 0 + weightedMode: 0 + 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.00020915046, y: 0.018137537, z: -0.000036479756} + inSlope: {x: -0.00013636937, y: 0.0044945315, z: 0.0018233521} + outSlope: {x: -0.0001363715, y: 0.0044947625, z: 0.00182338} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.7 + value: {x: 0.00020604575, y: 0.018267153, z: 0.000017392049} + inSlope: {x: -0.00011103418, y: 0.0030226968, z: 0.0013070283} + outSlope: {x: -0.000111034926, y: 0.0030225879, z: 0.0013070151} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.73333335 + value: {x: 0.00020174817, y: 0.018339051, z: 0.0000506552} + inSlope: {x: -0.000083579565, y: 0.0010687492, z: 0.0005753406} + outSlope: {x: -0.000083579595, y: 0.0010691942, z: 0.00057535} + tangentMode: 0 + weightedMode: 0 + 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.00020047378, y: 0.018338423, z: 0.000055748646} + inSlope: {x: -0.0000496129, y: -0.0008764735, z: -0.00015064317} + outSlope: {x: -0.000049608036, y: -0.00087651936, z: -0.00015064028} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.8 + value: {x: 0.00019844079, y: 0.018280612, z: 0.000040612304} + inSlope: {x: 0.00014037629, y: -0.0026917346, z: -0.0007831042} + outSlope: {x: 0.00014037717, y: -0.002691586, z: -0.00078311126} + tangentMode: 0 + weightedMode: 0 + 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.000209832, y: 0.018158983, z: 0.000003541399} + inSlope: {x: 0.00081942906, y: -0.0046917493, z: -0.0016478878} + outSlope: {x: 0.0008194132, y: -0.0046919095, z: -0.0016478614} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.8666667 + value: {x: 0.00025306913, y: 0.017967831, z: -0.00006924654} + inSlope: {x: 0.0014656894, y: -0.0056500104, z: -0.0024431527} + outSlope: {x: 0.0014657037, y: -0.005649762, z: -0.0024431758} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.9 + value: {x: 0.0003075454, y: 0.017782329, z: -0.00015933672} + inSlope: {x: 0.0014881459, y: -0.004453921, z: -0.0025240066} + outSlope: {x: 0.0014881225, y: -0.0044536497, z: -0.0025239694} + tangentMode: 0 + weightedMode: 0 + 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.0003522783, y: 0.017670918, z: -0.00023751288} + inSlope: {x: 0.0011652624, y: -0.0021707937, z: -0.0016401557} + outSlope: {x: 0.0011652663, y: -0.0021709562, z: -0.0016401736} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.96666664 + value: {x: 0.0003852299, y: 0.01763761, z: -0.00026868156} + inSlope: {x: 0.0007797304, y: 0.00027556115, z: 0.000118141026} + outSlope: {x: 0.00077972637, y: 0.00027536452, z: 0.000118130025} + tangentMode: 0 + weightedMode: 0 + 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.00040426012, y: 0.017689282, z: -0.00022963677} + inSlope: {x: 0.00047832934, y: 0.0025847869, z: 0.0016026037} + outSlope: {x: 0.00047833117, y: 0.0025848034, z: 0.0016026112} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.0333333 + value: {x: 0.00041711875, y: 0.017809937, z: -0.00016184081} + inSlope: {x: 0.00040150495, y: 0.004263953, z: 0.0019525706} + outSlope: {x: 0.00040149997, y: 0.0042638285, z: 0.0019525228} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.0666667 + value: {x: 0.00043102689, y: 0.017973555, z: -0.00009946609} + inSlope: {x: 0.00042243075, y: 0.0047665494, z: 0.0016966772} + outSlope: {x: 0.00042244524, y: 0.0047666794, z: 0.0016967356} + tangentMode: 0 + weightedMode: 0 + 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.00044528107, y: 0.01812772, z: -0.000048726157} + inSlope: {x: 0.00027633386, y: 0.0038964506, z: 0.0011952246} + outSlope: {x: 0.0002763368, y: 0.0038965817, z: 0.0011952319} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.1333333 + value: {x: 0.000449449, y: 0.018233323, z: -0.00001978426} + inSlope: {x: -0.00005843407, y: 0.0022503003, z: 0.0005372176} + outSlope: {x: -0.000058432634, y: 0.0022502695, z: 0.00053721544} + tangentMode: 0 + weightedMode: 0 + 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.00044138517, y: 0.018277733, z: -0.00001291175} + inSlope: {x: -0.00027130125, y: 0.00026747677, z: -0.0001812036} + outSlope: {x: -0.00027130175, y: 0.0002674914, z: -0.00018119326} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.2 + value: {x: 0.00043136207, y: 0.018251158, z: -0.00003186448} + inSlope: {x: -0.00035243307, y: -0.0016977537, z: -0.000892015} + outSlope: {x: -0.00035244704, y: -0.0016977851, z: -0.0008920378} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.2333333 + value: {x: 0.00041788904, y: 0.018164543, z: -0.00007238039} + inSlope: {x: -0.000669097, y: -0.0033280586, z: -0.0014089287} + outSlope: {x: -0.0006690906, y: -0.0033283378, z: -0.0014089335} + tangentMode: 0 + weightedMode: 0 + 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.00038675586, y: 0.01802928, z: -0.0001257932} + inSlope: {x: -0.0010187307, y: -0.0045297984, z: -0.0017871625} + outSlope: {x: -0.0010187317, y: -0.004529887, z: -0.0017871573} + tangentMode: 0 + weightedMode: 0 + 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.00031271033, y: 0.017737502, z: -0.0002494553} + inSlope: {x: -0.0012246099, y: -0.0027149362, z: -0.0013657674} + outSlope: {x: -0.0012246404, y: -0.0027152118, z: -0.0013658119} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.3666667 + value: {x: 0.00026833144, y: 0.01768154, z: -0.00028257797} + inSlope: {x: -0.0014179432, y: -0.00061099563, z: -0.0005589053} + outSlope: {x: -0.0014179457, y: -0.00061067916, z: -0.00055890233} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.4 + value: {x: 0.00021818075, y: 0.017696768, z: -0.0002867155} + inSlope: {x: -0.0014520747, y: 0.001474123, z: 0.000008539762} + outSlope: {x: -0.0014520641, y: 0.0014735386, z: 0.000008541971} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.4666667 + value: {x: 0.00012503877, y: 0.017899692, z: -0.00027810354} + inSlope: {x: -0.00148401, y: 0.0035687925, z: 0.00001383799} + outSlope: {x: -0.0014840494, y: 0.003568969, z: 0.000013838462} + tangentMode: 0 + weightedMode: 0 + 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.00007259103, y: 0.018017722, z: -0.00028108616} + inSlope: {x: -0.0015974188, y: 0.0030246929, z: -0.00029125778} + outSlope: {x: -0.0015974178, y: 0.0030247408, z: -0.0002912547} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.5333333 + value: {x: 0.000018544399, y: 0.018101351, z: -0.00029752063} + inSlope: {x: -0.0014701395, y: 0.0017859847, z: -0.0007213345} + outSlope: {x: -0.0014701028, y: 0.0017859836, z: -0.00072131754} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.5666667 + value: {x: -0.00002541763, y: 0.018136783, z: -0.00032917506} + inSlope: {x: -0.0010955333, y: 0.00032022412, z: -0.0012178309} + outSlope: {x: -0.0010955717, y: 0.00032019138, z: -0.0012178642} + tangentMode: 0 + weightedMode: 0 + 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.00005449312, y: 0.01812269, z: -0.0003787106} + inSlope: {x: -0.00076462846, y: -0.0011680528, z: -0.0018217716} + outSlope: {x: -0.00076463335, y: -0.0011680543, z: -0.001821788} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.6333333 + value: {x: -0.00007639295, y: 0.018058907, z: -0.0004506271} + inSlope: {x: -0.00067283143, y: -0.0025488397, z: -0.0024236839} + outSlope: {x: -0.0006728303, y: -0.0025489929, z: -0.0024236792} + tangentMode: 0 + weightedMode: 0 + 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.00009934841, y: 0.017952759, z: -0.0005402891} + inSlope: {x: -0.0007314305, y: -0.0033497396, z: -0.002787534} + outSlope: {x: -0.0007314103, y: -0.0033496388, z: -0.0027874499} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.7 + value: {x: -0.00012515468, y: 0.017835598, z: -0.0006364612} + inSlope: {x: -0.0007149698, y: -0.0033380585, z: -0.0028584164} + outSlope: {x: -0.00071498996, y: -0.0033380534, z: -0.002858505} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.7333333 + value: {x: -0.00014701409, y: 0.01773022, z: -0.0007308541} + inSlope: {x: -0.00042040038, y: -0.0026081514, z: -0.0022910894} + outSlope: {x: -0.00042040224, y: -0.0026081752, z: -0.0022911092} + tangentMode: 0 + weightedMode: 0 + 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.00015318145, y: 0.017661728, z: -0.0007892014} + inSlope: {x: 0.000112060654, y: -0.0012376079, z: -0.00064001634} + outSlope: {x: 0.000112059366, y: -0.0012377085, z: -0.00064000575} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.8 + value: {x: -0.0001395435, y: 0.017647708, z: -0.0007735207} + inSlope: {x: 0.0006856881, y: 0.00006661255, z: 0.0011251449} + outSlope: {x: 0.0006856644, y: 0.000066542365, z: 0.0011250876} + tangentMode: 0 + weightedMode: 0 + 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.00010746917, y: 0.017666178, z: -0.00071419217} + inSlope: {x: 0.0010171757, y: 0.0006336365, z: 0.0016473186} + outSlope: {x: 0.0010172051, y: 0.0006339248, z: 0.0016473734} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.9 + value: {x: -0.000032144264, y: 0.01772187, z: -0.0006286294} + inSlope: {x: 0.0012641147, y: 0.0010538723, z: 0.00094753643} + outSlope: {x: 0.0012641045, y: 0.0010537326, z: 0.0009475219} + tangentMode: 0 + weightedMode: 0 + 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.000012543522, y: 0.017760225, z: -0.0006005277} + inSlope: {x: 0.0012917573, y: 0.0011375197, z: 0.0008288074} + outSlope: {x: 0.0012917159, y: 0.0011377082, z: 0.0008287851} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.9666667 + value: {x: 0.000053972093, y: 0.01779772, z: -0.0005733761} + inSlope: {x: 0.0010809314, y: 0.0010275249, z: 0.0008318718} + outSlope: {x: 0.0010809609, y: 0.001027624, z: 0.00083188934} + tangentMode: 0 + weightedMode: 0 + 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.00008460724, y: 0.017828729, z: -0.0005450689} + inSlope: {x: 0.0007675101, y: 0.00083263154, z: 0.0008299416} + outSlope: {x: 0.000767511, y: 0.0008326367, z: 0.0008299384} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.1 + value: {x: 0.00013559533, y: 0.017868042, z: -0.00048094298} + inSlope: {x: 0.0005181685, y: -0.00040061172, z: 0.00007404117} + outSlope: {x: 0.0005181384, y: -0.0004007433, z: 0.00007404354} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.1333334 + value: {x: 0.00015512125, y: 0.017841948, z: -0.00048982847} + inSlope: {x: 0.0007202448, y: -0.0012643241, z: -0.0007236532} + outSlope: {x: 0.0007202833, y: -0.0012644657, z: -0.00072368194} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.2 + value: {x: 0.00021362447, y: 0.017704861, z: -0.0005864848} + inSlope: {x: 0.000716108, y: -0.0018191607, z: -0.0016285018} + outSlope: {x: 0.0007161138, y: -0.0018193328, z: -0.0016285297} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.2333333 + value: {x: 0.00023135406, y: 0.017662486, z: -0.0006377549} + inSlope: {x: 0.00045836339, y: -0.000622811, z: -0.0008088107} + outSlope: {x: 0.00045836307, y: -0.00062290655, z: -0.0008088023} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.2666667 + value: {x: 0.00024418204, y: 0.017663343, z: -0.0006404048} + inSlope: {x: 0.00039271277, y: 0.00059813826, z: 0.0006916821} + outSlope: {x: 0.00039270826, y: 0.0005981347, z: 0.00069167727} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.3 + value: {x: 0.00025753502, y: 0.017702362, z: -0.00059164275} + inSlope: {x: 0.00033285609, y: 0.0013246308, z: 0.0014516744} + outSlope: {x: 0.00033285725, y: 0.00132467, z: 0.0014516617} + tangentMode: 0 + weightedMode: 0 + 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.00026637266, y: 0.017751647, z: -0.0005436271} + inSlope: {x: 0.00014159002, y: 0.0012155082, z: 0.001058441} + outSlope: {x: 0.00014159089, y: 0.0012151898, z: 0.0010584104} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.4333334 + value: {x: 0.00026488327, y: 0.017773282, z: -0.00051805977} + inSlope: {x: 0.00014184348, y: -0.0005291364, z: -0.0003498624} + outSlope: {x: 0.00014184316, y: -0.0005291892, z: -0.0003498652} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.5333333 + value: {x: 0.0002849926, y: 0.017735207, z: -0.00055652094} + inSlope: {x: 0.00010754722, y: -0.000041093164, z: 0.000108575296} + outSlope: {x: 0.00010754015, y: -0.00004115961, z: 0.000108572305} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.6 + value: {x: 0.00028809052, y: 0.017742569, z: -0.00053310074} + inSlope: {x: -0.000007034316, y: 0.00012716746, z: 0.00027279794} + outSlope: {x: -0.000007034817, y: 0.00012674763, z: 0.0002727844} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.7666667 + value: {x: 0.0002394426, y: 0.017745554, z: -0.00051030685} + inSlope: {x: -0.0005281055, y: 0.00004175564, z: 0.00015614073} + outSlope: {x: -0.00052810425, y: 0.000041828866, z: 0.00015614236} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.8 + value: {x: 0.00022104922, y: 0.017747339, z: -0.0005039393} + inSlope: {x: -0.00047766912, y: 0.000054090408, z: 0.00006401052} + outSlope: {x: -0.00047766292, y: 0.00005398482, z: 0.0000640071} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.8666666 + value: {x: 0.00019408065, y: 0.017750297, z: -0.00051006343} + inSlope: {x: -0.0003960971, y: 0.000017918872, z: -0.00013650257} + outSlope: {x: -0.00039606795, y: 0.000017806351, z: -0.00013649264} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.9 + value: {x: 0.00018119247, y: 0.01775034, z: -0.00051514007} + inSlope: {x: -0.0003027899, y: -0.0000073977417, z: -0.00019493146} + outSlope: {x: -0.00030281246, y: -0.0000073347815, z: -0.00019493666} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.9333334 + value: {x: 0.00017389335, y: 0.017749814, z: -0.00052305934} + inSlope: {x: -0.00021897205, y: -0.00001567944, z: -0.00023756998} + outSlope: {x: -0.00021897205, y: -0.00001567944, z: -0.00023756998} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips + m_ScaleCurves: [] + m_FloatCurves: [] + m_PPtrCurves: [] + m_SampleRate: 30 + 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: 1083781737 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1083781737 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 408225041 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3001700786 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3132553515 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 168334831 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 215603437 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1852142506 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1775379527 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1207142558 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3198065886 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2486468252 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1925155201 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1714668715 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2119318601 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2334650127 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1454392865 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2471676248 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 565509406 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2364716999 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3092991833 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2853632173 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 407569882 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3106263194 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 688943277 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2140469971 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1021604224 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 733358149 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1601611806 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 4126269581 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2280639224 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3984737358 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3155596823 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1692231856 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3048725362 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1185900278 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2828911296 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1886386198 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 395264987 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 4080340377 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3974837130 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1014061991 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1587372701 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 357817416 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1651132406 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1915810720 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2015721024 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 407230557 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2938783533 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 10533847 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 523512273 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 4220895696 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2538289614 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3575002567 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 971364194 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1941555904 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3482077456 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 440322630 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1935085395 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2435940167 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3169137491 + 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.9333334 + 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/Jammo-Character/Animations/Default/a_Idle_Happy.anim.meta b/Assets/Jammo-Character/Animations/Default/a_Idle_Happy.anim.meta new file mode 100644 index 0000000..3b63265 --- /dev/null +++ b/Assets/Jammo-Character/Animations/Default/a_Idle_Happy.anim.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 9045b628a2e38a246a988d3abea05c36 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 7400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Jammo-Character/Animations/Default/a_Idle_Relaxed.anim b/Assets/Jammo-Character/Animations/Default/a_Idle_Relaxed.anim new file mode 100644 index 0000000..46e9dee --- /dev/null +++ b/Assets/Jammo-Character/Animations/Default/a_Idle_Relaxed.anim @@ -0,0 +1,3490 @@ +%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: a_Idle_Relaxed + 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, 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.033333335 + 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: Armature.001 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.031590883, y: 0.04678321, z: 0.023183484, w: 0.9981362} + inSlope: {x: 0.0046293805, y: -0.00043630597, z: -0.00015797092, w: 0.00016987322} + outSlope: {x: 0.0046293805, y: -0.00043630597, z: -0.00015797092, w: 0.00016987322} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.03203505, y: 0.044571258, z: 0.02167192, w: 0.9982572} + inSlope: {x: -0.003163048, y: -0.010141538, z: -0.0020445683, w: 0.00039607266} + outSlope: {x: -0.003163048, y: -0.010141538, z: -0.0020445683, w: 0.00039607266} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.7 + value: {x: -0.037150484, y: 0.041206226, z: 0.021234682, w: 0.998234} + inSlope: {x: -0.0021219552, y: -0.0076616616, z: -0.0012121033, w: 0.00026285616} + outSlope: {x: -0.0021219552, y: -0.0076616616, z: -0.0012121033, w: 0.00026285616} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.035397507, y: 0.044962615, z: 0.019327136, w: 0.99817425} + inSlope: {x: 0.0018525141, y: -0.0006067945, z: 0.0026978299, w: 0.000041127245} + outSlope: {x: 0.0018525141, y: -0.0006067945, z: 0.0026978299, w: 0.000041127245} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.933334 + value: {x: -0.03734878, y: 0.045624252, z: 0.021403277, w: 0.9980308} + inSlope: {x: -0.001699777, y: -0.0077832127, z: -0.00030985012, w: 0.00029951145} + outSlope: {x: -0.001699777, y: -0.0077832127, z: -0.00030985012, w: 0.00029951145} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.6000004 + value: {x: -0.033939835, y: 0.04787994, z: 0.022550147, w: 0.9980216} + inSlope: {x: -0.007935323, y: -0.0016391106, z: 0.0010535504, w: -0.00021457692} + outSlope: {x: -0.007935323, y: -0.0016391106, z: 0.0010535504, w: -0.00021457692} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.031590883, y: 0.04678321, z: 0.023183484, w: 0.9981362} + inSlope: {x: 0.0067595234, y: 0.0052997507, z: 0.0018968552, w: -0.000076888966} + outSlope: {x: 0.0067595234, y: 0.0052997507, z: 0.0018968552, w: -0.000076888966} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.029190075, y: -0.013022627, z: -0.016130297, w: 0.9993589} + inSlope: {x: -0.00088093797, y: 0.0012547149, z: 0.0009227916, w: 0.000057220455} + outSlope: {x: -0.00088093797, y: 0.0012547149, z: 0.0009227916, w: 0.000057220455} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6333334 + value: {x: 0.032090858, y: -0.017044641, z: -0.018400684, w: 0.9991702} + inSlope: {x: 0.0040936694, y: -0.0030168174, z: -0.003994176, w: -0.00025659823} + outSlope: {x: 0.0040936694, y: -0.0030168174, z: -0.003994176, w: -0.00025659823} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.266667 + value: {x: 0.030467588, y: -0.01637296, z: -0.020037148, w: 0.99920076} + inSlope: {x: -0.003100329, y: 0.0053002173, z: -0.003344243, w: 0.00011444103} + outSlope: {x: -0.003100329, y: 0.0053002173, z: -0.003344243, w: 0.00011444103} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.9333334 + value: {x: 0.028104797, y: -0.013908418, z: -0.01828218, w: 0.999341} + inSlope: {x: 0.0052140234, y: -0.0016512226, z: -0.0023754896, w: -0.00021278879} + outSlope: {x: 0.0052140234, y: -0.0016512226, z: -0.0023754896, w: -0.00021278879} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.566667 + value: {x: 0.03827611, y: -0.016906384, z: -0.021835899, w: 0.9988856} + inSlope: {x: -0.008077424, y: 0.00760231, z: 0.0035765334, w: 0.00051587867} + outSlope: {x: -0.008077424, y: 0.00760231, z: 0.0035765334, w: 0.00051587867} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.233334 + value: {x: 0.02919632, y: -0.0130242305, z: -0.016188264, w: 0.99935776} + inSlope: {x: -0.0001432194, y: 0.00002422405, z: 0.001101132, w: 0.000022351802} + outSlope: {x: -0.0001432194, y: 0.00002422405, z: 0.001101132, w: 0.000022351802} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.029190075, y: -0.013022627, z: -0.016130297, w: 0.9993589} + inSlope: {x: -0.000023189623, y: 0.000070909955, z: -0.00023854578, w: -0.0000017881155} + outSlope: {x: -0.000023189623, y: 0.000070909955, z: -0.00023854578, w: -0.0000017881155} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.010091135, y: -0.0028256783, z: -0.013579334, w: 0.9998529} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.010091135, y: -0.0028256783, z: -0.013579334, w: 0.9998529} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.0026768663, y: -0.0028502282, z: -0.013644363, w: 0.99989927} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.0026768663, y: -0.0028502282, z: -0.013644363, w: 0.99989927} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.0745447, y: 0.00088129815, z: -0.00392961, w: 0.99720955} + inSlope: {x: 0.00010482966, y: -0.00006105169, z: -0.00025609508, w: -0.000008940696} + outSlope: {x: 0.00010482966, y: -0.00006105169, z: -0.00025609508, w: -0.000008940696} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6333334 + value: {x: 0.07475543, y: 0.0020997021, z: -0.0033386878, w: 0.9971941} + inSlope: {x: 0.00008258977, y: 0.0011367303, z: 0.002219998, w: -0.0000008940715} + outSlope: {x: 0.00008258977, y: 0.0011367303, z: 0.002219998, w: -0.0000008940715} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.266667 + value: {x: 0.076201074, y: 0.0023069598, z: -0.004652949, w: 0.99707896} + inSlope: {x: -0.01051818, y: -0.00022930813, z: -0.0018007908, w: 0.00079572276} + outSlope: {x: -0.01051818, y: -0.00022930813, z: -0.0018007908, w: 0.00079572276} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.9333334 + value: {x: 0.07338588, y: 0.0014501836, z: -0.004808366, w: 0.99729097} + inSlope: {x: 0.003757443, y: 0.00013936848, z: 0.0007544908, w: -0.0002726915} + outSlope: {x: 0.003757443, y: 0.00013936848, z: 0.0007544908, w: -0.0002726915} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.566667 + value: {x: 0.081012264, y: 0.0018470653, z: -0.00284822, w: 0.9967073} + inSlope: {x: -0.0025598356, y: 0.0016985314, z: -0.005986808, w: 0.0001877548} + outSlope: {x: -0.0025598356, y: 0.0016985314, z: -0.005986808, w: 0.0001877548} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.233334 + value: {x: 0.074532986, y: 0.0008872762, z: -0.0039420933, w: 0.9972104} + inSlope: {x: 0.00021759479, y: -0.000118484706, z: 0.00024331347, w: -0.000015199212} + outSlope: {x: 0.00021759479, y: -0.000118484706, z: 0.00024331347, w: -0.000015199212} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.0745447, y: 0.00088129815, z: -0.00392961, w: 0.99720955} + inSlope: {x: 0.00003889151, y: -0.000020984164, z: 0.00004375295, w: -0.0000017881155} + outSlope: {x: 0.00003889151, y: -0.000020984164, z: 0.00004375295, w: -0.0000017881155} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.009639569, y: -0.011769459, z: 0.0024693455, w: 0.99988127} + inSlope: {x: 0.00069192605, y: 0.00005160458, z: 0.00046187776, w: 0.0000053644176} + outSlope: {x: 0.00069192605, y: 0.00005160458, z: 0.00046187776, w: 0.0000053644176} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6333334 + value: {x: -0.017339224, y: -0.007726367, z: 0.002789752, w: 0.99981594} + inSlope: {x: -0.008182449, y: 0.0060235276, z: 0.0006231392, w: -0.00009655961} + outSlope: {x: -0.008182449, y: 0.0060235276, z: 0.0006231392, w: -0.00009655961} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.8000002 + value: {x: -0.01958051, y: -0.006200376, z: 0.0024311207, w: 0.99978614} + inSlope: {x: 0.0058582854, y: -0.0041588666, z: 0.006050476, w: 0.000073313786} + outSlope: {x: 0.0058582854, y: -0.0041588666, z: 0.006050476, w: 0.000073313786} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.8666668 + value: {x: -0.010700869, y: -0.009926143, z: 0.002938023, w: 0.9998892} + inSlope: {x: 0.017535377, y: -0.014289621, z: 0.008227345, w: 0.000021457692} + outSlope: {x: 0.017535377, y: -0.014289621, z: 0.008227345, w: 0.000021457692} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.366667 + value: {x: -0.013708229, y: -0.010044726, z: 0.0011145466, w: 0.999855} + inSlope: {x: -0.0077214306, y: 0.0015301178, z: -0.00015322308, w: -0.000091195194} + outSlope: {x: -0.0077214306, y: 0.0015301178, z: -0.00015322308, w: -0.000091195194} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.933334 + value: {x: -0.016087383, y: -0.008245465, z: 0.0018838916, w: 0.99983484} + inSlope: {x: -0.015079701, y: -0.0004864834, z: -0.0016853432, w: -0.00024765678} + outSlope: {x: -0.015079701, y: -0.0004864834, z: -0.0016853432, w: -0.00024765678} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.0172071, y: -0.006689341, z: -0.000120637735, w: 0.9998296} + inSlope: {x: -0.0038225148, y: 0.005226953, z: -0.0060720057, w: -0.000031292468} + outSlope: {x: -0.0038225148, y: 0.005226953, z: -0.0060720057, w: -0.000031292468} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.200001 + value: {x: -0.009617656, y: -0.01175998, z: 0.002471252, w: 0.99988157} + inSlope: {x: -0.00024039301, y: -0.0001562245, z: -0.00001246465, w: -0.00000447034} + outSlope: {x: -0.00024039301, y: -0.0001562245, z: -0.00001246465, w: -0.00000447034} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.009639569, y: -0.011769459, z: 0.0024693455, w: 0.99988127} + inSlope: {x: -0.000055962428, y: -0.0000141372875, z: -0.000008242095, w: 0} + outSlope: {x: -0.000055962428, y: -0.0000141372875, z: -0.000008242095, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.06928724, y: 0, z: -0, w: 0.99759674} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: -0.06928724, y: 0, z: -0, w: 0.99759674} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head/mixamorig:HeadTop_End + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.40506425, y: -0.45798013, z: 0.59357256, w: 0.5233056} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.40506425, y: -0.45798013, z: 0.59357256, w: 0.5233056} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head/mixamorig:LeftEar + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.40506425, y: 0.45798013, z: -0.59357256, w: 0.5233056} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.40506425, y: 0.45798013, z: -0.59357256, w: 0.5233056} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head/mixamorig:RightEar + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.57108814, y: -0.40547878, z: 0.44845328, w: 0.5552792} + inSlope: {x: -0.00040948388, y: -0.000033080578, z: -0.0014108418, w: 0.0015342234} + outSlope: {x: -0.00040948388, y: -0.000033080578, z: -0.0014108418, w: 0.0015342234} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6333334 + value: {x: 0.5730665, y: -0.40330067, z: 0.44948617, w: 0.5539906} + inSlope: {x: 0.0048717903, y: 0.0064779883, z: -0.00059500395, w: 0.00016182676} + outSlope: {x: 0.0048717903, y: 0.0064779883, z: -0.00059500395, w: 0.00016182676} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.0666668 + value: {x: 0.57110435, y: -0.40581065, z: 0.44944686, w: 0.5542157} + inSlope: {x: -0.0099992845, y: -0.011813354, z: -0.0029996065, w: 0.004084114} + outSlope: {x: -0.0099992845, y: -0.011813354, z: -0.0029996065, w: 0.004084114} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.7000003 + value: {x: 0.56675184, y: -0.4112331, z: 0.44902328, w: 0.5550295} + inSlope: {x: 0.0038990416, y: 0.004844521, z: 0.00035762822, w: -0.00068128173} + outSlope: {x: 0.0038990416, y: 0.004844521, z: 0.00035762822, w: -0.00068128173} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.366667 + value: {x: 0.57520604, y: -0.40004003, z: 0.44806674, w: 0.55528563} + inSlope: {x: 0.0020125352, y: 0.0027751718, z: -0.00047072716, w: 0.00029325587} + outSlope: {x: 0.0020125352, y: 0.0027751718, z: -0.00047072716, w: 0.00029325587} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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 + value: {x: 0.57078195, y: -0.40582475, z: 0.4483078, w: 0.55545866} + inSlope: {x: 0.0014957803, y: 0.0016410667, z: 0.0008574142, w: -0.001031758} + outSlope: {x: 0.0014957803, y: 0.0016410667, z: 0.0008574142, w: -0.001031758} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.57108814, y: -0.40547878, z: 0.44845328, w: 0.5552792} + inSlope: {x: 0.000119803735, y: 0.00014304924, z: 0.00004380883, w: -0.000057219695} + outSlope: {x: 0.000119803735, y: 0.00014304924, z: 0.00004380883, w: -0.000057219695} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.55496204, y: -0.11097585, z: -0.11643211, w: 0.8161771} + inSlope: {x: 0.00096023077, y: -0.0031111387, z: -0.00054605305, w: -0.0011551379} + outSlope: {x: 0.00096023077, y: -0.0031111387, z: -0.00054605305, w: -0.0011551379} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.55487704, y: -0.10749917, z: -0.11751535, w: 0.8165449} + inSlope: {x: 0.004453365, y: 0.008487635, z: 0.00044927042, w: -0.0018435733} + outSlope: {x: 0.004453365, y: 0.008487635, z: 0.00044927042, w: -0.0018435733} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.7 + value: {x: 0.55440885, y: -0.10508149, z: -0.11821498, w: 0.81707644} + inSlope: {x: 0.002272723, y: 0.00016305468, z: 0.00041171117, w: -0.0014618037} + outSlope: {x: 0.002272723, y: 0.00016305468, z: 0.00041171117, w: -0.0014618037} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.5638093, y: -0.11150393, z: -0.115013994, w: 0.81022084} + inSlope: {x: -0.0033125314, y: 0.0059425514, z: -0.0015012561, w: 0.0029093055} + outSlope: {x: -0.0033125314, y: 0.0059425514, z: -0.0015012561, w: 0.0029093055} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.966667 + value: {x: 0.5540919, y: -0.103550136, z: -0.12097544, w: 0.81708294} + inSlope: {x: -0.0025302195, y: 0.0034850868, z: -0.0038361214, w: 0.0015887633} + outSlope: {x: -0.0025302195, y: 0.0034850868, z: -0.0038361214, w: 0.0015887633} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.6333337 + value: {x: 0.55678666, y: -0.11001105, z: -0.11682833, w: 0.81500757} + inSlope: {x: -0.0033608112, y: -0.0022521636, z: 0.0014945506, w: 0.002205672} + outSlope: {x: -0.0033608112, y: -0.0022521636, z: 0.0014945506, w: 0.002205672} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.55496204, y: -0.11097585, z: -0.11643211, w: 0.8161771} + inSlope: {x: -0.00020920951, y: -0.000087841174, z: 0.000010058149, w: 0.00013232055} + outSlope: {x: -0.00020920951, y: -0.000087841174, z: 0.000010058149, w: 0.00013232055} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.0010037951, y: 0.013969596, z: -0.012372809, w: 0.99982536} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.0010037951, y: 0.013969596, z: -0.012372809, w: 0.99982536} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.056351386, y: 0.23269723, z: 0.05613013, w: 0.9692915} + inSlope: {x: 0.0003033131, y: -0.0009258091, z: 0.0013868137, w: 0.00012338161} + outSlope: {x: 0.0003033131, y: -0.0009258091, z: 0.0013868137, w: 0.00012338161} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6333334 + value: {x: 0.05423163, y: 0.2323475, z: 0.054250628, w: 0.96960324} + inSlope: {x: -0.0014552117, y: 0.0028737662, z: -0.0016474368, w: -0.00051498465} + outSlope: {x: -0.0014552117, y: 0.0028737662, z: -0.0016474368, w: -0.00051498465} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.266667 + value: {x: 0.056741886, y: 0.23096299, z: 0.05625101, w: 0.9696764} + inSlope: {x: 0.011952158, y: 0.0024052733, z: -0.00070821564, w: -0.001230241} + outSlope: {x: 0.011952158, y: 0.0024052733, z: -0.00070821564, w: -0.001230241} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.6000004 + value: {x: 0.057808436, y: 0.22624712, z: 0.05578666, w: 0.9707514} + inSlope: {x: -0.01582298, y: 0.003375563, z: -0.003226477, w: 0.00034421717} + outSlope: {x: -0.01582298, y: 0.003375563, z: -0.003226477, w: 0.00034421717} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.8 + value: {x: 0.04976623, y: 0.23660871, z: 0.05103699, w: 0.9689865} + inSlope: {x: -0.010092212, y: 0.014357208, z: -0.0073294784, w: -0.0025981688} + outSlope: {x: -0.010092212, y: 0.014357208, z: -0.0073294784, w: -0.0025981688} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.433334 + value: {x: 0.05707425, y: 0.23335597, z: 0.055418447, w: 0.96913177} + inSlope: {x: 0.0025125616, y: -0.004957174, z: 0.002902153, w: 0.0008797654} + outSlope: {x: 0.0025125616, y: -0.004957174, z: 0.002902153, w: 0.0008797654} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.056351386, y: 0.23269723, z: 0.05613013, w: 0.9692915} + inSlope: {x: -0.00017948209, y: 0.00010058149, z: -0.000022016171, w: -0.000010728693} + outSlope: {x: -0.00017948209, y: 0.00010058149, z: -0.000022016171, w: -0.000010728693} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.15655468, y: -0.17312814, z: -0.31449008, w: 0.92011595} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.15655468, y: -0.17312814, z: -0.31449008, w: 0.92011595} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.03479226, y: -0.23851942, z: 0.29231346, w: 0.9254463} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.03479226, y: -0.23851942, z: 0.29231346, w: 0.9254463} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.09517575, y: 0.030272622, z: 0.07890625, w: 0.9918664} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: -0.09517575, y: 0.030272622, z: 0.07890625, w: 0.9918664} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2/mixamorig:LeftHandThumb3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.020066882, y: 0.040932305, z: 0.014504534, w: 0.9988551} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.020066882, y: 0.040932305, z: 0.014504534, w: 0.9988551} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2/mixamorig:LeftHandThumb3/mixamorig:LeftHandThumb4 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.06220522, y: 0.028157776, z: -0.037405733, w: 0.99696463} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.06220522, y: 0.028157776, z: -0.037405733, w: 0.99696463} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.15035807, y: -0.00516802, z: 0.020790227, w: 0.9883995} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.15035807, y: -0.00516802, z: 0.020790227, w: 0.9883995} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.06983456, y: 0.000000090608566, z: 0.009284205, w: 0.9975154} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.06983456, y: 0.000000090608566, z: 0.009284205, w: 0.9975154} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2/mixamorig:LeftHandIndex3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.04448868, y: -0.00000010674429, z: 0.000000029008364, w: 0.9990099} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.04448868, y: -0.00000010674429, z: 0.000000029008364, w: 0.9990099} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2/mixamorig:LeftHandIndex3/mixamorig:LeftHandIndex4 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.13206403, y: 0.033052523, z: -0.0034361905, w: 0.99068403} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.13206403, y: 0.033052523, z: -0.0034361905, w: 0.99068403} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.15045863, y: -0.013496558, z: 0.021516688, w: 0.98828995} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.15045863, y: -0.013496558, z: 0.021516688, w: 0.98828995} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.15932453, y: 0.0029592828, z: 0.021945555, w: 0.9869779} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.15932453, y: 0.0029592828, z: 0.021945555, w: 0.9869779} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2/mixamorig:LeftHandMiddle3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.010558685, y: -0.0028612919, z: -0.0028610225, w: 0.9999361} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.010558685, y: -0.0028612919, z: -0.0028610225, w: 0.9999361} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2/mixamorig:LeftHandMiddle3/mixamorig:LeftHandMiddle4 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.2291115, y: 0.012891568, z: 0.021746488, w: 0.9730719} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.2291115, y: 0.012891568, z: 0.021746488, w: 0.9730719} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.1507237, y: -0.00014148372, z: 0.020038912, w: 0.9883728} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.1507237, y: -0.00014148372, z: 0.020038912, w: 0.9883728} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.14299363, y: 0.000000022529548, z: 0.018990245, w: 0.9895414} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.14299363, y: 0.000000022529548, z: 0.018990245, w: 0.9895414} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2/mixamorig:LeftHandPinky3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.044519074, y: -0.00000006052819, z: 0.000000021960798, w: 0.99900854} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.044519074, y: -0.00000006052819, z: 0.000000021960798, w: 0.99900854} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2/mixamorig:LeftHandPinky3/mixamorig:LeftHandPinky4 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.5740296, y: 0.4082779, z: -0.46693254, w: 0.53457755} + inSlope: {x: -0.00087261194, y: 0.00059545034, z: 0.0017631053, w: 0.0020223856} + outSlope: {x: -0.00087261194, y: 0.00059545034, z: 0.0017631053, w: 0.0020223856} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6333334 + value: {x: 0.57810044, y: 0.40284306, z: -0.4663375, w: 0.5348333} + inSlope: {x: 0.005923217, y: -0.009073474, z: 0.0045807706, w: 0.0044283313} + outSlope: {x: 0.005923217, y: -0.009073474, z: 0.0045807706, w: 0.0044283313} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.266667 + value: {x: 0.57650167, y: 0.4048475, z: -0.46614343, w: 0.53521454} + inSlope: {x: -0.0034439596, y: 0.0042924327, z: 0.00053107785, w: 0.000926257} + outSlope: {x: -0.0034439596, y: 0.0042924327, z: 0.00053107785, w: 0.000926257} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.9333334 + value: {x: 0.57460594, y: 0.40785345, z: -0.4679792, w: 0.5333658} + inSlope: {x: 0.0039061941, y: -0.0054676887, z: 0.0014032437, w: 0.0012025249} + outSlope: {x: 0.0039061941, y: -0.0054676887, z: 0.0014032437, w: 0.0012025249} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.4000006 + value: {x: 0.57804465, y: 0.40217277, z: -0.46405184, w: 0.53738004} + inSlope: {x: -0.00045239623, y: 0.001278515, z: -0.0022177377, w: -0.0023871642} + outSlope: {x: -0.00045239623, y: 0.001278515, z: -0.0022177377, w: -0.0023871642} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.033334 + value: {x: 0.573999, y: 0.40826052, z: -0.4667512, w: 0.53478205} + inSlope: {x: 0.00006884245, y: 0.0002664292, z: -0.0011417117, w: -0.0012758204} + outSlope: {x: 0.00006884245, y: 0.0002664292, z: -0.0011417117, w: -0.0012758204} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.5740296, y: 0.4082779, z: -0.46693254, w: 0.53457755} + inSlope: {x: 0.00001966927, y: -0.00000804652, z: -0.00007420679, w: -0.00008404143} + outSlope: {x: 0.00001966927, y: -0.00000804652, z: -0.00007420679, w: -0.00008404143} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.48636392, y: 0.18901062, z: 0.166869, w: 0.8365882} + inSlope: {x: -0.0010737777, y: 0.00092044467, z: 0.00037863848, w: 0.0003415346} + outSlope: {x: -0.0010737777, y: 0.00092044467, z: 0.00037863848, w: 0.0003415346} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4333334 + value: {x: 0.48644227, y: 0.18947561, z: 0.16363184, w: 0.8370768} + inSlope: {x: -0.007844575, y: 0.009709159, z: -0.002820569, w: 0.0029101996} + outSlope: {x: -0.007844575, y: 0.009709159, z: -0.002820569, w: 0.0029101996} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.0666668 + value: {x: 0.48628822, y: 0.1908222, z: 0.16269718, w: 0.83704257} + inSlope: {x: -0.00045687004, y: 0.00041887205, z: -0.006631992, w: 0.001457335} + outSlope: {x: -0.00045687004, y: 0.00041887205, z: -0.006631992, w: 0.001457335} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.7000003 + value: {x: 0.48434237, y: 0.1933133, z: 0.16638127, w: 0.836875} + inSlope: {x: 0.0042258245, y: 0.0014850511, z: -0.0043773693, w: -0.0019177813} + outSlope: {x: 0.0042258245, y: 0.0014850511, z: -0.0043773693, w: -0.0019177813} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.366667 + value: {x: 0.4851705, y: 0.1870892, z: 0.1607007, w: 0.83891743} + inSlope: {x: 0.0015315411, y: -0.0023442449, z: -0.004558396, w: 0.0005105091} + outSlope: {x: 0.0015315411, y: -0.0023442449, z: -0.004558396, w: 0.0005105091} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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 + value: {x: 0.48635712, y: 0.18885998, z: 0.16725391, w: 0.83654934} + inSlope: {x: -0.000024140121, y: 0.000831933, z: -0.0017584133, w: 0.00017702601} + outSlope: {x: -0.000024140121, y: 0.000831933, z: -0.0017584133, w: 0.00017702601} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.48636392, y: 0.18901062, z: 0.166869, w: 0.8365882} + inSlope: {x: 0.000008940578, y: 0.000052302377, z: -0.0001671888, w: 0.00001609304} + outSlope: {x: 0.000008940578, y: 0.000052302377, z: -0.0001671888, w: 0.00001609304} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.0046024327, y: -0.02414115, z: 0.056720756, w: 0.9980876} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.0046024327, y: -0.02414115, z: 0.056720756, w: 0.9980876} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.0653185, y: -0.11941086, z: -0.055745028, w: 0.9891244} + inSlope: {x: 0.0005988031, y: 0.0021540374, z: 0.00021591781, w: 0.00023066996} + outSlope: {x: 0.0005988031, y: 0.0021540374, z: 0.00021591781, w: 0.00023066996} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333334 + value: {x: 0.061735474, y: -0.1227665, z: -0.057421897, w: 0.98884773} + inSlope: {x: -0.0050471956, y: 0.0020376986, z: -0.002319275, w: 0.0004336242} + outSlope: {x: -0.0050471956, y: 0.0020376986, z: -0.002319275, w: 0.0004336242} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.06197721, y: -0.12018571, z: -0.05762737, w: 0.98913765} + inSlope: {x: -0.0034127617, y: -0.0008388543, z: 0.0010495195, w: 0.00017344907} + outSlope: {x: -0.0034127617, y: -0.0008388543, z: 0.0010495195, w: 0.00017344907} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.8 + value: {x: 0.061921377, y: -0.11875355, z: -0.05661802, w: 0.98937243} + inSlope: {x: -0.0042186156, y: 0.0026888053, z: 0.0018922444, w: 0.0006955869} + outSlope: {x: -0.0042186156, y: 0.0026888053, z: 0.0018922444, w: 0.0006955869} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.433334 + value: {x: 0.05660292, y: -0.12415888, z: -0.05591347, w: 0.98906744} + inSlope: {x: -0.0028862273, y: 0.0016131268, z: 0.0043091965, w: 0.00061154424} + outSlope: {x: -0.0028862273, y: 0.0016131268, z: 0.0043091965, w: 0.00061154424} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.266667 + value: {x: 0.06042221, y: -0.119381994, z: -0.056425612, w: 0.98940045} + inSlope: {x: 0.0052233273, y: 0.0014045849, z: -0.0008085192, w: -0.00019490736} + outSlope: {x: 0.0052233273, y: 0.0014045849, z: -0.0008085192, w: -0.00019490736} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.0653185, y: -0.11941086, z: -0.055745028, w: 0.9891244} + inSlope: {x: 0.00025681808, y: -0.000040456114, z: 0.000084488456, w: -0.00001609304} + outSlope: {x: 0.00025681808, y: -0.000040456114, z: 0.000084488456, w: -0.00001609304} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.15635954, y: 0.16642833, z: 0.3325566, w: 0.9150188} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.15635954, y: 0.16642833, z: 0.3325566, w: 0.9150188} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.05663691, y: 0.22983049, z: -0.32271373, w: 0.9164202} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.05663691, y: 0.22983049, z: -0.32271373, w: 0.9164202} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.122044265, y: -0.03979181, z: -0.106973514, w: 0.98594046} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: -0.122044265, y: -0.03979181, z: -0.106973514, w: 0.98594046} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2/mixamorig:RightHandThumb3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.020066814, y: -0.040932298, z: -0.014504498, w: 0.9988551} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.020066814, y: -0.040932298, z: -0.014504498, w: 0.9988551} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2/mixamorig:RightHandThumb3/mixamorig:RightHandThumb4 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.055562396, y: -0.02810285, z: 0.0401244, w: 0.99725276} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.055562396, y: -0.02810285, z: 0.0401244, w: 0.99725276} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.15075871, y: 0.0051681395, z: -0.01765292, w: 0.98839945} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.15075871, y: 0.0051681395, z: -0.01765292, w: 0.98839945} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.07001284, y: 0.00000009456072, z: -0.0078272, w: 0.9975154} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.07001284, y: 0.00000009456072, z: -0.0078272, w: 0.9975154} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2/mixamorig:RightHandIndex3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.04448861, y: -0.00000007255881, z: 0.000000031212466, w: 0.9990099} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.04448861, y: -0.00000007255881, z: 0.000000031212466, w: 0.9990099} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2/mixamorig:RightHandIndex3/mixamorig:RightHandIndex4 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.12616394, y: -0.03309887, z: 0.007657089, w: 0.99142754} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.12616394, y: -0.03309887, z: 0.007657089, w: 0.99142754} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.15088347, y: 0.0134964585, z: -0.018377108, w: 0.9882886} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.15088347, y: 0.0134964585, z: -0.018377108, w: 0.9882886} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.15973808, y: -0.0029593783, z: -0.018621288, w: 0.98697937} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.15973808, y: -0.0029593783, z: -0.018621288, w: 0.98697937} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2/mixamorig:RightHandMiddle3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.010558594, y: 0.0028612642, z: 0.0028610916, w: 0.9999361} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.010558594, y: 0.0028612642, z: 0.0028610916, w: 0.9999361} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2/mixamorig:RightHandMiddle3/mixamorig:RightHandMiddle4 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.22379784, y: -0.0129479, z: -0.015614003, w: 0.9744245} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.22379784, y: -0.0129479, z: -0.015614003, w: 0.9744245} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.15110864, y: 0.00014150355, z: -0.016894083, w: 0.9883728} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.15110864, y: 0.00014150355, z: -0.016894083, w: 0.9883728} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.14335813, y: -0.00000007851142, z: -0.016006732, w: 0.9895415} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.14335813, y: -0.00000007851142, z: -0.016006732, w: 0.9895415} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2/mixamorig:RightHandPinky3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.044519126, y: 0.0000000059326433, z: 0.00000006383043, w: 0.99900854} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.044519126, y: 0.0000000059326433, z: 0.00000006383043, w: 0.99900854} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2/mixamorig:RightHandPinky3/mixamorig:RightHandPinky4 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.13061544, y: 0.1026103, z: 0.98410386, w: 0.06285195} + inSlope: {x: 0.003094822, y: 0.0054770703, z: -0.000100135796, w: -0.0009363144} + outSlope: {x: 0.003094822, y: 0.0054770703, z: -0.000100135796, w: -0.0009363144} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.13298306, y: 0.097798176, z: 0.98421925, w: 0.06374548} + inSlope: {x: 0.0029692028, y: -0.010351645, z: 0.0016567102, w: -0.0034818412} + outSlope: {x: 0.0029692028, y: -0.010351645, z: 0.0016567102, w: -0.0034818412} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.966667 + value: {x: -0.13397747, y: 0.08723768, z: 0.984954, w: 0.06561468} + inSlope: {x: 0.0007076523, y: -0.014840847, z: 0.0014430243, w: -0.0004880484} + outSlope: {x: 0.0007076523, y: -0.014840847, z: 0.0014430243, w: -0.0004880484} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.6000004 + value: {x: -0.13044438, y: 0.08753236, z: 0.9856635, w: 0.06156249} + inSlope: {x: -0.0020800552, y: 0.009796107, z: -0.0014153137, w: 0.0043170755} + outSlope: {x: -0.0020800552, y: 0.009796107, z: -0.0014153137, w: 0.0043170755} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.266667 + value: {x: -0.13614734, y: 0.08619938, z: 0.98473984, w: 0.0657349} + inSlope: {x: 0.003474358, y: -0.00021614155, z: 0.0007912524, w: -0.004378822} + outSlope: {x: 0.003474358, y: -0.00021614155, z: 0.0007912524, w: -0.004378822} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.7333336 + value: {x: -0.13008405, y: 0.09722709, z: 0.9848288, w: 0.06113312} + inSlope: {x: 0.0026084506, y: 0.007587306, z: -0.00034689938, w: -0.0009293863} + outSlope: {x: 0.0026084506, y: 0.007587306, z: -0.00034689938, w: -0.0009293863} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.13061544, y: 0.1026103, z: 0.98410386, w: 0.06285195} + inSlope: {x: -0.003936536, y: -0.0007563729, z: -0.0008457786, w: 0.0062977425} + outSlope: {x: -0.003936536, y: -0.0007563729, z: -0.0008457786, w: 0.0062977425} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:LeftUpLeg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.2258368, y: 0.009128854, z: -0.088046744, w: 0.97013515} + inSlope: {x: -0.0014586746, y: 0.0014373566, z: -0.00073671335, w: -0.00042021272} + outSlope: {x: -0.0014586746, y: 0.0014373566, z: -0.00073671335, w: -0.00042021272} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4000001 + value: {x: -0.22126342, y: 0.007891347, z: -0.086742125, w: 0.9713167} + inSlope: {x: 0.023291655, y: -0.018936973, z: 0.009240555, w: 0.0062817396} + outSlope: {x: 0.023291655, y: -0.018936973, z: 0.009240555, w: 0.0062817396} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.21617728, y: 0.0003595814, z: -0.083896354, w: 0.97274286} + inSlope: {x: 0.000247434, y: -0.0121569205, z: 0.003611933, w: 0.0003728274} + outSlope: {x: 0.000247434, y: -0.0121569205, z: 0.003611933, w: 0.0003728274} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.3 + value: {x: -0.20798446, y: 0.009495334, z: -0.08694103, w: 0.9742144} + inSlope: {x: -0.008956798, y: -0.001204327, z: -0.001885483, w: -0.002068879} + outSlope: {x: -0.008956798, y: -0.001204327, z: -0.001885483, w: -0.002068879} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.21422265, y: 0.0028638814, z: -0.0845771, w: 0.9731121} + inSlope: {x: -0.01010322, y: -0.018088598, z: 0.005202261, w: -0.0017157213} + outSlope: {x: -0.01010322, y: -0.018088598, z: 0.005202261, w: -0.0017157213} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.866667 + value: {x: -0.21499905, y: 0.005432104, z: -0.08631279, w: 0.9727775} + inSlope: {x: -0.006490467, y: 0.010808956, z: -0.004256081, w: -0.0018721722} + outSlope: {x: -0.006490467, y: 0.010808956, z: -0.004256081, w: -0.0018721722} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.2258368, y: 0.009128854, z: -0.088046744, w: 0.97013515} + inSlope: {x: 0.0015002289, y: -0.00003366686, z: -0.00097318186, w: 0.00026106485} + outSlope: {x: 0.0015002289, y: -0.00003366686, z: -0.00097318186, w: 0.00026106485} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.6029075, y: 0.055040605, z: 0.06049383, w: 0.79360795} + inSlope: {x: 0.00031650063, y: 0.00027112663, z: 0.0006537884, w: -0.0003057718} + outSlope: {x: 0.00031650063, y: 0.00027112663, z: 0.0006537884, w: -0.0003057718} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333334 + value: {x: 0.6016539, y: 0.05543077, z: 0.060696434, w: 0.7945162} + inSlope: {x: -0.009534368, y: -0.0012546603, z: -0.0022555722, w: 0.0074806884} + outSlope: {x: -0.009534368, y: -0.0012546603, z: -0.0022555722, w: 0.0074806884} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.5992019, y: 0.056393538, z: 0.061844174, w: 0.7962111} + inSlope: {x: -0.005244596, y: -0.0007302304, z: 0.0008795381, w: 0.0039312122} + outSlope: {x: -0.005244596, y: -0.0007302304, z: 0.0008795381, w: 0.0039312122} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.8 + value: {x: 0.5995952, y: 0.056865826, z: 0.06311308, w: 0.7957818} + inSlope: {x: 0.0013589872, y: 0.0012468931, z: 0.0017156096, w: -0.0012481224} + outSlope: {x: 0.0013589872, y: 0.0012468931, z: 0.0017156096, w: -0.0012481224} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.433334 + value: {x: 0.59997344, y: 0.056627847, z: 0.062048167, w: 0.7955974} + inSlope: {x: -0.0011220586, y: -0.0011948135, z: -0.0011793349, w: 0.0010228166} + outSlope: {x: -0.0011220586, y: -0.0011948135, z: -0.0011793349, w: 0.0010228166} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.1 + value: {x: 0.60144603, y: 0.054241292, z: 0.05950823, w: 0.79484546} + inSlope: {x: 0.005045237, y: 0.0009876138, z: 0.00020451663, w: -0.0039008271} + outSlope: {x: 0.005045237, y: 0.0009876138, z: 0.00020451663, w: -0.0039008271} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.6029075, y: 0.055040605, z: 0.06049383, w: 0.79360795} + inSlope: {x: 0.0035029182, y: 0.0040910966, z: 0.0054155313, w: -0.0033562928} + outSlope: {x: 0.0035029182, y: 0.0040910966, z: 0.0054155313, w: -0.0033562928} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.21138339, y: 0.035284445, z: -0.12281024, w: 0.9690148} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.21138339, y: 0.035284445, z: -0.12281024, w: 0.9690148} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot/mixamorig:LeftToeBase + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.04573715, y: 0.039433047, z: 0.0727525, w: 0.99552006} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.04573715, y: 0.039433047, z: 0.0727525, w: 0.99552006} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot/mixamorig:LeftToeBase/mixamorig:LeftToe_End + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.091047354, y: -0.0740023, z: 0.9920521, w: 0.045461904} + inSlope: {x: -0.0012615322, y: 0.009060725, z: 0.00079035753, w: -0.00003855675} + outSlope: {x: -0.0012615322, y: 0.009060725, z: 0.00079035753, w: -0.00003855675} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6333334 + value: {x: 0.089830756, y: -0.058543116, z: 0.99325305, w: 0.044176448} + inSlope: {x: -0.0013432279, y: 0.02033551, z: 0.0012937193, w: 0.00048307588} + outSlope: {x: -0.0013432279, y: 0.02033551, z: 0.0012937193, w: 0.00048307588} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.090050824, y: -0.059517223, z: 0.9931741, w: 0.04420206} + inSlope: {x: 0.0007566089, y: -0.02431047, z: -0.0015404816, w: 0.00042501825} + outSlope: {x: 0.0007566089, y: -0.02431047, z: -0.0015404816, w: 0.00042501825} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9000001 + value: {x: 0.093164854, y: -0.09275257, z: 0.990205, w: 0.04702526} + inSlope: {x: 0.0013812272, y: 0.01842903, z: 0.0017818825, w: -0.003850203} + outSlope: {x: 0.0013812272, y: 0.01842903, z: 0.0017818825, w: -0.003850203} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.0666668 + value: {x: 0.09468707, y: -0.10283785, z: 0.98903835, w: 0.047558945} + inSlope: {x: 0.0005024676, y: -0.0069860434, z: -0.0006857521, w: -0.0018957648} + outSlope: {x: 0.0005024676, y: -0.0069860434, z: -0.0006857521, w: -0.0018957648} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.066667 + value: {x: 0.094839424, y: -0.091968596, z: 0.9902928, w: 0.04321457} + inSlope: {x: -0.0020679852, y: 0.009574378, z: 0.0011345755, w: -0.0010809872} + outSlope: {x: -0.0020679852, y: 0.009574378, z: 0.0011345755, w: -0.0010809872} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.533334 + value: {x: 0.0942189, y: -0.09041658, z: 0.9904555, w: 0.044108897} + inSlope: {x: -0.004029446, y: -0.038196698, z: -0.0035932255, w: 0.011755247} + outSlope: {x: -0.004029446, y: -0.038196698, z: -0.0035932255, w: 0.011755247} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.8 + value: {x: 0.09390767, y: -0.08889575, z: 0.9905844, w: 0.044961333} + inSlope: {x: -0.0007091097, y: 0.0066509903, z: 0.0006043917, w: 0.0013047841} + outSlope: {x: -0.0007091097, y: 0.0066509903, z: 0.0006043917, w: 0.0013047841} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.8 + value: {x: 0.09411597, y: -0.099329896, z: 0.9895004, w: 0.046525806} + inSlope: {x: 0.0013689338, y: -0.04434858, z: -0.0048494386, w: 0.006364888} + outSlope: {x: 0.0013689338, y: -0.04434858, z: -0.0048494386, w: 0.006364888} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.6333337 + value: {x: 0.09390536, y: -0.09696925, z: 0.98971176, w: 0.04742719} + inSlope: {x: 0.000030398398, y: 0.008949423, z: 0.0009959945, w: -0.0025608414} + outSlope: {x: 0.000030398398, y: 0.008949423, z: 0.0009959945, w: -0.0025608414} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.5000005 + value: {x: 0.09243687, y: -0.080026366, z: 0.99149215, w: 0.044660088} + inSlope: {x: -0.0023424649, y: 0.029492594, z: 0.0028672842, w: -0.005691709} + outSlope: {x: -0.0023424649, y: 0.029492594, z: 0.0028672842, w: -0.005691709} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.8 + value: {x: 0.09274799, y: -0.0848306, z: 0.9910702, w: 0.044512477} + inSlope: {x: -0.004798106, y: 0.051198855, z: 0.0049710018, w: -0.0028517966} + outSlope: {x: -0.004798106, y: 0.051198855, z: 0.0049710018, w: -0.0028517966} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.3 + value: {x: 0.09111704, y: -0.07275415, z: 0.9921526, w: 0.045142993} + inSlope: {x: -0.0030945041, y: -0.017414307, z: -0.0013339291, w: 0.0072207595} + outSlope: {x: -0.0030945041, y: -0.017414307, z: -0.0013339291, w: 0.0072207595} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.091047354, y: -0.0740023, z: 0.9920521, w: 0.045461904} + inSlope: {x: -0.0020905305, y: -0.037444033, z: -0.0030147627, w: 0.0095672} + outSlope: {x: -0.0020905305, y: -0.037444033, z: -0.0030147627, w: 0.0095672} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:RightUpLeg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.025433453, y: -0.08661262, z: 0.08489502, w: 0.9922924} + inSlope: {x: -0.00971239, y: -0.0004584342, z: 0.0007425248, w: -0.00035405156} + outSlope: {x: -0.00971239, y: -0.0004584342, z: 0.0007425248, w: -0.00035405156} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.03767994, y: -0.08714596, z: 0.08577722, w: 0.9917803} + inSlope: {x: -0.010971578, y: -0.00031437725, z: 0.00039875513, w: -0.000487268} + outSlope: {x: -0.010971578, y: -0.00031437725, z: 0.00039875513, w: -0.000487268} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: -0.050935067, y: -0.087957874, z: 0.0866955, w: 0.9910363} + inSlope: {x: 0.0027668106, y: -0.0008655713, z: -0.00027906153, w: 0.00008940698} + outSlope: {x: 0.0027668106, y: -0.0008655713, z: -0.00027906153, w: 0.00008940698} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.061862476, y: -0.08862512, z: 0.08739126, w: 0.99029356} + inSlope: {x: -0.05211533, y: -0.0020467495, z: 0.004274101, w: -0.003801585} + outSlope: {x: -0.05211533, y: -0.0020467495, z: 0.004274101, w: -0.003801585} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.049933564, y: -0.08800886, z: 0.08676291, w: 0.9910768} + inSlope: {x: 0.037616845, y: 0.0014017908, z: -0.0009771073, w: 0.002093019} + outSlope: {x: 0.037616845, y: 0.0014017908, z: -0.0009771073, w: 0.002093019} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6333334 + value: {x: 0.00076261675, y: -0.08570744, z: 0.08355747, w: 0.9928101} + inSlope: {x: 0.041360293, y: 0.0020219404, z: -0.0036917292, w: 0.00043004792} + outSlope: {x: 0.041360293, y: 0.0020219404, z: -0.0036917292, w: 0.00043004792} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9666668 + value: {x: 0.0021213116, y: -0.08546688, z: 0.08336426, w: 0.99284506} + inSlope: {x: -0.0068046963, y: 0.0010020316, z: 0.0017531547, w: -0.000040232746} + outSlope: {x: -0.0068046963, y: 0.0010020316, z: 0.0017531547, w: -0.000040232746} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.5000002 + value: {x: 0.0060901567, y: -0.08526766, z: 0.0833376, w: 0.99284804} + inSlope: {x: -0.015146492, y: 0.000056213437, z: 0.0022341688, w: -0.000097453696} + outSlope: {x: -0.015146492, y: 0.000056213437, z: 0.0022341688, w: -0.000097453696} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.6000001 + value: {x: 0.005180731, y: -0.08525615, z: 0.08333219, w: 0.9928546} + inSlope: {x: -0.0049472693, y: -0.0008805477, z: -0.0024603703, w: 0.00015825048} + outSlope: {x: -0.0049472693, y: -0.0008805477, z: -0.0024603703, w: 0.00015825048} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.9 + value: {x: -0.002359903, y: -0.085738644, z: 0.083473645, w: 0.9928119} + inSlope: {x: -0.04425107, y: -0.0015375717, z: 0.0030747002, w: -0.00048816082} + outSlope: {x: -0.04425107, y: -0.0015375717, z: 0.0030747002, w: -0.00048816082} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.166667 + value: {x: -0.017088538, y: -0.08641845, z: 0.08444193, w: 0.99252677} + inSlope: {x: -0.089899726, y: -0.0041736327, z: 0.0042081666, w: -0.0022101423} + outSlope: {x: -0.089899726, y: -0.0041736327, z: 0.0042081666, w: -0.0022101423} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.6000004 + value: {x: -0.007397761, y: -0.08613282, z: 0.0840328, w: 0.9927058} + inSlope: {x: -0.012901054, y: -0.0018216686, z: -0.0012702507, w: -0.00015288606} + outSlope: {x: -0.012901054, y: -0.0018216686, z: -0.0012702507, w: -0.00015288606} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.7333336 + value: {x: -0.009787455, y: -0.08636766, z: 0.08389781, w: 0.9926762} + inSlope: {x: 0.09931591, y: 0.0038452856, z: -0.007807806, w: 0.0022083542} + outSlope: {x: 0.09931591, y: 0.0038452856, z: -0.007807806, w: 0.0022083542} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.066667 + value: {x: -0.011019397, y: -0.086240806, z: 0.08432147, w: 0.9926384} + inSlope: {x: -0.0076630227, y: 0.00027660307, z: 0.0023333007, w: -0.00025928044} + outSlope: {x: -0.0076630227, y: 0.00027660307, z: 0.0023333007, w: -0.00025928044} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.766667 + value: {x: 0.0024172044, y: -0.0851713, z: 0.08363678, w: 0.9928469} + inSlope: {x: 0.11519706, y: 0.0055470373, z: -0.008080162, w: 0.0009343037} + outSlope: {x: 0.11519706, y: 0.0055470373, z: -0.008080162, w: 0.0009343037} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.1333337 + value: {x: 0.00574362, y: -0.084889285, z: 0.08342489, w: 0.99287516} + inSlope: {x: -0.0029219692, y: -0.00033963504, z: -0.00030163705, w: 0.000013411058} + outSlope: {x: -0.0029219692, y: -0.00033963504, z: -0.00030163705, w: 0.000013411058} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.166667 + value: {x: 0.0055406084, y: -0.08516847, z: 0.08287968, w: 0.9928981} + inSlope: {x: -0.004848125, y: -0.002253952, z: -0.0019486267, w: -0.0000035762823} + outSlope: {x: -0.004848125, y: -0.002253952, z: -0.0019486267, w: -0.0000035762823} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.5000005 + value: {x: -0.0139290495, y: -0.08596281, z: 0.084040925, w: 0.99264973} + inSlope: {x: -0.072779685, y: -0.0026107975, z: 0.0071508875, w: -0.0017872469} + outSlope: {x: -0.072779685, y: -0.0026107975, z: 0.0071508875, w: -0.0017872469} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.766667 + value: {x: -0.0021065862, y: -0.08547758, z: 0.08316943, w: 0.99286056} + inSlope: {x: -0.06838594, y: -0.0033007967, z: 0.005501998, w: -0.0009977827} + outSlope: {x: -0.06838594, y: -0.0033007967, z: 0.005501998, w: -0.0009977827} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.1 + value: {x: -0.018527206, y: -0.08643251, z: 0.084499, w: 0.9924949} + inSlope: {x: -0.027930934, y: -0.0015771323, z: 0.002053787, w: -0.0008511486} + outSlope: {x: -0.027930934, y: -0.0015771323, z: 0.002053787, w: -0.0008511486} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.025433453, y: -0.08661262, z: 0.08489502, w: 0.9922924} + inSlope: {x: 0.08591353, y: 0.002943238, z: -0.0060087387, w: 0.003097016} + outSlope: {x: 0.08591353, y: 0.002943238, z: -0.0060087387, w: 0.003097016} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.58299595, y: -0.04080606, z: -0.027187677, w: 0.8109941} + inSlope: {x: 0.0040858984, y: -0.00093810254, z: -0.0007238611, w: -0.0030094383} + outSlope: {x: 0.0040858984, y: -0.00093810254, z: -0.0007238611, w: -0.0030094383} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.5942597, y: -0.038906936, z: -0.031266626, w: 0.80272293} + inSlope: {x: 0.0031346031, y: -0.00047251594, z: 0.0016686708, w: -0.002279874} + outSlope: {x: 0.0031346031, y: -0.00047251594, z: 0.0016686708, w: -0.002279874} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9666667 + value: {x: 0.59519726, y: -0.038298022, z: -0.03148465, w: 0.80204874} + inSlope: {x: -0.025237823, y: 0.0028212955, z: 0.004519303, w: 0.019063372} + outSlope: {x: -0.025237823, y: 0.0028212955, z: 0.004519303, w: 0.019063372} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.57591385, y: -0.040614773, z: -0.024642374, w: 0.81612897} + inSlope: {x: -0.026207853, y: -0.0032589976, z: 0.011196681, w: 0.018680684} + outSlope: {x: -0.026207853, y: -0.0032589976, z: 0.011196681, w: 0.018680684} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.4666667 + value: {x: 0.57381254, y: -0.040316302, z: -0.023698585, w: 0.8176504} + inSlope: {x: 0.0063550267, y: -0.011407848, z: 0.0070864884, w: -0.0048181256} + outSlope: {x: 0.0063550267, y: -0.011407848, z: 0.0070864884, w: -0.0048181256} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.766667 + value: {x: 0.57476586, y: -0.040481504, z: -0.02355788, w: 0.8169765} + inSlope: {x: -0.0024667406, y: 0.007572051, z: -0.008453408, w: 0.0018686074} + outSlope: {x: -0.0024667406, y: 0.007572051, z: -0.008453408, w: 0.0018686074} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.4333334 + value: {x: 0.58349866, y: -0.04054852, z: -0.026777806, w: 0.81065905} + inSlope: {x: -0.010458836, y: -0.00020720085, z: 0.004102163, w: 0.007655926} + outSlope: {x: -0.010458836, y: -0.00020720085, z: 0.004102163, w: 0.007655926} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.58166975, y: -0.03990759, z: -0.026165327, w: 0.81202406} + inSlope: {x: 0.04545544, y: 0.0018449704, z: -0.013243336, w: -0.03292862} + outSlope: {x: 0.04545544, y: 0.0018449704, z: -0.013243336, w: -0.03292862} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.033334 + value: {x: 0.5813896, y: -0.038561914, z: -0.026601868, w: 0.81227547} + inSlope: {x: 0.0012132537, y: -0.003430828, z: 0.00045790384, w: -0.0010165581} + outSlope: {x: 0.0012132537, y: -0.003430828, z: 0.00045790384, w: -0.0010165581} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.8 + value: {x: 0.57460314, y: -0.03804465, z: -0.025406556, w: 0.81715256} + inSlope: {x: -0.019613225, y: -0.003180097, z: 0.01104138, w: 0.014009192} + outSlope: {x: -0.019613225, y: -0.003180097, z: 0.01104138, w: 0.014009192} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.766667 + value: {x: 0.5729109, y: -0.03891307, z: -0.023654763, w: 0.8183516} + inSlope: {x: -0.004317466, y: 0.0010234872, z: 0.0006559684, w: 0.0030908016} + outSlope: {x: -0.004317466, y: 0.0010234872, z: 0.0006559684, w: 0.0030908016} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.5000005 + value: {x: 0.57750726, y: -0.03889896, z: -0.027069828, w: 0.8150089} + inSlope: {x: 0.029026892, y: -0.0065205684, z: -0.008210249, w: -0.021129569} + outSlope: {x: 0.029026892, y: -0.0065205684, z: -0.008210249, w: -0.021129569} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.8 + value: {x: 0.5736359, y: -0.03964006, z: -0.026416166, w: 0.8177241} + inSlope: {x: 0.03979038, y: -0.009646513, z: -0.0055208923, w: -0.028538568} + outSlope: {x: 0.03979038, y: -0.009646513, z: -0.0055208923, w: -0.028538568} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.266667 + value: {x: 0.58388335, y: -0.04120457, z: -0.027393086, w: 0.81032836} + inSlope: {x: 0.009395737, y: 0.004263208, z: -0.0015728292, w: -0.0066044624} + outSlope: {x: 0.009395737, y: 0.004263208, z: -0.0015728292, w: -0.0066044624} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.58299595, y: -0.04080606, z: -0.027187677, w: 0.8109941} + inSlope: {x: -0.032477543, y: 0.007685097, z: 0.007138101, w: 0.024009027} + outSlope: {x: -0.032477543, y: 0.007685097, z: 0.007138101, w: 0.024009027} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.23116115, y: -0.03828384, z: 0.1230933, w: 0.9643376} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.23116115, y: -0.03828384, z: 0.1230933, w: 0.9643376} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot/mixamorig:RightToeBase + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.04573715, y: -0.039433047, z: -0.0727525, w: 0.99552006} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.04573715, y: -0.039433047, z: -0.0727525, w: 0.99552006} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot/mixamorig:RightToeBase/mixamorig:RightToe_End + m_CompressedRotationCurves: [] + m_EulerCurves: [] + m_PositionCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.00023456785, y: 0.017571645, z: 0.000012056029} + inSlope: {x: -0.000003604643, y: -0.0000053150306, z: -0.00000073576933} + outSlope: {x: -0.000003604643, y: -0.0000053150306, z: -0.00000073576933} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: -0.00023468792, y: 0.017571466, z: 0.000012031506} + inSlope: {x: -0.0000040410346, y: -0.000015022072, z: 0.000007937338} + outSlope: {x: -0.0000040377613, y: -0.000015136168, z: 0.000007937282} + tangentMode: 0 + weightedMode: 0 + 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.0002351858, y: 0.017570361, z: 0.000013749524} + inSlope: {x: -0.000010238214, y: -0.000007719652, z: 0.000039632723} + outSlope: {x: -0.000010233182, y: -0.000007908683, z: 0.0000396326} + tangentMode: 0 + weightedMode: 0 + 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.00023570405, y: 0.01756909, z: 0.000016660568} + inSlope: {x: -0.0000044779317, y: -0.000039488925, z: 0.000039611386} + outSlope: {x: -0.000004477772, y: -0.000039247097, z: 0.000039611252} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.23333333 + value: {x: -0.00023597127, y: 0.017566813, z: 0.000019132302} + inSlope: {x: -0.0000038014452, y: -0.0000051821958, z: 0.00004185973} + outSlope: {x: -0.000003799129, y: -0.0000052162577, z: 0.00004185936} + tangentMode: 0 + weightedMode: 0 + 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.00023621872, y: 0.017563887, z: 0.00002323324} + inSlope: {x: -0.000005892052, y: -0.00009219135, z: 0.000026943944} + outSlope: {x: -0.0000058939136, y: -0.00009213855, z: 0.000026943782} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.4 + value: {x: -0.00023687993, y: 0.017559374, z: 0.000024991035} + inSlope: {x: -0.0000080381105, y: -0.00001460654, z: 0.000032818458} + outSlope: {x: -0.000008037606, y: -0.000015258789, z: 0.000032818403} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: -0.00023456999, y: 0.01755697, z: 0.000028874447} + inSlope: {x: 0.000045765308, y: -0.000028010749, z: 0.000018925999} + outSlope: {x: 0.000045763765, y: -0.000027997177, z: 0.000018926523} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.7 + value: {x: -0.00022595702, y: 0.01755171, z: 0.00003320946} + inSlope: {x: 0.000060511138, y: -0.00004286429, z: 0.000036853784} + outSlope: {x: 0.000060512888, y: -0.00004254916, z: 0.000036853457} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.8666667 + value: {x: -0.00021723607, y: 0.017546147, z: 0.000045341847} + inSlope: {x: 0.000033114444, y: 0.000019517955, z: 0.000117434894} + outSlope: {x: 0.000033115197, y: 0.000019650808, z: 0.000117436924} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.96666664 + value: {x: -0.00021425363, y: 0.01755514, z: 0.000058375925} + inSlope: {x: 0.00004387842, y: 0.000057326088, z: 0.00013693469} + outSlope: {x: 0.00004387975, y: 0.00005700072, z: 0.00013693311} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.1333333 + value: {x: -0.00020346312, y: 0.017559633, z: 0.00008359576} + inSlope: {x: 0.000058400383, y: 0.00004288132, z: 0.00012830176} + outSlope: {x: 0.000058398335, y: 0.00004288472, z: 0.00012830173} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.3666667 + value: {x: -0.0001940525, y: 0.017573941, z: 0.000100726764} + inSlope: {x: 0.000041152143, y: 0.00006382641, z: 0.000012022227} + outSlope: {x: 0.000041151587, y: 0.00006417893, z: 0.000012023784} + tangentMode: 0 + weightedMode: 0 + 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.00017780939, y: 0.017583294, z: 0.00010080112} + inSlope: {x: 0.000102399266, y: 0.000026796566, z: 0.000012941083} + outSlope: {x: 0.00010240145, y: 0.000026798269, z: 0.000012940205} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.8 + value: {x: -0.00016047103, y: 0.017586766, z: 0.00010583164} + inSlope: {x: 0.000056377972, y: 0.000035422214, z: 0.00006180628} + outSlope: {x: 0.000056379184, y: 0.00003556514, z: 0.0000618042} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.1 + value: {x: -0.000152669, y: 0.017591555, z: 0.00012455364} + inSlope: {x: 0.000013411747, y: -0.0000044686485, z: 0.00005246759} + outSlope: {x: 0.000013410974, y: -0.000004494162, z: 0.000052465562} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.5333333 + value: {x: -0.00014813617, y: 0.017583815, z: 0.00014058272} + inSlope: {x: 0.000060699796, y: -0.000017077595, z: 0.00003240891} + outSlope: {x: 0.000060699207, y: -0.000017399461, z: 0.000032408243} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.7666667 + value: {x: -0.0001272426, y: 0.017581452, z: 0.0001557777} + inSlope: {x: 0.00009183565, y: 0.000006209106, z: 0.00010357418} + outSlope: {x: 0.000091836024, y: 0.0000059247063, z: 0.00010356873} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.9333334 + value: {x: -0.00010847092, y: 0.017582446, z: 0.00017488321} + inSlope: {x: 0.00009032054, y: 0.000016338498, z: 0.000120323355} + outSlope: {x: 0.00009032035, y: 0.000016333388, z: 0.00012032173} + tangentMode: 0 + weightedMode: 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.00009883655, y: 0.017587163, z: 0.00019173132} + inSlope: {x: -0.000023949435, y: 0.000019897749, z: -0.0000126741415} + outSlope: {x: -0.000023949617, y: 0.000020059533, z: -0.000012673047} + tangentMode: 0 + weightedMode: 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.00011058429, y: 0.01759189, z: 0.00017928192} + inSlope: {x: -0.000078779616, y: 0.000024768304, z: -0.00011219231} + outSlope: {x: -0.00007877766, y: 0.000024751274, z: -0.00011219264} + tangentMode: 0 + weightedMode: 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.5666666 + value: {x: -0.00013099323, y: 0.017596036, z: 0.00015500991} + inSlope: {x: -0.00008586274, y: 0.000016193744, z: -0.00009292321} + outSlope: {x: -0.000085860695, y: 0.000016106891, z: -0.00009292116} + tangentMode: 0 + weightedMode: 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.7333333 + value: {x: -0.00014715319, y: 0.017596869, z: 0.00014466104} + inSlope: {x: -0.00011338377, y: 0.0000010030624, z: 0.0000022101913} + outSlope: {x: -0.00011338355, y: 0.0000012346682, z: 0.0000022091235} + tangentMode: 0 + weightedMode: 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.9 + value: {x: -0.00016197245, y: 0.017598098, z: 0.00014829123} + inSlope: {x: -0.00006350832, y: 0.0000015650372, z: 0.000037357666} + outSlope: {x: -0.00006351117, y: 0.0000012823527, z: 0.000037358506} + tangentMode: 0 + weightedMode: 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.1 + value: {x: -0.00017177267, y: 0.017596323, z: 0.00015158072} + inSlope: {x: -0.000030836032, y: -0.000033170865, z: -0.000019009825} + outSlope: {x: -0.000030833056, y: -0.0000335915, z: -0.00001900723} + tangentMode: 0 + weightedMode: 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.4 + value: {x: -0.0001708923, y: 0.017590238, z: 0.00014887704} + inSlope: {x: 0.000046755173, y: -0.000011464537, z: 0.000006770615} + outSlope: {x: 0.000046758683, y: -0.000011575231, z: 0.0000067713054} + tangentMode: 0 + weightedMode: 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.6 + value: {x: -0.00015971878, y: 0.017589534, z: 0.00015196782} + inSlope: {x: 0.00006795419, y: -0.000024443034, z: 0.000005671946} + outSlope: {x: 0.000067949986, y: -0.000024294872, z: 0.0000056705217} + tangentMode: 0 + weightedMode: 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.9666667 + value: {x: -0.0001449803, y: 0.017590344, z: 0.0001688684} + inSlope: {x: 0.00002068972, y: 0.000014817726, z: 0.0000454382} + outSlope: {x: 0.000020691728, y: 0.000014838162, z: 0.00004543493} + tangentMode: 0 + weightedMode: 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.133333 + value: {x: -0.00014258151, y: 0.017592853, z: 0.00017728271} + inSlope: {x: -0.000006421075, y: 0.000014805804, z: 0.000064399115} + outSlope: {x: -0.0000064191595, y: 0.000014543546, z: 0.000064392785} + tangentMode: 0 + weightedMode: 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.4 + value: {x: -0.00014093443, y: 0.017593054, z: 0.00019262052} + inSlope: {x: 0.00003099476, y: -0.000034047902, z: 0.000030977593} + outSlope: {x: 0.00003099645, y: -0.000034201174, z: 0.00003097938} + tangentMode: 0 + weightedMode: 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.5666666 + value: {x: -0.00013832559, y: 0.017591946, z: 0.00019018441} + inSlope: {x: 0.00002919704, y: -0.000014708737, z: -0.000014106167} + outSlope: {x: 0.00002919704, y: -0.000014701921, z: -0.000014106542} + tangentMode: 0 + weightedMode: 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.8 + value: {x: -0.00013304694, y: 0.017588113, z: 0.00019829138} + inSlope: {x: 0.000066233784, y: -0.00001966955, z: 0.000026335749} + outSlope: {x: 0.00006623828, y: -0.000019780244, z: 0.000026336626} + tangentMode: 0 + weightedMode: 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.9666667 + value: {x: -0.0001201149, y: 0.01758678, z: 0.00019943372} + inSlope: {x: 0.00005945886, y: 0.000005708426, z: -0.000050915605} + outSlope: {x: 0.000059460923, y: 0.0000057969824, z: -0.00005091938} + tangentMode: 0 + weightedMode: 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.1 + value: {x: -0.00011350165, y: 0.017587248, z: 0.00019174129} + inSlope: {x: 0.0000083637215, y: 0.000014393682, z: -0.000057008216} + outSlope: {x: 0.000008360531, y: 0.00001430172, z: -0.00005700534} + tangentMode: 0 + weightedMode: 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.366667 + value: {x: -0.000117947624, y: 0.017591313, z: 0.00017120512} + inSlope: {x: -0.000036578826, y: 0.000006270413, z: -0.00009019643} + outSlope: {x: -0.000036577123, y: 0.0000063146917, z: -0.00009019789} + tangentMode: 0 + weightedMode: 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.5333333 + value: {x: -0.00012738309, y: 0.017590947, z: 0.00014611639} + inSlope: {x: -0.00006226611, y: -0.000009257461, z: -0.0002100742} + outSlope: {x: -0.000062265695, y: -0.000009294926, z: -0.00021007315} + tangentMode: 0 + weightedMode: 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.00014376985, y: 0.01759059, z: 0.00011700815} + inSlope: {x: -0.00015871572, y: 0.000016701235, z: -0.0002120271} + outSlope: {x: -0.00015871106, y: 0.000016845988, z: -0.000212016} + tangentMode: 0 + weightedMode: 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.9333334 + value: {x: -0.00017540436, y: 0.017591702, z: 0.00006656294} + inSlope: {x: -0.000113323076, y: 0.000006737033, z: -0.00017163526} + outSlope: {x: -0.00011332483, y: 0.000006493505, z: -0.00017163884} + tangentMode: 0 + weightedMode: 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.133333 + value: {x: -0.00020014618, y: 0.017591877, z: 0.000032262524} + inSlope: {x: -0.00014708328, y: -0.000006774499, z: -0.00014291023} + outSlope: {x: -0.00014707987, y: -0.0000069652338, z: -0.00014290561} + tangentMode: 0 + weightedMode: 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.233333 + value: {x: -0.00021479168, y: 0.01759094, z: 0.000018988827} + inSlope: {x: -0.00014448877, y: -0.0000038743046, z: -0.00012818327} + outSlope: {x: -0.000144487, y: -0.0000043527834, z: -0.00012818194} + tangentMode: 0 + weightedMode: 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.3333335 + value: {x: -0.00022799133, y: 0.01759079, z: 0.000007758587} + inSlope: {x: -0.000111461006, y: -0.000007128722, z: -0.00008464699} + outSlope: {x: -0.000111468114, y: -0.000006863054, z: -0.000084650805} + tangentMode: 0 + weightedMode: 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.366667 + value: {x: -0.00023145923, y: 0.017590424, z: 0.0000053147596} + inSlope: {x: -0.00009916933, y: -0.000015378011, z: -0.00006421906} + outSlope: {x: -0.000099171324, y: -0.0000152094135, z: -0.000064221145} + tangentMode: 0 + weightedMode: 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.4 + value: {x: -0.00023460256, y: 0.017589755, z: 0.0000034773882} + inSlope: {x: -0.00009275052, y: -0.000024235269, z: -0.0000523047} + outSlope: {x: -0.00009275387, y: -0.000024281248, z: -0.00005230603} + tangentMode: 0 + weightedMode: 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.4333334 + value: {x: -0.00023764308, y: 0.017588805, z: 0.0000018276273} + inSlope: {x: -0.00009134624, y: -0.000032455606, z: -0.000050020713} + outSlope: {x: -0.00009134962, y: -0.000032760443, z: -0.000050021707} + tangentMode: 0 + weightedMode: 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.4666667 + value: {x: -0.00024069221, y: 0.017587585, z: 0.00000014275844} + inSlope: {x: -0.00009262686, y: -0.000034293134, z: -0.0000496002} + outSlope: {x: -0.00009262412, y: -0.00003417733, z: -0.000049600676} + tangentMode: 0 + weightedMode: 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.00024381831, y: 0.017586527, z: -0.0000014791798} + inSlope: {x: -0.000097325974, y: -0.00002412968, z: -0.000046686866} + outSlope: {x: -0.000097327036, y: -0.000024192694, z: -0.000046686837} + tangentMode: 0 + weightedMode: 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.7 + value: {x: -0.00026348425, y: 0.017588947, z: -0.000010126696} + inSlope: {x: -0.00006078143, y: -0.0000102571175, z: -0.000051023177} + outSlope: {x: -0.000060777045, y: -0.000010415492, z: -0.000051020117} + tangentMode: 0 + weightedMode: 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.00026894288, y: 0.017585672, z: -0.000018456327} + inSlope: {x: -0.000017599776, y: -0.000024247187, z: -0.00007758581} + outSlope: {x: -0.000017601134, y: -0.000024236972, z: -0.00007758917} + tangentMode: 0 + weightedMode: 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.9 + value: {x: -0.0002693821, y: 0.01758405, z: -0.000023393039} + inSlope: {x: 0.0000031714758, y: -0.000023463812, z: -0.00005578591} + outSlope: {x: 0.00000316594, y: -0.000023242423, z: -0.00005578796} + tangentMode: 0 + weightedMode: 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.00026693052, y: 0.017580874, z: -0.000025524336} + inSlope: {x: 0.000052912976, y: -0.000042126896, z: 0.000015803564} + outSlope: {x: 0.000052909156, y: -0.000042368112, z: 0.000015803294} + tangentMode: 0 + weightedMode: 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.066667 + value: {x: -0.00026268983, y: 0.017578444, z: -0.000022217419} + inSlope: {x: 0.00006277395, y: -0.000023399432, z: 0.00008265495} + outSlope: {x: 0.00006277147, y: -0.00002333235, z: 0.00008264456} + tangentMode: 0 + weightedMode: 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.133333 + value: {x: -0.0002584808, y: 0.017577222, z: -0.000015407753} + inSlope: {x: 0.00007430728, y: -0.000044830183, z: 0.00010684879} + outSlope: {x: 0.000074295975, y: -0.000044742043, z: 0.00010683052} + tangentMode: 0 + weightedMode: 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.166667 + value: {x: -0.00025572107, y: 0.01757491, z: -0.000011861494} + inSlope: {x: 0.00009215584, y: -0.000047977683, z: 0.00011535051} + outSlope: {x: 0.00009218054, y: -0.000048132333, z: 0.00011537774} + tangentMode: 0 + weightedMode: 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.233334 + value: {x: -0.00024829735, y: 0.01757307, z: -0.0000029956602} + inSlope: {x: 0.00013025533, y: -0.000029607783, z: 0.0001462432} + outSlope: {x: 0.00013028375, y: -0.000029365096, z: 0.00014627395} + tangentMode: 0 + weightedMode: 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.266666 + value: {x: -0.00024365303, y: 0.017572047, z: 0.000002032199} + inSlope: {x: 0.00014168065, y: -0.000027832384, z: 0.00015009526} + outSlope: {x: 0.00014164961, y: -0.00002824541, z: 0.00015006446} + tangentMode: 0 + weightedMode: 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.00023456785, y: 0.017571645, z: 0.000012056029} + inSlope: {x: 0.00012860018, y: 0.00001346915, z: 0.0001514468} + outSlope: {x: 0.00012860018, y: 0.00001346915, z: 0.0001514468} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips + m_ScaleCurves: [] + m_FloatCurves: [] + m_PPtrCurves: [] + m_SampleRate: 30 + 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: 1083781737 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1083781737 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 408225041 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 168334831 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 215603437 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1852142506 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1775379527 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3198065886 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 407569882 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3106263194 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2140469971 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1886386198 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 395264987 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 4080340377 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1014061991 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1587372701 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 357817416 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1915810720 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3001700786 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3132553515 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2015721024 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 407230557 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2938783533 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1207142558 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 10533847 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2486468252 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1925155201 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 523512273 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1714668715 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2119318601 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2334650127 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 4220895696 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1454392865 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2471676248 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 565509406 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2538289614 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2364716999 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3092991833 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2853632173 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3575002567 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 688943277 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 971364194 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1021604224 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 733358149 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1941555904 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1601611806 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 4126269581 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2280639224 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3482077456 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3984737358 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3155596823 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1692231856 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 440322630 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3048725362 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1185900278 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2828911296 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1935085395 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3974837130 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2435940167 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1651132406 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3169137491 + 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: 8.333334 + 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/Jammo-Character/Animations/Default/a_Idle_Relaxed.anim.meta b/Assets/Jammo-Character/Animations/Default/a_Idle_Relaxed.anim.meta new file mode 100644 index 0000000..dd80b81 --- /dev/null +++ b/Assets/Jammo-Character/Animations/Default/a_Idle_Relaxed.anim.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: b2cad9ba00286364bad6feeb3b9d5b8c +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 7400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Jammo-Character/Animations/Default/a_Idle_Scared.anim b/Assets/Jammo-Character/Animations/Default/a_Idle_Scared.anim new file mode 100644 index 0000000..0782c06 --- /dev/null +++ b/Assets/Jammo-Character/Animations/Default/a_Idle_Scared.anim @@ -0,0 +1,4309 @@ +%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: a_Idle_Scared + 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, 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.033333335 + 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: Armature.001 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.15976208, y: 0.03276984, z: 0.01392744, w: 0.9865132} + inSlope: {x: 0.121708356, y: -0.0223333, z: -0.016361335, w: -0.019006131} + outSlope: {x: 0.121708356, y: -0.0223333, z: -0.016361335, w: -0.019006131} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: 0.17867951, y: 0.025757173, z: 0.012809717, w: 0.9834867} + inSlope: {x: 0.021459462, y: -0.03231629, z: -0.008436624, w: -0.0029271843} + outSlope: {x: 0.021459462, y: -0.03231629, z: -0.008436624, w: -0.0029271843} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.17892502, y: 0.02926967, z: 0.0129549885, w: 0.9833419} + inSlope: {x: -0.00947356, y: 0.027603157, z: -0.015827738, w: 0.0011166921} + outSlope: {x: -0.00947356, y: 0.027603157, z: -0.015827738, w: 0.0011166921} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3666668 + value: {x: 0.17309898, y: 0.025253862, z: 0.013051293, w: 0.9844941} + inSlope: {x: 0.013935404, y: 0.024454921, z: 0.0058676368, w: -0.0031605337} + outSlope: {x: 0.013935404, y: 0.024454921, z: 0.0058676368, w: -0.0031605337} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9666668 + value: {x: 0.16523233, y: 0.04044134, z: 0.013540394, w: 0.98533213} + inSlope: {x: 0.0031245616, y: 0.008360237, z: -0.018946793, w: -0.00061243965} + outSlope: {x: 0.0031245616, y: 0.008360237, z: -0.018946793, w: -0.00061243965} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.7 + value: {x: 0.16349071, y: 0.040285517, z: 0.012948976, w: 0.98563695} + inSlope: {x: -0.002209701, y: -0.034281313, z: 0.012283935, w: 0.0016182654} + outSlope: {x: -0.002209701, y: -0.034281313, z: 0.012283935, w: 0.0016182654} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.2333336 + value: {x: 0.15721418, y: 0.030575152, z: 0.013749312, w: 0.9869954} + inSlope: {x: 0.013051866, y: 0.01302725, z: 0.0009160032, w: -0.002498927} + outSlope: {x: 0.013051866, y: 0.01302725, z: 0.0009160032, w: -0.002498927} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.15976137, y: 0.0327664, z: 0.013947226, w: 0.98651314} + inSlope: {x: 0.034790073, y: 0.025940226, z: 0.004219985, w: -0.0065231384} + outSlope: {x: 0.034790073, y: 0.025940226, z: 0.004219985, w: -0.0065231384} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.03069147, y: 0.005609847, z: -0.0131469155, w: 0.9994267} + inSlope: {x: -0.0093038, y: 0.022809811, z: -0.009508542, w: 0.000019669531} + outSlope: {x: -0.0093038, y: 0.022809811, z: -0.009508542, w: 0.000019669531} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6333334 + value: {x: 0.029457416, y: 0.0074833063, z: -0.014470362, w: 0.9994333} + inSlope: {x: 0.0045079314, y: 0.0104531655, z: -0.0083228415, w: -0.00033169996} + outSlope: {x: 0.0045079314, y: 0.0104531655, z: -0.0083228415, w: -0.00033169996} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5000001 + value: {x: 0.03081428, y: 0.0053556385, z: -0.007856373, w: 0.9994799} + inSlope: {x: 0.0048998585, y: 0.010506115, z: -0.0022241531, w: -0.000222623} + outSlope: {x: 0.0048998585, y: 0.010506115, z: -0.0022241531, w: -0.000222623} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.9333334 + value: {x: 0.031552766, y: 0.007380326, z: -0.011919311, w: 0.9994038} + inSlope: {x: -0.010081893, y: 0.009900331, z: -0.0043657953, w: 0.00019222446} + outSlope: {x: -0.010081893, y: 0.009900331, z: -0.0043657953, w: 0.00019222446} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.030691326, y: 0.005603241, z: -0.013145674, w: 0.9994268} + inSlope: {x: -0.007814009, y: -0.00032431012, z: 0.002806096, w: 0.00028073814} + outSlope: {x: -0.007814009, y: -0.00032431012, z: 0.002806096, w: 0.00028073814} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.024894081, y: 0.0050250287, z: -0.0073968223, w: 0.9996501} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.024894081, y: 0.0050250287, z: -0.0073968223, w: 0.9996501} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.012370244, y: 0.004998951, z: -0.007348792, w: 0.999884} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.012370244, y: 0.004998951, z: -0.007348792, w: 0.999884} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.08076511, y: -0.008333027, z: -0.006711732, w: 0.9966757} + inSlope: {x: -0.038718354, y: 0.001757657, z: 0.0012788827, w: -0.0031381843} + outSlope: {x: -0.038718354, y: 0.001757657, z: 0.0012788827, w: -0.0031381843} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: -0.08302177, y: -0.0075644148, z: -0.004466053, w: 0.996509} + inSlope: {x: -0.0078865895, y: 0.0044876016, z: 0.0019034046, w: -0.0006097555} + outSlope: {x: -0.0078865895, y: 0.0044876016, z: 0.0019034046, w: -0.0006097555} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.081694566, y: -0.008890381, z: -0.01378174, w: 0.9965225} + inSlope: {x: 0.024168264, y: -0.056792803, z: -0.040961497, w: 0.00086903555} + outSlope: {x: 0.024168264, y: -0.056792803, z: -0.040961497, w: 0.00086903555} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.0634582, y: -0.03988049, z: -0.039668605, w: 0.99639803} + inSlope: {x: 0.021388706, y: -0.021185827, z: -0.04302016, w: -0.0011676552} + outSlope: {x: 0.021388706, y: -0.021185827, z: -0.04302016, w: -0.0011676552} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4666667 + value: {x: -0.078024216, y: -0.014460293, z: -0.013464741, w: 0.99675566} + inSlope: {x: -0.086265475, y: 0.18351075, z: 0.21739149, w: -0.001158711} + outSlope: {x: -0.086265475, y: 0.18351075, z: 0.21739149, w: -0.001158711} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9000001 + value: {x: -0.0872591, y: 0.010238298, z: 0.018630333, w: 0.9959588} + inSlope: {x: -0.0028722016, y: -0.0061002714, z: -0.033155404, w: 0.0004345183} + outSlope: {x: -0.0028722016, y: -0.0061002714, z: -0.033155404, w: 0.0004345183} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.4 + value: {x: -0.08494075, y: -0.005702713, z: -0.0015750882, w: 0.99636847} + inSlope: {x: 0.01951253, y: -0.008120507, z: -0.009103667, w: 0.0015932337} + outSlope: {x: 0.01951253, y: -0.008120507, z: -0.009103667, w: 0.0015932337} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.08076641, y: -0.008322345, z: -0.0067224554, w: 0.99667567} + inSlope: {x: -0.016753094, y: -0.00011307198, z: 0.0001398941, w: -0.0013536228} + outSlope: {x: -0.016753094, y: -0.00011307198, z: 0.0001398941, w: -0.0013536228} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.018052226, y: -0.046473093, z: 0.034206472, w: 0.9981705} + inSlope: {x: -0.006660539, y: 0.009170025, z: 0.018011255, w: -0.00031828877} + outSlope: {x: -0.006660539, y: 0.009170025, z: 0.018011255, w: -0.00031828877} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.0008668552, y: -0.043709625, z: 0.038110398, w: 0.99831676} + inSlope: {x: -0.0008416574, y: 0.04406512, z: 0.0079954425, w: 0.0016236306} + outSlope: {x: -0.0008416574, y: 0.04406512, z: 0.0079954425, w: 0.0016236306} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: -0.012436204, y: -0.042389855, z: 0.03519777, w: 0.9984035} + inSlope: {x: 0.052849516, y: -0.040794913, z: 0.039315674, w: -0.0024595836} + outSlope: {x: 0.052849516, y: -0.040794913, z: 0.039315674, w: -0.0024595836} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.016165372, y: -0.05755601, z: 0.0426464, w: 0.9973} + inSlope: {x: 0.01197442, y: -0.32146442, z: 0.13295268, w: -0.024998184} + outSlope: {x: 0.01197442, y: -0.32146442, z: 0.13295268, w: -0.024998184} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9333334 + value: {x: -0.024073968, y: -0.12177439, z: 0.077111475, w: 0.989265} + inSlope: {x: -0.21284953, y: -0.99171567, z: 0.52369976, w: -0.17027918} + outSlope: {x: -0.21284953, y: -0.99171567, z: 0.52369976, w: -0.17027918} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.037818924, y: -0.22637273, z: 0.12609439, w: 0.9651038} + inSlope: {x: -0.03824884, y: -0.34633565, z: 0.1659101, w: -0.10238628} + outSlope: {x: -0.03824884, y: -0.34633565, z: 0.1659101, w: -0.10238628} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2333333 + value: {x: -0.03774586, y: -0.22801214, z: 0.12777668, w: 0.9644993} + inSlope: {x: 0.0007531942, y: 0.08961186, z: -0.0005046823, w: 0.021273473} + outSlope: {x: 0.0007531942, y: 0.08961186, z: -0.0005046823, w: 0.021273473} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3666668 + value: {x: -0.035246335, y: -0.18726791, z: 0.109420516, w: 0.9755591} + inSlope: {x: 0.06132825, y: 0.7680562, z: -0.3931113, w: 0.18846798} + outSlope: {x: 0.06132825, y: 0.7680562, z: -0.3931113, w: 0.18846798} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5000001 + value: {x: -0.020828104, y: -0.046811003, z: 0.034206226, w: 0.99810064} + inSlope: {x: 0.12028464, y: 1.0166672, z: -0.5182373, w: 0.07230062} + outSlope: {x: 0.12028464, y: 1.0166672, z: -0.5182373, w: 0.07230062} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.014886103, y: 0.052590486, z: -0.017170347, w: 0.9983576} + inSlope: {x: -0.033251487, y: 0.26963612, z: -0.15497515, w: -0.016834453} + outSlope: {x: -0.033251487, y: 0.26963612, z: -0.15497515, w: -0.016834453} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9000001 + value: {x: -0.01660903, y: 0.07144025, z: -0.029032063, w: 0.9968839} + inSlope: {x: -0.028876912, y: -0.071715854, z: 0.002050411, w: 0.004625027} + outSlope: {x: -0.028876912, y: -0.071715854, z: 0.002050411, w: 0.004625027} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.017140187, y: -0.001714983, z: 0.014572622, w: 0.9997454} + inSlope: {x: -0.0005839118, y: -0.22663477, z: 0.0901528, w: -0.0015681997} + outSlope: {x: -0.0005839118, y: -0.22663477, z: 0.0901528, w: -0.0015681997} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.6000001 + value: {x: -0.014482761, y: -0.032723073, z: 0.030437078, w: 0.99889594} + inSlope: {x: -0.0016148454, y: -0.009199819, z: -0.007774921, w: -0.00008672484} + outSlope: {x: -0.0016148454, y: -0.009199819, z: -0.007774921, w: -0.00008672484} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.9 + value: {x: -0.017980639, y: -0.035207205, z: 0.030042313, w: 0.99876654} + inSlope: {x: 0.035012, y: -0.034196075, z: 0.017307082, w: -0.0010782491} + outSlope: {x: 0.035012, y: -0.034196075, z: 0.017307082, w: -0.0010782491} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.2333336 + value: {x: -0.014323174, y: -0.046187557, z: 0.034311876, w: 0.9982406} + inSlope: {x: 0.014656052, y: 0.0072772875, z: -0.015490554, w: 0.0010961305} + outSlope: {x: 0.014656052, y: 0.0072772875, z: -0.015490554, w: 0.0010961305} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.018053593, y: -0.046463713, z: 0.034194704, w: 0.9981713} + inSlope: {x: -0.039423928, y: -0.004281145, z: 0.004881178, w: -0.001051427} + outSlope: {x: -0.039423928, y: -0.004281145, z: 0.004881178, w: -0.001051427} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.06928724, y: 0, z: -0, w: 0.99759674} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: -0.06928724, y: 0, z: -0, w: 0.99759674} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head/mixamorig:HeadTop_End + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.40506425, y: -0.45798013, z: 0.59357256, w: 0.5233056} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.40506425, y: -0.45798013, z: 0.59357256, w: 0.5233056} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head/mixamorig:LeftEar + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.40506425, y: 0.45798013, z: -0.59357256, w: 0.5233056} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.40506425, y: 0.45798013, z: -0.59357256, w: 0.5233056} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head/mixamorig:RightEar + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.5011795, y: -0.49521327, z: 0.52606225, w: 0.47627875} + inSlope: {x: -0.006873607, y: -0.008223653, z: -0.0312227, w: 0.033091307} + outSlope: {x: -0.006873607, y: -0.008223653, z: -0.0312227, w: 0.033091307} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.49925146, y: -0.49789166, z: 0.5195606, w: 0.48260626} + inSlope: {x: 0.032022897, y: 0.034067187, z: 0.01368642, w: -0.01270339} + outSlope: {x: 0.032022897, y: 0.034067187, z: 0.01368642, w: -0.01270339} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6333334 + value: {x: 0.4957868, y: -0.5017923, z: 0.51986784, w: 0.48180655} + inSlope: {x: 0.028560176, y: 0.03554465, z: -0.0016915612, w: 0.009410511} + outSlope: {x: 0.028560176, y: 0.03554465, z: -0.0016915612, w: 0.009410511} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2333333 + value: {x: 0.5077605, y: -0.48723605, z: 0.52832896, w: 0.47502506} + inSlope: {x: 0.014040462, y: 0.022071436, z: 0.0007966187, w: 0.0067506647} + outSlope: {x: 0.014040462, y: 0.022071436, z: 0.0007966187, w: 0.0067506647} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.2 + value: {x: 0.5074067, y: -0.48715106, z: 0.52830285, w: 0.4755191} + inSlope: {x: 0.0032410056, y: 0.0007890172, z: 0.0008010871, w: -0.0035414132} + outSlope: {x: 0.0032410056, y: 0.0007890172, z: 0.0008010871, w: -0.0035414132} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.8666668 + value: {x: 0.5018572, y: -0.49502873, z: 0.51997113, w: 0.4824064} + inSlope: {x: -0.0048968242, y: -0.0101477, z: -0.020887274, w: 0.017159447} + outSlope: {x: -0.0048968242, y: -0.0101477, z: -0.020887274, w: 0.017159447} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.1000001 + value: {x: 0.50027007, y: -0.4968513, z: 0.5184943, w: 0.48376882} + inSlope: {x: 0.043867573, y: 0.056683175, z: 0.06889529, w: -0.061077982} + outSlope: {x: 0.043867573, y: 0.056683175, z: 0.06889529, w: -0.061077982} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.5010354, y: -0.49513662, z: 0.5261819, w: 0.47637808} + inSlope: {x: -0.027925398, y: -0.031158358, z: -0.007783778, w: 0.005654102} + outSlope: {x: -0.027925398, y: -0.031158358, z: -0.007783778, w: 0.005654102} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.5228431, y: -0.11214271, z: -0.20389308, w: 0.82005286} + inSlope: {x: 0.0543791, y: -0.0012461095, z: -0.035153925, w: -0.043705698} + outSlope: {x: 0.0543791, y: -0.0012461095, z: -0.035153925, w: -0.043705698} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.5317317, y: -0.11336778, z: -0.2063223, w: 0.81353563} + inSlope: {x: 0.03328711, y: -0.092577204, z: 0.046825558, w: -0.02272904} + outSlope: {x: 0.03328711, y: -0.092577204, z: 0.046825558, w: -0.02272904} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.5238088, y: -0.10539919, z: -0.2159752, w: 0.8172332} + inSlope: {x: -0.020306112, y: 0.18959296, z: -0.090823404, w: 0.013689996} + outSlope: {x: -0.020306112, y: 0.18959296, z: -0.090823404, w: 0.013689996} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6333334 + value: {x: 0.5341192, y: -0.100678064, z: -0.21218811, w: 0.81213105} + inSlope: {x: -0.11456792, y: 0.063068256, z: -0.10674795, w: 0.05472692} + outSlope: {x: -0.11456792, y: 0.063068256, z: -0.10674795, w: 0.05472692} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7666667 + value: {x: 0.52370554, y: -0.08069794, z: -0.22655956, w: 0.8172461} + inSlope: {x: 0.049339194, y: 0.09629178, z: 0.037176058, w: -0.011687269} + outSlope: {x: 0.049339194, y: 0.09629178, z: 0.037176058, w: -0.011687269} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9666667 + value: {x: 0.52114564, y: -0.08875334, z: -0.22704104, w: 0.8179135} + inSlope: {x: -0.05459284, y: -0.056774933, z: -0.052956916, w: 0.013970746} + outSlope: {x: -0.05459284, y: -0.056774933, z: -0.052956916, w: 0.013970746} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3000001 + value: {x: 0.51778716, y: -0.09530857, z: -0.20915529, w: 0.8240551} + inSlope: {x: -0.027056362, y: -0.0274673, z: 0.0619269, w: 0.029557077} + outSlope: {x: -0.027056362, y: -0.0274673, z: 0.0619269, w: 0.029557077} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.51707834, y: -0.08852135, z: -0.19227785, w: 0.82935107} + inSlope: {x: 0.0882698, y: 0.03184981, z: 0.09253138, w: -0.03021243} + outSlope: {x: 0.0882698, y: 0.03184981, z: 0.09253138, w: -0.03021243} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.0333335 + value: {x: 0.5262991, y: -0.09932962, z: -0.18917501, w: 0.8230163} + inSlope: {x: 0.03490079, y: -0.027861, z: 0.013937377, w: -0.02244912} + outSlope: {x: 0.03490079, y: -0.027861, z: 0.013937377, w: -0.02244912} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.4 + value: {x: 0.52642566, y: -0.099485666, z: -0.19670023, w: 0.8211502} + inSlope: {x: 0.00025749253, y: -0.022645466, z: 0.027574476, w: 0.0036817824} + outSlope: {x: 0.00025749253, y: -0.022645466, z: 0.027574476, w: 0.0036817824} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.7 + value: {x: 0.52965415, y: -0.10405886, z: -0.19847633, w: 0.81807417} + inSlope: {x: -0.011633556, y: -0.007655717, z: -0.056738578, w: -0.0072401813} + outSlope: {x: -0.011633556, y: -0.007655717, z: -0.056738578, w: -0.0072401813} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.9333334 + value: {x: 0.5299069, y: -0.10116894, z: -0.20801567, w: 0.8159001} + inSlope: {x: 0.026624452, y: -0.096525356, z: -0.0026730134, w: -0.029993279} + outSlope: {x: 0.026624452, y: -0.096525356, z: -0.0026730134, w: -0.029993279} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.51914144, y: -0.10640559, z: -0.2092495, w: 0.821818} + inSlope: {x: -0.008710035, y: 0.056810796, z: 0.05314137, w: 0.026467111} + outSlope: {x: -0.008710035, y: 0.056810796, z: 0.05314137, w: 0.026467111} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.5228433, y: -0.11214279, z: -0.20389311, w: 0.82005274} + inSlope: {x: 0.015100851, y: -0.05887611, z: -0.0055199913, w: -0.0189686} + outSlope: {x: 0.015100851, y: -0.05887611, z: -0.0055199913, w: -0.0189686} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.053180974, y: -0.04338461, z: -0.6554086, w: 0.75214964} + inSlope: {x: -0.0037681682, y: 0.0041183084, z: 0.04638612, w: 0.04083931} + outSlope: {x: -0.0037681682, y: 0.0041183084, z: 0.04638612, w: 0.04083931} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: 0.052401166, y: -0.04253266, z: -0.64579725, w: 0.7605202} + inSlope: {x: 0.0039975527, y: -0.004358589, z: -0.04921048, w: -0.04235029} + outSlope: {x: 0.0039975527, y: -0.004358589, z: -0.04921048, w: -0.04235029} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: 0.05212531, y: -0.04223209, z: -0.64240265, w: 0.76342535} + inSlope: {x: 0.0022185224, y: -0.0024249407, z: -0.027413966, w: -0.023352208} + outSlope: {x: 0.0022185224, y: -0.0024249407, z: -0.027413966, w: -0.023352208} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2 + value: {x: 0.0521855, y: -0.042296864, z: -0.64313936, w: 0.7627971} + inSlope: {x: 0.003443289, y: -0.0037479438, z: -0.04236374, w: -0.03616873} + outSlope: {x: 0.003443289, y: -0.0037479438, z: -0.04236374, w: -0.03616873} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6333334 + value: {x: 0.052793432, y: -0.042961042, z: -0.6506332, w: 0.7563357} + inSlope: {x: -0.002510494, y: 0.002737141, z: 0.030850798, w: 0.026890066} + outSlope: {x: -0.002510494, y: 0.002737141, z: 0.030850798, w: 0.026890066} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9333334 + value: {x: 0.052884676, y: -0.043060526, z: -0.6517571, w: 0.7553553} + inSlope: {x: -0.00180859, y: 0.0019747752, z: 0.022271262, w: 0.01946031} + outSlope: {x: -0.00180859, y: 0.0019747752, z: 0.022271262, w: 0.01946031} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.2333333 + value: {x: 0.05283352, y: -0.04300417, z: -0.65112376, w: 0.75590813} + inSlope: {x: -0.00020312259, y: 0.00021128116, z: 0.0024327785, w: 0.0021216401} + outSlope: {x: -0.00020312259, y: 0.00021128116, z: 0.0024327785, w: 0.0021216401} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.6000001 + value: {x: 0.053085174, y: -0.043280315, z: -0.6542329, w: 0.75318533} + inSlope: {x: -0.0016535276, y: 0.0018148514, z: 0.02043756, w: 0.017994063} + outSlope: {x: -0.0016535276, y: 0.0018148514, z: 0.02043756, w: 0.017994063} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.966667 + value: {x: 0.05256176, y: -0.042707838, z: -0.64777935, w: 0.7588117} + inSlope: {x: 0.00071050593, y: -0.00077789644, z: -0.008778869, w: -0.0075915447} + outSlope: {x: 0.00071050593, y: -0.00077789644, z: -0.008778869, w: -0.0075915447} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.053180903, y: -0.043384634, z: -0.6554084, w: 0.7521499} + inSlope: {x: 0.0024797046, y: -0.0027136158, z: -0.030500323, w: -0.026873972} + outSlope: {x: 0.0024797046, y: -0.0027136158, z: -0.030500323, w: -0.026873972} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.2686885, y: 0.13905104, z: -0.29153478, w: 0.9074573} + inSlope: {x: -0.09934723, y: -0.010942518, z: -0.049290057, w: -0.043836232} + outSlope: {x: -0.09934723, y: -0.010942518, z: -0.049290057, w: -0.043836232} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: -0.28071764, y: 0.12491109, z: -0.3134189, w: 0.89853406} + inSlope: {x: -0.14260723, y: -0.10885185, z: -0.18542421, w: -0.09396224} + outSlope: {x: -0.14260723, y: -0.10885185, z: -0.18542421, w: -0.09396224} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: -0.2951158, y: 0.13121195, z: -0.31809077, w: 0.891352} + inSlope: {x: -0.011160224, y: 0.0010831952, z: 0.03608645, w: 0.009106995} + outSlope: {x: -0.011160224, y: 0.0010831952, z: 0.03608645, w: 0.009106995} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: -0.28414807, y: 0.1180668, z: -0.3274193, w: 0.8933738} + inSlope: {x: 0.088275895, y: -0.009633929, z: -0.0694097, w: 0.00394195} + outSlope: {x: 0.088275895, y: -0.009633929, z: -0.0694097, w: 0.00394195} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7666667 + value: {x: -0.27480838, y: 0.11817176, z: -0.32598776, w: 0.8967986} + inSlope: {x: 0.083211, y: -0.0153283635, z: 0.0037345258, w: 0.02895353} + outSlope: {x: 0.083211, y: -0.0153283635, z: 0.0037345258, w: 0.02895353} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2333333 + value: {x: -0.27305835, y: 0.12370981, z: -0.31565356, w: 0.90027654} + inSlope: {x: -0.028194023, y: 0.01270036, z: 0.009350201, w: -0.007010387} + outSlope: {x: -0.028194023, y: 0.01270036, z: 0.009350201, w: -0.007010387} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.27175856, y: 0.12884177, z: -0.3181842, w: 0.89905834} + inSlope: {x: 0.056112684, y: 0.02773309, z: -0.023285544, w: 0.004740379} + outSlope: {x: 0.056112684, y: 0.02773309, z: -0.023285544, w: 0.004740379} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7333335 + value: {x: -0.25730243, y: 0.1312302, z: -0.324732, w: 0.9006238} + inSlope: {x: 0.0028932004, y: -0.011005267, z: 0.004219143, w: 0.0039607277} + outSlope: {x: 0.0028932004, y: -0.011005267, z: 0.004219143, w: 0.0039607277} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.0666668 + value: {x: -0.26028347, y: 0.12962998, z: -0.32045317, w: 0.90153116} + inSlope: {x: -0.035706047, y: -0.018374937, z: -0.035191063, w: -0.02016129} + outSlope: {x: -0.035706047, y: -0.018374937, z: -0.035191063, w: -0.02016129} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.5000002 + value: {x: -0.27483505, y: 0.13467522, z: -0.31979823, w: 0.8966925} + inSlope: {x: -0.038481, y: -0.005694541, z: 0.03399063, w: 0.0012338366} + outSlope: {x: -0.038481, y: -0.005694541, z: 0.03399063, w: 0.0012338366} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.8000002 + value: {x: -0.2733893, y: 0.1388469, z: -0.30774248, w: 0.9007077} + inSlope: {x: 0.011520546, y: 0.073221475, z: 0.04192967, w: 0.00653655} + outSlope: {x: 0.011520546, y: 0.073221475, z: 0.04192967, w: 0.00653655} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.2701619, y: 0.14482762, z: -0.29216543, w: 0.90591216} + inSlope: {x: 0.09063613, y: -0.019220661, z: 0.06366659, w: 0.050738357} + outSlope: {x: 0.09063613, y: -0.019220661, z: 0.06366659, w: 0.050738357} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.2686886, y: 0.13905078, z: -0.29153478, w: 0.90745735} + inSlope: {x: -0.04551266, y: -0.026020134, z: -0.020587763, w: -0.016039625} + outSlope: {x: -0.04551266, y: -0.026020134, z: -0.020587763, w: -0.016039625} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.24707283, y: -0.14416644, z: -0.41128936, w: 0.86545485} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.24707283, y: -0.14416644, z: -0.41128936, w: 0.86545485} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.05109003, y: -0.13959758, z: 0.04125986, w: 0.9880283} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.05109003, y: -0.13959758, z: 0.04125986, w: 0.9880283} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.033173002, y: -0.009789251, z: 0.068572365, w: 0.9970464} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: -0.033173002, y: -0.009789251, z: 0.068572365, w: 0.9970464} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2/mixamorig:LeftHandThumb3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.020066867, y: 0.04093231, z: 0.014504469, w: 0.9988551} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.020066867, y: 0.04093231, z: 0.014504469, w: 0.9988551} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2/mixamorig:LeftHandThumb3/mixamorig:LeftHandThumb4 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.16824579, y: -0.08990234, z: -0.14736888, w: 0.9705119} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.16824579, y: -0.08990234, z: -0.14736888, w: 0.9705119} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.17935108, y: -0.0051421807, z: 0.02479922, w: 0.9834591} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.17935108, y: -0.0051421807, z: 0.02479922, w: 0.9834591} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.105325185, y: 0.00000010111263, z: 0.014002636, w: 0.9943392} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.105325185, y: 0.00000010111263, z: 0.014002636, w: 0.9943392} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2/mixamorig:LeftHandIndex3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.044488568, y: 0.000000012885542, z: -0.000000094513, w: 0.9990099} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.044488568, y: 0.000000012885542, z: -0.000000094513, w: 0.9990099} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2/mixamorig:LeftHandIndex3/mixamorig:LeftHandIndex4 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.121552795, y: 0.030757053, z: -0.035946693, w: 0.9914569} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.121552795, y: 0.030757053, z: -0.035946693, w: 0.9914569} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.22440441, y: -0.013265434, z: 0.032316905, w: 0.9738698} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.22440441, y: -0.013265434, z: 0.032316905, w: 0.9738698} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.04972499, y: 0.0029444613, z: 0.0071598804, w: 0.998733} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.04972499, y: 0.0029444613, z: 0.0071598804, w: 0.998733} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2/mixamorig:LeftHandMiddle3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.010558562, y: -0.0028613426, z: -0.0028610341, w: 0.9999361} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.010558562, y: -0.0028613426, z: -0.0028610341, w: 0.9999361} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2/mixamorig:LeftHandMiddle3/mixamorig:LeftHandMiddle4 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.16373053, y: 0.12182087, z: 0.18596663, w: 0.9611287} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.16373053, y: 0.12182087, z: 0.18596663, w: 0.9611287} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.115061, y: -0.00014203017, z: 0.015297427, w: 0.9932406} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.115061, y: -0.00014203017, z: 0.015297427, w: 0.9932406} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.06639256, y: 0.0000000128111255, z: 0.008817248, w: 0.99775463} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.06639256, y: 0.0000000128111255, z: 0.008817248, w: 0.99775463} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2/mixamorig:LeftHandPinky3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.04451906, y: -0.00000008792739, z: -0.00000006204611, w: 0.99900854} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.04451906, y: -0.00000008792739, z: -0.00000006204611, w: 0.99900854} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2/mixamorig:LeftHandPinky3/mixamorig:LeftHandPinky4 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.58399945, y: 0.4699011, z: -0.39142698, w: 0.53378135} + inSlope: {x: 0.02013087, y: -0.02107322, z: -0.019698141, w: -0.017963646} + outSlope: {x: 0.02013087, y: -0.02107322, z: -0.019698141, w: -0.017963646} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: 0.5781011, y: 0.47590876, z: -0.38575, w: 0.538987} + inSlope: {x: -0.072258696, y: 0.07359488, z: 0.07723732, w: 0.06812899} + outSlope: {x: -0.072258696, y: 0.07359488, z: 0.07723732, w: 0.06812899} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: 0.58349067, y: 0.46948284, z: -0.3880744, w: 0.5371432} + inSlope: {x: -0.028615613, y: 0.032511078, z: 0.0140480865, w: 0.012741402} + outSlope: {x: -0.028615613, y: 0.032511078, z: 0.0140480865, w: 0.012741402} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.70000005 + value: {x: 0.5848063, y: 0.46885052, z: -0.39221826, w: 0.5332408} + inSlope: {x: 0.05197137, y: -0.051321827, z: -0.06541773, w: -0.05984097} + outSlope: {x: 0.05197137, y: -0.051321827, z: -0.06541773, w: -0.05984097} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1333334 + value: {x: 0.58698434, y: 0.46581194, z: -0.39220542, w: 0.5335199} + inSlope: {x: 0.023558717, y: -0.033472598, z: -0.008146757, w: -0.0026839967} + outSlope: {x: 0.023558717, y: -0.033472598, z: -0.008146757, w: -0.0026839967} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6333334 + value: {x: 0.59179723, y: 0.46110833, z: -0.4025938, w: 0.5244744} + inSlope: {x: -0.009514699, y: 0.018835831, z: -0.018597562, w: -0.02009334} + outSlope: {x: -0.009514699, y: 0.018835831, z: -0.018597562, w: -0.02009334} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.9333334 + value: {x: 0.5813514, y: 0.4720543, z: -0.38891268, w: 0.53660244} + inSlope: {x: 0.0010138811, y: 0.0012762693, z: -0.0029893136, w: -0.004388081} + outSlope: {x: 0.0010138811, y: 0.0012762693, z: -0.0029893136, w: -0.004388081} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.58400446, y: 0.4698878, z: -0.39141375, w: 0.5337974} + inSlope: {x: -0.032045275, y: 0.031648308, z: 0.044924363, w: 0.04032258} + outSlope: {x: -0.032045275, y: 0.031648308, z: 0.044924363, w: 0.04032258} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.51589966, y: 0.041849192, z: 0.26415318, w: 0.81383} + inSlope: {x: 0.05553245, y: -0.10724756, z: -0.06893009, w: -0.0077122445} + outSlope: {x: 0.05553245, y: -0.10724756, z: -0.06893009, w: -0.0077122445} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.5359855, y: 0.03135663, z: 0.26307848, w: 0.8015772} + inSlope: {x: 0.15195426, y: 0.053900965, z: 0.04788234, w: -0.119353816} + outSlope: {x: 0.15195426, y: 0.053900965, z: 0.04788234, w: -0.119353816} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: 0.53466487, y: 0.02377404, z: 0.2706872, w: 0.80018544} + inSlope: {x: -0.18847437, y: -0.19786836, z: 0.120927855, w: 0.09062291} + outSlope: {x: -0.18847437, y: -0.19786836, z: 0.120927855, w: 0.09062291} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: 0.5217221, y: 0.008545644, z: 0.2723297, w: 0.8084365} + inSlope: {x: 0.14778265, y: 0.06939978, z: -0.091133446, w: -0.06561135} + outSlope: {x: 0.14778265, y: 0.06939978, z: -0.091133446, w: -0.06561135} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.5277378, y: 0.016125783, z: 0.27090493, w: 0.8048872} + inSlope: {x: -0.14926942, y: -0.12616333, z: -0.0129389865, w: 0.10461958} + outSlope: {x: -0.14926942, y: -0.12616333, z: -0.0129389865, w: 0.10461958} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.52827233, y: -0.0032531305, z: 0.27197418, w: 0.80433065} + inSlope: {x: 0.086482465, y: 0.043718815, z: -0.04706829, w: -0.040762432} + outSlope: {x: 0.086482465, y: 0.043718815, z: -0.04706829, w: -0.040762432} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1333334 + value: {x: 0.5310273, y: 0.003963641, z: 0.2557325, w: 0.8078336} + inSlope: {x: -0.011046218, y: 0.0004696634, z: -0.033867337, w: 0.017977044} + outSlope: {x: -0.011046218, y: 0.0004696634, z: -0.033867337, w: 0.017977044} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4666667 + value: {x: 0.5278206, y: 0.014189406, z: 0.26099318, w: 0.8081378} + inSlope: {x: -0.030637097, y: 0.030216675, z: 0.055415325, w: 0.0016683456} + outSlope: {x: -0.030637097, y: 0.030216675, z: 0.055415325, w: 0.0016683456} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.530869, y: 0.021482373, z: 0.26819128, w: 0.8036106} + inSlope: {x: -0.029445238, y: 0.05046214, z: -0.023950323, w: 0.026035272} + outSlope: {x: -0.029445238, y: 0.05046214, z: -0.023950323, w: 0.026035272} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.2 + value: {x: 0.52116853, y: 0.0260951, z: 0.268753, w: 0.80961365} + inSlope: {x: -0.02547654, y: -0.010818114, z: 0.0025525712, w: 0.015917137} + outSlope: {x: -0.02547654, y: -0.010818114, z: 0.0025525712, w: 0.015917137} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.7 + value: {x: 0.5206224, y: 0.032218214, z: 0.27169845, w: 0.80876094} + inSlope: {x: -0.024654802, y: 0.015821734, z: -0.0047090515, w: 0.016830817} + outSlope: {x: -0.024654802, y: 0.015821734, z: -0.0047090515, w: 0.016830817} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.966667 + value: {x: 0.5207546, y: 0.02993714, z: 0.2690393, w: 0.8096519} + inSlope: {x: 0.022687811, y: 0.10526432, z: -0.055845227, w: 0.00003131386} + outSlope: {x: 0.022687811, y: 0.10526432, z: -0.055845227, w: 0.00003131386} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.2000003 + value: {x: 0.5137278, y: 0.033207115, z: 0.26489007, w: 0.81536144} + inSlope: {x: 0.016202366, y: -0.00063887704, z: -0.012440997, w: -0.006163736} + outSlope: {x: 0.016202366, y: -0.00063887704, z: -0.012440997, w: -0.006163736} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.5158584, y: 0.041703414, z: 0.26422182, w: 0.81384134} + inSlope: {x: -0.017214434, y: 0.074053064, z: 0.012770903, w: 0.0030899078} + outSlope: {x: -0.017214434, y: 0.074053064, z: 0.012770903, w: 0.0030899078} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.054237057, y: 0.0445427, z: 0.66842544, w: 0.7404605} + inSlope: {x: -0.0021591783, y: -0.002380125, z: -0.02666652, w: 0.024343727} + outSlope: {x: -0.0021591783, y: -0.002380125, z: -0.02666652, w: 0.024343727} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: 0.052591514, y: 0.042740174, z: 0.6481445, w: 0.758496} + inSlope: {x: 0.0016653725, y: 0.0018237346, z: 0.020580592, w: -0.017833116} + outSlope: {x: 0.0016653725, y: 0.0018237346, z: 0.020580592, w: -0.017833116} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: 0.052593056, y: 0.04274193, z: 0.64816266, w: 0.75848025} + inSlope: {x: 0.0071185837, y: 0.0077725397, z: 0.08777351, w: -0.075812645} + outSlope: {x: 0.0071185837, y: 0.0077725397, z: 0.08777351, w: -0.075812645} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.05279807, y: 0.04296639, z: 0.6506931, w: 0.7562836} + inSlope: {x: 0.0055416115, y: 0.0060650893, z: 0.06837844, w: -0.059611194} + outSlope: {x: 0.0055416115, y: 0.0060650893, z: 0.06837844, w: -0.059611194} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9333334 + value: {x: 0.052699536, y: 0.042858288, z: 0.64947635, w: 0.7573417} + inSlope: {x: 0.0030208947, y: 0.0033072208, z: 0.037288975, w: -0.032407355} + outSlope: {x: 0.0030208947, y: 0.0033072208, z: 0.037288975, w: -0.032407355} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6000001 + value: {x: 0.053256795, y: 0.043467574, z: 0.6563436, w: 0.75132376} + inSlope: {x: -0.0014856601, y: -0.0016365339, z: -0.018332845, w: 0.01624788} + outSlope: {x: -0.0014856601, y: -0.0016365339, z: -0.018332845, w: 0.01624788} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9666668 + value: {x: 0.05381007, y: 0.044073906, z: 0.6631646, w: 0.7452347} + inSlope: {x: 0.00060087605, y: 0.00065848813, z: 0.0073868698, w: -0.0066653485} + outSlope: {x: 0.00060087605, y: 0.00065848813, z: 0.0073868698, w: -0.0066653485} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.5000002 + value: {x: 0.054469492, y: 0.044798087, z: 0.67128944, w: 0.7378324} + inSlope: {x: -0.002063288, y: -0.0022723884, z: -0.025498852, w: 0.023458585} + outSlope: {x: -0.002063288, y: -0.0022723884, z: -0.025498852, w: 0.023458585} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.7333336 + value: {x: 0.05401935, y: 0.044302978, z: 0.6657383, w: 0.7429076} + inSlope: {x: 0.0010612562, y: 0.001157033, z: 0.013008658, w: -0.011797199} + outSlope: {x: 0.0010612562, y: 0.001157033, z: 0.013008658, w: -0.011797199} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.0666668 + value: {x: 0.054171126, y: 0.04446997, z: 0.66761214, w: 0.7412031} + inSlope: {x: 0.002912826, y: 0.0032039576, z: 0.035913024, w: -0.032710463} + outSlope: {x: 0.002912826, y: 0.0032039576, z: 0.035913024, w: -0.032710463} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.0542348, y: 0.04453962, z: 0.66839474, w: 0.7404885} + inSlope: {x: 0.0021634272, y: 0.0023590052, z: 0.026505616, w: -0.024197124} + outSlope: {x: 0.0021634272, y: 0.0023590052, z: 0.026505616, w: -0.024197124} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.3016164, y: -0.0061392244, z: 0.16541143, w: 0.938951} + inSlope: {x: 0.21373896, y: 0.07729731, z: 0.04561722, w: 0.0601083} + outSlope: {x: 0.21373896, y: 0.07729731, z: 0.04561722, w: 0.0601083} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.28136876, y: 0.00048145777, z: 0.19668056, w: 0.93922746} + inSlope: {x: -0.06565286, y: 0.05604802, z: 0.2997507, w: -0.082821235} + outSlope: {x: -0.06565286, y: 0.05604802, z: 0.2997507, w: -0.082821235} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: -0.28291535, y: 0.007269308, z: 0.21500908, w: 0.934707} + inSlope: {x: 0.121434346, y: -0.052599825, z: -0.09397947, w: 0.05846054} + outSlope: {x: 0.121434346, y: -0.052599825, z: -0.09397947, w: 0.05846054} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: -0.26636353, y: 0.007130834, z: 0.20455253, w: 0.9418906} + inSlope: {x: 0.031553064, y: 0.11538854, z: 0.058063798, w: -0.0045955186} + outSlope: {x: 0.031553064, y: 0.11538854, z: 0.058063798, w: -0.0045955186} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.70000005 + value: {x: -0.28141606, y: 0.015162744, z: 0.21569276, w: 0.9349074} + inSlope: {x: 0.08473373, y: 0.028844882, z: -0.098979756, w: 0.047690585} + outSlope: {x: 0.08473373, y: 0.028844882, z: -0.098979756, w: 0.047690585} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.86666673 + value: {x: -0.26437172, y: 0.023701444, z: 0.20896885, w: 0.94121087} + inSlope: {x: -0.06138999, y: -0.007546015, z: 0.02928374, w: -0.023726843} + outSlope: {x: -0.06138999, y: -0.007546015, z: 0.02928374, w: -0.023726843} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.27330965, y: 0.017992768, z: 0.20827882, w: 0.9389345} + inSlope: {x: 0.049506027, y: 0.0050700502, z: -0.08861469, w: 0.03398183} + outSlope: {x: 0.049506027, y: 0.0050700502, z: -0.08861469, w: 0.03398183} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4333334 + value: {x: -0.27068397, y: 0.02406532, z: 0.19592977, w: 0.9422115} + inSlope: {x: -0.04431058, y: 0.017587122, z: -0.006640038, w: -0.011787426} + outSlope: {x: -0.04431058, y: 0.017587122, z: -0.006640038, w: -0.011787426} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6333334 + value: {x: -0.2717646, y: 0.032862846, z: 0.19365755, w: 0.94210446} + inSlope: {x: -0.023313783, y: 0.09675352, z: -0.11345241, w: 0.013078463} + outSlope: {x: -0.023313783, y: 0.09675352, z: -0.11345241, w: 0.013078463} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.27043498, y: 0.040658098, z: 0.18389362, w: 0.94413716} + inSlope: {x: -0.08128333, y: -0.03200621, z: -0.038901802, w: -0.014430265} + outSlope: {x: -0.08128333, y: -0.03200621, z: -0.038901802, w: -0.014430265} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.0666668 + value: {x: -0.27835312, y: 0.031245328, z: 0.18286751, w: 0.94239205} + inSlope: {x: -0.046268597, y: -0.008637085, z: 0.0014307359, w: -0.013651563} + outSlope: {x: -0.046268597, y: -0.008637085, z: 0.0014307359, w: -0.013651563} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.4333334 + value: {x: -0.28790417, y: 0.026325759, z: 0.17648597, w: 0.94088835} + inSlope: {x: -0.032604516, y: -0.042057134, z: -0.0032711804, w: -0.008196838} + outSlope: {x: -0.032604516, y: -0.042057134, z: -0.0032711804, w: -0.008196838} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.7333336 + value: {x: -0.29570448, y: 0.007875237, z: 0.17876658, w: 0.9383706} + inSlope: {x: -0.056428127, y: -0.056786515, z: -0.07358314, w: -0.0032999804} + outSlope: {x: -0.056428127, y: -0.056786515, z: -0.07358314, w: -0.0032999804} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.0000002 + value: {x: -0.2957393, y: -0.0020189951, z: 0.16790609, w: 0.9403945} + inSlope: {x: -0.11017631, y: -0.050138652, z: 0.016299576, w: -0.037592985} + outSlope: {x: -0.11017631, y: -0.050138652, z: 0.016299576, w: -0.037592985} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.2000003 + value: {x: -0.29464588, y: -0.0038095086, z: 0.16161019, w: 0.9418341} + inSlope: {x: 0.054667186, y: 0.020251207, z: -0.023241892, w: 0.021252828} + outSlope: {x: 0.054667186, y: 0.020251207, z: -0.023241892, w: 0.021252828} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.30157822, y: -0.006139055, z: 0.16543391, w: 0.9389593} + inSlope: {x: -0.106668875, y: -0.0491446, z: 0.03463227, w: -0.04038874} + outSlope: {x: -0.106668875, y: -0.0491446, z: 0.03463227, w: -0.04038874} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.2762971, y: 0.057129208, z: 0.48035407, w: 0.83045536} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.2762971, y: 0.057129208, z: 0.48035407, w: 0.83045536} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.08440821, y: 0.10461572, z: -0.17648873, w: 0.9750808} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.08440821, y: 0.10461572, z: -0.17648873, w: 0.9750808} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.08263994, y: 0.04308903, z: -0.11631222, w: 0.9888304} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: -0.08263994, y: 0.04308903, z: -0.11631222, w: 0.9888304} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2/mixamorig:RightHandThumb3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.02006689, y: -0.040932328, z: -0.014504474, w: 0.9988551} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.02006689, y: -0.040932328, z: -0.014504474, w: 0.9988551} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2/mixamorig:RightHandThumb3/mixamorig:RightHandThumb4 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.18618636, y: -0.004129876, z: 0.09397099, w: 0.9780016} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.18618636, y: -0.004129876, z: 0.09397099, w: 0.9780016} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.19141167, y: 0.00513058, z: -0.022413133, w: 0.9812405} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.19141167, y: 0.00513058, z: -0.022413133, w: 0.9812405} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.06511582, y: -0.00000017729627, z: -0.0072796675, w: 0.9978512} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.06511582, y: -0.00000017729627, z: -0.0072796675, w: 0.9978512} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2/mixamorig:RightHandIndex3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.044488564, y: 0.000000059237355, z: -0.000000031107113, w: 0.9990099} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.044488564, y: 0.000000059237355, z: -0.000000031107113, w: 0.9990099} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2/mixamorig:RightHandIndex3/mixamorig:RightHandIndex4 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.089606196, y: -0.0295553, z: -0.0046560112, w: 0.99552774} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.089606196, y: -0.0295553, z: -0.0046560112, w: 0.99552774} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.23445734, y: 0.013229738, z: -0.0288101, w: 0.97160935} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.23445734, y: 0.013229738, z: -0.0288101, w: 0.97160935} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.17383212, y: -0.00295869, z: -0.02022409, w: 0.9845632} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.17383212, y: -0.00295869, z: -0.02022409, w: 0.9845632} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2/mixamorig:RightHandMiddle3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.010558639, y: 0.0028612923, z: 0.0028611002, w: 0.9999361} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.010558639, y: 0.0028612923, z: 0.0028611002, w: 0.9999361} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2/mixamorig:RightHandMiddle3/mixamorig:RightHandMiddle4 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.1753405, y: -0.12272274, z: -0.14616334, w: 0.9658318} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.1753405, y: -0.12272274, z: -0.14616334, w: 0.9658318} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.14328203, y: 0.00014158734, z: -0.016019056, w: 0.98955226} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.14328203, y: 0.00014158734, z: -0.016019056, w: 0.98955226} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.08244669, y: -0.00000009504941, z: -0.009205693, w: 0.996553} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.08244669, y: -0.00000009504941, z: -0.009205693, w: 0.996553} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2/mixamorig:RightHandPinky3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.04451916, y: 0.000000042701963, z: 0.000000023167066, w: 0.99900854} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.04451916, y: 0.000000042701963, z: 0.000000023167066, w: 0.99900854} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2/mixamorig:RightHandPinky3/mixamorig:RightHandPinky4 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.036043096, y: 0.35675427, z: 0.9146739, w: 0.18654461} + inSlope: {x: 0.054721978, y: 0.28270036, z: -0.10869741, w: -0.0055696066} + outSlope: {x: 0.054721978, y: 0.28270036, z: -0.10869741, w: -0.0055696066} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.033389788, y: 0.37354243, z: 0.9084679, w: 0.18449199} + inSlope: {x: -0.0031641698, y: 0.015390505, z: -0.00038087042, w: -0.029884277} + outSlope: {x: -0.0031641698, y: 0.015390505, z: -0.00038087042, w: -0.029884277} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: -0.027649114, y: 0.40083185, z: 0.89639163, w: 0.18722057} + inSlope: {x: -0.04294929, y: -0.1419484, z: 0.078256175, w: -0.07835989} + outSlope: {x: -0.04294929, y: -0.1419484, z: 0.078256175, w: -0.07835989} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6333334 + value: {x: -0.031679384, y: 0.38747773, z: 0.9033071, w: 0.1813664} + inSlope: {x: 0.03394907, y: 0.13549988, z: -0.06732973, w: 0.050312445} + outSlope: {x: 0.03394907, y: 0.13549988, z: -0.06732973, w: 0.050312445} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000001 + value: {x: -0.028695332, y: 0.39819682, z: 0.89759636, w: 0.18691352} + inSlope: {x: -0.038569562, y: -0.10036873, z: 0.047349945, w: -0.02002583} + outSlope: {x: -0.038569562, y: -0.10036873, z: 0.047349945, w: -0.02002583} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.031120762, y: 0.37730423, z: 0.90824264, w: 0.17823711} + inSlope: {x: 0.0017717686, y: 0.034343485, z: -0.015986875, w: 0.009090462} + outSlope: {x: 0.0017717686, y: 0.034343485, z: -0.015986875, w: 0.009090462} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.034200598, y: 0.3780774, z: 0.908264, w: 0.17591012} + inSlope: {x: 0.0010461607, y: -0.06042563, z: 0.026248962, w: -0.0056147478} + outSlope: {x: 0.0010461607, y: -0.06042563, z: 0.026248962, w: -0.0056147478} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9333334 + value: {x: -0.029972924, y: 0.35866588, z: 0.9149951, w: 0.18233055} + inSlope: {x: 0.009607384, y: -0.043718614, z: 0.015310923, w: 0.010656192} + outSlope: {x: 0.009607384, y: -0.043718614, z: 0.015310923, w: 0.010656192} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.3666668 + value: {x: -0.036514726, y: 0.3531239, z: 0.91759795, w: 0.17884153} + inSlope: {x: -0.004760702, y: -0.0072214073, z: 0.0021484513, w: 0.0022814441} + outSlope: {x: -0.004760702, y: -0.0072214073, z: 0.0021484513, w: 0.0022814441} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.037215162, y: 0.35346857, z: 0.91684186, w: 0.18186817} + inSlope: {x: 0.01872234, y: 0.023079982, z: -0.011941206, w: 0.019073207} + outSlope: {x: 0.01872234, y: 0.023079982, z: -0.011941206, w: 0.019073207} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.9333334 + value: {x: -0.035777345, y: 0.3599887, z: 0.9136481, w: 0.18540563} + inSlope: {x: -0.0037689987, y: -0.035430107, z: 0.012049351, w: 0.008699708} + outSlope: {x: -0.0037689987, y: -0.035430107, z: 0.012049351, w: 0.008699708} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.266667 + value: {x: -0.03549284, y: 0.3610397, z: 0.91282296, w: 0.18746947} + inSlope: {x: -0.0042875153, y: -0.08360095, z: 0.035945214, w: -0.01490505} + outSlope: {x: -0.0042875153, y: -0.08360095, z: 0.035945214, w: -0.01490505} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.0360362, y: 0.3567826, z: 0.91467047, w: 0.18650869} + inSlope: {x: -0.009903284, y: -0.040482618, z: 0.017800944, w: -0.011575531} + outSlope: {x: -0.009903284, y: -0.040482618, z: 0.017800944, w: -0.011575531} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:LeftUpLeg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.45152432, y: -0.088537514, z: -0.0071821776, w: 0.8878262} + inSlope: {x: -0.26474565, y: 0.017692298, z: 0.05030994, w: -0.1341784} + outSlope: {x: -0.26474565, y: 0.017692298, z: 0.05030994, w: -0.1341784} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.45849755, y: -0.08829001, z: -0.006187494, w: 0.88427746} + inSlope: {x: 0.09020224, y: -0.0056974576, z: -0.017970087, w: 0.046265423} + outSlope: {x: 0.09020224, y: -0.0056974576, z: -0.017970087, w: 0.046265423} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: -0.4902852, y: -0.08983473, z: 0.0021023033, w: 0.8669174} + inSlope: {x: -0.17119464, y: -0.0211453, z: 0.048331007, w: -0.098390564} + outSlope: {x: -0.17119464, y: -0.0211453, z: 0.048331007, w: -0.098390564} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5666667 + value: {x: -0.44357646, y: -0.08817753, z: -0.008809385, w: 0.89184475} + inSlope: {x: 0.21961875, y: 0.00013242615, z: -0.048787512, w: 0.109799765} + outSlope: {x: 0.21961875, y: 0.00013242615, z: -0.048787512, w: 0.109799765} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7666667 + value: {x: -0.47648165, y: -0.088967696, z: -0.0015595858, w: 0.87466997} + inSlope: {x: -0.010094486, y: 0.04787974, z: -0.03382869, w: -0.0006893277} + outSlope: {x: -0.010094486, y: 0.04787974, z: -0.03382869, w: -0.0006893277} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9666667 + value: {x: -0.44630346, y: -0.08339927, z: -0.008003339, w: 0.89095104} + inSlope: {x: 0.07115505, y: 0.04746732, z: -0.022851564, w: 0.03991667} + outSlope: {x: 0.07115505, y: 0.04746732, z: -0.022851564, w: 0.03991667} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3000001 + value: {x: -0.45154992, y: -0.084345736, z: -0.00878691, w: 0.8882068} + inSlope: {x: 0.042053945, y: 0.040498264, z: -0.021438302, w: 0.024993742} + outSlope: {x: 0.042053945, y: 0.040498264, z: -0.021438302, w: 0.024993742} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.45767796, y: -0.08032978, z: -0.01401431, w: 0.8853709} + inSlope: {x: -0.024551172, y: 0.016875312, z: -0.031866033, w: -0.011648846} + outSlope: {x: -0.024551172, y: 0.016875312, z: -0.031866033, w: -0.011648846} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.8666668 + value: {x: -0.44744983, y: -0.07248109, z: -0.022006053, w: 0.89109534} + inSlope: {x: 0.010462875, y: -0.016693383, z: -0.019826312, w: 0.0034001607} + outSlope: {x: 0.010462875, y: -0.016693383, z: -0.019826312, w: 0.0034001607} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.1333334 + value: {x: -0.43710098, y: -0.07106615, z: -0.02049173, w: 0.89636624} + inSlope: {x: -0.053658985, y: -0.014482489, z: -0.002584171, w: -0.027381804} + outSlope: {x: -0.053658985, y: -0.014482489, z: -0.002584171, w: -0.027381804} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.4666667 + value: {x: -0.44523558, y: -0.07117848, z: -0.019387374, w: 0.89236933} + inSlope: {x: -0.074892014, y: -0.048864216, z: 0.015773289, w: -0.040918782} + outSlope: {x: -0.074892014, y: -0.048864216, z: 0.015773289, w: -0.040918782} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.766667 + value: {x: -0.45262784, y: -0.080496, z: -0.013210842, w: 0.88796055} + inSlope: {x: -0.13319772, y: -0.028613051, z: 0.006901959, w: -0.07042236} + outSlope: {x: -0.13319772, y: -0.028613051, z: 0.006901959, w: -0.07042236} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.966667 + value: {x: -0.45477524, y: -0.08908248, z: -0.00820736, w: 0.88610184} + inSlope: {x: 0.07704709, y: -0.046639986, z: 0.062679835, w: 0.035513222} + outSlope: {x: 0.07704709, y: -0.046639986, z: 0.062679835, w: 0.035513222} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.1333334 + value: {x: -0.46557876, y: -0.09087929, z: -0.0048010605, w: 0.8803149} + inSlope: {x: -0.13834445, y: -0.0054395255, z: -0.012618409, w: -0.073633865} + outSlope: {x: -0.13834445, y: -0.0054395255, z: -0.012618409, w: -0.073633865} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.45158213, y: -0.088457495, z: -0.007255814, w: 0.88780415} + inSlope: {x: 0.10734211, y: 0.020322446, z: -0.025451744, w: 0.056712683} + outSlope: {x: 0.10734211, y: 0.020322446, z: -0.025451744, w: 0.056712683} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.7286333, y: 0.10709744, z: 0.11954751, w: 0.665832} + inSlope: {x: 0.025189517, y: -0.06259605, z: -0.109407075, w: 0.0017327069} + outSlope: {x: 0.025189517, y: -0.06259605, z: -0.109407075, w: 0.0017327069} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.72033435, y: 0.10327509, z: 0.11496303, w: 0.6761924} + inSlope: {x: 0.14321925, y: 0.007148088, z: -0.020989181, w: -0.1506293} + outSlope: {x: 0.14321925, y: 0.007148088, z: -0.020989181, w: -0.1506293} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: 0.73624027, y: 0.10675251, z: 0.117887124, w: 0.6577665} + inSlope: {x: -0.09812594, y: -0.018898176, z: -0.01969658, w: 0.115972474} + outSlope: {x: -0.09812594, y: -0.018898176, z: -0.01969658, w: 0.115972474} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6333334 + value: {x: 0.7157229, y: 0.10595233, z: 0.119134106, w: 0.67994267} + inSlope: {x: 0.07971975, y: 0.0070135244, z: 0.0031769518, w: -0.08582088} + outSlope: {x: 0.07971975, y: 0.0070135244, z: 0.0031769518, w: -0.08582088} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.72705716, y: 0.10715494, z: 0.120114416, w: 0.6674416} + inSlope: {x: -0.06832569, y: -0.002758535, z: 0.014248347, w: 0.072213106} + outSlope: {x: -0.06832569, y: -0.002758535, z: 0.014248347, w: 0.072213106} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3666668 + value: {x: 0.72226334, y: 0.098987475, z: 0.11306108, w: 0.6750958} + inSlope: {x: 0.0068610846, y: -0.028418524, z: -0.028527591, w: 0.0016352461} + outSlope: {x: 0.0068610846, y: -0.028418524, z: -0.028527591, w: 0.0016352461} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7666668 + value: {x: 0.72602504, y: 0.10450136, z: 0.12051216, w: 0.6689125} + inSlope: {x: -0.01254381, y: 0.02723663, z: 0.042609166, w: 0.0016897933} + outSlope: {x: -0.01254381, y: 0.02723663, z: 0.042609166, w: 0.0016897933} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.2333333 + value: {x: 0.7242041, y: 0.10771119, z: 0.12483186, w: 0.6695847} + inSlope: {x: 0.0096058715, y: -0.0019253711, z: -0.001785787, w: -0.009742666} + outSlope: {x: 0.0096058715, y: -0.0019253711, z: -0.001785787, w: -0.009742666} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.725258, y: 0.10755909, z: 0.12275231, w: 0.66885257} + inSlope: {x: -0.005629068, y: -0.003811199, z: 0.00024955743, w: 0.006678707} + outSlope: {x: -0.005629068, y: -0.003811199, z: 0.00024955743, w: 0.006678707} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.966667 + value: {x: 0.7296538, y: 0.10837839, z: 0.12135743, w: 0.6641776} + inSlope: {x: -0.030487683, y: -0.0041131983, z: -0.0058045136, w: 0.035233397} + outSlope: {x: -0.030487683, y: -0.0041131983, z: -0.0058045136, w: 0.035233397} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.266667 + value: {x: 0.73123264, y: 0.10495705, z: 0.1198552, w: 0.66326284} + inSlope: {x: -0.051398326, y: 0.025944585, z: -0.014538146, w: 0.05518829} + outSlope: {x: -0.051398326, y: 0.025944585, z: -0.014538146, w: 0.05518829} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.72864634, y: 0.10703917, z: 0.119588286, w: 0.6658196} + inSlope: {x: -0.027467635, y: 0.03261055, z: 0.009474019, w: 0.023174308} + outSlope: {x: -0.027467635, y: 0.03261055, z: 0.009474019, w: 0.023174308} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.19485329, y: 0.032776453, z: -0.12253513, w: 0.97259605} + inSlope: {x: 0.1554559, y: 0.023591256, z: -0.0026985256, w: -0.03272116} + outSlope: {x: 0.1554559, y: 0.023591256, z: -0.0026985256, w: -0.03272116} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: 0.20827435, y: 0.034812834, z: -0.12276112, w: 0.96971107} + inSlope: {x: -0.2282455, y: -0.03462654, z: 0.0036454576, w: 0.05074561} + outSlope: {x: -0.2282455, y: -0.03462654, z: 0.0036454576, w: 0.05074561} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.19693986, y: 0.033093125, z: -0.12257175, w: 0.97216034} + inSlope: {x: -0.051190414, y: -0.0077667283, z: 0.00089060527, w: 0.010756554} + outSlope: {x: -0.051190414, y: -0.0077667283, z: 0.00089060527, w: 0.010756554} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.18758553, y: 0.031673547, z: -0.12240321, w: 0.974077} + inSlope: {x: -0.026381105, y: -0.004004652, z: 0.00048782703, w: 0.0052920016} + outSlope: {x: -0.026381105, y: -0.004004652, z: 0.00048782703, w: 0.0052920016} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4000001 + value: {x: 0.18489563, y: 0.031265296, z: -0.12235267, w: 0.9746107} + inSlope: {x: -0.028441947, y: -0.0043170475, z: 0.000538454, w: 0.0056067165} + outSlope: {x: -0.028441947, y: -0.0043170475, z: 0.000538454, w: 0.0056067165} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.8666668 + value: {x: 0.18312256, y: 0.030996231, z: -0.12231885, w: 0.9749582} + inSlope: {x: -0.0007443134, y: -0.00011117204, z: 0.000014752159, w: 0.00014483936} + outSlope: {x: -0.0007443134, y: -0.00011117204, z: 0.000014752159, w: 0.00014483936} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.5666668 + value: {x: 0.19212301, y: 0.03236221, z: -0.12248634, w: 0.9731591} + inSlope: {x: 0.0078479275, y: 0.001191349, z: -0.00014260424, w: -0.0016039625} + outSlope: {x: 0.0078479275, y: 0.001191349, z: -0.00014260424, w: -0.0016039625} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.2000003 + value: {x: 0.19665337, y: 0.033049617, z: -0.12256681, w: 0.9722204} + inSlope: {x: 0.015426015, y: 0.0023410595, z: -0.00027045538, w: -0.0032338416} + outSlope: {x: 0.015426015, y: 0.0023410595, z: -0.00027045538, w: -0.0032338416} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.19485319, y: 0.032776456, z: -0.12253512, w: 0.97259605} + inSlope: {x: -0.055644713, y: -0.00844282, z: 0.0009778896, w: 0.011612188} + outSlope: {x: -0.055644713, y: -0.00844282, z: 0.0009778896, w: 0.011612188} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot/mixamorig:LeftToeBase + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.04573715, y: 0.039433047, z: 0.0727525, w: 0.99552006} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.04573715, y: 0.039433047, z: 0.0727525, w: 0.99552006} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot/mixamorig:LeftToeBase/mixamorig:LeftToe_End + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.03647227, y: 0.35230663, z: 0.92856216, w: -0.111005425} + inSlope: {x: -0.04600994, y: 0.26373267, z: -0.10563075, w: -0.048881914} + outSlope: {x: -0.04600994, y: 0.26373267, z: -0.10563075, w: -0.048881914} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: 0.031942118, y: 0.38051876, z: 0.9170323, w: -0.11505189} + inSlope: {x: -0.03758566, y: 0.1747142, z: -0.075375445, w: -0.033249337} + outSlope: {x: -0.03758566, y: 0.1747142, z: -0.075375445, w: -0.033249337} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.03167858, y: 0.38285094, z: 0.9161162, w: -0.11468545} + inSlope: {x: 0.028266795, y: -0.12712151, z: 0.056141317, w: 0.03190644} + outSlope: {x: 0.028266795, y: -0.12712151, z: 0.056141317, w: 0.03190644} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.70000005 + value: {x: 0.032579664, y: 0.3789062, z: 0.9180582, w: -0.11197242} + inSlope: {x: -0.029625056, y: 0.14407487, z: -0.06311507, w: -0.03823433} + outSlope: {x: -0.029625056, y: 0.14407487, z: -0.06311507, w: -0.03823433} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.03995525, y: 0.36580384, z: 0.9227461, w: -0.11458926} + inSlope: {x: 0.05824843, y: -0.013646174, z: 0.0027939659, w: -0.0007951578} + outSlope: {x: 0.05824843, y: -0.013646174, z: 0.0027939659, w: -0.0007951578} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.040766515, y: 0.35852152, z: 0.9253891, w: -0.115998} + inSlope: {x: -0.0053183176, y: 0.007558927, z: -0.002654499, w: 0.00028196478} + outSlope: {x: -0.0053183176, y: 0.007558927, z: -0.002654499, w: 0.00028196478} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.8666668 + value: {x: 0.036447417, y: 0.35930803, z: 0.92608047, w: -0.10929037} + inSlope: {x: -0.0133978035, y: 0.016572, z: -0.0011327801, w: 0.04037425} + outSlope: {x: -0.0133978035, y: 0.016572, z: -0.0011327801, w: 0.04037425} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.1333334 + value: {x: 0.03418665, y: 0.36523685, z: 0.92388994, w: -0.10890689} + inSlope: {x: -0.01424584, y: 0.039111115, z: -0.015932336, w: -0.008563296} + outSlope: {x: -0.01424584, y: 0.039111115, z: -0.015932336, w: -0.008563296} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.4666667 + value: {x: 0.03252385, y: 0.36109242, z: 0.92522323, w: -0.11187704} + inSlope: {x: 0.0067312084, y: 0.004322396, z: -0.002098388, w: -0.0014631522} + outSlope: {x: 0.0067312084, y: 0.004322396, z: -0.002098388, w: -0.0014631522} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.766667 + value: {x: 0.033583608, y: 0.355634, z: 0.9273233, w: -0.11166079} + inSlope: {x: 0.004992713, y: 0.06749159, z: -0.026755955, w: -0.0058858898} + outSlope: {x: 0.004992713, y: 0.06749159, z: -0.026755955, w: -0.0058858898} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.1000001 + value: {x: 0.03358303, y: 0.35605118, z: 0.9269672, w: -0.113276385} + inSlope: {x: 0.012487595, y: 0.10831486, z: -0.04312549, w: -0.008744457} + outSlope: {x: 0.012487595, y: 0.10831486, z: -0.04312549, w: -0.008744457} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.03647909, y: 0.35229376, z: 0.9285775, w: -0.11091562} + inSlope: {x: 0.02931266, y: -0.018760283, z: 0.007211573, w: 0.010226378} + outSlope: {x: 0.02931266, y: -0.018760283, z: 0.007211573, w: 0.010226378} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:RightUpLeg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.41153523, y: 0.046418622, z: 0.083440416, w: 0.9063784} + inSlope: {x: -0.296604, y: -0.012665949, z: -0.021693705, w: -0.1339835} + outSlope: {x: -0.296604, y: -0.012665949, z: -0.021693705, w: -0.1339835} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: -0.43640625, y: 0.04153947, z: 0.08471888, w: 0.8947887} + inSlope: {x: -0.27556393, y: 0.013918711, z: -0.055461492, w: -0.12999864} + outSlope: {x: -0.27556393, y: 0.013918711, z: -0.055461492, w: -0.12999864} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: -0.45095265, y: 0.039569624, z: 0.08375298, w: 0.8877283} + inSlope: {x: 0.19526036, y: -0.045368005, z: 0.052026477, w: 0.09545983} + outSlope: {x: 0.19526036, y: -0.045368005, z: 0.052026477, w: 0.09545983} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.4129857, y: 0.031428825, z: 0.09323769, w: 0.90540695} + inSlope: {x: -0.23813632, y: 0.0142929675, z: -0.04620998, w: -0.104987904} + outSlope: {x: -0.23813632, y: 0.0142929675, z: -0.04620998, w: -0.104987904} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000001 + value: {x: -0.4344581, y: 0.039562766, z: 0.085471064, w: 0.8957543} + inSlope: {x: 0.10071163, y: 0.0335176, z: -0.011347854, w: 0.04826101} + outSlope: {x: 0.10071163, y: 0.0335176, z: -0.011347854, w: 0.04826101} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.40534717, y: 0.04112233, z: 0.08935614, w: 0.90885544} + inSlope: {x: -0.035495047, y: 0.046267983, z: -0.009840028, w: -0.016969457} + outSlope: {x: -0.035495047, y: 0.046267983, z: -0.009840028, w: -0.016969457} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.39045525, y: 0.04315991, z: 0.09045789, w: 0.9151499} + inSlope: {x: 0.13214742, y: -0.013712503, z: -0.009249455, w: 0.057956234} + outSlope: {x: 0.13214742, y: -0.013712503, z: -0.009249455, w: 0.057956234} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6000001 + value: {x: -0.3898527, y: 0.047483206, z: 0.08315012, w: 0.9158855} + inSlope: {x: -0.004168546, y: 0.03467013, z: -0.006138786, w: -0.0029933206} + outSlope: {x: -0.004168546, y: 0.03467013, z: -0.006138786, w: -0.0029933206} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.3903791, y: 0.049408775, z: 0.08095674, w: 0.9157559} + inSlope: {x: -0.08150557, y: 0.015402924, z: 0.0063157966, w: -0.036106978} + outSlope: {x: -0.08150557, y: 0.015402924, z: 0.0063157966, w: -0.036106978} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.1333334 + value: {x: -0.39492515, y: 0.05032882, z: 0.082403205, w: 0.9136252} + inSlope: {x: -0.04171286, y: 0.009607682, z: -0.0049994187, w: -0.018106716} + outSlope: {x: -0.04171286, y: 0.009607682, z: -0.0049994187, w: -0.018106716} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.4666667 + value: {x: -0.39140743, y: 0.050868165, z: 0.08058055, w: 0.91527015} + inSlope: {x: -0.048723113, y: 0.018332187, z: 0.0014708163, w: -0.021973498} + outSlope: {x: -0.048723113, y: 0.018332187, z: 0.0014708163, w: -0.021973498} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.766667 + value: {x: -0.3993263, y: 0.046306204, z: 0.0821137, w: 0.9119494} + inSlope: {x: -0.17563346, y: 0.03312369, z: -0.026180731, w: -0.07627942} + outSlope: {x: -0.17563346, y: 0.03312369, z: -0.026180731, w: -0.07627942} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.966667 + value: {x: -0.40709266, y: 0.045382194, z: 0.08250648, w: 0.90852004} + inSlope: {x: 0.050989017, y: -0.04653535, z: 0.018605184, w: 0.023547906} + outSlope: {x: 0.050989017, y: -0.04653535, z: 0.018605184, w: 0.023547906} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.1333334 + value: {x: -0.429927, y: 0.046215277, z: 0.08302358, w: 0.8978497} + inSlope: {x: -0.21239004, y: 0.039802957, z: -0.0075680837, w: -0.102641985} + outSlope: {x: -0.21239004, y: 0.039802957, z: -0.0075680837, w: -0.102641985} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.411496, y: 0.04640771, z: 0.08354733, w: 0.9063869} + inSlope: {x: 0.14440759, y: 0.014627106, z: -0.016495377, w: 0.06680674} + outSlope: {x: 0.14440759, y: 0.014627106, z: -0.016495377, w: 0.06680674} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.6861322, y: -0.124453366, z: -0.15007466, w: 0.70086485} + inSlope: {x: 0.078168504, y: -0.018004773, z: -0.020526944, w: -0.08445024} + outSlope: {x: 0.078168504, y: -0.018004773, z: -0.020526944, w: -0.08445024} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: 0.6756645, y: -0.1253608, z: -0.15478571, w: 0.70979124} + inSlope: {x: -0.003978599, y: -0.012908801, z: -0.01653738, w: -0.0020983927} + outSlope: {x: -0.003978599, y: -0.012908801, z: -0.01653738, w: -0.0020983927} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: 0.6998209, y: -0.12909397, z: -0.15468074, w: 0.685317} + inSlope: {x: -0.08532376, y: -0.0034477564, z: -0.01942836, w: 0.08172066} + outSlope: {x: -0.08532376, y: -0.0034477564, z: -0.01942836, w: 0.08172066} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6333334 + value: {x: 0.6769404, y: -0.12864327, z: -0.1578581, w: 0.70730716} + inSlope: {x: 0.102819845, y: -0.014025273, z: 0.005254674, w: -0.100187704} + outSlope: {x: 0.102819845, y: -0.014025273, z: 0.005254674, w: -0.100187704} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000001 + value: {x: 0.6889758, y: -0.12782511, z: -0.15441592, w: 0.69651186} + inSlope: {x: -0.07093461, y: 0.018993167, z: 0.016910652, w: 0.07729502} + outSlope: {x: -0.07093461, y: 0.018993167, z: 0.016910652, w: 0.07729502} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.6810974, y: -0.12706073, z: -0.15427937, w: 0.7043861} + inSlope: {x: 0.026367035, y: 0.0008238859, z: 0.0043000323, w: -0.024409913} + outSlope: {x: 0.026367035, y: 0.0008238859, z: 0.0043000323, w: -0.024409913} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4000001 + value: {x: 0.67089295, y: -0.12831193, z: -0.15578079, w: 0.71356225} + inSlope: {x: -0.040622987, y: 0.012730223, z: 0.015276983, w: 0.04386936} + outSlope: {x: -0.040622987, y: 0.012730223, z: 0.015276983, w: 0.04386936} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7 + value: {x: 0.67136985, y: -0.1256914, z: -0.15225714, w: 0.7143402} + inSlope: {x: -0.016418688, y: 0.01827722, z: 0.020452043, w: 0.023003504} + outSlope: {x: -0.016418688, y: 0.01827722, z: 0.020452043, w: 0.023003504} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.0333335 + value: {x: 0.674597, y: -0.12157583, z: -0.14776468, w: 0.7129543} + inSlope: {x: -0.0073465263, y: 0.012668491, z: 0.014099896, w: 0.012037701} + outSlope: {x: -0.0073465263, y: 0.012668491, z: 0.014099896, w: 0.012037701} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.4 + value: {x: 0.6728126, y: -0.121772766, z: -0.14871252, w: 0.7144083} + inSlope: {x: 0.011883092, y: 0.0011731323, z: 0.004670848, w: -0.010027895} + outSlope: {x: 0.011883092, y: 0.0011731323, z: 0.004670848, w: -0.010027895} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.8000002 + value: {x: 0.6831474, y: -0.12308879, z: -0.14889807, w: 0.7042643} + inSlope: {x: 0.0690741, y: -0.010076845, z: 0.0023894035, w: -0.068187185} + outSlope: {x: 0.0690741, y: -0.010076845, z: 0.0023894035, w: -0.068187185} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.1000001 + value: {x: 0.69074297, y: -0.12573856, z: -0.15094006, w: 0.69590306} + inSlope: {x: 0.07946141, y: -0.0046321796, z: -0.008009084, w: -0.08142121} + outSlope: {x: 0.07946141, y: -0.0046321796, z: -0.008009084, w: -0.08142121} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.6861085, y: -0.12447384, z: -0.1501039, w: 0.70087826} + inSlope: {x: -0.06561762, y: 0.016988235, z: 0.0151629895, w: 0.07073707} + outSlope: {x: -0.06561762, y: 0.016988235, z: 0.0151629895, w: 0.07073707} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.20182326, y: -0.03383408, z: 0.12265538, w: 0.9711222} + inSlope: {x: 0.062263455, y: -0.009446739, z: 0.0010382384, w: -0.013471841} + outSlope: {x: 0.062263455, y: -0.009446739, z: 0.0010382384, w: -0.013471841} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.22883043, y: -0.03793044, z: 0.12306241, w: 0.96491116} + inSlope: {x: 0.13861142, y: -0.021019913, z: 0.0018938631, w: -0.03355086} + outSlope: {x: 0.13861142, y: -0.021019913, z: 0.0018938631, w: -0.03355086} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: 0.19243409, y: -0.03240944, z: 0.122492, w: 0.9730953} + inSlope: {x: 0.039845333, y: -0.006045365, z: 0.00070385647, w: -0.008285344} + outSlope: {x: 0.039845333, y: -0.006045365, z: 0.00070385647, w: -0.008285344} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.21065888, y: -0.03517439, z: 0.1227988, w: 0.9691781} + inSlope: {x: -0.11329893, y: 0.017187255, z: -0.0017995381, w: 0.025267296} + outSlope: {x: -0.11329893, y: 0.017187255, z: -0.0017995381, w: 0.025267296} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7666667 + value: {x: 0.19760588, y: -0.033194236, z: 0.1225833, w: 0.97202027} + inSlope: {x: 0.04784565, y: -0.007260063, z: 0.00083025475, w: -0.01008778} + outSlope: {x: 0.04784565, y: -0.007260063, z: 0.00083025475, w: -0.01008778} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.19727483, y: -0.033143982, z: 0.12257766, w: 0.97208995} + inSlope: {x: -0.08867712, y: 0.01345518, z: -0.0015382459, w: 0.018679786} + outSlope: {x: -0.08867712, y: 0.01345518, z: -0.0015382459, w: 0.018679786} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4333334 + value: {x: 0.19392368, y: -0.032635435, z: 0.12251859, w: 0.97278863} + inSlope: {x: 0.02883668, y: -0.0043764752, z: 0.00051263766, w: -0.005945569} + outSlope: {x: 0.02883668, y: -0.0043764752, z: 0.00051263766, w: -0.005945569} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.2 + value: {x: 0.18388923, y: -0.031112602, z: 0.12233359, w: 0.97480834} + inSlope: {x: 0.019700397, y: -0.0029906658, z: 0.00037729775, w: -0.0038588084} + outSlope: {x: 0.019700397, y: -0.0029906658, z: 0.00037729775, w: -0.0038588084} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.9 + value: {x: 0.19409028, y: -0.0326607, z: 0.12252162, w: 0.9727542} + inSlope: {x: 0.018283295, y: -0.002774133, z: 0.00032253595, w: -0.0037872829} + outSlope: {x: 0.018283295, y: -0.002774133, z: 0.00032253595, w: -0.0037872829} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.20182325, y: -0.033834156, z: 0.12265527, w: 0.9711222} + inSlope: {x: 0.004513715, y: -0.00068474625, z: 0.00006996102, w: -0.0009709606} + outSlope: {x: 0.004513715, y: -0.00068474625, z: 0.00006996102, w: -0.0009709606} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot/mixamorig:RightToeBase + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.04573715, y: -0.039433047, z: -0.0727525, w: 0.99552006} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.04573715, y: -0.039433047, z: -0.0727525, w: 0.99552006} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot/mixamorig:RightToeBase/mixamorig:RightToe_End + m_CompressedRotationCurves: [] + m_EulerCurves: [] + m_PositionCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.0000028189659, y: 0.01559111, z: -0.00029432977} + inSlope: {x: -0.000092038696, y: -0.001597336, z: -0.00061936607} + outSlope: {x: -0.000092038696, y: -0.001597336, z: -0.00061936607} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: -0.0000002489901, y: 0.015537871, z: -0.00031497542} + inSlope: {x: -0.0000754693, y: -0.0009277204, z: -0.00044228177} + outSlope: {x: -0.00007546937, y: -0.00092771894, z: -0.00044228657} + tangentMode: 0 + weightedMode: 0 + 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.000002212322, y: 0.0155292535, z: -0.00032381547} + inSlope: {x: 0.000000014655278, y: 0.00037932568, z: -0.000040748197} + outSlope: {x: 0.000000014621084, y: 0.0003795316, z: -0.000040751882} + tangentMode: 0 + weightedMode: 0 + 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.0000002480142, y: 0.015563165, z: -0.0003176923} + inSlope: {x: 0.00006653917, y: 0.0013604538, z: 0.0002848651} + outSlope: {x: 0.000066539185, y: 0.0013604756, z: 0.00028486314} + tangentMode: 0 + weightedMode: 0 + 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.000002223627, y: 0.015619938, z: -0.0003048245} + inSlope: {x: 0.00003953978, y: 0.0017223608, z: 0.00026428624} + outSlope: {x: 0.000039539904, y: 0.001722574, z: 0.00026428708} + tangentMode: 0 + weightedMode: 0 + 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.0000023879775, y: 0.015677992, z: -0.00030007318} + inSlope: {x: 0.0000073955734, y: 0.0012396061, z: -0.00010716161} + outSlope: {x: 0.000007395621, y: 0.0012393882, z: -0.00010716709} + tangentMode: 0 + weightedMode: 0 + 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.000002716665, y: 0.015702559, z: -0.00031196876} + inSlope: {x: -0.000010220949, y: -0.0000644208, z: -0.00064844114} + outSlope: {x: -0.000010220949, y: -0.00006444103, z: -0.00064844463} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.23333333 + value: {x: 0.0000017065797, y: 0.015673691, z: -0.00034330253} + inSlope: {x: -0.00009081823, y: -0.0016356196, z: -0.0011353028} + outSlope: {x: -0.00009081799, y: -0.0016355368, z: -0.0011352876} + tangentMode: 0 + weightedMode: 0 + 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.000003337883, y: 0.015593521, z: -0.00038765502} + inSlope: {x: -0.00014023212, y: -0.0029400263, z: -0.0013926572} + outSlope: {x: -0.00014023282, y: -0.0029402336, z: -0.0013926681} + tangentMode: 0 + weightedMode: 0 + 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.00000764229, y: 0.015477676, z: -0.00043614727} + inSlope: {x: -0.00014833882, y: -0.0035252108, z: -0.0014314592} + outSlope: {x: -0.00014833936, y: -0.0035253214, z: -0.0014314532} + tangentMode: 0 + weightedMode: 0 + 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.000013227182, y: 0.015358505, z: -0.00048308546} + inSlope: {x: -0.0001345621, y: -0.0031860857, z: -0.0013413224} + outSlope: {x: -0.0001345628, y: -0.0031862035, z: -0.0013413223} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: -0.000016613136, y: 0.015265275, z: -0.0005255694} + inSlope: {x: -0.000066888235, y: -0.0018995947, z: -0.0010309897} + outSlope: {x: -0.000066888264, y: -0.0018995932, z: -0.0010309886} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.4 + value: {x: -0.00001768641, y: 0.015231865, z: -0.0005518185} + inSlope: {x: -0.000039123537, y: -0.00004299356, z: -0.00043146167} + outSlope: {x: -0.000039123395, y: -0.000043152173, z: -0.0004314671} + tangentMode: 0 + weightedMode: 0 + 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.000019221377, y: 0.015262402, z: -0.000554334} + inSlope: {x: -0.000009255379, y: 0.0017448169, z: 0.0001527063} + outSlope: {x: -0.000009255835, y: 0.0017447349, z: 0.0001527062} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.46666667 + value: {x: -0.000018303446, y: 0.0153481765, z: -0.00054163847} + inSlope: {x: 0.000011750146, y: 0.003031003, z: 0.00048608775} + outSlope: {x: 0.000011750355, y: 0.0030309623, z: 0.0004860868} + tangentMode: 0 + weightedMode: 0 + 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.000018438017, y: 0.015464476, z: -0.0005219285} + inSlope: {x: -0.00000513153, y: 0.003406131, z: 0.00050022156} + outSlope: {x: -0.0000051315023, y: 0.0034059917, z: 0.00050021237} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: -0.000018645549, y: 0.015575256, z: -0.0005082903} + inSlope: {x: 0.000046845067, y: 0.0028506473, z: 0.0002264517} + outSlope: {x: 0.000046845456, y: 0.0028505996, z: 0.00022645277} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.56666666 + value: {x: -0.000015315012, y: 0.015654521, z: -0.0005068312} + inSlope: {x: 0.00009114934, y: 0.001585277, z: -0.0001701686} + outSlope: {x: 0.00009114849, y: 0.001584944, z: -0.00017016655} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.6 + value: {x: -0.000012568935, y: 0.015680932, z: -0.00051963463} + inSlope: {x: 0.000050217062, y: -0.000107826505, z: -0.00054347754} + outSlope: {x: 0.00005021797, y: -0.00010741436, z: -0.00054348377} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.6333333 + value: {x: -0.00001196715, y: 0.015647352, z: -0.00054306333} + inSlope: {x: -0.000022343269, y: -0.0017024361, z: -0.00071799784} + outSlope: {x: -0.000022342821, y: -0.0017025691, z: -0.0007179952} + tangentMode: 0 + weightedMode: 0 + 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.000014058485, y: 0.015567423, z: -0.0005675009} + inSlope: {x: -0.00009283074, y: -0.0025765428, z: -0.00069046003} + outSlope: {x: -0.00009283167, y: -0.0025766545, z: -0.0006904597} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.7 + value: {x: -0.000018155908, y: 0.015475569, z: -0.00058909395} + inSlope: {x: -0.00015577317, y: -0.0023860899, z: -0.00052430097} + outSlope: {x: -0.00015577154, y: -0.0023859697, z: -0.00052430434} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.73333335 + value: {x: -0.00002444335, y: 0.015408343, z: -0.0006024546} + inSlope: {x: -0.00016742837, y: -0.0013745651, z: -0.000267052} + outSlope: {x: -0.0001674306, y: -0.0013748419, z: -0.00026705686} + tangentMode: 0 + weightedMode: 0 + 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.000029317898, y: 0.0153839225, z: -0.00060689746} + inSlope: {x: -0.00009307839, y: -0.000036290658, z: 0.000003181257} + outSlope: {x: -0.00009307738, y: -0.000036249898, z: 0.0000031767474} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.8 + value: {x: -0.00003064854, y: 0.015405928, z: -0.0006022424} + inSlope: {x: -0.000040526884, y: 0.0010587716, z: 0.00024068508} + outSlope: {x: -0.00004052742, y: 0.0010589488, z: 0.00024069916} + tangentMode: 0 + weightedMode: 0 + 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.00003201973, y: 0.015454507, z: -0.0005908514} + inSlope: {x: -0.000050604336, y: 0.0015986268, z: 0.0003970338} + outSlope: {x: -0.000050604016, y: 0.0015986632, z: 0.0003970209} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.8666667 + value: {x: -0.00003402216, y: 0.015512492, z: -0.00057577394} + inSlope: {x: -0.000034257326, y: 0.0016623549, z: 0.00044922816} + outSlope: {x: -0.00003425778, y: 0.0016622948, z: 0.0004492269} + tangentMode: 0 + weightedMode: 0 + 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.00003582884, y: 0.015602825, z: -0.00054648} + inSlope: {x: -0.00010463369, y: 0.00088480447, z: 0.00037873263} + outSlope: {x: -0.00010463397, y: 0.00088448595, z: 0.000378733} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.96666664 + value: {x: -0.00004127915, y: 0.015624291, z: -0.00053565355} + inSlope: {x: -0.00011754609, y: 0.0004025394, z: 0.0002509767} + outSlope: {x: -0.00011754438, y: 0.00040231567, z: 0.00025097546} + tangentMode: 0 + weightedMode: 0 + 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.00004366518, y: 0.015629651, z: -0.0005297481} + inSlope: {x: -0.000095615076, y: 0.000025444333, z: 0.00012585902} + outSlope: {x: -0.00009561543, y: 0.000025461439, z: 0.00012586474} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.0666667 + value: {x: -0.000052802414, y: 0.015614129, z: -0.00052721973} + inSlope: {x: -0.00014481996, y: -0.00038618082, z: 0.000044065437} + outSlope: {x: -0.00014482465, y: -0.00038630652, z: 0.00004405776} + tangentMode: 0 + weightedMode: 0 + 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.00007086951, y: 0.015582732, z: -0.00051893975} + inSlope: {x: -0.00028298344, y: -0.00009973567, z: 0.000060966497} + outSlope: {x: -0.0002829751, y: -0.00009962634, z: 0.000060964365} + tangentMode: 0 + weightedMode: 0 + 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.000109437686, y: 0.015608482, z: -0.0005219457} + inSlope: {x: -0.00047634664, y: 0.00057475106, z: -0.00012435412} + outSlope: {x: -0.00047634213, y: 0.000575095, z: -0.00012435726} + tangentMode: 0 + weightedMode: 0 + 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.00014591383, y: 0.015652945, z: -0.00053338846} + inSlope: {x: -0.00058211386, y: 0.0006494879, z: -0.00020136006} + outSlope: {x: -0.0005821296, y: 0.00064956, z: -0.00020136604} + tangentMode: 0 + weightedMode: 0 + 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.00021152415, y: 0.015666224, z: -0.0005512146} + inSlope: {x: -0.00008729604, y: -0.0005013572, z: 0.000074699914} + outSlope: {x: -0.00008729424, y: -0.0005012414, z: 0.00007469941} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.7 + value: {x: -0.00017387833, y: 0.015665326, z: -0.00049985887} + inSlope: {x: 0.000546318, y: 0.0004160716, z: 0.00017270168} + outSlope: {x: 0.0005463362, y: 0.00041616167, z: 0.00017270578} + tangentMode: 0 + weightedMode: 0 + 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.00007673484, y: 0.015663803, z: -0.0004904825} + inSlope: {x: 0.0007926746, y: -0.0003574736, z: 0.000056795197} + outSlope: {x: 0.0007926974, y: -0.00035757365, z: 0.000056803852} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.9 + value: {x: -0.000026080861, y: 0.01564909, z: -0.00048606406} + inSlope: {x: 0.00066785153, y: 0.000037654852, z: 0.00007262619} + outSlope: {x: 0.0006678471, y: 0.000037268244, z: 0.00007263188} + tangentMode: 0 + weightedMode: 0 + 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.0000057162283, y: 0.015654875, z: -0.00048318267} + inSlope: {x: 0.00051353296, y: 0.00030463788, z: 0.000104653445} + outSlope: {x: 0.00051351753, y: 0.00030491606, z: 0.00010465077} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.9666667 + value: {x: 0.000008154345, y: 0.015669405, z: -0.00047908712} + inSlope: {x: 0.0002963044, y: 0.00044728562, z: 0.00010466141} + outSlope: {x: 0.0002963137, y: 0.00044711694, z: 0.00010466419} + tangentMode: 0 + weightedMode: 0 + 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.000014037923, y: 0.01568468, z: -0.00047620526} + inSlope: {x: 0.00010705448, y: 0.000397049, z: 0.000048151487} + outSlope: {x: 0.00010705433, y: 0.00039703536, z: 0.000048143513} + tangentMode: 0 + weightedMode: 0 + 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.000013145569, y: 0.015697477, z: -0.0004781258} + inSlope: {x: -0.00009827758, y: -0.000074216376, z: -0.00008687373} + outSlope: {x: -0.00009827587, y: -0.000074201016, z: -0.000086880435} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.1 + value: {x: 0.000008739502, y: 0.015690919, z: -0.00048166834} + inSlope: {x: -0.0001352579, y: -0.0002572726, z: -0.00008942428} + outSlope: {x: -0.00013524975, y: -0.00025715324, z: -0.00008940614} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.1333334 + value: {x: 0.000004128519, y: 0.015680324, z: -0.00048408678} + inSlope: {x: -0.00016821283, y: -0.00032731597, z: -0.000010212278} + outSlope: {x: -0.00016822267, y: -0.0003274375, z: -0.00001021508} + tangentMode: 0 + weightedMode: 0 + 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.0000024751323, y: 0.015669081, z: -0.00048234992} + inSlope: {x: -0.00019777115, y: -0.0002504623, z: 0.00013895633} + outSlope: {x: -0.00019777563, y: -0.000250539, z: 0.00013895401} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.2 + value: {x: -0.00000905638, y: 0.015663624, z: -0.0004748233} + inSlope: {x: -0.00022957793, y: -0.000078025936, z: 0.0002196492} + outSlope: {x: -0.00022958107, y: -0.00007802596, z: 0.00021965176} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.2333333 + value: {x: -0.000017780407, y: 0.01566389, z: -0.0004677069} + inSlope: {x: -0.0002685245, y: 0.000114922965, z: 0.00025705903} + outSlope: {x: -0.00026852588, y: 0.000115016606, z: 0.00025706066} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.3 + value: {x: -0.000037434245, y: 0.015684163, z: -0.00044583} + inSlope: {x: -0.0003365944, y: 0.000345261, z: 0.0003182262} + outSlope: {x: -0.00033658932, y: 0.0003453547, z: 0.0003182312} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.3666666 + value: {x: -0.000060727038, y: 0.015699845, z: -0.00042764636} + inSlope: {x: -0.00031045315, y: 0.000013353133, z: 0.00022804835} + outSlope: {x: -0.00031043275, y: 0.0000133241265, z: 0.00022803927} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.4666667 + value: {x: -0.00008433566, y: 0.015664203, z: -0.00041149536} + inSlope: {x: -0.00021229924, y: -0.00047977516, z: 0.00016227884} + outSlope: {x: -0.0002123032, y: -0.00047959297, z: 0.00016227478} + tangentMode: 0 + weightedMode: 0 + 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.00009149624, y: 0.015649352, z: -0.00040579142} + inSlope: {x: -0.00016517559, y: -0.00028511137, z: 0.00021796793} + outSlope: {x: -0.00016517431, y: -0.00028497857, z: 0.00021797162} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.5333333 + value: {x: -0.00009534729, y: 0.015645193, z: -0.00039696402} + inSlope: {x: -0.000120679666, y: 0.00007026544, z: 0.000291791} + outSlope: {x: -0.00012067786, y: 0.00007013085, z: 0.0002917779} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.6 + value: {x: -0.00010092887, y: 0.015670137, z: -0.00037641762} + inSlope: {x: -0.0000032447658, y: 0.00046532528, z: 0.00026600083} + outSlope: {x: -0.0000032455896, y: 0.00046536626, z: 0.00026598884} + tangentMode: 0 + weightedMode: 0 + 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.000095078205, y: 0.015692, z: -0.00036518835} + inSlope: {x: 0.00018443103, y: -0.000041668824, z: 0.00003073494} + outSlope: {x: 0.00018443853, y: -0.000042011063, z: 0.000030727504} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.7333333 + value: {x: -0.000078838755, y: 0.015654832, z: -0.00037256363} + inSlope: {x: 0.00029731085, y: -0.0010024625, z: -0.00017747525} + outSlope: {x: 0.00029731248, y: -0.0010020502, z: -0.00017748484} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.7666667 + value: {x: -0.00006764138, y: 0.015615451, z: -0.00037838952} + inSlope: {x: 0.00031765125, y: -0.0012111776, z: -0.0001397689} + outSlope: {x: 0.00031765105, y: -0.001211203, z: -0.00013977093} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.8666666 + value: {x: -0.00004054498, y: 0.015526939, z: -0.00037618703} + inSlope: {x: 0.00021125938, y: -0.00014249775, z: 0.00020213382} + outSlope: {x: 0.00021124707, y: -0.0001426603, z: 0.00020212338} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.9666667 + value: {x: -0.000024441448, y: 0.015574245, z: -0.00035135608} + inSlope: {x: 0.00016288878, y: 0.0005308189, z: 0.00024989474} + outSlope: {x: 0.00016289041, y: 0.00053082575, z: 0.00024989274} + tangentMode: 0 + weightedMode: 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.000018580004, y: 0.015586836, z: -0.00034311085} + inSlope: {x: 0.00019489368, y: 0.000131304, z: 0.00022180933} + outSlope: {x: 0.00019489351, y: 0.00013147095, z: 0.00022180738} + tangentMode: 0 + weightedMode: 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.0333333 + value: {x: -0.000011448551, y: 0.015583022, z: -0.00033656892} + inSlope: {x: 0.00021978264, y: -0.00038760083, z: 0.00015916921} + outSlope: {x: 0.00021978076, y: -0.0003873351, z: 0.00015917413} + tangentMode: 0 + weightedMode: 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.0666666 + value: {x: -0.0000039279, y: 0.015561011, z: -0.00033249956} + inSlope: {x: 0.00020461566, y: -0.0010276599, z: 0.000039464467} + outSlope: {x: 0.00020461174, y: -0.0010274077, z: 0.00003945193} + tangentMode: 0 + weightedMode: 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.1 + value: {x: 0.0000021923386, y: 0.015514518, z: -0.00033393863} + inSlope: {x: 0.00017875407, y: -0.0014187552, z: -0.00006499466} + outSlope: {x: 0.0001787435, y: -0.0014186497, z: -0.000064979555} + tangentMode: 0 + weightedMode: 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.1333334 + value: {x: 0.000007988871, y: 0.015466428, z: -0.00033683243} + inSlope: {x: 0.00016400065, y: -0.0012078208, z: -0.000025614125} + outSlope: {x: 0.00016401202, y: -0.0012082399, z: -0.000025628478} + tangentMode: 0 + weightedMode: 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.2 + value: {x: 0.000016421985, y: 0.0154363625, z: -0.00032638974} + inSlope: {x: 0.000053139374, y: 0.000497001, z: 0.00031631574} + outSlope: {x: 0.00005314016, y: 0.00049697363, z: 0.0003163285} + tangentMode: 0 + weightedMode: 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.2333333 + value: {x: 0.000016668922, y: 0.015467112, z: -0.00031455877} + inSlope: {x: -0.000027309052, y: 0.0011553501, z: 0.0003288561} + outSlope: {x: -0.000027309401, y: 0.0011550912, z: 0.0003288596} + tangentMode: 0 + weightedMode: 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.2666667 + value: {x: 0.000014601367, y: 0.015513374, z: -0.0003044659} + inSlope: {x: -0.00010156898, y: 0.0013965754, z: 0.0002817373} + outSlope: {x: -0.00010156864, y: 0.0013966162, z: 0.00028173425} + tangentMode: 0 + weightedMode: 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.3 + value: {x: 0.000009897668, y: 0.015560224, z: -0.00029577638} + inSlope: {x: -0.00017199632, y: 0.0011680748, z: 0.00015123188} + outSlope: {x: -0.00017199396, y: 0.0011680307, z: 0.00015123734} + tangentMode: 0 + weightedMode: 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.0000031350305, y: 0.015591242, z: -0.0002943838} + inSlope: {x: -0.00020288186, y: 0.00093063357, z: 0.000041782892} + outSlope: {x: -0.00020288186, y: 0.00093063357, z: 0.000041782892} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips + m_ScaleCurves: [] + m_FloatCurves: [] + m_PPtrCurves: [] + m_SampleRate: 30 + 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: 1083781737 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1083781737 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 408225041 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 168334831 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 215603437 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1852142506 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1775379527 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1207142558 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3198065886 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 407569882 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3106263194 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 688943277 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2140469971 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1886386198 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 395264987 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 4080340377 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3974837130 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1014061991 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1587372701 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 357817416 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1651132406 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1915810720 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3001700786 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3132553515 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2015721024 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 407230557 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2938783533 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 10533847 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2486468252 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1925155201 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 523512273 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1714668715 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2119318601 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2334650127 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 4220895696 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1454392865 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2471676248 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 565509406 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2538289614 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2364716999 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3092991833 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2853632173 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3575002567 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 971364194 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1021604224 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 733358149 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1941555904 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1601611806 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 4126269581 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2280639224 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3482077456 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3984737358 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3155596823 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1692231856 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 440322630 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3048725362 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1185900278 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2828911296 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1935085395 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2435940167 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3169137491 + 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: 3.3333335 + 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/Jammo-Character/Animations/Default/a_Idle_Scared.anim.meta b/Assets/Jammo-Character/Animations/Default/a_Idle_Scared.anim.meta new file mode 100644 index 0000000..aa68df4 --- /dev/null +++ b/Assets/Jammo-Character/Animations/Default/a_Idle_Scared.anim.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 23c0d86c9ee13b14e989e8dbcb08489a +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 7400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Jammo-Character/Animations/Default/a_Running.anim b/Assets/Jammo-Character/Animations/Default/a_Running.anim new file mode 100644 index 0000000..5873808 --- /dev/null +++ b/Assets/Jammo-Character/Animations/Default/a_Running.anim @@ -0,0 +1,6910 @@ +%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: a_Running + 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, 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.033333335 + 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: Armature.001 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.09803889, y: 0.018422268, z: 0.025570689, w: 0.99468344} + inSlope: {x: -0.46541712, y: -0.12299023, z: -1.1914291, w: 0.051067468} + outSlope: {x: -0.46541712, y: -0.12299023, z: -1.1914291, w: 0.051067468} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.082524985, y: 0.014322594, z: -0.014143616, w: 0.9963857} + inSlope: {x: -0.17010367, y: -0.10964498, z: -1.1759946, w: 0.0013107061} + outSlope: {x: -0.17010367, y: -0.10964498, z: -1.1759946, w: 0.0013107061} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: 0.086698644, y: 0.011112602, z: -0.05282896, w: 0.9947708} + inSlope: {x: 0.10713256, y: -0.15361723, z: -1.2792186, w: -0.08096068} + outSlope: {x: 0.10713256, y: -0.15361723, z: -1.2792186, w: -0.08096068} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: 0.08966716, y: 0.0040814434, z: -0.09942486, w: 0.9909883} + inSlope: {x: 0.11154849, y: -0.30662137, z: -0.7626082, w: -0.07001548} + outSlope: {x: 0.11154849, y: -0.30662137, z: -0.7626082, w: -0.07001548} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.09413521, y: -0.009328824, z: -0.10366951, w: 0.9901031} + inSlope: {x: 0.11874297, y: -0.18729824, z: 0.4159056, w: 0.024262372} + outSlope: {x: 0.11874297, y: -0.18729824, z: 0.4159056, w: 0.024262372} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.09758335, y: -0.008405105, z: -0.07169782, w: 0.9926058} + inSlope: {x: -0.23455964, y: 0.20175737, z: 0.9891058, w: 0.09132652} + outSlope: {x: -0.23455964, y: 0.20175737, z: 0.9891058, w: 0.09132652} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: 0.078497894, y: 0.0041216733, z: -0.037729107, w: 0.99619156} + inSlope: {x: -0.45265678, y: -0.23670803, z: 0.92564464, w: 0.07164983} + outSlope: {x: -0.45265678, y: -0.23670803, z: 0.92564464, w: 0.07164983} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: 0.06740623, y: -0.024185633, z: -0.009988169, w: 0.99738246} + inSlope: {x: -0.115287945, y: -0.8041043, z: 0.45675337, w: 0.0006490946} + outSlope: {x: -0.115287945, y: -0.8041043, z: 0.45675337, w: 0.0006490946} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.07081203, y: -0.04948528, z: -0.007278882, w: 0.99623483} + inSlope: {x: 0.29760697, y: -0.4309595, z: 0.0047473423, w: -0.03973693} + outSlope: {x: 0.29760697, y: -0.4309595, z: 0.0047473423, w: -0.03973693} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.09210463, y: -0.043163765, z: -0.0046285437, w: 0.9948026} + inSlope: {x: 0.049605228, y: 0.25703108, z: 0.4910031, w: 0.0037202244} + outSlope: {x: 0.049605228, y: 0.25703108, z: 0.4910031, w: 0.0037202244} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: 0.09055371, y: -0.035780862, z: 0.02306186, w: 0.99498135} + inSlope: {x: -0.006520914, y: 0.070373826, z: 0.7712649, w: -0.012858497} + outSlope: {x: -0.006520914, y: 0.070373826, z: 0.7712649, w: -0.012858497} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.0916699, y: -0.03847218, z: 0.046789136, w: 0.99394536} + inSlope: {x: 0.01323244, y: 0.2515498, z: 0.5318868, w: -0.016098605} + outSlope: {x: 0.01323244, y: 0.2515498, z: 0.5318868, w: -0.016098605} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: 0.09143587, y: -0.01901088, z: 0.058521, w: 0.9939081} + inSlope: {x: -0.024923535, y: 0.44608843, z: 0.23736775, w: -0.00019311908} + outSlope: {x: -0.024923535, y: 0.44608843, z: 0.23736775, w: -0.00019311908} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: 0.09000833, y: -0.008732952, z: 0.06261365, w: 0.9939325} + inSlope: {x: -0.12246909, y: 0.035149723, z: -0.4565308, w: 0.031252235} + outSlope: {x: -0.12246909, y: 0.035149723, z: -0.4565308, w: 0.031252235} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.08327127, y: -0.016667558, z: 0.028085642, w: 0.9959916} + inSlope: {x: -0.29524958, y: -0.16967544, z: -1.3867495, w: 0.044157226} + outSlope: {x: -0.29524958, y: -0.16967544, z: -1.3867495, w: 0.044157226} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: 0.070325024, y: -0.020044643, z: -0.029836334, w: 0.9968763} + inSlope: {x: -0.3618023, y: 0.08449051, z: -0.95229805, w: 0.023527425} + outSlope: {x: -0.3618023, y: 0.08449051, z: -0.95229805, w: 0.023527425} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.057042316, y: 0.011425622, z: -0.017053736, w: 0.9981607} + inSlope: {x: 0.0678134, y: 0.50654846, z: 0.8150786, w: -0.00041930284} + outSlope: {x: 0.0678134, y: 0.50654846, z: 0.8150786, w: -0.00041930284} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6333334 + value: {x: 0.063672, y: 0.022735031, z: 0.01893764, w: 0.9975321} + inSlope: {x: 0.418918, y: 0.111996144, z: 0.80198395, w: -0.039330147} + outSlope: {x: 0.418918, y: 0.111996144, z: 0.80198395, w: -0.039330147} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.08497017, y: 0.018892044, z: 0.03641187, w: 0.9955387} + inSlope: {x: 0.51550364, y: -0.06469141, z: 0.099496216, w: -0.04273029} + outSlope: {x: 0.51550364, y: -0.06469141, z: 0.099496216, w: -0.04273029} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.70000005 + value: {x: 0.0980389, y: 0.018422274, z: 0.025570694, w: 0.99468344} + inSlope: {x: 0.39206153, y: -0.014093096, z: -0.325235, w: -0.025657991} + outSlope: {x: 0.39206153, y: -0.014093096, z: -0.325235, w: -0.025657991} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.08866807, y: -0.017187567, z: -0.042251468, w: 0.9950163} + inSlope: {x: 0.18868981, y: -1.0038826, z: 1.274711, w: -0.024731753} + outSlope: {x: 0.18868981, y: -1.0038826, z: 1.274711, w: -0.024731753} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.09495773, y: -0.050650325, z: 0.0002389022, w: 0.9941919} + inSlope: {x: -0.051025115, y: -0.8757835, z: 1.3323417, w: -0.039306875} + outSlope: {x: -0.051025115, y: -0.8757835, z: 1.3323417, w: -0.039306875} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: 0.0852664, y: -0.07557314, z: 0.04657132, w: 0.9923958} + inSlope: {x: -0.22321665, y: -0.7060282, z: 1.5901539, w: -0.11866538} + outSlope: {x: -0.22321665, y: -0.7060282, z: 1.5901539, w: -0.11866538} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: 0.08007662, y: -0.09771888, z: 0.106249176, w: 0.98628086} + inSlope: {x: -0.2691399, y: -0.73703706, z: 1.0244261, w: -0.13764201} + outSlope: {x: -0.2691399, y: -0.73703706, z: 1.0244261, w: -0.13764201} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.05250237, y: -0.14826427, z: 0.08581072, w: 0.98381793} + inSlope: {x: -0.19123834, y: -0.38767856, z: -0.9549756, w: 0.0381866} + outSlope: {x: -0.19123834, y: -0.38767856, z: -0.9549756, w: 0.0381866} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: 0.054574516, y: -0.15055418, z: 0.051201355, w: 0.98576546} + inSlope: {x: 0.058105186, y: 0.779129, z: -1.0903187, w: 0.1477173} + outSlope: {x: 0.058105186, y: 0.779129, z: -1.0903187, w: 0.1477173} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: 0.05637605, y: -0.09632234, z: 0.013122791, w: 0.99366575} + inSlope: {x: 0.028757865, y: 1.7055392, z: -0.69696116, w: 0.17919035} + outSlope: {x: 0.028757865, y: 1.7055392, z: -0.69696116, w: 0.17919035} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: 0.06389211, y: 0.007400118, z: 0.00634903, w: 0.9979092} + inSlope: {x: 0.28532138, y: 1.1299503, z: 0.08853494, w: -0.020492079} + outSlope: {x: 0.28532138, y: 1.1299503, z: 0.08853494, w: -0.020492079} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.07551313, y: 0.038478445, z: 0.010639606, w: 0.99634534} + inSlope: {x: 0.2805983, y: 0.83675057, z: -0.29943874, w: -0.051366094} + outSlope: {x: 0.2805983, y: 0.83675057, z: -0.29943874, w: -0.051366094} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: 0.082598664, y: 0.06318349, z: -0.013613552, w: 0.9944848} + inSlope: {x: 0.17242318, y: 0.89532757, z: -0.73071086, w: -0.08576448} + outSlope: {x: 0.17242318, y: 0.89532757, z: -0.73071086, w: -0.08576448} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.087008014, y: 0.09816698, z: -0.038074467, w: 0.9906277} + inSlope: {x: 0.012687352, y: 0.958449, z: -0.55938065, w: -0.11130448} + outSlope: {x: 0.012687352, y: 0.958449, z: -0.55938065, w: -0.11130448} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: 0.08344449, y: 0.12708011, z: -0.050905615, w: 0.9870645} + inSlope: {x: -0.11024159, y: 1.0670482, z: -0.41378435, w: -0.15727581} + outSlope: {x: -0.11024159, y: 1.0670482, z: -0.41378435, w: -0.15727581} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: 0.079658575, y: 0.16930352, z: -0.06566009, w: 0.98014265} + inSlope: {x: -0.2124348, y: 1.2395891, z: 0.32478958, w: -0.18299022} + outSlope: {x: -0.2124348, y: 1.2395891, z: 0.32478958, w: -0.18299022} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.06928218, y: 0.20971934, z: -0.02925301, w: 0.97486514} + inSlope: {x: -0.35882792, y: 0.85826683, z: 1.570983, w: -0.12776616} + outSlope: {x: -0.35882792, y: 0.85826683, z: 1.570983, w: -0.12776616} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: 0.055736713, y: 0.22652128, z: 0.03907214, w: 0.9716249} + inSlope: {x: -0.030235961, y: -0.04300049, z: 1.1169758, w: 0.0021618605} + outSlope: {x: -0.030235961, y: -0.04300049, z: 1.1169758, w: 0.0021618605} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5666667 + value: {x: 0.06726645, y: 0.20685264, z: 0.04521211, w: 0.97500926} + inSlope: {x: 0.36727592, y: -0.96146303, z: -0.20879674, w: 0.17262079} + outSlope: {x: 0.36727592, y: -0.96146303, z: -0.20879674, w: 0.17262079} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.08022177, y: 0.16242377, z: 0.025152383, w: 0.98313296} + inSlope: {x: 0.31922922, y: -1.6295394, z: -1.0608447, w: 0.23820254} + outSlope: {x: 0.31922922, y: -1.6295394, z: -1.0608447, w: 0.23820254} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6333334 + value: {x: 0.08854839, y: 0.098216675, z: -0.025510889, w: 0.99088943} + inSlope: {x: 0.11738274, y: -1.8307319, z: -1.1794353, w: 0.16090655} + outSlope: {x: 0.11738274, y: -1.8307319, z: -1.1794353, w: 0.16090655} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.088047296, y: 0.040374987, z: -0.053476654, w: 0.99386007} + inSlope: {x: 0.001795054, y: -1.7310638, z: -0.25110933, w: 0.061902728} + outSlope: {x: 0.001795054, y: -1.7310638, z: -0.25110933, w: 0.061902728} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.70000005 + value: {x: 0.08866806, y: -0.017187575, z: -0.042251475, w: 0.9950163} + inSlope: {x: 0.01862301, y: -1.7268753, z: 0.3367551, w: 0.034686297} + outSlope: {x: 0.01862301, y: -1.7268753, z: 0.3367551, w: 0.034686297} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.017704496, y: 0.00048874575, z: -0.004429504, w: 0.99983335} + inSlope: {x: 0.11088425, y: -0.7173081, z: 0.06933478, w: -0.0101691475} + outSlope: {x: 0.11088425, y: -0.7173081, z: 0.06933478, w: -0.0101691475} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: 0.010486026, y: -0.042717185, z: 0.0038448835, w: 0.9990248} + inSlope: {x: -0.17561463, y: -0.18243413, z: 0.090222195, w: -0.006427467} + outSlope: {x: -0.17561463, y: -0.18243413, z: 0.090222195, w: -0.006427467} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: 0.0010829557, y: -0.047793597, z: 0.0030144781, w: 0.99885213} + inSlope: {x: 0.062055923, y: 0.23068705, z: 0.025531625, w: 0.010146796} + outSlope: {x: 0.062055923, y: 0.23068705, z: 0.025531625, w: 0.010146796} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: 0.007105849, y: 0.027445, z: 0.007900471, w: 0.99956685} + inSlope: {x: 0.0575458, y: 0.60308444, z: -0.13790968, w: -0.016971221} + outSlope: {x: 0.0575458, y: 0.60308444, z: -0.13790968, w: -0.016971221} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: 0.0038704318, y: 0.079072416, z: 0.0024691694, w: 0.9968583} + inSlope: {x: 0.07392774, y: -0.00045564026, z: 0.11608644, w: -0.0007760518} + outSlope: {x: 0.07392774, y: -0.00045564026, z: 0.11608644, w: -0.0007760518} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.015464659, y: 0.02875886, z: -0.0029089437, w: 0.99946254} + inSlope: {x: 0.037058745, y: -0.73025525, z: -0.034720875, w: 0.01742185} + outSlope: {x: 0.037058745, y: -0.73025525, z: -0.034720875, w: 0.01742185} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.70000005 + value: {x: 0.017704496, y: 0.00048874575, z: -0.004429504, w: 0.99983335} + inSlope: {x: 0.067195065, y: -0.84810275, z: -0.045616765, w: 0.011124006} + outSlope: {x: 0.067195065, y: -0.84810275, z: -0.045616765, w: 0.011124006} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.030969545, y: 0.00054888055, z: -0.0015996412, w: 0.99951893} + inSlope: {x: 0.106203176, y: -0.7287213, z: 0.047487233, w: -0.011898278} + outSlope: {x: 0.106203176, y: -0.7287213, z: 0.047487233, w: -0.011898278} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: 0.028228784, y: -0.037435975, z: 0.0022529396, w: 0.99889773} + inSlope: {x: -0.18443468, y: -0.2958889, z: 0.08366103, w: -0.004948675} + outSlope: {x: -0.18443468, y: -0.2958889, z: 0.08366103, w: -0.004948675} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.00980671, y: -0.05266859, z: 0.005637379, w: 0.99854803} + inSlope: {x: -0.03299937, y: 0.021625392, z: -0.050006967, w: 0.001864134} + outSlope: {x: -0.03299937, y: 0.021625392, z: -0.050006967, w: 0.001864134} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: 0.015973592, y: -0.009053919, z: 0.014836715, w: 0.99972135} + inSlope: {x: 0.04462006, y: 0.5149406, z: 0.045494694, w: 0.0029048326} + outSlope: {x: 0.04462006, y: 0.5149406, z: 0.045494694, w: 0.0029048326} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: 0.015472217, y: 0.073061384, z: 0.0016766513, w: 0.99720603} + inSlope: {x: -0.053419735, y: 0.1900681, z: 0.021359107, w: -0.012466911} + outSlope: {x: -0.053419735, y: 0.1900681, z: 0.021359107, w: -0.012466911} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.025896553, y: 0.06531342, z: 0.007142517, w: 0.99750316} + inSlope: {x: 0.107046045, y: -0.40058327, z: -0.14515589, w: 0.023591815} + outSlope: {x: 0.107046045, y: -0.40058327, z: -0.14515589, w: 0.023591815} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.70000005 + value: {x: 0.03096953, y: 0.00054888055, z: -0.001599641, w: 0.99951893} + inSlope: {x: 0.08177428, y: -0.8504143, z: -0.075286046, w: 0.010079733} + outSlope: {x: 0.08177428, y: -0.8504143, z: -0.075286046, w: 0.010079733} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.00799574, y: 0.0030622068, z: 0.002322678, w: 0.99996066} + inSlope: {x: 0.10307682, y: 0.40489608, z: -0.061737686, w: -0.0032454727} + outSlope: {x: 0.10307682, y: 0.40489608, z: -0.061737686, w: -0.0032454727} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: -0.004559845, y: 0.016558744, z: 0.0002647549, w: 0.9998525} + inSlope: {x: 0.15102172, y: 0.27693403, z: 0.13780518, w: -0.0039115543} + outSlope: {x: 0.15102172, y: 0.27693403, z: 0.13780518, w: -0.0039115543} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: 0.0020723753, y: 0.021524478, z: 0.0115096895, w: 0.9996999} + inSlope: {x: 0.10072208, y: 0.17050219, z: -0.0059701204, w: -0.0036719437} + outSlope: {x: 0.10072208, y: 0.17050219, z: -0.0059701204, w: -0.0036719437} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.0071886256, y: 0.033131603, z: -0.0004295223, w: 0.99942505} + inSlope: {x: 0.20445368, y: 0.07137498, z: 0.20154157, w: -0.0053268676} + outSlope: {x: 0.20445368, y: 0.07137498, z: 0.20154157, w: -0.0053268676} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.015785204, y: 0.03268389, z: 0.013302849, w: 0.99925256} + inSlope: {x: 0.10980192, y: -0.039355844, z: 0.13408613, w: -0.00048101065} + outSlope: {x: 0.10980192, y: -0.039355844, z: 0.13408613, w: -0.00048101065} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: 0.013659487, y: 0.024254447, z: 0.007491295, w: 0.99958444} + inSlope: {x: -0.055801712, y: -0.20728467, z: -0.03426636, w: 0.0058525805} + outSlope: {x: -0.055801712, y: -0.20728467, z: -0.03426636, w: 0.0058525805} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: -0.00080215494, y: 0.00883184, z: 0.000627767, w: 0.9999605} + inSlope: {x: -0.25337166, y: -0.24362516, z: -0.281681, w: 0.0017899277} + outSlope: {x: -0.25337166, y: -0.24362516, z: -0.281681, w: 0.0017899277} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.006102804, y: 0.0004472259, z: -0.012553605, w: 0.9999025} + inSlope: {x: 0.018173218, y: -0.28770852, z: -0.05980088, w: -0.00029593706} + outSlope: {x: 0.018173218, y: -0.28770852, z: -0.05980088, w: -0.00029593706} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: 0.00040939273, y: -0.010348727, z: -0.0033589571, w: 0.99994075} + inSlope: {x: 0.16203444, y: -0.2789067, z: -0.07079157, w: -0.0034108725} + outSlope: {x: 0.16203444, y: -0.2789067, z: -0.07079157, w: -0.0034108725} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.0046994947, y: -0.01814656, z: -0.017273055, w: 0.9996751} + inSlope: {x: 0.04277348, y: -0.2791357, z: -0.14649707, w: -0.006773469} + outSlope: {x: 0.04277348, y: -0.2791357, z: -0.14649707, w: -0.006773469} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: -0.0023411736, y: -0.040332124, z: 0.002115365, w: 0.9991814} + inSlope: {x: 0.0067666396, y: -0.21377501, z: 0.11736383, w: -0.0066617155} + outSlope: {x: 0.0067666396, y: -0.21377501, z: 0.11736383, w: -0.0066617155} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5666667 + value: {x: 0.014782113, y: -0.039473563, z: -0.027578508, w: 0.9987306} + inSlope: {x: -0.18407464, y: 0.08208467, z: 0.09268033, w: 0.006759174} + outSlope: {x: -0.18407464, y: 0.08208467, z: 0.09268033, w: 0.006759174} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6333334 + value: {x: -0.0062429556, y: -0.029046385, z: 0.0007680936, w: 0.99955827} + inSlope: {x: -0.1658298, y: 0.31699958, z: 0.31307453, w: 0.00957191} + outSlope: {x: -0.1658298, y: 0.31699958, z: 0.31307453, w: 0.00957191} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.70000005 + value: {x: -0.0079957405, y: 0.0030622059, z: 0.002322681, w: 0.99996066} + inSlope: {x: -0.013940784, y: 0.54437166, z: -0.07399645, w: 0.0034260722} + outSlope: {x: -0.013940784, y: 0.54437166, z: -0.07399645, w: 0.0034260722} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.08449919, y: -0.00082282716, z: 0.028277246, w: 0.99602187} + inSlope: {x: 0.31239218, y: 2.09461, z: -0.15164739, w: -0.04292428} + outSlope: {x: 0.31239218, y: 2.09461, z: -0.15164739, w: -0.04292428} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: -0.074086115, y: 0.06899751, z: 0.023222333, w: 0.99459106} + inSlope: {x: 0.65847135, y: 1.7892154, z: -0.58740187, w: -0.0592938} + outSlope: {x: 0.65847135, y: 1.7892154, z: -0.58740187, w: -0.0592938} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: -0.040601093, y: 0.11845821, z: -0.010882879, w: 0.99206895} + inSlope: {x: 0.9261962, y: 1.2537047, z: -0.74089223, w: -0.10084836} + outSlope: {x: 0.9261962, y: 1.2537047, z: -0.74089223, w: -0.10084836} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: -0.012339695, y: 0.15257783, z: -0.026170488, w: 0.98786783} + inSlope: {x: 0.7353278, y: 1.1889145, z: -0.50874084, w: -0.19306004} + outSlope: {x: 0.7353278, y: 1.1889145, z: -0.50874084, w: -0.19306004} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.0299132, y: 0.21969251, z: -0.057228804, w: 0.9734297} + inSlope: {x: 0.5197171, y: 0.037516177, z: -0.063246764, w: -0.024336606} + outSlope: {x: 0.5197171, y: 0.037516177, z: -0.063246764, w: -0.024336606} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: 0.040057164, y: 0.1609334, z: -0.04127193, w: 0.985288} + inSlope: {x: -0.20344004, y: -1.3058668, z: 0.21958005, w: 0.22450985} + outSlope: {x: -0.20344004, y: -1.3058668, z: 0.21958005, w: 0.22450985} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.029505908, y: 0.11316247, z: -0.034376714, w: 0.99254316} + inSlope: {x: -0.73836434, y: -1.5119126, z: 0.30382374, w: 0.18957944} + outSlope: {x: -0.73836434, y: -1.5119126, z: 0.30382374, w: 0.18957944} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: -0.0091671245, y: 0.06013924, z: -0.021017015, w: 0.99792665} + inSlope: {x: -1.1637456, y: -1.8099453, z: 0.34911305, w: 0.093159385} + outSlope: {x: -1.1637456, y: -1.8099453, z: 0.34911305, w: 0.093159385} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.048077125, y: -0.0075005437, z: -0.011102513, w: 0.9987538} + inSlope: {x: -0.65037555, y: -1.7765923, z: 0.16768552, w: -0.015883148} + outSlope: {x: -0.65037555, y: -1.7765923, z: 0.16768552, w: -0.015883148} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: -0.05252549, y: -0.058300234, z: -0.009837981, w: 0.9968678} + inSlope: {x: -0.047067426, y: -1.7375889, z: 0.39141077, w: -0.11737697} + outSlope: {x: -0.047067426, y: -1.7375889, z: 0.39141077, w: -0.11737697} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: -0.035752583, y: -0.18540435, z: 0.03248069, w: 0.9814744} + inSlope: {x: 0.65915316, y: -1.6853126, z: 0.34791535, w: -0.29818568} + outSlope: {x: 0.65915316, y: -1.6853126, z: 0.34791535, w: -0.29818568} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.013644706, y: -0.26642543, z: 0.045962907, w: 0.96266234} + inSlope: {x: 0.34498334, y: -0.57765204, z: 0.21338776, w: -0.1640431} + outSlope: {x: 0.34498334, y: -0.57765204, z: 0.21338776, w: -0.1640431} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.022662282, y: -0.22723716, z: 0.0398355, w: 0.97276044} + inSlope: {x: -0.48947808, y: 1.4308624, z: -0.25726822, w: 0.31515953} + outSlope: {x: -0.48947808, y: 1.4308624, z: -0.25726822, w: 0.31515953} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.054051638, y: -0.08989642, z: 0.022802768, w: 0.99422187} + inSlope: {x: -0.7617651, y: 2.4758542, z: -0.034424543, w: 0.16390008} + outSlope: {x: -0.7617651, y: 2.4758542, z: -0.034424543, w: 0.16390008} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.70000005 + value: {x: -0.08449919, y: -0.0008228242, z: 0.02827723, w: 0.99602187} + inSlope: {x: -0.91342574, y: 2.6722054, z: 0.1642337, w: 0.053999975} + outSlope: {x: -0.91342574, y: 2.6722054, z: 0.1642337, w: 0.053999975} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.06928724, y: 0, z: -0, w: 0.99759674} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: -0.06928724, y: 0, z: -0, w: 0.99759674} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head/mixamorig:HeadTop_End + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.40506425, y: -0.45798013, z: 0.59357256, w: 0.5233056} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.40506425, y: -0.45798013, z: 0.59357256, w: 0.5233056} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head/mixamorig:LeftEar + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.40506425, y: 0.45798013, z: -0.59357256, w: 0.5233056} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.40506425, y: 0.45798013, z: -0.59357256, w: 0.5233056} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head/mixamorig:RightEar + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.50732696, y: -0.47114947, z: 0.5053312, w: 0.5150514} + inSlope: {x: -0.17091034, y: -0.1590058, z: -0.15760122, w: 0.17397343} + outSlope: {x: -0.17091034, y: -0.1590058, z: -0.15760122, w: 0.17397343} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.50162995, y: -0.47644967, z: 0.50007784, w: 0.52085054} + inSlope: {x: -0.40341493, y: -0.38792026, z: -0.05496382, w: 0.07559895} + outSlope: {x: -0.40341493, y: -0.38792026, z: -0.05496382, w: 0.07559895} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: 0.45732918, y: -0.5182853, z: 0.49972263, w: 0.5220227} + inSlope: {x: -0.5967231, y: -0.52011603, z: -0.30962977, w: 0.3007463} + outSlope: {x: -0.5967231, y: -0.52011603, z: -0.30962977, w: 0.3007463} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.43248233, y: -0.5368234, z: 0.47131583, w: 0.5501283} + inSlope: {x: -0.18370895, y: -0.12137531, z: -0.14323579, w: 0.15226634} + outSlope: {x: -0.18370895, y: -0.12137531, z: -0.14323579, w: 0.15226634} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: 0.44171202, y: -0.52974635, z: 0.4715772, w: 0.54943097} + inSlope: {x: 0.7751786, y: 0.6625638, z: 0.14177845, w: -0.14045031} + outSlope: {x: 0.7751786, y: 0.6625638, z: 0.14177845, w: -0.14045031} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.4800824, y: -0.495606, z: 0.48092782, w: 0.54092884} + inSlope: {x: 1.2856348, y: 1.1990433, z: 0.31238082, w: -0.34630987} + outSlope: {x: 1.2856348, y: 1.1990433, z: 0.31238082, w: -0.34630987} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: 0.527421, y: -0.44981015, z: 0.49240258, w: 0.52634364} + inSlope: {x: 0.8941618, y: 0.8753166, z: 0.23008393, w: -0.3015143} + outSlope: {x: 0.8941618, y: 0.8753166, z: 0.23008393, w: -0.3015143} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: 0.5400974, y: -0.43643218, z: 0.49091783, w: 0.5261382} + inSlope: {x: -0.17717406, y: -0.13962092, z: -0.43525115, w: 0.45260906} + outSlope: {x: -0.17717406, y: -0.13962092, z: -0.43525115, w: 0.45260906} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.52788156, y: -0.44655964, z: 0.46725, w: 0.55100185} + inSlope: {x: -0.4728161, y: -0.43689197, z: -0.4284817, w: 0.47082573} + outSlope: {x: -0.4728161, y: -0.43689197, z: -0.4284817, w: 0.47082573} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.48022646, y: -0.494008, z: 0.46812943, w: 0.5533475} + inSlope: {x: -0.29834935, y: -0.28051758, z: -0.032755103, w: 0.038380597} + outSlope: {x: -0.29834935, y: -0.28051758, z: -0.032755103, w: 0.038380597} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.4828345, y: -0.4925309, z: 0.4763426, w: 0.5453273} + inSlope: {x: 0.38738644, y: 0.33128092, z: 0.36564407, w: -0.36993024} + outSlope: {x: 0.38738644, y: 0.33128092, z: 0.36564407, w: -0.36993024} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6333334 + value: {x: 0.49910605, y: -0.47818062, z: 0.49010214, w: 0.53107095} + inSlope: {x: 0.25512972, y: 0.2143633, z: 0.35788935, w: -0.36778268} + outSlope: {x: 0.25512972, y: 0.2143633, z: 0.35788935, w: -0.36778268} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.49984315, y: -0.47824, z: 0.5002019, w: 0.52080846} + inSlope: {x: 0.12328586, y: 0.105440676, z: 0.2284103, w: -0.2402652} + outSlope: {x: 0.12328586, y: 0.105440676, z: 0.2284103, w: -0.2402652} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.70000005 + value: {x: 0.5073251, y: -0.47115123, z: 0.5053295, w: 0.5150533} + inSlope: {x: 0.22445868, y: 0.21266323, z: 0.15382813, w: -0.17265543} + outSlope: {x: 0.22445868, y: 0.21266323, z: 0.15382813, w: -0.17265543} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.42959917, y: -0.13743451, z: 0.01043127, w: 0.89243907} + inSlope: {x: -0.60777867, y: -1.1369284, z: 0.7544508, w: 0.06691575} + outSlope: {x: -0.60777867, y: -1.1369284, z: 0.7544508, w: 0.06691575} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.40933987, y: -0.17533213, z: 0.035579633, w: 0.8946696} + inSlope: {x: -0.66953075, y: -1.6771367, z: 0.5246091, w: -0.07440179} + outSlope: {x: -0.66953075, y: -1.6771367, z: 0.5246091, w: -0.07440179} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: 0.38496378, y: -0.24924363, z: 0.045405213, w: 0.88747895} + inSlope: {x: -0.816328, y: -2.0378635, z: 0.15046957, w: -0.21396157} + outSlope: {x: -0.816328, y: -2.0378635, z: 0.15046957, w: -0.21396157} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: 0.354918, y: -0.3111897, z: 0.04561094, w: 0.8804055} + inSlope: {x: -0.5685326, y: -1.7820526, z: -0.0331986, w: -0.38931996} + outSlope: {x: -0.5685326, y: -1.7820526, z: -0.0331986, w: -0.38931996} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.34572142, y: -0.40287486, z: 0.054283608, w: 0.8457079} + inSlope: {x: 0.17891712, y: -0.5435658, z: 0.5953611, w: -0.36569682} + outSlope: {x: 0.17891712, y: -0.5435658, z: 0.5953611, w: -0.36569682} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: 0.35898942, y: -0.40428486, z: 0.082882725, w: 0.8371445} + inSlope: {x: 0.59770966, y: 0.489125, z: 0.9002217, w: -0.1251867} + outSlope: {x: 0.59770966, y: 0.489125, z: 0.9002217, w: -0.1251867} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: 0.38556874, y: -0.37026653, z: 0.114298396, w: 0.8373621} + inSlope: {x: 0.5035244, y: 1.7219484, z: 0.73410225, w: 0.387387} + outSlope: {x: 0.5035244, y: 1.7219484, z: 0.73410225, w: 0.387387} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.3925577, y: -0.28948832, z: 0.13182287, w: 0.8629703} + inSlope: {x: -0.043021746, y: 3.5044968, z: 0.034455106, w: 1.0332192} + outSlope: {x: -0.043021746, y: 3.5044968, z: 0.034455106, w: 1.0332192} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: 0.38270062, y: -0.13663343, z: 0.1165954, w: 0.9062434} + inSlope: {x: 0.42231607, y: 4.9490013, z: -1.7801605, w: 0.64839816} + outSlope: {x: 0.42231607, y: 4.9490013, z: -1.7801605, w: 0.64839816} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.4207121, y: 0.040445104, z: 0.013145508, w: 0.90619683} + inSlope: {x: 1.1572311, y: 4.4486613, z: -2.56881, w: -0.51722115} + outSlope: {x: 1.1572311, y: 4.4486613, z: -2.56881, w: -0.51722115} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: 0.45984936, y: 0.15994398, z: -0.05465859, w: 0.871762} + inSlope: {x: 0.7221078, y: 2.3077426, z: -1.1066803, w: -0.700364} + outSlope: {x: 0.7221078, y: 2.3077426, z: -1.1066803, w: -0.700364} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.46885264, y: 0.19429463, z: -0.06063318, w: 0.8595059} + inSlope: {x: -0.16326755, y: 0.08188406, z: -0.42841268, w: 0.035895273} + outSlope: {x: -0.16326755, y: 0.08188406, z: -0.42841268, w: 0.035895273} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: 0.44896486, y: 0.16540295, z: -0.08321944, w: 0.874155} + inSlope: {x: -1.1095593, y: -1.3121877, z: -0.42064893, w: 0.7301465} + outSlope: {x: -1.1095593, y: -1.3121877, z: -0.42064893, w: 0.7301465} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: 0.39488202, y: 0.10681546, z: -0.08867644, w: 0.9081823} + inSlope: {x: -1.7603794, y: -1.6154988, z: -0.1802868, w: 0.94001997} + outSlope: {x: -1.7603794, y: -1.6154988, z: -0.1802868, w: 0.94001997} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.3316063, y: 0.057703078, z: -0.09523855, w: 0.93682295} + inSlope: {x: -1.2484658, y: -1.436861, z: 0.20747533, w: 0.5849686} + outSlope: {x: -1.2484658, y: -1.436861, z: 0.20747533, w: 0.5849686} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: 0.31165102, y: 0.011024732, z: -0.074844725, w: 0.9471802} + inSlope: {x: 0.11787358, y: -1.1948147, z: 0.80559933, w: 0.039331876} + outSlope: {x: 0.11787358, y: -1.1948147, z: 0.80559933, w: 0.039331876} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.3853342, y: -0.060680624, z: -0.012341463, w: 0.9206971} + inSlope: {x: 1.3212675, y: -1.220148, z: 0.6169475, w: -0.62060773} + outSlope: {x: 1.3212675, y: -1.220148, z: 0.6169475, w: -0.62060773} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6333334 + value: {x: 0.42754903, y: -0.10329449, z: -0.00040206997, w: 0.8980712} + inSlope: {x: 0.97833514, y: -1.0033114, z: 0.14399874, w: -0.5567219} + outSlope: {x: 0.97833514, y: -1.0033114, z: 0.14399874, w: -0.5567219} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.45055655, y: -0.12756807, z: -0.0027415345, w: 0.8835823} + inSlope: {x: 0.030756593, y: -0.5120996, z: 0.16250023, w: -0.08448364} + outSlope: {x: 0.030756593, y: -0.5120996, z: 0.16250023, w: -0.08448364} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.70000005 + value: {x: 0.42959943, y: -0.13743445, z: 0.010431292, w: 0.892439} + inSlope: {x: -0.62871283, y: -0.29599136, z: 0.39518446, w: 0.2657012} + outSlope: {x: -0.62871283, y: -0.29599136, z: 0.39518446, w: 0.2657012} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.055081077, y: 0.19801162, z: -0.67882806, w: 0.70494676} + inSlope: {x: -0.17837393, y: -0.5927851, z: 2.198351, w: 2.0724785} + outSlope: {x: -0.17837393, y: -0.5927851, z: 2.198351, w: 2.0724785} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.04913528, y: 0.17825212, z: -0.6055497, w: 0.7740294} + inSlope: {x: -0.12318542, y: -0.40995347, z: 1.5181776, w: 1.3791203} + outSlope: {x: -0.12318542, y: -0.40995347, z: 1.5181776, w: 1.3791203} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: 0.04625272, y: 0.16862026, z: -0.57002425, w: 0.80280775} + inSlope: {x: -0.020042025, y: -0.067074895, z: 0.24698675, w: 0.19030094} + outSlope: {x: -0.020042025, y: -0.067074895, z: 0.24698675, w: 0.19030094} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.046031337, y: 0.16787936, z: -0.5672955, w: 0.8049059} + inSlope: {x: 0.049642924, y: 0.16595894, z: -0.61177504, w: -0.48733667} + outSlope: {x: 0.049642924, y: 0.16595894, z: -0.61177504, w: -0.48733667} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: 0.04884211, y: 0.17727366, z: -0.60193545, w: 0.7770857} + inSlope: {x: 0.10957426, y: 0.3652417, z: -1.3503642, w: -1.1726626} + outSlope: {x: 0.10957426, y: 0.3652417, z: -1.3503642, w: -1.1726626} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: 0.05333629, y: 0.19222881, z: -0.6573198, w: 0.7267284} + inSlope: {x: 0.11947934, y: 0.39663616, z: -1.4724979, w: -1.4262209} + outSlope: {x: 0.11947934, y: 0.39663616, z: -1.4724979, w: -1.4262209} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: 0.057779264, y: 0.206921, z: -0.7120818, w: 0.6684196} + inSlope: {x: -0.027892407, y: -0.09218709, z: 0.34375554, w: 0.36982393} + outSlope: {x: -0.027892407, y: -0.09218709, z: 0.34375554, w: 0.36982393} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.054947905, y: 0.19757026, z: -0.67718494, w: 0.70665926} + inSlope: {x: -0.0803349, y: -0.26582283, z: 0.99010265, w: 1.037593} + outSlope: {x: -0.0803349, y: -0.26582283, z: 0.99010265, w: 1.037593} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: 0.052423604, y: 0.18919948, z: -0.64607495, w: 0.73759246} + inSlope: {x: 0.015707582, y: 0.051960483, z: -0.19361469, w: -0.20518127} + outSlope: {x: 0.015707582, y: 0.051960483, z: -0.19361469, w: -0.20518127} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.05599508, y: 0.20103431, z: -0.6900926, w: 0.69298047} + inSlope: {x: 0.12209098, y: 0.40297854, z: -1.504658, w: -1.6657318} + outSlope: {x: 0.12209098, y: 0.40297854, z: -1.504658, w: -1.6657318} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: 0.060563006, y: 0.21606472, z: -0.7463855, w: 0.62654364} + inSlope: {x: 0.13174492, y: 0.4314528, z: -1.6236243, w: -2.10174} + outSlope: {x: 0.13174492, y: 0.4314528, z: -1.6236243, w: -2.10174} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: 0.064778075, y: 0.22979783, z: -0.79833424, w: 0.5528645} + inSlope: {x: 0.09744358, y: 0.31633627, z: -1.2009139, w: -1.8050219} + outSlope: {x: 0.09744358, y: 0.31633627, z: -1.2009139, w: -1.8050219} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.06705924, y: 0.2371538, z: -0.8264464, w: 0.5062089} + inSlope: {x: 0.058074757, y: 0.18664894, z: -0.7157172, w: -1.2444348} + outSlope: {x: 0.058074757, y: 0.18664894, z: -0.7157172, w: -1.2444348} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5666667 + value: {x: 0.06897072, y: 0.2432623, z: -0.8500029, w: 0.46212736} + inSlope: {x: -0.007104293, y: -0.022667399, z: 0.08758503, w: 0.16783512} + outSlope: {x: -0.007104293, y: -0.022667399, z: 0.08758503, w: 0.16783512} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6333334 + value: {x: 0.06554164, y: 0.23226719, z: -0.8077443, w: 0.5378711} + inSlope: {x: -0.11065966, y: -0.3583884, z: 1.3637455, w: 2.1252072} + outSlope: {x: -0.11065966, y: -0.3583884, z: 1.3637455, w: 2.1252072} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.060798798, y: 0.21683738, z: -0.7492934, w: 0.6227716} + inSlope: {x: -0.15691179, y: -0.51383436, z: 1.9337493, w: 2.5061417} + outSlope: {x: -0.15691179, y: -0.51383436, z: 1.9337493, w: 2.5061417} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.70000005 + value: {x: 0.055080853, y: 0.19801156, z: -0.6788277, w: 0.70494723} + inSlope: {x: -0.17153819, y: -0.564774, z: 2.1139688, w: 2.4652662} + outSlope: {x: -0.17153819, y: -0.564774, z: 2.1139688, w: 2.4652662} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.097180314, y: -0.07461733, z: -0.020954851, w: 0.99224454} + inSlope: {x: 1.1771134, y: 1.5712882, z: -0.9238503, w: 0.13455212} + outSlope: {x: 1.1771134, y: 1.5712882, z: -0.9238503, w: 0.13455212} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: -0.0579432, y: -0.022241056, z: -0.051749863, w: 0.9967296} + inSlope: {x: 0.24387515, y: 1.2568988, z: -0.43063253, w: 0.047932863} + outSlope: {x: 0.24387515, y: 1.2568988, z: -0.43063253, w: 0.047932863} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: -0.08092197, y: 0.009175924, z: -0.04966369, w: 0.99544007} + inSlope: {x: -0.35474598, y: 0.59991044, z: -0.18666026, w: -0.034376975} + outSlope: {x: -0.35474598, y: 0.59991044, z: -0.18666026, w: -0.034376975} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: -0.08159293, y: 0.017752979, z: -0.06419388, w: 0.9944378} + inSlope: {x: -0.35027885, y: 0.053516842, z: -0.57646376, w: -0.0732404} + outSlope: {x: -0.35027885, y: 0.053516842, z: -0.57646376, w: -0.0732404} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: -0.10427389, y: 0.012743715, z: -0.08809461, w: 0.9905574} + inSlope: {x: -0.49930608, y: -0.15986295, z: -0.5246058, w: -0.09069265} + outSlope: {x: -0.49930608, y: -0.15986295, z: -0.5246058, w: -0.09069265} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.11488, y: 0.0070954496, z: -0.0991676, w: 0.98839164} + inSlope: {x: -0.00458923, y: -0.41839495, z: 0.09226464, w: 0.006925445} + outSlope: {x: -0.00458923, y: -0.41839495, z: 0.09226464, w: 0.006925445} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: -0.07569826, y: -0.035667144, z: -0.049113106, w: 0.99528164} + inSlope: {x: 1.0215433, y: -0.11705555, z: 1.0211091, w: 0.11933239} + outSlope: {x: 1.0215433, y: -0.11705555, z: 1.0211091, w: 0.11933239} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.03647695, y: -0.022952994, z: -0.0138696935, w: 0.99897456} + inSlope: {x: 1.3320103, y: 0.72861594, z: 0.93039376, w: 0.06698728} + outSlope: {x: 1.3320103, y: 0.72861594, z: 0.93039376, w: 0.06698728} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: 0.013102424, y: 0.012907244, z: 0.012913139, w: 0.99974746} + inSlope: {x: -0.25453395, y: -0.21324861, z: 0.18304816, w: -0.016458035} + outSlope: {x: -0.25453395, y: -0.21324861, z: 0.18304816, w: -0.016458035} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.053445876, y: -0.037169572, z: -0.0016664846, w: 0.99787736} + inSlope: {x: -1.0208898, y: -1.1178609, z: 0.07276404, w: -0.04980058} + outSlope: {x: -1.0208898, y: -1.1178609, z: 0.07276404, w: -0.04980058} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: -0.054956887, y: -0.061616812, z: 0.017764075, w: 0.9964274} + inSlope: {x: 0.13653491, y: 0.36235735, z: -0.2108973, w: 0.013956396} + outSlope: {x: 0.13653491, y: 0.36235735, z: -0.2108973, w: 0.013956396} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: -0.04434354, y: -0.013012378, z: -0.015726333, w: 0.9988078} + inSlope: {x: -0.6508998, y: 1.1527534, z: -0.04356426, w: -0.022546683} + outSlope: {x: -0.6508998, y: 1.1527534, z: -0.04356426, w: -0.022546683} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: -0.0983502, y: 0.015233452, z: 0.014859759, w: 0.9949243} + inSlope: {x: -1.704941, y: 0.83270144, z: 1.1548676, w: -0.2128333} + outSlope: {x: -1.704941, y: 0.83270144, z: 1.1548676, w: -0.2128333} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: -0.15800627, y: 0.04250105, z: 0.061264835, w: 0.9846189} + inSlope: {x: -1.0462329, y: 0.60388255, z: 0.52525014, w: -0.1797295} + outSlope: {x: -1.0462329, y: 0.60388255, z: 0.52525014, w: -0.1797295} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.16809905, y: 0.05549228, z: 0.04987644, w: 0.98294234} + inSlope: {x: 0.099718794, y: 0.022697464, z: 0.011114478, w: 0.013966205} + outSlope: {x: 0.099718794, y: 0.022697464, z: 0.011114478, w: 0.013966205} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: -0.15135832, y: 0.044014193, z: 0.06200582, w: 0.98555} + inSlope: {x: 0.75244236, y: -0.26171777, z: -0.055903777, w: 0.124140576} + outSlope: {x: 0.75244236, y: -0.26171777, z: -0.055903777, w: 0.124140576} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.097856216, y: 0.032712378, z: 0.02008236, w: 0.99446005} + inSlope: {x: 0.19261797, y: -0.4663356, z: -0.68746114, w: 0.04829143} + outSlope: {x: 0.19261797, y: -0.4663356, z: -0.68746114, w: 0.04829143} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6333334 + value: {x: -0.10509501, y: 0.006955355, z: 0.000318785, w: 0.9944378} + inSlope: {x: -0.30189413, y: -1.213432, z: 0.008339584, w: -0.042431694} + outSlope: {x: -0.30189413, y: -1.213432, z: 0.008339584, w: -0.042431694} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.117982484, y: -0.048183054, z: 0.020638296, w: 0.99163127} + inSlope: {x: 0.118718594, y: -1.2235899, z: -0.31910732, w: -0.032900024} + outSlope: {x: 0.118718594, y: -1.2235899, z: -0.31910732, w: -0.032900024} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.70000005 + value: {x: -0.097180404, y: -0.074617274, z: -0.020955091, w: 0.9922445} + inSlope: {x: 0.6240619, y: -0.793026, z: -1.2478006, w: 0.018396363} + outSlope: {x: 0.6240619, y: -0.793026, z: -1.2478006, w: 0.018396363} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.25081727, y: -0.14356624, z: -0.29673582, w: 0.9101798} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.25081727, y: -0.14356624, z: -0.29673582, w: 0.9101798} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.0030461207, y: -0.27865973, z: 0.21490651, w: 0.93603134} + inSlope: {x: 1.1838166, y: 0.8479723, z: 1.9640967, w: -0.30272302} + outSlope: {x: 1.1838166, y: 0.8479723, z: 1.9640967, w: -0.30272302} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.036414433, y: -0.250394, z: 0.2803764, w: 0.9259406} + inSlope: {x: 0.728761, y: 0.5206532, z: 1.2780466, w: -0.22458938} + outSlope: {x: 0.728761, y: 0.5206532, z: 1.2780466, w: -0.22458938} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: 0.04553795, y: -0.24394952, z: 0.30010962, w: 0.9210587} + inSlope: {x: 0.25681955, y: 0.18478093, z: 0.60732174, w: -0.1618534} + outSlope: {x: 0.25681955, y: 0.18478093, z: 0.60732174, w: -0.1618534} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: 0.053535737, y: -0.23807526, z: 0.32086453, w: 0.91515034} + inSlope: {x: 0.23476246, y: 0.17150736, z: 0.59842896, w: -0.17833829} + outSlope: {x: 0.23476246, y: 0.17150736, z: 0.59842896, w: -0.17833829} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.06118878, y: -0.2325157, z: 0.3400049, w: 0.9091695} + inSlope: {x: -0.39396825, y: -0.24169701, z: -0.3553051, w: 0.07217557} + outSlope: {x: -0.39396825, y: -0.24169701, z: -0.3553051, w: 0.07217557} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.02727119, y: -0.2541884, z: 0.29717752, w: 0.91996205} + inSlope: {x: -0.6526543, y: -0.4294552, z: -0.8942069, w: 0.21511048} + outSlope: {x: -0.6526543, y: -0.4294552, z: -0.8942069, w: 0.21511048} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: 0.014639276, y: -0.26385394, z: 0.26941717, w: 0.9260568} + inSlope: {x: -0.0036423542, y: -0.021539928, z: -0.24309534, w: 0.065480776} + outSlope: {x: -0.0036423542, y: -0.021539928, z: -0.24309534, w: 0.065480776} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: 0.023926241, y: -0.25864008, z: 0.26523212, w: 0.92853904} + inSlope: {x: 0.31840914, y: 0.2059892, z: 0.30456263, w: -0.042969886} + outSlope: {x: 0.31840914, y: 0.2059892, z: 0.30456263, w: -0.042969886} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.038662948, y: -0.24884942, z: 0.28448892, w: 0.9250109} + inSlope: {x: 0.7582019, y: 0.4884209, z: 1.1309477, w: -0.28456274} + outSlope: {x: 0.7582019, y: 0.4884209, z: 1.1309477, w: -0.28456274} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: 0.07447303, y: -0.22607869, z: 0.34062862, w: 0.9095682} + inSlope: {x: 0.340061, y: 0.9317592, z: 0.98946685, w: -0.13929257} + outSlope: {x: 0.340061, y: 0.9317592, z: 0.98946685, w: -0.13929257} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.061333667, y: -0.18673211, z: 0.35045338, w: 0.91572475} + inSlope: {x: -0.42669833, y: 0.8753847, z: -0.07768272, w: 0.24444485} + outSlope: {x: -0.42669833, y: 0.8753847, z: -0.07768272, w: 0.24444485} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: 0.046026465, y: -0.16771968, z: 0.33544978, w: 0.9258645} + inSlope: {x: -0.5018343, y: 0.6248374, z: -0.5457755, w: 0.33167216} + outSlope: {x: -0.5018343, y: 0.6248374, z: -0.5457755, w: 0.33167216} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: 0.027878053, y: -0.14507629, z: 0.31406835, w: 0.9378362} + inSlope: {x: -0.18695572, y: 0.21644881, z: -0.28166637, w: 0.144006} + outSlope: {x: -0.18695572, y: 0.21644881, z: -0.28166637, w: 0.144006} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.033562746, y: -0.15328975, z: 0.31667203, w: 0.9354649} + inSlope: {x: 0.22769816, y: -0.37229946, z: 0.06319599, w: -0.09274094} + outSlope: {x: 0.22769816, y: -0.37229946, z: 0.06319599, w: -0.09274094} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: 0.043057933, y: -0.16989626, z: 0.3182814, w: 0.9316535} + inSlope: {x: 0.41155666, y: -0.8564414, z: 0.009864262, w: -0.19193335} + outSlope: {x: 0.41155666, y: -0.8564414, z: 0.009864262, w: -0.19193335} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5666667 + value: {x: 0.060999878, y: -0.21038589, z: 0.31732965, w: 0.92266935} + inSlope: {x: 0.15625796, y: -1.0559179, z: -0.41062513, w: -0.106702596} + outSlope: {x: 0.15625796, y: -1.0559179, z: -0.41062513, w: -0.106702596} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.053475153, y: -0.24029079, z: 0.29090643, w: 0.92454} + inSlope: {x: -1.0862162, y: -1.1032617, z: -1.5435972, w: 0.17731628} + outSlope: {x: -1.0862162, y: -1.1032617, z: -1.5435972, w: 0.17731628} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6333334 + value: {x: -0.011414583, y: -0.28393668, z: 0.21442312, w: 0.93449044} + inSlope: {x: -1.2023993, y: -0.80207753, z: -1.1634251, w: 0.10265423} + outSlope: {x: -1.2023993, y: -0.80207753, z: -1.1634251, w: 0.10265423} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.026684841, y: -0.29376265, z: 0.2133447, w: 0.9313836} + inSlope: {x: 0.12552682, y: 0.07915211, z: 0.00725333, w: 0.02311249} + outSlope: {x: 0.12552682, y: 0.07915211, z: 0.00725333, w: 0.02311249} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.70000005 + value: {x: -0.0030460942, y: -0.27865985, z: 0.21490668, w: 0.9360313} + inSlope: {x: 0.7091618, y: 0.45308372, z: 0.046859495, w: 0.13943005} + outSlope: {x: 0.7091618, y: 0.45308372, z: 0.046859495, w: 0.13943005} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.29428318, y: -0.12677823, z: -0.20645103, w: 0.9245013} + inSlope: {x: -0.23721187, y: -0.5041556, z: 0.606493, w: -0.021443365} + outSlope: {x: -0.23721187, y: -0.5041556, z: 0.606493, w: -0.021443365} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: -0.30219024, y: -0.14358342, z: -0.1862346, w: 0.9237865} + inSlope: {x: -0.2220024, y: -0.33147988, z: 0.28619683, w: -0.061038133} + outSlope: {x: -0.2220024, y: -0.33147988, z: 0.28619683, w: -0.061038133} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: -0.32715476, y: -0.1598424, z: -0.19781366, w: 0.91010433} + inSlope: {x: -0.7664238, y: -0.4988703, z: -0.47027302, w: -0.48044533} + outSlope: {x: -0.7664238, y: -0.4988703, z: -0.47027302, w: -0.48044533} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: -0.36017826, y: -0.18213491, z: -0.21872278, w: 0.8884024} + inSlope: {x: -0.5111678, y: -0.17881773, z: -0.66998124, w: -0.39363387} + outSlope: {x: -0.5111678, y: -0.17881773, z: -0.66998124, w: -0.39363387} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.3612326, y: -0.17176358, z: -0.24247907, w: 0.8838621} + inSlope: {x: 0.19815615, y: 0.35879457, z: -0.31449866, w: 0.06628627} + outSlope: {x: 0.19815615, y: 0.35879457, z: -0.31449866, w: 0.06628627} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: -0.3328214, y: -0.14893508, z: -0.23041105, w: 0.90219676} + inSlope: {x: 0.3753515, y: 0.20722035, z: 0.30564803, w: 0.25192562} + outSlope: {x: 0.3753515, y: 0.20722035, z: 0.30564803, w: 0.25192562} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: -0.31384507, y: -0.14330801, z: -0.20707184, w: 0.91547} + inSlope: {x: 0.19449325, y: -0.03676057, z: 0.42093027, w: 0.15567364} + outSlope: {x: 0.19449325, y: -0.03676057, z: 0.42093027, w: 0.15567364} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.3089782, y: -0.14685129, z: -0.1912508, w: 0.9199948} + inSlope: {x: 0.40830466, y: -0.0899195, z: 0.89856887, w: 0.29031697} + outSlope: {x: 0.40830466, y: -0.0899195, z: 0.89856887, w: 0.29031697} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: -0.28662476, y: -0.14930265, z: -0.14716725, w: 0.93482447} + inSlope: {x: 0.5353554, y: 0.0052302703, z: 0.90068066, w: 0.3242808} + outSlope: {x: 0.5353554, y: 0.0052302703, z: 0.90068066, w: 0.3242808} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: -0.26291335, y: -0.14323507, z: -0.12195231, w: 0.9463023} + inSlope: {x: 0.34630808, y: 0.10422059, z: 0.3075611, w: 0.15079738} + outSlope: {x: 0.34630808, y: 0.10422059, z: 0.3075611, w: 0.15079738} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: -0.25020063, y: -0.13955456, z: -0.11070134, w: 0.95166665} + inSlope: {x: 0.18153727, y: 0.059531637, z: 0.14496523, w: 0.07590026} + outSlope: {x: 0.18153727, y: 0.059531637, z: 0.14496523, w: 0.07590026} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5666667 + value: {x: -0.26595324, y: -0.14209966, z: -0.12933531, w: 0.94464225} + inSlope: {x: -0.4159128, y: -0.0473593, z: -0.5557673, w: -0.20530528} + outSlope: {x: -0.4159128, y: -0.0473593, z: -0.5557673, w: -0.20530528} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.2822872, y: -0.14292035, z: -0.1539198, w: 0.9360537} + inSlope: {x: -0.29107353, y: 0.34196368, z: -1.1570961, w: -0.24541679} + outSlope: {x: -0.29107353, y: 0.34196368, z: -1.1570961, w: -0.24541679} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6333334 + value: {x: -0.28535813, y: -0.119302064, z: -0.20647508, w: 0.9282811} + inSlope: {x: 0.01599098, y: 0.50209093, z: -0.9673939, w: -0.12041947} + outSlope: {x: 0.01599098, y: 0.50209093, z: -0.9673939, w: -0.12041947} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.28122115, y: -0.109447606, z: -0.21841276, w: 0.9280257} + inSlope: {x: -0.13428502, y: -0.11165351, z: 0.0006181598, w: -0.05670275} + outSlope: {x: -0.13428502, y: -0.11165351, z: 0.0006181598, w: -0.05670275} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.70000005 + value: {x: -0.29431048, y: -0.12674566, z: -0.20643385, w: 0.92450094} + inSlope: {x: -0.39267954, y: -0.51894104, z: 0.35936698, w: -0.10574332} + outSlope: {x: -0.39267954, y: -0.51894104, z: 0.35936698, w: -0.10574332} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2/mixamorig:LeftHandThumb3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.02006675, y: 0.040932294, z: 0.014504496, w: 0.9988551} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.02006675, y: 0.040932294, z: 0.014504496, w: 0.9988551} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2/mixamorig:LeftHandThumb3/mixamorig:LeftHandThumb4 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.70113254, y: -0.03130385, z: 0.07661137, w: 0.7082118} + inSlope: {x: 0.6702035, y: 0.028865037, z: -0.03348045, w: -0.680108} + outSlope: {x: 0.6702035, y: 0.028865037, z: -0.03348045, w: -0.680108} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.72347265, y: -0.030341681, z: 0.075495355, w: 0.6855415} + inSlope: {x: 0.48575425, y: -0.019045807, z: 0.044320036, w: -0.5099916} + outSlope: {x: 0.48575425, y: -0.019045807, z: 0.044320036, w: -0.5099916} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: 0.74735385, y: -0.035696283, z: 0.08488865, w: 0.6580137} + inSlope: {x: 0.6293857, y: -0.14100456, z: 0.22127554, w: -0.7699719} + outSlope: {x: 0.6293857, y: -0.14100456, z: 0.22127554, w: -0.7699719} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.7754752, y: -0.041973874, z: 0.09431774, w: 0.6228809} + inSlope: {x: 0.37167463, y: -0.18755566, z: 0.27791867, w: -0.4931814} + outSlope: {x: 0.37167463, y: -0.18755566, z: 0.27791867, w: -0.4931814} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.77213216, y: -0.048199993, z: 0.10341656, w: 0.62513494} + inSlope: {x: -0.27730456, y: -0.06932271, z: 0.11305211, w: 0.3131451} + outSlope: {x: -0.27730456, y: -0.06932271, z: 0.11305211, w: 0.3131451} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.6956905, y: -0.034146775, z: 0.08244624, w: 0.7127772} + inSlope: {x: -0.89798397, y: 0.21753882, z: -0.40776712, w: 0.939028} + outSlope: {x: -0.89798397, y: 0.21753882, z: -0.40776712, w: 0.939028} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.65241385, y: -0.022196457, z: 0.05653956, w: 0.755425} + inSlope: {x: -0.19822867, y: 0.1779992, z: -0.40630266, w: 0.20955743} + outSlope: {x: -0.19822867, y: 0.1779992, z: -0.40630266, w: 0.20955743} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: 0.6539633, y: -0.015219356, z: 0.040846426, w: 0.75526947} + inSlope: {x: -0.036960788, y: 0.13774844, z: -0.3163761, w: 0.05420203} + outSlope: {x: -0.036960788, y: 0.13774844, z: -0.3163761, w: 0.05420203} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: 0.64661413, y: -0.012803233, z: 0.034492657, w: 0.76192945} + inSlope: {x: 0.13390937, y: -0.025349122, z: 0.07528205, w: -0.11798866} + outSlope: {x: 0.13390937, y: -0.025349122, z: 0.07528205, w: -0.11798866} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.66686076, y: -0.020810204, z: 0.05420225, w: 0.74291706} + inSlope: {x: -0.21159673, y: -0.05518992, z: 0.10017839, w: 0.17993414} + outSlope: {x: -0.21159673, y: -0.05518992, z: 0.10017839, w: 0.17993414} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6333334 + value: {x: 0.65680027, y: -0.02161139, z: 0.055196732, w: 0.7517311} + inSlope: {x: 0.22981572, y: -0.115403496, z: 0.24916928, w: -0.23595081} + outSlope: {x: 0.22981572, y: -0.115403496, z: 0.24916928, w: -0.23595081} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.6821818, y: -0.028503764, z: 0.07081352, w: 0.72718704} + inSlope: {x: 0.6649832, y: -0.145387, z: 0.3212213, w: -0.652789} + outSlope: {x: 0.6649832, y: -0.145387, z: 0.3212213, w: -0.652789} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.70000005 + value: {x: 0.7011325, y: -0.031303853, z: 0.076611474, w: 0.70821184} + inSlope: {x: 0.56852055, y: -0.084002584, z: 0.17393842, w: -0.5692555} + outSlope: {x: 0.56852055, y: -0.084002584, z: 0.17393842, w: -0.5692555} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.5834604, y: -0.00422522, z: 0.08067578, w: 0.8081136} + inSlope: {x: -0.21173893, y: -0.00081104686, z: -0.02927631, w: 0.15436111} + outSlope: {x: -0.21173893, y: -0.00081104686, z: -0.02927631, w: 0.15436111} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: 0.5668982, y: -0.004287725, z: 0.078385636, w: 0.82003886} + inSlope: {x: 0.08408994, y: 0.00031096165, z: 0.011626148, w: -0.059642497} + outSlope: {x: 0.08408994, y: 0.00031096165, z: 0.011626148, w: -0.059642497} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.5906373, y: -0.004197451, z: 0.08166818, w: 0.80278283} + inSlope: {x: -0.03178239, y: -0.00012674136, z: -0.004394464, w: 0.02368838} + outSlope: {x: -0.03178239, y: -0.00012674136, z: -0.004394464, w: 0.02368838} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: 0.5770511, y: -0.0042497655, z: 0.0797895, w: 0.81279004} + inSlope: {x: 0.018243477, y: 0.00007073622, z: 0.0025236213, w: -0.013193775} + outSlope: {x: 0.018243477, y: 0.00007073622, z: 0.0025236213, w: -0.013193775} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.5859544, y: -0.0042157955, z: 0.081020646, w: 0.8062725} + inSlope: {x: -0.051001295, y: -0.0001967721, z: -0.0070496253, w: 0.037694857} + outSlope: {x: -0.051001295, y: -0.0001967721, z: -0.0070496253, w: 0.037694857} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.70000005 + value: {x: 0.5834606, y: -0.0042252983, z: 0.08067591, w: 0.80811346} + inSlope: {x: -0.0748139, y: -0.00028508226, z: -0.010342143, w: 0.055228427} + outSlope: {x: -0.0748139, y: -0.00028508226, z: -0.010342143, w: 0.055228427} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.6773436, y: -0.000000090247966, z: 0.09005042, w: 0.7301346} + inSlope: {x: -0.19162951, y: 0.0000005380432, z: -0.025474278, w: 0.1793289} + outSlope: {x: -0.19162951, y: 0.0000005380432, z: -0.025474278, w: 0.1793289} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: 0.6623372, y: 0.000000010331293, z: 0.08805542, w: 0.74401325} + inSlope: {x: 0.07629276, y: -0.0000006404784, z: 0.010143221, w: -0.069562204} + outSlope: {x: 0.07629276, y: -0.0000006404784, z: 0.010143221, w: -0.069562204} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.6838259, y: -0.00000013362603, z: 0.090912275, w: 0.7239593} + inSlope: {x: -0.028696062, y: -0.00000074030584, z: -0.0038179012, w: 0.027430061} + outSlope: {x: -0.028696062, y: -0.00000074030584, z: -0.0038179012, w: 0.027430061} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: 0.67154384, y: 0.000000041819558, z: 0.08927941, w: 0.7355665} + inSlope: {x: 0.016523289, y: 0.0000011134239, z: 0.0021973979, w: -0.015345799} + outSlope: {x: 0.016523289, y: 0.0000011134239, z: 0.0021973979, w: -0.015345799} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.6795973, y: -0.000000011809192, z: 0.09035009, w: 0.7280003} + inSlope: {x: -0.046090167, y: 0.0000028084569, z: -0.006129851, w: 0.043700323} + outSlope: {x: -0.046090167, y: 0.0000028084569, z: -0.006129851, w: 0.043700323} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.70000005 + value: {x: 0.6773435, y: 0.00000017689905, z: 0.09005036, w: 0.7301348} + inSlope: {x: -0.06761485, y: 0.0000056612425, z: -0.008991875, w: 0.064035006} + outSlope: {x: -0.06761485, y: 0.0000056612425, z: -0.008991875, w: 0.064035006} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2/mixamorig:LeftHandIndex3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.04448855, y: -0.000000017325615, z: -0.000000027583646, w: 0.9990099} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.04448855, y: -0.000000017325615, z: -0.000000027583646, w: 0.9990099} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2/mixamorig:LeftHandIndex3/mixamorig:LeftHandIndex4 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.6371616, y: 0.017914599, z: 0.07431394, w: 0.76693} + inSlope: {x: 0.16801535, y: -0.030219274, z: 0.039724406, w: -0.14384685} + outSlope: {x: 0.16801535, y: -0.030219274, z: 0.039724406, w: -0.14384685} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.6427621, y: 0.01690729, z: 0.075638086, w: 0.7621351} + inSlope: {x: -0.044981547, y: -0.01822192, z: 0.0076086437, w: 0.03689468} + outSlope: {x: -0.044981547, y: -0.01822192, z: 0.0076086437, w: 0.03689468} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: 0.63416284, y: 0.016699804, z: 0.07482118, w: 0.7693896} + inSlope: {x: -0.0044301376, y: 0.015183954, z: -0.010846182, w: 0.004458733} + outSlope: {x: -0.0044301376, y: 0.015183954, z: -0.010846182, w: 0.004458733} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: 0.6424668, y: 0.017919553, z: 0.07491501, w: 0.76243234} + inSlope: {x: 0.5051476, y: 0.0031187898, z: 0.055035245, w: -0.44141203} + outSlope: {x: 0.5051476, y: 0.0031187898, z: 0.055035245, w: -0.44141203} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.66783935, y: 0.016907724, z: 0.0784902, w: 0.73996216} + inSlope: {x: 0.24738641, y: -0.12399585, z: 0.10890395, w: -0.2222729} + outSlope: {x: 0.24738641, y: -0.12399585, z: 0.10890395, w: -0.2222729} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: 0.63714874, y: 0.008686066, z: 0.08068086, w: 0.7664572} + inSlope: {x: -0.6192013, y: 0.037132174, z: -0.08758083, w: 0.52512634} + outSlope: {x: -0.6192013, y: 0.037132174, z: -0.08758083, w: 0.52512634} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.60477316, y: 0.021317033, z: 0.06811821, w: 0.79319286} + inSlope: {x: 0.01970977, y: 0.04150797, z: -0.028975908, w: -0.0137507925} + outSlope: {x: 0.01970977, y: 0.04150797, z: -0.028975908, w: -0.0137507925} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: 0.59991175, y: 0.025252577, z: 0.06453127, w: 0.79705954} + inSlope: {x: -0.08415521, y: -0.017317936, z: 0.0027542938, w: 0.064179905} + outSlope: {x: -0.08415521, y: -0.017317936, z: 0.0027542938, w: 0.064179905} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5666667 + value: {x: 0.62166756, y: 0.014200965, z: 0.0752451, w: 0.77952933} + inSlope: {x: 0.06312657, y: -0.09889978, z: 0.07891223, w: -0.05520782} + outSlope: {x: 0.06312657, y: -0.09889978, z: 0.07891223, w: -0.05520782} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.6195861, y: 0.012515259, z: 0.076248296, w: 0.7811163} + inSlope: {x: -0.15870713, y: 0.10614079, z: -0.095353656, w: 0.13115549} + outSlope: {x: -0.15870713, y: 0.10614079, z: -0.095353656, w: 0.13115549} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6333334 + value: {x: 0.6110871, y: 0.021277027, z: 0.06888818, w: 0.78827304} + inSlope: {x: 0.09498538, y: 0.111274146, z: -0.069704786, w: -0.07166083} + outSlope: {x: 0.09498538, y: 0.111274146, z: -0.069704786, w: -0.07166083} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.62591845, y: 0.019933544, z: 0.0716013, w: 0.77633893} + inSlope: {x: 0.3911171, y: -0.050439492, z: 0.08139029, w: -0.32014495} + outSlope: {x: 0.3911171, y: -0.050439492, z: 0.08139029, w: -0.32014495} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.70000005 + value: {x: 0.63716155, y: 0.017914394, z: 0.0743142, w: 0.76693004} + inSlope: {x: 0.33729288, y: -0.060574453, z: 0.08138687, w: -0.2822665} + outSlope: {x: 0.33729288, y: -0.060574453, z: 0.08138687, w: -0.2822665} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.6245397, y: -0.010364255, z: 0.09081257, w: 0.7756261} + inSlope: {x: -0.015038251, y: -0.00017353332, z: -0.002201423, w: 0.012356042} + outSlope: {x: -0.015038251, y: -0.00017353332, z: -0.002201423, w: 0.012356042} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.62261987, y: -0.010386855, z: 0.09053163, w: 0.7772005} + inSlope: {x: 0.10533572, y: 0.0012281445, z: 0.015416444, w: -0.08617402} + outSlope: {x: 0.10533572, y: 0.0012281445, z: 0.015416444, w: -0.08617402} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5666667 + value: {x: 0.6253025, y: -0.010355394, z: 0.09092428, w: 0.7749983} + inSlope: {x: 0.014486609, y: 0.00017194074, z: 0.0021218506, w: -0.011931358} + outSlope: {x: 0.014486609, y: 0.00017194074, z: 0.0021218506, w: -0.011931358} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.70000005 + value: {x: 0.62453955, y: -0.0103641525, z: 0.09081237, w: 0.7756263} + inSlope: {x: -0.022337418, y: -0.000265287, z: -0.0032718452, w: 0.018385634} + outSlope: {x: -0.022337418, y: -0.000265287, z: -0.0032718452, w: 0.018385634} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.5089334, y: 0.0027392616, z: 0.0690691, w: 0.8580261} + inSlope: {x: -0.015492438, y: 0.000018510034, z: -0.0020831823, w: 0.009351968} + outSlope: {x: -0.015492438, y: 0.000018510034, z: -0.0020831823, w: 0.009351968} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.50692177, y: 0.0027417855, z: 0.06879816, w: 0.85923785} + inSlope: {x: 0.11166752, y: -0.00014802792, z: 0.015038476, w: -0.06708831} + outSlope: {x: 0.11166752, y: -0.00014802792, z: 0.015038476, w: -0.06708831} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5666667 + value: {x: 0.5099432, y: 0.0027378963, z: 0.069204986, w: 0.8574154} + inSlope: {x: 0.019773241, y: -0.000028697534, z: 0.0026636566, w: -0.011968909} + outSlope: {x: 0.019773241, y: -0.000028697534, z: 0.0026636566, w: -0.011968909} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.70000005 + value: {x: 0.5089333, y: 0.0027391738, z: 0.06906897, w: 0.85802615} + inSlope: {x: -0.022264104, y: 0.00003124352, z: -0.0029989306, w: 0.013461102} + outSlope: {x: -0.022264104, y: 0.00003124352, z: -0.0029989306, w: 0.013461102} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2/mixamorig:LeftHandMiddle3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.010558632, y: -0.0028613694, z: -0.0028610497, w: 0.9999361} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.010558632, y: -0.0028613694, z: -0.0028610497, w: 0.9999361} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2/mixamorig:LeftHandMiddle3/mixamorig:LeftHandMiddle4 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.6165683, y: 0.0069644256, z: 0.11706399, w: 0.77851856} + inSlope: {x: -0.25731325, y: 0.081819914, z: -0.15711328, w: 0.2235174} + outSlope: {x: -0.25731325, y: 0.081819914, z: -0.15711328, w: 0.2235174} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: 0.59203327, y: 0.0039845873, z: 0.12689413, w: 0.7958509} + inSlope: {x: -0.018272093, y: -0.11452696, z: 0.273685, w: -0.029810078} + outSlope: {x: -0.018272093, y: -0.11452696, z: 0.273685, w: -0.029810078} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.59379905, y: -0.00029478307, z: 0.1367525, w: 0.7929069} + inSlope: {x: -0.106644645, y: -0.11750439, z: 0.2983057, w: 0.027544502} + outSlope: {x: -0.106644645, y: -0.11750439, z: 0.2983057, w: 0.027544502} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: 0.57710296, y: -0.00024391041, z: 0.13997196, w: 0.8045868} + inSlope: {x: -0.12604143, y: 0.12951645, z: -0.281836, w: 0.13941225} + outSlope: {x: -0.12604143, y: 0.12951645, z: -0.281836, w: 0.13941225} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.5896136, y: 0.010516965, z: 0.11260736, w: 0.7997279} + inSlope: {x: 0.42095038, y: 0.1830574, z: -0.46596915, w: -0.2481294} + outSlope: {x: 0.42095038, y: 0.1830574, z: -0.46596915, w: -0.2481294} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.6069266, y: 0.023659727, z: 0.08446513, w: 0.7899025} + inSlope: {x: -0.12611838, y: 0.26111084, z: -0.512495, w: 0.13826789} + outSlope: {x: -0.12611838, y: 0.26111084, z: -0.512495, w: 0.13826789} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: 0.5961763, y: 0.034396607, z: 0.06276117, w: 0.7996572} + inSlope: {x: -0.31505394, y: 0.20952669, z: -0.39760986, w: 0.2626901} + outSlope: {x: -0.31505394, y: 0.20952669, z: -0.39760986, w: 0.2626901} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: 0.57816917, y: 0.038448863, z: 0.055985563, w: 0.8130853} + inSlope: {x: -0.28709206, y: -0.006980506, z: -0.031612463, w: 0.20573796} + outSlope: {x: -0.28709206, y: -0.006980506, z: -0.031612463, w: 0.20573796} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.5675494, y: 0.033756156, z: 0.059850153, w: 0.82046705} + inSlope: {x: 0.16230662, y: -0.100014165, z: 0.17778721, w: -0.12297115} + outSlope: {x: 0.16230662, y: -0.100014165, z: 0.17778721, w: -0.12297115} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5666667 + value: {x: 0.5875252, y: 0.026812794, z: 0.075967, w: 0.8051859} + inSlope: {x: 0.20062827, y: -0.15347669, z: 0.32111838, w: -0.17158802} + outSlope: {x: 0.20062827, y: -0.15347669, z: 0.32111838, w: -0.17158802} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.5909792, y: 0.02026342, z: 0.08911068, w: 0.80149376} + inSlope: {x: 0.24736214, y: -0.34994814, z: 0.74416614, w: -0.27265805} + outSlope: {x: 0.24736214, y: -0.34994814, z: 0.74416614, w: -0.27265805} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6333334 + value: {x: 0.604016, y: 0.0034829124, z: 0.12557809, w: 0.7870087} + inSlope: {x: 0.37101835, y: -0.23674569, z: 0.49854216, w: -0.34639472} + outSlope: {x: 0.37101835, y: -0.23674569, z: 0.49854216, w: -0.34639472} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.6157138, y: 0.004480362, z: 0.122346856, w: 0.7784008} + inSlope: {x: 0.18828318, y: 0.05222212, z: -0.127709, w: -0.1273523} + outSlope: {x: 0.18828318, y: 0.05222212, z: -0.127709, w: -0.1273523} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.70000005 + value: {x: 0.6165682, y: 0.0069643883, z: 0.117064156, w: 0.77851856} + inSlope: {x: 0.025632957, y: 0.07452073, z: -0.15848087, w: 0.0035333603} + outSlope: {x: 0.025632957, y: 0.07452073, z: -0.15848087, w: 0.0035333603} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.6091193, y: -0.00011285422, z: 0.08098308, w: 0.78893316} + inSlope: {x: 0.04211783, y: 0.0000033040849, z: 0.005601793, w: -0.033157468} + outSlope: {x: 0.04211783, y: 0.0000033040849, z: 0.005601793, w: -0.033157468} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.6041814, y: -0.000113388705, z: 0.08032644, w: 0.7927878} + inSlope: {x: -0.13132006, y: -0.000015438854, z: -0.017459951, w: 0.102427304} + outSlope: {x: -0.13132006, y: -0.000015438854, z: -0.017459951, w: 0.102427304} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.61260664, y: -0.000112337395, z: 0.0814465, w: 0.7861804} + inSlope: {x: -0.020887263, y: -0.0000014961931, z: -0.0027797753, w: 0.01651526} + outSlope: {x: -0.020887263, y: -0.0000014961931, z: -0.0027797753, w: 0.01651526} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5666667 + value: {x: 0.61046803, y: -0.00011284808, z: 0.08116239, w: 0.7878715} + inSlope: {x: -0.13255033, y: -0.000014576545, z: -0.017621782, w: 0.10433169} + outSlope: {x: -0.13255033, y: -0.000014576545, z: -0.017621782, w: 0.10433169} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.70000005 + value: {x: 0.6091193, y: -0.000112884794, z: 0.08098299, w: 0.7889331} + inSlope: {x: 0.10146967, y: 0.000011508081, z: 0.01348703, w: -0.07937365} + outSlope: {x: 0.10146967, y: 0.000011508081, z: 0.01348703, w: -0.07937365} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.5922445, y: -0.000000008774308, z: 0.07865322, w: 0.8019103} + inSlope: {x: 0.04264533, y: 0.00000013411987, z: 0.005659237, w: -0.03210962} + outSlope: {x: 0.04264533, y: 0.00000013411987, z: 0.005659237, w: -0.03210962} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.5871978, y: -0.00000006341184, z: 0.077983, w: 0.8056783} + inSlope: {x: -0.1336366, y: 0.0000015718216, z: -0.017746948, w: 0.09968698} + outSlope: {x: -0.1336366, y: 0.0000015718216, z: -0.017746948, w: 0.09968698} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.59528536, y: 0.000000041211024, z: 0.07905686, w: 0.79961574} + inSlope: {x: -0.02562851, y: 0.0000019865008, z: -0.003403165, w: 0.01936287} + outSlope: {x: -0.02562851, y: 0.0000019865008, z: -0.003403165, w: 0.01936287} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5666667 + value: {x: 0.59355915, y: -0.00000010048136, z: 0.07882779, w: 0.80092055} + inSlope: {x: -0.13304117, y: -0.00000025268173, z: -0.017667044, w: 0.100152805} + outSlope: {x: -0.13304117, y: -0.00000025268173, z: -0.017667044, w: 0.100152805} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.70000005 + value: {x: 0.59224445, y: -0.000000072170145, z: 0.07865321, w: 0.80191034} + inSlope: {x: 0.102960974, y: -0.000004382538, z: 0.013676126, w: -0.077034764} + outSlope: {x: 0.102960974, y: -0.000004382538, z: 0.013676126, w: -0.077034764} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2/mixamorig:LeftHandPinky3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.044519074, y: -0.0000000062030177, z: -0.0000000072115465, w: 0.99900854} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.044519074, y: -0.0000000062030177, z: -0.0000000072115465, w: 0.99900854} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2/mixamorig:LeftHandPinky3/mixamorig:LeftHandPinky4 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.5083196, y: 0.47024333, z: -0.50470173, w: 0.5155177} + inSlope: {x: -0.37553695, y: 0.37400004, z: -0.038627382, w: -0.01781702} + outSlope: {x: -0.37553695, y: 0.37400004, z: -0.038627382, w: -0.01781702} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.49580172, y: 0.48271, z: -0.5059893, w: 0.5149238} + inSlope: {x: -0.3710523, y: 0.3195852, z: 0.4001176, w: 0.4283541} + outSlope: {x: -0.3710523, y: 0.3195852, z: 0.4001176, w: 0.4283541} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: 0.4835828, y: 0.49154902, z: -0.47802722, w: 0.54407465} + inSlope: {x: -0.49352145, y: 0.40194598, z: 0.5669805, w: 0.58625215} + outSlope: {x: -0.49352145, y: 0.40194598, z: 0.5669805, w: 0.58625215} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.4374937, y: 0.5332072, z: -0.47465461, w: 0.546802} + inSlope: {x: -0.6437539, y: 0.5831445, z: -0.1054895, w: -0.13472022} + outSlope: {x: -0.6437539, y: 0.5831445, z: -0.1054895, w: -0.13472022} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.41998336, y: 0.5483827, z: -0.47522324, w: 0.54502594} + inSlope: {x: -0.06846438, y: 0.055533424, z: 0.019860853, w: 0.017349401} + outSlope: {x: -0.06846438, y: 0.055533424, z: 0.019860853, w: 0.017349401} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: 0.4494755, y: 0.5220154, z: -0.47200832, w: 0.5501635} + inSlope: {x: 0.3953125, y: -0.3320736, z: -0.1693234, w: -0.15258731} + outSlope: {x: 0.3953125, y: -0.3320736, z: -0.1693234, w: -0.15258731} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: 0.47168905, y: 0.50472796, z: -0.49726644, w: 0.5248669} + inSlope: {x: 0.40724027, y: -0.3517342, z: -0.27141008, w: -0.28317425} + outSlope: {x: 0.40724027, y: -0.3517342, z: -0.27141008, w: -0.28317425} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.48643294, y: 0.49132222, z: -0.5027128, w: 0.51890785} + inSlope: {x: 0.221411, y: -0.19343422, z: -0.17627703, w: -0.1897225} + outSlope: {x: 0.221411, y: -0.19343422, z: -0.17627703, w: -0.1897225} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: 0.48644978, y: 0.49183235, z: -0.50901824, w: 0.5122187} + inSlope: {x: -0.026381291, y: 0.03598941, z: -0.13887402, w: -0.14663365} + outSlope: {x: -0.026381291, y: 0.03598941, z: -0.13887402, w: -0.14663365} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.4846742, y: 0.49372151, z: -0.51197106, w: 0.50913227} + inSlope: {x: -0.27142033, y: 0.25518045, z: 0.024628088, w: 0.028092608} + outSlope: {x: -0.27142033, y: 0.25518045, z: 0.024628088, w: 0.028092608} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: 0.4683551, y: 0.5088444, z: -0.5073764, w: 0.51409155} + inSlope: {x: -0.49074817, y: 0.4188301, z: 0.45552897, w: 0.46414647} + outSlope: {x: -0.49074817, y: 0.4188301, z: 0.45552897, w: 0.46414647} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: 0.45195764, y: 0.5216435, z: -0.48160246, w: 0.54007536} + inSlope: {x: -0.46275908, y: 0.36275375, z: 0.5720738, w: 0.5629556} + outSlope: {x: -0.46275908, y: 0.36275375, z: 0.5720738, w: 0.5629556} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: 0.42638305, y: 0.54256505, z: -0.47183514, w: 0.5488099} + inSlope: {x: -0.14794204, y: 0.12926985, z: -0.0382058, w: -0.042608645} + outSlope: {x: -0.14794204, y: 0.12926985, z: -0.0382058, w: -0.042608645} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5666667 + value: {x: 0.4276417, y: 0.54164594, z: -0.4717852, w: 0.54878134} + inSlope: {x: 0.34483087, y: -0.28551784, z: -0.1099899, w: -0.093642265} + outSlope: {x: 0.34483087, y: -0.28551784, z: -0.1099899, w: -0.093642265} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6333334 + value: {x: 0.47481927, y: 0.50136214, z: -0.49034074, w: 0.53174126} + inSlope: {x: 0.8766104, y: -0.80142456, z: -0.26897636, w: -0.2864331} + outSlope: {x: 0.8766104, y: -0.80142456, z: -0.26897636, w: -0.2864331} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.50781244, y: 0.47010225, z: -0.49709955, w: 0.52347153} + inSlope: {x: 0.5025056, y: -0.4667826, z: -0.21541491, w: -0.24335328} + outSlope: {x: 0.5025056, y: -0.4667826, z: -0.21541491, w: -0.24335328} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.70000005 + value: {x: 0.5083196, y: 0.47024333, z: -0.50470173, w: 0.5155177} + inSlope: {x: 0.015215265, y: 0.004232522, z: -0.22806536, w: -0.23861448} + outSlope: {x: 0.015215265, y: 0.004232522, z: -0.22806536, w: -0.23861448} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.31419042, y: -0.092630535, z: 0.2281016, w: 0.9168826} + inSlope: {x: -1.2301978, y: -2.5248446, z: 2.6858938, w: -0.7875144} + outSlope: {x: -1.2301978, y: -2.5248446, z: 2.6858938, w: -0.7875144} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.27318382, y: -0.17679203, z: 0.3176314, w: 0.8906321} + inSlope: {x: -0.59989303, y: -1.8682532, z: 1.2143037, w: -0.48749414} + outSlope: {x: -0.59989303, y: -1.8682532, z: 1.2143037, w: -0.48749414} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: 0.27419755, y: -0.21718076, z: 0.30905518, w: 0.88438296} + inSlope: {x: -0.17277536, y: -0.6451749, z: -0.2562797, w: -0.002828844} + outSlope: {x: -0.17277536, y: -0.6451749, z: -0.2562797, w: -0.002828844} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.23814182, y: -0.19082287, z: 0.29458675, w: 0.9055903} + inSlope: {x: -0.47448102, y: 0.94988024, z: -0.1926005, w: 0.38963738} + outSlope: {x: -0.47448102, y: 0.94988024, z: -0.1926005, w: 0.38963738} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.2300334, y: -0.15647835, z: 0.28770605, w: 0.9164193} + inSlope: {x: -0.13638653, y: 1.2189955, z: -0.24546587, w: 0.31140977} + outSlope: {x: -0.13638653, y: 1.2189955, z: -0.24546587, w: 0.31140977} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: 0.22904938, y: -0.10955649, z: 0.27822235, w: 0.92635095} + inSlope: {x: 0.5409712, y: 1.00437, z: -0.32759023, w: 0.087035835} + outSlope: {x: 0.5409712, y: 1.00437, z: -0.32759023, w: 0.087035835} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.31538594, y: -0.06848675, z: 0.25839233, w: 0.9105354} + inSlope: {x: 1.3222079, y: 1.0014404, z: -0.2728017, w: -0.3112856} + outSlope: {x: 1.3222079, y: 1.0014404, z: -0.2728017, w: -0.3112856} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: 0.35424533, y: -0.022757638, z: 0.24767992, w: 0.90146935} + inSlope: {x: 0.9982619, y: 0.91224694, z: -0.7655186, w: -0.14913173} + outSlope: {x: 0.9982619, y: 0.91224694, z: -0.7655186, w: -0.14913173} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.38193673, y: -0.007670287, z: 0.20735776, w: 0.9005933} + inSlope: {x: 0.59079236, y: 0.9787396, z: -1.2686738, w: 0.033235256} + outSlope: {x: 0.59079236, y: 0.9787396, z: -1.2686738, w: 0.033235256} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: 0.3936315, y: 0.042491663, z: 0.16310167, w: 0.90368503} + inSlope: {x: -0.12544174, y: 2.4275746, z: -1.3379793, w: 0.09663191} + outSlope: {x: -0.12544174, y: 2.4275746, z: -1.3379793, w: 0.09663191} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.37357393, y: 0.15416811, z: 0.118159115, w: 0.9070354} + inSlope: {x: -0.7110735, y: 3.2127266, z: -0.707556, w: -0.13211226} + outSlope: {x: -0.7110735, y: 3.2127266, z: -0.707556, w: -0.13211226} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: 0.34622657, y: 0.2566735, z: 0.115931235, w: 0.89487755} + inSlope: {x: -0.59104985, y: 2.5273695, z: -0.08612451, w: -0.42955938} + outSlope: {x: -0.59104985, y: 2.5273695, z: -0.08612451, w: -0.42955938} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.33256152, y: 0.35709733, z: 0.10872626, w: 0.86606175} + inSlope: {x: 0.06513735, y: 0.6482036, z: 0.08266987, w: -0.29308775} + outSlope: {x: 0.06513735, y: 0.6482036, z: 0.08266987, w: -0.29308775} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: 0.3385131, y: 0.36587295, z: 0.11792882, w: 0.85885894} + inSlope: {x: 0.45401895, y: -0.47242916, z: 0.040636323, w: -0.0012347102} + outSlope: {x: 0.45401895, y: -0.47242916, z: 0.040636323, w: -0.0012347102} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5666667 + value: {x: 0.36282948, y: 0.32560202, z: 0.111435354, w: 0.86597943} + inSlope: {x: 0.45471022, y: -1.6790066, z: -0.228349, w: 0.44040197} + outSlope: {x: 0.45471022, y: -1.6790066, z: -0.228349, w: 0.44040197} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.36882713, y: 0.2539392, z: 0.10270555, w: 0.88821906} + inSlope: {x: 0.101896755, y: -2.3650856, z: -0.22770014, w: 0.64227736} + outSlope: {x: 0.101896755, y: -2.3650856, z: -0.22770014, w: 0.64227736} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6333334 + value: {x: 0.3696226, y: 0.16792963, z: 0.09625535, w: 0.9087979} + inSlope: {x: -0.25081852, y: -2.9706318, z: 0.19585392, w: 0.58306575} + outSlope: {x: -0.25081852, y: -2.9706318, z: 0.19585392, w: 0.58306575} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.35210592, y: 0.055897124, z: 0.11576246, w: 0.9270901} + inSlope: {x: -0.8314779, y: -3.908408, z: 1.9776933, w: 0.12126754} + outSlope: {x: -0.8314779, y: -3.908408, z: 1.9776933, w: 0.12126754} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.70000005 + value: {x: 0.31419072, y: -0.09263091, z: 0.22810164, w: 0.9168824} + inSlope: {x: -1.1374551, y: -4.4558372, z: 3.3701727, w: -0.3062311} + outSlope: {x: -1.1374551, y: -4.4558372, z: 3.3701727, w: -0.3062311} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.055211768, y: -0.19844408, z: 0.6804387, w: 0.7032601} + inSlope: {x: -0.21399221, y: 0.71156275, z: -2.6372783, w: 2.4492035} + outSlope: {x: -0.21399221, y: 0.71156275, z: -2.6372783, w: 2.4492035} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.048078693, y: -0.17472532, z: 0.5925294, w: 0.78490025} + inSlope: {x: -0.118147664, y: 0.39303657, z: -1.4560585, w: 1.335925} + outSlope: {x: -0.118147664, y: 0.39303657, z: -1.4560585, w: 1.335925} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: 0.047335256, y: -0.17224164, z: 0.5833681, w: 0.7923218} + inSlope: {x: 0.022518817, y: -0.075142965, z: 0.27747536, w: -0.23342097} + outSlope: {x: 0.022518817, y: -0.075142965, z: 0.27747536, w: -0.23342097} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.05188508, y: -0.18741044, z: 0.6394407, w: 0.74384195} + inSlope: {x: 0.059104882, y: -0.19656682, z: 0.72840846, w: -0.67267036} + outSlope: {x: 0.059104882, y: -0.19656682, z: 0.72840846, w: -0.67267036} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.053520273, y: -0.19283931, z: 0.65958834, w: 0.72449416} + inSlope: {x: 0.04094576, y: -0.13585186, z: 0.5045646, w: -0.49407983} + outSlope: {x: 0.04094576, y: -0.13585186, z: 0.5045646, w: -0.49407983} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: 0.054614797, y: -0.19646724, z: 0.67307836, w: 0.7109033} + inSlope: {x: -0.016307002, y: 0.054124102, z: -0.20095299, w: 0.19480984} + outSlope: {x: -0.016307002, y: 0.054124102, z: -0.20095299, w: 0.19480984} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: 0.05243314, y: -0.18923104, z: 0.6461915, w: 0.7374815} + inSlope: {x: -0.057006896, y: 0.1892844, z: -0.7025126, w: 0.6754581} + outSlope: {x: -0.057006896, y: 0.1892844, z: -0.7025126, w: 0.6754581} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: 0.04949569, y: -0.17945467, z: 0.60999274, w: 0.77023053} + inSlope: {x: -0.04614305, y: 0.15390182, z: -0.5686695, w: 0.48583305} + outSlope: {x: -0.04614305, y: 0.15390182, z: -0.5686695, w: 0.48583305} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.047738135, y: -0.17358816, z: 0.5883329, w: 0.7883227} + inSlope: {x: 0.009037705, y: -0.030116737, z: 0.11136174, w: -0.09677678} + outSlope: {x: 0.009037705, y: -0.030116737, z: 0.11136174, w: -0.09677678} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: 0.050098203, y: -0.18146245, z: 0.61741686, w: 0.76377875} + inSlope: {x: 0.13603956, y: -0.45191038, z: 1.6765039, w: -1.5947386} + outSlope: {x: 0.13603956, y: -0.45191038, z: 1.6765039, w: -1.5947386} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.056807443, y: -0.20371553, z: 0.7000999, w: 0.6820067} + inSlope: {x: 0.15706623, y: -0.5193465, z: 1.935701, w: -2.060041} + outSlope: {x: 0.15706623, y: -0.5193465, z: 1.935701, w: -2.060041} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: 0.06281716, y: -0.22342835, z: 0.77416617, w: 0.5888978} + inSlope: {x: 0.046656873, y: -0.15223105, z: 0.5749907, w: -0.79472363} + outSlope: {x: 0.046656873, y: -0.15223105, z: 0.5749907, w: -0.79472363} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: 0.062841624, y: -0.22350834, z: 0.774469, w: 0.5884664} + inSlope: {x: -0.038136903, y: 0.12434018, z: -0.4699682, w: 0.6575019} + outSlope: {x: -0.038136903, y: 0.12434018, z: -0.4699682, w: 0.6575019} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.059854906, y: -0.21374363, z: 0.73765814, w: 0.6376453} + inSlope: {x: -0.022280904, y: 0.07300956, z: -0.27461636, w: 0.35209742} + outSlope: {x: -0.022280904, y: 0.07300956, z: -0.27461636, w: 0.35209742} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6333334 + value: {x: 0.059651893, y: -0.21307765, z: 0.7351574, w: 0.6407677} + inSlope: {x: -0.0069399932, y: 0.0227733, z: -0.085497215, w: 0.10619135} + outSlope: {x: -0.0069399932, y: 0.0227733, z: -0.085497215, w: 0.10619135} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.05939224, y: -0.2122254, z: 0.7319583, w: 0.6447247} + inSlope: {x: -0.06660317, y: 0.21950445, z: -0.82078487, w: 0.93739116} + outSlope: {x: -0.06660317, y: 0.21950445, z: -0.82078487, w: 0.93739116} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.70000005 + value: {x: 0.05521168, y: -0.19844401, z: 0.68043834, w: 0.7032605} + inSlope: {x: -0.12541674, y: 0.4134416, z: -1.5455984, w: 1.7560712} + outSlope: {x: -0.12541674, y: 0.4134416, z: -1.5455984, w: 1.7560712} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.09563199, y: 0.07698431, z: 0.101718985, w: 0.9872088} + inSlope: {x: -1.7993861, y: -1.6529944, z: 1.4439428, w: -0.33203778} + outSlope: {x: -1.7993861, y: -1.6529944, z: 1.4439428, w: -0.33203778} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: -0.15561153, y: 0.021884495, z: 0.14985041, w: 0.97614086} + inSlope: {x: -0.83182645, y: -1.2142267, z: 1.3149061, w: -0.25509772} + outSlope: {x: -0.83182645, y: -1.2142267, z: 1.3149061, w: -0.25509772} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: -0.15108709, y: -0.003964139, z: 0.1893794, w: 0.97020227} + inSlope: {x: -0.24999368, y: -0.36672232, z: -0.0061390996, w: -0.0374642} + outSlope: {x: -0.24999368, y: -0.36672232, z: -0.0061390996, w: -0.0374642} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: -0.17227778, y: -0.002563661, z: 0.14944114, w: 0.97364324} + inSlope: {x: -0.56988424, y: 0.2660956, z: -0.85844696, w: 0.04093855} + outSlope: {x: -0.56988424, y: 0.2660956, z: -0.85844696, w: 0.04093855} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: -0.18907937, y: 0.013775567, z: 0.13214959, w: 0.9729315} + inSlope: {x: -0.14360482, y: 0.5832237, z: -0.6204682, w: 0.0457567} + outSlope: {x: -0.14360482, y: 0.5832237, z: -0.6204682, w: 0.0457567} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.18185143, y: 0.03631792, z: 0.108076595, w: 0.9766937} + inSlope: {x: -0.7586457, y: 0.37452543, z: -0.7916038, w: -0.09149724} + outSlope: {x: -0.7586457, y: 0.37452543, z: -0.7916038, w: -0.09149724} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: -0.23965578, y: 0.038743928, z: 0.079376, w: 0.9668317} + inSlope: {x: 0.09373045, y: -0.36145037, z: 0.26285857, w: -0.0053124875} + outSlope: {x: 0.09373045, y: -0.36145037, z: 0.26285857, w: -0.0053124875} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: -0.17560276, y: 0.01222123, z: 0.12560049, w: 0.9763395} + inSlope: {x: 2.396471, y: -0.03938943, z: 0.44317558, w: 0.35016957} + outSlope: {x: 2.396471, y: -0.03938943, z: 0.44317558, w: 0.35016957} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.079891056, y: 0.036117967, z: 0.108921036, w: 0.9901763} + inSlope: {x: 0.5629868, y: 1.3186059, z: -0.23584956, w: 0.04294753} + outSlope: {x: 0.5629868, y: 1.3186059, z: -0.23584956, w: 0.04294753} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: -0.13807032, y: 0.100128286, z: 0.109877184, w: 0.9792027} + inSlope: {x: -0.99937797, y: 1.433032, z: -0.24840823, w: -0.21192314} + outSlope: {x: -0.99937797, y: 1.433032, z: -0.24840823, w: -0.21192314} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.14651625, y: 0.13165343, z: 0.09236049, w: 0.9760481} + inSlope: {x: 1.9858692, y: 0.72940433, z: -0.8273835, w: 0.12209953} + outSlope: {x: 1.9858692, y: 0.72940433, z: -0.8273835, w: 0.12209953} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: -0.0056790444, y: 0.14875524, z: 0.054718286, w: 0.98734266} + inSlope: {x: 2.0727608, y: 0.7124797, z: -1.1831942, w: 0.11468506} + outSlope: {x: 2.0727608, y: 0.7124797, z: -1.1831942, w: 0.11468506} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: -0.008332207, y: 0.1791521, z: 0.013480847, w: 0.9836938} + inSlope: {x: -0.5902806, y: 0.5061045, z: -0.8987838, w: -0.077722326} + outSlope: {x: -0.5902806, y: 0.5061045, z: -0.8987838, w: -0.077722326} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: -0.045031082, y: 0.18249556, z: -0.0052006664, w: 0.98216116} + inSlope: {x: -1.1889658, y: 0.31832862, z: -0.289038, w: -0.11872978} + outSlope: {x: -1.1889658, y: 0.31832862, z: -0.289038, w: -0.11872978} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: -0.08759659, y: 0.200374, z: -0.005788352, w: 0.97577846} + inSlope: {x: -0.97100824, y: 0.45680454, z: 0.02755118, w: -0.1693333} + outSlope: {x: -0.97100824, y: 0.45680454, z: 0.02755118, w: -0.1693333} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.10976494, y: 0.21294919, z: -0.0033639234, w: 0.9708723} + inSlope: {x: -0.33623365, y: 0.26200837, z: 0.50806355, w: -0.096314594} + outSlope: {x: -0.33623365, y: 0.26200837, z: 0.50806355, w: -0.096314594} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: -0.110012144, y: 0.21784122, z: 0.028082578, w: 0.9693575} + inSlope: {x: 0.22053674, y: -0.14066677, z: 1.0209297, w: 0.021174233} + outSlope: {x: 0.22053674, y: -0.14066677, z: 1.0209297, w: 0.021174233} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.092151426, y: 0.18339457, z: 0.09618995, w: 0.9739723} + inSlope: {x: -0.14702497, y: -0.6455735, z: 0.6215637, w: 0.05106747} + outSlope: {x: -0.14702497, y: -0.6455735, z: 0.6215637, w: 0.05106747} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.11713556, y: 0.12656142, z: 0.10418489, w: 0.97949326} + inSlope: {x: 0.13848859, y: -1.2532284, z: -0.066249, w: 0.17280574} + outSlope: {x: 0.13848859, y: -1.2532284, z: -0.066249, w: 0.17280574} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.70000005 + value: {x: -0.095631555, y: 0.076984584, z: 0.101719074, w: 0.9872088} + inSlope: {x: 0.64511967, y: -1.4873037, z: -0.07397437, w: 0.2314655} + outSlope: {x: 0.64511967, y: -1.4873037, z: -0.07397437, w: 0.2314655} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.18862091, y: 0.22712052, z: 0.3112186, w: 0.9033169} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.18862091, y: 0.22712052, z: 0.3112186, w: 0.9033169} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.059422098, y: 0.17806172, z: -0.17495519, w: 0.9665163} + inSlope: {x: 0.944566, y: -0.8327852, z: -0.032839626, w: 0.17764448} + outSlope: {x: 0.944566, y: -0.8327852, z: -0.032839626, w: 0.17764448} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: 0.012031281, y: 0.117384516, z: -0.17388567, w: 0.97767067} + inSlope: {x: 1.1121461, y: -0.8997589, z: 0.10244718, w: 0.118575975} + outSlope: {x: 1.1121461, y: -0.8997589, z: 0.10244718, w: 0.118575975} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: 0.04620652, y: 0.090318285, z: -0.16922003, w: 0.98034286} + inSlope: {x: 0.6378342, y: -0.51735514, z: 0.08977397, w: 0.04688769} + outSlope: {x: 0.6378342, y: -0.51735514, z: 0.08977397, w: 0.04688769} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.05772082, y: 0.0793157, z: -0.16752923, w: 0.9809747} + inSlope: {x: 0.013102163, y: -0.04719571, z: -0.005444879, w: 0.0022459035} + outSlope: {x: 0.013102163, y: -0.04719571, z: -0.005444879, w: 0.0022459035} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: 0.05542704, y: 0.07974779, z: -0.16826373, w: 0.98094624} + inSlope: {x: -0.50888705, y: 0.34009013, z: -0.09415224, w: -0.026688876} + outSlope: {x: -0.50888705, y: 0.34009013, z: -0.09415224, w: -0.026688876} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: 0.023795018, y: 0.101988375, z: -0.17380604, w: 0.9791954} + inSlope: {x: -0.8095591, y: 0.5699166, z: -0.123322845, w: -0.055673722} + outSlope: {x: -0.8095591, y: 0.5699166, z: -0.123322845, w: -0.055673722} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: -0.009697556, y: 0.12511256, z: -0.17753795, w: 0.9760805} + inSlope: {x: 0.109660104, y: 0.0073895976, z: 0.0337518, w: 0.0045901537} + outSlope: {x: 0.109660104, y: 0.0073895976, z: 0.0337518, w: 0.0045901537} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: 0.044691335, y: 0.11282883, z: -0.16501625, w: 0.9787962} + inSlope: {x: 0.8812866, y: -0.119771555, z: 0.2480068, w: 0.02170086} + outSlope: {x: 0.8812866, y: -0.119771555, z: 0.2480068, w: 0.02170086} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.06751957, y: 0.11025009, z: -0.15770134, w: 0.9789874} + inSlope: {x: 0.75745857, y: -0.27003035, z: 0.22000363, w: 0.00995904} + outSlope: {x: 0.75745857, y: -0.27003035, z: 0.22000363, w: 0.00995904} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: 0.09518859, y: 0.0948268, z: -0.15034933, w: 0.9794601} + inSlope: {x: 0.72278404, y: -0.569376, z: -0.4710449, w: -0.09831727} + outSlope: {x: 0.72278404, y: -0.569376, z: -0.4710449, w: -0.09831727} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: 0.11570517, y: 0.072291695, z: -0.18910433, w: 0.9724329} + inSlope: {x: 0.31088436, y: -0.26608402, z: -0.60676134, w: -0.116280034} + outSlope: {x: 0.31088436, y: -0.26608402, z: -0.60676134, w: -0.116280034} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.11591421, y: 0.077087864, z: -0.19080009, w: 0.9717081} + inSlope: {x: -0.35719025, y: 0.3688599, z: 0.51510435, w: 0.09679546} + outSlope: {x: -0.35719025, y: 0.3688599, z: 0.51510435, w: 0.09679546} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: 0.091892466, y: 0.096882366, z: -0.15476401, w: 0.97888595} + inSlope: {x: -0.7576932, y: 0.41460446, z: 0.46761099, w: 0.11576047} + outSlope: {x: -0.7576932, y: 0.41460446, z: 0.46761099, w: 0.11576047} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5666667 + value: {x: 0.06540129, y: 0.104728185, z: -0.15962599, w: 0.9794255} + inSlope: {x: -1.1569427, y: 0.37318507, z: -0.26258057, w: -0.022528805} + outSlope: {x: -1.1569427, y: 0.37318507, z: -0.26258057, w: -0.022528805} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.014762975, y: 0.12176136, z: -0.17226937, w: 0.97738403} + inSlope: {x: -2.2185607, y: 1.4490047, z: -0.1872861, w: -0.28015476} + outSlope: {x: -2.2185607, y: 1.4490047, z: -0.1872861, w: -0.28015476} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6333334 + value: {x: -0.08250278, y: 0.20132855, z: -0.17211172, w: 0.9607485} + inSlope: {x: -1.6240911, y: 1.3242856, z: 0.022613497, w: -0.28909636} + outSlope: {x: -1.6240911, y: 1.3242856, z: 0.022613497, w: -0.28909636} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.093509845, y: 0.21004713, z: -0.17076181, w: 0.9581109} + inSlope: {x: 0.34620923, y: -0.34900227, z: -0.04265443, w: 0.0865163} + outSlope: {x: 0.34620923, y: -0.34900227, z: -0.04265443, w: 0.0865163} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.70000005 + value: {x: -0.059422128, y: 0.1780617, z: -0.17495535, w: 0.96651626} + inSlope: {x: 1.0226307, y: -0.9595622, z: -0.12580623, w: 0.25215963} + outSlope: {x: 1.0226307, y: -0.9595622, z: -0.12580623, w: 0.25215963} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.23080313, y: 0.045192383, z: 0.015911102, w: 0.9718202} + inSlope: {x: 0.5767585, y: -0.4327259, z: 0.34664527, w: 0.14011145} + outSlope: {x: 0.5767585, y: -0.4327259, z: 0.34664527, w: 0.14011145} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: -0.19950972, y: 0.021509552, z: 0.035268575, w: 0.9790247} + inSlope: {x: 0.23871814, y: -0.18161951, z: 0.15146515, w: 0.049248032} + outSlope: {x: 0.23871814, y: -0.18161951, z: 0.15146515, w: 0.049248032} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: -0.18849358, y: 0.012985112, z: 0.04251825, w: 0.98106766} + inSlope: {x: 0.22441798, y: -0.17545871, z: 0.1496341, w: 0.038848225} + outSlope: {x: 0.22441798, y: -0.17545871, z: 0.1496341, w: 0.038848225} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: -0.16880788, y: -0.0030429836, z: 0.056703534, w: 0.9840119} + inSlope: {x: 0.15962967, y: -0.106700055, z: 0.06641072, w: 0.022871198} + outSlope: {x: 0.15962967, y: -0.106700055, z: 0.06641072, w: 0.022871198} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5666667 + value: {x: -0.15830486, y: -0.008004234, z: 0.056403805, w: 0.9857455} + inSlope: {x: -0.06554203, y: 0.02107994, z: 0.023190482, w: -0.011717679} + outSlope: {x: -0.06554203, y: 0.02107994, z: 0.023190482, w: -0.011717679} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.1610207, y: -0.006851483, z: 0.056779202, w: 0.9852926} + inSlope: {x: -0.8848576, y: 0.6361755, z: -0.46016738, w: -0.15878217} + outSlope: {x: -0.8848576, y: 0.6361755, z: -0.46016738, w: -0.15878217} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6333334 + value: {x: -0.21729541, y: 0.034407496, z: 0.025725953, w: 0.97516} + inSlope: {x: -1.3435943, y: 0.8389514, z: -0.28088707, w: -0.28791368} + outSlope: {x: -1.3435943, y: 0.8389514, z: -0.28088707, w: -0.28791368} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.25059366, y: 0.04907863, z: 0.03805336, w: 0.96609837} + inSlope: {x: -0.20261478, y: 0.161772, z: -0.1472187, w: -0.050097615} + outSlope: {x: -0.20261478, y: 0.161772, z: -0.1472187, w: -0.050097615} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.70000005 + value: {x: -0.23080301, y: 0.04519228, z: 0.015911343, w: 0.9718202} + inSlope: {x: 0.593719, y: -0.11659039, z: -0.66425997, w: 0.17165408} + outSlope: {x: 0.593719, y: -0.11659039, z: -0.66425997, w: 0.17165408} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2/mixamorig:RightHandThumb3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.020066934, y: -0.04093237, z: -0.01450447, w: 0.9988551} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.020066934, y: -0.04093237, z: -0.01450447, w: 0.9988551} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2/mixamorig:RightHandThumb3/mixamorig:RightHandThumb4 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.5924312, y: -0.058730055, z: 0.000007990887, w: 0.80347747} + inSlope: {x: 0.36403832, y: 0.03613941, z: -0.13925934, w: -0.27047038} + outSlope: {x: 0.36403832, y: 0.03613941, z: -0.13925934, w: -0.27047038} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.6045658, y: -0.057525408, z: -0.0046339873, w: 0.7944618} + inSlope: {x: -0.056026876, y: 0.048989203, z: -0.069189504, w: 0.044382498} + outSlope: {x: -0.056026876, y: 0.048989203, z: -0.069189504, w: 0.044382498} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: 0.57076776, y: -0.05462216, z: -0.0022562628, w: 0.8192896} + inSlope: {x: -0.2255067, y: 0.020843446, z: 0.011802275, w: 0.16289857} + outSlope: {x: -0.2255067, y: 0.020843446, z: 0.011802275, w: 0.16289857} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.5715462, y: -0.053369507, z: -0.004609218, w: 0.8188195} + inSlope: {x: -0.2125024, y: 0.010893569, z: 0.024971657, w: 0.14723624} + outSlope: {x: -0.2125024, y: 0.010893569, z: 0.024971657, w: 0.14723624} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: 0.54977137, y: -0.05322139, z: -0.0003486352, w: 0.8336179} + inSlope: {x: -0.026042469, y: 0.005164147, z: -0.0013292581, w: 0.01790464} + outSlope: {x: -0.026042469, y: 0.005164147, z: -0.0013292581, w: 0.01790464} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: 0.57100403, y: -0.052651722, z: -0.00533384, w: 0.81923974} + inSlope: {x: 0.28430972, y: 0.016154332, z: -0.077931, w: -0.19567253} + outSlope: {x: 0.28430972, y: 0.016154332, z: -0.077931, w: -0.19567253} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: 0.5903179, y: -0.05178572, z: -0.010125746, w: 0.8054443} + inSlope: {x: 0.5682534, y: 0.0039667063, z: -0.11345789, w: -0.42383796} + outSlope: {x: 0.5682534, y: 0.0039667063, z: -0.11345789, w: -0.42383796} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.61459684, y: -0.051662628, z: -0.015000925, w: 0.7870049} + inSlope: {x: 0.49039423, y: 0.03434256, z: -0.14934185, w: -0.37585503} + outSlope: {x: 0.49039423, y: 0.03434256, z: -0.14934185, w: -0.37585503} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: 0.619776, y: -0.04568628, z: -0.025488174, w: 0.7830331} + inSlope: {x: -0.46983132, y: 0.051510707, z: -0.0032776147, w: 0.36309183} + outSlope: {x: -0.46983132, y: 0.051510707, z: -0.0032776147, w: 0.36309183} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.5916888, y: -0.046062168, z: -0.020300386, w: 0.8045934} + inSlope: {x: -0.39322388, y: -0.038401894, z: 0.12679714, w: 0.30191603} + outSlope: {x: -0.39322388, y: -0.038401894, z: 0.12679714, w: 0.30191603} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.60367495, y: -0.048967678, z: -0.017705493, w: 0.7955283} + inSlope: {x: -0.39908817, y: -0.07063373, z: 0.19158708, w: 0.28981066} + outSlope: {x: -0.39908817, y: -0.07063373, z: 0.19158708, w: 0.28981066} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6333334 + value: {x: 0.5759017, y: -0.05376319, z: -0.0045500593, w: 0.8157366} + inSlope: {x: -0.4718879, y: -0.1266938, z: 0.30111122, w: 0.33838907} + outSlope: {x: -0.4718879, y: -0.1266938, z: 0.30111122, w: 0.33838907} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.70000005 + value: {x: 0.5924312, y: -0.05873013, z: 0.00000825339, w: 0.80347747} + inSlope: {x: 0.6064631, y: -0.039485883, z: -0.07081013, w: -0.438303} + outSlope: {x: 0.6064631, y: -0.039485883, z: -0.07081013, w: -0.438303} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.6058364, y: 0.00414341, z: -0.07093939, w: 0.7924094} + inSlope: {x: -0.047814842, y: 0.00018712597, z: 0.005592629, w: 0.036978718} + outSlope: {x: -0.047814842, y: 0.00018712597, z: 0.005592629, w: 0.036978718} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.5880221, y: 0.0042138277, z: -0.06885357, w: 0.8058979} + inSlope: {x: -0.02363384, y: 0.0000920822, z: 0.0027641284, w: 0.017481746} + outSlope: {x: -0.02363384, y: 0.0000920822, z: 0.0027641284, w: 0.017481746} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.583751, y: 0.0042302087, z: -0.06835331, w: 0.80903935} + inSlope: {x: 0.0117623815, y: -0.000049020167, z: -0.0013806672, w: -0.008594693} + outSlope: {x: 0.0117623815, y: -0.000049020167, z: -0.0013806672, w: -0.008594693} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.5756889, y: 0.004260861, z: -0.06740949, w: 0.8148743} + inSlope: {x: -0.0030979489, y: 0.0000126217365, z: 0.00036232144, w: 0.002219079} + outSlope: {x: -0.0030979489, y: 0.0000126217365, z: 0.00036232144, w: 0.002219079} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: 0.5759055, y: 0.004259866, z: -0.06743465, w: 0.81471914} + inSlope: {x: 0.2912528, y: -0.0010924335, z: -0.034107387, w: -0.20958495} + outSlope: {x: 0.2912528, y: -0.0010924335, z: -0.034107387, w: -0.20958495} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.6057944, y: 0.004143519, z: -0.07093467, w: 0.79244196} + inSlope: {x: -0.0064551905, y: 0.000024950163, z: 0.0007599601, w: 0.0050067957} + outSlope: {x: -0.0064551905, y: 0.000024950163, z: 0.0007599601, w: 0.0050067957} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.70000005 + value: {x: 0.6058363, y: 0.0041432227, z: -0.07093936, w: 0.79240954} + inSlope: {x: 0.0012552728, y: -0.00000888481, z: -0.00014081586, w: -0.000972747} + outSlope: {x: 0.0012552728, y: -0.00000888481, z: -0.00014081586, w: -0.000972747} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.46734324, y: -0.00000013988748, z: -0.052247133, w: 0.88253075} + inSlope: {x: -0.053272244, y: 0.0000038525695, z: 0.0059509273, w: 0.028493999} + outSlope: {x: -0.053272244, y: 0.0000038525695, z: 0.0059509273, w: 0.028493999} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.4475439, y: 0.00000003421775, z: -0.050033692, w: 0.8928612} + inSlope: {x: -0.02620742, y: -0.0000001940681, z: 0.0029303136, w: 0.0133019695} + outSlope: {x: -0.02620742, y: -0.0000001940681, z: 0.0029303136, w: 0.0133019695} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.44281217, y: -0.00000003300812, z: -0.049504843, w: 0.8952467} + inSlope: {x: 0.013017655, y: 0.0000032088333, z: -0.0014577807, w: -0.00651151} + outSlope: {x: 0.013017655, y: 0.0000032088333, z: -0.0014577807, w: -0.00651151} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.43389574, y: -0.000000028921427, z: -0.048507925, w: 0.89965636} + inSlope: {x: -0.0034287544, y: -0.0000003141494, z: 0.0003859025, w: 0.0016754852} + outSlope: {x: -0.0034287544, y: -0.0000003141494, z: 0.0003859025, w: 0.0016754852} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: 0.434135, y: 0.00000005968737, z: -0.04853491, w: 0.8995395} + inSlope: {x: 0.3219104, y: 0.0000011664571, z: -0.035988174, w: -0.15810537} + outSlope: {x: 0.3219104, y: 0.0000011664571, z: -0.035988174, w: -0.15810537} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.46729678, y: -0.000000070534696, z: -0.05224184, w: 0.8825557} + inSlope: {x: -0.0071950336, y: 0.00000029437683, z: 0.00080533413, w: 0.0038614913} + outSlope: {x: -0.0071950336, y: 0.00000029437683, z: 0.00080533413, w: 0.0038614913} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.70000005 + value: {x: 0.46734324, y: -0.000000016739564, z: -0.05224712, w: 0.8825308} + inSlope: {x: 0.0013938535, y: 0.0000016138526, z: -0.00015836196, w: -0.0007474416} + outSlope: {x: 0.0013938535, y: 0.0000016138526, z: -0.00015836196, w: -0.0007474416} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2/mixamorig:RightHandIndex3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.044488493, y: 0.0000000029317504, z: 0.0000000168001, w: 0.9990099} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.044488493, y: 0.0000000029317504, z: 0.0000000168001, w: 0.9990099} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2/mixamorig:RightHandIndex3/mixamorig:RightHandIndex4 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.602624, y: -0.065225996, z: -0.020414077, w: 0.7950932} + inSlope: {x: 0.078974955, y: 0.1479788, z: -0.12817763, w: -0.05199909} + outSlope: {x: 0.078974955, y: 0.1479788, z: -0.12817763, w: -0.05199909} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: 0.59487134, y: -0.0613277, z: -0.02205842, w: 0.8011744} + inSlope: {x: -0.37218148, y: -0.010136738, z: 0.07319899, w: 0.2761906} + outSlope: {x: -0.37218148, y: -0.010136738, z: 0.07319899, w: 0.2761906} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.57507706, y: -0.058355, z: -0.02103308, w: 0.81574434} + inSlope: {x: -0.21019492, y: 0.08171708, z: -0.03236281, w: 0.1525578} + outSlope: {x: -0.21019492, y: 0.08171708, z: -0.03236281, w: 0.1525578} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.5483963, y: -0.053095512, z: -0.021156173, w: 0.8342631} + inSlope: {x: 0.21574262, y: 0.0025562572, z: -0.036592375, w: -0.14359654} + outSlope: {x: 0.21574262, y: 0.0025562572, z: -0.036592375, w: -0.14359654} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: 0.5858487, y: -0.059150204, z: -0.022223976, w: 0.80795336} + inSlope: {x: 0.5426589, y: -0.029501744, z: -0.067380145, w: -0.399463} + outSlope: {x: 0.5426589, y: -0.029501744, z: -0.067380145, w: -0.399463} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: 0.6142807, y: -0.061228935, z: -0.025563365, w: 0.786293} + inSlope: {x: -0.44822165, y: 0.010472769, z: 0.069404244, w: 0.34201592} + outSlope: {x: -0.44822165, y: 0.010472769, z: 0.069404244, w: 0.34201592} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.58700496, y: -0.059125356, z: -0.022442678, w: 0.8071095} + inSlope: {x: -0.39344648, y: 0.03857734, z: 0.038481873, w: 0.30109793} + outSlope: {x: -0.39344648, y: 0.03857734, z: 0.038481873, w: 0.30109793} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.59234005, y: -0.06059748, z: -0.022191428, w: 0.8030995} + inSlope: {x: -0.28160667, y: -0.10324553, z: 0.1338651, w: 0.19795848} + outSlope: {x: -0.28160667, y: -0.10324553, z: 0.1338651, w: 0.19795848} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6333334 + value: {x: 0.5732753, y: -0.06500662, z: -0.015180817, w: 0.8166389} + inSlope: {x: -0.080565974, y: -0.109885395, z: 0.102608964, w: 0.052643403} + outSlope: {x: -0.080565974, y: -0.109885395, z: 0.102608964, w: 0.052643403} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.58696896, y: -0.06792317, z: -0.015350824, w: 0.8066091} + inSlope: {x: 0.44023007, y: -0.003294386, z: -0.078498244, w: -0.32318562} + outSlope: {x: 0.44023007, y: -0.003294386, z: -0.078498244, w: -0.32318562} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.70000005 + value: {x: 0.602624, y: -0.06522624, z: -0.020414038, w: 0.7950932} + inSlope: {x: 0.46965083, y: 0.080907874, z: -0.15189627, w: -0.34547716} + outSlope: {x: 0.46965083, y: 0.080907874, z: -0.15189627, w: -0.34547716} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.63114107, y: 0.010306526, z: -0.07838521, w: 0.77162856} + inSlope: {x: -0.085519545, y: 0.0010085665, z: 0.010696649, w: 0.07075131} + outSlope: {x: -0.085519545, y: 0.0010085665, z: 0.010696649, w: 0.07075131} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.6047919, y: 0.010608482, z: -0.07508889, w: 0.7927647} + inSlope: {x: -0.07968754, y: 0.00088394166, z: 0.009967648, w: 0.061870523} + outSlope: {x: -0.07968754, y: 0.00088394166, z: 0.009967648, w: 0.061870523} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: 0.6053293, y: 0.0106023885, z: -0.07515602, w: 0.79234815} + inSlope: {x: -0.06446334, y: 0.0007141384, z: 0.008066635, w: 0.05009117} + outSlope: {x: -0.06446334, y: 0.0007141384, z: 0.008066635, w: 0.05009117} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.6331999, y: 0.010282192, z: -0.07864278, w: 0.769914} + inSlope: {x: -0.038523655, y: 0.0004546901, z: 0.0048212684, w: 0.032101557} + outSlope: {x: -0.038523655, y: 0.0004546901, z: 0.0048212684, w: 0.032101557} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.70000005 + value: {x: 0.63114107, y: 0.010306384, z: -0.078385286, w: 0.77162844} + inSlope: {x: -0.06176407, y: 0.0007257605, z: 0.0077247554, w: 0.051433995} + outSlope: {x: -0.06176407, y: 0.0007257605, z: 0.0077247554, w: 0.051433995} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.5868636, y: -0.0026245706, z: -0.06714482, w: 0.80689275} + inSlope: {x: -0.08261561, y: -0.00014279968, z: 0.009372084, w: 0.06064653} + outSlope: {x: -0.08261561, y: -0.00014279968, z: 0.009372084, w: 0.06064653} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.57337475, y: -0.002647077, z: -0.06561442, w: 0.81665736} + inSlope: {x: -0.06471901, y: -0.00010570625, z: 0.007342992, w: 0.045884535} + outSlope: {x: -0.06471901, y: -0.00010570625, z: 0.007342992, w: 0.045884535} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.55989605, y: -0.0026685847, z: -0.064084515, w: 0.82607657} + inSlope: {x: 0.07986186, y: 0.00012923146, z: -0.00906307, w: -0.054905698} + outSlope: {x: 0.07986186, y: 0.00012923146, z: -0.00906307, w: -0.054905698} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: 0.56479675, y: -0.0026609402, z: -0.064640746, w: 0.8226902} + inSlope: {x: 0.24136643, y: 0.00038773255, z: -0.027387567, w: -0.16868308} + outSlope: {x: 0.24136643, y: 0.00038773255, z: -0.027387567, w: -0.16868308} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.5888554, y: -0.0026213056, z: -0.06737063, w: 0.8054214} + inSlope: {x: -0.04013656, y: -0.000068591886, z: 0.004555842, w: 0.029674161} + outSlope: {x: -0.04013656, y: -0.000068591886, z: 0.004555842, w: 0.029674161} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.70000005 + value: {x: 0.58686364, y: -0.002624539, z: -0.06714484, w: 0.80689263} + inSlope: {x: -0.059752416, y: -0.000096999494, z: 0.0067736898, w: 0.044136606} + outSlope: {x: -0.059752416, y: -0.000096999494, z: 0.0067736898, w: 0.044136606} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2/mixamorig:RightHandMiddle3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.010558706, y: 0.0028612935, z: 0.002861068, w: 0.9999361} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.010558706, y: 0.0028612935, z: 0.002861068, w: 0.9999361} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2/mixamorig:RightHandMiddle3/mixamorig:RightHandMiddle4 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.6665685, y: -0.048509825, z: -0.02901452, w: 0.74329764} + inSlope: {x: 0.08886158, y: 0.029520614, z: -0.033706762, w: -0.07944166} + outSlope: {x: 0.08886158, y: 0.029520614, z: -0.033706762, w: -0.07944166} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: 0.66082215, y: -0.046591904, z: -0.029310834, w: 0.7485214} + inSlope: {x: -0.26302725, y: -0.010245589, z: 0.050286636, w: 0.23347554} + outSlope: {x: -0.26302725, y: -0.010245589, z: 0.050286636, w: 0.23347554} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: 0.63108796, y: -0.044469852, z: -0.026322495, w: 0.77398807} + inSlope: {x: -0.25670525, y: 0.0042929878, z: 0.036879838, w: 0.20978807} + outSlope: {x: -0.25670525, y: 0.0042929878, z: 0.036879838, w: 0.20978807} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.62320787, y: -0.044007756, z: -0.025440931, w: 0.7804025} + inSlope: {x: 0.1463029, y: 0.0075795325, z: -0.02897923, w: -0.1180932} + outSlope: {x: 0.1463029, y: 0.0075795325, z: -0.02897923, w: -0.1180932} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: 0.63945806, y: -0.04288667, z: -0.028870905, w: 0.7670858} + inSlope: {x: 0.16794914, y: 0.008470684, z: -0.035986338, w: -0.14085972} + outSlope: {x: 0.16794914, y: 0.008470684, z: -0.035986338, w: -0.14085972} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: 0.6249853, y: -0.032911953, z: -0.038708314, w: 0.7789813} + inSlope: {x: -0.54254776, y: 0.090562314, z: -0.0419288, w: 0.4326325} + outSlope: {x: -0.54254776, y: 0.090562314, z: -0.0419288, w: 0.4326325} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.6027501, y: -0.030618113, z: -0.0388795, w: 0.7963939} + inSlope: {x: -0.25182405, y: 0.008359775, z: 0.020818671, w: 0.19899875} + outSlope: {x: -0.25182405, y: 0.008359775, z: 0.020818671, w: 0.19899875} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5666667 + value: {x: 0.61672497, y: -0.032248404, z: -0.03849994, w: 0.7855751} + inSlope: {x: 0.23448408, y: -0.016440898, z: -0.008892897, w: -0.18486679} + outSlope: {x: 0.23448408, y: -0.016440898, z: -0.008892897, w: -0.18486679} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.6238293, y: -0.033450697, z: -0.037913263, w: 0.77992344} + inSlope: {x: 0.19206318, y: -0.14252429, z: 0.1473681, w: -0.15376303} + outSlope: {x: 0.19206318, y: -0.14252429, z: 0.1473681, w: -0.15376303} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6333334 + value: {x: 0.6295292, y: -0.04175003, z: -0.028675392, w: 0.7753242} + inSlope: {x: 0.4551041, y: -0.21775708, z: 0.15860038, w: -0.38390124} + outSlope: {x: 0.4551041, y: -0.21775708, z: 0.15860038, w: -0.38390124} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.65416956, y: -0.047967836, z: -0.027339898, w: 0.75433004} + inSlope: {x: 0.555593, y: -0.10138635, z: -0.0050630774, w: -0.4803999} + outSlope: {x: 0.555593, y: -0.10138635, z: -0.0050630774, w: -0.4803999} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.70000005 + value: {x: 0.6665687, y: -0.048509113, z: -0.029012933, w: 0.7432976} + inSlope: {x: 0.3719738, y: -0.016238304, z: -0.05019102, w: -0.3309736} + outSlope: {x: 0.3719738, y: -0.016238304, z: -0.05019102, w: -0.3309736} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.61075586, y: 0.000112977395, z: -0.068282805, w: 0.78886926} + inSlope: {x: 0.031948686, y: -0.000005846377, z: -0.0035771725, w: -0.02508044} + outSlope: {x: 0.031948686, y: -0.000005846377, z: -0.0035771725, w: -0.02508044} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.59881765, y: 0.00011418815, z: -0.06694832, w: 0.7980823} + inSlope: {x: -0.015589001, y: 0.000006351584, z: 0.0017483535, w: 0.011875035} + outSlope: {x: -0.015589001, y: 0.000006351584, z: 0.0017483535, w: 0.011875035} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: 0.5887492, y: 0.00011529606, z: -0.06582274, w: 0.8056313} + inSlope: {x: 0.08917899, y: -0.000013788341, z: -0.0099689895, w: -0.066517} + outSlope: {x: 0.08917899, y: -0.000013788341, z: -0.0099689895, w: -0.066517} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.5947815, y: 0.00011453817, z: -0.066496894, w: 0.8011324} + inSlope: {x: 0.054694716, y: -0.000004795475, z: -0.0061110784, w: -0.04066319} + outSlope: {x: 0.054694716, y: -0.000004795475, z: -0.0061110784, w: -0.04066319} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.5975945, y: 0.00011435374, z: -0.066811495, w: 0.7990101} + inSlope: {x: 0.34074602, y: -0.00003690405, z: -0.038098536, w: -0.26228157} + outSlope: {x: 0.34074602, y: -0.00003690405, z: -0.038098536, w: -0.26228157} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: 0.6151119, y: 0.00011251609, z: -0.06877005, w: 0.78543496} + inSlope: {x: 0.2693421, y: -0.000028939614, z: -0.030112045, w: -0.20884754} + outSlope: {x: 0.2693421, y: -0.000028939614, z: -0.030112045, w: -0.20884754} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.61870736, y: 0.000111975096, z: -0.069171846, w: 0.7825704} + inSlope: {x: 0.050845783, y: -0.000007070163, z: -0.005685729, w: -0.040546093} + outSlope: {x: 0.050845783, y: -0.000007070163, z: -0.005685729, w: -0.040546093} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5666667 + value: {x: 0.6199866, y: 0.00011184481, z: -0.06931505, w: 0.7815446} + inSlope: {x: 0.04108162, y: -0.0000016341423, z: -0.0045921667, w: -0.033025153} + outSlope: {x: 0.04108162, y: -0.0000016341423, z: -0.0045921667, w: -0.033025153} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.6216791, y: 0.00011184414, z: -0.06950416, w: 0.7801822} + inSlope: {x: -0.17797689, y: 0.000018059494, z: 0.019900851, w: 0.14073893} + outSlope: {x: -0.17797689, y: 0.000018059494, z: 0.019900851, w: 0.14073893} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6333334 + value: {x: 0.60812145, y: 0.00011304878, z: -0.06798833, w: 0.79092723} + inSlope: {x: -0.20825101, y: 0.000019849273, z: 0.023286138, w: 0.16497807} + outSlope: {x: -0.20825101, y: 0.000019849273, z: 0.023286138, w: 0.16497807} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.70000005 + value: {x: 0.61075604, y: 0.0001130659, z: -0.06828304, w: 0.7888692} + inSlope: {x: 0.088809654, y: -0.0000030458589, z: -0.009938694, w: -0.06934577} + outSlope: {x: 0.088809654, y: -0.0000030458589, z: -0.009938694, w: -0.06934577} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.3616672, y: -0.00000008640354, z: -0.040382292, w: 0.9314323} + inSlope: {x: 0.039814707, y: 0.0000030902972, z: -0.0044457614, w: -0.015685558} + outSlope: {x: 0.039814707, y: 0.0000030902972, z: -0.0044457614, w: -0.015685558} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.34772128, y: 0.000000040411734, z: -0.03882514, w: 0.9367938} + inSlope: {x: -0.014691354, y: -0.0000025475354, z: 0.0016409532, w: 0.0055432324} + outSlope: {x: -0.014691354, y: -0.0000025475354, z: 0.0016409532, w: 0.0055432324} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: 0.33612517, y: 0.000000035149974, z: -0.037530355, w: 0.9410693} + inSlope: {x: 0.10550559, y: 0.0000021536202, z: -0.011781995, w: -0.03861666} + outSlope: {x: 0.10550559, y: 0.0000021536202, z: -0.011781995, w: -0.03861666} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.3432413, y: -0.000000011500348, z: -0.038324963, w: 0.93846506} + inSlope: {x: 0.06455988, y: -0.000000960174, z: -0.0072097224, w: -0.023515824} + outSlope: {x: 0.06455988, y: -0.000000960174, z: -0.0072097224, w: -0.023515824} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.34657475, y: 0.00000002552728, z: -0.038697086, w: 0.9372238} + inSlope: {x: 0.40575784, y: 0.0000007969123, z: -0.04530301, w: -0.15563336} + outSlope: {x: 0.40575784, y: 0.0000007969123, z: -0.04530301, w: -0.15563336} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: 0.36747968, y: 0.000000024265907, z: -0.041031204, w: 0.929126} + inSlope: {x: 0.3241204, y: -0.0000006031452, z: -0.0361882, w: -0.12569459} + outSlope: {x: 0.3241204, y: -0.0000006031452, z: -0.0361882, w: -0.12569459} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.37203437, y: 0.000000010501724, z: -0.04153987, w: 0.927289} + inSlope: {x: 0.06060859, y: -0.0000015222688, z: -0.0067678895, w: -0.024478756} + outSlope: {x: 0.06060859, y: -0.0000015222688, z: -0.0067678895, w: -0.024478756} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5666667 + value: {x: 0.37346077, y: 0.000000038328345, z: -0.04169912, w: 0.9267083} + inSlope: {x: 0.04775451, y: 0.0000024078936, z: -0.0053310595, w: -0.019506816} + outSlope: {x: 0.04775451, y: 0.0000024078936, z: -0.0053310595, w: -0.019506816} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.37540698, y: 0.000000044359247, z: -0.04191623, w: 0.9259118} + inSlope: {x: -0.21729356, y: -0.0000006980138, z: 0.024263013, w: 0.086671025} + outSlope: {x: -0.21729356, y: -0.0000006980138, z: 0.024263013, w: 0.086671025} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6333334 + value: {x: 0.35897452, y: -0.000000008205957, z: -0.040081583, w: 0.93248636} + inSlope: {x: -0.25806093, y: -0.000002728288, z: 0.02881361, w: 0.10312371} + outSlope: {x: -0.25806093, y: -0.000002728288, z: 0.02881361, w: 0.10312371} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.70000005 + value: {x: 0.36166713, y: -0.0000001001725, z: -0.040382158, w: 0.9314323} + inSlope: {x: 0.10392657, y: 0.0000011206204, z: -0.011605127, w: -0.040631857} + outSlope: {x: 0.10392657, y: 0.0000011206204, z: -0.011605127, w: -0.040631857} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2/mixamorig:RightHandPinky3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.04451909, y: -0.000000012655279, z: -0.00000004976564, w: 0.99900854} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.04451909, y: -0.000000012655279, z: -0.00000004976564, w: 0.99900854} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2/mixamorig:RightHandPinky3/mixamorig:RightHandPinky4 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.0614243, y: 0.2514624, z: 0.96591556, w: -0.0009353892} + inSlope: {x: 0.80796427, y: 8.007411, z: -3.3477597, w: -0.4248086} + outSlope: {x: 0.80796427, y: 8.007411, z: -3.3477597, w: -0.4248086} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: -0.034492157, y: 0.5183761, z: 0.85432357, w: -0.015095676} + inSlope: {x: 0.8683083, y: 5.75462, z: -2.9243999, w: -0.6988049} + outSlope: {x: 0.8683083, y: 5.75462, z: -2.9243999, w: -0.6988049} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: -0.0035370786, y: 0.63510376, z: 0.77095556, w: -0.04752239} + inSlope: {x: 1.0424218, y: 1.9148746, z: -1.4834555, w: -1.3284528} + outSlope: {x: 1.0424218, y: 1.9148746, z: -1.4834555, w: -1.3284528} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: 0.03500264, y: 0.6460344, z: 0.7554265, w: -0.10365921} + inSlope: {x: 1.180145, y: -0.3280083, z: 0.09767808, w: -1.0517882} + outSlope: {x: 1.180145, y: -0.3280083, z: 0.09767808, w: -1.0517882} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.07513926, y: 0.61323655, z: 0.7774674, w: -0.11764161} + inSlope: {x: 0.74822235, y: -1.3772938, z: 1.0263921, w: 0.30821612} + outSlope: {x: 0.74822235, y: -1.3772938, z: 1.0263921, w: 0.30821612} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.08488413, y: 0.55421484, z: 0.82385266, w: -0.08311147} + inSlope: {x: -0.25862703, y: -2.2489057, z: 1.5722561, w: 0.8688408} + outSlope: {x: -0.25862703, y: -2.2489057, z: 1.5722561, w: 0.8688408} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: 0.05789745, y: 0.46330947, z: 0.8822845, w: -0.05971889} + inSlope: {x: -0.61121833, y: -1.101963, z: 0.7330429, w: 0.15601659} + outSlope: {x: -0.61121833, y: -1.101963, z: 0.7330429, w: 0.15601659} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: 0.04413623, y: 0.4807506, z: 0.8727222, w: -0.07271036} + inSlope: {x: -0.5105701, y: -1.2784884, z: 0.58348334, w: -0.4382661} + outSlope: {x: -0.5105701, y: -1.2784884, z: 0.58348334, w: -0.4382661} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.023859441, y: 0.3780769, z: 0.9211834, w: -0.08893663} + inSlope: {x: -0.7506111, y: -1.2325042, z: 0.62172896, w: -0.010389417} + outSlope: {x: -0.7506111, y: -1.2325042, z: 0.62172896, w: -0.010389417} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: -0.0059045097, y: 0.39858365, z: 0.9141708, w: -0.073402986} + inSlope: {x: -0.4249463, y: -0.73345864, z: 0.32247844, w: 0.51638466} + outSlope: {x: -0.4249463, y: -0.73345864, z: 0.32247844, w: 0.51638466} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.004470311, y: 0.32917967, z: 0.94268197, w: -0.054510985} + inSlope: {x: 0.07953965, y: -2.7324748, z: 0.9262652, w: 0.69321597} + outSlope: {x: 0.07953965, y: -2.7324748, z: 0.9262652, w: 0.69321597} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: -0.00060186686, y: 0.21641868, z: 0.9759218, w: -0.027188594} + inSlope: {x: -0.32799128, y: -4.178044, z: 0.83427316, w: 0.64117974} + outSlope: {x: -0.32799128, y: -4.178044, z: 0.83427316, w: 0.64117974} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: -0.026336418, y: 0.050643288, z: 0.9983002, w: -0.011765658} + inSlope: {x: -1.0325396, y: -4.6793227, z: 0.25542024, w: 0.25646782} + outSlope: {x: -1.0325396, y: -4.6793227, z: 0.25542024, w: 0.25646782} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: -0.06943786, y: -0.09553631, z: 0.99294984, w: -0.010090726} + inSlope: {x: -1.2134869, y: -3.5804524, z: -0.332045, w: 0.4091138} + outSlope: {x: -1.2134869, y: -3.5804524, z: -0.332045, w: 0.4091138} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: -0.107235536, y: -0.18805353, z: 0.97616386, w: 0.015508592} + inSlope: {x: -0.610976, y: -2.3462934, z: -0.4734164, w: 0.31054583} + outSlope: {x: -0.610976, y: -2.3462934, z: -0.4734164, w: 0.31054583} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.11016959, y: -0.2519558, z: 0.96138877, w: 0.010612332} + inSlope: {x: -0.16075535, y: -1.5811955, z: -0.42351192, w: -0.79264855} + outSlope: {x: -0.16075535, y: -1.5811955, z: -0.42351192, w: -0.79264855} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: -0.11795256, y: -0.29346654, z: 0.94792974, w: -0.03733468} + inSlope: {x: -0.2951809, y: 0.18016183, z: -0.0057944655, w: -0.8366958} + outSlope: {x: -0.2951809, y: 0.18016183, z: -0.0057944655, w: -0.8366958} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5666667 + value: {x: -0.12984833, y: -0.23994501, z: 0.96100247, w: -0.04516743} + inSlope: {x: -0.28921127, y: 1.4263179, z: 0.33059385, w: 0.09224909} + outSlope: {x: -0.28921127, y: 1.4263179, z: 0.33059385, w: 0.09224909} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.13723332, y: -0.19837867, z: 0.96996933, w: -0.03118476} + inSlope: {x: 0.16222806, y: 1.8193088, z: 0.36979163, w: 0.44747597} + outSlope: {x: 0.16222806, y: 1.8193088, z: 0.36979163, w: 0.44747597} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6333334 + value: {x: -0.119033106, y: -0.11865773, z: 0.98565525, w: -0.015335699} + inSlope: {x: 0.75418377, y: 3.373436, z: 0.38787866, w: 0.34911785} + outSlope: {x: 0.75418377, y: 3.373436, z: 0.38787866, w: 0.34911785} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.086954415, y: 0.026516981, z: 0.9958279, w: -0.007910231} + inSlope: {x: 0.8641325, y: 5.551815, z: -0.29609835, w: 0.21600547} + outSlope: {x: 0.8641325, y: 5.551815, z: -0.29609835, w: 0.21600547} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.70000005 + value: {x: -0.06142428, y: 0.25146332, z: 0.9659153, w: -0.0009353352} + inSlope: {x: 0.76590335, y: 6.748385, z: -0.89737695, w: 0.20924671} + outSlope: {x: 0.76590335, y: 6.748385, z: -0.89737695, w: 0.20924671} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:LeftUpLeg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.93645096, y: -0.027652852, z: 0.09237161, w: -0.33728686} + inSlope: {x: -0.3486192, y: 0.35392362, z: -1.510865, w: -1.2130066} + outSlope: {x: -0.3486192, y: 0.35392362, z: -1.510865, w: -1.2130066} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.9248303, y: -0.015855398, z: 0.042009443, w: -0.37772042} + inSlope: {x: -1.2654305, y: 0.26737112, z: -0.989126, w: -2.7802503} + outSlope: {x: -1.2654305, y: 0.26737112, z: -0.989126, w: -2.7802503} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: 0.8520889, y: -0.00982811, z: 0.026429873, w: -0.5226369} + inSlope: {x: -3.1195374, y: -0.37990686, z: 0.68835247, w: -4.6905804} + outSlope: {x: -3.1195374, y: -0.37990686, z: 0.68835247, w: -4.6905804} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: 0.7168611, y: -0.041182525, z: 0.08789962, w: -0.6904258} + inSlope: {x: -4.9553347, y: -0.5389734, z: 1.0871261, w: -4.8522396} + outSlope: {x: -4.9553347, y: -0.5389734, z: 1.0871261, w: -4.8522396} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.5217333, y: -0.045759674, z: 0.09890496, w: -0.8461195} + inSlope: {x: -7.067107, y: -0.18217117, z: -0.037250742, w: -4.1050577} + outSlope: {x: -7.067107, y: -0.18217117, z: -0.037250742, w: -4.1050577} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.2457207, y: -0.05332727, z: 0.085416235, w: -0.9640963} + inSlope: {x: -7.1634674, y: 0.76242346, z: -0.54191756, w: -2.26376} + outSlope: {x: -7.1634674, y: 0.76242346, z: -0.54191756, w: -2.26376} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: 0.04416874, y: 0.0050685825, z: 0.06277712, w: -0.9970369} + inSlope: {x: -0.51244044, y: 1.1859396, z: -0.5623349, w: -0.17631033} + outSlope: {x: -0.51244044, y: 1.1859396, z: -0.5623349, w: -0.17631033} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: 0.21155791, y: 0.025735395, z: 0.047927234, w: -0.97585034} + inSlope: {x: 1.5572057, y: 0.31037492, z: -0.43342423, w: 0.13444753} + outSlope: {x: 1.5572057, y: 0.31037492, z: -0.43342423, w: 0.13444753} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.14798243, y: 0.025760245, z: 0.03388217, w: -0.9880737} + inSlope: {x: 2.5273755, y: -0.3077633, z: -0.6273183, w: 0.7637868} + outSlope: {x: 2.5273755, y: -0.3077633, z: -0.6273183, w: 0.7637868} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: 0.3800496, y: 0.005217843, z: 0.006106016, w: -0.9249312} + inSlope: {x: 4.741141, y: -0.3993799, z: -0.25435537, w: 1.5364687} + outSlope: {x: 4.741141, y: -0.3993799, z: -0.25435537, w: 1.5364687} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.46405846, y: -0.00086508197, z: 0.016925149, w: -0.88564247} + inSlope: {x: 1.0715747, y: -0.33826935, z: 0.77017134, w: 0.5201126} + outSlope: {x: 1.0715747, y: -0.33826935, z: 0.77017134, w: 0.5201126} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: 0.4514879, y: -0.017333444, z: 0.05745077, w: -0.89025706} + inSlope: {x: -2.1881797, y: -0.9070883, z: 1.523319, w: -0.79429805} + outSlope: {x: -2.1881797, y: -0.9070883, z: 1.523319, w: -0.79429805} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.3181797, y: -0.061337672, z: 0.118479796, w: -0.9385957} + inSlope: {x: -3.3078144, y: -0.885893, z: 1.3938887, w: -1.0195982} + outSlope: {x: -3.3078144, y: -0.885893, z: 1.3938887, w: -1.0195982} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: 0.23096684, y: -0.076393016, z: 0.15037674, w: -0.9582303} + inSlope: {x: -1.2347385, y: 0.34126332, z: -0.037302822, w: -0.3820673} + outSlope: {x: -1.2347385, y: 0.34126332, z: -0.037302822, w: -0.3820673} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: 0.2358638, y: -0.038586784, z: 0.11599294, w: -0.96406686} + inSlope: {x: -0.13937047, y: 1.3610257, z: -1.1673195, w: -0.2112205} + outSlope: {x: -0.13937047, y: 1.3610257, z: -1.1673195, w: -0.2112205} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.22167549, y: 0.01434198, z: 0.072555475, w: -0.9723117} + inSlope: {x: 0.90260285, y: -0.0668031, z: -0.24714956, w: 0.22596318} + outSlope: {x: 0.90260285, y: -0.0668031, z: -0.24714956, w: 0.22596318} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: 0.2960374, y: -0.04304042, z: 0.09951637, w: -0.9490026} + inSlope: {x: 4.5453835, y: -0.5511716, z: 0.56332767, w: 1.9271057} + outSlope: {x: 4.5453835, y: -0.5511716, z: 0.56332767, w: 1.9271057} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5666667 + value: {x: 0.5247013, y: -0.022402825, z: 0.110110685, w: -0.84383786} + inSlope: {x: 5.6387014, y: 0.64491224, z: -0.42300618, w: 3.1777296} + outSlope: {x: 5.6387014, y: 0.64491224, z: -0.42300618, w: 3.1777296} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.6719509, y: -0.000046273875, z: 0.071316004, w: -0.737154} + inSlope: {x: 4.01548, y: 0.20043474, z: -0.7904385, w: 3.5491667} + outSlope: {x: 4.01548, y: 0.20043474, z: -0.7904385, w: 3.5491667} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6333334 + value: {x: 0.79239994, y: -0.009040536, z: 0.057414815, w: -0.6072267} + inSlope: {x: 3.2880306, y: -0.42225552, z: 0.2354344, w: 4.3914967} + outSlope: {x: 3.2880306, y: -0.42225552, z: 0.2354344, w: 4.3914967} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.8911529, y: -0.028196631, z: 0.08701159, w: -0.4443876} + inSlope: {x: 2.1607642, y: -0.27918488, z: 0.52435166, w: 4.0490956} + outSlope: {x: 2.1607642, y: -0.27918488, z: 0.52435166, w: 4.0490956} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.70000005 + value: {x: 0.93645084, y: -0.027652843, z: 0.09237157, w: -0.3372871} + inSlope: {x: 1.3589364, y: 0.01631363, z: 0.16079919, w: 3.213013} + outSlope: {x: 1.3589364, y: 0.01631363, z: 0.16079919, w: 3.213013} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.76312417, y: 0.03752116, z: 0.035448752, w: 0.64418715} + inSlope: {x: -2.7130167, y: -1.0517962, z: -1.7266936, w: 2.8620777} + outSlope: {x: -2.7130167, y: -1.0517962, z: -1.7266936, w: 2.8620777} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.6726903, y: 0.0024612863, z: -0.022107704, w: 0.73958975} + inSlope: {x: -2.2480273, y: -0.3475891, z: -0.64474314, w: 2.1829658} + outSlope: {x: -2.2480273, y: -0.3475891, z: -0.64474314, w: 2.1829658} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: 0.6132557, y: 0.0143485535, z: -0.007534126, w: 0.7897182} + inSlope: {x: -1.1697783, y: 0.41409904, z: 0.59474784, w: 0.9540026} + outSlope: {x: -1.1697783, y: 0.41409904, z: 0.59474784, w: 0.9540026} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: 0.59470505, y: 0.03006789, z: 0.017542157, w: 0.80318993} + inSlope: {x: -0.40002012, y: 0.7310281, z: 0.17026353, w: 0.26546982} + outSlope: {x: -0.40002012, y: 0.7310281, z: 0.17026353, w: 0.26546982} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.58658767, y: 0.06308376, z: 0.003816782, w: 0.8074162} + inSlope: {x: -1.0533116, y: 0.33350062, z: 0.38784027, w: 0.6827018} + outSlope: {x: -1.0533116, y: 0.33350062, z: 0.38784027, w: 0.6827018} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.5244843, y: 0.052301265, z: 0.043398175, w: 0.8487034} + inSlope: {x: -1.3104768, y: 0.23133945, z: 1.2240117, w: 0.76883554} + outSlope: {x: -1.3104768, y: 0.23133945, z: 1.2240117, w: 0.76883554} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: 0.49922255, y: 0.0785064, z: 0.085417576, w: 0.8586719} + inSlope: {x: 0.99287176, y: 0.08098996, z: 0.18028739, w: -0.68655264} + outSlope: {x: 0.99287176, y: 0.08098996, z: 0.18028739, w: -0.68655264} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: 0.5906757, y: 0.057700608, z: 0.055417355, w: 0.8029332} + inSlope: {x: -1.272119, y: -1.6470631, z: -1.9056683, w: 0.74887365} + outSlope: {x: -1.272119, y: -1.6470631, z: -1.9056683, w: 0.74887365} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.4144146, y: -0.0312978, z: -0.04162696, w: 0.9085968} + inSlope: {x: -0.08143449, y: -1.855868, z: -1.6474421, w: 0.050936937} + outSlope: {x: -0.08143449, y: -1.855868, z: -1.6474421, w: 0.050936937} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: 0.58524674, y: -0.066023916, z: -0.054412108, w: 0.806329} + inSlope: {x: 4.549035, y: -0.20602626, z: -0.05370447, w: -3.2273574} + outSlope: {x: 4.549035, y: -0.20602626, z: -0.05370447, w: -3.2273574} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.7176836, y: -0.04503288, z: -0.04520726, w: 0.69343966} + inSlope: {x: 3.0388222, y: 0.5382324, z: 0.6836369, w: -2.8686602} + outSlope: {x: 3.0388222, y: 0.5382324, z: 0.6836369, w: -2.8686602} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: 0.7878349, y: -0.030141758, z: -0.008836316, w: 0.615085} + inSlope: {x: 1.3119389, y: -0.08649789, z: 1.6479294, w: -1.5913606} + outSlope: {x: 1.3119389, y: -0.08649789, z: 1.6479294, w: -1.5913606} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.8051462, y: -0.050799426, z: 0.064654775, w: 0.58734894} + inSlope: {x: -0.4098749, y: -0.16150244, z: 1.5241745, w: 0.3941403} + outSlope: {x: -0.4098749, y: -0.16150244, z: 1.5241745, w: 0.3941403} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: 0.7605099, y: -0.040908605, z: 0.092775375, w: 0.641361} + inSlope: {x: -2.093002, y: 0.38189292, z: 0.21772777, w: 2.314566} + outSlope: {x: -2.093002, y: 0.38189292, z: 0.21772777, w: 2.314566} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: 0.66561276, y: -0.0253399, z: 0.07916996, w: 0.7416533} + inSlope: {x: -2.9164271, y: 1.2554473, z: -0.63179636, w: 2.7047577} + outSlope: {x: -2.9164271, y: 1.2554473, z: -0.63179636, w: 2.7047577} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.5660815, y: 0.04278781, z: 0.050655644, w: 0.8216781} + inSlope: {x: -1.4884477, y: 1.4296212, z: -0.24251004, w: 1.1563953} + outSlope: {x: -1.4884477, y: 1.4296212, z: -0.24251004, w: 1.1563953} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: 0.566383, y: 0.06996814, z: 0.06300266, w: 0.81874627} + inSlope: {x: 0.4989137, y: 0.875623, z: 0.39465874, w: -0.47013184} + outSlope: {x: 0.4989137, y: 0.875623, z: 0.39465874, w: -0.47013184} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5666667 + value: {x: 0.59934247, y: 0.101162724, z: 0.07696625, w: 0.79033595} + inSlope: {x: 0.8597695, y: 0.15750733, z: 0.29643005, w: -0.6848063} + outSlope: {x: 0.8597695, y: 0.15750733, z: 0.29643005, w: -0.6848063} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.623701, y: 0.08046868, z: 0.08276467, w: 0.7730925} + inSlope: {x: 0.9737195, y: -0.41562313, z: -0.00056847185, w: -0.7565705} + outSlope: {x: 0.9737195, y: -0.41562313, z: -0.00056847185, w: -0.7565705} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6333334 + value: {x: 0.6642571, y: 0.07345453, z: 0.07692834, w: 0.7398979} + inSlope: {x: 1.6080527, y: -0.210615, z: -0.113810435, w: -1.4703946} + outSlope: {x: 1.6080527, y: -0.210615, z: -0.113810435, w: -1.4703946} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.73090446, y: 0.06642768, z: 0.075177304, w: 0.67506623} + inSlope: {x: 1.4829974, y: -0.5390006, z: -0.6221945, w: -1.4356512} + outSlope: {x: 1.4829974, y: -0.5390006, z: -0.6221945, w: -1.4356512} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.70000005 + value: {x: 0.7631236, y: 0.03752114, z: 0.035448674, w: 0.64418787} + inSlope: {x: 0.9665725, y: -0.8671954, z: -1.1918579, w: -0.9263502} + outSlope: {x: 0.9665725, y: -0.8671954, z: -1.1918579, w: -0.9263502} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.17165555, y: 0.029255498, z: -0.12209069, w: 0.9771246} + inSlope: {x: -0.49396676, y: 0.4300734, z: 0.13472445, w: 0.08298933} + outSlope: {x: -0.49396676, y: 0.4300734, z: 0.13472445, w: 0.08298933} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.15518999, y: 0.04359128, z: -0.117599875, w: 0.9798909} + inSlope: {x: -0.4338001, y: -0.06588368, z: 0.009727705, w: 0.07264405} + outSlope: {x: -0.4338001, y: -0.06588368, z: 0.009727705, w: 0.07264405} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: 0.14273554, y: 0.024863252, z: -0.12144218, w: 0.9819675} + inSlope: {x: -0.03231974, y: -0.25745174, z: -0.061277743, w: 0.0067976136} + outSlope: {x: -0.03231974, y: -0.25745174, z: -0.061277743, w: 0.0067976136} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.17268209, y: 0.02941128, z: -0.12211173, w: 0.97693634} + inSlope: {x: 0.53917074, y: 0.08186038, z: -0.01115922, w: -0.09820283} + outSlope: {x: 0.53917074, y: 0.08186038, z: -0.01115922, w: -0.09820283} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: 0.23753506, y: 0.039250158, z: -0.12317353, w: 0.9627382} + inSlope: {x: 1.0730433, y: 0.16265866, z: -0.012643375, w: -0.276821} + outSlope: {x: 1.0730433, y: 0.16265866, z: -0.012643375, w: -0.276821} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.27628285, y: 0.04512155, z: -0.12354681, w: 0.95203364} + inSlope: {x: -1.1235654, y: -0.15875643, z: 0.022021608, w: 0.23991467} + outSlope: {x: -1.1235654, y: -0.15875643, z: 0.022021608, w: 0.23991467} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: 0.16263069, y: 0.028666396, z: -0.12170542, w: 0.9787325} + inSlope: {x: -1.679905, y: -0.25476888, z: 0.02417084, w: 0.39612833} + outSlope: {x: -1.679905, y: -0.25476888, z: 0.02417084, w: 0.39612833} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.16428918, y: 0.02813696, z: -0.12193542, w: 0.9784422} + inSlope: {x: 0.09389476, y: 0.002538124, z: -0.0049157073, w: -0.016598405} + outSlope: {x: 0.09389476, y: 0.002538124, z: -0.0049157073, w: -0.016598405} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: 0.16889034, y: 0.028835604, z: -0.122033134, w: 0.97762597} + inSlope: {x: 0.25789088, y: 0.039153438, z: -0.005276796, w: -0.04748133} + outSlope: {x: 0.25789088, y: 0.039153438, z: -0.005276796, w: -0.04748133} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.18148191, y: 0.03074719, z: -0.12228721, w: 0.97527677} + inSlope: {x: 2.3864782, y: 0.3616849, z: -0.02541024, w: -0.63869655} + outSlope: {x: 2.3864782, y: 0.3616849, z: -0.02541024, w: -0.63869655} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: 0.3279889, y: 0.05294793, z: -0.12372715, w: 0.9350462} + inSlope: {x: 4.9120646, y: 0.59893036, z: 0.03030874, w: -1.8879087} + outSlope: {x: 4.9120646, y: 0.59893036, z: 0.03030874, w: -1.8879087} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: 0.50895286, y: 0.07067588, z: -0.120266624, w: 0.8494162} + inSlope: {x: 3.8046918, y: 1.1864605, z: -0.031254854, w: -2.1345959} + outSlope: {x: 3.8046918, y: 1.1864605, z: -0.031254854, w: -2.1345959} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.58163494, y: 0.13204524, z: -0.1258108, w: 0.79273987} + inSlope: {x: -1.8623773, y: 3.2361445, z: 0.07198067, w: 0.3058657} + outSlope: {x: -1.8623773, y: 3.2361445, z: 0.07198067, w: 0.3058657} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: 0.38479415, y: 0.2864189, z: -0.1154679, w: 0.86980736} + inSlope: {x: -5.956956, y: -1.295001, z: 0.111999795, w: 2.7280393} + outSlope: {x: -5.956956, y: -1.295001, z: 0.111999795, w: 2.7280393} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5666667 + value: {x: 0.18450424, y: 0.045711763, z: -0.11834414, w: 0.9746093} + inSlope: {x: -3.1484022, y: -3.8500593, z: -0.100335315, w: 1.600775} + outSlope: {x: -3.1484022, y: -3.8500593, z: -0.100335315, w: 1.600775} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.17490052, y: 0.029748112, z: -0.12215692, w: 0.9765258} + inSlope: {x: -0.38401628, y: -0.27589238, z: -0.052101076, w: 0.071397714} + outSlope: {x: -0.38401628, y: -0.27589238, z: -0.052101076, w: 0.071397714} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.15126005, y: 0.026158158, z: -0.12164411, w: 0.9806319} + inSlope: {x: 0.19128805, y: 0.029047543, z: -0.0040968424, w: -0.033669706} + outSlope: {x: 0.19128805, y: 0.029047543, z: -0.0040968424, w: -0.033669706} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.70000005 + value: {x: 0.17165571, y: 0.029255457, z: -0.12209067, w: 0.9771245} + inSlope: {x: 0.61186945, y: 0.09291891, z: -0.013396729, w: -0.10522118} + outSlope: {x: 0.61186945, y: 0.09291891, z: -0.013396729, w: -0.10522118} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot/mixamorig:LeftToeBase + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.04573715, y: 0.039433047, z: 0.0727525, w: 0.99552006} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.04573715, y: 0.039433047, z: 0.0727525, w: 0.99552006} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot/mixamorig:LeftToeBase/mixamorig:LeftToe_End + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.05768611, y: 0.24824786, z: 0.9633232, w: 0.083986655} + inSlope: {x: 0.28042483, y: -4.4883556, z: 0.8565884, w: -1.1917094} + outSlope: {x: 0.28042483, y: -4.4883556, z: 0.8565884, w: -1.1917094} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.067033604, y: 0.098636, z: 0.9918761, w: 0.044263005} + inSlope: {x: 0.5916101, y: -4.485321, z: 0.45923617, w: -1.1308208} + outSlope: {x: 0.5916101, y: -4.485321, z: 0.45923617, w: -1.1308208} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: 0.09712678, y: -0.050773576, z: 0.9939389, w: 0.008598602} + inSlope: {x: 1.1298313, y: -3.4623492, z: -0.18367228, w: -1.4264193} + outSlope: {x: 1.1298313, y: -3.4623492, z: -0.18367228, w: -1.4264193} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: 0.1423557, y: -0.1321873, z: 0.9796313, w: -0.05083162} + inSlope: {x: 0.904331, y: -2.180313, z: -0.4174751, w: -1.0024675} + outSlope: {x: 0.904331, y: -2.180313, z: -0.4174751, w: -1.0024675} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.15741552, y: -0.1961278, z: 0.96610725, w: -0.058232572} + inSlope: {x: -0.17978646, y: -1.8079131, z: -0.32253477, w: 0.25874746} + outSlope: {x: -0.17978646, y: -1.8079131, z: -0.32253477, w: 0.25874746} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.13036993, y: -0.25271484, z: 0.958129, w: -0.03358179} + inSlope: {x: -0.5514999, y: -1.3678107, z: -0.23948547, w: 0.7058332} + outSlope: {x: -0.5514999, y: -1.3678107, z: -0.23948547, w: 0.7058332} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: 0.12064886, y: -0.2873152, z: 0.95014155, w: -0.011177019} + inSlope: {x: -0.003431365, y: 0.38083595, z: 0.10136968, w: 0.79593956} + outSlope: {x: -0.003431365, y: 0.38083595, z: 0.10136968, w: 0.79593956} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: 0.13014117, y: -0.2273258, z: 0.96488696, w: 0.019480858} + inSlope: {x: 0.15023144, y: 2.8206978, z: 0.53736633, w: 0.62845814} + outSlope: {x: 0.15023144, y: 2.8206978, z: 0.53736633, w: 0.62845814} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.13066429, y: -0.09926869, z: 0.98596597, w: 0.03072019} + inSlope: {x: -0.5187852, y: 4.6671705, z: 0.40455315, w: -0.1731272} + outSlope: {x: -0.5187852, y: 4.6671705, z: 0.40455315, w: -0.1731272} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: 0.09555549, y: 0.08381888, z: 0.9918572, w: 0.007939043} + inSlope: {x: -1.3526279, y: 6.1697197, z: -0.5531824, w: -0.6841012} + outSlope: {x: -1.3526279, y: 6.1697197, z: -0.5531824, w: -0.6841012} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.040489104, y: 0.31204593, z: 0.94908714, w: -0.01488656} + inSlope: {x: -0.90118223, y: 6.597008, z: -2.1096685, w: -0.13527632} + outSlope: {x: -0.90118223, y: 6.597008, z: -2.1096685, w: -0.13527632} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: 0.03547668, y: 0.5236194, z: 0.8512126, w: -0.0010793774} + inSlope: {x: 0.14766547, y: 4.5746512, z: -2.4609056, w: 0.5527841} + outSlope: {x: 0.14766547, y: 4.5746512, z: -2.4609056, w: 0.5527841} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.05033348, y: 0.61702275, z: 0.7850267, w: 0.021965733} + inSlope: {x: -0.17520039, y: 1.4072404, z: -1.0112045, w: 0.9489072} + outSlope: {x: -0.17520039, y: 1.4072404, z: -1.0112045, w: 0.9489072} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: -0.008911248, y: 0.5609933, z: 0.8237346, w: 0.08166059} + inSlope: {x: -0.67561483, y: -2.0189505, z: 1.3467093, w: -0.07441956} + outSlope: {x: -0.67561483, y: -2.0189505, z: 1.3467093, w: -0.07441956} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.021244312, y: 0.4828389, z: 0.8735795, w: 0.05721984} + inSlope: {x: 0.013975963, y: -1.4672564, z: 0.931656, w: -0.83294666} + outSlope: {x: 0.013975963, y: -1.4672564, z: 0.931656, w: -0.83294666} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: -0.0079794945, y: 0.46317628, z: 0.88584495, w: 0.02613081} + inSlope: {x: 0.4206009, y: -0.25516638, z: 0.15334892, w: -0.21295968} + outSlope: {x: 0.4206009, y: -0.25516638, z: 0.15334892, w: -0.21295968} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5666667 + value: {x: 0.006795773, y: 0.4658278, z: 0.8838028, w: 0.043022517} + inSlope: {x: 0.49275744, y: -0.61422074, z: 0.2494064, w: 0.83116066} + outSlope: {x: 0.49275744, y: -0.61422074, z: 0.2494064, w: 0.83116066} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.024870997, y: 0.42222828, z: 0.902472, w: 0.0815415} + inSlope: {x: 0.7289249, y: -1.6187129, z: 0.6354654, w: 0.93103474} + outSlope: {x: 0.7289249, y: -1.6187129, z: 0.6354654, w: 0.93103474} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6333334 + value: {x: 0.05539077, y: 0.35791358, z: 0.92616713, w: 0.10509148} + inSlope: {x: 0.75990844, y: -1.1492012, z: 0.41720843, w: 0.2322248} + outSlope: {x: 0.75990844, y: -1.1492012, z: 0.41720843, w: 0.2322248} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.075531565, y: 0.34561482, z: 0.93028593, w: 0.09702318} + inSlope: {x: 0.03443086, y: -1.6449888, z: 0.5573412, w: -0.31657022} + outSlope: {x: 0.03443086, y: -1.6449888, z: 0.5573412, w: -0.31657022} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.70000005 + value: {x: 0.057686128, y: 0.2482476, z: 0.96332324, w: 0.0839868} + inSlope: {x: -0.53536266, y: -2.9210143, z: 0.9911183, w: -0.39109123} + outSlope: {x: -0.53536266, y: -2.9210143, z: 0.9911183, w: -0.39109123} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:RightUpLeg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.42259544, y: 0.008549906, z: 0.02278651, w: 0.9059916} + inSlope: {x: 2.5139942, y: 0.44633102, z: 0.690496, w: 1.0038221} + outSlope: {x: 2.5139942, y: 0.44633102, z: 0.690496, w: 1.0038221} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: -0.33879563, y: 0.023427607, z: 0.045803044, w: 0.93945235} + inSlope: {x: 3.10255, y: 0.027808651, z: 0.88315034, w: 1.0046794} + outSlope: {x: 3.10255, y: 0.027808651, z: 0.88315034, w: 1.0046794} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: -0.21575877, y: 0.010403817, z: 0.0816632, w: 0.97297025} + inSlope: {x: 1.2438016, y: -0.33890057, z: 0.7076324, w: 0.34162942} + outSlope: {x: 1.2438016, y: -0.33890057, z: 0.7076324, w: 0.34162942} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: -0.25587553, y: 0.000834235, z: 0.092978545, w: 0.96222764} + inSlope: {x: -0.42512244, y: 0.69604975, z: 0.20442532, w: -0.14380303} + outSlope: {x: -0.42512244, y: 0.69604975, z: 0.20442532, w: -0.14380303} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: -0.24410027, y: 0.05680713, z: 0.095291555, w: 0.9633834} + inSlope: {x: -0.01572892, y: 0.59035194, z: 0.027144853, w: -0.01943797} + outSlope: {x: -0.01572892, y: 0.59035194, z: 0.027144853, w: -0.01943797} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.25692412, y: 0.04019103, z: 0.0947882, w: 0.9609318} + inSlope: {x: -2.0147111, y: -0.74033815, z: 0.3806269, w: -0.68514144} + outSlope: {x: -2.0147111, y: -0.74033815, z: 0.3806269, w: -0.68514144} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: -0.3784144, y: 0.0074512446, z: 0.12066669, w: 0.91770726} + inSlope: {x: -4.4383583, y: -0.48795027, z: 0.3185781, w: -2.036703} + outSlope: {x: -4.4383583, y: -0.48795027, z: 0.3185781, w: -2.036703} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: -0.5528147, y: 0.0076609985, z: 0.11602675, w: 0.82515156} + inSlope: {x: -5.1102276, y: -0.26445323, z: -0.24107629, w: -3.4618316} + outSlope: {x: -5.1102276, y: -0.26445323, z: -0.24107629, w: -3.4618316} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.7190962, y: -0.01017897, z: 0.10459494, w: 0.6869185} + inSlope: {x: -4.3339376, y: -0.5172678, z: -0.41335604, w: -4.3987265} + outSlope: {x: -4.3339376, y: -0.5172678, z: -0.41335604, w: -4.3987265} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: -0.8417439, y: -0.02682352, z: 0.088469684, w: 0.53190315} + inSlope: {x: -2.751646, y: 0.008549809, z: -1.4216872, w: -3.8479486} + outSlope: {x: -2.751646, y: 0.008549809, z: -1.4216872, w: -3.8479486} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.90253925, y: -0.009608984, z: 0.009815795, w: 0.4303886} + inSlope: {x: -0.6514076, y: 0.3963607, z: -1.5544128, w: -1.0032692} + outSlope: {x: -0.6514076, y: 0.3963607, z: -1.5544128, w: -1.0032692} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: -0.88517106, y: -0.0003994781, z: -0.015157836, w: 0.46501854} + inSlope: {x: 1.5311854, y: 0.45807135, z: -0.82008934, w: 2.5042486} + outSlope: {x: 1.5311854, y: 0.45807135, z: -0.82008934, w: 2.5042486} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: -0.80046016, y: 0.020929124, z: -0.04485685, w: 0.5973386} + inSlope: {x: 3.6711745, y: 0.19434635, z: 0.20207378, w: 4.543451} + outSlope: {x: 3.6711745, y: 0.19434635, z: 0.20207378, w: 4.543451} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: -0.64042604, y: 0.012556964, z: -0.0016862778, w: 0.76791537} + inSlope: {x: 6.3313885, y: -0.3326523, z: 1.1311357, w: 4.9171743} + outSlope: {x: 6.3313885, y: -0.3326523, z: 1.1311357, w: 4.9171743} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: -0.37836763, y: -0.0012476945, z: 0.030552195, w: 0.9251502} + inSlope: {x: 7.4741406, y: -0.2358458, z: 0.54430825, w: 3.319797} + outSlope: {x: 7.4741406, y: -0.2358458, z: 0.54430825, w: 3.319797} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.14215024, y: -0.0031660867, z: 0.034600936, w: 0.9892351} + inSlope: {x: 4.5993752, y: 0.6889758, z: 0.14875561, w: 1.056742} + outSlope: {x: 4.5993752, y: 0.6889758, z: 0.14875561, w: 1.056742} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: -0.07174279, y: 0.044684067, z: 0.040469237, w: 0.9955996} + inSlope: {x: -0.2821921, y: 0.4776005, z: 0.059466258, w: -0.051679872} + outSlope: {x: -0.2821921, y: 0.4776005, z: 0.059466258, w: -0.051679872} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5666667 + value: {x: -0.16096306, y: 0.028673973, z: 0.038565356, w: 0.9857898} + inSlope: {x: -1.9200937, y: -0.33003318, z: -0.2516377, w: -0.24452445} + outSlope: {x: -1.9200937, y: -0.33003318, z: -0.2516377, w: -0.24452445} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.19974907, y: 0.022681847, z: 0.023693403, w: 0.979298} + inSlope: {x: -1.2024183, y: -0.37208015, z: -0.29069448, w: -0.23239282} + outSlope: {x: -1.2024183, y: -0.37208015, z: -0.29069448, w: -0.23239282} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6333334 + value: {x: -0.24112427, y: 0.0038686208, z: 0.019185735, w: 0.9702969} + inSlope: {x: -3.2424178, y: -0.16556081, z: -0.36623558, w: -1.0495071} + outSlope: {x: -3.2424178, y: -0.16556081, z: -0.36623558, w: -1.0495071} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.41591012, y: 0.011644436, z: -0.0007222872, w: 0.9093309} + inSlope: {x: -2.7220666, y: 0.07021749, z: 0.05401188, w: -0.9645795} + outSlope: {x: -2.7220666, y: 0.07021749, z: 0.05401188, w: -0.9645795} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.70000005 + value: {x: -0.42259523, y: 0.008549777, z: 0.022786565, w: 0.9059917} + inSlope: {x: -0.20055307, y: -0.092839696, z: 0.705265, w: -0.10017685} + outSlope: {x: -0.20055307, y: -0.092839696, z: 0.705265, w: -0.10017685} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.74755996, y: 0.029673396, z: 0.067082986, w: 0.6601314} + inSlope: {x: 0.9919899, y: -0.4803255, z: -0.5032665, w: -1.1193341} + outSlope: {x: 0.9919899, y: -0.4803255, z: -0.5032665, w: -1.1193341} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.7806263, y: 0.013662545, z: 0.050307434, w: 0.62282026} + inSlope: {x: 0.41142222, y: -0.15656203, z: -0.87557757, w: -0.42762727} + outSlope: {x: 0.41142222, y: -0.15656203, z: -0.87557757, w: -0.42762727} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: 0.7749881, y: 0.019235926, z: 0.008711139, w: 0.6316229} + inSlope: {x: -0.45706892, y: 0.059435487, z: -1.3466964, w: 0.55540854} + outSlope: {x: -0.45706892, y: 0.059435487, z: -1.3466964, w: 0.55540854} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: 0.75015503, y: 0.01762491, z: -0.03947234, w: 0.6598475} + inSlope: {x: -2.2784543, y: -0.043771386, z: -0.7443778, w: 2.2392752} + outSlope: {x: -2.2784543, y: -0.043771386, z: -0.7443778, w: 2.2392752} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.62309116, y: 0.016317833, z: -0.04091406, w: 0.7809079} + inSlope: {x: -2.9006653, y: -1.0452151, z: -0.54331243, w: 2.4857821} + outSlope: {x: -2.9006653, y: -1.0452151, z: -0.54331243, w: 2.4857821} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.55677736, y: -0.052056104, z: -0.07569317, w: 0.8255663} + inSlope: {x: -0.6841101, y: -0.9584296, z: -0.45580328, w: 0.4647277} + outSlope: {x: -0.6841101, y: -0.9584296, z: -0.45580328, w: 0.4647277} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: 0.57748383, y: -0.047577474, z: -0.07130094, w: 0.81188977} + inSlope: {x: 0.427181, y: -0.5555659, z: 0.5471283, w: -0.30873114} + outSlope: {x: 0.427181, y: -0.5555659, z: 0.5471283, w: -0.30873114} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: 0.5852561, y: -0.08909383, z: -0.039217945, w: 0.8049842} + inSlope: {x: 0.40138724, y: -0.6911004, z: 0.5028502, w: -0.32271895} + outSlope: {x: 0.40138724, y: -0.6911004, z: 0.5028502, w: -0.32271895} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.604243, y: -0.09365083, z: -0.037777595, w: 0.7903752} + inSlope: {x: 0.74409044, y: 1.0496532, z: -0.088596776, w: -0.50871766} + outSlope: {x: 0.74409044, y: 1.0496532, z: -0.088596776, w: -0.50871766} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: 0.6348621, y: -0.01911695, z: -0.045124397, w: 0.7710697} + inSlope: {x: 0.6121642, y: 1.4825599, z: 0.54765826, w: -0.39385113} + outSlope: {x: 0.6121642, y: 1.4825599, z: 0.54765826, w: -0.39385113} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.6450539, y: 0.0051864902, z: -0.0012670456, w: 0.76411843} + inSlope: {x: -0.48064208, y: 0.49895993, z: 1.0210514, w: 0.3952879} + outSlope: {x: -0.48064208, y: 0.49895993, z: 1.0210514, w: 0.3952879} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: 0.6028193, y: 0.014147043, z: 0.022945696, w: 0.79742223} + inSlope: {x: -1.2170153, y: 0.31995422, z: 0.65791726, w: 0.90278566} + outSlope: {x: -1.2170153, y: 0.31995422, z: 0.65791726, w: 0.90278566} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.56391954, y: 0.02651678, z: 0.04259412, w: 0.82430416} + inSlope: {x: -0.8669181, y: -0.18067087, z: -0.19760373, w: 0.6140727} + outSlope: {x: -0.8669181, y: -0.18067087, z: -0.19760373, w: 0.6140727} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: 0.54502475, y: 0.0021023296, z: 0.009772132, w: 0.8383604} + inSlope: {x: -1.1636604, y: -0.6365861, z: -0.9098723, w: 0.73698616} + outSlope: {x: -1.1636604, y: -0.6365861, z: -0.9098723, w: 0.73698616} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: 0.4863422, y: -0.015922291, z: -0.01806403, w: 0.87343657} + inSlope: {x: -1.0573592, y: -0.5829284, z: -0.73240423, w: 0.60361785} + outSlope: {x: -1.0573592, y: -0.5829284, z: -0.73240423, w: 0.60361785} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.47453415, y: -0.036759544, z: -0.039054792, w: 0.8786016} + inSlope: {x: 0.37984395, y: -0.79995537, z: -0.8559003, w: -0.30522692} + outSlope: {x: 0.37984395, y: -0.79995537, z: -0.8559003, w: -0.30522692} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: 0.51166517, y: -0.069252655, z: -0.07512406, w: 0.8530881} + inSlope: {x: 1.2039613, y: -0.017973512, z: 0.15804255, w: -0.7195869} + outSlope: {x: 1.2039613, y: -0.017973512, z: 0.15804255, w: -0.7195869} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5666667 + value: {x: 0.5547983, y: -0.03795778, z: -0.028518615, w: 0.8306291} + inSlope: {x: 0.17401001, y: 1.7157775, z: 2.439493, w: -0.09938876} + outSlope: {x: 0.17401001, y: 1.7157775, z: 2.439493, w: -0.09938876} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.5232659, y: 0.04513247, z: 0.08750872, w: 0.84646213} + inSlope: {x: -1.1106597, y: 1.4572875, z: 1.7651366, w: 0.5950659} + outSlope: {x: -1.1106597, y: 1.4572875, z: 1.7651366, w: 0.5950659} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6333334 + value: {x: 0.48075432, y: 0.05919466, z: 0.089157045, w: 0.8703002} + inSlope: {x: 2.006418, y: 0.11603572, z: 0.036909312, w: -1.4977877} + outSlope: {x: 2.006418, y: 0.11603572, z: 0.036909312, w: -1.4977877} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.6570269, y: 0.052868202, z: 0.089969344, w: 0.74660975} + inSlope: {x: 4.0020933, y: -0.4428123, z: -0.33109874, w: -3.1525402} + outSlope: {x: 4.0020933, y: -0.4428123, z: -0.33109874, w: -3.1525402} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.70000005 + value: {x: 0.74756044, y: 0.029673828, z: 0.067083776, w: 0.66013086} + inSlope: {x: 2.7160044, y: -0.69583064, z: -0.6865665, w: -2.5943644} + outSlope: {x: 2.7160044, y: -0.69583064, z: -0.6865665, w: -2.5943644} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.15898208, y: -0.032267544, z: 0.12054086, w: 0.9793638} + inSlope: {x: -0.051079538, y: -0.0018045678, z: -0.0032816825, w: 0.008590221} + outSlope: {x: -0.051079538, y: -0.0018045678, z: -0.0032816825, w: 0.008590221} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.15727943, y: -0.032327697, z: 0.12043147, w: 0.97965014} + inSlope: {x: 1.0476031, y: -0.08492465, z: 0.03782216, w: -0.21675913} + outSlope: {x: 1.0476031, y: -0.08492465, z: 0.03782216, w: -0.21675913} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: 0.22882229, y: -0.03792919, z: 0.123062335, w: 0.9649132} + inSlope: {x: 4.811291, y: -0.6490561, z: 0.023406519, w: -1.696682} + outSlope: {x: 4.811291, y: -0.6490561, z: 0.023406519, w: -1.696682} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: 0.47803223, y: -0.075598106, z: 0.1219919, w: 0.866538} + inSlope: {x: 5.228606, y: -0.08528352, z: -0.057339482, w: -2.3757217} + outSlope: {x: 5.228606, y: -0.08528352, z: -0.057339482, w: -2.3757217} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.5773961, y: -0.043614764, z: 0.1192397, w: 0.8065317} + inSlope: {x: 1.9104983, y: -0.051145613, z: -0.06351025, w: -1.2502519} + outSlope: {x: 1.9104983, y: -0.051145613, z: -0.06351025, w: -1.2502519} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.6053988, y: -0.07900781, z: 0.11775789, w: 0.78318787} + inSlope: {x: -1.7320482, y: -1.8302586, z: -0.2110092, w: 0.8761922} + outSlope: {x: -1.7320482, y: -1.8302586, z: -0.2110092, w: 0.8761922} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: 0.46192616, y: -0.16563204, z: 0.10517242, w: 0.8649446} + inSlope: {x: -4.677463, y: 0.16305292, z: -0.029905766, w: 2.4489808} + outSlope: {x: -4.677463, y: 0.16305292, z: -0.029905766, w: 2.4489808} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: 0.29356787, y: -0.06813766, z: 0.11576416, w: 0.9464533} + inSlope: {x: -2.5945134, y: 1.7788632, z: 0.27679116, w: 1.2482277} + outSlope: {x: -2.5945134, y: 1.7788632, z: 0.27679116, w: 1.2482277} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.2889586, y: -0.047041174, z: 0.12362516, w: 0.94815975} + inSlope: {x: 0.16203627, y: 0.28145224, z: 0.11889909, w: -0.048836775} + outSlope: {x: 0.16203627, y: 0.28145224, z: 0.11889909, w: -0.048836775} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: 0.30437028, y: -0.049374178, z: 0.12369077, w: 0.9431975} + inSlope: {x: 0.43260637, y: -0.10765136, z: -0.015498029, w: -0.14287324} + outSlope: {x: 0.43260637, y: -0.10765136, z: -0.015498029, w: -0.14287324} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.31779903, y: -0.05421793, z: 0.12259196, w: 0.9386349} + inSlope: {x: 1.1111467, y: 0.13900986, z: 0.06838136, w: -0.41070077} + outSlope: {x: 1.1111467, y: 0.13900986, z: 0.06838136, w: -0.41070077} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: 0.37844673, y: -0.040106855, z: 0.12824953, w: 0.91581744} + inSlope: {x: -1.1689708, y: 0.3757798, z: 0.062233757, w: 0.3513008} + outSlope: {x: -1.1689708, y: 0.3757798, z: 0.062233757, w: 0.3513008} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.23986752, y: -0.029165937, z: 0.12674087, w: 0.96205497} + inSlope: {x: -2.2880573, y: 0.039290585, z: -0.078398496, w: 0.7470608} + outSlope: {x: -2.2880573, y: 0.039290585, z: -0.078398496, w: 0.7470608} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: 0.22590946, y: -0.037487473, z: 0.12302296, w: 0.96562153} + inSlope: {x: -0.021997243, y: -0.1532319, z: -0.053352494, w: 0.0069370866} + outSlope: {x: -0.021997243, y: -0.1532319, z: -0.053352494, w: 0.0069370866} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: 0.23840104, y: -0.039381396, z: 0.12318404, w: 0.96251744} + inSlope: {x: 0.2516371, y: -0.03815013, z: 0.00317406, w: -0.063130274} + outSlope: {x: 0.2516371, y: -0.03815013, z: 0.00317406, w: -0.063130274} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: 0.2494594, y: -0.041057684, z: 0.12330965, w: 0.9596244} + inSlope: {x: 0.067076854, y: -0.010166625, z: 0.0007533649, w: -0.017622098} + outSlope: {x: 0.067076854, y: -0.010166625, z: 0.0007533649, w: -0.017622098} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5666667 + value: {x: 0.24715705, y: -0.04070859, z: 0.12328479, w: 0.96023804} + inSlope: {x: 0.15487118, y: -0.02346707, z: 0.0015394784, w: -0.042375382} + outSlope: {x: 0.15487118, y: -0.02346707, z: 0.0015394784, w: -0.042375382} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.25978413, y: -0.042622153, z: 0.12341228, w: 0.9567994} + inSlope: {x: 0.32301337, y: -0.04894608, z: 0.003068895, w: -0.08959384} + outSlope: {x: 0.32301337, y: -0.04894608, z: 0.003068895, w: -0.08959384} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6333334 + value: {x: 0.26869127, y: -0.04397166, z: 0.12348938, w: 0.9542651} + inSlope: {x: -1.4847919, y: 0.15494424, z: -0.041649383, w: 0.3338308} + outSlope: {x: -1.4847919, y: 0.15494424, z: -0.041649383, w: 0.3338308} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.16079812, y: -0.03229255, z: 0.12063566, w: 0.97905475} + inSlope: {x: -1.6456468, y: 0.17558153, z: -0.04422274, w: 0.37648147} + outSlope: {x: -1.6456468, y: 0.17558153, z: -0.04422274, w: 0.37648147} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.70000005 + value: {x: 0.15898159, y: -0.032266237, z: 0.1205412, w: 0.97936386} + inSlope: {x: -0.054495737, y: 0.0007893511, z: -0.0028337515, w: 0.009273283} + outSlope: {x: -0.054495737, y: 0.0007893511, z: -0.0028337515, w: 0.009273283} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot/mixamorig:RightToeBase + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.04573715, y: -0.039433047, z: -0.0727525, w: 0.99552006} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.04573715, y: -0.039433047, z: -0.0727525, w: 0.99552006} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot/mixamorig:RightToeBase/mixamorig:RightToe_End + m_CompressedRotationCurves: [] + m_EulerCurves: [] + m_PositionCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.0003588531, y: 0.01621607, z: -0.00056528364} + inSlope: {x: -0.0018696336, y: 0.011395467, z: -0.018282967} + outSlope: {x: -0.0018696336, y: 0.011395467, z: -0.018282967} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: -0.00042117442, y: 0.016595924, z: -0.0011747153} + inSlope: {x: -0.0014760675, y: 0.008289725, z: -0.012797987} + outSlope: {x: -0.001476077, y: 0.008289814, z: -0.012797978} + tangentMode: 0 + weightedMode: 0 + 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.0004572585, y: 0.016768724, z: -0.0014184811} + inSlope: {x: 0.00047527245, y: 0.001670123, z: -0.00022932782} + outSlope: {x: 0.00047526738, y: 0.0016703525, z: -0.00022934514} + tangentMode: 0 + weightedMode: 0 + 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.00038948993, y: 0.016707284, z: -0.001190004} + inSlope: {x: 0.0033787056, y: 0.00008810456, z: 0.005971507} + outSlope: {x: 0.003378703, y: 0.00008813598, z: 0.005971542} + tangentMode: 0 + weightedMode: 0 + 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.00023201125, y: 0.016774606, z: -0.0010203789} + inSlope: {x: 0.0036635224, y: -0.006180909, z: 0.0068377354} + outSlope: {x: 0.0036635338, y: -0.00618084, z: 0.006837761} + tangentMode: 0 + weightedMode: 0 + 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.00014525493, y: 0.016295223, z: -0.000734155} + inSlope: {x: 0.0023967463, y: -0.017759468, z: 0.011936556} + outSlope: {x: 0.002396747, y: -0.01775962, z: 0.01193659} + tangentMode: 0 + weightedMode: 0 + 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.000072228526, y: 0.015590635, z: -0.00022461021} + inSlope: {x: 0.0014830318, y: -0.00934685, z: 0.0072290665} + outSlope: {x: 0.0014830265, y: -0.00934707, z: 0.0072290353} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.23333333 + value: {x: -0.0000463865, y: 0.015672099, z: -0.00025221947} + inSlope: {x: 0.0038022618, y: 0.0059544644, z: -0.0020480554} + outSlope: {x: 0.0038022494, y: 0.005954783, z: -0.002048052} + tangentMode: 0 + weightedMode: 0 + 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.00018125547, y: 0.015987612, z: -0.0003611471} + inSlope: {x: 0.0050119236, y: 0.006195245, z: -0.0005185282} + outSlope: {x: 0.0050119655, y: 0.006195026, z: -0.0005185467} + tangentMode: 0 + weightedMode: 0 + 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.00028774462, y: 0.016085107, z: -0.00028678906} + inSlope: {x: 0.0040843175, y: 0.002376071, z: 0.00021512799} + outSlope: {x: 0.004084322, y: 0.002376277, z: 0.00021514643} + tangentMode: 0 + weightedMode: 0 + 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.00045354417, y: 0.016146036, z: -0.0003468042} + inSlope: {x: 0.005332436, y: 0.0030383994, z: -0.007569742} + outSlope: {x: 0.005332453, y: 0.00303837, z: -0.0075697224} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: 0.000643242, y: 0.016287668, z: -0.00079143915} + inSlope: {x: 0.0031412106, y: 0.0035153776, z: -0.0103803845} + outSlope: {x: 0.0031412353, y: 0.0035152724, z: -0.0103804255} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.4 + value: {x: 0.0006629597, y: 0.016380398, z: -0.0010388343} + inSlope: {x: -0.0012925201, y: 0.0035627857, z: -0.0014648578} + outSlope: {x: -0.0012925253, y: 0.0035625435, z: -0.001464895} + tangentMode: 0 + weightedMode: 0 + 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.00055707374, y: 0.016525188, z: -0.0008890984} + inSlope: {x: -0.0050149313, y: 0.0006175631, z: 0.0049189967} + outSlope: {x: -0.0050149197, y: 0.0006175863, z: 0.0049190056} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.46666667 + value: {x: 0.00032863053, y: 0.01642158, z: -0.0007108996} + inSlope: {x: -0.004478281, y: -0.0044178143, z: 0.0033042412} + outSlope: {x: -0.004478303, y: -0.0044176164, z: 0.003304254} + tangentMode: 0 + weightedMode: 0 + 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.00025851995, y: 0.016230678, z: -0.0006688143} + inSlope: {x: -0.0005252295, y: -0.006630141, z: -0.00021942356} + outSlope: {x: -0.0005252417, y: -0.0066302232, z: -0.00021940157} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: 0.00029361498, y: 0.01597956, z: -0.00072552747} + inSlope: {x: 0.00029929733, y: -0.0038567362, z: 0.0027892254} + outSlope: {x: 0.00029931596, y: -0.0038566317, z: 0.002789225} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.56666666 + value: {x: 0.00027847412, y: 0.015973562, z: -0.00048286768} + inSlope: {x: -0.0029141863, y: 0.0007230526, z: 0.003291799} + outSlope: {x: -0.0029141428, y: 0.0007231789, z: 0.0032917985} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.6 + value: {x: 0.00009933612, y: 0.016027763, z: -0.00050607417} + inSlope: {x: -0.005528024, y: 0.0022471831, z: -0.0015127575} + outSlope: {x: -0.0055281157, y: 0.0022469535, z: -0.0015127832} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.6333333 + value: {x: -0.000090065245, y: 0.016123366, z: -0.0005837194} + inSlope: {x: -0.0049003633, y: -0.00004697576, z: -0.00009627761} + outSlope: {x: -0.004900316, y: -0.000046964444, z: -0.00009629474} + tangentMode: 0 + weightedMode: 0 + 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.00022735407, y: 0.016024638, z: -0.0005124924} + inSlope: {x: -0.004031773, y: 0.0013903577, z: 0.0002765054} + outSlope: {x: -0.0040318337, y: 0.0013908067, z: 0.00027652225} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.7 + value: {x: -0.0003588531, y: 0.01621607, z: -0.00056528393} + inSlope: {x: -0.0039449837, y: 0.0057431418, z: -0.0015837563} + outSlope: {x: -0.0039449837, y: 0.0057431418, z: -0.0015837563} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips + m_ScaleCurves: [] + m_FloatCurves: [] + m_PPtrCurves: [] + m_SampleRate: 30 + 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: 1083781737 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1083781737 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 408225041 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3001700786 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3132553515 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 168334831 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 215603437 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1852142506 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1775379527 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1207142558 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3198065886 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2486468252 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1925155201 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1714668715 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2119318601 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2334650127 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1454392865 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2471676248 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 565509406 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2364716999 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3092991833 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2853632173 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 407569882 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3106263194 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 688943277 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2140469971 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1021604224 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 733358149 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1601611806 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 4126269581 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2280639224 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3984737358 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3155596823 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1692231856 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3048725362 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1185900278 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2828911296 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1886386198 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 395264987 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 4080340377 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3974837130 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1014061991 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1587372701 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 357817416 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1651132406 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1915810720 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2015721024 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 407230557 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2938783533 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 10533847 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 523512273 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 4220895696 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2538289614 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3575002567 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 971364194 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1941555904 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3482077456 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 440322630 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1935085395 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2435940167 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3169137491 + 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: 0.70000005 + 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/Jammo-Character/Animations/Default/a_Running.anim.meta b/Assets/Jammo-Character/Animations/Default/a_Running.anim.meta new file mode 100644 index 0000000..c1f7031 --- /dev/null +++ b/Assets/Jammo-Character/Animations/Default/a_Running.anim.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 2e5cbd52f3af8384fafcc9a73ad2f1e0 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 7400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Jammo-Character/Animations/Default/a_Walking.anim b/Assets/Jammo-Character/Animations/Default/a_Walking.anim new file mode 100644 index 0000000..3a89d5c --- /dev/null +++ b/Assets/Jammo-Character/Animations/Default/a_Walking.anim @@ -0,0 +1,5533 @@ +%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: a_Walking + 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, 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.033333335 + 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: Armature.001 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.017117357, y: -0.016250843, z: -0.011564571, w: 0.99965453} + inSlope: {x: 0.15453519, y: 0.10367861, z: -0.0050657983, w: -0.0015968083} + outSlope: {x: 0.15453519, y: 0.10367861, z: -0.0050657983, w: -0.0015968083} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: 0.031711813, y: 0.0026014568, z: 0.009046467, w: 0.99945277} + inSlope: {x: 0.08424731, y: 0.3520066, z: 0.41288552, w: -0.007612109} + outSlope: {x: 0.08424731, y: 0.3520066, z: 0.41288552, w: -0.007612109} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: 0.02689245, y: 0.03101299, z: 0.018446418, w: 0.99898684} + inSlope: {x: -0.22691509, y: -0.07036628, z: -0.1838848, w: 0.011966229} + outSlope: {x: -0.22691509, y: -0.07036628, z: -0.1838848, w: 0.011966229} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: -0.0071024387, y: -0.027810352, z: 0.0072520073, w: 0.9995617} + inSlope: {x: 0.032138467, y: -0.15080766, z: -0.03009049, w: -0.00376403} + outSlope: {x: 0.032138467, y: -0.15080766, z: -0.03009049, w: -0.00376403} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6333334 + value: {x: 0.006978399, y: -0.04661064, z: -0.009276512, w: 0.9988457} + inSlope: {x: 0.21683007, y: -0.28821844, z: -0.33918768, w: -0.018359726} + outSlope: {x: 0.21683007, y: -0.28821844, z: -0.33918768, w: -0.018359726} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.023986256, y: -0.065033965, z: -0.02285474, w: 0.99733293} + inSlope: {x: -0.10226684, y: 0.049889505, z: 0.21279398, w: 0.009232154} + outSlope: {x: -0.10226684, y: 0.049889505, z: 0.21279398, w: 0.009232154} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000001 + value: {x: 0.013522175, y: -0.05318329, z: -0.0063740714, w: 0.99847287} + inSlope: {x: -0.04783902, y: 0.219913, z: 0.10674422, w: 0.013273358} + outSlope: {x: -0.04783902, y: 0.219913, z: 0.10674422, w: 0.013273358} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0333334 + value: {x: 0.017117355, y: -0.01625084, z: -0.0115645565, w: 0.99965453} + inSlope: {x: -0.040254824, y: 0.081424385, z: 0.0049533844, w: 0.0022083463} + outSlope: {x: -0.040254824, y: 0.081424385, z: 0.0049533844, w: 0.0022083463} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.053702347, y: 0.011399578, z: 0.012895611, w: 0.9984087} + inSlope: {x: -0.09993217, y: -0.21365461, z: 0.005459245, w: 0.0068128104} + outSlope: {x: -0.09993217, y: -0.21365461, z: 0.005459245, w: 0.0068128104} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: 0.04658088, y: -0.004409778, z: 0.0034516973, w: 0.99889886} + inSlope: {x: -0.123327225, y: -0.33445656, z: -0.46682048, w: 0.0022512677} + outSlope: {x: -0.123327225, y: -0.33445656, z: -0.46682048, w: 0.0022512677} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.036837317, y: -0.029698882, z: -0.034630142, w: 0.9982794} + inSlope: {x: -0.14669293, y: -0.2309586, z: -0.26284996, w: -0.0075307493} + outSlope: {x: -0.14669293, y: -0.2309586, z: -0.26284996, w: -0.0075307493} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.031529926, y: -0.04004683, z: -0.0029494863, w: 0.99869585} + inSlope: {x: -0.085643366, y: 0.03126059, z: 0.3463456, w: 0.005025566} + outSlope: {x: -0.085643366, y: 0.03126059, z: 0.3463456, w: 0.005025566} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.03819626, y: -0.008723045, z: 0.0062339255, w: 0.99921274} + inSlope: {x: 0.105228834, y: 0.5376733, z: -0.13823052, w: 0.0013643473} + outSlope: {x: 0.105228834, y: 0.5376733, z: -0.13823052, w: 0.0013643473} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5666667 + value: {x: 0.044307526, y: 0.04423595, z: 0.00072777225, w: 0.9980378} + inSlope: {x: 0.022177108, y: 0.1749402, z: 0.10497411, w: -0.008870065} + outSlope: {x: 0.022177108, y: 0.1749402, z: 0.10497411, w: -0.008870065} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6333334 + value: {x: 0.04144169, y: 0.057826973, z: 0.022822103, w: 0.997205} + inSlope: {x: -0.14163767, y: 0.2166762, z: 0.46779186, w: -0.016770959} + outSlope: {x: -0.14163767, y: 0.2166762, z: 0.46779186, w: -0.016770959} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.031762235, y: 0.05975399, z: 0.029731859, w: 0.99726456} + inSlope: {x: 0.11712673, y: -0.13117348, z: -0.35651374, w: 0.013280513} + outSlope: {x: 0.11712673, y: -0.13117348, z: -0.35651374, w: 0.013280513} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000001 + value: {x: 0.036909573, y: 0.055630937, z: 0.0029257748, w: 0.99776465} + inSlope: {x: -0.05128263, y: 0.07476925, z: -0.18900022, w: -0.0008395347} + outSlope: {x: -0.05128263, y: 0.07476925, z: -0.18900022, w: -0.0008395347} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.86666673 + value: {x: 0.03339136, y: 0.05559207, z: 0.004596095, w: 0.9978845} + inSlope: {x: 0.039062362, y: -0.289634, z: 0.115652636, w: 0.012445455} + outSlope: {x: 0.039062362, y: -0.289634, z: 0.115652636, w: 0.012445455} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9666667 + value: {x: 0.043145645, y: 0.017886858, z: 0.01584948, w: 0.99878293} + inSlope: {x: 0.08164367, y: -0.18248309, z: 0.0154992165, w: -0.00018596661} + outSlope: {x: 0.08164367, y: -0.18248309, z: 0.0154992165, w: -0.00018596661} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0333334 + value: {x: 0.053702272, y: 0.011399581, z: 0.012895588, w: 0.9984087} + inSlope: {x: 0.21119379, y: -0.07245312, z: -0.072721116, w: -0.008670665} + outSlope: {x: 0.21119379, y: -0.07245312, z: -0.072721116, w: -0.008670665} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.021565778, y: 0.021340413, z: -0.010288945, w: 0.99948674} + inSlope: {x: -0.06502334, y: -0.15496126, z: 0.14100431, w: 0.005359053} + outSlope: {x: -0.06502334, y: -0.15496126, z: 0.14100431, w: 0.005359053} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: 0.017499752, y: -0.015171237, z: 0.0151003245, w: 0.99961776} + inSlope: {x: 0.012671202, y: -0.18701148, z: -0.034009986, w: -0.0023549793} + outSlope: {x: 0.012671202, y: -0.18701148, z: -0.034009986, w: -0.0023549793} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.013150811, y: -0.0089035565, z: 0.004755655, w: 0.9998626} + inSlope: {x: 0.06444533, y: 0.1938566, z: -0.04210276, w: 0.00069647987} + outSlope: {x: 0.06444533, y: 0.1938566, z: -0.04210276, w: 0.00069647987} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6333334 + value: {x: 0.020439845, y: 0.052112415, z: -0.022087798, w: 0.9981877} + inSlope: {x: 0.054455154, y: 0.22304028, z: -0.19735453, w: -0.01686752} + outSlope: {x: 0.054455154, y: 0.22304028, z: -0.19735453, w: -0.01686752} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.019417243, y: 0.06475142, z: -0.023623893, w: 0.99743277} + inSlope: {x: -0.012952387, y: -0.11239447, z: -0.017981969, w: 0.0071793804} + outSlope: {x: -0.012952387, y: -0.11239447, z: -0.017981969, w: 0.0071793804} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0333334 + value: {x: 0.021565823, y: 0.021340417, z: -0.010288945, w: 0.99948674} + inSlope: {x: -0.031742632, y: -0.17480083, z: 0.09407885, w: 0.0060617765} + outSlope: {x: -0.031742632, y: -0.17480083, z: 0.09407885, w: 0.0060617765} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.00877612, y: 0.02111248, z: -0.010995133, w: 0.99967813} + inSlope: {x: -0.06240395, y: -0.15665883, z: 0.143416, w: 0.0046169753} + outSlope: {x: -0.06240395, y: -0.15665883, z: 0.143416, w: 0.0046169753} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: 0.004439604, y: -0.015117029, z: 0.014979478, w: 0.99976367} + inSlope: {x: 0.016320836, y: -0.18615717, z: -0.028979572, w: -0.0022664664} + outSlope: {x: 0.016320836, y: -0.18615717, z: -0.028979572, w: -0.0022664664} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.0002551589, y: -0.009409818, z: 0.004451086, w: 0.9999458} + inSlope: {x: 0.067706764, y: 0.19471748, z: -0.0375515, w: 0.001587867} + outSlope: {x: 0.067706764, y: 0.19471748, z: -0.0375515, w: 0.001587867} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6333334 + value: {x: 0.006428315, y: 0.05175018, z: -0.023114285, w: 0.99837184} + inSlope: {x: 0.03540887, y: 0.21946523, z: -0.20478989, w: -0.016083421} + outSlope: {x: 0.03540887, y: 0.21946523, z: -0.20478989, w: -0.016083421} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.0053214165, y: 0.06474452, z: -0.024621423, w: 0.9975839} + inSlope: {x: -0.019247603, y: -0.1084667, z: -0.012532782, w: 0.0068852315} + outSlope: {x: -0.019247603, y: -0.1084667, z: -0.012532782, w: 0.0068852315} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0333334 + value: {x: 0.008776125, y: 0.021112466, z: -0.010995128, w: 0.99967813} + inSlope: {x: -0.0316083, y: -0.17676683, z: 0.097176515, w: 0.0057738866} + outSlope: {x: -0.0316083, y: -0.17676683, z: 0.097176515, w: 0.0057738866} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.02131388, y: -0.01856972, z: 0.0021572765, w: 0.999598} + inSlope: {x: 0.011090095, y: 0.063741855, z: 0.032864798, w: 0.00079035753} + outSlope: {x: 0.011090095, y: 0.063741855, z: 0.032864798, w: 0.00079035753} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.021544836, y: 0.0041891774, z: 0.00076516875, w: 0.99975884} + inSlope: {x: 0.08378129, y: -0.014127091, z: 0.3067444, w: -0.0028055909} + outSlope: {x: 0.08378129, y: -0.014127091, z: 0.3067444, w: -0.0028055909} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: 0.025328744, y: -0.014873459, z: 0.0192211, w: 0.99938375} + inSlope: {x: 0.05618039, y: -0.128968, z: -0.14449644, w: -0.0005283963} + outSlope: {x: 0.05618039, y: -0.128968, z: -0.14449644, w: -0.0005283963} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6333334 + value: {x: 0.028362261, y: -0.037381273, z: 0.0148432935, w: 0.99878824} + inSlope: {x: -0.04298058, y: -0.13460426, z: 0.14328006, w: -0.0058972845} + outSlope: {x: -0.04298058, y: -0.13460426, z: 0.14328006, w: -0.0058972845} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7666667 + value: {x: 0.020729784, y: -0.046805456, z: 0.016369876, w: 0.99855477} + inSlope: {x: 0.018374123, y: 0.011217827, z: -0.2304371, w: 0.0029459572} + outSlope: {x: 0.018374123, y: 0.011217827, z: -0.2304371, w: 0.0029459572} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9333334 + value: {x: 0.0232245, y: -0.029544719, z: -0.011501034, w: 0.99922746} + inSlope: {x: -0.021691872, y: 0.16754891, z: 0.06395229, w: 0.0061279535} + outSlope: {x: -0.021691872, y: 0.16754891, z: 0.06395229, w: 0.0061279535} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0333334 + value: {x: 0.021313889, y: -0.018569713, z: 0.0021572781, w: 0.999598} + inSlope: {x: -0.057325084, y: 0.052922193, z: 0.12514627, w: 0.002297753} + outSlope: {x: -0.057325084, y: 0.052922193, z: 0.12514627, w: 0.002297753} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.027828554, y: -0.03748602, z: 0.020610698, w: 0.998697} + inSlope: {x: 0.09922284, y: 0.31384972, z: -0.037581153, w: 0.00795722} + outSlope: {x: 0.09922284, y: 0.31384972, z: -0.037581153, w: 0.00795722} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.015644101, y: -0.00713885, z: 0.022129184, w: 0.9996072} + inSlope: {x: -0.19162148, y: 0.0686634, z: -0.0073060542, w: 0.0035181637} + outSlope: {x: -0.19162148, y: 0.0686634, z: -0.0073060542, w: 0.0035181637} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.00981669, y: 0.011898948, z: 0.006347065, w: 0.9998609} + inSlope: {x: 0.26209888, y: 0.17053968, z: -0.35654196, w: -0.0034511092} + outSlope: {x: 0.26209888, y: 0.17053968, z: -0.35654196, w: -0.0034511092} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: 0.027957266, y: 0.011632915, z: -0.022363482, w: 0.99929124} + inSlope: {x: -0.12575999, y: -0.26216877, z: 0.08111984, w: 0.006490047} + outSlope: {x: -0.12575999, y: -0.26216877, z: 0.08111984, w: 0.006490047} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: 0.02397806, y: -0.033855382, z: 0.011723551, w: 0.9990703} + inSlope: {x: 0.21354207, y: -0.4197883, z: 0.24801028, w: -0.02130927} + outSlope: {x: 0.21354207, y: -0.4197883, z: 0.24801028, w: -0.02130927} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.04145291, y: -0.07871608, z: 0.026997425, w: 0.9956689} + inSlope: {x: -0.16064504, y: -0.22996606, z: 0.029050926, w: -0.0124079045} + outSlope: {x: -0.16064504, y: -0.22996606, z: 0.029050926, w: -0.0124079045} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.70000005 + value: {x: 0.020732006, y: -0.091155164, z: 0.027274061, w: 0.99524724} + inSlope: {x: -0.117410794, y: -0.026702601, z: 0.018772673, w: -0.0004675971} + outSlope: {x: -0.117410794, y: -0.026702601, z: 0.018772673, w: -0.0004675971} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000001 + value: {x: 0.008100005, y: -0.100124955, z: 0.046072792, w: 0.9938746} + inSlope: {x: 0.047105137, y: -0.23074779, z: 0.34176537, w: -0.03918887} + outSlope: {x: 0.047105137, y: -0.23074779, z: 0.34176537, w: -0.03918887} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.90000004 + value: {x: 0.019085875, y: -0.09609073, z: 0.045420825, w: 0.99415255} + inSlope: {x: -0.047140244, y: 0.45768046, z: -0.26567414, w: 0.055679083} + outSlope: {x: -0.047140244, y: 0.45768046, z: -0.26567414, w: 0.055679083} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.022199143, y: -0.04535291, z: 0.021452384, w: 0.9984939} + inSlope: {x: 0.15478803, y: 0.32918394, z: -0.09836311, w: 0.014820103} + outSlope: {x: 0.15478803, y: 0.32918394, z: -0.09836311, w: 0.014820103} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0333334 + value: {x: 0.027828537, y: -0.037486024, z: 0.020610709, w: 0.998697} + inSlope: {x: 0.16888139, y: 0.23600595, z: -0.025250193, w: 0.006092175} + outSlope: {x: 0.16888139, y: 0.23600595, z: -0.025250193, w: 0.006092175} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.06928724, y: 0, z: -0, w: 0.99759674} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: -0.06928724, y: 0, z: -0, w: 0.99759674} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head/mixamorig:HeadTop_End + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.40506425, y: -0.45798013, z: 0.59357256, w: 0.5233056} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.40506425, y: -0.45798013, z: 0.59357256, w: 0.5233056} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head/mixamorig:LeftEar + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.40506425, y: 0.45798013, z: -0.59357256, w: 0.5233056} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.40506425, y: 0.45798013, z: -0.59357256, w: 0.5233056} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head/mixamorig:RightEar + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.5431298, y: -0.43427342, z: 0.49894667, w: 0.5171739} + inSlope: {x: -0.14940082, y: -0.1643738, z: 0.105096094, w: -0.08469521} + outSlope: {x: -0.14940082, y: -0.1643738, z: 0.105096094, w: -0.08469521} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.520519, y: -0.45836878, z: 0.5101274, w: 0.50865316} + inSlope: {x: -0.109301805, y: -0.11458933, z: 0.06847499, w: -0.05918382} + outSlope: {x: -0.109301805, y: -0.11458933, z: 0.06847499, w: -0.05918382} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: 0.5266272, y: -0.4522592, z: 0.5130948, w: 0.5048358} + inSlope: {x: 0.08180917, y: 0.08484856, z: -0.012600125, w: 0.0029066205} + outSlope: {x: 0.08180917, y: 0.08484856, z: -0.012600125, w: 0.0029066205} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.53954554, y: -0.43878382, z: 0.51231533, w: 0.5038775} + inSlope: {x: 0.11664297, y: 0.12123804, z: 0.041473188, w: -0.061424345} + outSlope: {x: 0.11664297, y: 0.12123804, z: 0.041473188, w: -0.061424345} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.54736173, y: -0.4292082, z: 0.491579, w: 0.5239519} + inSlope: {x: 0.08331031, y: 0.09573521, z: -0.0793639, w: 0.06605567} + outSlope: {x: 0.08331031, y: 0.09573521, z: -0.0793639, w: 0.06605567} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.90000004 + value: {x: 0.5400072, y: -0.43699655, z: 0.4925658, w: 0.5242186} + inSlope: {x: 0.03610877, y: 0.037132032, z: 0.012012258, w: -0.01768915} + outSlope: {x: 0.03610877, y: 0.037132032, z: 0.012012258, w: -0.01768915} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0333334 + value: {x: 0.5431303, y: -0.43427294, z: 0.49894726, w: 0.51717323} + inSlope: {x: -0.0080197835, y: -0.015934963, z: 0.084995404, w: -0.08647241} + outSlope: {x: -0.0080197835, y: -0.015934963, z: 0.084995404, w: -0.08647241} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.48067826, y: -0.1491645, z: -0.15311587, w: 0.85044336} + inSlope: {x: 0.4131746, y: -0.39540586, z: 1.1895179, w: -0.1231563} + outSlope: {x: 0.4131746, y: -0.39540586, z: 1.1895179, w: -0.1231563} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.52997154, y: -0.1843324, z: -0.002131416, w: 0.8277362} + inSlope: {x: 0.28199586, y: -0.074642755, z: 0.85624546, w: -0.18776985} + outSlope: {x: 0.28199586, y: -0.074642755, z: 0.85624546, w: -0.18776985} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.5225852, y: -0.17356548, z: 0.015606025, w: 0.83458745} + inSlope: {x: -0.29810342, y: -0.056277446, z: -0.3706662, w: 0.18065037} + outSlope: {x: -0.29810342, y: -0.056277446, z: -0.3706662, w: 0.18065037} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.46967304, y: -0.13982067, z: -0.06486997, w: 0.86928093} + inSlope: {x: -0.32196596, y: 0.8750808, z: -0.6517081, w: 0.2644496} + outSlope: {x: -0.32196596, y: 0.8750808, z: -0.6517081, w: 0.2644496} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: 0.4541162, y: -0.085437514, z: -0.1095908, w: 0.8800391} + inSlope: {x: -0.2014036, y: 0.4996878, z: -0.7421051, w: 0.06233992} + outSlope: {x: -0.2014036, y: 0.4996878, z: -0.7421051, w: 0.06233992} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6333334 + value: {x: 0.37588045, y: -0.06772926, z: -0.23661149, w: 0.89338773} + inSlope: {x: -0.813089, y: 0.039172307, z: -0.55370355, w: 0.19706641} + outSlope: {x: -0.813089, y: 0.039172307, z: -0.55370355, w: 0.19706641} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.2993441, y: -0.06760899, z: -0.27510887, w: 0.9111187} + inSlope: {x: -0.19043222, y: 0.06836177, z: -0.043138176, w: 0.057103373} + outSlope: {x: -0.19043222, y: 0.06836177, z: -0.043138176, w: 0.057103373} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000001 + value: {x: 0.32760268, y: -0.06290469, z: -0.24734634, w: 0.9096919} + inSlope: {x: 0.9047281, y: -0.042154446, z: 0.75816584, w: -0.13188966} + outSlope: {x: 0.9047281, y: -0.042154446, z: 0.75816584, w: -0.13188966} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.86666673 + value: {x: 0.3945579, y: -0.07697702, z: -0.20055036, w: 0.8934082} + inSlope: {x: 0.74027216, y: -0.3606845, z: 0.23532268, w: -0.2981973} + outSlope: {x: 0.74027216, y: -0.3606845, z: 0.23532268, w: -0.2981973} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9666667 + value: {x: 0.44348198, y: -0.1194155, z: -0.20741001, w: 0.86373883} + inSlope: {x: 0.5527484, y: -0.42506114, z: 0.35850352, w: -0.26046598} + outSlope: {x: 0.5527484, y: -0.42506114, z: 0.35850352, w: -0.26046598} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0333334 + value: {x: 0.48067814, y: -0.14916465, z: -0.15311581, w: 0.8504434} + inSlope: {x: 0.52009594, y: -0.477457, z: 1.0185108, w: -0.16370909} + outSlope: {x: 0.52009594, y: -0.477457, z: 1.0185108, w: -0.16370909} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.0076409155, y: 0.030124323, z: -0.094167866, w: 0.9950711} + inSlope: {x: -0.0003991881, y: -0.000995826, z: 0.0049712504, w: 0.0005042553} + outSlope: {x: -0.0003991881, y: -0.000995826, z: 0.0049712504, w: 0.0005042553} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.005535433, y: 0.02489985, z: -0.068218105, w: 0.9973443} + inSlope: {x: -0.041349173, y: -0.102690786, z: 0.5095863, w: 0.035995238} + outSlope: {x: -0.041349173, y: -0.102690786, z: 0.5095863, w: 0.035995238} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.002974944, y: 0.018535925, z: -0.03666211, w: 0.9991514} + inSlope: {x: 0.011737819, y: 0.029192466, z: -0.14466317, w: -0.0064551835} + outSlope: {x: 0.011737819, y: 0.029192466, z: -0.14466317, w: -0.0064551835} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: 0.012503378, y: 0.04215904, z: -0.15409309, w: 0.9870773} + inSlope: {x: 0.07979199, y: 0.19709912, z: -0.9833566, w: -0.16586612} + outSlope: {x: 0.07979199, y: 0.19709912, z: -0.9833566, w: -0.16586612} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5666667 + value: {x: 0.023424262, y: 0.06902712, z: -0.28868404, w: 0.9546456} + inSlope: {x: 0.14112109, y: 0.34564352, z: -1.7391286, w: -0.5572845} + outSlope: {x: 0.14112109, y: 0.34564352, z: -1.7391286, w: -0.5572845} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.03879853, y: 0.10642776, z: -0.47815433, w: 0.87093985} + inSlope: {x: 0.008204223, y: 0.019813629, z: -0.101075664, w: -0.057163347} + outSlope: {x: 0.008204223, y: 0.019813629, z: -0.101075664, w: -0.057163347} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.034640893, y: 0.09636826, z: -0.42691776, w: 0.8984734} + inSlope: {x: -0.10165267, y: -0.24668676, z: 1.2527804, w: 0.60769284} + outSlope: {x: -0.10165267, y: -0.24668676, z: 1.2527804, w: 0.60769284} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.90000004 + value: {x: 0.024327023, y: 0.07123779, z: -0.29980996, w: 0.9510244} + inSlope: {x: -0.19084845, y: -0.46722522, z: 2.352022, w: 0.7742439} + outSlope: {x: -0.19084845, y: -0.46722522, z: 2.352022, w: 0.7742439} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9333334 + value: {x: 0.017677573, y: 0.054917794, z: -0.21786305, w: 0.97427267} + inSlope: {x: -0.17135362, y: -0.4213587, z: 2.1118011, w: 0.5283414} + outSlope: {x: -0.17135362, y: -0.4213587, z: 2.1118011, w: 0.5283414} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0333334 + value: {x: 0.00764111, y: 0.030124338, z: -0.09416808, w: 0.9950711} + inSlope: {x: -0.05610151, y: -0.13902049, z: 0.6914683, w: 0.07856348} + outSlope: {x: -0.05610151, y: -0.13902049, z: 0.6914683, w: 0.07856348} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.09377378, y: -0.08489386, z: 0.051850926, w: 0.99061143} + inSlope: {x: 0.83472127, y: 0.12008651, z: -0.25588742, w: -0.068476796} + outSlope: {x: 0.83472127, y: 0.12008651, z: -0.25588742, w: -0.068476796} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: 0.13593554, y: -0.077977195, z: 0.029622344, w: 0.9871999} + inSlope: {x: 0.26952532, y: 0.16927788, z: -0.3982855, w: -0.010618866} + outSlope: {x: 0.26952532, y: 0.16927788, z: -0.3982855, w: -0.010618866} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.15361384, y: -0.066098504, z: 0.0069833514, w: 0.985893} + inSlope: {x: 0.20688301, y: -0.33489665, z: -0.02809681, w: -0.056675956} + outSlope: {x: 0.20688301, y: -0.33489665, z: -0.02809681, w: -0.056675956} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: 0.15907642, y: -0.084738076, z: 0.00873644, w: 0.98358417} + inSlope: {x: -0.11080411, y: -0.70799303, z: 0.28055853, w: -0.052305743} + outSlope: {x: -0.11080411, y: -0.70799303, z: 0.28055853, w: -0.052305743} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.1316121, y: -0.14205591, z: 0.051382937, w: 0.9797235} + inSlope: {x: -0.15101373, y: -0.5418617, z: 0.49713963, w: -0.07231147} + outSlope: {x: -0.15101373, y: -0.5418617, z: 0.49713963, w: -0.07231147} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: 0.13615932, y: -0.14942215, z: 0.058829892, w: 0.9775852} + inSlope: {x: 0.06546267, y: 0.16271624, z: -0.054160573, w: 0.016483963} + outSlope: {x: 0.06546267, y: 0.16271624, z: -0.054160573, w: 0.016483963} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: 0.12844788, y: -0.10654023, z: 0.04699271, w: 0.98485637} + inSlope: {x: -0.17332542, y: 0.56021667, z: 0.13568792, w: 0.079833254} + outSlope: {x: -0.17332542, y: 0.56021667, z: 0.13568792, w: 0.079833254} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: 0.11566243, y: -0.09317973, z: 0.06289503, w: 0.9869063} + inSlope: {x: -0.34183985, y: -0.05139068, z: 0.094226286, w: 0.028443042} + outSlope: {x: -0.34183985, y: -0.05139068, z: 0.094226286, w: 0.028443042} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.0941649, y: -0.105957806, z: 0.061061975, w: 0.9880169} + inSlope: {x: -0.021073401, y: -0.14542502, z: -0.084282085, w: -0.0077390615} + outSlope: {x: -0.021073401, y: -0.14542502, z: -0.084282085, w: -0.0077390615} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5666667 + value: {x: 0.09348971, y: -0.09665982, z: 0.05588704, w: 0.98933977} + inSlope: {x: -0.5337001, y: 0.21608897, z: -0.06382497, w: 0.06979914} + outSlope: {x: -0.5337001, y: 0.21608897, z: -0.06382497, w: 0.06979914} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.029098108, y: -0.08545966, z: 0.046590626, w: 0.99482626} + inSlope: {x: -1.7730272, y: 0.35619357, z: -0.0803213, w: -0.024654828} + outSlope: {x: -1.7730272, y: 0.35619357, z: -0.0803213, w: -0.024654828} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.70000005 + value: {x: -0.0912061, y: -0.06937027, z: 0.04080542, w: 0.9925745} + inSlope: {x: -1.4888544, y: 0.42701596, z: -0.39829051, w: -0.07409514} + outSlope: {x: -1.4888544, y: 0.42701596, z: -0.39829051, w: -0.07409514} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.12835509, y: -0.056991924, z: 0.02003794, w: 0.9898866} + inSlope: {x: -0.67475235, y: 0.20779157, z: -0.506658, w: -0.052101936} + outSlope: {x: -0.67475235, y: 0.20779157, z: -0.506658, w: -0.052101936} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000001 + value: {x: -0.14470245, y: -0.054880805, z: 0.0029318528, w: 0.98794776} + inSlope: {x: -0.35387757, y: 0.074912086, z: -0.10499562, w: -0.048635617} + outSlope: {x: -0.35387757, y: 0.074912086, z: -0.10499562, w: -0.048635617} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.86666673 + value: {x: -0.16936778, y: -0.03352054, z: 0.0023417887, w: 0.9849799} + inSlope: {x: 0.25566912, y: 0.5442469, z: 0.09534448, w: 0.056684095} + outSlope: {x: 0.25566912, y: 0.5442469, z: 0.09534448, w: 0.056684095} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.90000004 + value: {x: -0.14273682, y: -0.014240252, z: 0.006384817, w: 0.9896376} + inSlope: {x: 1.4584584, y: 0.21159154, z: 0.14714783, w: 0.18227664} + outSlope: {x: 1.4584584, y: 0.21159154, z: 0.14714783, w: 0.18227664} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9666667 + value: {x: -0.00072939444, y: -0.04291446, z: 0.025085831, w: 0.9987635} + inSlope: {x: 1.9172097, y: -0.7437039, z: 0.4245091, w: -0.028369753} + outSlope: {x: 1.9172097, y: -0.7437039, z: 0.4245091, w: -0.028369753} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0333334 + value: {x: 0.09377358, y: -0.08489375, z: 0.05185108, w: 0.99061143} + inSlope: {x: 1.1429042, y: -0.47697106, z: 0.34196466, w: -0.13886833} + outSlope: {x: 1.1429042, y: -0.47697106, z: 0.34196466, w: -0.13886833} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.12159692, y: -0.23703381, z: -0.29414037, w: 0.91788375} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.12159692, y: -0.23703381, z: -0.29414037, w: 0.91788375} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.013817241, y: -0.16927196, z: 0.12700653, w: 0.97725403} + inSlope: {x: -0.21045932, y: 0.07451757, z: -0.05479574, w: 0.022096036} + outSlope: {x: -0.21045932, y: 0.07451757, z: -0.05479574, w: 0.022096036} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: 0.0072998377, y: -0.16957062, z: 0.1197936, w: 0.97818303} + inSlope: {x: 0.15244213, y: -0.22476488, z: -0.1478001, w: -0.02407551} + outSlope: {x: 0.15244213, y: -0.22476488, z: -0.1478001, w: -0.02407551} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.022522276, y: -0.18846962, z: 0.10311305, w: 0.97639114} + inSlope: {x: 0.1196302, y: -0.05785974, z: -0.13827437, w: 0.001995562} + outSlope: {x: 0.1196302, y: -0.05785974, z: -0.13827437, w: 0.001995562} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.030958667, y: -0.17873001, z: 0.116965435, w: 0.97643036} + inSlope: {x: 0.10330012, y: 0.12416327, z: 0.21395312, w: -0.0061628227} + outSlope: {x: 0.10330012, y: 0.12416327, z: 0.21395312, w: -0.0061628227} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.03911272, y: -0.1680247, z: 0.14049935, w: 0.97493476} + inSlope: {x: 0.12759034, y: 0.21628664, z: 0.6762436, w: -0.06958277} + outSlope: {x: 0.12759034, y: 0.21628664, z: 0.6762436, w: -0.06958277} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.04522883, y: -0.15568317, z: 0.18474607, w: 0.96932244} + inSlope: {x: 0.036862187, y: 0.0675905, z: 0.22655259, w: -0.03188786} + outSlope: {x: 0.036862187, y: 0.0675905, z: 0.22655259, w: -0.03188786} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: 0.04148628, y: -0.15327427, z: 0.17169529, w: 0.9722688} + inSlope: {x: -0.24469599, y: 0.16355899, z: -0.450735, w: 0.11289962} + outSlope: {x: -0.24469599, y: 0.16355899, z: -0.450735, w: 0.11289962} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: 0.01890283, y: -0.13850754, z: 0.14754294, w: 0.9791269} + inSlope: {x: -0.28021374, y: 0.16839364, z: -0.12637441, w: 0.048974413} + outSlope: {x: -0.28021374, y: 0.16839364, z: -0.12637441, w: 0.048974413} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.0078179585, y: -0.11754892, z: 0.12979618, w: 0.9845172} + inSlope: {x: -0.2864325, y: 0.15685183, z: -0.25952202, w: 0.05037994} + outSlope: {x: -0.2864325, y: 0.15685183, z: -0.25952202, w: 0.05037994} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.70000005 + value: {x: -0.017866777, y: -0.11375483, z: 0.119720444, w: 0.98610735} + inSlope: {x: -0.0068592876, y: -0.012989271, z: -0.101437286, w: 0.011407402} + outSlope: {x: -0.0068592876, y: -0.012989271, z: -0.101437286, w: 0.011407402} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7666667 + value: {x: 0.009472625, y: -0.12577032, z: 0.13741663, w: 0.9824504} + inSlope: {x: 0.42235276, y: -0.20698142, z: 0.5356777, w: -0.105790704} + outSlope: {x: 0.42235276, y: -0.20698142, z: 0.5356777, w: -0.105790704} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.029271415, y: -0.14000607, z: 0.17135608, w: 0.974771} + inSlope: {x: 0.22046402, y: -0.24065137, z: 0.14911985, w: -0.065740086} + outSlope: {x: 0.22046402, y: -0.24065137, z: 0.14911985, w: -0.065740086} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9333334 + value: {x: 0.031162722, y: -0.15253507, z: 0.15347615, w: 0.97581095} + inSlope: {x: -0.08092765, y: -0.06597298, z: -0.24218228, w: 0.029960278} + outSlope: {x: -0.08092765, y: -0.06597298, z: -0.24218228, w: 0.029960278} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0333334 + value: {x: 0.013817193, y: -0.169272, z: 0.1270065, w: 0.97725403} + inSlope: {x: -0.23182322, y: -0.21751496, z: -0.16853347, w: -0.010287139} + outSlope: {x: -0.23182322, y: -0.21751496, z: -0.16853347, w: -0.010287139} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.1554401, y: -0.15308861, z: 0.049584623, w: 0.9746505} + inSlope: {x: 0.060076114, y: 0.012692212, z: 0.059208084, w: 0.00843823} + outSlope: {x: 0.060076114, y: 0.012692212, z: 0.059208084, w: 0.00843823} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: -0.15779535, y: -0.1533147, z: 0.046146456, w: 0.97440535} + inSlope: {x: -0.23029897, y: -0.02260119, z: -0.33747098, w: -0.027936105} + outSlope: {x: -0.23029897, y: -0.02260119, z: -0.33747098, w: -0.027936105} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: -0.17357177, y: -0.15462673, z: 0.021793475, w: 0.97236234} + inSlope: {x: -0.06097932, y: -0.00888772, z: -0.08071008, w: -0.009991224} + outSlope: {x: -0.06097932, y: -0.00888772, z: -0.08071008, w: -0.009991224} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.16861892, y: -0.15583868, z: 0.035838693, w: 0.97262406} + inSlope: {x: -0.13137282, y: -0.06574721, z: 0.0060210004, w: -0.033945147} + outSlope: {x: -0.13137282, y: -0.06574721, z: 0.0060210004, w: -0.033945147} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: -0.17102082, y: -0.15832178, z: 0.04109823, w: 0.9715951} + inSlope: {x: 0.23207122, y: 0.06912769, z: 0.17290722, w: 0.04440129} + outSlope: {x: 0.23207122, y: 0.06912769, z: 0.17290722, w: 0.04440129} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.1442833, y: -0.1508911, z: 0.060943734, w: 0.97606355} + inSlope: {x: 0.08111715, y: 0.01847215, z: 0.070187375, w: 0.010423958} + outSlope: {x: 0.08111715, y: 0.01847215, z: 0.070187375, w: 0.010423958} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.1357559, y: -0.14888875, z: 0.068020396, w: 0.97712624} + inSlope: {x: -0.13175768, y: -0.025732655, z: -0.12440206, w: -0.013972514} + outSlope: {x: -0.13175768, y: -0.025732655, z: -0.12440206, w: -0.013972514} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9333334 + value: {x: -0.16860618, y: -0.15652, z: 0.03855732, w: 0.9724129} + inSlope: {x: -0.08573295, y: -0.0024381103, z: -0.15343735, w: -0.008597363} + outSlope: {x: -0.08573295, y: -0.0024381103, z: -0.15343735, w: -0.008597363} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0333334 + value: {x: -0.15544021, y: -0.15308854, z: 0.049584497, w: 0.9746505} + inSlope: {x: 0.21384123, y: 0.02877332, z: 0.2817462, w: 0.026453665} + outSlope: {x: 0.21384123, y: 0.02877332, z: 0.2817462, w: 0.026453665} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2/mixamorig:LeftHandThumb3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.020066801, y: 0.04093229, z: 0.014504516, w: 0.9988551} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.020066801, y: 0.04093229, z: 0.014504516, w: 0.9988551} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2/mixamorig:LeftHandThumb3/mixamorig:LeftHandThumb4 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.14968596, y: 0.04604039, z: -0.062940456, w: 0.9856536} + inSlope: {x: -0.25607586, y: 0.034252815, z: -0.1871871, w: 0.023603437} + outSlope: {x: -0.25607586, y: 0.034252815, z: -0.1871871, w: 0.023603437} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: 0.1383476, y: 0.04644921, z: -0.067922644, w: 0.98695946} + inSlope: {x: 0.12237334, y: -0.011106916, z: 0.07402853, w: -0.012371244} + outSlope: {x: 0.12237334, y: -0.011106916, z: 0.07402853, w: -0.012371244} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.14799835, y: 0.04609837, z: -0.063657664, w: 0.9858596} + inSlope: {x: 0.63077426, y: -0.07443321, z: 0.3150077, w: -0.0804323} + outSlope: {x: 0.63077426, y: -0.07443321, z: 0.3150077, w: -0.0804323} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.18039921, y: 0.041486997, z: -0.046922132, w: 0.9815973} + inSlope: {x: 0.6898395, y: -0.12550373, z: 0.3943236, w: -0.09441018} + outSlope: {x: 0.6898395, y: -0.12550373, z: 0.3943236, w: -0.09441018} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.1961554, y: 0.036308087, z: -0.034478668, w: 0.97929364} + inSlope: {x: 0.06768488, y: -0.030880442, z: 0.0661908, w: -0.010263027} + outSlope: {x: 0.06768488, y: -0.030880442, z: 0.0661908, w: -0.010263027} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: 0.19080387, y: 0.030467592, z: -0.025434814, w: 0.98082554} + inSlope: {x: -0.24707785, y: -0.024463564, z: -0.0024638101, w: 0.048623066} + outSlope: {x: -0.24707785, y: -0.024463564, z: -0.0024638101, w: 0.048623066} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: 0.18257374, y: 0.034637153, z: -0.034271006, w: 0.981984} + inSlope: {x: 0.08983481, y: 0.07580742, z: -0.11670591, w: -0.02341927} + outSlope: {x: 0.08983481, y: 0.07580742, z: -0.11670591, w: -0.02341927} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.177473, y: 0.04131204, z: -0.047296636, w: 0.98212} + inSlope: {x: -0.029432042, y: -0.0044204975, z: 0.0007580059, w: 0.0054645427} + outSlope: {x: -0.029432042, y: -0.0044204975, z: 0.0007580059, w: 0.0054645427} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.16476731, y: 0.04102245, z: -0.04973503, w: 0.98422325} + inSlope: {x: -0.32033822, y: 0.013538665, z: -0.100696586, w: 0.04742056} + outSlope: {x: -0.32033822, y: 0.013538665, z: -0.100696586, w: 0.04742056} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.70000005 + value: {x: 0.15272546, y: 0.041811224, z: -0.054076023, w: 0.9859019} + inSlope: {x: -0.016502202, y: -0.006145471, z: 0.0064094886, w: 0.0033303685} + outSlope: {x: -0.016502202, y: -0.006145471, z: 0.0064094886, w: 0.0033303685} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7666667 + value: {x: 0.18210496, y: 0.03873774, z: -0.041924544, w: 0.98162085} + inSlope: {x: 0.29740936, y: -0.03929187, z: 0.13347103, w: -0.04485812} + outSlope: {x: 0.29740936, y: -0.03929187, z: 0.13347103, w: -0.04485812} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.90000004 + value: {x: 0.18364367, y: 0.034671035, z: -0.034930535, w: 0.98176} + inSlope: {x: 0.1845489, y: 0.01654871, z: 0.0061989375, w: -0.03532468} + outSlope: {x: 0.1845489, y: 0.01654871, z: 0.0061989375, w: -0.03532468} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.17854781, y: 0.041051093, z: -0.047067516, w: 0.9819471} + inSlope: {x: -0.6759245, y: 0.13566202, z: -0.39295775, w: 0.092806116} + outSlope: {x: -0.6759245, y: 0.13566202, z: -0.39295775, w: 0.092806116} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0333334 + value: {x: 0.14968617, y: 0.04604025, z: -0.06294047, w: 0.9856535} + inSlope: {x: -0.865847, y: 0.14967436, z: -0.4761874, w: 0.11119158} + outSlope: {x: -0.865847, y: 0.14967436, z: -0.4761874, w: 0.11119158} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.13079454, y: -0.005182895, z: 0.018085144, w: 0.991231} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0333334 + value: {x: 0.13079454, y: -0.005182895, z: 0.018085144, w: 0.991231} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.13088751, y: -0.000000043775234, z: 0.017401103, w: 0.9912445} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0333334 + value: {x: 0.13088751, y: -0.000000043775234, z: 0.017401103, w: 0.9912445} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2/mixamorig:LeftHandIndex3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.044488627, y: 0.000000035593192, z: -0.00000003624041, w: 0.9990099} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.044488627, y: 0.000000035593192, z: -0.00000003624041, w: 0.9990099} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2/mixamorig:LeftHandIndex3/mixamorig:LeftHandIndex4 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.2253434, y: 0.029622616, z: 0.015182453, w: 0.97371066} + inSlope: {x: -0.1936434, y: 0.018782781, z: -0.062948, w: 0.044474598} + outSlope: {x: -0.1936434, y: 0.018782781, z: -0.062948, w: 0.044474598} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: 0.21736723, y: 0.030217353, z: 0.012988831, w: 0.97553563} + inSlope: {x: 0.07416018, y: -0.011955249, z: 0.034818303, w: -0.016937258} + outSlope: {x: 0.07416018, y: -0.011955249, z: 0.034818303, w: -0.016937258} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.22330326, y: 0.029502325, z: 0.015233542, w: 0.9741834} + inSlope: {x: 0.41450346, y: -0.04712161, z: 0.14465514, w: -0.09982825} + outSlope: {x: 0.41450346, y: -0.04712161, z: 0.14465514, w: -0.09982825} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: 0.2545392, y: 0.026063725, z: 0.025598852, w: 0.9663722} + inSlope: {x: 0.13527603, y: -0.0055343127, z: 0.02409527, w: -0.035308585} + outSlope: {x: 0.13527603, y: -0.0055343127, z: 0.02409527, w: -0.035308585} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: 0.25769967, y: 0.027758045, z: 0.022453059, w: 0.96556526} + inSlope: {x: 0.044977073, y: 0.006298079, z: -0.008358686, w: -0.01194209} + outSlope: {x: 0.044977073, y: 0.006298079, z: -0.008358686, w: -0.01194209} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: 0.25043717, y: 0.028374866, z: 0.020460734, w: 0.9675006} + inSlope: {x: 0.04073807, y: 0.011601789, z: -0.019938938, w: -0.010412337} + outSlope: {x: 0.04073807, y: 0.011601789, z: -0.019938938, w: -0.010412337} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.23366599, y: 0.0318315, z: 0.011275506, w: 0.97173035} + inSlope: {x: -0.23047328, y: 0.00936248, z: -0.047778316, w: 0.055617392} + outSlope: {x: -0.23047328, y: 0.00936248, z: -0.047778316, w: 0.055617392} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.23230201, y: 0.031695697, z: 0.011408319, w: 0.9720602} + inSlope: {x: 0.27650708, y: -0.01205485, z: 0.0588696, w: -0.06720452} + outSlope: {x: 0.27650708, y: -0.01205485, z: 0.0588696, w: -0.06720452} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.24877949, y: 0.029780617, z: 0.017369362, w: 0.96794635} + inSlope: {x: -0.061954506, y: -0.023974143, z: 0.043445922, w: 0.015744554} + outSlope: {x: -0.061954506, y: -0.023974143, z: 0.043445922, w: 0.015744554} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9333334 + value: {x: 0.25483927, y: 0.026249599, z: 0.025247855, w: 0.96629727} + inSlope: {x: 0.15756026, y: -0.024633398, z: 0.065201595, w: -0.04201053} + outSlope: {x: 0.15756026, y: -0.024633398, z: 0.065201595, w: -0.04201053} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0333334 + value: {x: 0.22534335, y: 0.029622665, z: 0.015182522, w: 0.97371066} + inSlope: {x: -0.62690747, y: 0.07132355, z: -0.21638332, w: 0.15431245} + outSlope: {x: -0.62690747, y: 0.07132355, z: -0.21638332, w: 0.15431245} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.1031044, y: -0.01360277, z: 0.0146017, w: 0.99447036} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0333334 + value: {x: 0.1031044, y: -0.01360277, z: 0.0146017, w: 0.99447036} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.1204382, y: 0.0029581778, z: 0.016700352, w: 0.99257594} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0333334 + value: {x: 0.1204382, y: 0.0029581778, z: 0.016700352, w: 0.99257594} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2/mixamorig:LeftHandMiddle3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.010558689, y: -0.0028614039, z: -0.0028610034, w: 0.9999361} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.010558689, y: -0.0028614039, z: -0.0028610034, w: 0.9999361} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2/mixamorig:LeftHandMiddle3/mixamorig:LeftHandMiddle4 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.28503126, y: 0.0018280317, z: 0.051980242, w: 0.957106} + inSlope: {x: -0.13986737, y: -0.018421397, z: 0.042864043, w: 0.0389564} + outSlope: {x: -0.13986737, y: -0.018421397, z: 0.042864043, w: 0.0389564} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.28399092, y: 0.0010876595, z: 0.053692553, w: 0.9573219} + inSlope: {x: 0.20299406, y: -0.009045935, z: 0.021353124, w: -0.062123545} + outSlope: {x: 0.20299406, y: -0.009045935, z: 0.021353124, w: -0.062123545} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.2980661, y: 0.0058828327, z: 0.042988297, w: 0.9535586} + inSlope: {x: 0.020114781, y: 0.07945948, z: -0.17793497, w: 0.0008708239} + outSlope: {x: 0.020114781, y: 0.07945948, z: -0.17793497, w: 0.0008708239} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.2952346, y: 0.016423248, z: 0.02003369, w: 0.95507354} + inSlope: {x: 0.021651711, y: -0.034848057, z: 0.065936916, w: -0.007745335} + outSlope: {x: 0.021651711, y: -0.034848057, z: 0.065936916, w: -0.007745335} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.29901114, y: 0.011308123, z: 0.030813253, w: 0.953685} + inSlope: {x: -0.08527233, y: -0.017576694, z: 0.033783287, w: 0.025824305} + outSlope: {x: -0.08527233, y: -0.017576694, z: 0.033783287, w: 0.025824305} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.70000005 + value: {x: 0.27923, y: 0.014587568, z: 0.021998499, w: 0.9598614} + inSlope: {x: -0.036866874, y: 0.0043713804, z: -0.011030115, w: 0.0110319005} + outSlope: {x: -0.036866874, y: 0.0043713804, z: -0.011030115, w: 0.0110319005} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.86666673 + value: {x: 0.29556882, y: 0.016180662, z: 0.020765604, w: 0.9549587} + inSlope: {x: 0.043755762, y: -0.083701216, z: 0.17154905, w: -0.01633823} + outSlope: {x: 0.043755762, y: -0.083701216, z: 0.17154905, w: -0.01633823} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0333334 + value: {x: 0.28503123, y: 0.0018279436, z: 0.05198038, w: 0.95710605} + inSlope: {x: -0.2882026, y: -0.07670732, z: 0.16663158, w: 0.07906774} + outSlope: {x: -0.2882026, y: -0.07670732, z: 0.16663158, w: 0.07906774} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.15326637, y: -0.00014132031, z: 0.02037695, w: 0.9879748} + inSlope: {x: 0.0061051543, y: -0.0000063056355, z: 0.00080930063, w: -0.0009655952} + outSlope: {x: 0.0061051543, y: -0.0000063056355, z: 0.00080930063, w: -0.0009655952} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: 0.15285733, y: -0.00014111368, z: 0.020322563, w: 0.9880393} + inSlope: {x: 0.01038707, y: 0.0000011210786, z: 0.0013786822, w: -0.001633464} + outSlope: {x: 0.01038707, y: 0.0000011210786, z: 0.0013786822, w: -0.001633464} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0333334 + value: {x: 0.1532661, y: -0.00014140777, z: 0.020376915, w: 0.9879748} + inSlope: {x: 0.03820886, y: -0.0000007080943, z: 0.0050855107, w: -0.006006344} + outSlope: {x: 0.03820886, y: -0.0000007080943, z: 0.0050855107, w: -0.006006344} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.15326896, y: -0.000000019323684, z: 0.020355152, w: 0.9879749} + inSlope: {x: 0.0061060484, y: 0.0000013000594, z: 0.000809133, w: -0.0009655952} + outSlope: {x: 0.0061060484, y: 0.0000013000594, z: 0.000809133, w: -0.0009655952} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: 0.15286003, y: -0.00000002520395, z: 0.020300673, w: 0.9880393} + inSlope: {x: 0.010388411, y: 0.000000023901748, z: 0.0013793807, w: -0.0016343581} + outSlope: {x: 0.010388411, y: 0.000000023901748, z: 0.0013793807, w: -0.0016343581} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0333334 + value: {x: 0.15326916, y: 0.000000004841462, z: 0.020354876, w: 0.9879748} + inSlope: {x: 0.038224954, y: 0.0000020800803, z: 0.005064947, w: -0.0060099205} + outSlope: {x: 0.038224954, y: 0.0000020800803, z: 0.005064947, w: -0.0060099205} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2/mixamorig:LeftHandPinky3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.0445191, y: -0.00000014136867, z: 0.000000029192309, w: 0.99900854} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.0445191, y: -0.00000014136867, z: 0.000000029192309, w: 0.99900854} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2/mixamorig:LeftHandPinky3/mixamorig:LeftHandPinky4 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.52647746, y: 0.45276222, z: -0.52636874, w: 0.49067688} + inSlope: {x: 0.011215209, y: -0.012606381, z: 0.07194578, w: 0.076395564} + outSlope: {x: 0.011215209, y: -0.012606381, z: 0.07194578, w: 0.076395564} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.5273395, y: 0.45134476, z: -0.5089817, w: 0.50905657} + inSlope: {x: 0.14086963, y: -0.1524067, z: 0.14829399, w: 0.13682128} + outSlope: {x: 0.14086963, y: -0.1524067, z: 0.14829399, w: 0.13682128} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: 0.5322617, y: 0.445642, z: -0.498487, w: 0.5192411} + inSlope: {x: -0.076442964, y: 0.08024589, z: -0.014422687, w: -0.0045266747} + outSlope: {x: -0.076442964, y: 0.08024589, z: -0.014422687, w: -0.0045266747} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.5285049, y: 0.4500514, z: -0.5071276, w: 0.5108404} + inSlope: {x: -0.0010183414, y: 0.00095799216, z: 0.0018095905, w: 0.0020107557} + outSlope: {x: -0.0010183414, y: 0.00095799216, z: 0.0018095905, w: 0.0020107557} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6333334 + value: {x: 0.520803, y: 0.45838743, z: -0.5201939, w: 0.49803966} + inSlope: {x: -0.11688353, y: 0.118331924, z: -0.035002835, w: -0.023484983} + outSlope: {x: -0.11688353, y: 0.118331924, z: -0.035002835, w: -0.023484983} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000001 + value: {x: 0.5142766, y: 0.4649724, z: -0.5300435, w: 0.48823574} + inSlope: {x: 0.12001903, y: -0.11882143, z: -0.036251836, w: -0.052734904} + outSlope: {x: 0.12001903, y: -0.11882143, z: -0.036251836, w: -0.052734904} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9666667 + value: {x: 0.5261353, y: 0.45323312, z: -0.53307396, w: 0.48331526} + inSlope: {x: 0.011930477, y: -0.012820971, z: 0.08755811, w: 0.09541565} + outSlope: {x: 0.011930477, y: -0.012820971, z: 0.08755811, w: 0.09541565} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0333334 + value: {x: 0.5264774, y: 0.4527623, z: -0.5263688, w: 0.49067697} + inSlope: {x: -0.0060760817, y: 0.0036862395, z: 0.099461414, w: 0.11057288} + outSlope: {x: -0.0060760817, y: 0.0036862395, z: 0.099461414, w: 0.11057288} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.41213307, y: 0.090728246, z: 0.21516515, w: 0.8806922} + inSlope: {x: -0.47012952, y: -0.062119957, z: 0.60675496, w: 0.06685674} + outSlope: {x: -0.47012952, y: -0.062119957, z: 0.60675496, w: 0.06685674} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.32669172, y: 0.07118661, z: 0.2837424, w: 0.89871866} + inSlope: {x: -0.8771651, y: -0.15626104, z: 0.4221234, w: 0.19902976} + outSlope: {x: -0.8771651, y: -0.15626104, z: 0.4221234, w: 0.19902976} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: 0.2838538, y: 0.059207767, z: 0.2984274, w: 0.9093199} + inSlope: {x: -0.10981134, y: -0.17104024, z: -0.09685996, w: 0.07831154} + outSlope: {x: -0.10981134, y: -0.17104024, z: -0.09685996, w: 0.07831154} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: 0.33569106, y: 0.08540448, z: 0.25890383, w: 0.90165764} + inSlope: {x: 0.82715845, y: 0.5644636, z: -0.6495204, w: -0.17888995} + outSlope: {x: 0.82715845, y: 0.5644636, z: -0.6495204, w: -0.17888995} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: 0.3893432, y: 0.12037727, z: 0.21236312, w: 0.8881571} + inSlope: {x: 0.6560172, y: 0.38295174, z: -0.4102465, w: -0.23441872} + outSlope: {x: 0.6560172, y: 0.38295174, z: -0.4102465, w: -0.23441872} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: 0.4241385, y: 0.12777588, z: 0.19485898, w: 0.8751056} + inSlope: {x: 0.49344468, y: -0.11383676, z: -0.5607804, w: -0.10288865} + outSlope: {x: 0.49344468, y: -0.11383676, z: -0.5607804, w: -0.10288865} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: 0.46185097, y: 0.1335111, z: 0.11082768, w: 0.86981934} + inSlope: {x: 0.19265622, y: 0.32244974, z: -0.7842642, w: -0.051215842} + outSlope: {x: 0.19265622, y: 0.32244974, z: -0.7842642, w: -0.051215842} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.70000005 + value: {x: 0.48528627, y: 0.17528531, z: 0.013615787, w: 0.8564969} + inSlope: {x: 0.086725175, y: 0.004592113, z: -0.27747717, w: -0.04436282} + outSlope: {x: 0.086725175, y: 0.004592113, z: -0.27747717, w: -0.04436282} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000001 + value: {x: 0.46997273, y: 0.17313404, z: 0.03552286, w: 0.8648054} + inSlope: {x: -0.4169249, y: 0.02843789, z: 0.76484644, w: 0.1847613} + outSlope: {x: -0.4169249, y: 0.02843789, z: 0.76484644, w: 0.1847613} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.86666673 + value: {x: 0.44052756, y: 0.16617711, z: 0.09407346, w: 0.8771949} + inSlope: {x: -0.31800663, y: -0.44912317, z: 0.7306491, w: 0.16750395} + outSlope: {x: -0.31800663, y: -0.44912317, z: 0.7306491, w: 0.16750395} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9666667 + value: {x: 0.4278224, y: 0.09928735, z: 0.15835227, w: 0.8843272} + inSlope: {x: -0.13677, y: -0.37486544, z: 0.81876874, w: -0.03802661} + outSlope: {x: -0.13677, y: -0.37486544, z: 0.81876874, w: -0.03802661} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0333334 + value: {x: 0.41213316, y: 0.090728335, z: 0.21516508, w: 0.8806921} + inSlope: {x: -0.28839663, y: -0.029510032, z: 0.8373097, w: -0.051657423} + outSlope: {x: -0.28839663, y: -0.029510032, z: 0.8373097, w: -0.051657423} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.01594068, y: -0.050640244, z: 0.19645487, w: 0.97907454} + inSlope: {x: 0.056787, y: -0.13982522, z: 0.69981736, w: -0.15772639} + outSlope: {x: 0.056787, y: -0.13982522, z: 0.69981736, w: -0.15772639} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.01783358, y: -0.055301085, z: 0.21978211, w: 0.973817} + inSlope: {x: 0.07183601, y: -0.17668945, z: 0.8853214, w: -0.21748513} + outSlope: {x: 0.07183601, y: -0.17668945, z: 0.8853214, w: -0.21748513} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: 0.022655355, y: -0.06714306, z: 0.2792079, w: 0.9576124} + inSlope: {x: 0.041228704, y: -0.10110194, z: 0.5081024, w: -0.15213756} + outSlope: {x: 0.041228704, y: -0.10110194, z: 0.5081024, w: -0.15213756} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: 0.017796228, y: -0.055209152, z: 0.2193225, w: 0.97392654} + inSlope: {x: -0.054361284, y: 0.133735, z: -0.66993916, w: 0.16189994} + outSlope: {x: -0.054361284, y: 0.133735, z: -0.66993916, w: 0.16189994} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.012607383, y: -0.042416006, z: 0.15537548, w: 0.9868639} + inSlope: {x: -0.0715272, y: 0.1767123, z: -0.88149667, w: 0.14577621} + outSlope: {x: -0.0715272, y: 0.1767123, z: -0.88149667, w: 0.14577621} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5666667 + value: {x: 0.00660574, y: -0.02755699, z: 0.08141042, w: 0.99627775} + inSlope: {x: 0.007976826, y: -0.019775523, z: 0.098242685, w: -0.008896} + outSlope: {x: 0.007976826, y: -0.019775523, z: 0.098242685, w: -0.008896} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.007200126, y: -0.029031934, z: 0.08873778, w: 0.9956058} + inSlope: {x: -0.014177881, y: 0.0351661, z: -0.17473012, w: 0.016382929} + outSlope: {x: -0.014177881, y: 0.0351661, z: -0.17473012, w: 0.016382929} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.86666673 + value: {x: 0.007558812, y: -0.02992084, z: 0.093155846, w: 0.99517316} + inSlope: {x: 0.036339365, y: -0.09010911, z: 0.44792354, w: -0.046066955} + outSlope: {x: 0.036339365, y: -0.09010911, z: 0.44792354, w: -0.046066955} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0333334 + value: {x: 0.015940402, y: -0.050640114, z: 0.19645476, w: 0.9790746} + inSlope: {x: 0.06353265, y: -0.15671447, z: 0.7831753, w: -0.15495081} + outSlope: {x: 0.06353265, y: -0.15671447, z: 0.7831753, w: -0.15495081} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.055888526, y: 0.040033583, z: -0.018008012, w: 0.9974716} + inSlope: {x: 0.543013, y: 0.17290635, z: -0.73426706, w: -0.06512761} + outSlope: {x: 0.543013, y: 0.17290635, z: -0.73426706, w: -0.06512761} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: 0.09244886, y: 0.057339814, z: -0.06702223, w: 0.9918031} + inSlope: {x: 0.48241985, y: 0.26924118, z: -0.3598275, w: -0.078373246} + outSlope: {x: 0.48241985, y: 0.26924118, z: -0.3598275, w: -0.078373246} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.10135205, y: 0.060539033, z: -0.052861605, w: 0.99159896} + inSlope: {x: -0.2740059, y: -0.085859865, z: 0.33689046, w: 0.050839487} + outSlope: {x: -0.2740059, y: -0.085859865, z: 0.33689046, w: 0.050839487} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.028377611, y: 0.06312048, z: 0.022034936, w: 0.99735904} + inSlope: {x: -0.43250224, y: 0.037062433, z: 0.9004718, w: -0.01106769} + outSlope: {x: -0.43250224, y: 0.037062433, z: 0.9004718, w: -0.01106769} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.0105606215, y: 0.07174617, z: 0.07849674, w: 0.99427325} + inSlope: {x: -0.12710793, y: 0.22757874, z: 0.5648802, w: -0.056858364} + outSlope: {x: -0.12710793, y: 0.22757874, z: 0.5648802, w: -0.056858364} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: 0.017837614, y: 0.10720384, z: 0.109849714, w: 0.987989} + inSlope: {x: 0.17168608, y: 0.41781107, z: -0.04640758, w: -0.042584542} + outSlope: {x: 0.17168608, y: 0.41781107, z: -0.04640758, w: -0.042584542} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.043049555, y: 0.11024064, z: 0.090290815, w: 0.9888586} + inSlope: {x: 0.7206049, y: -0.32215852, z: -0.31393865, w: 0.0285566} + outSlope: {x: 0.7206049, y: -0.32215852, z: -0.31393865, w: 0.0285566} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5666667 + value: {x: 0.102581464, y: 0.09381142, z: 0.06894934, w: 0.9878879} + inSlope: {x: 0.759593, y: 0.021554783, z: -0.5043075, w: -0.04477591} + outSlope: {x: 0.759593, y: 0.021554783, z: -0.5043075, w: -0.04477591} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.15500173, y: 0.09950429, z: -0.0020760687, w: 0.9828881} + inSlope: {x: 0.38101816, y: 0.0047458094, z: -0.7440059, w: -0.06202519} + outSlope: {x: 0.38101816, y: 0.0047458094, z: -0.7440059, w: -0.06202519} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000001 + value: {x: 0.19643414, y: 0.12022338, z: -0.102471545, w: 0.9677084} + inSlope: {x: 0.22438802, y: 0.32977903, z: -0.52547574, w: -0.14093399} + outSlope: {x: 0.22438802, y: 0.32977903, z: -0.52547574, w: -0.14093399} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.86666673 + value: {x: 0.1939298, y: 0.1337302, z: -0.11798813, w: 0.964669} + inSlope: {x: -0.57747495, y: -0.3545383, z: 0.054546725, w: 0.16082984} + outSlope: {x: -0.57747495, y: -0.3545383, z: 0.054546725, w: 0.16082984} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9333334 + value: {x: 0.12775971, y: 0.06523129, z: -0.10152526, w: 0.9844364} + inSlope: {x: -1.0343705, y: -1.231621, z: 0.47962224, w: 0.27080384} + outSlope: {x: -1.0343705, y: -1.231621, z: 0.47962224, w: 0.27080384} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9666667 + value: {x: 0.09591017, y: 0.027787784, z: -0.08087462, w: 0.9917098} + inSlope: {x: -0.8074474, y: -0.6057208, z: 0.75859845, w: 0.16821848} + outSlope: {x: -0.8074474, y: -0.6057208, z: 0.75859845, w: 0.16821848} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0333334 + value: {x: 0.055888325, y: 0.04003354, z: -0.01800808, w: 0.9974716} + inSlope: {x: -0.5412469, y: 0.45550674, z: 0.98831743, w: 0.054618575} + outSlope: {x: -0.5412469, y: 0.45550674, z: 0.98831743, w: 0.054618575} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.19267313, y: 0.28063765, z: 0.30642733, w: 0.88894427} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.19267313, y: 0.28063765, z: 0.30642733, w: 0.88894427} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.033909984, y: 0.14064413, z: -0.21508768, w: 0.9658192} + inSlope: {x: -0.051515955, y: -0.0060975547, z: 0.050312426, w: 0.013808011} + outSlope: {x: -0.051515955, y: -0.0060975547, z: 0.050312426, w: 0.013808011} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: 0.027673617, y: 0.14946201, z: -0.19077063, w: 0.96979475} + inSlope: {x: -0.08821894, y: 0.09368195, z: 0.3129246, w: 0.051022768} + outSlope: {x: -0.08821894, y: 0.09368195, z: 0.3129246, w: 0.051022768} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: 0.03465023, y: 0.14659667, z: -0.19817472, w: 0.96852237} + inSlope: {x: 0.016807562, y: -0.14163361, z: -0.29678825, w: -0.04099578} + outSlope: {x: 0.016807562, y: -0.14163361, z: -0.29678825, w: -0.04099578} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.035163507, y: 0.14073984, z: -0.21106108, w: 0.96664834} + inSlope: {x: -0.07963289, y: -0.080211245, z: -0.15982793, w: -0.019044578} + outSlope: {x: -0.07963289, y: -0.080211245, z: -0.15982793, w: -0.019044578} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: 0.03440168, y: 0.1505971, z: -0.20243171, w: 0.9670359} + inSlope: {x: 0.27390376, y: 0.02389873, z: -0.24636698, w: -0.06710436} + outSlope: {x: 0.27390376, y: 0.02389873, z: -0.24636698, w: -0.06710436} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: 0.048393577, y: 0.14213456, z: -0.23127733, w: 0.9612318} + inSlope: {x: -0.054338705, y: -0.19472772, z: -0.30991855, w: -0.04175574} + outSlope: {x: -0.054338705, y: -0.19472772, z: -0.30991855, w: -0.04175574} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: 0.03839862, y: 0.13603082, z: -0.23796536, w: 0.96093374} + inSlope: {x: 0.026777755, y: 0.023163091, z: -0.0061080554, w: -0.0058650924} + outSlope: {x: 0.026777755, y: 0.023163091, z: -0.0061080554, w: -0.0058650924} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.045848604, y: 0.1487267, z: -0.22183411, w: 0.962584} + inSlope: {x: 0.0051357676, y: 0.08191239, z: 0.10879572, w: 0.011805291} + outSlope: {x: 0.0051357676, y: 0.08191239, z: 0.10879572, w: 0.011805291} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.05780612, y: 0.16182634, z: -0.20588887, w: 0.9633693} + inSlope: {x: 0.2538796, y: -0.0465273, z: -0.104375616, w: -0.029923614} + outSlope: {x: 0.2538796, y: -0.0465273, z: -0.104375616, w: -0.029923614} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.90000004 + value: {x: 0.06270897, y: 0.1495364, z: -0.2165643, w: 0.9627078} + inSlope: {x: -0.16698365, y: -0.12355091, z: 0.035304673, w: 0.037642103} + outSlope: {x: -0.16698365, y: -0.12355091, z: 0.035304673, w: 0.037642103} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9666667 + value: {x: 0.04562398, y: 0.14705187, z: -0.20980144, w: 0.96554524} + inSlope: {x: -0.21277158, y: -0.07281802, z: -0.037820973, w: 0.013031973} + outSlope: {x: -0.21277158, y: -0.07281802, z: -0.037820973, w: 0.013031973} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0333334 + value: {x: 0.03391, y: 0.14064422, z: -0.21508755, w: 0.9658192} + inSlope: {x: -0.17129213, y: -0.09533663, z: -0.06069376, w: 0.0071078353} + outSlope: {x: -0.17129213, y: -0.09533663, z: -0.06069376, w: 0.0071078353} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.13444117, y: -0.04159175, z: -0.09007195, w: 0.9859426} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0333334 + value: {x: -0.13444117, y: -0.04159175, z: -0.09007195, w: 0.9859426} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2/mixamorig:RightHandThumb3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.020066775, y: -0.0409323, z: -0.014504519, w: 0.9988551} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.020066775, y: -0.0409323, z: -0.014504519, w: 0.9988551} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2/mixamorig:RightHandThumb3/mixamorig:RightHandThumb4 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.17628187, y: -0.04705825, z: 0.0616363, w: 0.9812804} + inSlope: {x: 0.096986435, y: -0.010623558, z: 0.0011351331, w: -0.01817107} + outSlope: {x: 0.096986435, y: -0.010623558, z: 0.0011351331, w: -0.01817107} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: 0.2014777, y: -0.049931027, z: 0.061986826, w: 0.97625375} + inSlope: {x: -0.43933916, y: 0.047751427, z: 0.0018493831, w: 0.09012849} + outSlope: {x: -0.43933916, y: 0.047751427, z: 0.0018493831, w: 0.09012849} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.15878606, y: -0.043975286, z: 0.061219707, w: 0.9844315} + inSlope: {x: -0.020558912, y: 0.027317574, z: -0.030251857, w: 0.006518662} + outSlope: {x: -0.020558912, y: 0.027317574, z: -0.030251857, w: 0.006518662} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: 0.16085313, y: -0.043047342, z: 0.059652504, w: 0.9842331} + inSlope: {x: -0.28974095, y: 0.017694255, z: 0.03259471, w: 0.045078997} + outSlope: {x: -0.28974095, y: 0.017694255, z: 0.03259471, w: 0.045078997} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: 0.13877177, y: -0.04053679, z: 0.060600884, w: 0.9876369} + inSlope: {x: 0.026221702, y: 0.0070449277, z: -0.014300298, w: -0.0025534611} + outSlope: {x: 0.026221702, y: 0.0070449277, z: -0.014300298, w: -0.0025534611} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.16204326, y: -0.041562427, z: 0.057477497, w: 0.9842311} + inSlope: {x: -0.015320996, y: 0.01738663, z: -0.020088395, w: 0.004413126} + outSlope: {x: -0.015320996, y: 0.01738663, z: -0.020088395, w: 0.004413126} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000001 + value: {x: 0.17086996, y: -0.0415579, z: 0.055777125, w: 0.98283535} + inSlope: {x: 0.50057393, y: -0.05599159, z: -0.024290929, w: -0.091839775} + outSlope: {x: 0.50057393, y: -0.05599159, z: -0.024290929, w: -0.091839775} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.90000004 + value: {x: 0.22798182, y: -0.051940277, z: 0.05950549, w: 0.97045636} + inSlope: {x: 0.07312017, y: -0.03470935, z: 0.05508161, w: -0.0215087} + outSlope: {x: 0.07312017, y: -0.03470935, z: 0.05508161, w: -0.0215087} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.18724635, y: -0.047975287, z: 0.061002195, w: 0.9792425} + inSlope: {x: -0.41071284, y: 0.035191853, z: 0.02306626, w: 0.08002904} + outSlope: {x: -0.41071284, y: 0.035191853, z: 0.02306626, w: 0.08002904} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0333334 + value: {x: 0.17628199, y: -0.047058158, z: 0.06163635, w: 0.9812804} + inSlope: {x: -0.32893005, y: 0.027513804, z: 0.019024635, w: 0.061136324} + outSlope: {x: -0.32893005, y: 0.027513804, z: 0.019024635, w: 0.061136324} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.20491174, y: 0.0051159626, z: -0.023993773, w: 0.97847295} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0333334 + value: {x: 0.20491174, y: 0.0051159626, z: -0.023993773, w: 0.97847295} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.09105583, y: -0.00000011348385, z: -0.010179715, w: 0.99579376} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0333334 + value: {x: 0.09105583, y: -0.00000011348385, z: -0.010179715, w: 0.99579376} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2/mixamorig:RightHandIndex3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.04448866, y: 0.0000002304434, z: -0.00000016927874, w: 0.9990099} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.04448866, y: 0.0000002304434, z: -0.00000016927874, w: 0.9990099} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2/mixamorig:RightHandIndex3/mixamorig:RightHandIndex4 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.1888688, y: -0.04131422, z: 0.022423398, w: 0.9808766} + inSlope: {x: 0.11739715, y: -0.015351846, z: 0.018614361, w: -0.023930667} + outSlope: {x: 0.11739715, y: -0.015351846, z: 0.018614361, w: -0.023930667} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.18545486, y: -0.040368743, z: 0.020601345, w: 0.9816071} + inSlope: {x: -0.39497632, y: 0.02387848, z: 0.003265059, w: 0.07611305} + outSlope: {x: -0.39497632, y: 0.02387848, z: 0.003265059, w: 0.07611305} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: 0.16273741, y: -0.039151993, z: 0.021009108, w: 0.9856685} + inSlope: {x: -0.090144835, y: -0.008143023, z: 0.03594181, w: 0.013872391} + outSlope: {x: -0.090144835, y: -0.008143023, z: 0.03594181, w: 0.013872391} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.16364512, y: -0.03835582, z: 0.018724525, w: 0.9855955} + inSlope: {x: -0.09033925, y: 0.0133654475, z: -0.022555057, w: 0.015906394} + outSlope: {x: -0.09033925, y: 0.0133654475, z: -0.022555057, w: 0.015906394} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.17898767, y: -0.038050305, z: 0.01568191, w: 0.9829902} + inSlope: {x: 0.4892175, y: -0.02104287, z: -0.01760579, w: -0.090381496} + outSlope: {x: 0.4892175, y: -0.02104287, z: -0.01760579, w: -0.090381496} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9333334 + value: {x: 0.20936677, y: -0.04105001, z: 0.018468142, w: 0.97680056} + inSlope: {x: -0.1560725, y: -0.0051309518, z: 0.036920954, w: 0.03188791} + outSlope: {x: -0.1560725, y: -0.0051309518, z: 0.036920954, w: 0.03188791} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0333334 + value: {x: 0.18886866, y: -0.041314166, z: 0.022423381, w: 0.9808767} + inSlope: {x: -0.1148434, y: -0.0044514495, z: 0.029959638, w: 0.021489803} + outSlope: {x: -0.1148434, y: -0.0044514495, z: 0.029959638, w: 0.021489803} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.3016967, y: 0.0129384445, z: -0.037206706, w: 0.9525898} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0333334 + value: {x: 0.3016967, y: 0.0129384445, z: -0.037206706, w: 0.9525898} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.17750317, y: -0.0029583566, z: -0.020641323, w: 0.9838993} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0333334 + value: {x: 0.17750317, y: -0.0029583566, z: -0.020641323, w: 0.9838993} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2/mixamorig:RightHandMiddle3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.010558574, y: 0.0028613026, z: 0.0028611063, w: 0.9999361} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.010558574, y: 0.0028613026, z: 0.0028611063, w: 0.9999361} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2/mixamorig:RightHandMiddle3/mixamorig:RightHandMiddle4 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.24864407, y: -0.02171267, z: -0.0030618457, w: 0.9683467} + inSlope: {x: 0.06009176, y: -0.028277354, z: 0.033833787, w: -0.016057491} + outSlope: {x: 0.06009176, y: -0.028277354, z: 0.033833787, w: -0.016057491} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.26452184, y: -0.035001308, z: 0.013564239, w: 0.96364886} + inSlope: {x: -0.020485371, y: -0.01767369, z: 0.027083619, w: 0.0046250224} + outSlope: {x: -0.020485371, y: -0.01767369, z: 0.027083619, w: 0.0046250224} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.24986269, y: -0.02597819, z: 0.0028333634, w: 0.9679286} + inSlope: {x: -0.22551882, y: 0.13625088, z: -0.16556665, w: 0.063320704} + outSlope: {x: -0.22551882, y: 0.13625088, z: -0.16556665, w: 0.063320704} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: 0.23511921, y: -0.016981445, z: -0.008601766, w: 0.9717801} + inSlope: {x: -0.06123998, y: 0.08901843, z: -0.12920892, w: 0.015194716} + outSlope: {x: -0.06123998, y: 0.08901843, z: -0.12920892, w: 0.015194716} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.22956249, y: -0.0136647, z: -0.013840782, w: 0.9730996} + inSlope: {x: 0.05308183, y: -0.029340032, z: 0.058102526, w: -0.0120601095} + outSlope: {x: 0.05308183, y: -0.029340032, z: 0.058102526, w: -0.0120601095} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.23183545, y: -0.016313206, z: -0.009343447, w: 0.97257334} + inSlope: {x: -0.054878447, y: -0.005432357, z: 0.0121704675, w: 0.013097227} + outSlope: {x: -0.054878447, y: -0.005432357, z: 0.0121704675, w: 0.013097227} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.24809384, y: -0.028837154, z: 0.0072156126, w: 0.96827984} + inSlope: {x: 0.3598693, y: -0.19261381, z: 0.23393118, w: -0.09940714} + outSlope: {x: 0.3598693, y: -0.19261381, z: 0.23393118, w: -0.09940714} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.90000004 + value: {x: 0.26885596, y: -0.03685993, z: 0.015795227, w: 0.96234524} + inSlope: {x: 0.05097556, y: 0.03166071, z: -0.050675705, w: -0.01211738} + outSlope: {x: 0.05097556, y: 0.03166071, z: -0.050675705, w: -0.01211738} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.2515757, y: -0.023677656, z: -0.000544908, w: 0.96754783} + inSlope: {x: -0.123123184, y: 0.085503906, z: -0.10862906, w: 0.034409154} + outSlope: {x: -0.123123184, y: 0.085503906, z: -0.10862906, w: 0.034409154} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0333334 + value: {x: 0.24864408, y: -0.02171263, z: -0.003061857, w: 0.9683467} + inSlope: {x: -0.08794851, y: 0.058950663, z: -0.075508274, w: 0.023966368} + outSlope: {x: -0.08794851, y: 0.058950663, z: -0.075508274, w: 0.023966368} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.24624227, y: 0.00013863365, z: -0.027530212, w: 0.96881723} + inSlope: {x: 0.013761072, y: 0.0000006867048, z: -0.0015379115, w: -0.003544092} + outSlope: {x: 0.013761072, y: 0.0000006867048, z: -0.0015379115, w: -0.003544092} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7666667 + value: {x: 0.2414671, y: 0.00013875104, z: -0.026996259, w: 0.9700334} + inSlope: {x: -0.04186835, y: 0.00000081155963, z: 0.0046819877, w: 0.010561636} + outSlope: {x: -0.04186835, y: 0.00000081155963, z: 0.0046819877, w: 0.010561636} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9666667 + value: {x: 0.24636155, y: 0.00013855615, z: -0.027543368, w: 0.96878654} + inSlope: {x: -0.023349099, y: 0.0000032680723, z: 0.002609177, w: 0.0060305055} + outSlope: {x: -0.023349099, y: 0.0000032680723, z: 0.002609177, w: 0.0060305055} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0333334 + value: {x: 0.24624234, y: 0.00013843019, z: -0.027530052, w: 0.96881723} + inSlope: {x: -0.001965607, y: -0.000010040795, z: 0.00022340508, w: 0.0005060421} + outSlope: {x: -0.001965607, y: -0.000010040795, z: 0.00022340508, w: 0.0005060421} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.13771155, y: 0.0000000694655, z: -0.015376328, w: 0.99035305} + inSlope: {x: 0.0131388, y: -0.0000048571555, z: -0.0014652963, w: -0.0018525122} + outSlope: {x: 0.0131388, y: -0.0000048571555, z: -0.0014652963, w: -0.0018525122} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7666667 + value: {x: 0.1329762, y: -0.00000002562466, z: -0.014847581, w: 0.991008} + inSlope: {x: -0.04515987, y: 0.0000005360343, z: 0.0050394055, w: 0.0061413595} + outSlope: {x: -0.04515987, y: 0.0000005360343, z: 0.0050394055, w: 0.0061413595} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9666667 + value: {x: 0.13764581, y: 0.0000000065606156, z: -0.015368928, w: 0.9903623} + inSlope: {x: -0.01910025, y: 0.000000521651, z: 0.0021334616, w: 0.002701881} + outSlope: {x: -0.01910025, y: 0.000000521651, z: 0.0021334616, w: 0.002701881} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0333334 + value: {x: 0.13771163, y: 0.00000026349852, z: -0.015376499, w: 0.99035305} + inSlope: {x: -0.00017210796, y: 0.000005947038, z: 0.000013159553, w: 0.000025033885} + outSlope: {x: -0.00017210796, y: 0.000005947038, z: 0.000013159553, w: 0.000025033885} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2/mixamorig:RightHandPinky3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.044519044, y: -0.000000018309837, z: 0.00000006408371, w: 0.99900854} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.044519044, y: -0.000000018309837, z: 0.00000006408371, w: 0.99900854} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2/mixamorig:RightHandPinky3/mixamorig:RightHandPinky4 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.08577574, y: 0.21824111, z: 0.97203827, w: -0.0124485735} + inSlope: {x: 0.13117142, y: 1.103361, z: -0.26558697, w: -0.36892983} + outSlope: {x: 0.13117142, y: 1.103361, z: -0.26558697, w: -0.36892983} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: -0.08140336, y: 0.2550198, z: 0.96318537, w: -0.024746235} + inSlope: {x: 0.20914122, y: 0.64314204, z: -0.14686704, w: -0.22086057} + outSlope: {x: 0.20914122, y: 0.64314204, z: -0.14686704, w: -0.22086057} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: -0.07183299, y: 0.26111725, z: 0.96224713, w: -0.027172612} + inSlope: {x: 0.37727892, y: 0.8557886, z: -0.22502837, w: 0.07318987} + outSlope: {x: 0.37727892, y: 0.8557886, z: -0.22502837, w: 0.07318987} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: -0.036572322, y: 0.36281356, z: 0.9311313, w: -0.0048348294} + inSlope: {x: 0.45111877, y: 1.2580276, z: -0.45428133, w: 0.34238002} + outSlope: {x: 0.45111877, y: 1.2580276, z: -0.45428133, w: 0.34238002} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.026176846, y: 0.3959409, z: 0.91789806, w: 0.0029584232} + inSlope: {x: 0.017040074, y: 0.65407, z: -0.27207702, w: 0.12572578} + outSlope: {x: 0.017040074, y: 0.65407, z: -0.27207702, w: 0.12572578} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: -0.03543632, y: 0.40641823, z: 0.91299284, w: 0.003546889} + inSlope: {x: -0.20242065, y: 0.35169655, z: -0.16469833, w: -0.13919665} + outSlope: {x: -0.20242065, y: 0.35169655, z: -0.16469833, w: -0.13919665} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: -0.03967156, y: 0.41938734, z: 0.90691817, w: -0.0063213524} + inSlope: {x: -0.06098059, y: -0.2677694, z: 0.11207611, w: -0.26546946} + outSlope: {x: -0.06098059, y: -0.2677694, z: 0.11207611, w: -0.26546946} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.039501693, y: 0.38856694, z: 0.9204646, w: -0.014151074} + inSlope: {x: -0.014174471, y: -1.105688, z: 0.45447624, w: -0.23527928} + outSlope: {x: -0.014174471, y: -1.105688, z: 0.45447624, w: -0.23527928} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: -0.040616523, y: 0.3456748, z: 0.9372166, w: -0.022006636} + inSlope: {x: -0.05952348, y: -0.3470926, z: 0.1371226, w: -0.08987052} + outSlope: {x: -0.05952348, y: -0.3470926, z: 0.1371226, w: -0.08987052} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.043469924, y: 0.36542743, z: 0.9296061, w: -0.020142442} + inSlope: {x: -0.06887567, y: -0.023598969, z: 0.0056916475, w: 0.0069816783} + outSlope: {x: -0.06887567, y: -0.023598969, z: 0.0056916475, w: 0.0069816783} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: -0.045913078, y: 0.30439523, z: 0.9510518, w: -0.027132777} + inSlope: {x: 0.0135596385, y: -1.3859332, z: 0.42957976, w: -0.16794375} + outSlope: {x: 0.0135596385, y: -1.3859332, z: 0.42957976, w: -0.16794375} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.04480406, y: 0.11253593, z: 0.9919801, w: -0.03610845} + inSlope: {x: -0.17887853, y: -2.3536947, z: 0.2467812, w: 0.009386843} + outSlope: {x: -0.17887853, y: -2.3536947, z: 0.2467812, w: 0.009386843} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5666667 + value: {x: -0.059788365, y: -0.041625112, z: 0.9966643, w: -0.03678297} + inSlope: {x: -0.24013391, y: -1.7698755, z: -0.068719134, w: -0.002424418} + outSlope: {x: -0.24013391, y: -1.7698755, z: -0.068719134, w: -0.002424418} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.06930965, y: -0.08927011, z: 0.99293506, w: -0.036152292} + inSlope: {x: -0.39247692, y: -1.433587, z: -0.157814, w: 0.008809949} + outSlope: {x: -0.39247692, y: -1.433587, z: -0.157814, w: 0.008809949} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6333334 + value: {x: -0.0859535, y: -0.13719757, z: 0.98614335, w: -0.03619564} + inSlope: {x: -0.4401366, y: -1.0899957, z: -0.17376421, w: 0.06914076} + outSlope: {x: -0.4401366, y: -1.0899957, z: -0.17376421, w: 0.06914076} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.098652095, y: -0.1619365, z: 0.9813508, w: -0.031542912} + inSlope: {x: -0.29128286, y: -0.7814565, z: -0.15259892, w: 0.19225606} + outSlope: {x: -0.29128286, y: -0.7814565, z: -0.15259892, w: 0.19225606} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.114145994, y: -0.20848475, z: 0.97129405, w: -0.009630731} + inSlope: {x: -0.34264198, y: -0.6986953, z: -0.19121912, w: 0.5199263} + outSlope: {x: -0.34264198, y: -0.6986953, z: -0.19121912, w: 0.5199263} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7666667 + value: {x: -0.12821515, y: -0.23587435, z: 0.96322215, w: 0.011283193} + inSlope: {x: -0.4051404, y: -0.4068331, z: -0.15687959, w: 0.69759965} + outSlope: {x: -0.4051404, y: -0.4068331, z: -0.15687959, w: 0.69759965} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000001 + value: {x: -0.14115538, y: -0.23560698, z: 0.9608354, w: 0.036875952} + inSlope: {x: -0.3763461, y: 0.402764, z: 0.023751047, w: 0.4943302} + outSlope: {x: -0.3763461, y: 0.402764, z: 0.023751047, w: 0.4943302} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.15330489, y: -0.20902345, z: 0.96480554, w: 0.044238552} + inSlope: {x: 0.008090764, y: 1.271252, z: 0.24863084, w: 0.14036344} + outSlope: {x: 0.008090764, y: 1.271252, z: 0.24863084, w: 0.14036344} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.86666673 + value: {x: -0.14061597, y: -0.15085682, z: 0.9774108, w: 0.04623351} + inSlope: {x: 0.5413791, y: 1.9214387, z: 0.36647916, w: -0.16134089} + outSlope: {x: 0.5413791, y: 1.9214387, z: 0.36647916, w: -0.16134089} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.90000004 + value: {x: -0.11721296, y: -0.08092755, z: 0.9892375, w: 0.033482507} + inSlope: {x: 0.5914605, y: 2.4198277, z: 0.2580572, w: -0.39581937} + outSlope: {x: 0.5914605, y: 2.4198277, z: 0.2580572, w: -0.39581937} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9666667 + value: {x: -0.09637091, y: 0.09402165, z: 0.99083143, w: 0.011209211} + inSlope: {x: 0.12182784, y: 2.3631234, z: -0.19848366, w: -0.27834833} + outSlope: {x: 0.12182784, y: 2.3631234, z: -0.19848366, w: -0.27834833} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.09306343, y: 0.16800645, z: 0.98138237, w: 0.0012890163} + inSlope: {x: 0.15892546, y: 1.8632888, z: -0.28189635, w: -0.3548682} + outSlope: {x: 0.15892546, y: 1.8632888, z: -0.28189635, w: -0.3548682} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0333334 + value: {x: -0.08577587, y: 0.21824096, z: 0.9720383, w: -0.0124486955} + inSlope: {x: 0.21862629, y: 1.5070314, z: -0.2803205, w: -0.41213027} + outSlope: {x: 0.21862629, y: 1.5070314, z: -0.2803205, w: -0.41213027} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:LeftUpLeg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.5136354, y: -0.032037333, z: -0.0063628694, w: 0.8573866} + inSlope: {x: 3.3552368, y: 0.5671977, z: -0.2103476, w: 1.744548} + outSlope: {x: 3.3552368, y: 0.5671977, z: -0.2103476, w: 1.744548} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: -0.40179417, y: -0.013130743, z: -0.013374456, w: 0.9155382} + inSlope: {x: 4.375602, y: 0.634629, z: -0.21455628, w: 1.7610481} + outSlope: {x: 4.375602, y: 0.634629, z: -0.21455628, w: 1.7610481} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: -0.22192858, y: 0.01027127, z: -0.020666622, w: 0.9747898} + inSlope: {x: 3.921997, y: 0.54271567, z: -0.37851545, w: 1.1031799} + outSlope: {x: 3.921997, y: 0.54271567, z: -0.37851545, w: 1.1031799} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: -0.14032766, y: 0.023050303, z: -0.038608823, w: 0.9890835} + inSlope: {x: 1.9534326, y: 0.26176974, z: -0.72604823, w: 0.2731758} + outSlope: {x: 1.9534326, y: 0.26176974, z: -0.72604823, w: 0.2731758} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.062463537, y: 0.023784049, z: -0.08402626, w: 0.9942194} + inSlope: {x: 0.40527153, y: -0.24293184, z: -0.06374645, w: 0.032107826} + outSlope: {x: 0.40527153, y: -0.24293184, z: -0.06374645, w: 0.032107826} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: -0.06468163, y: 0.011527127, z: -0.0733196, w: 0.99514204} + inSlope: {x: -1.1202384, y: -0.6503006, z: 0.45135963, w: -0.07997544} + outSlope: {x: -1.1202384, y: -0.6503006, z: 0.45135963, w: -0.07997544} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: -0.1371461, y: -0.019569328, z: -0.053935617, w: 0.9888877} + inSlope: {x: -0.7237806, y: -0.62791187, z: 0.38839433, w: -0.04703522} + outSlope: {x: -0.7237806, y: -0.62791187, z: 0.38839433, w: -0.04703522} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.112933666, y: -0.03033366, z: -0.047426645, w: 0.99200636} + inSlope: {x: 0.7852651, y: -0.21210523, z: 0.20017076, w: 0.09169043} + outSlope: {x: 0.7852651, y: -0.21210523, z: 0.20017076, w: 0.09169043} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: -0.084795095, y: -0.033709675, z: -0.0405909, w: 0.9950004} + inSlope: {x: -1.722379, y: -0.018893313, z: 0.38600475, w: -0.28564903} + outSlope: {x: -1.722379, y: -0.018893313, z: 0.38600475, w: -0.28564903} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.22775893, y: -0.031593215, z: -0.021692997, w: 0.9729631} + inSlope: {x: -3.0293221, y: 0.017626643, z: 0.44547743, w: -0.5641428} + outSlope: {x: -3.0293221, y: 0.017626643, z: 0.44547743, w: -0.5641428} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: -0.2867499, y: -0.032534566, z: -0.010892408, w: 0.9573909} + inSlope: {x: -1.2623459, y: -0.07414733, z: 0.19287688, w: -0.35395584} + outSlope: {x: -1.2623459, y: -0.07414733, z: 0.19287688, w: -0.35395584} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: -0.30263337, y: -0.0426142, z: -0.01677183, w: 0.95200616} + inSlope: {x: 0.7500226, y: -0.18374708, z: -0.31375107, w: 0.2104819} + outSlope: {x: 0.7500226, y: -0.18374708, z: -0.31375107, w: 0.2104819} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.20334256, y: -0.059840012, z: -0.039184045, w: 0.97649145} + inSlope: {x: 2.1785977, y: -0.3906085, z: -0.3319353, w: 0.38384295} + outSlope: {x: 2.1785977, y: -0.3906085, z: -0.3319353, w: 0.38384295} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: -0.116673976, y: -0.07482675, z: -0.051880296, w: 0.9889877} + inSlope: {x: 2.273868, y: -0.39188588, z: -0.4138795, w: 0.24327438} + outSlope: {x: 2.273868, y: -0.39188588, z: -0.4138795, w: 0.24327438} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5666667 + value: {x: -0.051751226, y: -0.08596576, z: -0.06677604, w: 0.99270976} + inSlope: {x: 1.3022277, y: 0.03429483, z: -0.3811702, w: 0.07395026} + outSlope: {x: 1.3022277, y: 0.03429483, z: -0.3811702, w: 0.07395026} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.029858762, y: -0.07254045, z: -0.077291645, w: 0.9939177} + inSlope: {x: 0.697191, y: 0.49674523, z: -0.21762997, w: 0.03847629} + outSlope: {x: 0.697191, y: 0.49674523, z: -0.21762997, w: 0.03847629} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6333334 + value: {x: -0.005271826, y: -0.05284941, z: -0.081284694, w: 0.99527484} + inSlope: {x: -0.041659683, y: 0.6890217, z: -0.10032466, w: 0.024896251} + outSlope: {x: -0.041659683, y: 0.6890217, z: -0.10032466, w: 0.024896251} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.032636028, y: -0.026605675, z: -0.08397996, w: 0.99557745} + inSlope: {x: -0.6552931, y: 0.63162297, z: -0.13429761, w: -0.00925003} + outSlope: {x: -0.6552931, y: 0.63162297, z: -0.13429761, w: -0.00925003} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.70000005 + value: {x: -0.04895802, y: -0.010741221, z: -0.09023787, w: 0.9946582} + inSlope: {x: -0.7665343, y: 0.2805012, z: -0.27549246, w: -0.06586436} + outSlope: {x: -0.7665343, y: 0.2805012, z: -0.27549246, w: -0.06586436} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.0837383, y: -0.007905585, z: -0.102346115, w: 0.9911865} + inSlope: {x: -1.1033685, y: -0.1188148, z: -0.3774693, w: -0.13650744} + outSlope: {x: -1.1033685, y: -0.1188148, z: -0.3774693, w: -0.13650744} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7666667 + value: {x: -0.12251592, y: -0.01866222, z: -0.11540249, w: 0.9855577} + inSlope: {x: -1.8211777, y: -0.5809982, z: -0.03741914, w: -0.2880851} + outSlope: {x: -1.8211777, y: -0.5809982, z: -0.03741914, w: -0.2880851} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000001 + value: {x: -0.20515025, y: -0.04663883, z: -0.104840726, w: 0.9719808} + inSlope: {x: -2.8361464, y: -0.7359512, z: -0.07892224, w: -0.6820592} + outSlope: {x: -2.8361464, y: -0.7359512, z: -0.07892224, w: -0.6820592} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.3115923, y: -0.067725636, z: -0.12066395, w: 0.9400871} + inSlope: {x: -3.016329, y: -0.8618545, z: 0.30053335, w: -1.0219842} + outSlope: {x: -3.016329, y: -0.8618545, z: 0.30053335, w: -1.0219842} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.86666673 + value: {x: -0.40623882, y: -0.10409581, z: -0.08480512, w: 0.9038485} + inSlope: {x: -2.6327624, y: -0.30458122, z: 0.8510882, w: -1.1032346} + outSlope: {x: -2.6327624, y: -0.30458122, z: 0.8510882, w: -1.1032346} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.90000004 + value: {x: -0.4871098, y: -0.0880311, z: -0.06392472, w: 0.8665381} + inSlope: {x: -2.506094, y: 0.68296295, z: 0.47010994, w: -1.3253652} + outSlope: {x: -2.506094, y: 0.68296295, z: 0.47010994, w: -1.3253652} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9333334 + value: {x: -0.57331175, y: -0.058564935, z: -0.053464472, w: 0.81549084} + inSlope: {x: -1.6738037, y: 0.5418308, z: 0.55258656, w: -1.0155778} + outSlope: {x: -1.6738037, y: 0.5418308, z: 0.55258656, w: -1.0155778} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9666667 + value: {x: -0.59869677, y: -0.05190903, z: -0.027085636, w: 0.7988329} + inSlope: {x: -0.06909287, y: 0.18534054, z: 0.68696713, w: -0.011118665} + outSlope: {x: -0.06909287, y: 0.18534054, z: 0.68696713, w: -0.011118665} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.57791793, y: -0.04620891, z: -0.0076667047, w: 0.8147496} + inSlope: {x: 1.2759211, y: 0.29807365, z: 0.31084105, w: 0.8783058} + outSlope: {x: 1.2759211, y: 0.29807365, z: 0.31084105, w: 0.8783058} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0333334 + value: {x: -0.5136352, y: -0.032037422, z: -0.0063629127, w: 0.8573867} + inSlope: {x: 1.9284765, y: 0.42514354, z: 0.039113656, w: 1.27911} + outSlope: {x: 1.9284765, y: 0.42514354, z: 0.039113656, w: 1.27911} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.597121, y: -0.0024212028, z: -0.022469021, w: 0.80183285} + inSlope: {x: -0.6606191, y: 0.43201658, z: 0.61590403, w: 0.4848003} + outSlope: {x: -0.6606191, y: 0.43201658, z: 0.61590403, w: 0.4848003} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.57510036, y: 0.011979351, z: -0.0019388855, w: 0.81799287} + inSlope: {x: -1.1283283, y: 0.37578338, z: 0.5943023, w: 0.7605243} + outSlope: {x: -1.1283283, y: 0.37578338, z: 0.5943023, w: 0.7605243} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: 0.5218991, y: 0.022631023, z: 0.017151134, w: 0.8525345} + inSlope: {x: -0.9329089, y: 0.2166997, z: 0.31015465, w: 0.5976024} + outSlope: {x: -0.9329089, y: 0.2166997, z: 0.31015465, w: 0.5976024} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: 0.51290643, y: 0.026425999, z: 0.018738093, w: 0.857833} + inSlope: {x: 0.105874866, y: 0.20934089, z: 0.22706434, w: -0.07935229} + outSlope: {x: 0.105874866, y: 0.20934089, z: 0.22706434, w: -0.07935229} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.5289574, y: 0.03658708, z: 0.032288756, w: 0.8472443} + inSlope: {x: 0.63836044, y: 0.14435862, z: 0.08429868, w: -0.4114688} + outSlope: {x: 0.63836044, y: 0.14435862, z: 0.08429868, w: -0.4114688} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.5554638, y: 0.036049906, z: 0.024358004, w: 0.8304018} + inSlope: {x: 0.13516289, y: -0.07436562, z: -0.16430001, w: -0.0771458} + outSlope: {x: 0.13516289, y: -0.07436562, z: -0.16430001, w: -0.0771458} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: 0.5379683, y: 0.031629372, z: 0.021335421, w: 0.8421013} + inSlope: {x: -1.0242028, y: -0.4667811, z: -0.5641921, w: 0.64174885} + outSlope: {x: -1.0242028, y: -0.4667811, z: -0.5641921, w: 0.64174885} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: 0.4871836, y: 0.004931166, z: -0.013254799, w: 0.87318504} + inSlope: {x: -2.5018756, y: -0.5555866, z: -0.47357786, w: 1.2958333} + outSlope: {x: -2.5018756, y: -0.5555866, z: -0.47357786, w: 1.2958333} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.37117657, y: -0.005409729, z: -0.010236432, w: 0.92849016} + inSlope: {x: -2.7488406, y: -0.25027704, z: -0.012837332, w: 1.1899961} + outSlope: {x: -2.7488406, y: -0.25027704, z: -0.012837332, w: 1.1899961} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: 0.30392757, y: -0.01175397, z: -0.014110621, w: 0.9525181} + inSlope: {x: 0.63788617, y: -0.18931514, z: -0.3103686, w: -0.28173122} + outSlope: {x: 0.63788617, y: -0.18931514, z: -0.3103686, w: -0.28173122} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.4137023, y: -0.018030738, z: -0.030927671, w: 0.9097081} + inSlope: {x: 2.6977544, y: -0.15984917, z: -0.40997088, w: -1.1789446} + outSlope: {x: 2.6977544, y: -0.15984917, z: -0.40997088, w: -1.1789446} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.5384764, y: -0.024548888, z: -0.04791081, w: 0.8409192} + inSlope: {x: 1.3401897, y: 0.0063320547, z: -0.07775492, w: -0.8411412} + outSlope: {x: 1.3401897, y: 0.0063320547, z: -0.07775492, w: -0.8411412} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.601575, y: -0.010825739, z: -0.034401704, w: 0.79800177} + inSlope: {x: 0.10920094, y: 0.18076211, z: 0.22109962, w: -0.06963117} + outSlope: {x: 0.10920094, y: 0.18076211, z: 0.22109962, w: -0.06963117} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5666667 + value: {x: 0.60514534, y: 0.0022729097, z: -0.015590098, w: 0.7959591} + inSlope: {x: 0.48252344, y: -0.14513963, z: 0.4850071, w: -0.37265205} + outSlope: {x: 0.48252344, y: -0.14513963, z: 0.4850071, w: -0.37265205} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.63127023, y: -0.013904618, z: 0.006744036, w: 0.77540904} + inSlope: {x: 0.7189323, y: -0.69714195, z: 0.83033615, w: -0.61504304} + outSlope: {x: 0.7189323, y: -0.69714195, z: 0.83033615, w: -0.61504304} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6333334 + value: {x: 0.65307415, y: -0.04420323, z: 0.03976565, w: 0.75495625} + inSlope: {x: 0.9210316, y: -0.94755805, z: 1.0029811, w: -0.9311185} + outSlope: {x: 0.9210316, y: -0.94755805, z: 1.0029811, w: -0.9311185} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.6926723, y: -0.077075146, z: 0.073609434, w: 0.7133345} + inSlope: {x: 1.0922914, y: -0.7085964, z: 0.90786546, w: -1.2100868} + outSlope: {x: 1.0922914, y: -0.7085964, z: 0.90786546, w: -1.2100868} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7666667 + value: {x: 0.7619662, y: -0.08136361, z: 0.11477609, w: 0.6321503} + inSlope: {x: 0.020323075, y: 0.5774592, z: -0.41862354, w: 0.10797313} + outSlope: {x: 0.020323075, y: 0.5774592, z: -0.41862354, w: 0.10797313} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000001 + value: {x: 0.7540836, y: -0.05567718, z: 0.08567648, w: 0.64878166} + inSlope: {x: -1.0904896, y: 0.99911976, z: -0.40570977, w: 1.3031216} + outSlope: {x: -1.0904896, y: 0.99911976, z: -0.40570977, w: 1.3031216} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.689267, y: -0.014755644, z: 0.087728746, w: 0.719025} + inSlope: {x: -3.1732507, y: 1.0723426, z: -0.43127605, w: 2.8375854} + outSlope: {x: -3.1732507, y: 1.0723426, z: -0.43127605, w: 2.8375854} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.86666673 + value: {x: 0.54253346, y: 0.015812313, z: 0.056924712, w: 0.83795404} + inSlope: {x: -2.8041866, y: 0.6971422, z: -0.67371655, w: 2.160191} + outSlope: {x: -2.8041866, y: 0.6971422, z: -0.67371655, w: 2.160191} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.90000004 + value: {x: 0.5023211, y: 0.03172051, z: 0.042814296, w: 0.8630378} + inSlope: {x: 0.2174356, y: 0.091919616, z: -0.4672825, w: -0.12226683} + outSlope: {x: 0.2174356, y: 0.091919616, z: -0.4672825, w: -0.12226683} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9333334 + value: {x: 0.55702925, y: 0.021940265, z: 0.025772545, w: 0.8298029} + inSlope: {x: 1.130902, y: -0.24107704, z: -0.44114292, w: -0.70588654} + outSlope: {x: 1.130902, y: -0.24107704, z: -0.44114292, w: -0.70588654} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.58394915, y: 0.009166719, z: 0.0012873397, w: 0.8117375} + inSlope: {x: 0.29109168, y: -0.27105087, z: -0.53810906, w: -0.21218655} + outSlope: {x: 0.29109168, y: -0.27105087, z: -0.53810906, w: -0.21218655} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0333334 + value: {x: 0.59712076, y: -0.0024213747, z: -0.02246922, w: 0.8018329} + inSlope: {x: 0.39514735, y: -0.34764192, z: -0.71269494, w: -0.29713613} + outSlope: {x: 0.39514735, y: -0.34764192, z: -0.71269494, w: -0.29713613} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.40911266, y: 0.045247357, z: -0.12655257, w: 0.902532} + inSlope: {x: -3.9263175, y: -1.3050934, z: -0.27547583, w: 1.4502077} + outSlope: {x: -3.9263175, y: -1.3050934, z: -0.27547583, w: 1.4502077} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.2782354, y: 0.0017442392, z: -0.1357351, w: 0.95087224} + inSlope: {x: -2.909405, y: -0.14086944, z: 0.055267572, w: 0.98436975} + outSlope: {x: -2.909405, y: -0.14086944, z: 0.055267572, w: 0.98436975} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: 0.21515232, y: 0.03585606, z: -0.12286806, w: 0.96815664} + inSlope: {x: -0.88510305, y: 0.52095205, z: 0.19210002, w: 0.24508059} + outSlope: {x: -0.88510305, y: 0.52095205, z: 0.19210002, w: 0.24508059} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: 0.21922854, y: 0.03647438, z: -0.122928426, w: 0.96721095} + inSlope: {x: 0.29032433, y: 0.044026174, z: -0.0040199608, w: -0.06979555} + outSlope: {x: 0.29032433, y: 0.044026174, z: -0.0040199608, w: -0.06979555} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.23798434, y: 0.039318256, z: -0.12317896, w: 0.9626237} + inSlope: {x: 0.06072007, y: 0.009205118, z: -0.00074800104, w: -0.015384257} + outSlope: {x: 0.06072007, y: 0.009205118, z: -0.00074800104, w: -0.015384257} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: 0.24972445, y: 0.041097753, z: -0.12331246, w: 0.9595534} + inSlope: {x: 0.28509426, y: 0.043208882, z: -0.003081523, w: -0.075904734} + outSlope: {x: 0.28509426, y: 0.043208882, z: -0.003081523, w: -0.075904734} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.25756156, y: 0.042285405, z: -0.12339136, w: 0.95741767} + inSlope: {x: -0.07856526, y: -0.011907611, z: 0.00085953635, w: 0.020832717} + outSlope: {x: -0.07856526, y: -0.011907611, z: 0.00085953635, w: 0.020832717} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.23030595, y: 0.03815416, z: -0.12308197, w: 0.9645487} + inSlope: {x: -0.22626111, y: -0.034300763, z: 0.0027766454, w: 0.057429675} + outSlope: {x: -0.22626111, y: -0.034300763, z: 0.0027766454, w: 0.057429675} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: 0.23220481, y: 0.038442038, z: -0.12310667, w: 0.9640788} + inSlope: {x: -0.015070887, y: -0.0022852982, z: 0.00019613655, w: 0.0037336354} + outSlope: {x: -0.015070887, y: -0.0022852982, z: 0.00019613655, w: 0.0037336354} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.70000005 + value: {x: 0.23751755, y: 0.039247483, z: -0.12317328, w: 0.9627426} + inSlope: {x: 0.30538142, y: 0.04629226, z: -0.003619195, w: -0.07859232} + outSlope: {x: 0.30538142, y: 0.04629226, z: -0.003619195, w: -0.07859232} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7666667 + value: {x: 0.29052088, y: 0.047277655, z: -0.1236332, w: 0.9476694} + inSlope: {x: 2.115168, y: 0.3200033, z: -0.0016079831, w: -0.7439941} + outSlope: {x: 2.115168, y: 0.3200033, z: -0.0016079831, w: -0.7439941} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000001 + value: {x: 0.39130574, y: 0.06251772, z: -0.123425625, w: 0.90980077} + inSlope: {x: 3.0906038, y: 0.6259819, z: 0.102282114, w: -1.38273} + outSlope: {x: 3.0906038, y: 0.6259819, z: 0.102282114, w: -1.38273} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.4965611, y: 0.08900977, z: -0.1168144, w: 0.8554874} + inSlope: {x: 4.3148303, y: 0.92899954, z: 0.15747231, w: -2.9267726} + outSlope: {x: 4.3148303, y: 0.92899954, z: 0.15747231, w: -2.9267726} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.86666673 + value: {x: 0.67896116, y: 0.12445103, z: -0.112927474, w: 0.7146825} + inSlope: {x: 2.9890811, y: 0.8401011, z: 0.009165682, w: -2.4261255} + outSlope: {x: 2.9890811, y: 0.8401011, z: 0.009165682, w: -2.4261255} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.90000004 + value: {x: 0.6958333, y: 0.14501652, z: -0.116203345, w: 0.6937456} + inSlope: {x: -0.62825286, y: 0.052162975, z: -0.0639838, w: 0.54507303} + outSlope: {x: -0.62825286, y: 0.052162975, z: -0.0639838, w: 0.54507303} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9333334 + value: {x: 0.63707757, y: 0.12792853, z: -0.11719306, w: 0.7510208} + inSlope: {x: -1.4868011, y: -0.95922196, z: -0.01748084, w: 1.4389343} + outSlope: {x: -1.4868011, y: -0.95922196, z: -0.01748084, w: 1.4389343} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9666667 + value: {x: 0.59671324, y: 0.08106842, z: -0.117368735, w: 0.7896746} + inSlope: {x: -1.5211966, y: -1.1821088, z: -0.06630628, w: 1.2474296} + outSlope: {x: -1.5211966, y: -1.1821088, z: -0.06630628, w: 1.2474296} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.53566456, y: 0.049121346, z: -0.12161347, w: 0.8341827} + inSlope: {x: -2.8140073, y: -0.53731346, z: -0.13775757, w: 1.6928599} + outSlope: {x: -2.8140073, y: -0.53731346, z: -0.13775757, w: 1.6928599} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0333334 + value: {x: 0.40911248, y: 0.04524754, z: -0.12655258, w: 0.90253204} + inSlope: {x: -3.7965522, y: -0.11621389, z: -0.14817289, w: 2.0504754} + outSlope: {x: -3.7965522, y: -0.11621389, z: -0.14817289, w: 2.0504754} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot/mixamorig:LeftToeBase + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.04573715, y: 0.039433047, z: 0.0727525, w: 0.99552006} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.04573715, y: 0.039433047, z: 0.0727525, w: 0.99552006} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot/mixamorig:LeftToeBase/mixamorig:LeftToe_End + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.061137233, y: 0.045421075, z: 0.9966273, w: 0.030549029} + inSlope: {x: 0.23553404, y: -1.2395418, z: 0.015399455, w: 0.00059572974} + outSlope: {x: 0.23553404, y: -1.2395418, z: 0.015399455, w: 0.00059572974} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.06898837, y: 0.004103013, z: 0.9971406, w: 0.030568887} + inSlope: {x: 0.34694242, y: -1.4436547, z: -0.030204352, w: 0.030103408} + outSlope: {x: 0.34694242, y: -1.4436547, z: -0.030204352, w: 0.030103408} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: 0.08426673, y: -0.050822575, z: 0.99461365, w: 0.032555923} + inSlope: {x: 0.46065092, y: -1.4376886, z: -0.10476707, w: 0.06847265} + outSlope: {x: 0.46065092, y: -1.4376886, z: -0.10476707, w: 0.06847265} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.114534125, y: -0.155968, z: 0.98081416, w: 0.023654122} + inSlope: {x: 0.14470024, y: -0.89080346, z: -0.1515716, w: -0.31893715} + outSlope: {x: 0.14470024, y: -0.89080346, z: -0.1515716, w: -0.31893715} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: 0.12718086, y: -0.22047678, z: 0.96705836, w: -0.0036240355} + inSlope: {x: 0.28190064, y: -0.98815066, z: -0.26318732, w: -0.47418815} + outSlope: {x: 0.28190064, y: -0.98815066, z: -0.26318732, w: -0.47418815} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: 0.13963115, y: -0.26372692, z: 0.9537555, w: -0.0360794} + inSlope: {x: -0.09568379, y: 0.37272245, z: 0.09483309, w: -0.35499236} + outSlope: {x: -0.09568379, y: 0.37272245, z: 0.09483309, w: -0.35499236} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: 0.119258806, y: -0.16293043, z: 0.97844815, w: -0.043246977} + inSlope: {x: -0.32905307, y: 2.0542142, z: 0.3806268, w: 0.16283917} + outSlope: {x: -0.32905307, y: 2.0542142, z: 0.3806268, w: 0.16283917} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: 0.10171798, y: -0.00040164916, z: 0.9945085, w: -0.024619097} + inSlope: {x: -0.16216123, y: 2.6637552, z: 0.02413005, w: 0.11307999} + outSlope: {x: -0.16216123, y: 2.6637552, z: 0.02413005, w: 0.11307999} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5666667 + value: {x: 0.08529327, y: 0.3243151, z: 0.9420016, w: -0.013334329} + inSlope: {x: -0.24969456, y: 1.8874556, z: -0.6101203, w: 0.13449536} + outSlope: {x: -0.24969456, y: 1.8874556, z: -0.6101203, w: 0.13449536} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.07299912, y: 0.37926552, z: 0.92237246, w: -0.007601855} + inSlope: {x: -0.5033351, y: 1.119522, z: -0.3973605, w: 0.17838489} + outSlope: {x: -0.5033351, y: 1.119522, z: -0.3973605, w: 0.17838489} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6333334 + value: {x: 0.05173759, y: 0.39894986, z: 0.9155109, w: -0.0014420035} + inSlope: {x: -0.39491677, y: 0.16788536, z: -0.04594252, w: -0.11556508} + outSlope: {x: -0.39491677, y: 0.16788536, z: -0.04594252, w: -0.11556508} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.046671323, y: 0.3904579, z: 0.9193096, w: -0.015306175} + inSlope: {x: -0.06948924, y: 0.21518338, z: -0.09477478, w: -0.25370347} + outSlope: {x: -0.06948924, y: 0.21518338, z: -0.09477478, w: -0.25370347} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.04658616, y: 0.4335273, z: 0.89978945, w: -0.016211402} + inSlope: {x: -0.040744357, y: 0.02702111, z: -0.0076346993, w: 0.21092366} + outSlope: {x: -0.040744357, y: 0.02702111, z: -0.0076346993, w: 0.21092366} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7666667 + value: {x: 0.04438869, y: 0.41509682, z: 0.9086836, w: -0.004293972} + inSlope: {x: 0.028271798, y: -0.59852326, z: 0.27277505, w: 0.3284968} + outSlope: {x: 0.028271798, y: -0.59852326, z: 0.27277505, w: 0.3284968} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.90000004 + value: {x: 0.0649383, y: 0.31148654, z: 0.94792616, w: 0.013970249} + inSlope: {x: -0.001466427, y: -1.1940103, z: 0.38281918, w: 0.121173546} + outSlope: {x: -0.001466427, y: -1.1940103, z: 0.38281918, w: 0.121173546} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.055527084, y: 0.13218868, z: 0.98929363, w: 0.027220892} + inSlope: {x: 0.06490207, y: -2.3973646, z: 0.2980067, w: 0.09525712} + outSlope: {x: 0.06490207, y: -2.3973646, z: 0.2980067, w: 0.09525712} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0333334 + value: {x: 0.06113713, y: 0.04542397, z: 0.99662715, w: 0.030548861} + inSlope: {x: 0.16830091, y: -2.6029344, z: 0.22000493, w: 0.09983882} + outSlope: {x: 0.16830091, y: -2.6029344, z: 0.22000493, w: 0.09983882} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:RightUpLeg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.07426643, y: 0.031839415, z: 0.06769143, w: 0.9944288} + inSlope: {x: 0.25317168, y: 0.23099406, z: 0.1310885, w: 0.00033080575} + outSlope: {x: 0.25317168, y: 0.23099406, z: 0.1310885, w: 0.00033080575} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: -0.06582738, y: 0.039539218, z: 0.07206105, w: 0.99443984} + inSlope: {x: 0.6693256, y: 0.36478838, z: 0.01737133, w: 0.017626584} + outSlope: {x: 0.6693256, y: 0.36478838, z: 0.01737133, w: 0.017626584} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: -0.029644724, y: 0.056158643, z: 0.06884952, w: 0.9956039} + inSlope: {x: 0.5620673, y: 0.20607902, z: -0.14288472, w: 0.026645957} + outSlope: {x: 0.5620673, y: 0.20607902, z: -0.14288472, w: 0.026645957} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.071143284, y: 0.01352338, z: 0.06466362, w: 0.99527603} + inSlope: {x: -0.56521523, y: -0.35024065, z: 0.15368964, w: -0.040694468} + outSlope: {x: -0.56521523, y: -0.35024065, z: 0.15368964, w: -0.040694468} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: -0.08343224, y: 0.0063340478, z: 0.07214077, w: 0.9938786} + inSlope: {x: -0.5736142, y: -0.048039496, z: 0.27574614, w: -0.07208258} + outSlope: {x: -0.5736142, y: -0.048039496, z: 0.27574614, w: -0.07208258} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: -0.10938423, y: 0.0103207445, z: 0.0830467, w: 0.9904705} + inSlope: {x: -0.85285336, y: 0.23403105, z: 0.28492337, w: -0.12322964} + outSlope: {x: -0.85285336, y: 0.23403105, z: 0.28492337, w: -0.12322964} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.14028913, y: 0.021936117, z: 0.09113566, w: 0.9856633} + inSlope: {x: -1.4043461, y: 0.5028291, z: 0.054006614, w: -0.24180654} + outSlope: {x: -1.4043461, y: 0.5028291, z: 0.054006614, w: -0.24180654} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: -0.2030073, y: 0.04384268, z: 0.08664714, w: 0.9743501} + inSlope: {x: -2.7833445, y: 0.7100669, z: -0.07147071, w: -0.7011876} + outSlope: {x: -2.7833445, y: 0.7100669, z: -0.07147071, w: -0.7011876} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.32584542, y: 0.06927391, z: 0.086370945, w: 0.93891746} + inSlope: {x: -3.2280512, y: 0.07250261, z: -0.04842606, w: -1.0672386} + outSlope: {x: -3.2280512, y: 0.07250261, z: -0.04842606, w: -1.0672386} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: -0.4182107, y: 0.04867619, z: 0.083418734, w: 0.90320086} + inSlope: {x: -2.5710025, y: -0.9676562, z: 0.13702194, w: -1.1489005} + outSlope: {x: -2.5710025, y: -0.9676562, z: 0.13702194, w: -1.1489005} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: -0.49724564, y: 0.0047634672, z: 0.09550575, w: 0.86232406} + inSlope: {x: -2.3417811, y: -0.9785134, z: 0.18020988, w: -1.3549031} + outSlope: {x: -2.3417811, y: -0.9785134, z: 0.18020988, w: -1.3549031} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: -0.5743295, y: -0.01655807, z: 0.095432736, w: 0.81287396} + inSlope: {x: -1.7243516, y: -0.101962194, z: -0.52437997, w: -1.109208} + outSlope: {x: -1.7243516, y: -0.101962194, z: -0.52437997, w: -1.109208} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: -0.6122024, y: -0.002034011, z: 0.06054709, w: 0.78837687} + inSlope: {x: -0.7368585, y: 0.37201208, z: -0.9527364, w: -0.47563} + outSlope: {x: -0.7368585, y: 0.37201208, z: -0.9527364, w: -0.47563} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: -0.6065129, y: 0.004685938, z: 0.024566654, w: 0.79468024} + inSlope: {x: 0.8960216, y: -0.20759538, z: -0.010816, w: 0.6628994} + outSlope: {x: 0.8960216, y: -0.20759538, z: -0.010816, w: 0.6628994} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5666667 + value: {x: -0.56371856, y: -0.005596979, z: 0.031195942, w: 0.8253586} + inSlope: {x: 1.8469551, y: -0.2637097, z: 0.42204648, w: 1.1856896} + outSlope: {x: 1.8469551, y: -0.2637097, z: 0.42204648, w: 1.1856896} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.4833826, y: -0.0128947105, z: 0.05270307, w: 0.8737262} + inSlope: {x: 3.2195635, y: -0.22095364, z: 1.0177298, w: 1.59395} + outSlope: {x: 3.2195635, y: -0.22095364, z: 1.0177298, w: 1.59395} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6333334 + value: {x: -0.34908095, y: -0.020327222, z: 0.09904461, w: 0.93162197} + inSlope: {x: 3.9685502, y: -0.16255203, z: 0.6626366, w: 1.4539413} + outSlope: {x: 3.9685502, y: -0.16255203, z: 0.6626366, w: 1.4539413} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.21881261, y: -0.023731515, z: 0.096878886, w: 0.9706556} + inSlope: {x: 2.4523702, y: 0.22224231, z: -0.19866663, w: 0.7085515} + outSlope: {x: 2.4523702, y: 0.22224231, z: -0.19866663, w: 0.7085515} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.70000005 + value: {x: -0.1855897, y: -0.00551105, z: 0.08580016, w: 0.9788587} + inSlope: {x: 0.079566926, y: 0.27967995, z: -0.27421403, w: 0.04658264} + outSlope: {x: 0.079566926, y: 0.27967995, z: -0.27421403, w: 0.04658264} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.2135081, y: -0.0050861714, z: 0.07859795, w: 0.97376114} + inSlope: {x: -0.36838597, y: -0.10924943, z: -0.15499754, w: -0.06285408} + outSlope: {x: -0.36838597, y: -0.10924943, z: -0.15499754, w: -0.06285408} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7666667 + value: {x: -0.21014874, y: -0.012794352, z: 0.075467, w: 0.97466844} + inSlope: {x: -0.18865906, y: 0.12870088, z: -0.2858583, w: -0.0222194} + outSlope: {x: -0.18865906, y: 0.12870088, z: -0.2858583, w: -0.0222194} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000001 + value: {x: -0.22608538, y: 0.0034938941, z: 0.05954071, w: 0.97227985} + inSlope: {x: -0.67111146, y: 0.33605063, z: -0.5675695, w: -0.127177} + outSlope: {x: -0.67111146, y: 0.33605063, z: -0.5675695, w: -0.127177} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.90000004 + value: {x: -0.3045674, y: 0.018135702, z: 0.016560784, w: 0.9521741} + inSlope: {x: -0.015643924, y: 0.13671198, z: 0.008483253, w: -0.0074843764} + outSlope: {x: -0.015643924, y: 0.13671198, z: 0.008483253, w: -0.0074843764} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.17415842, y: 0.025582055, z: 0.056182645, w: 0.9827807} + inSlope: {x: 2.577468, y: 0.12518899, z: 0.38706955, w: 0.39563185} + outSlope: {x: 2.577468, y: 0.12518899, z: 0.38706955, w: 0.39563185} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0333334 + value: {x: -0.074272886, y: 0.03183918, z: 0.06769113, w: 0.99442834} + inSlope: {x: 2.9965582, y: 0.1877133, z: 0.3452537, w: 0.34942833} + outSlope: {x: 2.9965582, y: 0.1877133, z: 0.3452537, w: 0.34942833} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.58019555, y: -0.00664979, z: 0.0075944527, w: 0.81441474} + inSlope: {x: 1.0904485, y: -0.08429963, z: -0.097546615, w: -0.814889} + outSlope: {x: 1.0904485, y: -0.08429963, z: -0.097546615, w: -0.814889} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.6165438, y: -0.009459778, z: 0.0043428987, w: 0.7872518} + inSlope: {x: 0.7911828, y: -0.015599817, z: 0.010902934, w: -0.60446525} + outSlope: {x: 0.7911828, y: -0.015599817, z: 0.010902934, w: -0.60446525} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: 0.63294107, y: -0.0076897778, z: 0.008321315, w: 0.77411705} + inSlope: {x: 0.65771693, y: 0.32611462, z: -0.13721614, w: -0.54669315} + outSlope: {x: 0.65771693, y: 0.32611462, z: -0.13721614, w: -0.54669315} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.69218516, y: 0.04193274, z: -0.036624078, w: 0.7195694} + inSlope: {x: 1.0375026, y: 0.6713207, z: -0.8582039, w: -1.0814579} + outSlope: {x: 1.0375026, y: 0.6713207, z: -0.8582039, w: -1.0814579} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.72955847, y: 0.05703591, z: -0.06201843, w: 0.6787084} + inSlope: {x: 0.85649097, y: 0.27661788, z: -0.69510937, w: -0.97977424} + outSlope: {x: 0.85649097, y: 0.27661788, z: -0.69510937, w: -0.97977424} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: 0.7623613, y: 0.050577596, z: -0.09322639, w: 0.63840115} + inSlope: {x: 0.14658006, y: -0.5039713, z: -0.24646261, w: -0.17124295} + outSlope: {x: 0.14658006, y: -0.5039713, z: -0.24646261, w: -0.17124295} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.75905657, y: 0.02677585, z: -0.09939555, w: 0.6428349} + inSlope: {x: -0.46031806, y: -1.0805461, z: 0.0008052215, w: 0.5477313} + outSlope: {x: -0.46031806, y: -1.0805461, z: 0.0008052215, w: 0.5477313} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: 0.7316734, y: -0.021458808, z: -0.09317271, w: 0.67491657} + inSlope: {x: -1.7263763, y: -1.6212327, z: -0.11689078, w: 1.6544716} + outSlope: {x: -1.7263763, y: -1.6212327, z: -0.11689078, w: 1.6544716} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.6439648, y: -0.08130633, z: -0.10718827, w: 0.753133} + inSlope: {x: -3.3019872, y: -0.9210237, z: -0.2955116, w: 2.5928514} + outSlope: {x: -3.3019872, y: -0.9210237, z: -0.2955116, w: 2.5928514} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: 0.51154095, y: -0.08286039, z: -0.11287348, w: 0.8477733} + inSlope: {x: -2.0400186, y: 0.28254613, z: 0.36269632, w: 1.5293652} + outSlope: {x: -2.0400186, y: 0.28254613, z: 0.36269632, w: 1.5293652} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.5079636, y: -0.062469903, z: -0.08300849, w: 0.8550907} + inSlope: {x: 0.66793275, y: 0.45898336, z: 0.6775887, w: -0.31574708} + outSlope: {x: 0.66793275, y: 0.45898336, z: 0.6775887, w: -0.31574708} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: 0.5560698, y: -0.05226148, z: -0.06770088, w: 0.8267235} + inSlope: {x: 1.1764814, y: 0.23515952, z: 0.4159249, w: -0.72465336} + outSlope: {x: 1.1764814, y: 0.23515952, z: 0.4159249, w: -0.72465336} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: 0.5863957, y: -0.046792604, z: -0.055280164, w: 0.80678046} + inSlope: {x: 0.91555107, y: 0.17283349, z: 0.40124333, w: -0.6295041} + outSlope: {x: 0.91555107, y: 0.17283349, z: 0.40124333, w: -0.6295041} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: 0.64372724, y: -0.044312753, z: -0.04002433, w: 0.76292187} + inSlope: {x: 0.5915053, y: -0.11439746, z: -0.009975908, w: -0.49753594} + outSlope: {x: 0.5915053, y: -0.11439746, z: -0.009975908, w: -0.49753594} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5666667 + value: {x: 0.6565402, y: -0.048365757, z: -0.0416164, w: 0.7515875} + inSlope: {x: -0.20887937, y: -0.035992987, z: -0.006707441, w: 0.17056572} + outSlope: {x: -0.20887937, y: -0.035992987, z: -0.006707441, w: 0.17056572} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.629802, y: -0.04671229, z: -0.040471494, w: 0.7742929} + inSlope: {x: -1.0515625, y: -0.034721628, z: -0.13105924, w: 0.8287685} + outSlope: {x: -1.0515625, y: -0.034721628, z: -0.13105924, w: 0.8287685} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6333334 + value: {x: 0.58643603, y: -0.050680537, z: -0.05035369, w: 0.80683875} + inSlope: {x: -0.8163577, y: 0.0012708046, z: -0.028739192, w: 0.61745316} + outSlope: {x: -0.8163577, y: 0.0012708046, z: -0.028739192, w: 0.61745316} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.5753781, y: -0.046627577, z: -0.042387456, w: 0.81545645} + inSlope: {x: -0.16293006, y: 0.3052087, z: 0.54954123, w: 0.15349488} + outSlope: {x: -0.16293006, y: 0.3052087, z: 0.54954123, w: 0.15349488} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.70000005 + value: {x: 0.57557404, y: -0.030333279, z: -0.013717591, w: 0.81707174} + inSlope: {x: -0.62843233, y: 0.45319027, z: 0.61536777, w: 0.45291373} + outSlope: {x: -0.62843233, y: 0.45319027, z: 0.61536777, w: 0.45291373} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.5334827, y: -0.016414892, z: -0.0013629246, w: 0.8456507} + inSlope: {x: -1.641137, y: 0.3671407, z: 0.21892259, w: 1.0140948} + outSlope: {x: -1.641137, y: 0.3671407, z: 0.21892259, w: 1.0140948} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7666667 + value: {x: 0.4661649, y: -0.0058572367, z: 0.00087723794, w: 0.88467807} + inSlope: {x: -1.4300135, y: 0.24612471, z: 0.10954231, w: 0.7984849} + outSlope: {x: -1.4300135, y: 0.24612471, z: 0.10954231, w: 0.7984849} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.45272416, y: 0.008842508, z: 0.020106139, w: 0.8913801} + inSlope: {x: 0.92276806, y: 0.21988891, z: 0.40439725, w: -0.50121075} + outSlope: {x: 0.92276806, y: 0.21988891, z: 0.40439725, w: -0.50121075} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.90000004 + value: {x: 0.54515743, y: 0.016911363, z: 0.04041131, w: 0.83718836} + inSlope: {x: 1.1207868, y: -0.014783144, z: 0.07579908, w: -0.71817684} + outSlope: {x: 1.1207868, y: -0.014783144, z: 0.07579908, w: -0.71817684} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.59070027, y: -0.001112019, z: 0.017014472, w: 0.8067109} + inSlope: {x: -0.13816194, y: -0.18643782, z: -0.29328248, w: 0.10582356} + outSlope: {x: -0.13816194, y: -0.18643782, z: -0.29328248, w: 0.10582356} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0333334 + value: {x: 0.5801985, y: -0.006649696, z: 0.0075946744, w: 0.81441253} + inSlope: {x: -0.31505144, y: -0.16612986, z: -0.28259316, w: 0.23104845} + outSlope: {x: -0.31505144, y: -0.16612986, z: -0.28259316, w: 0.23104845} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.21174769, y: -0.035339687, z: 0.12281584, w: 0.96893257} + inSlope: {x: -0.075830065, y: 0.011502988, z: -0.0011897831, w: 0.017035604} + outSlope: {x: -0.075830065, y: 0.011502988, z: -0.0011897831, w: 0.017035604} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: 0.23362225, y: -0.03865697, z: 0.12312486, w: 0.9637254} + inSlope: {x: 0.606951, y: -0.108032614, z: 0.0010812645, w: -0.1565033} + outSlope: {x: 0.606951, y: -0.108032614, z: 0.0010812645, w: -0.1565033} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.31257755, y: -0.050616294, z: 0.12371233, w: 0.94044065} + inSlope: {x: 1.8810091, y: -0.2723739, z: 0.0047641625, w: -0.6674472} + outSlope: {x: 1.8810091, y: -0.2723739, z: 0.0047641625, w: -0.6674472} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: 0.3862321, y: -0.062007595, z: 0.12333469, w: 0.91201335} + inSlope: {x: 3.672883, y: -0.6474344, z: -0.088836, w: -1.8598117} + outSlope: {x: 3.672883, y: -0.6474344, z: -0.088836, w: -1.8598117} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.5574364, y: -0.09377859, z: 0.11778993, w: 0.8164532} + inSlope: {x: 4.332184, y: -1.7746986, z: -0.061809167, w: -3.0992184} + outSlope: {x: 4.332184, y: -1.7746986, z: -0.061809167, w: -3.0992184} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: 0.67504436, y: -0.18032083, z: 0.11921408, w: 0.7053988} + inSlope: {x: 1.3243742, y: -2.2416217, z: 0.0441487, w: -1.5419798} + outSlope: {x: 1.3243742, y: -2.2416217, z: 0.0441487, w: -1.5419798} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.645728, y: -0.24322008, z: 0.12073318, w: 0.7136546} + inSlope: {x: -1.1396766, y: -0.5336372, z: -0.049819153, w: 0.85328484} + outSlope: {x: -1.1396766, y: -0.5336372, z: -0.049819153, w: 0.85328484} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: 0.5990659, y: -0.2158967, z: 0.115892805, w: 0.76228446} + inSlope: {x: -1.1314694, y: 1.64504, z: -0.032369908, w: 1.322018} + outSlope: {x: -1.1314694, y: 1.64504, z: -0.032369908, w: 1.322018} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: 0.5702967, y: -0.13355075, z: 0.118575186, w: 0.8017891} + inSlope: {x: -1.6811937, y: 2.3032925, z: 0.10821067, w: 1.5023295} + outSlope: {x: -1.6811937, y: 2.3032925, z: 0.10821067, w: 1.5023295} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.4869864, y: -0.062343936, z: 0.123106845, w: 0.8624397} + inSlope: {x: -3.5339723, y: 1.8313253, z: 0.23001745, w: 1.9635379} + outSlope: {x: -3.5339723, y: 1.8313253, z: 0.23001745, w: 1.9635379} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: 0.3346985, y: -0.011462423, z: 0.13390969, w: 0.93269163} + inSlope: {x: -3.8832426, y: 0.36785442, z: -0.0008113682, w: 1.539736} + outSlope: {x: -3.8832426, y: 0.36785442, z: -0.0008113682, w: 1.539736} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5666667 + value: {x: 0.22810334, y: -0.037820287, z: 0.12305275, w: 0.96508884} + inSlope: {x: -1.6525033, y: -0.38724276, z: -0.16358556, w: 0.49892533} + outSlope: {x: -1.6525033, y: -0.38724276, z: -0.16358556, w: 0.49892533} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.22453153, y: -0.03727863, z: 0.123003975, w: 0.96595335} + inSlope: {x: -0.053496264, y: 0.008114137, z: -0.0007311262, w: 0.012948823} + outSlope: {x: -0.053496264, y: 0.008114137, z: -0.0007311262, w: 0.012948823} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.22949775, y: -0.0380316, z: 0.123071305, w: 0.96474755} + inSlope: {x: -0.028057314, y: 0.0042539593, z: -0.00039338856, w: 0.0067063794} + outSlope: {x: -0.028057314, y: 0.0042539593, z: -0.00039338856, w: 0.0067063794} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.70000005 + value: {x: 0.22266643, y: -0.036995746, z: 0.122977786, w: 0.9663992} + inSlope: {x: 0.16358045, y: -0.024800202, z: 0.0020508885, w: -0.04115679} + outSlope: {x: 0.16358045, y: -0.024800202, z: 0.0020508885, w: -0.04115679} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7666667 + value: {x: 0.268276, y: -0.04390873, z: 0.12348615, w: 0.9543853} + inSlope: {x: 0.38431418, y: -0.058239426, z: 0.003891547, w: -0.104554206} + outSlope: {x: 0.38431418, y: -0.058239426, z: 0.003891547, w: -0.104554206} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000001 + value: {x: 0.26602405, y: -0.043567576, z: 0.12346747, w: 0.9550335} + inSlope: {x: -0.5206326, y: 0.07890182, z: -0.0054308074, w: 0.14030825} + outSlope: {x: -0.5206326, y: 0.07890182, z: -0.0054308074, w: 0.14030825} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.2335672, y: -0.038648613, z: 0.12312409, w: 0.96373916} + inSlope: {x: -0.6671902, y: 0.10112983, z: -0.00758339, w: 0.17448047} + outSlope: {x: -0.6671902, y: 0.10112983, z: -0.00758339, w: 0.17448047} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9333334 + value: {x: 0.22053304, y: -0.036672205, z: 0.122947395, w: 0.9669045} + inSlope: {x: -0.08606987, y: 0.01305314, z: -0.0012424218, w: 0.020257834} + outSlope: {x: -0.08606987, y: 0.01305314, z: -0.0012424218, w: 0.020257834} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0333334 + value: {x: 0.21174757, y: -0.035339683, z: 0.12281582, w: 0.9689326} + inSlope: {x: -0.082992695, y: 0.01258791, z: -0.0012751635, w: 0.018886277} + outSlope: {x: -0.082992695, y: 0.01258791, z: -0.0012751635, w: 0.018886277} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot/mixamorig:RightToeBase + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.04573715, y: -0.039433047, z: -0.0727525, w: 0.99552006} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.04573715, y: -0.039433047, z: -0.0727525, w: 0.99552006} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot/mixamorig:RightToeBase/mixamorig:RightToe_End + m_CompressedRotationCurves: [] + m_EulerCurves: [] + m_PositionCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.000036413945, y: 0.018024145, z: -0.00020243776} + inSlope: {x: -0.00083023583, y: -0.00091697305, z: -0.00039955604} + outSlope: {x: -0.00083023583, y: -0.00091697305, z: -0.00039955604} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: -0.00006408843, y: 0.017993575, z: -0.00021575624} + inSlope: {x: -0.0010882737, y: -0.0035571181, z: 0.00065065373} + outSlope: {x: -0.0010882732, y: -0.0035573556, z: 0.0006506547} + tangentMode: 0 + weightedMode: 0 + 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.000108965476, y: 0.017787004, z: -0.0001590609} + inSlope: {x: -0.0017331927, y: -0.0089750765, z: 0.0024193823} + outSlope: {x: -0.0017331888, y: -0.008975133, z: 0.0024193807} + tangentMode: 0 + weightedMode: 0 + 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.00017963452, y: 0.017395245, z: -0.00005446418} + inSlope: {x: -0.0023891858, y: -0.014228516, z: 0.0037974217} + outSlope: {x: -0.0023891872, y: -0.014228311, z: 0.003797421} + tangentMode: 0 + weightedMode: 0 + 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.00026824468, y: 0.016838448, z: 0.00009410065} + inSlope: {x: -0.0023514368, y: -0.016646897, z: 0.0023744148} + outSlope: {x: -0.0023514426, y: -0.016646814, z: 0.002374422} + tangentMode: 0 + weightedMode: 0 + 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.00033639706, y: 0.016285446, z: 0.00010383031} + inSlope: {x: -0.0018040113, y: -0.01459931, z: -0.0021896095} + outSlope: {x: -0.0018040206, y: -0.014599353, z: -0.002189625} + tangentMode: 0 + weightedMode: 0 + 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.00038851183, y: 0.01586515, z: -0.000051873427} + inSlope: {x: -0.0016538701, y: -0.011007066, z: -0.003808866} + outSlope: {x: -0.0016538714, y: -0.011007234, z: -0.003808866} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.23333333 + value: {x: -0.00044665436, y: 0.015551646, z: -0.0001500935} + inSlope: {x: -0.002018375, y: -0.007980511, z: -0.001875986} + outSlope: {x: -0.0020183697, y: -0.007980349, z: -0.0018759829} + tangentMode: 0 + weightedMode: 0 + 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.00052306976, y: 0.015333131, z: -0.00017693886} + inSlope: {x: -0.002560112, y: -0.0024984272, z: -0.00062213856} + outSlope: {x: -0.0025601233, y: -0.0024985266, z: -0.000622145} + tangentMode: 0 + weightedMode: 0 + 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.00061732926, y: 0.015385081, z: -0.00019156966} + inSlope: {x: -0.0025872118, y: 0.005935531, z: -0.00014650523} + outSlope: {x: -0.0025872197, y: 0.005935741, z: -0.00014651076} + tangentMode: 0 + weightedMode: 0 + 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.0006955517, y: 0.015728848, z: -0.00018670576} + inSlope: {x: -0.0028433972, y: 0.010876967, z: 0.0013328446} + outSlope: {x: -0.0028433932, y: 0.01087701, z: 0.0013328476} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: -0.00080689, y: 0.016110204, z: -0.00010271284} + inSlope: {x: -0.0038153322, y: 0.011629902, z: 0.0035947934} + outSlope: {x: -0.0038153266, y: 0.011629825, z: 0.0035947962} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.4 + value: {x: -0.0009499082, y: 0.016504172, z: 0.000052947955} + inSlope: {x: -0.003062009, y: 0.011981663, z: 0.0031147825} + outSlope: {x: -0.0030620352, y: 0.01198166, z: 0.0031148007} + tangentMode: 0 + weightedMode: 0 + 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.0010110256, y: 0.016908973, z: 0.000104940664} + inSlope: {x: -0.0009535527, y: 0.012331453, z: 0.0010203314} + outSlope: {x: -0.0009535496, y: 0.012331019, z: 0.001020333} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.46666667 + value: {x: -0.0010134783, y: 0.017326256, z: 0.0001209703} + inSlope: {x: 0.0005638995, y: 0.011251494, z: 0.00042524582} + outSlope: {x: 0.0005638879, y: 0.011251667, z: 0.00042524486} + tangentMode: 0 + weightedMode: 0 + 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.00097343256, y: 0.017659085, z: 0.0001332904} + inSlope: {x: 0.0013579068, y: 0.0081839, z: 0.0004720465} + outSlope: {x: 0.0013579063, y: 0.008184003, z: 0.00047204568} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: -0.0009229501, y: 0.017871853, z: 0.00015244026} + inSlope: {x: 0.0016100655, y: 0.0032702002, z: 0.0006056983} + outSlope: {x: 0.0016100915, y: 0.0032701183, z: 0.0006057115} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.6 + value: {x: -0.0007979308, y: 0.01764963, z: 0.00021872518} + inSlope: {x: 0.0022180532, y: -0.009332144, z: 0.0020280217} + outSlope: {x: 0.0022180919, y: -0.009332145, z: 0.0020280494} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.6333333 + value: {x: -0.00071822107, y: 0.017254952, z: 0.00030887348} + inSlope: {x: 0.0027203572, y: -0.013664384, z: 0.0032095423} + outSlope: {x: 0.0027203495, y: -0.013664247, z: 0.0032095008} + tangentMode: 0 + weightedMode: 0 + 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.0006165728, y: 0.016738676, z: 0.00043269427} + inSlope: {x: 0.002883629, y: -0.016644988, z: 0.0017097455} + outSlope: {x: 0.0028836648, y: -0.016645178, z: 0.001709788} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.7 + value: {x: -0.0005259776, y: 0.016145276, z: 0.0004228592} + inSlope: {x: 0.0025409274, y: -0.015160511, z: -0.0031111517} + outSlope: {x: 0.0025409027, y: -0.015160578, z: -0.0031110963} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.73333335 + value: {x: -0.00044717846, y: 0.015727974, z: 0.00022528389} + inSlope: {x: 0.0026949327, y: -0.009259213, z: -0.004105828} + outSlope: {x: 0.0026949542, y: -0.009259151, z: -0.004105899} + tangentMode: 0 + weightedMode: 0 + 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.00034631437, y: 0.015527991, z: 0.00014913321} + inSlope: {x: 0.003467644, y: -0.0019412272, z: -0.0014630588} + outSlope: {x: 0.0034676027, y: -0.0019413235, z: -0.0014630455} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.8 + value: {x: -0.00021600237, y: 0.015598555, z: 0.00012774688} + inSlope: {x: 0.0037570547, y: 0.005130676, z: 0.00075086206} + outSlope: {x: 0.0037571, y: 0.005130695, z: 0.00075086235} + tangentMode: 0 + weightedMode: 0 + 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.000095841526, y: 0.015870031, z: 0.00019919041} + inSlope: {x: 0.0034964439, y: 0.009462935, z: 0.0011012182} + outSlope: {x: 0.003496397, y: 0.009462486, z: 0.0011012071} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.8666667 + value: {x: 0.00001709304, y: 0.016229402, z: 0.00020116092} + inSlope: {x: 0.0033600468, y: 0.011207709, z: -0.00020033098} + outSlope: {x: 0.003360082, y: 0.011207763, z: -0.00020032695} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.9 + value: {x: 0.00012816345, y: 0.016617227, z: 0.00018583519} + inSlope: {x: 0.0022064585, y: 0.011959123, z: -0.0012929502} + outSlope: {x: 0.0022064277, y: 0.011959314, z: -0.0012929314} + tangentMode: 0 + weightedMode: 0 + 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.00016418932, y: 0.01702669, z: 0.00011496427} + inSlope: {x: -0.000054258548, y: 0.012529986, z: -0.0022084208} + outSlope: {x: -0.00005424714, y: 0.012529727, z: -0.0022084413} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.96666664 + value: {x: 0.00012454693, y: 0.017452555, z: 0.000038606002} + inSlope: {x: -0.001750879, y: 0.011798122, z: -0.002853809} + outSlope: {x: -0.0017508459, y: 0.011798119, z: -0.002853759} + tangentMode: 0 + weightedMode: 0 + 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.000047464564, y: 0.017813234, z: -0.00007528881} + inSlope: {x: -0.0024143958, y: 0.008573852, z: -0.003615643} + outSlope: {x: -0.0024144158, y: 0.008573908, z: -0.0036156704} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.0333333 + value: {x: -0.000036413927, y: 0.018024147, z: -0.00020243853} + inSlope: {x: -0.002516369, y: 0.006327493, z: -0.0038145112} + outSlope: {x: -0.002516369, y: 0.006327493, z: -0.0038145112} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips + m_ScaleCurves: [] + m_FloatCurves: [] + m_PPtrCurves: [] + m_SampleRate: 30 + 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: 1083781737 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1083781737 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 408225041 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3001700786 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3132553515 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 168334831 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 215603437 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1852142506 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1775379527 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1207142558 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3198065886 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2486468252 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1925155201 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1714668715 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1454392865 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2364716999 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3092991833 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2853632173 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 407569882 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3106263194 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 688943277 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2140469971 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1021604224 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1601611806 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3984737358 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3048725362 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1185900278 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2828911296 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1886386198 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 395264987 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 4080340377 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3974837130 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1014061991 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1587372701 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 357817416 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1651132406 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1915810720 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2015721024 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 407230557 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2938783533 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 10533847 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 523512273 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2119318601 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2334650127 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 4220895696 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2471676248 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 565509406 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2538289614 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3575002567 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 971364194 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 733358149 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1941555904 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 4126269581 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2280639224 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3482077456 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3155596823 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1692231856 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 440322630 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1935085395 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2435940167 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3169137491 + 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: 1.0333334 + 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/Jammo-Character/Animations/Default/a_Walking.anim.meta b/Assets/Jammo-Character/Animations/Default/a_Walking.anim.meta new file mode 100644 index 0000000..c404d7e --- /dev/null +++ b/Assets/Jammo-Character/Animations/Default/a_Walking.anim.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 6fd7082454b5e8f4eaef795e9a384dfa +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 7400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Jammo-Character/Animations/Falling To Landing.anim b/Assets/Jammo-Character/Animations/Falling To Landing.anim new file mode 100644 index 0000000..e50930e --- /dev/null +++ b/Assets/Jammo-Character/Animations/Falling To Landing.anim @@ -0,0 +1,4090 @@ +%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: Falling To Landing + 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, 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.033333335 + 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: Armature.001 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.18333544, y: 0.2924348, z: -0.061454993, w: 0.9365326} + inSlope: {x: 0.08829831, y: -0.37498888, z: 0.1909308, w: 0.14324962} + outSlope: {x: 0.08829831, y: -0.37498888, z: 0.1909308, w: 0.14324962} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: -0.15986156, y: 0.2674013, z: -0.055060755, w: 0.9486354} + inSlope: {x: 0.8223131, y: -0.35184497, z: -0.054893635, w: 0.22872266} + outSlope: {x: 0.8223131, y: -0.35184497, z: -0.054893635, w: 0.22872266} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: -0.0832887, y: 0.24776646, z: -0.059962913, w: 0.96336865} + inSlope: {x: 1.2802534, y: -0.34935373, z: 0.066976435, w: 0.20288856} + outSlope: {x: 1.2802534, y: -0.34935373, z: 0.066976435, w: 0.20288856} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.04022106, y: 0.2331886, z: -0.054285113, w: 0.9700817} + inSlope: {x: 0.9348148, y: -0.6930453, z: 0.2073606, w: 0.22192237} + outSlope: {x: 0.9348148, y: -0.6930453, z: 0.2073606, w: 0.22192237} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: -0.018316926, y: 0.16819246, z: -0.031868048, w: 0.9850687} + inSlope: {x: 0.10013215, y: -1.0105662, z: 0.421108, w: 0.18786104} + outSlope: {x: 0.10013215, y: -1.0105662, z: 0.421108, w: 0.18786104} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.014292233, y: 0.13419236, z: -0.018065006, w: 0.99068755} + inSlope: {x: 0.6619003, y: -1.028225, z: -0.006246984, w: 0.13643415} + outSlope: {x: 0.6619003, y: -1.028225, z: -0.006246984, w: 0.13643415} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: 0.02580976, y: 0.09964413, z: -0.032284513, w: 0.9941643} + inSlope: {x: 1.1334488, y: -0.50890034, z: -0.7075572, w: 0.0035968423} + outSlope: {x: 1.1334488, y: -0.50890034, z: -0.7075572, w: 0.0035968423} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: 0.09313489, y: 0.116352804, z: -0.09987553, w: 0.9837748} + inSlope: {x: 0.8335532, y: 0.4038347, z: -0.90507627, w: -0.209881} + outSlope: {x: 0.8335532, y: 0.4038347, z: -0.90507627, w: -0.209881} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.11684125, y: 0.127188, z: -0.12557392, w: 0.97693527} + inSlope: {x: 0.43296647, y: 0.4391384, z: -0.54794604, w: -0.17262511} + outSlope: {x: 0.43296647, y: 0.4391384, z: -0.54794604, w: -0.17262511} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: 0.124825045, y: 0.16902868, z: -0.14519168, w: 0.9668337} + inSlope: {x: 0.011366393, y: 0.614048, z: -0.12598203, w: -0.12508665} + outSlope: {x: 0.011366393, y: 0.614048, z: -0.12598203, w: -0.12508665} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.095452785, y: 0.23485887, z: -0.10078201, w: 0.96206707} + inSlope: {x: -0.2587038, y: 0.48663205, z: 0.5291829, w: -0.03903775} + outSlope: {x: -0.2587038, y: 0.48663205, z: 0.5291829, w: -0.03903775} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000001 + value: {x: 0.018939028, y: 0.3398748, z: -0.018770408, w: 0.9400926} + inSlope: {x: -0.49981582, y: 0.36619395, z: 0.3545583, w: -0.11478871} + outSlope: {x: -0.49981582, y: 0.36619395, z: 0.3545583, w: -0.11478871} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9333334 + value: {x: -0.022942401, y: 0.36309546, z: 0.0042005493, w: 0.93145996} + inSlope: {x: -0.13579366, y: 0.050230622, z: 0.06323847, w: -0.023250284} + outSlope: {x: -0.13579366, y: 0.050230622, z: 0.06323847, w: -0.023250284} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.03736242, y: 0.36619154, z: 0.010993683, w: 0.9297241} + inSlope: {x: -0.08517262, y: -0.00036567484, z: 0.04094181, w: -0.0036031043} + outSlope: {x: -0.08517262, y: -0.00036567484, z: 0.04094181, w: -0.0036031043} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.12882641, y: 0.0038175683, z: 0.025166681, w: 0.99134046} + inSlope: {x: -0.056207027, y: 0.06615855, z: -0.087139435, w: 0.009005069} + outSlope: {x: -0.056207027, y: 0.06615855, z: -0.087139435, w: 0.009005069} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.08977122, y: 0.014445158, z: 0.007850383, w: 0.9958267} + inSlope: {x: -0.51079285, y: 0.03032475, z: -0.10342498, w: 0.04618496} + outSlope: {x: -0.51079285, y: 0.03032475, z: -0.10342498, w: 0.04618496} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: 0.048864186, y: 0.0017975706, z: 0.0068636998, w: 0.99878025} + inSlope: {x: 0.1818387, y: -0.012594067, z: 0.015256796, w: -0.009446741} + outSlope: {x: 0.1818387, y: -0.012594067, z: 0.015256796, w: -0.009446741} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5666667 + value: {x: 0.11423451, y: -0.0041015446, z: -0.021862095, w: 0.9932048} + inSlope: {x: -0.08058994, y: -0.11291877, z: -0.028573003, w: 0.007944711} + outSlope: {x: -0.08058994, y: -0.11291877, z: -0.028573003, w: 0.007944711} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.86666673 + value: {x: 0.05675294, y: -0.03755498, z: 0.0051096734, w: 0.9976686} + inSlope: {x: -0.0927682, y: -0.040397465, z: 0.069591776, w: 0.003541409} + outSlope: {x: -0.0927682, y: -0.040397465, z: 0.069591776, w: 0.003541409} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.050529335, y: -0.039234344, z: 0.011002983, w: 0.99789095} + inSlope: {x: -0.009877915, y: 0.0028756661, z: 0.0017149111, w: 0.000595451} + outSlope: {x: -0.009877915, y: 0.0028756661, z: 0.0017149111, w: 0.000595451} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.25510952, y: -0.00039105117, z: 0.06037102, w: 0.96502554} + inSlope: {x: -0.109290175, y: 0.0883071, z: -0.2030972, w: 0.04055321} + outSlope: {x: -0.109290175, y: 0.0883071, z: -0.2030972, w: 0.04055321} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: 0.21049005, y: 0.008756057, z: 0.03536216, w: 0.976917} + inSlope: {x: -0.85780954, y: 0.14177313, z: -0.27317676, w: 0.19040555} + outSlope: {x: -0.85780954, y: 0.14177313, z: -0.27317676, w: 0.19040555} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: 0.11713766, y: 0.009861583, z: 0.0142708095, w: 0.9929642} + inSlope: {x: -0.68357503, y: -0.13389936, z: -0.13921887, w: 0.08645384} + outSlope: {x: -0.68357503, y: -0.13389936, z: -0.13921887, w: 0.08645384} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.11497793, y: -0.007204608, z: 0.007124591, w: 0.9933164} + inSlope: {x: 0.5816487, y: -0.15278237, z: 0.0004539499, w: -0.069219775} + outSlope: {x: 0.5816487, y: -0.15278237, z: 0.0004539499, w: -0.069219775} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: 0.22818139, y: -0.025714094, z: -0.03585551, w: 0.97261834} + inSlope: {x: 0.14842506, y: -0.14394021, z: -0.13753305, w: -0.042394068} + outSlope: {x: 0.14842506, y: -0.14394021, z: -0.13753305, w: -0.042394068} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.16007471, y: -0.057803147, z: -0.017284475, w: 0.9852595} + inSlope: {x: -0.38419363, y: -0.2041948, z: 0.19839787, w: 0.054038472} + outSlope: {x: -0.38419363, y: -0.2041948, z: 0.19839787, w: 0.054038472} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.90000004 + value: {x: 0.10895625, y: -0.079694174, z: 0.010926675, w: 0.99078655} + inSlope: {x: -0.09631771, y: -0.037178338, z: 0.09815853, w: 0.0066742324} + outSlope: {x: -0.09631771, y: -0.037178338, z: 0.09815853, w: 0.0066742324} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.10067469, y: -0.0810413, z: 0.018545479, w: 0.9914399} + inSlope: {x: -0.019715372, y: 0.006786219, z: 0.0011901755, w: 0.0025427365} + outSlope: {x: -0.019715372, y: 0.006786219, z: 0.0011901755, w: 0.0025427365} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.24298225, y: -0.0011485394, z: 0.060361385, w: 0.9681502} + inSlope: {x: -0.10978817, y: 0.0908541, z: -0.20197524, w: 0.03917634} + outSlope: {x: -0.10978817, y: 0.0908541, z: -0.20197524, w: 0.03917634} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: 0.19821717, y: 0.008311688, z: 0.03546916, w: 0.9794809} + inSlope: {x: -0.8601296, y: 0.14518756, z: -0.27137607, w: 0.17962843} + outSlope: {x: -0.8601296, y: 0.14518756, z: -0.27137607, w: 0.17962843} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: 0.10467067, y: 0.009681716, z: 0.014393435, w: 0.9943556} + inSlope: {x: -0.68460715, y: -0.13214198, z: -0.14088821, w: 0.07786988} + outSlope: {x: -0.68460715, y: -0.13214198, z: -0.14088821, w: 0.07786988} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.10250671, y: -0.0072934255, z: 0.007033592, w: 0.9946807} + inSlope: {x: 0.58247125, y: -0.15277597, z: -0.0014616787, w: -0.061917014} + outSlope: {x: 0.58247125, y: -0.15277597, z: -0.0014616787, w: -0.061917014} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5666667 + value: {x: 0.21516012, y: -0.029492043, z: -0.03878631, w: 0.9753625} + inSlope: {x: -0.15953076, y: -0.13919915, z: -0.05783506, w: 0.027898578} + outSlope: {x: -0.15953076, y: -0.13919915, z: -0.05783506, w: 0.027898578} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.14770107, y: -0.05758177, z: -0.018008452, w: 0.9871902} + inSlope: {x: -0.38484317, y: -0.20666897, z: 0.19582194, w: 0.049214073} + outSlope: {x: -0.38484317, y: -0.20666897, z: 0.19582194, w: 0.049214073} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.90000004 + value: {x: 0.09651716, y: -0.079825185, z: 0.009926018, w: 0.9920755} + inSlope: {x: -0.09639326, y: -0.038405, z: 0.09768416, w: 0.0054654498} + outSlope: {x: -0.09639326, y: -0.038405, z: 0.09768416, w: 0.0054654498} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.08822818, y: -0.08126755, z: 0.01752727, w: 0.9926249} + inSlope: {x: -0.019744877, y: 0.0067710197, z: 0.0012751122, w: 0.0022941849} + outSlope: {x: -0.019744877, y: 0.0067710197, z: 0.0012751122, w: 0.0022941849} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.039481863, y: -0.039666336, z: 0.05619178, w: 0.9968502} + inSlope: {x: -0.19961043, y: -0.10177697, z: 0.18589987, w: -0.008041263} + outSlope: {x: -0.19961043, y: -0.10177697, z: 0.18589987, w: -0.008041263} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.00548313, y: -0.046297252, z: 0.049229164, w: 0.99769884} + inSlope: {x: -0.24243075, y: -0.026391597, z: -0.09253577, w: 0.004907549} + outSlope: {x: -0.24243075, y: -0.026391597, z: -0.09253577, w: 0.004907549} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: -0.015383725, y: -0.029192029, z: 0.020132879, w: 0.9992527} + inSlope: {x: -0.3286257, y: 0.3600098, z: -0.3329416, w: 0.012111069} + outSlope: {x: -0.3286257, y: 0.3600098, z: -0.3329416, w: 0.012111069} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: -0.059426762, y: -0.004540482, z: 0.019589841, w: 0.9980301} + inSlope: {x: -1.0747222, y: 0.3338709, z: 0.27085832, w: -0.0750205} + outSlope: {x: -1.0747222, y: 0.3338709, z: 0.27085832, w: -0.0750205} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: -0.14377134, y: 0.015532334, z: 0.0336494, w: 0.98891675} + inSlope: {x: -1.0867438, y: 0.29567972, z: -0.1275642, w: -0.15246832} + outSlope: {x: -1.0867438, y: 0.29567972, z: -0.1275642, w: -0.15246832} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: -0.18333814, y: 0.04991968, z: 0.003767082, w: 0.9817744} + inSlope: {x: 0.19655779, y: 0.39690924, z: -0.058048405, w: 0.01600118} + outSlope: {x: 0.19655779, y: 0.39690924, z: -0.058048405, w: 0.01600118} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.10064628, y: 0.088678546, z: 0.0033162716, w: 0.99095684} + inSlope: {x: 0.97380733, y: -0.06381635, z: -0.034123376, w: 0.10389806} + outSlope: {x: 0.97380733, y: -0.06381635, z: -0.034123376, w: 0.10389806} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.013847208, y: 0.055282805, z: 0.00087940646, w: 0.99837434} + inSlope: {x: 0.1276128, y: -0.2485517, z: -0.040898383, w: 0.015954677} + outSlope: {x: 0.1276128, y: -0.2485517, z: -0.040898383, w: 0.015954677} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.90000004 + value: {x: -0.024161033, y: 0.017724657, z: -0.0019622731, w: 0.99954903} + inSlope: {x: 0.07273361, y: -0.08101463, z: 0.013483351, w: 0.0031998754} + outSlope: {x: 0.07273361, y: -0.08101463, z: 0.013483351, w: 0.0031998754} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.012111218, y: 0.01113411, z: -0.0021441693, w: 0.9998624} + inSlope: {x: 0.035448108, y: -0.0075981747, z: -0.02381985, w: 0.0004935269} + outSlope: {x: 0.035448108, y: -0.0075981747, z: -0.02381985, w: 0.0004935269} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.07544693, y: -0.06463893, z: -0.0094332155, w: 0.9950079} + inSlope: {x: 0.20803033, y: -0.2150291, z: -0.27885205, w: -0.03521025} + outSlope: {x: 0.20803033, y: -0.2150291, z: -0.27885205, w: -0.03521025} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: 0.0840734, y: -0.08144684, z: -0.013852696, w: 0.9930288} + inSlope: {x: 0.1509347, y: -0.31883502, z: 0.23270401, w: -0.03719866} + outSlope: {x: 0.1509347, y: -0.31883502, z: 0.23270401, w: -0.03719866} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.15518773, y: -0.11689457, z: 0.0018601583, w: 0.9809429} + inSlope: {x: 1.2841911, y: -0.19792713, z: -0.17228982, w: -0.23135123} + outSlope: {x: 1.2841911, y: -0.19792713, z: -0.17228982, w: -0.23135123} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.24965803, y: -0.089534014, z: -0.039332777, w: 0.9633833} + inSlope: {x: -0.5399848, y: 0.9399917, z: -0.28327322, w: 0.19260408} + outSlope: {x: -0.5399848, y: 0.9399917, z: -0.28327322, w: 0.19260408} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: 0.20439349, y: -0.049350638, z: -0.041346002, w: 0.9767693} + inSlope: {x: -2.264535, y: 1.3713877, z: 0.21650636, w: 0.47132498} + outSlope: {x: -2.264535, y: 1.3713877, z: 0.21650636, w: 0.47132498} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.09868906, y: 0.0018918343, z: -0.02489902, w: 0.994805} + inSlope: {x: -3.5982013, y: 1.417802, z: 0.5733632, w: 0.32362017} + outSlope: {x: -3.5982013, y: 1.417802, z: 0.5733632, w: 0.32362017} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: -0.035486586, y: 0.045169488, z: -0.0031217933, w: 0.998344} + inSlope: {x: -3.5883322, y: 0.8867625, z: 0.6031349, w: -0.10093586} + outSlope: {x: -3.5883322, y: 0.8867625, z: 0.6031349, w: -0.10093586} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: -0.14053316, y: 0.061009344, z: 0.015309982, w: 0.9880759} + inSlope: {x: -2.283038, y: 0.09609261, z: 0.4713143, w: -0.26818234} + outSlope: {x: -2.283038, y: 0.09609261, z: 0.4713143, w: -0.26818234} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: -0.18952394, y: 0.03495521, z: 0.033988643, w: 0.9806649} + inSlope: {x: 0.26067477, y: -0.43989295, z: 0.10438053, w: 0.060643014} + outSlope: {x: 0.26067477, y: -0.43989295, z: 0.10438053, w: 0.060643014} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5666667 + value: {x: -0.12580091, y: -0.0013485808, z: 0.037186127, w: 0.99135745} + inSlope: {x: 0.68751454, y: -0.48079783, z: 0.06333866, w: 0.08168936} + outSlope: {x: 0.68751454, y: -0.48079783, z: 0.06333866, w: 0.08168936} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.70000005 + value: {x: -0.014664129, y: -0.0938375, z: 0.042667326, w: 0.9945647} + inSlope: {x: 0.41996905, y: -0.58753896, z: -0.03551408, w: -0.043044098} + outSlope: {x: 0.41996905, y: -0.58753896, z: -0.03551408, w: -0.043044098} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.021964679, y: -0.15674305, z: 0.03597169, w: 0.9867397} + inSlope: {x: -0.09196289, y: -0.33247554, z: -0.0470787, w: -0.052067056} + outSlope: {x: -0.09196289, y: -0.33247554, z: -0.0470787, w: -0.052067056} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0333334 + value: {x: -0.00095965754, y: -0.17467362, z: 0.026857696, w: 0.98425955} + inSlope: {x: 0.08063183, y: -0.02411057, z: 0.003576832, w: -0.004237886} + outSlope: {x: 0.08063183, y: -0.02411057, z: 0.003576832, w: -0.004237886} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.0010295515, y: -0.17530091, z: 0.02745558, w: 0.98413146} + inSlope: {x: 0.05967633, y: -0.018818844, z: 0.017936507, w: -0.0038427152} + outSlope: {x: 0.05967633, y: -0.018818844, z: 0.017936507, w: -0.0038427152} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.41054422, y: -0.5216177, z: 0.49971625, w: 0.55646396} + inSlope: {x: 0.29956338, y: 0.30372617, z: -0.03020793, w: 0.08512794} + outSlope: {x: 0.29956338, y: 0.30372617, z: -0.03020793, w: 0.08512794} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.4438725, y: -0.49314862, z: 0.50159806, w: 0.5551405} + inSlope: {x: 0.3310878, y: 0.28326803, z: 0.28108203, w: -0.2702602} + outSlope: {x: 0.3310878, y: 0.28326803, z: 0.28108203, w: -0.2702602} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.4846042, y: -0.45619, z: 0.51611906, w: 0.53913873} + inSlope: {x: 0.36759275, y: 0.33508527, z: -0.16641678, w: 0.11227638} + outSlope: {x: 0.36759275, y: 0.33508527, z: -0.16641678, w: 0.11227638} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.513585, y: -0.43474042, z: 0.48579302, w: 0.55788565} + inSlope: {x: 0.16796166, y: 0.09464261, z: -0.022629315, w: -0.06157458} + outSlope: {x: 0.16796166, y: 0.09464261, z: -0.022629315, w: -0.06157458} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5666667 + value: {x: 0.5328331, y: -0.42790672, z: 0.50069827, w: 0.5313059} + inSlope: {x: -0.050176106, y: -0.14107215, z: 0.048261434, w: -0.10906131} + outSlope: {x: -0.050176106, y: -0.14107215, z: 0.048261434, w: -0.10906131} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.49604416, y: -0.4864577, z: 0.50872195, w: 0.50843} + inSlope: {x: -0.15990171, y: -0.20468119, z: -0.047975786, w: 0.008862018} + outSlope: {x: -0.15990171, y: -0.20468119, z: -0.047975786, w: 0.008862018} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.4842355, y: -0.50103396, z: 0.5061146, w: 0.5082607} + inSlope: {x: -0.008292504, y: -0.009384165, z: 0.0014716401, w: -0.0028109578} + outSlope: {x: -0.008292504, y: -0.009384165, z: 0.0014716401, w: -0.0028109578} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.03128665, y: 0.22074401, z: 0.09941345, w: 0.9697475} + inSlope: {x: -1.0336864, y: 0.5613635, z: -0.8090456, w: -0.11344313} + outSlope: {x: -1.0336864, y: 0.5613635, z: -0.8090456, w: -0.11344313} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: -0.09015709, y: 0.25180268, z: 0.057058692, w: 0.96187913} + inSlope: {x: -0.68740326, y: 0.38391325, z: -0.5219681, w: -0.1342222} + outSlope: {x: -0.68740326, y: 0.38391325, z: -0.5219681, w: -0.1342222} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: -0.13153365, y: 0.28209367, z: -0.004922703, w: 0.95031464} + inSlope: {x: -0.4673641, y: 0.620007, z: -1.7260165, w: -0.2859101} + outSlope: {x: -0.4673641, y: 0.620007, z: -1.7260165, w: -0.2859101} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: -0.1350375, y: 0.33729523, z: -0.16271937, w: 0.91734356} + inSlope: {x: 0.58153665, y: 0.9453815, z: -2.4208279, w: -0.6890594} + outSlope: {x: 0.58153665, y: 0.9453815, z: -2.4208279, w: -0.6890594} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: 0.008194925, y: 0.4081294, z: -0.35783774, w: 0.8398306} + inSlope: {x: 1.694318, y: 0.01650095, z: -1.5830667, w: -0.6815127} + outSlope: {x: 1.694318, y: 0.01650095, z: -1.5830667, w: -0.6815127} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.11407142, y: 0.34853908, z: -0.45046103, w: 0.8139982} + inSlope: {x: 0.46372008, y: -0.69676876, z: 0.021046981, w: 0.24674621} + outSlope: {x: 0.46372008, y: -0.69676876, z: 0.021046981, w: 0.24674621} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.15008047, y: 0.28181693, z: -0.39375573, w: 0.86198115} + inSlope: {x: 0.5827818, y: -0.72079855, z: 0.6478966, w: 0.42844364} + outSlope: {x: 0.5827818, y: -0.72079855, z: 0.6478966, w: 0.42844364} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6333334 + value: {x: 0.2910801, y: 0.18487965, z: -0.2782548, w: 0.8964743} + inSlope: {x: 1.2844212, y: -0.6286447, z: 1.2474942, w: 0.09923096} + outSlope: {x: 1.2844212, y: -0.6286447, z: 1.2474942, w: 0.09923096} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.4859684, y: 0.1245089, z: -0.05760246, w: 0.8631421} + inSlope: {x: 0.6023389, y: -0.09802002, z: 0.70569324, w: -0.27162555} + outSlope: {x: 0.6023389, y: -0.09802002, z: 0.70569324, w: -0.27162555} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.528625, y: 0.11753983, z: -0.010719205, w: 0.84060997} + inSlope: {x: 0.09711023, y: -0.037271716, z: 0.18202041, w: -0.053348225} + outSlope: {x: 0.09711023, y: -0.037271716, z: 0.18202041, w: -0.053348225} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.5319377, y: 0.11470354, z: 0.00024227421, w: 0.83897877} + inSlope: {x: 0.025697375, y: -0.045799434, z: 0.15665172, w: -0.009530792} + outSlope: {x: 0.025697375, y: -0.045799434, z: 0.15665172, w: -0.009530792} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.08082949, y: 0.11154645, z: -0.14430852, w: 0.9798975} + inSlope: {x: 0.047741976, y: -1.0665786, z: -0.3361371, w: 0.04662573} + outSlope: {x: 0.047741976, y: -1.0665786, z: -0.3361371, w: 0.04662573} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.08242089, y: 0.07599383, z: -0.1555131, w: 0.9814517} + inSlope: {x: 0.09405792, y: -0.8802149, z: -0.57446384, w: -0.03007382} + outSlope: {x: 0.09405792, y: -0.8802149, z: -0.57446384, w: -0.03007382} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.09714008, y: 0.0048999675, z: -0.22180538, w: 0.9702279} + inSlope: {x: 0.1107187, y: -0.9769716, z: -0.25475198, w: -0.06803245} + outSlope: {x: 0.1107187, y: -0.9769716, z: -0.25475198, w: -0.06803245} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: 0.0984717, y: -0.077996954, z: -0.22550271, w: 0.96610993} + inSlope: {x: -0.13455021, y: -1.2928721, z: 0.036259003, w: -0.07995038} + outSlope: {x: -0.13455021, y: -1.2928721, z: 0.036259003, w: -0.07995038} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.07448326, y: -0.14291416, z: -0.20149021, w: 0.9661416} + inSlope: {x: -0.53637147, y: -0.47904533, z: 1.0645825, w: 0.1791233} + outSlope: {x: -0.53637147, y: -0.47904533, z: 1.0645825, w: 0.1791233} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.039479416, y: -0.15666597, z: -0.08821085, w: 0.982912} + inSlope: {x: -0.3749056, y: -0.22512475, z: 1.675082, w: 0.14357777} + outSlope: {x: -0.3749056, y: -0.22512475, z: 1.675082, w: 0.14357777} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.025792614, y: -0.17221239, z: -0.02030063, w: 0.98451287} + inSlope: {x: -0.11205007, y: -0.03275707, z: 0.2847004, w: 0.0062397174} + outSlope: {x: -0.11205007, y: -0.03275707, z: 0.2847004, w: 0.0062397174} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.01581178, y: -0.14222267, z: -0.040198643, w: 0.9888917} + inSlope: {x: -0.042948212, y: 0.3419634, z: -0.40891647, w: 0.03298225} + outSlope: {x: -0.042948212, y: 0.3419634, z: -0.40891647, w: 0.03298225} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6333334 + value: {x: 0.024264408, y: -0.097379476, z: -0.15193023, w: 0.98328316} + inSlope: {x: 0.101258785, y: 0.47325093, z: -1.2634169, w: -0.15390341} + outSlope: {x: 0.101258785, y: 0.47325093, z: -1.2634169, w: -0.15390341} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000001 + value: {x: 0.026281685, y: -0.028621681, z: -0.3449299, w: 0.9378238} + inSlope: {x: -0.033799876, y: 0.34215876, z: -0.7988373, w: -0.2789712} + outSlope: {x: -0.033799876, y: 0.34215876, z: -0.7988373, w: -0.2789712} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.017931644, y: 0.0048056315, z: -0.40218407, w: 0.9153706} + inSlope: {x: 0.025547076, y: 0.027062275, z: -0.11995411, w: -0.053293668} + outSlope: {x: 0.025547076, y: 0.027062275, z: -0.11995411, w: -0.053293668} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.021348568, y: 0.0041541224, z: -0.4091418, w: 0.9122116} + inSlope: {x: 0.06492187, y: -0.028300824, z: -0.097854234, w: -0.044975325} + outSlope: {x: 0.06492187, y: -0.028300824, z: -0.097854234, w: -0.044975325} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.2852705, y: 0.047329698, z: -0.091295294, w: 0.9529144} + inSlope: {x: -0.84998125, y: -0.9057603, z: 0.43951926, w: -0.19841193} + outSlope: {x: -0.84998125, y: -0.9057603, z: 0.43951926, w: -0.19841193} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: -0.31360322, y: 0.017137686, z: -0.07664465, w: 0.9463007} + inSlope: {x: -0.29475418, y: -0.82756543, z: 0.22508448, w: -0.054443475} + outSlope: {x: -0.29475418, y: -0.82756543, z: 0.22508448, w: -0.054443475} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: -0.2721673, y: -0.026502097, z: -0.07706863, w: 0.9587925} + inSlope: {x: 0.8266333, y: -0.43382716, z: 0.19085774, w: 0.24331746} + outSlope: {x: 0.8266333, y: -0.43382716, z: 0.19085774, w: 0.24331746} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: -0.24438067, y: -0.06402506, z: -0.03347799, w: 0.96698403} + inSlope: {x: 0.009332745, y: -0.89018726, z: 0.018384025, w: -0.06483883} + outSlope: {x: 0.009332745, y: -0.89018726, z: 0.018384025, w: -0.06483883} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: -0.24039969, y: -0.1537936, z: -0.0984012, w: 0.95334816} + inSlope: {x: 0.14797927, y: 0.16508886, z: -0.8666724, w: -0.026462676} + outSlope: {x: 0.14797927, y: 0.16508886, z: -0.8666724, w: -0.026462676} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: -0.22485664, y: -0.1042058, z: -0.14527588, w: 0.95784944} + inSlope: {x: 0.20495962, y: 0.5839112, z: -0.52589417, w: 0.038931374} + outSlope: {x: 0.20495962, y: 0.5839112, z: -0.52589417, w: 0.038931374} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: -0.22421516, y: -0.093950495, z: -0.16546068, w: 0.9557843} + inSlope: {x: 0.0025081262, y: 0.057946827, z: 0.09558216, w: 0.022519853} + outSlope: {x: 0.0025081262, y: 0.057946827, z: 0.09558216, w: 0.022519853} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5666667 + value: {x: -0.20922284, y: -0.10046267, z: -0.14770475, w: 0.96141374} + inSlope: {x: 0.17028475, y: -0.32219988, z: 0.32605168, w: 0.051628955} + outSlope: {x: 0.17028475, y: -0.32219988, z: 0.32605168, w: 0.051628955} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.70000005 + value: {x: -0.17396179, y: -0.15851776, z: -0.0717764, w: 0.96925616} + inSlope: {x: 0.23718973, y: -0.4526118, z: 0.46556342, w: 0.004769847} + outSlope: {x: 0.23718973, y: -0.4526118, z: 0.46556342, w: 0.004769847} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.86666673 + value: {x: -0.16468711, y: -0.18529575, z: -0.01605377, w: 0.9686516} + inSlope: {x: 0.05665832, y: 0.025156217, z: 0.11739318, w: 0.016537607} + outSlope: {x: 0.05665832, y: 0.025156217, z: 0.11739318, w: 0.016537607} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.16292864, y: -0.18364061, z: -0.0041717775, w: 0.96938795} + inSlope: {x: -0.004017506, y: -0.008632251, z: 0.04950776, w: -0.0020527858} + outSlope: {x: -0.004017506, y: -0.008632251, z: 0.04950776, w: -0.0020527858} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.25895068, y: -0.21841575, z: -0.2868136, w: 0.8960899} + inSlope: {x: -0.013498663, y: 0.06610572, z: -0.13528973, w: -0.023725031} + outSlope: {x: -0.013498663, y: 0.06610572, z: -0.13528973, w: -0.023725031} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.25221375, y: -0.18224473, z: -0.36032176, w: 0.8793994} + inSlope: {x: -0.0625348, y: 0.3058129, z: -0.60145843, w: -0.164659} + outSlope: {x: -0.0625348, y: 0.3058129, z: -0.60145843, w: -0.164659} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: 0.24638425, y: -0.1556626, z: -0.41128772, w: 0.8636587} + inSlope: {x: -0.018625485, y: 0.079597466, z: -0.14871375, w: -0.05136252} + outSlope: {x: -0.018625485, y: 0.079597466, z: -0.14871375, w: -0.05136252} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: 0.24369039, y: -0.1444047, z: -0.43212244, w: 0.8561732} + inSlope: {x: 0.009898023, y: -0.04034177, z: 0.07390291, w: 0.027537348} + outSlope: {x: 0.009898023, y: -0.04034177, z: 0.07390291, w: 0.027537348} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.90000004 + value: {x: 0.25680494, y: -0.20587705, z: -0.31290883, w: 0.89092875} + inSlope: {x: 0.02387524, y: -0.1333333, z: 0.27395013, w: 0.05874396} + outSlope: {x: 0.02387524, y: -0.1333333, z: 0.27395013, w: 0.05874396} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.25895607, y: -0.21840079, z: -0.28681365, w: 0.89609194} + inSlope: {x: 0.0030595094, y: -0.017278807, z: 0.037294365, w: 0.006873614} + outSlope: {x: 0.0030595094, y: -0.017278807, z: 0.037294365, w: 0.006873614} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.0026093097, y: -0.13456023, z: 0.032096326, w: 0.990382} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: -0.0026093097, y: -0.13456023, z: 0.032096326, w: 0.990382} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.0000000021585471, y: -0.043534204, z: -0.00000007729923, w: 0.9990519} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.0000000021585471, y: -0.043534204, z: -0.00000007729923, w: 0.9990519} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2/mixamorig:LeftHandThumb3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.029390566, y: 0.039752536, z: -0.08985108, w: 0.9947275} + inSlope: {x: -0.0022238865, y: 0.009212269, z: -0.05117319, w: -0.004971027} + outSlope: {x: -0.0022238865, y: 0.009212269, z: -0.05117319, w: -0.004971027} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: 0.024476781, y: 0.049223896, z: -0.142899, w: 0.9882094} + inSlope: {x: -0.0062348233, y: 0.011633691, z: -0.065405674, w: -0.009908081} + outSlope: {x: -0.0062348233, y: 0.011633691, z: -0.065405674, w: -0.009908081} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.023964303, y: 0.050169572, z: -0.14820784, w: 0.9873921} + inSlope: {x: 0.0071534235, y: -0.013494529, z: 0.07601179, w: 0.011903644} + outSlope: {x: 0.0071534235, y: -0.013494529, z: 0.07601179, w: 0.011903644} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.029375011, y: 0.039751466, z: -0.08985293, w: 0.9947278} + inSlope: {x: 0.00092413364, y: -0.0030943782, z: 0.015429869, w: 0.0014930977} + outSlope: {x: 0.00092413364, y: -0.0030943782, z: 0.015429869, w: 0.0014930977} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.14249177, y: -0.006502565, z: 0.011208474, w: 0.98971117} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.14249177, y: -0.006502565, z: 0.011208474, w: 0.98971117} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 6.938894e-18, y: 3.469447e-18, z: -2.4074124e-35, 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.033333335 + value: {x: 6.938894e-18, y: 3.469447e-18, z: -2.4074124e-35, 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: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2/mixamorig:LeftHandIndex3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.11846189, y: 0.013316382, z: 0.056162316, w: 0.9912796} + inSlope: {x: -0.113807686, y: 0.013780435, z: -0.0759853, w: 0.017396808} + outSlope: {x: -0.113807686, y: 0.013780435, z: -0.0759853, w: 0.017396808} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: 0.03727706, y: 0.01852334, z: 0.0040708794, w: 0.999125} + inSlope: {x: -0.47722352, y: 0.005268471, z: -0.31155962, w: 0.019898409} + outSlope: {x: -0.47722352, y: 0.005268471, z: -0.31155962, w: 0.019898409} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: -0.0059649306, y: 0.017646834, z: -0.024474038, w: 0.9995269} + inSlope: {x: -0.2237044, y: -0.010480532, z: -0.14900109, w: -0.004074274} + outSlope: {x: -0.2237044, y: -0.010480532, z: -0.14900109, w: -0.004074274} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.015796272, y: 0.018405, z: -0.010002461, w: 0.9996558} + inSlope: {x: 0.1967721, y: 0.0037625255, z: 0.13010374, w: -0.0020241728} + outSlope: {x: 0.1967721, y: 0.0037625255, z: 0.13010374, w: -0.0020241728} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.118450105, y: 0.01328588, z: 0.056156088, w: 0.9912818} + inSlope: {x: 0.03194581, y: -0.0034895013, z: 0.020074453, w: -0.004883413} + outSlope: {x: 0.03194581, y: -0.0034895013, z: 0.020074453, w: -0.004883413} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.1901388, y: -0.011719314, z: -0.006816228, w: 0.98166364} + inSlope: {x: -0.10791867, y: -0.00093013974, z: 0.00755141, w: 0.02073705} + outSlope: {x: -0.10791867, y: -0.00093013974, z: 0.00755141, w: 0.02073705} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: 0.09917683, y: -0.012895284, z: -0.00054137054, w: 0.9949861} + inSlope: {x: -0.35310745, y: -0.0048475345, z: 0.024155919, w: 0.035921935} + outSlope: {x: -0.35310745, y: -0.0048475345, z: 0.024155919, w: 0.035921935} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: 0.07157575, y: -0.013295642, z: 0.0013363648, w: 0.9973457} + inSlope: {x: -0.21584268, y: -0.0030466116, z: 0.014669997, w: 0.01590192} + outSlope: {x: -0.21584268, y: -0.0030466116, z: 0.014669997, w: 0.01590192} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.09253076, y: -0.013016184, z: -0.000073151816, w: 0.9956248} + inSlope: {x: 0.18891536, y: 0.0025630323, z: -0.012749748, w: -0.01762122} + outSlope: {x: 0.18891536, y: 0.0025630323, z: -0.012749748, w: -0.01762122} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.19014564, y: -0.0118491, z: -0.0067198467, w: 0.9816614} + inSlope: {x: 0.030182479, y: 0.0001336356, z: -0.0012767606, w: -0.0058382805} + outSlope: {x: 0.030182479, y: 0.0001336356, z: -0.0012767606, w: -0.0058382805} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.0000012793924, y: 0.002925626, z: 0.0004496359, w: 0.99999565} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: -0.0000012793924, y: 0.002925626, z: 0.0004496359, w: 0.99999565} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2/mixamorig:LeftHandMiddle3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.2853619, y: 0.0036458015, z: 0.13721801, w: 0.94853914} + inSlope: {x: -0.1842597, y: -0.024841635, z: 0.0011757015, w: 0.05469918} + outSlope: {x: -0.1842597, y: -0.024841635, z: 0.0011757015, w: 0.05469918} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.21119173, y: -0.0070914035, z: 0.13872531, w: 0.9675242} + inSlope: {x: -0.8706196, y: -0.12555596, z: 0.014117809, w: 0.18638672} + outSlope: {x: -0.8706196, y: -0.12555596, z: 0.014117809, w: 0.18638672} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.11189789, y: -0.021214806, z: 0.13961336, w: 0.9836346} + inSlope: {x: -0.34493297, y: -0.048058566, z: 0.0009318442, w: 0.03997207} + outSlope: {x: -0.34493297, y: -0.048058566, z: 0.0009318442, w: 0.03997207} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.09687822, y: -0.023268998, z: 0.13963415, w: 0.9851779} + inSlope: {x: -0.3759094, y: -0.051463015, z: -0.00010393561, w: 0.034291152} + outSlope: {x: -0.3759094, y: -0.051463015, z: -0.00010393561, w: 0.034291152} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: 0.07385109, y: -0.026405383, z: 0.13960725, w: 0.987096} + inSlope: {x: 0.113537915, y: 0.015257021, z: 0.00032633546, w: -0.008336307} + outSlope: {x: 0.113537915, y: 0.015257021, z: 0.00032633546, w: -0.008336307} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.86666673 + value: {x: 0.23547438, y: -0.0036298567, z: 0.13838495, w: 0.96197104} + inSlope: {x: 0.4271058, y: 0.061834402, z: -0.008278639, w: -0.10284573} + outSlope: {x: 0.4271058, y: 0.061834402, z: -0.008278639, w: -0.10284573} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.2853614, y: 0.003654588, z: 0.13721785, w: 0.94853926} + inSlope: {x: 0.051291037, y: 0.007857393, z: -0.001381786, w: -0.015211716} + outSlope: {x: 0.051291037, y: 0.007857393, z: -0.001381786, w: -0.015211716} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.33736145, y: -0.011398398, z: -0.04193297, w: 0.94037175} + inSlope: {x: -0.18163918, y: 0.009705908, z: -0.00194896, w: 0.06453395} + outSlope: {x: -0.18163918, y: 0.009705908, z: -0.00194896, w: 0.06453395} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.26374507, y: -0.007482484, z: -0.04259856, w: 0.96362233} + inSlope: {x: -0.8664043, y: 0.045870863, z: -0.006267429, w: 0.2365029} + outSlope: {x: -0.8664043, y: 0.045870863, z: -0.006267429, w: 0.2365029} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.16465941, y: -0.0022687127, z: -0.043091103, w: 0.98540616} + inSlope: {x: -0.34503493, y: 0.018399563, z: -0.0008843468, w: 0.059556667} + outSlope: {x: -0.34503493, y: 0.018399563, z: -0.0008843468, w: 0.059556667} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.14962476, y: -0.0014825587, z: -0.043127198, w: 0.9878007} + inSlope: {x: -0.37650776, y: 0.019694105, z: -0.0007000566, w: 0.055559285} + outSlope: {x: -0.37650776, y: 0.019694105, z: -0.0007000566, w: 0.055559285} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: 0.12655096, y: -0.00027479112, z: -0.043161247, w: 0.9910206} + inSlope: {x: 0.11381061, y: -0.0058768345, z: 0.00017495827, w: -0.014730694} + outSlope: {x: 0.11381061, y: -0.0058768345, z: 0.00017495827, w: -0.014730694} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.86666673 + value: {x: 0.28787124, y: -0.00870143, z: -0.04231836, w: 0.9566941} + inSlope: {x: 0.4243796, y: -0.022432502, z: 0.00383053, w: -0.12745053} + outSlope: {x: 0.4243796, y: -0.022432502, z: 0.00383053, w: -0.12745053} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.3373653, y: -0.011316158, z: -0.041806087, w: 0.940377} + inSlope: {x: 0.050833274, y: -0.0023477175, z: 0.00065848295, w: -0.018183606} + outSlope: {x: 0.050833274, y: -0.0023477175, z: 0.00065848295, w: -0.018183606} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 2.7755576e-17, 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.033333335 + value: {x: 2.7755576e-17, 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: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2/mixamorig:LeftHandPinky3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.35335153, y: 0.56899446, z: -0.5428513, w: 0.5066561} + inSlope: {x: -0.13837606, y: 0.08902966, z: 0.0919944, w: 0.09363233} + outSlope: {x: -0.13837606, y: 0.08902966, z: 0.0919944, w: 0.09363233} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.37690625, y: 0.5535463, z: -0.54081863, w: 0.5089632} + inSlope: {x: 0.5116658, y: -0.3546712, z: -0.10714264, w: -0.10945202} + outSlope: {x: 0.5116658, y: -0.3546712, z: -0.10714264, w: -0.10945202} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.44809213, y: 0.5024251, z: -0.5602183, w: 0.48263654} + inSlope: {x: 0.45209888, y: -0.3540981, z: 0.039200485, w: -0.0046250224} + outSlope: {x: 0.45209888, y: -0.3540981, z: 0.039200485, w: -0.0046250224} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: 0.4944605, y: 0.45944127, z: -0.5487379, w: 0.49326393} + inSlope: {x: 0.50891364, y: -0.5409486, z: 0.039028827, w: 0.037248287} + outSlope: {x: 0.50891364, y: -0.5409486, z: 0.039028827, w: 0.037248287} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5666667 + value: {x: 0.55095106, y: 0.39616534, z: -0.5366497, w: 0.5015108} + inSlope: {x: 0.009142721, y: 0.065877795, z: 0.15888336, w: 0.10737823} + outSlope: {x: 0.009142721, y: 0.065877795, z: 0.15888336, w: 0.10737823} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000001 + value: {x: 0.53772473, y: 0.43712416, z: -0.49497905, w: 0.52418536} + inSlope: {x: -0.043570697, y: 0.14967263, z: 0.1902853, w: 0.09966821} + outSlope: {x: -0.043570697, y: 0.14967263, z: 0.1902853, w: 0.09966821} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.53204453, y: 0.4520806, z: -0.47748873, w: 0.53343815} + inSlope: {x: -0.00083685, y: 0.005144482, z: 0.004776125, w: 0.00074744294} + outSlope: {x: -0.00083685, y: 0.005144482, z: 0.004776125, w: 0.00074744294} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.009483417, y: -0.17750977, z: -0.14016657, w: 0.97403985} + inSlope: {x: -0.19987223, y: -0.3501941, z: 0.42262134, w: -0.006895065} + outSlope: {x: -0.19987223, y: -0.3501941, z: 0.42262134, w: -0.006895065} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: -0.013033823, y: -0.18679048, z: -0.1198862, w: 0.9749701} + inSlope: {x: -0.573075, y: 0.28271416, z: 0.23399755, w: 0.070855014} + outSlope: {x: -0.573075, y: 0.28271416, z: 0.23399755, w: 0.070855014} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: -0.050179, y: -0.14535299, z: -0.09313237, w: 0.9837078} + inSlope: {x: -0.11817188, y: 0.8674588, z: 0.44415754, w: 0.16313823} + outSlope: {x: -0.11817188, y: 0.8674588, z: 0.44415754, w: 0.16313823} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: -0.00502371, y: -0.07133034, z: -0.091380425, w: 0.9932454} + inSlope: {x: 1.7085159, y: 1.1832027, z: -0.6421107, w: -0.0026348494} + outSlope: {x: 1.7085159, y: 1.1832027, z: -0.6421107, w: -0.0026348494} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: 0.07063895, y: -0.033624515, z: -0.12367623, w: 0.9892339} + inSlope: {x: 2.704289, y: 0.75563467, z: -0.86115825, w: -0.3038639} + outSlope: {x: 2.704289, y: 0.75563467, z: -0.86115825, w: -0.3038639} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.17526221, y: -0.0209547, z: -0.14879097, w: 0.97298783} + inSlope: {x: 3.0472794, y: -0.008835748, z: -0.14676099, w: -0.56046015} + outSlope: {x: 3.0472794, y: -0.008835748, z: -0.14676099, w: -0.56046015} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: 0.2737909, y: -0.034213565, z: -0.1334603, w: 0.9518699} + inSlope: {x: 2.3015544, y: -0.47452307, z: 1.108057, w: -0.4949919} + outSlope: {x: 2.3015544, y: -0.47452307, z: 1.108057, w: -0.4949919} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: 0.33559033, y: -0.07231308, z: -0.00012854721, w: 0.9392284} + inSlope: {x: -0.12358794, y: -0.66391385, z: 2.0114841, w: 0.0067421636} + outSlope: {x: -0.12358794, y: -0.66391385, z: 2.0114841, w: 0.0067421636} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: 0.30487162, y: -0.118054606, z: 0.09043672, w: 0.9407112} + inSlope: {x: -0.398908, y: -0.4956262, z: 0.55976665, w: 0.02418995} + outSlope: {x: -0.398908, y: -0.4956262, z: 0.55976665, w: 0.02418995} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5666667 + value: {x: 0.31106275, y: -0.13227153, z: 0.004679571, w: 0.94112825} + inSlope: {x: 0.61560154, y: 0.103723526, z: -1.2555275, w: -0.18536486} + outSlope: {x: 0.61560154, y: 0.103723526, z: -1.2555275, w: -0.18536486} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.42676517, y: -0.08822464, z: -0.15199405, w: 0.88712215} + inSlope: {x: 0.32780135, y: 0.29196107, z: -0.6580785, w: -0.2385906} + outSlope: {x: 0.32780135, y: 0.29196107, z: -0.6580785, w: -0.2385906} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.90000004 + value: {x: 0.46435472, y: -0.06701513, z: -0.2187274, w: 0.8555946} + inSlope: {x: 0.16469929, y: 0.022819903, z: -0.12342882, w: -0.118647546} + outSlope: {x: 0.16469929, y: 0.022819903, z: -0.12342882, w: -0.118647546} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.48166564, y: -0.061199334, z: -0.22574376, w: 0.8445665} + inSlope: {x: 0.07789053, y: 0.054845527, z: -0.0009088227, w: -0.040478148} + outSlope: {x: 0.07789053, y: 0.054845527, z: -0.0009088227, w: -0.040478148} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.038462423, y: -0.068589166, z: 0.23270841, w: 0.96936214} + inSlope: {x: -0.1964718, y: 0.88295966, z: 0.65789264, w: -0.109380476} + outSlope: {x: -0.1964718, y: 0.88295966, z: 0.65789264, w: -0.109380476} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: 0.026134698, y: 0.0044662855, z: 0.2730755, w: 0.9616272} + inSlope: {x: -0.032009065, y: 1.5503321, z: 0.42236474, w: -0.13725398} + outSlope: {x: -0.032009065, y: 1.5503321, z: 0.42236474, w: -0.13725398} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.04632846, y: 0.12334273, z: 0.28588745, w: 0.94916207} + inSlope: {x: 0.6155577, y: 1.4512377, z: 0.13290437, w: -0.24515572} + outSlope: {x: 0.6155577, y: 1.4512377, z: 0.13290437, w: -0.24515572} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: 0.09431969, y: 0.16543801, z: 0.31175715, w: 0.93088216} + inSlope: {x: 0.51177025, y: -0.3406739, z: 0.7684903, w: -0.2552622} + outSlope: {x: 0.51177025, y: -0.3406739, z: 0.7684903, w: -0.2552622} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.093576916, y: 0.09515767, z: 0.3540857, w: 0.92564124} + inSlope: {x: -0.45767274, y: -1.0877931, z: -0.49827403, w: 0.33662263} + outSlope: {x: -0.45767274, y: -1.0877931, z: -0.49827403, w: 0.33662263} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: 0.07442311, y: 0.06571636, z: 0.30967054, w: 0.94564617} + inSlope: {x: -0.39736673, y: -0.38900337, z: -2.0556455, w: 0.68624324} + outSlope: {x: -0.39736673, y: -0.38900337, z: -2.0556455, w: 0.68624324} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.0670858, y: 0.06922411, z: 0.2170427, w: 0.9713908} + inSlope: {x: -0.14513591, y: 0.36423174, z: -2.714336, w: 0.59727705} + outSlope: {x: -0.14513591, y: 0.36423174, z: -2.714336, w: 0.59727705} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: 0.064747386, y: 0.089998476, z: 0.12871481, w: 0.98546463} + inSlope: {x: -0.09024568, y: 0.45458326, z: -2.0170054, w: 0.27493802} + outSlope: {x: -0.09024568, y: 0.45458326, z: -2.0170054, w: 0.27493802} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: 0.059663035, y: 0.09511383, z: 0.070741415, w: 0.99115556} + inSlope: {x: -0.0013194792, y: -0.16447297, z: -0.118226975, w: 0.025082232} + outSlope: {x: -0.0013194792, y: -0.16447297, z: -0.118226975, w: 0.025082232} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: 0.062787, y: 0.05940015, z: 0.11646547, w: 0.98942673} + inSlope: {x: -0.043961983, y: -0.6803994, z: 0.8592568, w: -0.06187672} + outSlope: {x: -0.043961983, y: -0.6803994, z: 0.8592568, w: -0.06187672} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.045442052, y: -0.026618492, z: 0.23802246, w: 0.9698308} + inSlope: {x: -0.10203256, y: -0.43591982, z: 0.89920884, w: -0.22673696} + outSlope: {x: -0.10203256, y: -0.43591982, z: 0.89920884, w: -0.22673696} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000001 + value: {x: 0.064854294, y: -0.06355049, z: 0.32158273, w: 0.9425178} + inSlope: {x: 0.2474317, y: -0.19531406, z: 0.29788253, w: -0.13079166} + outSlope: {x: 0.2474317, y: -0.19531406, z: 0.29788253, w: -0.13079166} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0333334 + value: {x: 0.07318328, y: -0.08425453, z: 0.34561375, w: 0.931717} + inSlope: {x: 0.012228405, y: -0.0026230672, z: 0.053115293, w: -0.020897966} + outSlope: {x: 0.012228405, y: -0.0026230672, z: 0.053115293, w: -0.020897966} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.0736217, y: -0.08398415, z: 0.34736705, w: 0.9310546} + inSlope: {x: 0.0131524475, y: 0.008111455, z: 0.05259906, w: -0.019871611} + outSlope: {x: 0.0131524475, y: 0.008111455, z: 0.05259906, w: -0.019871611} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.3115084, y: 0.030653346, z: 0.02878703, w: 0.9493125} + inSlope: {x: 0.50652266, y: 1.4925351, z: 0.19781497, w: 0.06763637} + outSlope: {x: 0.50652266, y: 1.4925351, z: 0.19781497, w: 0.06763637} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: -0.28034672, y: 0.13582015, z: 0.0447197, w: 0.9491885} + inSlope: {x: 0.043580547, y: 1.4196244, z: 0.30742353, w: -0.19317266} + outSlope: {x: 0.043580547, y: 1.4196244, z: 0.30742353, w: -0.19317266} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: -0.329949, y: 0.17999743, z: 0.06237467, w: 0.9245777} + inSlope: {x: -1.364316, y: -0.32631555, z: -0.017247774, w: -0.4388425} + outSlope: {x: -1.364316, y: -0.32631555, z: -0.017247774, w: -0.4388425} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: -0.4347159, y: 0.11592579, z: 0.036151804, w: 0.8923432} + inSlope: {x: -1.271677, y: -0.94212437, z: -0.42032897, w: -0.45693928} + outSlope: {x: -1.271677, y: -0.94212437, z: -0.42032897, w: -0.45693928} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.46021873, y: 0.085392065, z: 0.040403686, w: 0.88276523} + inSlope: {x: 0.9284507, y: 0.011207163, z: 0.63553345, w: 0.41864547} + outSlope: {x: 0.9284507, y: 0.011207163, z: 0.63553345, w: 0.41864547} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: -0.4055551, y: 0.09123063, z: 0.06907287, w: 0.9068798} + inSlope: {x: 1.9723461, y: 0.08057256, z: 0.8940791, w: 0.77928996} + outSlope: {x: 1.9723461, y: 0.08057256, z: 0.8940791, w: 0.77928996} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.328729, y: 0.09076357, z: 0.10000896, w: 0.9347179} + inSlope: {x: 1.9693487, y: -0.19167157, z: 0.90096855, w: 0.6424392} + outSlope: {x: 1.9693487, y: -0.19167157, z: 0.90096855, w: 0.6424392} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: -0.2742652, y: 0.07845253, z: 0.12913744, w: 0.94970906} + inSlope: {x: 1.083864, y: -0.36553836, z: 0.79952836, w: 0.25927842} + outSlope: {x: 1.083864, y: -0.36553836, z: 0.79952836, w: 0.25927842} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: -0.2528209, y: 0.06621781, z: 0.17009711, w: 0.95013887} + inSlope: {x: 0.18662901, y: 0.19229293, z: 0.3995399, w: -0.03562242} + outSlope: {x: 0.18662901, y: 0.19229293, z: 0.3995399, w: -0.03562242} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: -0.20417958, y: 0.12155123, z: 0.17282493, w: 0.9558596} + inSlope: {x: 0.80174136, y: 0.67413366, z: -0.40679577, w: 0.15402395} + outSlope: {x: 0.80174136, y: 0.67413366, z: -0.40679577, w: 0.15402395} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.06339779, y: 0.18718621, z: 0.10794608, w: 0.974315} + inSlope: {x: 1.0446235, y: 0.037476406, z: -0.34354162, w: 0.10302366} + outSlope: {x: 1.0446235, y: 0.037476406, z: -0.34354162, w: 0.10302366} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000001 + value: {x: 0.037083343, y: 0.13388377, z: 0.07601125, w: 0.9873815} + inSlope: {x: 0.76526624, y: -0.4914335, z: -0.15701762, w: 0.05084393} + outSlope: {x: 0.76526624, y: -0.4914335, z: -0.15701762, w: 0.05084393} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.90000004 + value: {x: 0.094305955, y: 0.11024359, z: 0.070500344, w: 0.9869055} + inSlope: {x: 0.25420475, y: -0.030579783, z: 0.008975228, w: -0.020798746} + outSlope: {x: 0.25420475, y: -0.030579783, z: 0.008975228, w: -0.020798746} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.111958094, y: 0.10749925, z: 0.06945164, w: 0.98543686} + inSlope: {x: 0.03381889, y: -0.01748355, z: -0.020534342, w: -0.00045597597} + outSlope: {x: 0.03381889, y: -0.01748355, z: -0.020534342, w: -0.00045597597} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.18044542, y: 0.08309543, z: 0.29510903, w: 0.93458295} + inSlope: {x: -0.034828484, y: -0.046255138, z: 0.12526989, w: -0.029073356} + outSlope: {x: -0.034828484, y: -0.046255138, z: 0.12526989, w: -0.029073356} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: 0.15872213, y: 0.047434628, z: 0.38210648, w: 0.909149} + inSlope: {x: -0.1314414, y: -0.21223131, z: 0.50184387, w: -0.17582414} + outSlope: {x: -0.1314414, y: -0.21223131, z: 0.50184387, w: -0.17582414} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: 0.15080595, y: 0.03479115, z: 0.41167417, w: 0.8980933} + inSlope: {x: -0.038155545, y: -0.06032814, z: 0.13957994, w: -0.055408187} + outSlope: {x: -0.038155545, y: -0.06032814, z: 0.13957994, w: -0.055408187} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: 0.14539112, y: 0.026282363, z: 0.43123576, w: 0.89005977} + inSlope: {x: 0.019560011, y: 0.030324358, z: -0.06938741, w: 0.029407743} + outSlope: {x: 0.019560011, y: 0.030324358, z: -0.06938741, w: 0.029407743} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9333334 + value: {x: 0.17655389, y: 0.076561496, z: 0.31148872, w: 0.93056} + inSlope: {x: 0.053213462, y: 0.0894168, z: -0.22173688, w: 0.056971908} + outSlope: {x: 0.053213462, y: 0.0894168, z: -0.22173688, w: 0.056971908} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.1804617, y: 0.08305248, z: 0.29510283, w: 0.9345856} + inSlope: {x: 0.008306363, y: 0.013542486, z: -0.03493223, w: 0.008250482} + outSlope: {x: 0.008306363, y: 0.013542486, z: -0.03493223, w: 0.008250482} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.08216184, y: 0.14793839, z: -0.19150731, w: 0.966793} + inSlope: {x: -0.067633465, y: -0.007549971, z: 0.119259946, w: 0.030185578} + outSlope: {x: -0.067633465, y: -0.007549971, z: 0.119259946, w: 0.030185578} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: 0.03390141, y: 0.14118832, z: -0.10608502, w: 0.9836984} + inSlope: {x: -0.28538823, y: -0.043996938, z: 0.50651664, w: 0.07176696} + outSlope: {x: -0.28538823, y: -0.043996938, z: 0.50651664, w: 0.07176696} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: 0.016919838, y: 0.13848114, z: -0.07591422, w: 0.9873063} + inSlope: {x: -0.08093653, y: -0.013324546, z: 0.14394747, w: 0.014168324} + outSlope: {x: -0.08093653, y: -0.013324546, z: 0.14394747, w: 0.014168324} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: 0.005510982, y: 0.13655673, z: -0.055615213, w: 0.98905456} + inSlope: {x: 0.040696267, y: 0.0070530926, z: -0.072428256, w: -0.0053805117} + outSlope: {x: 0.040696267, y: 0.0070530926, z: -0.072428256, w: -0.0053805117} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9333334 + value: {x: 0.0732362, y: 0.14673677, z: -0.17581284, w: 0.9706671} + inSlope: {x: 0.12104776, y: 0.01581721, z: -0.21405682, w: -0.050101876} + outSlope: {x: 0.12104776, y: 0.01581721, z: -0.21405682, w: -0.050101876} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.08213505, y: 0.14782318, z: -0.19153494, w: 0.9668074} + inSlope: {x: 0.01889864, y: 0.0020858666, z: -0.03333587, w: -0.008500823} + outSlope: {x: 0.01889864, y: 0.0020858666, z: -0.03333587, w: -0.008500823} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.000000070162926, y: 0.043534193, z: 0.000000011331706, w: 0.9990519} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: -0.000000070162926, y: 0.043534193, z: 0.000000011331706, w: 0.9990519} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2/mixamorig:RightHandThumb3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.035553485, y: -0.03365859, z: 0.018698564, w: 0.99862576} + inSlope: {x: -0.003167465, y: -0.015519596, z: 0.07645877, w: -0.0019437073} + outSlope: {x: -0.003167465, y: -0.015519596, z: 0.07645877, w: -0.0019437073} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: 0.029962666, y: -0.046842482, z: 0.09232603, w: 0.994175} + inSlope: {x: -0.007122551, y: -0.016051626, z: 0.09062794, w: -0.009005965} + outSlope: {x: -0.007122551, y: -0.016051626, z: 0.09062794, w: -0.009005965} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: 0.029127507, y: -0.048704363, z: 0.1028816, w: 0.99307346} + inSlope: {x: 0.0063227527, y: 0.014519421, z: -0.08129758, w: 0.008905834} + outSlope: {x: 0.0063227527, y: 0.014519421, z: -0.08129758, w: 0.008905834} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.035550296, y: -0.033549894, z: 0.01872195, w: 0.9986291} + inSlope: {x: 0.0016020626, y: 0.004314896, z: -0.021405725, w: 0.0004971032} + outSlope: {x: 0.0016020626, y: 0.004314896, z: -0.021405725, w: 0.0004971032} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.14690891, y: 0.007339346, z: -0.014025508, w: 0.9890234} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.14690891, y: 0.007339346, z: -0.014025508, w: 0.9890234} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.0000001559068, y: -0.00000002618245, z: -0.000000114100565, 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.033333335 + value: {x: 0.0000001559068, y: -0.00000002618245, z: -0.000000114100565, 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: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2/mixamorig:RightHandIndex3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.10668817, y: -0.036551602, z: 0.002994056, w: 0.993616} + inSlope: {x: -0.08057713, y: -0.00013221055, z: -0.0047183754, w: 0.008550882} + outSlope: {x: -0.08057713, y: -0.00013221055, z: -0.0047183754, w: 0.008550882} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: 0.02815917, y: -0.03641442, z: -0.0018828531, w: 0.9989382} + inSlope: {x: -0.09717666, y: 0.00034198168, z: -0.006013665, w: 0.0026875737} + outSlope: {x: -0.09717666, y: 0.00034198168, z: -0.006013665, w: 0.0026875737} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: 0.01683782, y: -0.036382366, z: -0.002567082, w: 0.9991928} + inSlope: {x: 0.087283984, y: -0.00043949136, z: 0.004921291, w: -0.0015217075} + outSlope: {x: 0.087283984, y: -0.00043949136, z: 0.004921291, w: -0.0015217075} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.10669716, y: -0.03659157, z: 0.0029038165, w: 0.9936138} + inSlope: {x: 0.022868313, y: 0.00010840605, z: 0.0010683934, w: -0.002446177} + outSlope: {x: 0.022868313, y: 0.00010840605, z: 0.0010683934, w: -0.002446177} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.2640251, y: 0.01194606, z: 0.006684477, w: 0.96441865} + inSlope: {x: -0.08104383, y: 0.00028082167, z: -0.004634731, w: 0.022094248} + outSlope: {x: -0.08104383, y: 0.00028082167, z: -0.004634731, w: 0.022094248} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: 0.18722959, y: 0.012743714, z: 0.0028526767, w: 0.9822294} + inSlope: {x: -0.095543645, y: 0.001075524, z: -0.0047068303, w: 0.018158557} + outSlope: {x: -0.095543645, y: 0.001075524, z: -0.0047068303, w: 0.018158557} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: 0.1760944, y: 0.012830248, z: 0.0023031007, w: 0.984287} + inSlope: {x: 0.08599413, y: -0.0007399968, z: 0.004247738, w: -0.01543344} + outSlope: {x: 0.08599413, y: -0.0007399968, z: 0.004247738, w: -0.01543344} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.26402315, y: 0.011884329, z: 0.0066882023, w: 0.96441996} + inSlope: {x: 0.022223016, y: -0.000014221309, z: 0.00053648424, w: -0.006077891} + outSlope: {x: 0.022223016, y: -0.000014221309, z: 0.00053648424, w: -0.006077891} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.0000013451197, y: -0.0029255822, z: -0.00044958002, w: 0.99999565} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: -0.0000013451197, y: -0.0029255822, z: -0.00044958002, w: 0.99999565} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2/mixamorig:RightHandMiddle3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.2012403, y: 0.0064148474, z: -0.061388627, w: 0.9775953} + inSlope: {x: -0.12816846, y: 0.04611963, z: -0.057182904, w: 0.022110341} + outSlope: {x: -0.12816846, y: 0.04611963, z: -0.057182904, w: 0.022110341} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.12923385, y: 0.030701017, z: -0.094433464, w: 0.98662984} + inSlope: {x: -0.601159, y: 0.18391737, z: -0.28434765, w: 0.04623144} + outSlope: {x: -0.601159, y: 0.18391737, z: -0.28434765, w: 0.04623144} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: 0.077576496, y: 0.045272242, z: -0.11937062, w: 0.98877853} + inSlope: {x: -0.15289979, y: 0.03935572, z: -0.07525933, w: 0.0009378792} + outSlope: {x: -0.15289979, y: 0.03935572, z: -0.07525933, w: 0.0009378792} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: 0.056046374, y: 0.05061196, z: -0.13004138, w: 0.9886286} + inSlope: {x: 0.076723866, y: -0.01834145, z: 0.038278256, w: 0.0015056134} + outSlope: {x: 0.076723866, y: -0.01834145, z: 0.038278256, w: 0.0015056134} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.90000004 + value: {x: 0.17598905, y: 0.015464199, z: -0.07273244, w: 0.9815797} + inSlope: {x: 0.26699024, y: -0.09257112, z: 0.12144977, w: -0.037213866} + outSlope: {x: 0.26699024, y: -0.09257112, z: 0.12144977, w: -0.037213866} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.20123936, y: 0.0064147227, z: -0.061388325, w: 0.97759557} + inSlope: {x: 0.035871897, y: -0.0132306935, z: 0.015917584, w: -0.0062674345} + outSlope: {x: 0.035871897, y: -0.0132306935, z: 0.015917584, w: -0.0062674345} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.35108414, y: 0.009811284, z: 0.06000866, w: 0.93436754} + inSlope: {x: -0.22312759, y: -0.0102052735, z: -0.009127668, w: 0.08351683} + outSlope: {x: -0.22312759, y: -0.0102052735, z: -0.009127668, w: 0.08351683} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: 0.29492277, y: 0.007252071, z: 0.057644945, w: 0.9537531} + inSlope: {x: -0.9534676, y: -0.043236747, z: -0.04160592, w: 0.2947122} + outSlope: {x: -0.9534676, y: -0.043236747, z: -0.04160592, w: 0.2947122} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.13743217, y: 0.00019420596, z: 0.05021162, w: 0.98923767} + inSlope: {x: -0.4283553, y: -0.018987838, z: -0.021640623, w: 0.06350846} + outSlope: {x: -0.4283553, y: -0.018987838, z: -0.021640623, w: 0.06350846} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.11876652, y: -0.00063189154, z: 0.0492563, w: 0.9916995} + inSlope: {x: -0.46730435, y: -0.02062422, z: -0.024172015, w: 0.054909296} + outSlope: {x: -0.46730435, y: -0.02062422, z: -0.024172015, w: 0.054909296} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.08757311, y: -0.00200682, z: 0.047627322, w: 0.9950169} + inSlope: {x: -0.12564325, y: -0.005561329, z: -0.0066006854, w: 0.012225496} + outSlope: {x: -0.12564325, y: -0.005561329, z: -0.0066006854, w: 0.012225496} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5666667 + value: {x: 0.13132621, y: -0.00009600614, z: 0.04991142, w: 0.99008197} + inSlope: {x: 0.37592044, y: 0.016458774, z: 0.019257143, w: -0.050835915} + outSlope: {x: 0.37592044, y: 0.016458774, z: 0.019257143, w: -0.050835915} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.90000004 + value: {x: 0.30680546, y: 0.007686587, z: 0.058184583, w: 0.949961} + inSlope: {x: 0.4712387, y: 0.021164749, z: 0.020252079, w: -0.15307726} + outSlope: {x: 0.4712387, y: 0.021164749, z: 0.020252079, w: -0.15307726} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.3510886, y: 0.009666774, z: 0.060031842, w: 0.9343658} + inSlope: {x: 0.06254828, y: 0.002348891, z: 0.0024423772, w: -0.02360525} + outSlope: {x: 0.06254828, y: 0.002348891, z: 0.0024423772, w: -0.02360525} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.00000004814432, y: 0.000000030442372, z: -0.000000007541881, + 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.033333335 + value: {x: -0.00000004814432, y: 0.000000030442372, z: -0.000000007541881, + 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: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2/mixamorig:RightHandPinky3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.12218819, y: 0.4841263, z: 0.8602761, w: 0.103037655} + inSlope: {x: 0.16901425, y: -0.16789286, z: 0.0971657, w: 0.16302241} + outSlope: {x: 0.16901425, y: -0.16789286, z: 0.0971657, w: 0.16302241} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: -0.1101599, y: 0.4780308, z: 0.86553305, w: 0.10101418} + inSlope: {x: 0.20218086, y: -0.0291869, z: 0.074587755, w: -0.28773975} + outSlope: {x: 0.20218086, y: -0.0291869, z: 0.074587755, w: -0.28773975} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: -0.09779003, y: 0.46193755, z: 0.8779317, w: 0.07928851} + inSlope: {x: 0.2751123, y: -0.84005135, z: 0.4832921, w: -0.31549263} + outSlope: {x: 0.2751123, y: -0.84005135, z: 0.4832921, w: -0.31549263} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.084734835, y: 0.42058066, z: 0.90070695, w: 0.068256244} + inSlope: {x: 0.79908454, y: -1.5991255, z: 0.8192395, w: -0.4996263} + outSlope: {x: 0.79908454, y: -1.5991255, z: 0.8192395, w: -0.4996263} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: -0.044517715, y: 0.35532916, z: 0.9325477, w: 0.045980085} + inSlope: {x: 1.1899922, y: -2.420182, z: 0.9684901, w: -0.5457224} + outSlope: {x: 1.1899922, y: -2.420182, z: 0.9684901, w: -0.5457224} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: -0.0054020076, y: 0.25923517, z: 0.96527296, w: 0.031874742} + inSlope: {x: 1.1231761, y: -0.77513343, z: 0.29218823, w: -0.34847996} + outSlope: {x: 1.1231761, y: -0.77513343, z: 0.29218823, w: -0.34847996} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.030360684, y: 0.3036536, z: 0.9520269, w: 0.022748088} + inSlope: {x: 1.3011398, y: 3.7968347, z: -1.6579977, w: -0.22116457} + outSlope: {x: 1.3011398, y: 3.7968347, z: -1.6579977, w: -0.22116457} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: 0.08134065, y: 0.5123575, z: 0.8547398, w: 0.017130438} + inSlope: {x: 0.8691131, y: 5.067225, z: -2.853403, w: -0.048215277} + outSlope: {x: 0.8691131, y: 5.067225, z: -2.853403, w: -0.048215277} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.088301554, y: 0.6414686, z: 0.76180005, w: 0.019533737} + inSlope: {x: -0.13053954, y: 2.9252164, z: -2.2779315, w: 0.007911678} + outSlope: {x: -0.13053954, y: 2.9252164, z: -2.2779315, w: 0.007911678} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: 0.07263801, y: 0.7073719, z: 0.7028777, w: 0.017657883} + inSlope: {x: -0.44028127, y: 1.6958458, z: -1.6260592, w: -0.037255652} + outSlope: {x: -0.44028127, y: 1.6958458, z: -1.6260592, w: -0.037255652} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: 0.049310755, y: 0.77630377, z: 0.62793416, w: 0.024891965} + inSlope: {x: -0.19344936, y: 0.4127598, z: -0.49186173, w: 0.2502648} + outSlope: {x: -0.19344936, y: 0.4127598, z: -0.49186173, w: 0.2502648} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.04659697, y: 0.77450264, z: 0.62956274, w: 0.04031284} + inSlope: {x: -0.10079503, y: -0.50428456, z: 0.5956424, w: 0.21332318} + outSlope: {x: -0.10079503, y: -0.50428456, z: 0.5956424, w: 0.21332318} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5666667 + value: {x: 0.039530683, y: 0.7117788, z: 0.69900155, w: 0.0566134} + inSlope: {x: -0.053796567, y: -1.1855812, z: 1.1760433, w: 0.33522016} + outSlope: {x: -0.053796567, y: -1.1855812, z: 1.1760433, w: 0.33522016} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6333334 + value: {x: 0.018279966, y: 0.6150865, z: 0.7841404, w: 0.08036339} + inSlope: {x: -0.5918761, y: -1.6842549, z: 1.3059211, w: 0.26285958} + outSlope: {x: -0.5918761, y: -1.6842549, z: 1.3059211, w: 0.26285958} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.03149773, y: 0.43746972, z: 0.89335334, w: 0.09771374} + inSlope: {x: -0.3648751, y: -1.834662, z: 0.8785157, w: 0.12914032} + outSlope: {x: -0.3648751, y: -1.834662, z: 0.8785157, w: 0.12914032} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.86666673 + value: {x: -0.06892052, y: 0.27812767, z: 0.9507003, w: 0.118591815} + inSlope: {x: -0.0752832, y: -0.48803407, z: 0.13419625, w: 0.051455922} + outSlope: {x: -0.0752832, y: -0.48803407, z: 0.13419625, w: 0.051455922} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.06975128, y: 0.25024053, z: 0.95826983, w: 0.119303614} + inSlope: {x: 0.013928808, y: -0.11508171, z: 0.032088153, w: -0.006944119} + outSlope: {x: 0.013928808, y: -0.11508171, z: 0.032088153, w: -0.006944119} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.06852139, y: 0.24505195, z: 0.9597879, w: 0.118581854} + inSlope: {x: 0.02102854, y: -0.07753067, z: 0.02306702, w: -0.013318969} + outSlope: {x: 0.02102854, y: -0.07753067, z: 0.02306702, w: -0.013318969} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:LeftUpLeg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.904121, y: -0.020471295, z: 0.039364632, w: 0.4249666} + inSlope: {x: 0.062305924, y: -0.0184389, z: -0.03939539, w: 0.13438314} + outSlope: {x: 0.062305924, y: -0.0184389, z: -0.03939539, w: 0.13438314} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: -0.9020441, y: -0.021085925, z: 0.038051452, w: 0.42944604} + inSlope: {x: 0.4063466, y: -0.1042336, z: 0.21572883, w: 0.77494514} + outSlope: {x: 0.4063466, y: -0.1042336, z: 0.21572883, w: 0.77494514} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: -0.8251046, y: -0.03942092, z: 0.08053944, w: 0.5578188} + inSlope: {x: 1.9861891, y: -0.3268464, z: 0.5667113, w: 2.7408266} + outSlope: {x: 1.9861891, y: -0.3268464, z: 0.5667113, w: 2.7408266} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: -0.7446186, y: -0.049209964, z: 0.09152731, w: 0.6593514} + inSlope: {x: 3.3623729, y: -0.5201373, z: 0.13364074, w: 3.494788} + outSlope: {x: 3.3623729, y: -0.5201373, z: 0.13364074, w: 3.494788} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.6009464, y: -0.07409674, z: 0.089448825, w: 0.7908046} + inSlope: {x: 5.2687454, y: -1.3497975, z: -0.4004452, w: 3.7067318} + outSlope: {x: 5.2687454, y: -1.3497975, z: -0.4004452, w: 3.7067318} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: -0.39336884, y: -0.13919649, z: 0.06483096, w: 0.9064669} + inSlope: {x: 6.795025, y: -2.2016916, z: -1.2379473, w: 2.5977921} + outSlope: {x: 6.795025, y: -2.2016916, z: -1.2379473, w: 2.5977921} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: -0.14794469, y: -0.2208762, z: 0.0069189942, w: 0.9639908} + inSlope: {x: 2.12264, y: -1.440005, z: -0.6639841, w: 0.48084947} + outSlope: {x: 2.12264, y: -1.440005, z: -0.6639841, w: 0.48084947} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.25185952, y: -0.23519681, z: 0.020565355, w: 0.93852353} + inSlope: {x: -5.356334, y: 0.7430817, z: 1.2884357, w: -1.8476362} + outSlope: {x: -5.356334, y: 0.7430817, z: 1.2884357, w: -1.8476362} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: -0.5050336, y: -0.17133743, z: 0.0928147, w: 0.84081507} + inSlope: {x: -5.600279, y: 1.513952, z: 1.9458966, w: -2.7680569} + outSlope: {x: -5.600279, y: 1.513952, z: 1.9458966, w: -2.7680569} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.6252114, y: -0.13426669, z: 0.15029179, w: 0.7539864} + inSlope: {x: -2.5538235, y: 0.83618975, z: 1.1563817, w: -1.9870181} + outSlope: {x: -2.5538235, y: 0.83618975, z: 1.1563817, w: -1.9870181} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: -0.6752885, y: -0.115591444, z: 0.16990681, w: 0.7083472} + inSlope: {x: -1.2690859, y: 0.42808503, z: 0.44511563, w: -1.2185344} + outSlope: {x: -1.2690859, y: 0.42808503, z: 0.44511563, w: -1.2185344} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: -0.7539551, y: -0.0909092, z: 0.17366768, w: 0.6269982} + inSlope: {x: -0.31582662, y: 0.18040612, z: -0.24054176, w: -0.27996993} + outSlope: {x: -0.31582662, y: 0.18040612, z: -0.24054176, w: -0.27996993} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.68550265, y: -0.093964905, z: 0.14134617, w: 0.7080099} + inSlope: {x: 1.333445, y: -0.19701561, z: -0.29960003, w: 1.3087392} + outSlope: {x: 1.333445, y: -0.19701561, z: -0.29960003, w: 1.3087392} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.70000005 + value: {x: -0.5142918, y: -0.11214086, z: 0.09419525, w: 0.8450181} + inSlope: {x: 1.9910951, y: -0.13384303, z: -0.6699562, w: 1.2605444} + outSlope: {x: 1.9910951, y: -0.13384303, z: -0.6699562, w: 1.2605444} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7666667 + value: {x: -0.37977153, y: -0.12072844, z: 0.0510084, w: 0.91574913} + inSlope: {x: 1.5406775, y: -0.11772161, z: -0.45597124, w: 0.6782174} + outSlope: {x: 1.5406775, y: -0.11772161, z: -0.45597124, w: 0.6782174} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.86666673 + value: {x: -0.3128989, y: -0.1285195, z: 0.02994864, w: 0.94057435} + inSlope: {x: 0.1530119, y: -0.009320442, z: -0.104670346, w: 0.053596772} + outSlope: {x: 0.1530119, y: -0.009320442, z: -0.104670346, w: 0.053596772} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.31239083, y: -0.12855428, z: 0.017984912, w: 0.9410432} + inSlope: {x: -0.03770653, y: -0.0090743685, z: -0.04068367, w: -0.012921107} + outSlope: {x: -0.03770653, y: -0.0090743685, z: -0.04068367, w: -0.012921107} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.6821925, y: 0.08023754, z: 0.08693281, w: 0.72153866} + inSlope: {x: -0.18911539, y: -0.5155445, z: -0.61224836, w: 0.29229996} + outSlope: {x: -0.18911539, y: -0.5155445, z: -0.61224836, w: 0.29229996} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.67588866, y: 0.06305272, z: 0.06652453, w: 0.731282} + inSlope: {x: -0.53336436, y: -0.4974299, z: -0.59028983, w: 0.57478213} + outSlope: {x: -0.53336436, y: -0.4974299, z: -0.59028983, w: 0.57478213} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: 0.6038925, y: 0.034809757, z: 0.0342403, w: 0.7955689} + inSlope: {x: -1.3192623, y: -0.24864013, z: -0.21357757, w: 1.0243678} + outSlope: {x: -1.3192623, y: -0.24864013, z: -0.21357757, w: 1.0243678} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.5029727, y: 0.04164464, z: 0.053142615, w: 0.8616612} + inSlope: {x: -2.1008291, y: 0.6026768, z: 0.9732714, w: 1.0786546} + outSlope: {x: -2.1008291, y: 0.6026768, z: 0.9732714, w: 1.0786546} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: 0.41862875, y: 0.070677996, z: 0.09822642, w: 0.900059} + inSlope: {x: -2.8182955, y: 1.1974236, z: 1.8353183, w: 0.94635737} + outSlope: {x: -2.8182955, y: 1.1974236, z: 1.8353183, w: 0.94635737} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: 0.31508633, y: 0.12147289, z: 0.17549719, w: 0.9247517} + inSlope: {x: 1.2186444, y: -0.11929941, z: -0.025460005, w: -0.6246624} + outSlope: {x: 1.2186444, y: -0.11929941, z: -0.025460005, w: -0.6246624} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.4998717, y: 0.0627247, z: 0.09652909, w: 0.8584148} + inSlope: {x: 4.131534, y: -1.6583056, z: -1.9923444, w: -1.7839973} + outSlope: {x: 4.131534, y: -1.6583056, z: -1.9923444, w: -1.7839973} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: 0.59052193, y: 0.010919188, z: 0.042674236, w: 0.80581856} + inSlope: {x: 1.9117575, y: -0.8530998, z: -1.0212982, w: -1.2029494} + outSlope: {x: 1.9117575, y: -0.8530998, z: -1.0212982, w: -1.2029494} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.6273222, y: 0.005851385, z: 0.028442547, w: 0.7782182} + inSlope: {x: 0.73926336, y: -0.05198478, z: -0.24885869, w: -0.56641734} + outSlope: {x: 0.73926336, y: -0.05198478, z: -0.24885869, w: -0.56641734} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.6501424, y: 0.01153911, z: 0.029072454, w: 0.7591683} + inSlope: {x: 0.31404632, y: 0.12516516, z: 0.11564322, w: -0.27558526} + outSlope: {x: 0.31404632, y: 0.12516516, z: 0.11564322, w: -0.27558526} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.6852304, y: 0.026914133, z: 0.043808185, w: 0.72650933} + inSlope: {x: 0.19557515, y: 0.014302198, z: -0.07684749, w: -0.17907779} + outSlope: {x: 0.19557515, y: 0.014302198, z: -0.07684749, w: -0.17907779} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5666667 + value: {x: 0.6896165, y: 0.025375905, z: 0.03452009, w: 0.7229063} + inSlope: {x: -0.18449953, y: 0.09614509, z: 0.056716077, w: 0.16602983} + outSlope: {x: -0.18449953, y: 0.09614509, z: 0.056716077, w: 0.16602983} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.6761121, y: 0.03019499, z: 0.03983854, w: 0.73510104} + inSlope: {x: -0.45921475, y: -0.026193626, z: -0.06709601, w: 0.4239419} + outSlope: {x: -0.45921475, y: -0.026193626, z: -0.06709601, w: 0.4239419} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.6342468, y: 0.019233562, z: 0.02433003, w: 0.7725084} + inSlope: {x: -0.74635684, y: -0.011936665, z: 0.008280821, w: 0.6133989} + outSlope: {x: -0.74635684, y: -0.011936665, z: 0.008280821, w: 0.6133989} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000001 + value: {x: 0.5671392, y: 0.04227062, z: 0.053370345, w: 0.8208033} + inSlope: {x: -0.21997325, y: 0.13543501, z: 0.095311105, w: 0.14013644} + outSlope: {x: -0.21997325, y: 0.13543501, z: 0.095311105, w: 0.14013644} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9666667 + value: {x: 0.5662912, y: 0.053971596, z: 0.05871937, w: 0.8203374} + inSlope: {x: 0.02651992, y: 0.041153565, z: 0.028029725, w: -0.023015164} + outSlope: {x: 0.02651992, y: 0.041153565, z: 0.028029725, w: -0.023015164} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.568537, y: 0.056509312, z: 0.060355116, w: 0.8184923} + inSlope: {x: 0.022897147, y: 0.016326174, z: 0.009274417, w: -0.017693656} + outSlope: {x: 0.022897147, y: 0.016326174, z: 0.009274417, w: -0.017693656} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.18222287, y: 0.030859599, z: -0.1223015, w: 0.9751333} + inSlope: {x: 0.0003531575, y: -0.049992517, z: -0.03503166, w: -0.002941489} + outSlope: {x: 0.0003531575, y: -0.049992517, z: -0.03503166, w: -0.002941489} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.18108486, y: 0.031696603, z: -0.12064418, w: 0.9755248} + inSlope: {x: -0.18862256, y: 0.22595772, z: 0.034077246, w: 0.03125668} + outSlope: {x: -0.18862256, y: 0.22595772, z: 0.034077246, w: 0.03125668} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: 0.17113215, y: 0.043490738, z: -0.11812031, w: 0.97717446} + inSlope: {x: -0.05707874, y: -0.043417167, z: -0.052347012, w: 0.0052303053} + outSlope: {x: -0.05707874, y: -0.043417167, z: -0.052347012, w: 0.0052303053} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: 0.16932525, y: 0.03768383, z: -0.123302415, w: 0.9770903} + inSlope: {x: 0.7413012, y: -0.60510665, z: -0.18949227, w: -0.15912206} + outSlope: {x: 0.7413012, y: -0.60510665, z: -0.18949227, w: -0.15912206} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.22055222, y: 0.003150297, z: -0.13075313, w: 0.9665663} + inSlope: {x: 0.26108646, y: -0.008584797, z: 0.27659678, w: -0.014955103} + outSlope: {x: 0.26108646, y: -0.008584797, z: 0.27659678, w: -0.014955103} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: 0.18673101, y: 0.03711151, z: -0.10486263, w: 0.9760933} + inSlope: {x: -0.5193432, y: 0.49018145, z: 0.38469508, w: 0.14552505} + outSlope: {x: -0.5193432, y: 0.49018145, z: 0.38469508, w: 0.14552505} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.18592934, y: 0.035829056, z: -0.10510679, w: 0.976268} + inSlope: {x: -0.05004846, y: -0.011555238, z: -0.012992398, w: 0.008519591} + outSlope: {x: -0.05004846, y: -0.011555238, z: -0.012992398, w: 0.008519591} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5666667 + value: {x: 0.18217939, y: 0.03849313, z: -0.10011489, w: 0.97739756} + inSlope: {x: 0.036065437, y: -0.04409396, z: 0.014297739, w: -0.0035324702} + outSlope: {x: 0.036065437, y: -0.04409396, z: 0.014297739, w: -0.0035324702} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.19316995, y: 0.02476686, z: -0.101854466, w: 0.97554994} + inSlope: {x: 0.20997074, y: -0.21691915, z: -0.04666409, w: -0.040149994} + outSlope: {x: 0.20997074, y: -0.21691915, z: -0.04666409, w: -0.040149994} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000001 + value: {x: 0.19243036, y: 0.02453758, z: -0.09832136, w: 0.97606426} + inSlope: {x: 0.032790452, y: -0.054289922, z: 0.005342738, w: -0.0045508146} + outSlope: {x: 0.032790452, y: -0.054289922, z: 0.005342738, w: -0.0045508146} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.19271396, y: 0.017442625, z: -0.097903125, w: 0.9762029} + inSlope: {x: -0.008541056, y: -0.022943582, z: -0.005356153, w: 0.0015699879} + outSlope: {x: -0.008541056, y: -0.022943582, z: -0.005356153, w: 0.0015699879} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot/mixamorig:LeftToeBase + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.15241136, y: 0.40803453, z: 0.89353484, w: -0.10896848} + inSlope: {x: -0.022911428, y: -0.60710096, z: 0.3364062, w: 0.5780276} + outSlope: {x: -0.022911428, y: -0.60710096, z: 0.3364062, w: 0.5780276} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.15164764, y: 0.38779783, z: 0.9047484, w: -0.08970089} + inSlope: {x: -0.14755234, y: -0.76493376, z: 0.34863797, w: 0.010987431} + outSlope: {x: -0.14755234, y: -0.76493376, z: 0.34863797, w: 0.010987431} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: 0.13813424, y: 0.32227194, z: 0.9243297, w: -0.15058017} + inSlope: {x: 0.0762854, y: -1.2500064, z: 0.20227969, w: -1.2963893} + outSlope: {x: 0.0762854, y: -1.2500064, z: 0.20227969, w: -1.2963893} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.14766023, y: 0.27370518, z: 0.9302627, w: -0.19466195} + inSlope: {x: 0.7224864, y: -2.2892885, z: 0.22266719, w: -1.2418691} + outSlope: {x: 0.7224864, y: -2.2892885, z: 0.22266719, w: -1.2418691} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.1863, y: 0.16965272, z: 0.9391742, w: -0.23337144} + inSlope: {x: 1.3728478, y: -3.6965575, z: 0.14243962, w: -0.7205126} + outSlope: {x: 1.3728478, y: -3.6965575, z: 0.14243962, w: -0.7205126} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: 0.23918343, y: 0.027267985, z: 0.93975866, w: -0.24269612} + inSlope: {x: 1.2789559, y: -4.0949855, z: -0.112040356, w: 0.2314383} + outSlope: {x: 1.2789559, y: -4.0949855, z: -0.112040356, w: 0.2314383} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: 0.27156374, y: -0.10334634, z: 0.9317048, w: -0.21794222} + inSlope: {x: 0.9250506, y: -2.854961, z: -0.30189517, w: 0.7483511} + outSlope: {x: 0.9250506, y: -2.854961, z: -0.30189517, w: 0.7483511} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.30085346, y: -0.16306274, z: 0.9196323, w: -0.19280605} + inSlope: {x: 1.1672925, y: -0.404927, z: -0.31167898, w: 0.62147725} + outSlope: {x: 1.1672925, y: -0.404927, z: -0.31167898, w: 0.62147725} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: 0.34938323, y: -0.13034147, z: 0.9109262, w: -0.17651041} + inSlope: {x: 0.83811975, y: 1.8132486, z: -0.27804407, w: -0.75114596} + outSlope: {x: 0.83811975, y: 1.8132486, z: -0.27804407, w: -0.75114596} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.3567281, y: -0.04217949, z: 0.90109605, w: -0.24288245} + inSlope: {x: -0.1603626, y: 2.3468118, z: -0.35359475, w: -2.0291173} + outSlope: {x: -0.1603626, y: 2.3468118, z: -0.35359475, w: -2.0291173} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: 0.3386924, y: 0.026112644, z: 0.88735324, w: -0.3117849} + inSlope: {x: -0.85088027, y: 1.5356734, z: -0.24277388, w: -1.6240256} + outSlope: {x: -0.85088027, y: 1.5356734, z: -0.24277388, w: -1.6240256} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.30000272, y: 0.06019875, z: 0.8849111, w: -0.35115084} + inSlope: {x: -1.5995133, y: 0.5488639, z: 0.19628768, w: -0.7611519} + outSlope: {x: -1.5995133, y: 0.5488639, z: 0.19628768, w: -0.7611519} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: 0.23205815, y: 0.062703595, z: 0.9004391, w: -0.36252838} + inSlope: {x: -1.9859016, y: 0.12645762, z: 0.395515, w: -0.28006378} + outSlope: {x: -1.9859016, y: 0.12645762, z: 0.395515, w: -0.28006378} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.12726097, y: 0.07977073, z: 0.91931945, w: -0.36372107} + inSlope: {x: -0.921033, y: 0.4807617, z: 0.2518773, w: 0.41065317} + outSlope: {x: -0.921033, y: 0.4807617, z: 0.2518773, w: 0.41065317} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5666667 + value: {x: 0.097243086, y: 0.13045897, z: 0.9385249, w: -0.3044591} + inSlope: {x: -0.1279066, y: 0.77459383, z: 0.32761756, w: 1.3146175} + outSlope: {x: -0.1279066, y: 0.77459383, z: 0.32761756, w: 1.3146175} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6333334 + value: {x: 0.09918391, y: 0.15528429, z: 0.95952404, w: -0.21298589} + inSlope: {x: 0.06375032, y: -0.13694128, z: 0.2583003, w: 1.0658528} + outSlope: {x: 0.06375032, y: -0.13694128, z: 0.2583003, w: 1.0658528} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7666667 + value: {x: 0.11960846, y: 0.030408364, z: 0.9835666, w: -0.13178001} + inSlope: {x: 0.16099891, y: -1.2588121, z: 0.065730155, w: 0.31708938} + outSlope: {x: 0.16099891, y: -1.2588121, z: 0.065730155, w: 0.31708938} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.90000004 + value: {x: 0.13230273, y: -0.05752936, z: 0.9818147, w: -0.12339491} + inSlope: {x: 0.0310135, y: -0.16453932, z: -0.01640529, w: -0.022684345} + outSlope: {x: 0.0310135, y: -0.16453932, z: -0.01640529, w: -0.022684345} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.13224603, y: -0.07696973, z: 0.9806246, w: -0.122319266} + inSlope: {x: -0.02356457, y: -0.114928074, z: -0.0019025821, w: 0.02959217} + outSlope: {x: -0.02356457, y: -0.114928074, z: -0.0019025821, w: 0.02959217} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:RightUpLeg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.9270509, y: 0.04179192, z: -0.18827868, w: 0.32152975} + inSlope: {x: -0.0159055, y: -0.017606243, z: 0.44498202, w: 0.20453094} + outSlope: {x: -0.0159055, y: -0.017606243, z: 0.44498202, w: 0.20453094} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: -0.9275811, y: 0.041205045, z: -0.17344594, w: 0.32834744} + inSlope: {x: 0.24555087, y: 0.08093822, z: -0.12717156, w: 0.5795645} + outSlope: {x: 0.24555087, y: 0.08093822, z: -0.12717156, w: 0.5795645} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: -0.91068083, y: 0.0471878, z: -0.19675678, w: 0.36016738} + inSlope: {x: 0.818577, y: 0.3571338, z: -1.0877858, w: 1.3161106} + outSlope: {x: 0.818577, y: 0.3571338, z: -1.0877858, w: 1.3161106} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: -0.87300926, y: 0.06501397, z: -0.245965, w: 0.41608816} + inSlope: {x: 1.4109457, y: 0.48278904, z: -1.1998191, w: 2.1012013} + outSlope: {x: 1.4109457, y: 0.48278904, z: -1.1998191, w: 2.1012013} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: -0.8166178, y: 0.07937374, z: -0.27674472, w: 0.5002475} + inSlope: {x: 2.231016, y: -0.0520785, z: -0.0358665, w: 3.3628707} + outSlope: {x: 2.231016, y: -0.0520785, z: -0.0358665, w: 3.3628707} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.7242749, y: 0.061542068, z: -0.2483561, w: 0.64027953} + inSlope: {x: 3.5093453, y: -1.0226941, z: 1.6683183, w: 4.430316} + outSlope: {x: 3.5093453, y: -1.0226941, z: 1.6683183, w: 4.430316} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: -0.5826614, y: 0.0111941155, z: -0.16552347, w: 0.7956019} + inSlope: {x: 4.8409605, y: -1.7041779, z: 2.8847191, w: 4.085395} + outSlope: {x: 4.8409605, y: -1.7041779, z: 2.8847191, w: 4.085395} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: -0.40154412, y: -0.052069806, z: -0.05604146, w: 0.91263926} + inSlope: {x: 3.7483137, y: -1.672602, z: 2.7149324, w: 2.1288989} + outSlope: {x: 3.7483137, y: -1.672602, z: 2.7149324, w: 2.1288989} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.33277383, y: -0.10031268, z: 0.015472028, w: 0.9375285} + inSlope: {x: -0.08422351, y: -1.229665, z: 1.7896552, w: -0.17085227} + outSlope: {x: -0.08422351, y: -1.229665, z: 1.7896552, w: -0.17085227} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: -0.40715903, y: -0.13404746, z: 0.06326888, w: 0.9012491} + inSlope: {x: -3.9912045, y: 0.7664527, z: 0.7357515, w: -2.1118855} + outSlope: {x: -3.9912045, y: 0.7664527, z: 0.7357515, w: -2.1118855} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.5988541, y: -0.04921583, z: 0.064522125, w: 0.7967361} + inSlope: {x: -4.600898, y: 2.4684577, z: -0.7081646, w: -3.0275435} + outSlope: {x: -4.600898, y: 2.4684577, z: -0.7081646, w: -3.0275435} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: -0.71388555, y: 0.030516379, z: 0.016057907, w: 0.6994129} + inSlope: {x: -2.750565, y: 1.5954443, z: -1.0316947, w: -2.645722} + outSlope: {x: -2.750565, y: 1.5954443, z: -1.0316947, w: -2.645722} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: -0.7822252, y: 0.057147145, z: -0.0042575346, w: 0.6203546} + inSlope: {x: -1.6286552, y: 0.6024965, z: -0.6843741, w: -2.0366585} + outSlope: {x: -1.6286552, y: 0.6024965, z: -0.6843741, w: -2.0366585} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: -0.84513813, y: 0.07826213, z: -0.0542458, w: 0.5259981} + inSlope: {x: -0.43261898, y: 0.2391004, z: -0.6596081, w: -0.77122474} + outSlope: {x: -0.43261898, y: 0.2391004, z: -0.6596081, w: -0.77122474} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.8513039, y: 0.08662285, z: -0.0735409, w: 0.5122206} + inSlope: {x: -0.04575772, y: -0.1778703, z: 0.24547264, w: -0.027746007} + outSlope: {x: -0.04575772, y: -0.1778703, z: 0.24547264, w: -0.027746007} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5666667 + value: {x: -0.82913214, y: 0.026101634, z: 0.030256893, w: 0.55762273} + inSlope: {x: 0.9086961, y: -1.1743704, z: 1.8053312, w: 1.2955029} + outSlope: {x: 0.9086961, y: -1.1743704, z: 1.8053312, w: 1.2955029} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.653804, y: -0.06016985, z: 0.11218297, w: 0.74587864} + inSlope: {x: 2.4500198, y: -0.4637711, z: -0.10302581, w: 2.103797} + outSlope: {x: 2.4500198, y: -0.4637711, z: -0.10302581, w: 2.103797} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.46803623, y: -0.08186873, z: 0.09005842, w: 0.875288} + inSlope: {x: 2.812509, y: -0.20994285, z: -0.34369248, w: 1.5446649} + outSlope: {x: 2.812509, y: -0.20994285, z: -0.34369248, w: 1.5446649} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000001 + value: {x: -0.30946684, y: -0.08504705, z: 0.071480736, w: 0.9443981} + inSlope: {x: 1.5168626, y: 0.1529979, z: -0.1595383, w: 0.55480134} + outSlope: {x: 1.5168626, y: 0.1529979, z: -0.1595383, w: 0.55480134} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.90000004 + value: {x: -0.26046908, y: -0.063239306, z: 0.06880694, w: 0.96094865} + inSlope: {x: 0.08095223, y: 0.101326294, z: 0.024670959, w: 0.027052771} + outSlope: {x: 0.08095223, y: 0.101326294, z: 0.024670959, w: 0.027052771} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.25329372, y: -0.059019145, z: 0.078178875, w: 0.96241736} + inSlope: {x: 0.05056863, y: -0.027623873, z: 0.07509589, w: 0.0056719836} + outSlope: {x: 0.05056863, y: -0.027623873, z: 0.07509589, w: 0.0056719836} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.5621159, y: -0.0705056, z: -0.0638425, w: 0.82157093} + inSlope: {x: 0.12950957, y: -0.47455004, z: -0.45134312, w: -0.17406283} + outSlope: {x: 0.12950957, y: -0.47455004, z: -0.45134312, w: -0.17406283} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.5664329, y: -0.08632393, z: -0.07888727, w: 0.81576884} + inSlope: {x: 0.3046006, y: -0.5401772, z: -0.42230362, w: -0.31442997} + outSlope: {x: 0.3046006, y: -0.5401772, z: -0.42230362, w: -0.31442997} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: 0.59335124, y: -0.12254018, z: -0.09616819, w: 0.78972775} + inSlope: {x: 0.24822053, y: -0.45882052, z: -0.14114544, w: -0.2731016} + outSlope: {x: 0.24822053, y: -0.45882052, z: -0.14114544, w: -0.2731016} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.59897065, y: -0.13710545, z: -0.10140577, w: 0.78240216} + inSlope: {x: 0.19568594, y: -0.60478437, z: -0.6490917, w: -0.36022696} + outSlope: {x: 0.19568594, y: -0.60478437, z: -0.6490917, w: -0.36022696} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.606397, y: -0.16285914, z: -0.13944097, w: 0.7657126} + inSlope: {x: -0.1558434, y: -0.87454104, z: -1.5129974, w: -0.36692262} + outSlope: {x: -0.1558434, y: -0.87454104, z: -1.5129974, w: -0.36692262} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: 0.5885811, y: -0.1954082, z: -0.20227228, w: 0.75794065} + inSlope: {x: -0.8341098, y: -0.4332025, z: -1.3404269, w: 0.20580955} + outSlope: {x: -0.8341098, y: -0.4332025, z: -1.3404269, w: 0.20580955} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: 0.55078965, y: -0.19173932, z: -0.22880279, w: 0.77943325} + inSlope: {x: 0.5817604, y: 0.8671498, z: -0.5976063, w: -0.46068373} + outSlope: {x: 0.5817604, y: 0.8671498, z: -0.5976063, w: -0.46068373} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.6273651, y: -0.13759822, z: -0.2421127, w: 0.7272284} + inSlope: {x: 3.507769, y: 1.1703765, z: -1.0280869, w: -3.7119012} + outSlope: {x: 3.507769, y: 1.1703765, z: -1.0280869, w: -3.7119012} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: 0.7846409, y: -0.113714226, z: -0.2973419, w: 0.5319732} + inSlope: {x: 3.4985933, y: 0.04759088, z: -1.0765239, w: -5.2407236} + outSlope: {x: 3.4985933, y: 0.04759088, z: -1.0765239, w: -5.2407236} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.86060464, y: -0.13442549, z: -0.31388095, w: 0.37784684} + inSlope: {x: 1.69926, y: -0.26986948, z: 0.027393863, w: -3.503281} + outSlope: {x: 1.69926, y: -0.26986948, z: 0.027393863, w: -3.503281} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: 0.8979249, y: -0.13170552, z: -0.29551566, w: 0.2984211} + inSlope: {x: 0.7005116, y: 0.068188444, z: -0.0037440956, w: -1.9553876} + outSlope: {x: 0.7005116, y: 0.068188444, z: -0.0037440956, w: -1.9553876} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.9073054, y: -0.1298796, z: -0.31413057, w: 0.24748762} + inSlope: {x: 0.18392968, y: -0.17985824, z: -0.44883347, w: -1.294283} + outSlope: {x: 0.18392968, y: -0.17985824, z: -0.44883347, w: -1.294283} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: 0.9095835, y: -0.15401489, z: -0.3318718, w: 0.196973} + inSlope: {x: 0.0008985484, y: -0.4034807, z: 0.09239601, w: -0.16670997} + outSlope: {x: 0.0008985484, y: -0.4034807, z: 0.09239601, w: -0.16670997} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.9102468, y: -0.17059477, z: -0.31927818, w: 0.20102154} + inSlope: {x: -0.22453287, y: -0.45244336, z: -0.008209452, w: 0.57090694} + outSlope: {x: -0.22453287, y: -0.45244336, z: -0.008209452, w: 0.57090694} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5666667 + value: {x: 0.8674764, y: -0.19776918, z: -0.35381106, w: 0.28842637} + inSlope: {x: -0.74432105, y: -0.39428878, z: -0.20679659, w: 1.7101896} + outSlope: {x: -0.74432105, y: -0.39428878, z: -0.20679659, w: 1.7101896} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.8163231, y: -0.20718646, z: -0.2707299, w: 0.4662571} + inSlope: {x: -0.43304175, y: 0.31199068, z: 1.3179641, w: 1.6639299} + outSlope: {x: -0.43304175, y: 0.31199068, z: 1.3179641, w: 1.6639299} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000001 + value: {x: 0.7365704, y: -0.14321233, z: -0.15488492, w: 0.6426235} + inSlope: {x: -0.51076764, y: 0.32785976, z: 0.31540176, w: 0.74801344} + outSlope: {x: -0.51076764, y: 0.32785976, z: 0.31540176, w: 0.74801344} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9666667 + value: {x: 0.7131502, y: -0.1289949, z: -0.14680299, w: 0.67322063} + inSlope: {x: -0.029990703, y: 0.004878496, z: -0.027222212, w: 0.026771154} + outSlope: {x: -0.029990703, y: 0.004878496, z: -0.027222212, w: 0.026771154} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.7105929, y: -0.1301481, z: -0.15015616, w: 0.674961} + inSlope: {x: -0.027605321, y: -0.023674093, z: -0.039878227, w: 0.015705243} + outSlope: {x: -0.027605321, y: -0.023674093, z: -0.039878227, w: 0.015705243} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.14585146, y: -0.025345957, z: 0.121514454, w: 0.9814883} + inSlope: {x: -0.049430873, y: -0.00059461215, z: 0.020417197, w: 0.004752874} + outSlope: {x: -0.049430873, y: -0.00059461215, z: 0.020417197, w: 0.004752874} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.13269684, y: -0.022304615, z: 0.12364448, w: 0.9831613} + inSlope: {x: -0.23898551, y: 0.10001374, z: -0.13011587, w: 0.050959293} + outSlope: {x: -0.23898551, y: 0.10001374, z: -0.13011587, w: 0.050959293} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.12537393, y: -0.018567178, z: 0.11894489, w: 0.9847785} + inSlope: {x: -0.11395388, y: -0.016540006, z: 0.036220834, w: 0.009952791} + outSlope: {x: -0.11395388, y: -0.016540006, z: 0.036220834, w: 0.009952791} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: 0.12509991, y: -0.023407284, z: 0.1260592, w: 0.9838248} + inSlope: {x: 0.016246144, y: -0.12579758, z: 0.13268135, w: -0.021621281} + outSlope: {x: 0.016246144, y: -0.12579758, z: 0.13268135, w: -0.021621281} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: 0.126457, y: -0.026953686, z: 0.12779032, w: 0.9833371} + inSlope: {x: 3.465566, y: -0.80167747, z: 0.31262827, w: -0.9632448} + outSlope: {x: 3.465566, y: -0.80167747, z: 0.31262827, w: -0.9632448} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.35613763, y: -0.07685245, z: 0.14690109, w: 0.9196085} + inSlope: {x: 2.2193975, y: -1.1500698, z: 0.44774747, w: -0.6061864} + outSlope: {x: 2.2193975, y: -1.1500698, z: 0.44774747, w: -0.6061864} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: 0.27441683, y: -0.10362501, z: 0.15764014, w: 0.9429247} + inSlope: {x: -1.1178657, y: 0.22055528, z: 0.114265025, w: 0.38032117} + outSlope: {x: -1.1178657, y: 0.22055528, z: 0.114265025, w: 0.38032117} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.28161326, y: -0.062148765, z: 0.15451875, w: 0.9449632} + inSlope: {x: 0.8803413, y: 0.53513795, z: -0.028724225, w: -0.23204508} + outSlope: {x: 0.8803413, y: 0.53513795, z: -0.028724225, w: -0.23204508} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: 0.33310625, y: -0.067949146, z: 0.1557252, w: 0.927455} + inSlope: {x: 1.5435075, y: -0.1718533, z: 0.027232686, w: -0.5724091} + outSlope: {x: 1.5435075, y: -0.1718533, z: 0.027232686, w: -0.5724091} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.47693864, y: -0.08436708, z: 0.15449716, w: 0.86112857} + inSlope: {x: 0.15811823, y: -0.03437904, z: -0.04083441, w: -0.08166624} + outSlope: {x: 0.15811823, y: -0.03437904, z: -0.04083441, w: -0.08166624} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.430089, y: -0.0750243, z: 0.15235534, w: 0.8866694} + inSlope: {x: -1.2525042, y: 0.13231331, z: -0.08631924, w: 0.6126352} + outSlope: {x: -1.2525042, y: 0.13231331, z: -0.08631924, w: 0.6126352} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6333334 + value: {x: 0.37595278, y: -0.07200864, z: 0.14716312, w: 0.9120402} + inSlope: {x: -1.554722, y: 0.08587718, z: -0.15657598, w: 0.67890906} + outSlope: {x: -1.554722, y: 0.08587718, z: -0.15657598, w: 0.67890906} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000001 + value: {x: 0.18327548, y: -0.04786239, z: 0.1307352, w: 0.9731535} + inSlope: {x: -0.32403234, y: 0.08166006, z: -0.051684372, w: 0.07494266} + outSlope: {x: -0.32403234, y: 0.08166006, z: -0.051684372, w: 0.07494266} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.90000004 + value: {x: 0.17958707, y: -0.043806195, z: 0.12769508, w: 0.974435} + inSlope: {x: -0.010476041, y: 0.0201753, z: -0.018960316, w: 0.005327762} + outSlope: {x: -0.010476041, y: 0.0201753, z: -0.018960316, w: 0.005327762} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.17789538, y: -0.0409247, z: 0.12572166, w: 0.9751269} + inSlope: {x: -0.009619305, y: 0.014867946, z: -0.0068289107, w: 0.0032669336} + outSlope: {x: -0.009619305, y: 0.014867946, z: -0.0068289107, w: 0.0032669336} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot/mixamorig:RightToeBase + m_CompressedRotationCurves: [] + m_EulerCurves: [] + m_PositionCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.0015754721, y: 0.03231631, z: -0.0001348515} + inSlope: {x: -0.0011926995, y: -0.022500284, z: 0.00073323434} + outSlope: {x: -0.0011926995, y: -0.022500284, z: 0.00073323434} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.0015357148, y: 0.031566296, z: -0.00011041039} + inSlope: {x: -0.003382851, y: -0.026591204, z: 0.0010388492} + outSlope: {x: -0.003382862, y: -0.02659145, z: 0.0010388506} + tangentMode: 0 + weightedMode: 0 + 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.0013499461, y: 0.03054356, z: -0.00006559494} + inSlope: {x: -0.0062277066, y: -0.034277383, z: 0.0017838062} + outSlope: {x: -0.0062277447, y: -0.03427689, z: 0.0017838054} + tangentMode: 0 + weightedMode: 0 + 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.0011205327, y: 0.029281158, z: 0.000008509968} + inSlope: {x: -0.006186639, y: -0.04203776, z: 0.002963643} + outSlope: {x: -0.006186622, y: -0.04203807, z: 0.0029636428} + tangentMode: 0 + weightedMode: 0 + 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.0009375047, y: 0.02774101, z: 0.00013198137} + inSlope: {x: -0.004902877, y: -0.057911634, z: 0.0057319086} + outSlope: {x: -0.004902886, y: -0.05791245, z: 0.005731934} + tangentMode: 0 + weightedMode: 0 + 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.0007936745, y: 0.02542036, z: 0.00039063746} + inSlope: {x: -0.0031203772, y: -0.07626898, z: 0.009225807} + outSlope: {x: -0.0031203865, y: -0.07626889, z: 0.009225836} + tangentMode: 0 + weightedMode: 0 + 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.00072948, y: 0.022656431, z: 0.0007470346} + inSlope: {x: -0.00054963806, y: -0.08949567, z: 0.010642346} + outSlope: {x: -0.0005496224, y: -0.0894951, z: 0.010642338} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.23333333 + value: {x: 0.00075703196, y: 0.019454017, z: 0.0011001248} + inSlope: {x: 0.001193409, y: -0.095187, z: 0.0024170135} + outSlope: {x: 0.0011933924, y: -0.09518719, z: 0.0024170156} + tangentMode: 0 + weightedMode: 0 + 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.000809039, y: 0.016310614, z: 0.00090816774} + inSlope: {x: -0.0015354455, y: -0.08506428, z: -0.0104603395} + outSlope: {x: -0.0015354487, y: -0.08506493, z: -0.010460366} + tangentMode: 0 + weightedMode: 0 + 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.0006546689, y: 0.013783019, z: 0.0004027655} + inSlope: {x: -0.005824237, y: -0.06769682, z: -0.010152294} + outSlope: {x: -0.005824244, y: -0.0676972, z: -0.010152383} + tangentMode: 0 + weightedMode: 0 + 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.00042075504, y: 0.011797483, z: 0.00023134206} + inSlope: {x: -0.006531767, y: -0.046823133, z: -0.0038778072} + outSlope: {x: -0.0065317946, y: -0.046823215, z: -0.0038778158} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: 0.00021921525, y: 0.010661474, z: 0.000144244} + inSlope: {x: -0.005815554, y: -0.029999208, z: -0.0025859037} + outSlope: {x: -0.0058155674, y: -0.02999915, z: -0.0025859112} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.4 + value: {x: 0.000033049542, y: 0.009797528, z: 0.000058947695} + inSlope: {x: -0.0046836627, y: -0.021346258, z: -0.0019270382} + outSlope: {x: -0.0046836766, y: -0.021346414, z: -0.0019270449} + tangentMode: 0 + weightedMode: 0 + 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.000093030496, y: 0.009238373, z: 0.000015774145} + inSlope: {x: -0.0032365033, y: -0.011643033, z: -0.00068789657} + outSlope: {x: -0.003236509, y: -0.011643133, z: -0.00068790076} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.46666667 + value: {x: -0.00018271823, y: 0.0090213185, z: 0.000013087636} + inSlope: {x: -0.0021985923, y: -0.0015780365, z: 0.00017028405} + outSlope: {x: -0.0021985974, y: -0.0015779609, z: 0.00017028283} + tangentMode: 0 + weightedMode: 0 + 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.0002396039, y: 0.009133173, z: 0.000027126429} + inSlope: {x: -0.0012865266, y: 0.008709204, z: 0.00016702952} + outSlope: {x: -0.0012865245, y: 0.008708966, z: 0.00016703167} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: -0.000268487, y: 0.009601927, z: 0.00002422304} + inSlope: {x: -0.00045840113, y: 0.018566288, z: -0.0003610457} + outSlope: {x: -0.00045841452, y: 0.018566739, z: -0.0003610501} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.56666666 + value: {x: -0.00027016457, y: 0.010370942, z: 0.0000030565686} + inSlope: {x: 0.00053627085, y: 0.0257715, z: -0.0008497036} + outSlope: {x: 0.0005362677, y: 0.025771119, z: -0.0008496948} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.6 + value: {x: -0.00023273546, y: 0.011320025, z: -0.00003242382} + inSlope: {x: 0.0012177425, y: 0.029738232, z: -0.0013236388} + outSlope: {x: 0.0012177607, y: 0.029738674, z: -0.0013236578} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.6333333 + value: {x: -0.00018898105, y: 0.012353506, z: -0.00008518683} + inSlope: {x: 0.0010134683, y: 0.03103976, z: -0.0016143633} + outSlope: {x: 0.0010134585, y: 0.031039303, z: -0.0016143462} + tangentMode: 0 + weightedMode: 0 + 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.00016517112, y: 0.013389329, z: -0.00014004782} + inSlope: {x: 0.0004412623, y: 0.029555151, z: -0.0017529269} + outSlope: {x: 0.00044127347, y: 0.029555783, z: -0.0017529505} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.7 + value: {x: -0.000159563, y: 0.01432388, z: -0.0002020497} + inSlope: {x: -0.000033392804, y: 0.025415132, z: -0.0017041093} + outSlope: {x: -0.000033389762, y: 0.025414633, z: -0.0017040898} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.73333335 + value: {x: -0.00016739742, y: 0.015083652, z: -0.00025365475} + inSlope: {x: -0.000107065294, y: 0.019396445, z: -0.0014519144} + outSlope: {x: -0.00010707245, y: 0.01939708, z: -0.0014519329} + tangentMode: 0 + weightedMode: 0 + 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.00016670111, y: 0.015617008, z: -0.00029884485} + inSlope: {x: 0.00014213374, y: 0.012844991, z: -0.0013735794} + outSlope: {x: 0.00014212697, y: 0.012844367, z: -0.0013735536} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.8 + value: {x: -0.000157922, y: 0.01593996, z: -0.0003452265} + inSlope: {x: 0.00013217781, y: 0.007462923, z: -0.00081941194} + outSlope: {x: 0.0001321789, y: 0.007463298, z: -0.00081943616} + tangentMode: 0 + weightedMode: 0 + 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.0001578892, y: 0.016114553, z: -0.00035347394} + inSlope: {x: -0.00011957112, y: 0.0036077255, z: -0.00007792174} + outSlope: {x: -0.000119570126, y: 0.0036077108, z: -0.000077920406} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.8666667 + value: {x: -0.00016589338, y: 0.01618048, z: -0.00035042118} + inSlope: {x: -0.00021328771, y: 0.001304419, z: 0.0001016544} + outSlope: {x: -0.00021328541, y: 0.0013045032, z: 0.00010165453} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.96666664 + value: {x: -0.00018186198, y: 0.016215738, z: -0.0003400874} + inSlope: {x: -0.00015417264, y: 0.00012254043, z: 0.0001215527} + outSlope: {x: -0.0001541699, y: 0.00012252829, z: 0.00012154104} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.0666667 + value: {x: -0.0001912899, y: 0.016216477, z: -0.0003254141} + inSlope: {x: -0.000055095024, y: -0.000048294954, z: 0.00020024336} + outSlope: {x: -0.000055095024, y: -0.000048294954, z: 0.00020024336} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips + m_ScaleCurves: [] + m_FloatCurves: [] + m_PPtrCurves: [] + m_SampleRate: 30 + 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.0666667 + 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/Jammo-Character/Animations/Falling To Landing.anim.meta b/Assets/Jammo-Character/Animations/Falling To Landing.anim.meta new file mode 100644 index 0000000..1e771dd --- /dev/null +++ b/Assets/Jammo-Character/Animations/Falling To Landing.anim.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: aa2bb98b035ff55448dc2b05f2e04251 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 7400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Jammo-Character/Animations/Fist Pump.anim b/Assets/Jammo-Character/Animations/Fist Pump.anim new file mode 100644 index 0000000..87e4495 --- /dev/null +++ b/Assets/Jammo-Character/Animations/Fist Pump.anim @@ -0,0 +1,48762 @@ +%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: Fist Pump + 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, 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.033333335 + 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: Armature.001 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.03159396, y: 0.046791025, z: 0.023122879, w: 0.9981372} + inSlope: {x: -0.008899346, y: 0.07901284, z: 0.012168623, w: -0.004377365} + outSlope: {x: -0.008899346, y: 0.07901284, z: 0.012168623, w: -0.004377365} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.041887928, y: 0.09446797, z: 0.025974076, w: 0.9943071} + inSlope: {x: -0.040649883, y: 0.04356401, z: -0.026376393, w: -0.0051435847} + outSlope: {x: -0.040649883, y: 0.04356401, z: -0.026376393, w: -0.0051435847} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9333334 + value: {x: -0.07142748, y: 0.014080203, z: 0.008577921, w: 0.99730957} + inSlope: {x: -0.11087884, y: -0.36986837, z: -0.0036760513, w: -0.003073814} + outSlope: {x: -0.11087884, y: -0.36986837, z: -0.0036760513, w: -0.003073814} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.092968784, y: -0.044956613, z: 0.005850163, w: 0.99463636} + inSlope: {x: -0.09541507, y: -0.14981812, z: -0.025955237, w: -0.015303782} + outSlope: {x: -0.09541507, y: -0.14981812, z: -0.025955237, w: -0.015303782} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333334 + value: {x: -0.101804815, y: -0.06273666, z: 0.0026029015, w: 0.9928208} + inSlope: {x: 0.13956665, y: 0.053623613, z: 0.010884708, w: 0.017647164} + outSlope: {x: 0.13956665, y: 0.053623613, z: 0.010884708, w: 0.017647164} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7333335 + value: {x: -0.07618169, y: -0.07312244, z: 0.0053491895, w: 0.9943947} + inSlope: {x: 0.110210314, y: -0.1389234, z: 0.004382187, w: -0.0017228691} + outSlope: {x: 0.110210314, y: -0.1389234, z: 0.004382187, w: -0.0017228691} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.0333335 + value: {x: -0.04159678, y: -0.021457, z: 0.011359849, w: 0.99883944} + inSlope: {x: 0.10477495, y: 0.32580647, z: 0.056341283, w: 0.010816419} + outSlope: {x: 0.10477495, y: 0.32580647, z: 0.056341283, w: 0.010816419} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.766667 + value: {x: -0.008784984, y: 0.050001957, z: 0.022863101, w: 0.9984488} + inSlope: {x: -0.008445935, y: -0.0036934612, z: -0.0064504957, w: 0.0002574923} + outSlope: {x: -0.008445935, y: -0.0036934612, z: -0.0064504957, w: 0.0002574923} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.8000002 + value: {x: -0.031593967, y: 0.04679111, z: 0.023122955, w: 0.9981372} + inSlope: {x: -0.008914554, y: -0.0312842, z: -0.007905148, w: 0.0013875974} + outSlope: {x: -0.008914554, y: -0.0312842, z: -0.007905148, w: 0.0013875974} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.029184693, y: -0.013092213, z: -0.016104616, w: 0.99935853} + inSlope: {x: 0.000039897855, y: -0.00047170554, z: 0.002351906, w: 0.000030398367} + outSlope: {x: 0.000039897855, y: -0.00047170554, z: 0.002351906, w: 0.000030398367} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9333334 + value: {x: 0.025250182, y: -0.016821112, z: -0.022539467, w: 0.99928546} + inSlope: {x: 0.03146936, y: -0.017718425, z: 0.0007790142, w: -0.0010871891} + outSlope: {x: 0.03146936, y: -0.017718425, z: 0.0007790142, w: -0.0010871891} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.03212796, y: -0.018534224, z: -0.022951847, w: 0.9990483} + inSlope: {x: -0.065063946, y: 0.0031192158, z: 0.019760016, w: 0.00261247} + outSlope: {x: -0.065063946, y: 0.0031192158, z: 0.019760016, w: 0.00261247} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.4666667 + value: {x: 0.021912953, y: -0.012037617, z: -0.015529759, w: 0.9995668} + inSlope: {x: -0.0021892383, y: -0.006577485, z: 0.009576997, w: 0.00011712288} + outSlope: {x: -0.0021892383, y: -0.006577485, z: 0.009576997, w: 0.00011712288} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.8000002 + value: {x: 0.029210266, y: -0.0129203815, z: -0.01607893, w: 0.99936044} + inSlope: {x: 0.000027660308, y: -0.00021100065, z: 0.0016272083, w: 0.000023245833} + outSlope: {x: 0.000027660308, y: -0.00021100065, z: 0.0016272083, w: 0.000023245833} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.010088756, y: -0.0028405136, z: -0.013669265, w: 0.99985164} + inSlope: {x: 0.00000013969837, y: 0.00000020256265, z: -0.000000083819025, + w: 0} + outSlope: {x: 0.00000013969837, y: 0.00000020256265, z: -0.000000083819025, + w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.90000004 + value: {x: 0.0029453924, y: -0.008166624, z: -0.02041915, w: 0.99975383} + inSlope: {x: -0.026544759, y: -0.016078344, z: -0.0019886373, w: -0.00010639432} + outSlope: {x: -0.026544759, y: -0.016078344, z: -0.0019886373, w: -0.00010639432} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.014134781, y: -0.013084868, z: -0.016863495, w: 0.99967223} + inSlope: {x: 0.050156564, y: 0.0008175734, z: -0.010193054, w: 0.0005391236} + outSlope: {x: 0.050156564, y: 0.0008175734, z: -0.010193054, w: 0.0005391236} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.8666668 + value: {x: 0.018891986, y: -0.004724445, z: -0.023814423, w: 0.99952674} + inSlope: {x: 0.018306175, y: 0.044666424, z: 0.0035203116, w: -0.000036657057} + outSlope: {x: 0.018306175, y: 0.044666424, z: 0.0035203116, w: -0.000036657057} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.9 + value: {x: 0.019839358, y: -0.0019764453, z: -0.017404322, w: 0.99964976} + inSlope: {x: -0.01648082, y: 0.0043360237, z: -0.0007481694, w: 0.00032275944} + outSlope: {x: -0.01648082, y: 0.0043360237, z: -0.0007481694, w: 0.00032275944} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.8000002 + value: {x: 0.010064697, y: -0.0026548137, z: -0.013518619, w: 0.99985445} + inSlope: {x: 0.000000027939704, y: 0.00000016763822, z: 0, w: 0} + outSlope: {x: 0.000000027939704, y: 0.00000016763822, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.0026899427, y: -0.002920306, z: -0.013664898, w: 0.9998988} + inSlope: {x: -0.00000013969837, y: -0.0000007823109, z: 0.00000041909513, + w: 0} + outSlope: {x: -0.00000013969837, y: -0.0000007823109, z: 0.00000041909513, + w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.90000004 + value: {x: -0.008939079, y: -0.008040544, z: -0.020845776, w: 0.99971044} + inSlope: {x: 0.024122544, y: -0.015713235, z: -0.01489098, w: -0.00023424625} + outSlope: {x: 0.024122544, y: -0.015713235, z: -0.01489098, w: -0.00023424625} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2 + value: {x: -0.002153481, y: -0.014100152, z: -0.024125483, w: 0.9996072} + inSlope: {x: -0.07320155, y: -0.019342545, z: 0.033062644, w: 0.00037193333} + outSlope: {x: -0.07320155, y: -0.019342545, z: 0.033062644, w: 0.00037193333} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.0012863546, y: -0.012145531, z: -0.023914475, w: 0.9996394} + inSlope: {x: 0.051244855, y: -0.012859877, z: -0.015871763, w: -0.00046044632} + outSlope: {x: 0.051244855, y: -0.012859877, z: -0.015871763, w: -0.00046044632} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.0666668 + value: {x: 0.005876295, y: -0.0016078476, z: -0.02343639, w: 0.9997068} + inSlope: {x: 0.012030473, y: 0.01444902, z: 0.007736476, w: 0.00013232243} + outSlope: {x: 0.012030473, y: 0.01444902, z: 0.007736476, w: 0.00013232243} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.1333334 + value: {x: 0.0010282274, y: -0.0012481586, z: -0.016462935, w: 0.9998632} + inSlope: {x: -0.00516791, y: 0.00034040512, z: 0.0040202998, w: 0.000072419716} + outSlope: {x: -0.00516791, y: 0.00034040512, z: 0.0040202998, w: 0.000072419716} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.8000002 + value: {x: -0.0027113436, y: -0.0027077997, z: -0.0136207985, w: 0.9998999} + inSlope: {x: 0, y: 0.000000041909555, z: 0.000000027939704, w: 0} + outSlope: {x: 0, y: 0.000000041909555, z: 0.000000027939704, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.07454482, y: 0.00085661374, z: -0.003930833, w: 0.99720955} + inSlope: {x: 0.008281544, y: -0.00094064156, z: 0.0054103225, w: -0.0005990266} + outSlope: {x: 0.008281544, y: -0.00094064156, z: 0.0054103225, w: -0.0005990266} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: 0.10480317, y: 0.0058637555, z: 0.0053928182, w: 0.99446106} + inSlope: {x: 0.16088134, y: 0.06273017, z: 0.07048449, w: -0.017756209} + outSlope: {x: 0.16088134, y: 0.06273017, z: 0.07048449, w: -0.017756209} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9333334 + value: {x: 0.16976996, y: 0.03537393, z: 0.01818212, w: 0.98468083} + inSlope: {x: 0.09401901, y: 0.026322253, z: -0.007627785, w: -0.016939042} + outSlope: {x: 0.09401901, y: 0.026322253, z: -0.007627785, w: -0.016939042} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.18176469, y: 0.038608804, z: 0.010277663, w: 0.9825301} + inSlope: {x: 0.00094212685, y: 0.040477924, z: -0.10172196, w: -0.0006687647} + outSlope: {x: 0.00094212685, y: 0.040477924, z: -0.10172196, w: -0.0006687647} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333334 + value: {x: 0.17026417, y: 0.035897955, z: 0.011136451, w: 0.9846814} + inSlope: {x: -0.03497492, y: -0.024387673, z: 0.020034138, w: 0.0067001646} + outSlope: {x: -0.03497492, y: -0.024387673, z: 0.020034138, w: 0.0067001646} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.8666668 + value: {x: 0.13436347, y: 0.022489578, z: 0.011563911, w: 0.9906094} + inSlope: {x: -0.104825795, y: -0.07688822, z: -0.019719623, w: 0.016161192} + outSlope: {x: -0.104825795, y: -0.07688822, z: -0.019719623, w: 0.016161192} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.4666667 + value: {x: 0.087598786, y: -0.00054170156, z: -0.009224639, w: 0.996113} + inSlope: {x: -0.039246533, y: 0.0023775655, z: -0.0045250244, w: 0.003408184} + outSlope: {x: -0.039246533, y: 0.0023775655, z: -0.0045250244, w: 0.003408184} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.1333334 + value: {x: 0.073760174, y: 0.000490772, z: -0.006243618, w: 0.99725634} + inSlope: {x: 0.00071849744, y: -0.0017518522, z: 0.009325931, w: 0.0000053644235} + outSlope: {x: 0.00071849744, y: -0.0017518522, z: 0.009325931, w: 0.0000053644235} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.8000002 + value: {x: 0.074545115, y: 0.00085561466, z: -0.0039294497, w: 0.99720955} + inSlope: {x: 0.00964121, y: -0.00011596723, z: 0.0031785325, w: -0.00070631574} + outSlope: {x: 0.00964121, y: -0.00011596723, z: 0.0031785325, w: -0.00070631574} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.009639498, y: -0.011781557, z: 0.0024683874, w: 0.9998811} + inSlope: {x: 0.00017384066, y: -0.0029863322, z: 0.014905482, w: -0.000073313706} + outSlope: {x: 0.00017384066, y: -0.0029863322, z: 0.014905482, w: -0.000073313706} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.010282688, y: -0.010213215, z: 0.016796628, w: 0.9997539} + inSlope: {x: 0.2650537, y: 0.05893733, z: 0.11755817, w: -0.0045356145} + outSlope: {x: 0.2650537, y: 0.05893733, z: 0.11755817, w: -0.0045356145} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.11343432, y: 0.0394583, z: 0.051492758, w: 0.99142534} + inSlope: {x: 0.60898244, y: 0.49469656, z: 0.22476979, w: -0.10097712} + outSlope: {x: 0.60898244, y: 0.49469656, z: 0.22476979, w: -0.10097712} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.1860192, y: 0.13741516, z: 0.100707754, w: 0.9676631} + inSlope: {x: 0.15682364, y: 0.17277789, z: 0.11218119, w: -0.066049404} + outSlope: {x: 0.15682364, y: 0.17277789, z: 0.11218119, w: -0.066049404} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.20877416, y: 0.16244905, z: 0.0912273, w: 0.9600527} + inSlope: {x: -0.026429258, y: 0.15114044, z: -0.13042516, w: -0.0070631714} + outSlope: {x: -0.026429258, y: 0.15114044, z: -0.13042516, w: -0.0070631714} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1333334 + value: {x: 0.21113428, y: 0.16120718, z: 0.08046051, w: 0.96070844} + inSlope: {x: 0.10458656, y: 0.06303197, z: -0.17560625, w: -0.019083902} + outSlope: {x: 0.10458656, y: 0.06303197, z: -0.17560625, w: -0.019083902} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666668 + value: {x: 0.19779132, y: 0.17511307, z: 0.06262511, w: 0.9624407} + inSlope: {x: -0.17214713, y: -0.0077055767, z: -0.01193255, w: 0.037690364} + outSlope: {x: -0.17214713, y: -0.0077055767, z: -0.01193255, w: 0.037690364} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6000001 + value: {x: 0.16161533, y: 0.14593872, z: 0.0728484, w: 0.9732808} + inSlope: {x: -0.12453693, y: -0.13163935, z: 0.06973806, w: 0.035034098} + outSlope: {x: -0.12453693, y: -0.13163935, z: 0.06973806, w: 0.035034098} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7666668 + value: {x: 0.10807299, y: 0.12502219, z: 0.06597588, w: 0.9840411} + inSlope: {x: -0.40206185, y: -0.20811191, z: -0.17030713, w: 0.08213915} + outSlope: {x: -0.40206185, y: -0.20811191, z: -0.17030713, w: 0.08213915} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.053327046, y: 0.045286655, z: 0.03665457, w: 0.996876} + inSlope: {x: -0.21332377, y: -0.3488219, z: -0.12964842, w: 0.032097988} + outSlope: {x: -0.21332377, y: -0.3488219, z: -0.12964842, w: 0.032097988} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.4 + value: {x: 0.003857858, y: -0.020249618, z: -0.014805967, w: 0.9996779} + inSlope: {x: -0.094610155, y: 0.0024946802, z: -0.13350458, w: -0.001483263} + outSlope: {x: -0.094610155, y: 0.0024946802, z: -0.13350458, w: -0.001483263} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.766667 + value: {x: -0.007297498, y: -0.011848459, z: -0.008981438, w: 0.99986285} + inSlope: {x: -0.07783751, y: 0.026269203, z: 0.069016814, w: 0.00039249696} + outSlope: {x: -0.07783751, y: 0.026269203, z: 0.069016814, w: 0.00039249696} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.2333336 + value: {x: -0.008261174, y: -0.014711912, z: -0.0035302853, w: 0.99985147} + inSlope: {x: 0.029920544, y: -0.005351459, z: 0.019660022, w: 0.0002333524} + outSlope: {x: 0.029920544, y: -0.005351459, z: 0.019660022, w: 0.0002333524} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.8000002 + value: {x: -0.009637591, y: -0.011784871, z: 0.0024703306, w: 0.9998811} + inSlope: {x: -0.0310295, y: -0.006535292, z: 0.017082116, w: -0.0003969673} + outSlope: {x: -0.0310295, y: -0.006535292, z: 0.017082116, w: -0.0003969673} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.5679691, y: -0.40770572, z: 0.44596183, w: 0.5588427} + inSlope: {x: -0.001013875, y: -0.0019419192, z: 0.0011515616, w: -0.0013035535} + outSlope: {x: -0.001013875, y: -0.0019419192, z: 0.0011515616, w: -0.0013035535} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.56157136, y: -0.41494256, z: 0.4483826, w: 0.55804425} + inSlope: {x: -0.0037756609, y: -0.005131518, z: 0.010115957, w: -0.008137827} + outSlope: {x: -0.0037756609, y: -0.005131518, z: 0.010115957, w: -0.008137827} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.564515, y: -0.4118659, z: 0.44900826, w: 0.5568492} + inSlope: {x: -0.00613509, y: -0.0070805713, z: 0.0030251173, w: -0.0014537899} + outSlope: {x: -0.00613509, y: -0.0070805713, z: 0.0030251173, w: -0.0014537899} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3000001 + value: {x: 0.5635106, y: -0.41288275, z: 0.44851628, w: 0.5575096} + inSlope: {x: -0.009967992, y: -0.013764663, z: 0.028658537, w: -0.023193978} + outSlope: {x: -0.009967992, y: -0.013764663, z: 0.028658537, w: -0.023193978} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.5585748, y: -0.4187362, z: 0.45436108, w: 0.5533626} + inSlope: {x: -0.05112474, y: -0.056093536, z: 0.020613689, w: -0.0076863244} + outSlope: {x: -0.05112474, y: -0.056093536, z: 0.020613689, w: -0.0076863244} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9333334 + value: {x: 0.5680353, y: -0.40829915, z: 0.45106533, w: 0.5542272} + inSlope: {x: 0.022801448, y: 0.026737139, z: -0.02065566, w: 0.013136539} + outSlope: {x: 0.022801448, y: 0.026737139, z: -0.02065566, w: 0.013136539} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.4333334 + value: {x: 0.56881464, y: -0.40700936, z: 0.4469044, w: 0.5577363} + inSlope: {x: -0.0059518274, y: -0.009064982, z: 0.023848437, w: -0.019648094} + outSlope: {x: -0.0059518274, y: -0.009064982, z: 0.023848437, w: -0.019648094} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.3666668 + value: {x: 0.5677168, y: -0.40805796, z: 0.4457154, w: 0.5590386} + inSlope: {x: -0.00565589, y: -0.00558347, z: -0.0010335456, w: 0.0024944567} + outSlope: {x: -0.00565589, y: -0.00558347, z: -0.0010335456, w: 0.0024944567} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.8000002 + value: {x: 0.5679897, y: -0.40774944, z: 0.44589958, w: 0.55883956} + inSlope: {x: 0.003234747, y: 0.005766755, z: -0.0025051855, w: 0.0029200343} + outSlope: {x: 0.003234747, y: 0.005766755, z: -0.0025051855, w: 0.0029200343} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.53634244, y: -0.10566862, z: -0.12136193, w: 0.8285181} + inSlope: {x: 0.0020956993, y: -0.0074158604, z: -0.055913772, w: -0.010558962} + outSlope: {x: 0.0020956993, y: -0.0074158604, z: -0.055913772, w: -0.010558962} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.539052, y: -0.0856017, z: -0.09146636, w: 0.83290404} + inSlope: {x: 0.020239057, y: 0.059471954, z: -0.07803228, w: -0.015568436} + outSlope: {x: 0.020239057, y: 0.059471954, z: -0.07803228, w: -0.015568436} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9666667 + value: {x: 0.5415189, y: -0.066149816, z: -0.10559682, w: 0.8314029} + inSlope: {x: -0.019804556, y: 0.08492698, z: 0.018452162, w: 0.021962842} + outSlope: {x: -0.019804556, y: 0.08492698, z: 0.018452162, w: 0.021962842} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.54685163, y: -0.06546352, z: -0.09037747, w: 0.8297589} + inSlope: {x: -0.019542482, y: -0.16427177, z: 0.07786419, w: 0.008326426} + outSlope: {x: -0.019542482, y: -0.16427177, z: 0.07786419, w: 0.008326426} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2 + value: {x: 0.53877836, y: -0.07197546, z: -0.07810682, w: 0.83572525} + inSlope: {x: -0.050484587, y: 0.14849864, z: 0.30119315, w: 0.07244206} + outSlope: {x: -0.050484587, y: 0.14849864, z: 0.30119315, w: 0.07244206} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.53843945, y: -0.046379894, z: -0.042774137, w: 0.8402989} + inSlope: {x: 0.005778359, y: 0.11732119, z: 0.11179395, w: 0.008577706} + outSlope: {x: 0.005778359, y: 0.11732119, z: 0.11179395, w: 0.008577706} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.5423938, y: -0.022849204, z: -0.012028786, w: 0.83972746} + inSlope: {x: -0.02219258, y: 0.09085575, z: 0.069577985, w: 0.01795112} + outSlope: {x: -0.02219258, y: 0.09085575, z: 0.069577985, w: 0.01795112} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7666668 + value: {x: 0.5385259, y: -0.027140388, z: -0.024870964, w: 0.84180444} + inSlope: {x: -0.036295686, y: -0.083431646, z: 0.2256456, w: 0.026540484} + outSlope: {x: -0.036295686, y: -0.083431646, z: 0.2256456, w: 0.026540484} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.5476654, y: -0.02537761, z: 0.039135132, w: 0.83539635} + inSlope: {x: 0.07161048, y: -0.10661079, z: -0.01290982, w: -0.04973887} + outSlope: {x: 0.07161048, y: -0.10661079, z: -0.01290982, w: -0.04973887} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.2 + value: {x: 0.5511938, y: -0.04850696, z: -0.009101956, w: 0.8329163} + inSlope: {x: -0.046702668, y: -0.05896384, z: -0.4631198, w: 0.021412095} + outSlope: {x: -0.046702668, y: -0.05896384, z: -0.4631198, w: 0.021412095} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.4 + value: {x: 0.5350053, y: -0.06436238, z: -0.11495217, w: 0.8345136} + inSlope: {x: -0.04303072, y: 0.006521239, z: -0.29439172, w: -0.011820506} + outSlope: {x: -0.04303072, y: 0.006521239, z: -0.29439172, w: -0.011820506} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.766667 + value: {x: 0.5311154, y: -0.0780838, z: -0.10041747, w: 0.8376967} + inSlope: {x: 0.067747295, y: -0.047177196, z: 0.20672798, w: -0.022478722} + outSlope: {x: 0.067747295, y: -0.047177196, z: 0.20672798, w: -0.022478722} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.0333335 + value: {x: 0.5327065, y: -0.10075155, z: -0.07876068, w: 0.8365821} + inSlope: {x: 0.0014671697, y: -0.019054096, z: -0.0407248, w: -0.0071060723} + outSlope: {x: 0.0014671697, y: -0.019054096, z: -0.0407248, w: -0.0071060723} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.4333334 + value: {x: 0.535256, y: -0.10887, z: -0.13717903, w: 0.82633543} + inSlope: {x: 0.010623317, y: 0.01495865, z: -0.047513016, w: -0.012769081} + outSlope: {x: 0.010623317, y: 0.01495865, z: -0.047513016, w: -0.012769081} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.8000002 + value: {x: 0.53634256, y: -0.10566857, z: -0.12136181, w: 0.82851803} + inSlope: {x: -0.021275302, y: -0.0108209355, z: 0.017915385, w: 0.015036478} + outSlope: {x: -0.021275302, y: -0.0108209355, z: 0.017915385, w: 0.015036478} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.0009894603, y: 0.014679334, z: -0.012189415, w: 0.9998175} + inSlope: {x: 0.0012901843, y: 0.0046526263, z: -0.01597247, w: -0.00027000904} + outSlope: {x: 0.0012901843, y: 0.0046526263, z: -0.01597247, w: -0.00027000904} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.00093674765, y: 0.014490802, z: -0.01154273, w: 0.999828} + inSlope: {x: 0.00466156, y: 0.016730392, z: -0.057436924, w: -0.0009083748} + outSlope: {x: 0.00466156, y: 0.016730392, z: -0.057436924, w: -0.0009083748} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2333333 + value: {x: 0.00009413619, y: 0.011465856, z: -0.0011614696, w: 0.9999336} + inSlope: {x: -0.004965927, y: -0.017848466, z: 0.061247423, w: 0.0003352762} + outSlope: {x: -0.004965927, y: -0.017848466, z: 0.061247423, w: 0.0003352762} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7 + value: {x: -1.0080694e-10, y: 0.011127403, z: 0.000000012102989, w: 0.99993813} + inSlope: {x: 0.00082598225, y: 0.0029705947, z: -0.01019191, w: -0.000037550828} + outSlope: {x: 0.00082598225, y: 0.0029705947, z: -0.01019191, w: -0.000037550828} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.8666668 + value: {x: -0.000000044499554, y: 0.011127303, z: -0.0000000020325515, w: 0.99993813} + inSlope: {x: -0.0041108257, y: -0.014769908, z: 0.050677747, w: 0.00025838547} + outSlope: {x: -0.0041108257, y: -0.014769908, z: 0.050677747, w: 0.00025838547} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.2333333 + value: {x: -0.000000015763037, y: 0.011127445, z: 0.000000016790317, w: 0.99993813} + inSlope: {x: -0.000002925853, y: -0.00000025145852, z: -0.0000002898421, w: 0} + outSlope: {x: -0.000002925853, y: -0.00000025145852, z: -0.0000002898421, + w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.6000001 + value: {x: 0.0020989035, y: 0.018661471, z: -0.025862802, w: 0.9994891} + inSlope: {x: -0.006068589, y: -0.021777604, z: 0.074801624, w: 0.0023120665} + outSlope: {x: -0.006068589, y: -0.021777604, z: 0.074801624, w: 0.0023120665} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.9333334 + value: {x: 0.000111645626, y: 0.011528905, z: -0.0013778603, w: 0.9999326} + inSlope: {x: -0.00011421113, y: -0.00041365993, z: 0.0014190336, w: 0.0000071525387} + outSlope: {x: -0.00011421113, y: -0.00041365993, z: 0.0014190336, w: 0.0000071525387} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.5666668 + value: {x: 0.0016361712, y: 0.017002491, z: -0.020165617, w: 0.9996508} + inSlope: {x: -0.0026237895, y: -0.009422749, z: 0.03235574, w: 0.0008118161} + outSlope: {x: -0.0026237895, y: -0.009422749, z: 0.03235574, w: 0.0008118161} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.8000002 + value: {x: 0.0009892478, y: 0.014679375, z: -0.012189249, w: 0.9998175} + inSlope: {x: -0.0013372292, y: -0.004806244, z: 0.016494762, w: 0.00027895} + outSlope: {x: -0.0013372292, y: -0.004806244, z: 0.016494762, w: 0.00027895} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.055074885, y: 0.22993691, z: 0.06927375, w: 0.9691733} + inSlope: {x: -0.005090385, y: -0.016021729, z: -0.022404043, w: 0.00567913} + outSlope: {x: -0.005090385, y: -0.016021729, z: -0.022404043, w: 0.00567913} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: 0.05003998, y: 0.22328521, z: 0.07015146, w: 0.97093695} + inSlope: {x: -0.046738595, y: -0.003018606, z: 0.0027890506, w: 0.002912879} + outSlope: {x: -0.046738595, y: -0.003018606, z: 0.0027890506, w: 0.002912879} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.70000005 + value: {x: 0.047393654, y: 0.23837416, z: 0.06501674, w: 0.9678349} + inSlope: {x: -0.004432409, y: 0.091281146, z: -0.049368188, w: -0.018897053} + outSlope: {x: -0.004432409, y: 0.091281146, z: -0.049368188, w: -0.018897053} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.045096654, y: 0.24283162, z: 0.051503513, w: 0.96765} + inSlope: {x: 0.018957404, y: 0.009852411, z: -0.015461615, w: -0.0025400447} + outSlope: {x: 0.018957404, y: 0.009852411, z: -0.015461615, w: -0.0025400447} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1333334 + value: {x: 0.05940109, y: 0.22683641, z: 0.056435585, w: 0.9704802} + inSlope: {x: 0.09168383, y: -0.27454573, z: 0.023688713, w: 0.05746628} + outSlope: {x: 0.09168383, y: -0.27454573, z: 0.023688713, w: 0.05746628} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3000001 + value: {x: 0.04973383, y: 0.21853076, z: 0.059277624, w: 0.97275746} + inSlope: {x: -0.0045015886, y: -0.11734273, z: 0.027004171, w: 0.02481135} + outSlope: {x: -0.0045015886, y: -0.11734273, z: 0.027004171, w: 0.02481135} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4333334 + value: {x: 0.04568558, y: 0.2199647, z: 0.057659328, w: 0.9727301} + inSlope: {x: -0.0073004765, y: 0.12616542, z: -0.012372147, w: -0.0273371} + outSlope: {x: -0.0073004765, y: 0.12616542, z: -0.012372147, w: -0.0273371} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6000001 + value: {x: 0.049286816, y: 0.23307712, z: 0.056430157, w: 0.9695677} + inSlope: {x: -0.006995784, y: 0.059307788, z: 0.0031991503, w: -0.014021672} + outSlope: {x: -0.006995784, y: 0.059307788, z: 0.0031991503, w: -0.014021672} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7666668 + value: {x: 0.04815941, y: 0.24939403, z: 0.050769553, w: 0.96587044} + inSlope: {x: -0.048237227, y: 0.26886576, z: -0.029072436, w: -0.06530291} + outSlope: {x: -0.048237227, y: 0.26886576, z: -0.029072436, w: -0.06530291} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9000001 + value: {x: 0.047426082, y: 0.2436443, z: 0.061349723, w: 0.9667598} + inSlope: {x: -0.0067198905, y: -0.32182312, z: 0.13052624, w: 0.073130496} + outSlope: {x: -0.0067198905, y: -0.32182312, z: 0.13052624, w: 0.073130496} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.0666668 + value: {x: 0.044907127, y: 0.2243819, z: 0.06987223, w: 0.9709552} + inSlope: {x: -0.0047336565, y: 0.10523926, z: 0.008691371, w: -0.024790786} + outSlope: {x: -0.0047336565, y: 0.10523926, z: 0.008691371, w: -0.024790786} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.2333333 + value: {x: 0.04224676, y: 0.22745629, z: 0.061746318, w: 0.97091} + inSlope: {x: 0.028340252, y: -0.056642827, z: -0.005354575, w: 0.012432034} + outSlope: {x: 0.028340252, y: -0.056642827, z: -0.005354575, w: 0.012432034} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.4333334 + value: {x: 0.04456513, y: 0.24962388, z: 0.05911593, w: 0.96550876} + inSlope: {x: 0.03702201, y: 0.15844695, z: -0.074436344, w: -0.038012303} + outSlope: {x: 0.03702201, y: 0.15844695, z: -0.074436344, w: -0.038012303} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.7 + value: {x: 0.051107682, y: 0.24532779, z: 0.062544994, w: 0.9660696} + inSlope: {x: 0.015051361, y: -0.19219536, z: 0.07625099, w: 0.042992108} + outSlope: {x: 0.015051361, y: -0.19219536, z: 0.07625099, w: 0.042992108} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.966667 + value: {x: 0.051743414, y: 0.21473177, z: 0.07364255, w: 0.9725172} + inSlope: {x: 0.0013560276, y: 0.015446577, z: 0.019470882, w: -0.004956709} + outSlope: {x: 0.0013560276, y: 0.015446577, z: 0.019470882, w: -0.004956709} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.2333336 + value: {x: 0.051671565, y: 0.23875892, z: 0.06919386, w: 0.96723133} + inSlope: {x: 0.009299396, y: 0.15244417, z: -0.03961861, w: -0.03521386} + outSlope: {x: 0.009299396, y: 0.15244417, z: -0.03961861, w: -0.03521386} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.766667 + value: {x: 0.055511393, y: 0.23171474, z: 0.068662636, w: 0.9687684} + inSlope: {x: -0.014172191, y: -0.05924089, z: 0.018872153, w: 0.013657821} + outSlope: {x: -0.014172191, y: -0.05924089, z: 0.018872153, w: 0.013657821} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.8000002 + value: {x: 0.05509896, y: 0.22993527, z: 0.06928185, w: 0.96917176} + inSlope: {x: -0.012373042, y: -0.05338406, z: 0.018576328, w: 0.01210035} + outSlope: {x: -0.012373042, y: -0.05338406, z: 0.018576328, w: 0.01210035} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.1576385, y: -0.17653191, z: -0.31735268, w: 0.91829944} + inSlope: {x: -0.035338104, y: 0.020889936, z: 0.02874702, w: 0.019964574} + outSlope: {x: -0.035338104, y: 0.020889936, z: 0.02874702, w: 0.019964574} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.15561305, y: -0.17374484, z: -0.3189532, w: 0.9186219} + inSlope: {x: -0.043020844, y: 0.045102462, z: -0.0055114888, w: 0.013891161} + outSlope: {x: -0.043020844, y: 0.045102462, z: -0.0055114888, w: 0.013891161} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9666667 + value: {x: 0.14976203, y: -0.16722548, z: -0.31994188, w: 0.92045873} + inSlope: {x: 0.027918022, y: -0.031380758, z: 0.009522745, w: -0.006874508} + outSlope: {x: 0.027918022, y: -0.031380758, z: 0.009522745, w: -0.006874508} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.15340488, y: -0.1629473, z: -0.3369037, w: 0.9145551} + inSlope: {x: 0.08377829, y: -0.07717439, z: -0.0049162246, w: -0.02965364} + outSlope: {x: 0.08377829, y: -0.07717439, z: -0.0049162246, w: -0.02965364} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2333333 + value: {x: 0.15389875, y: -0.17029959, z: -0.32236543, w: 0.9183647} + inSlope: {x: 0.0315778, y: -0.030125849, z: -0.005253072, w: -0.012775328} + outSlope: {x: 0.0315778, y: -0.030125849, z: -0.005253072, w: -0.012775328} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6333334 + value: {x: 0.14720497, y: -0.16215798, z: -0.3256444, w: 0.91977787} + inSlope: {x: -0.015351861, y: 0.017636882, z: -0.0031390819, w: 0.00443906} + outSlope: {x: -0.015351861, y: 0.017636882, z: -0.0031390819, w: 0.00443906} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.14711997, y: -0.16448225, z: -0.320624, w: 0.92114145} + inSlope: {x: 0.14083552, y: -0.1611168, z: 0.04075343, w: -0.03714499} + outSlope: {x: 0.14083552, y: -0.1611168, z: 0.04075343, w: -0.03714499} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.2 + value: {x: 0.15631542, y: -0.17520115, z: -0.31724402, w: 0.9188179} + inSlope: {x: -0.002369287, y: 0.004275892, z: -0.002063068, w: 0.0005024676} + outSlope: {x: -0.002369287, y: 0.004275892, z: -0.002063068, w: 0.0005024676} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.6000001 + value: {x: 0.14486286, y: -0.16257557, z: -0.31996098, w: 0.92206776} + inSlope: {x: 0.072464414, y: -0.06654544, z: -0.011615317, w: -0.02719852} + outSlope: {x: 0.072464414, y: -0.06654544, z: -0.011615317, w: -0.02719852} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.0333335 + value: {x: 0.16106954, y: -0.18049052, z: -0.31620976, w: 0.9173283} + inSlope: {x: -0.01829246, y: 0.01932377, z: -0.002131464, w: 0.006267434} + outSlope: {x: -0.01829246, y: 0.01932377, z: -0.002131464, w: 0.006267434} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.4 + value: {x: 0.15053932, y: -0.16948768, z: -0.31723875, w: 0.9208536} + inSlope: {x: 0.001869725, y: -0.0016064213, z: 0.000020563602, w: -0.0005945569} + outSlope: {x: 0.001869725, y: -0.0016064213, z: 0.000020563602, w: -0.0005945569} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.8000002 + value: {x: 0.15766919, y: -0.17652164, z: -0.31735536, w: 0.9182952} + inSlope: {x: -0.0016133502, y: 0.012547386, z: -0.022022745, w: -0.0049102353} + outSlope: {x: -0.0016133502, y: 0.012547386, z: -0.022022745, w: -0.0049102353} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.03730179, y: -0.2448097, z: 0.2878655, w: 0.92510015} + inSlope: {x: 0.006089061, y: 0.0031560657, z: -0.0031659005, w: 0.0015735625} + outSlope: {x: 0.006089061, y: 0.0031560657, z: -0.0031659005, w: 0.0015735625} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000001 + value: {x: 0.042844556, y: -0.24194898, z: 0.28626522, w: 0.92610866} + inSlope: {x: 0.016065482, y: 0.008258969, z: -0.0044828653, w: 0.0028011203} + outSlope: {x: 0.016065482, y: 0.008258969, z: -0.0044828653, w: 0.0028011203} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3000001 + value: {x: 0.038964324, y: -0.24393468, z: 0.2873375, w: 0.92542684} + inSlope: {x: -0.0011017187, y: -0.0005534296, z: 0.0003236537, w: -0.00019937765} + outSlope: {x: -0.0011017187, y: -0.0005534296, z: 0.0003236537, w: -0.00019937765} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7666668 + value: {x: 0.047620233, y: -0.23948589, z: 0.2849215, w: 0.92692965} + inSlope: {x: -0.02943621, y: -0.0150735825, z: 0.0084444955, w: -0.0050175237} + outSlope: {x: -0.02943621, y: -0.0150735825, z: 0.0084444955, w: -0.0050175237} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.0333335 + value: {x: 0.0366954, y: -0.2450905, z: 0.2879463, w: 0.92502487} + inSlope: {x: 0.017031975, y: 0.00877795, z: -0.004503415, w: 0.0030532386} + outSlope: {x: 0.017031975, y: 0.00877795, z: -0.004503415, w: 0.0030532386} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.4666667 + value: {x: 0.045774102, y: -0.24042188, z: 0.28545722, w: 0.9266155} + inSlope: {x: 0.014500679, y: 0.0074504996, z: -0.004141327, w: 0.0024980283} + outSlope: {x: 0.014500679, y: 0.0074504996, z: -0.004141327, w: 0.0024980283} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.1000001 + value: {x: 0.03613005, y: -0.24537261, z: 0.28809273, w: 0.92492676} + inSlope: {x: 0.027543519, y: 0.014174147, z: -0.007244654, w: 0.004934375} + outSlope: {x: 0.027543519, y: 0.014174147, z: -0.007244654, w: 0.004934375} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.8000002 + value: {x: 0.037216615, y: -0.24481389, z: 0.28782272, w: 0.92511576} + inSlope: {x: 0.000008158394, y: 0.000004023317, z: -0.000008046634, w: 0.000003576282} + outSlope: {x: 0.000008158394, y: 0.000004023317, z: -0.000008046634, w: 0.000003576282} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.092984945, y: 0.029208053, z: 0.08175441, w: 0.99187547} + inSlope: {x: -0.0000029057262, y: 0.000001285225, z: 0.0000020116568, w: 0} + outSlope: {x: -0.0000029057262, y: 0.000001285225, z: 0.0000020116568, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.86666673 + value: {x: -0.09214348, y: 0.028097637, z: 0.07732468, w: 0.99234116} + inSlope: {x: -0.002318102, y: -0.00089135877, z: 0.0019420383, w: -0.0003424296} + outSlope: {x: -0.002318102, y: -0.00089135877, z: 0.0019420383, w: -0.0003424296} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3000001 + value: {x: -0.09258488, y: 0.028976496, z: 0.08051286, w: 0.9920212} + inSlope: {x: -0.0016150266, y: 0.00017160561, z: 0.003455806, w: -0.00043541237} + outSlope: {x: -0.0016150266, y: 0.00017160561, z: 0.003455806, w: -0.00043541237} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9000001 + value: {x: -0.09264834, y: 0.029386895, z: 0.081726566, w: 0.99190396} + inSlope: {x: 0.00024922218, y: 0.011417197, z: 0.030012272, w: -0.0027743008} + outSlope: {x: 0.00024922218, y: 0.011417197, z: 0.030012272, w: -0.0027743008} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.7333336 + value: {x: -0.092853054, y: 0.029137854, z: 0.08143941, w: 0.9919158} + inSlope: {x: -0.00004458631, y: 0.008338433, z: 0.022320263, w: -0.0020787048} + outSlope: {x: -0.00004458631, y: 0.008338433, z: 0.022320263, w: -0.0020787048} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.7333336 + value: {x: -0.092949994, y: 0.029210752, z: 0.08192029, w: 0.991865} + inSlope: {x: 0.0025666528, y: 0.0008249198, z: 0.0022467992, w: 0.00003129247} + outSlope: {x: 0.0025666528, y: 0.0008249198, z: 0.0022467992, w: 0.00003129247} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.8000002 + value: {x: -0.09278668, y: 0.029318549, z: 0.08176806, w: 0.99188966} + inSlope: {x: 0.0026126977, y: 0.0029338924, z: -0.0054379604, w: 0.0006061798} + outSlope: {x: 0.0026126977, y: 0.0029338924, z: -0.0054379604, w: 0.0006061798} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2/mixamorig:LeftHandThumb3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.062173918, y: 0.03016696, z: -0.036988508, w: 0.9969234} + inSlope: {x: -0.009663104, y: -0.0071064006, z: 0.00319574, w: 0.0009334087} + outSlope: {x: -0.009663104, y: -0.0071064006, z: 0.00319574, w: 0.0009334087} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.057047073, y: 0.03112843, z: -0.03946851, w: 0.99710524} + inSlope: {x: -0.012573927, y: 0.002805899, z: -0.007166083, w: 0.00035315793} + outSlope: {x: -0.012573927, y: 0.002805899, z: -0.007166083, w: 0.00035315793} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0333334 + value: {x: 0.05774696, y: 0.030267192, z: -0.038674105, w: 0.99712265} + inSlope: {x: -0.12063667, y: 0.027817337, z: -0.046642743, w: 0.0042995773} + outSlope: {x: -0.12063667, y: 0.027817337, z: -0.046642743, w: 0.0042995773} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3000001 + value: {x: 0.06560595, y: 0.029590692, z: -0.0370625, w: 0.99671793} + inSlope: {x: -0.0051793507, y: 0.0047619874, z: -0.004918673, w: 0.00001341106} + outSlope: {x: -0.0051793507, y: 0.0047619874, z: -0.004918673, w: 0.00001341106} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.8666668 + value: {x: 0.06524592, y: 0.0302053, z: -0.037507437, w: 0.9967065} + inSlope: {x: 0.07396295, y: -0.0239276, z: 0.03172826, w: -0.0028869477} + outSlope: {x: 0.07396295, y: -0.0239276, z: 0.03172826, w: -0.0028869477} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.2333333 + value: {x: 0.064802, y: 0.0292672, z: -0.036480058, w: 0.99680156} + inSlope: {x: -0.02264265, y: 0.003488076, z: -0.0048404606, w: 0.0011792725} + outSlope: {x: -0.02264265, y: 0.003488076, z: -0.0048404606, w: 0.0011792725} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.7333336 + value: {x: 0.06254439, y: 0.029917995, z: -0.036969814, w: 0.9969084} + inSlope: {x: 0.045371275, y: -0.009570286, z: 0.0152435005, w: -0.0019857234} + outSlope: {x: 0.045371275, y: -0.009570286, z: 0.0152435005, w: -0.0019857234} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.5666668 + value: {x: 0.06064644, y: 0.030269606, z: -0.037444334, w: 0.99699736} + inSlope: {x: 0.02078971, y: -0.003819106, z: 0.010499909, w: -0.0007492311} + outSlope: {x: 0.02078971, y: -0.003819106, z: 0.010499909, w: -0.0007492311} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.8000002 + value: {x: 0.062172618, y: 0.030176384, z: -0.036974873, w: 0.9969237} + inSlope: {x: -0.023019299, y: -0.00055672653, z: -0.0029853014, w: 0.0013500465} + outSlope: {x: -0.023019299, y: -0.00055672653, z: -0.0029853014, w: 0.0013500465} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.15033099, y: -0.005167936, z: 0.020786507, w: 0.9884037} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.8000002 + value: {x: 0.15033099, y: -0.005167936, z: 0.020786507, w: 0.9884037} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.06983134, y: -0.00000012035017, z: 0.009283831, w: 0.9975156} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.8000002 + value: {x: 0.06983134, y: -0.00000012035017, z: 0.009283831, w: 0.9975156} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2/mixamorig:LeftHandIndex3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.13203765, y: 0.03366998, z: -0.003187294, w: 0.9906676} + inSlope: {x: -0.012123584, y: 0.0071837376, z: -0.018118264, w: 0.0013035535} + outSlope: {x: -0.012123584, y: 0.0071837376, z: -0.018118264, w: 0.0013035535} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.12922391, y: 0.035175107, z: -0.007043765, w: 0.9909664} + inSlope: {x: -0.010183461, y: 0.0015846826, z: -0.005094312, w: 0.0012382874} + outSlope: {x: -0.010183461, y: 0.0015846826, z: -0.005094312, w: 0.0012382874} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0333334 + value: {x: 0.12978832, y: 0.03440196, z: -0.0051720166, w: 0.9909313} + inSlope: {x: -0.13789316, y: -0.00011041688, z: -0.01810128, w: 0.017944857} + outSlope: {x: -0.13789316, y: -0.00011041688, z: -0.01810128, w: 0.017944857} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666668 + value: {x: 0.13723662, y: 0.034078654, z: -0.0034481934, w: 0.9899459} + inSlope: {x: 0.0051400107, y: -0.006370348, z: 0.015132941, w: -0.0004380952} + outSlope: {x: 0.0051400107, y: -0.006370348, z: 0.015132941, w: -0.0004380952} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.8666668 + value: {x: 0.13722765, y: 0.03437861, z: -0.0041302834, w: 0.98993415} + inSlope: {x: 0.054543115, y: -0.024441268, z: 0.062822275, w: -0.0064194137} + outSlope: {x: 0.054543115, y: -0.024441268, z: 0.062822275, w: -0.0064194137} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.2 + value: {x: 0.13708109, y: 0.033144947, z: -0.0013501445, w: 0.99000424} + inSlope: {x: 0.006501234, y: 0.0034175843, z: -0.0069304453, w: -0.001027287} + outSlope: {x: 0.006501234, y: 0.0034175843, z: -0.0069304453, w: -0.001027287} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.7 + value: {x: 0.13334796, y: 0.03400664, z: -0.0037916398, w: 0.99047846} + inSlope: {x: 0.03873658, y: -0.011791131, z: 0.032108538, w: -0.004684018} + outSlope: {x: 0.03873658, y: -0.011791131, z: 0.032108538, w: -0.004684018} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.13098852, y: 0.03391288, z: -0.003882714, w: 0.9907961} + inSlope: {x: 0.023345646, y: -0.0044000978, z: 0.013190008, w: -0.002887835} + outSlope: {x: 0.023345646, y: -0.0044000978, z: 0.013190008, w: -0.002887835} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.8000002 + value: {x: 0.13204011, y: 0.033677872, z: -0.0032053282, w: 0.9906669} + inSlope: {x: -0.025864566, y: 0.0000735373, z: -0.003491024, w: 0.0034457478} + outSlope: {x: -0.025864566, y: 0.0000735373, z: -0.003491024, w: 0.0034457478} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.1504585, y: -0.013496641, z: 0.02151669, w: 0.98829} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.8000002 + value: {x: 0.1504585, y: -0.013496641, z: 0.02151669, w: 0.98829} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.15932482, y: 0.0029592323, z: 0.021945626, w: 0.9869779} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.8000002 + value: {x: 0.15932482, y: 0.0029592323, z: 0.021945626, w: 0.9869779} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2/mixamorig:LeftHandMiddle3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.2291177, y: 0.012714133, z: 0.021682212, w: 0.97307414} + inSlope: {x: 0.001297742, y: 0.0033520905, z: -0.00584308, w: -0.00021815299} + outSlope: {x: 0.001297742, y: 0.0033520905, z: -0.00584308, w: -0.00021815299} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.22516851, y: 0.014015465, z: 0.01967573, w: 0.9740203} + inSlope: {x: -0.015439024, y: 0.0012308266, z: -0.0035444838, w: 0.003626348} + outSlope: {x: -0.015439024, y: 0.0012308266, z: -0.0035444838, w: 0.003626348} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.22337933, y: 0.014296591, z: 0.019251231, w: 0.9744366} + inSlope: {x: -0.056465473, y: 0.004269089, z: -0.010007611, w: 0.013156248} + outSlope: {x: -0.056465473, y: 0.004269089, z: -0.010007611, w: 0.013156248} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3000001 + value: {x: 0.230847, y: 0.012952143, z: 0.021358544, w: 0.9726694} + inSlope: {x: -0.0003764038, y: 0.0027915537, z: -0.0028504087, w: 0.000113546965} + outSlope: {x: -0.0003764038, y: 0.0027915537, z: -0.0028504087, w: 0.000113546965} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.8666668 + value: {x: 0.2312215, y: 0.013136552, z: 0.021343492, w: 0.9725783} + inSlope: {x: 0.06065049, y: -0.022982985, z: 0.030148193, w: -0.014744086} + outSlope: {x: 0.06065049, y: -0.022982985, z: 0.030148193, w: -0.014744086} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.22802016, y: 0.013806346, z: 0.020218028, w: 0.97334856} + inSlope: {x: -0.031298503, y: 0.010337761, z: -0.013546845, w: 0.007464595} + outSlope: {x: -0.031298503, y: 0.010337761, z: -0.013546845, w: 0.007464595} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.2000003 + value: {x: 0.22770248, y: 0.0137082245, z: 0.020541612, w: 0.9734176} + inSlope: {x: -0.029638093, y: 0.008661695, z: -0.0120595135, w: 0.0070702815} + outSlope: {x: -0.029638093, y: 0.008661695, z: -0.0120595135, w: 0.0070702815} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.8000002 + value: {x: 0.22914438, y: 0.012609173, z: 0.021618476, w: 0.9730707} + inSlope: {x: -0.011634093, y: 0.00021348728, z: -0.0013455761, w: 0.0027698304} + outSlope: {x: -0.011634093, y: 0.00021348728, z: -0.0013455761, w: 0.0027698304} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.1507245, y: -0.0001414011, z: 0.020038985, w: 0.9883727} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.8000002 + value: {x: 0.1507245, y: -0.0001414011, z: 0.020038985, w: 0.9883727} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.14296569, y: -0.000000047065758, z: 0.018986594, w: 0.9895455} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.8000002 + value: {x: 0.14296569, y: -0.000000047065758, z: 0.018986594, w: 0.9895455} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2/mixamorig:LeftHandPinky3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.57109386, y: 0.4106245, z: -0.4644053, w: 0.5381143} + inSlope: {x: 0.00086367124, y: -0.0023674963, z: 0.0042521954, w: 0.004559755} + outSlope: {x: 0.00086367124, y: -0.0023674963, z: 0.0042521954, w: 0.004559755} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: 0.5722606, y: 0.40894347, z: -0.45601144, w: 0.5452858} + inSlope: {x: -0.0022003064, y: 0.000020115753, z: 0.06406952, w: 0.055764057} + outSlope: {x: -0.0022003064, y: 0.000020115753, z: 0.06406952, w: 0.055764057} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.90000004 + value: {x: 0.5539245, y: 0.4275443, z: -0.42361027, w: 0.5752633} + inSlope: {x: -0.01270655, y: 0.022658888, z: -0.09000552, w: -0.07117775} + outSlope: {x: -0.01270655, y: 0.022658888, z: -0.09000552, w: -0.07117775} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.57413113, y: 0.40692794, z: -0.4632648, w: 0.5386732} + inSlope: {x: -0.021157186, y: 0.021552805, z: 0.09777975, w: 0.08964998} + outSlope: {x: -0.021157186, y: 0.021552805, z: 0.09777975, w: 0.08964998} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666668 + value: {x: 0.5627125, y: 0.41948402, z: -0.4485808, w: 0.55332005} + inSlope: {x: -0.01988406, y: 0.023031628, z: -0.011743622, w: -0.006724321} + outSlope: {x: -0.01988406, y: 0.023031628, z: -0.011743622, w: -0.006724321} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5000001 + value: {x: 0.5661772, y: 0.41613594, z: -0.46647835, w: 0.5372823} + inSlope: {x: -0.015705198, y: 0.01910355, z: -0.07650946, w: -0.06445697} + outSlope: {x: -0.015705198, y: 0.01910355, z: -0.07650946, w: -0.06445697} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6333334 + value: {x: 0.57889766, y: 0.40137136, z: -0.4623801, w: 0.53850085} + inSlope: {x: 0.1603426, y: -0.18854964, z: 0.055604927, w: 0.01660289} + outSlope: {x: 0.1603426, y: -0.18854964, z: 0.055604927, w: 0.01660289} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7666668 + value: {x: 0.5732318, y: 0.40791303, z: -0.48589146, w: 0.5185766} + inSlope: {x: -0.22672734, y: 0.25574932, z: -0.33053428, w: -0.26028627} + outSlope: {x: -0.22672734, y: 0.25574932, z: -0.33053428, w: -0.26028627} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9333334 + value: {x: 0.5494301, y: 0.43412018, z: -0.50512964, w: 0.50449014} + inSlope: {x: 0.031787686, y: -0.033205673, z: 0.031367514, w: 0.02525924} + outSlope: {x: 0.031787686, y: -0.033205673, z: 0.031367514, w: 0.02525924} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.3000002 + value: {x: 0.5692193, y: 0.41268632, z: -0.47715577, w: 0.52725875} + inSlope: {x: 0.07270492, y: -0.08242838, z: 0.16676204, w: 0.13706191} + outSlope: {x: 0.07270492, y: -0.08242838, z: 0.16676204, w: 0.13706191} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.6333334 + value: {x: 0.574408, y: 0.40644446, z: -0.45664635, w: 0.5443643} + inSlope: {x: -0.007906266, y: 0.010247389, z: -0.03437209, w: -0.028135505} + outSlope: {x: -0.007906266, y: 0.010247389, z: -0.03437209, w: -0.028135505} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.266667 + value: {x: 0.5696106, y: 0.41222394, z: -0.4687135, w: 0.5347177} + inSlope: {x: 0.0038588084, y: -0.004685377, z: 0.02981904, w: 0.025633898} + outSlope: {x: 0.0038588084, y: -0.004685377, z: 0.02981904, w: 0.025633898} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.8000002 + value: {x: 0.5709602, y: 0.41057327, z: -0.46450606, w: 0.5382083} + inSlope: {x: -0.009101638, y: 0.011527251, z: 0.018203275, w: 0.016599312} + outSlope: {x: -0.009101638, y: 0.011527251, z: 0.018203275, w: 0.016599312} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.4674927, y: 0.18209015, z: 0.17450248, w: 0.84725595} + inSlope: {x: -0.004273653, y: -0.008947401, z: 0.003543645, w: 0.0035494564} + outSlope: {x: -0.004273653, y: -0.008947401, z: 0.003543645, w: 0.0035494564} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.45638523, y: 0.19084993, z: 0.18877907, w: 0.8483227} + inSlope: {x: -0.072274365, y: -0.04625872, z: 0.046003688, w: 0.038979653} + outSlope: {x: -0.072274365, y: -0.04625872, z: 0.046003688, w: 0.038979653} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: 0.44037297, y: 0.122756936, z: 0.18546532, w: 0.8698304} + inSlope: {x: -0.1423829, y: -0.4931988, z: 0.059704207, w: 0.12850648} + outSlope: {x: -0.1423829, y: -0.4931988, z: 0.059704207, w: 0.12850648} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.70000005 + value: {x: 0.45522213, y: -0.059084512, z: 0.123150066, w: 0.8798386} + inSlope: {x: 0.19341993, y: -0.88780093, z: -0.37514073, w: -0.107150696} + outSlope: {x: 0.19341993, y: -0.88780093, z: -0.37514073, w: -0.107150696} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.86666673 + value: {x: 0.4931146, y: -0.16609423, z: 0.066587515, w: 0.85136175} + inSlope: {x: 0.24747983, y: -0.20517951, z: -0.28925174, w: -0.15987486} + outSlope: {x: 0.24747983, y: -0.20517951, z: -0.28925174, w: -0.15987486} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9666667 + value: {x: 0.5087402, y: -0.14496352, z: 0.014500177, w: 0.8485038} + inSlope: {x: 0.021948537, y: 0.61272466, z: -0.7571492, w: 0.101303555} + outSlope: {x: 0.021948537, y: 0.61272466, z: -0.7571492, w: 0.101303555} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.5031976, y: -0.08861724, z: -0.033682667, w: 0.85895556} + inSlope: {x: -0.08165009, y: 0.10405114, z: 0.015897632, w: 0.06003058} + outSlope: {x: -0.08165009, y: 0.10405114, z: 0.015897632, w: 0.06003058} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.4976642, y: -0.12529951, z: -0.018405482, w: 0.85807437} + inSlope: {x: 0.0041958736, y: -0.4870076, z: 0.07528247, w: -0.07086939} + outSlope: {x: 0.0041958736, y: -0.4870076, z: 0.07528247, w: -0.07086939} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3666668 + value: {x: 0.49222317, y: -0.12038317, z: 0.0004333538, w: 0.8621044} + inSlope: {x: -0.20404807, y: 0.49536943, z: 0.14470541, w: 0.18308124} + outSlope: {x: -0.20404807, y: 0.49536943, z: 0.14470541, w: 0.18308124} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333334 + value: {x: 0.43835062, y: 0.02134806, z: 0.09085254, w: 0.89394563} + inSlope: {x: -0.29631376, y: 1.0457783, z: 0.9469689, w: 0.024164043} + outSlope: {x: -0.29631376, y: 1.0457783, z: 0.9469689, w: 0.024164043} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6333334 + value: {x: 0.43679705, y: 0.0981567, z: 0.13127454, w: 0.8845002} + inSlope: {x: 0.36856538, y: 0.18450353, z: -0.65390587, w: -0.11524479} + outSlope: {x: 0.36856538, y: 0.18450353, z: -0.65390587, w: -0.11524479} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7333335 + value: {x: 0.4740199, y: 0.11730203, z: 0.014918767, w: 0.87253815} + inSlope: {x: 0.00070066005, y: 0.7930008, z: -0.84119666, w: -0.09191114} + outSlope: {x: 0.00070066005, y: 0.7930008, z: -0.84119666, w: -0.09191114} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.8666668 + value: {x: 0.44239798, y: 0.2565941, z: -0.0077100135, w: 0.85929275} + inSlope: {x: -0.12240197, y: 0.46969348, z: -0.11339519, w: -0.073593415} + outSlope: {x: -0.12240197, y: 0.46969348, z: -0.11339519, w: -0.073593415} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.4338683, y: 0.22214192, z: -0.047242608, w: 0.87188274} + inSlope: {x: -0.06383568, y: -0.4302804, z: 0.0038967133, w: 0.14271674} + outSlope: {x: -0.06383568, y: -0.4302804, z: 0.0038967133, w: 0.14271674} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.44305366, y: 0.18027727, z: 0.037447114, w: 0.8773832} + inSlope: {x: 0.15710697, y: -0.19911867, z: 0.76621974, w: -0.071877904} + outSlope: {x: 0.15710697, y: -0.19911867, z: 0.76621974, w: -0.071877904} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.3666668 + value: {x: 0.44260383, y: 0.17354207, z: 0.20404948, w: 0.8557738} + inSlope: {x: -0.14824763, y: 0.07133319, z: 0.6728178, w: -0.096511334} + outSlope: {x: -0.14824763, y: 0.07133319, z: 0.6728178, w: -0.096511334} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.5666668 + value: {x: 0.43713892, y: 0.18072078, z: 0.25217158, w: 0.8441914} + inSlope: {x: 0.10340328, y: 0.00900709, z: -0.16459593, w: -0.006562478} + outSlope: {x: 0.10340328, y: 0.00900709, z: -0.16459593, w: -0.006562478} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.766667 + value: {x: 0.44939283, y: 0.1841077, z: 0.18885536, w: 0.8535128} + inSlope: {x: 0.030674666, y: -0.048921973, z: -0.5108804, w: 0.1071472} + outSlope: {x: 0.030674666, y: -0.048921973, z: -0.5108804, w: 0.1071472} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.1000001 + value: {x: 0.45745626, y: 0.18219148, z: 0.10019183, w: 0.86458176} + inSlope: {x: 0.03359336, y: 0.04232038, z: 0.16760021, w: -0.04640226} + outSlope: {x: 0.03359336, y: 0.04232038, z: 0.16760021, w: -0.04640226} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.4 + value: {x: 0.45252487, y: 0.19997093, z: 0.19322293, w: 0.8472885} + inSlope: {x: 0.012718154, y: -0.08159354, z: 0.09379269, w: -0.008828946} + outSlope: {x: 0.012718154, y: -0.08159354, z: 0.09379269, w: -0.008828946} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.8000002 + value: {x: 0.46745378, y: 0.18210196, z: 0.1744968, w: 0.84727603} + inSlope: {x: 0.039629675, y: -0.04014153, z: -0.028299566, w: -0.00732959} + outSlope: {x: 0.039629675, y: -0.04014153, z: -0.028299566, w: -0.00732959} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.0045341025, y: -0.027395125, z: 0.055878833, w: 0.99805135} + inSlope: {x: -0.0014470516, y: 0.005216058, z: -0.017926766, w: 0.0011479853} + outSlope: {x: -0.0014470516, y: 0.005216058, z: -0.017926766, w: 0.0011479853} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: 0.008362127, y: -0.04110033, z: 0.10305776, w: 0.9937907} + inSlope: {x: 0.04662791, y: -0.16676125, z: 0.57467556, w: -0.06799397} + outSlope: {x: 0.04662791, y: -0.16676125, z: 0.57467556, w: -0.06799397} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: 0.020392932, y: -0.08398855, z: 0.25132337, w: 0.96403664} + inSlope: {x: 0.117929846, y: -0.41895032, z: 1.4534539, w: -0.42473638} + outSlope: {x: 0.117929846, y: -0.41895032, z: 1.4534539, w: -0.42473638} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.70000005 + value: {x: 0.04094859, y: -0.15654388, z: 0.5046547, w: 0.84802175} + inSlope: {x: 0.11877403, y: -0.41607702, z: 1.4637835, w: -0.95377576} + outSlope: {x: 0.11877403, y: -0.41607702, z: 1.4637835, w: -0.95377576} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.053826593, y: -0.20136905, z: 0.6633685, w: 0.71867615} + inSlope: {x: 0.06719605, y: -0.23217696, z: 0.828151, w: -0.8294097} + outSlope: {x: 0.06719605, y: -0.23217696, z: 0.828151, w: -0.8294097} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9333334 + value: {x: 0.06007199, y: -0.22283357, z: 0.740335, w: 0.63137996} + inSlope: {x: 0.07161717, y: -0.24462017, z: 0.8825828, w: -1.1372283} + outSlope: {x: 0.07161717, y: -0.24462017, z: 0.8825828, w: -1.1372283} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0333334 + value: {x: 0.06594002, y: -0.24273764, z: 0.81265116, w: 0.5256695} + inSlope: {x: 0.020309754, y: -0.068406016, z: 0.25029245, w: -0.40962696} + outSlope: {x: 0.020309754, y: -0.068406016, z: 0.25029245, w: -0.40962696} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1333334 + value: {x: 0.065362036, y: -0.24079242, z: 0.8055287, w: 0.5374666} + inSlope: {x: -0.0019067, y: 0.00641557, z: -0.023485236, w: 0.038815726} + outSlope: {x: -0.0019067, y: 0.00641557, z: -0.023485236, w: 0.038815726} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.0669465, y: -0.24611479, z: 0.82505614, w: 0.5042103} + inSlope: {x: -0.026146911, y: 0.08768439, z: -0.32219356, w: 0.56037915} + outSlope: {x: -0.026146911, y: 0.08768439, z: -0.32219356, w: 0.56037915} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4333334 + value: {x: 0.05916383, y: -0.21972734, z: 0.7291434, w: 0.6454219} + inSlope: {x: -0.14740066, y: 0.505269, z: -1.8166316, w: 2.181845} + outSlope: {x: -0.14740066, y: 0.505269, z: -1.8166316, w: 2.181845} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5000001 + value: {x: 0.045361172, y: -0.17197095, z: 0.5590364, w: 0.80984366} + inSlope: {x: -0.27345982, y: 0.9547105, z: -3.3701458, w: 2.4882572} + outSlope: {x: -0.27345982, y: 0.9547105, z: -3.3701458, w: 2.4882572} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333334 + value: {x: 0.035114266, y: -0.13605635, z: 0.4327508, w: 0.8904956} + inSlope: {x: -0.32501578, y: 1.1439843, z: -4.005491, w: 2.122172} + outSlope: {x: -0.32501578, y: 1.1439843, z: -4.005491, w: 2.122172} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.023693476, y: -0.095705405, z: 0.2920039, w: 0.95132166} + inSlope: {x: -0.3260214, y: 1.1555378, z: -4.0179124, w: 1.40937} + outSlope: {x: -0.3260214, y: 1.1555378, z: -4.0179124, w: 1.40937} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6333334 + value: {x: 0.005864052, y: -0.03215914, z: 0.07226789, w: 0.9968494} + inSlope: {x: -0.1801891, y: 0.6447799, z: -2.220684, w: 0.22912525} + outSlope: {x: -0.1801891, y: 0.6447799, z: -2.220684, w: 0.22912525} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7 + value: {x: 0.000000051929778, y: -0.0111273555, z: 0.00000008200601, w: 0.99993813} + inSlope: {x: -0.02050361, y: 0.073615976, z: -0.25266483, w: 0.003142658} + outSlope: {x: -0.02050361, y: 0.073615976, z: -0.25266483, w: 0.003142658} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.8666668 + value: {x: 0.0028368302, y: -0.021310758, z: 0.03496339, w: 0.99915737} + inSlope: {x: -0.00037950044, y: 0.0013554152, z: -0.0046642646, w: 0.00017256383} + outSlope: {x: -0.00037950044, y: 0.0013554152, z: -0.0046642646, w: 0.00017256383} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.0333335 + value: {x: 0.0002516491, y: -0.012030475, z: 0.0030985796, w: 0.9999228} + inSlope: {x: 0.0037822225, y: -0.01358458, z: 0.0466179, w: -0.0004380953} + outSlope: {x: 0.0037822225, y: -0.01358458, z: 0.0466179, w: -0.0004380953} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.266667 + value: {x: 0.004969264, y: -0.028954893, z: 0.061243996, w: 0.9976904} + inSlope: {x: 0.026364107, y: -0.09448282, z: 0.3250022, w: -0.02298827} + outSlope: {x: 0.026364107, y: -0.09448282, z: 0.3250022, w: -0.02298827} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.5333335 + value: {x: 0.010101751, y: -0.04731936, z: 0.12449741, w: 0.9910395} + inSlope: {x: -0.009292103, y: 0.033200692, z: -0.11448752, w: 0.015837565} + outSlope: {x: -0.009292103, y: 0.033200692, z: -0.11448752, w: 0.015837565} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.8000002 + value: {x: 0.0035703396, y: -0.02394127, z: 0.044004496, w: 0.99873805} + inSlope: {x: -0.014459048, y: 0.05183935, z: -0.17819156, w: 0.009329626} + outSlope: {x: -0.014459048, y: 0.05183935, z: -0.17819156, w: 0.009329626} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.266667 + value: {x: 0.0049061547, y: -0.02872909, z: 0.060467236, w: 0.9977446} + inSlope: {x: 0.012052441, y: -0.04316452, z: 0.14847405, w: -0.010215649} + outSlope: {x: 0.012052441, y: -0.04316452, z: 0.14847405, w: -0.010215649} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.8000002 + value: {x: 0.0045340788, y: -0.027395155, z: 0.055878796, w: 0.99805135} + inSlope: {x: -0.0023898366, y: 0.008537368, z: -0.029363623, w: 0.0019043703} + outSlope: {x: -0.0023898366, y: 0.008537368, z: -0.029363623, w: 0.0019043703} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.06467866, y: -0.11690582, z: -0.06300925, w: 0.9890296} + inSlope: {x: 0.00094212586, y: -0.00042334196, z: -0.0025930253, w: -0.0002771616} + outSlope: {x: 0.00094212586, y: -0.00042334196, z: -0.0025930253, w: -0.0002771616} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: 0.064732075, y: -0.123921886, z: -0.06221441, w: 0.9882219} + inSlope: {x: -0.07087099, y: -0.2748857, z: 0.07130344, w: -0.026261508} + outSlope: {x: -0.07087099, y: -0.2748857, z: 0.07130344, w: -0.026261508} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: 0.061508447, y: -0.29977536, z: -0.00551883, w: 0.95200896} + inSlope: {x: -0.2173529, y: -0.7360915, z: 0.25479767, w: -0.21552813} + outSlope: {x: -0.2173529, y: -0.7360915, z: 0.25479767, w: -0.21552813} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5666667 + value: {x: 0.041167863, y: -0.37208033, z: 0.0047033033, w: 0.92727524} + inSlope: {x: -0.0038237143, y: -0.8570097, z: -0.033680543, w: -0.34643775} + outSlope: {x: -0.0038237143, y: -0.8570097, z: -0.033680543, w: -0.34643775} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.038846236, y: -0.46022242, z: 0.003209371, w: 0.8869476} + inSlope: {x: -0.06045447, y: -0.5662932, z: 0.07577499, w: -0.28659323} + outSlope: {x: -0.06045447, y: -0.5662932, z: 0.07577499, w: -0.28659323} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000001 + value: {x: 0.06605091, y: -0.48048472, z: 0.001277538, w: 0.87451136} + inSlope: {x: 0.16402867, y: -0.12677017, z: -0.2870891, w: -0.08182974} + outSlope: {x: 0.16402867, y: -0.12677017, z: -0.2870891, w: -0.08182974} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.04008801, y: -0.51209414, z: -0.067630425, w: 0.85532373} + inSlope: {x: -0.032897417, y: -0.18289968, z: -0.18989183, w: -0.12255719} + outSlope: {x: -0.032897417, y: -0.18289968, z: -0.18989183, w: -0.12255719} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.026933957, y: -0.51682955, z: -0.06743412, w: 0.8530032} + inSlope: {x: 0.20642966, y: 0.2377128, z: 0.09813608, w: 0.14419301} + outSlope: {x: 0.20642966, y: 0.2377128, z: 0.09813608, w: 0.14419301} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.054329596, y: -0.42256778, z: -0.03804079, w: 0.90390134} + inSlope: {x: 0.27939108, y: 0.9011432, z: 0.37003303, w: 0.41776356} + outSlope: {x: 0.27939108, y: 0.9011432, z: 0.37003303, w: 0.41776356} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4666667 + value: {x: 0.0828733, y: -0.32483545, z: 0.026853975, w: 0.94174993} + inSlope: {x: -0.13432187, y: 0.29305014, z: 0.5098983, w: 0.100105405} + outSlope: {x: -0.13432187, y: 0.29305014, z: 0.5098983, w: 0.100105405} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333334 + value: {x: 0.05941976, y: -0.32725832, z: 0.049996503, w: 0.94173867} + inSlope: {x: -0.35959628, y: -0.21805486, z: 0.0072378367, w: -0.052510552} + outSlope: {x: -0.35959628, y: -0.21805486, z: 0.0072378367, w: -0.052510552} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6000001 + value: {x: 0.052247945, y: -0.31074616, z: 0.021144375, w: 0.9488203} + inSlope: {x: 0.19188115, y: 1.6324023, z: -0.72850525, w: 0.4815638} + outSlope: {x: 0.19188115, y: 1.6324023, z: -0.72850525, w: 0.4815638} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6333334 + value: {x: 0.06267349, y: -0.22583736, z: -0.005436145, w: 0.97213167} + inSlope: {x: 0.2567361, y: 3.2279077, z: -0.66833824, w: 0.6586269} + outSlope: {x: 0.2567361, y: 3.2279077, z: -0.66833824, w: 0.6586269} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.06936367, y: -0.09555252, z: -0.023411464, w: 0.9927287} + inSlope: {x: -0.014483944, y: 3.5042095, z: -0.4501268, w: 0.37954187} + outSlope: {x: -0.014483944, y: 3.5042095, z: -0.4501268, w: 0.37954187} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7 + value: {x: 0.06170789, y: 0.0077763847, z: -0.03544457, w: 0.99743444} + inSlope: {x: -0.3541729, y: 1.7614915, z: -0.3505867, w: 0.07332182} + outSlope: {x: -0.3541729, y: 1.7614915, z: -0.3505867, w: 0.07332182} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7333335 + value: {x: 0.045752108, y: 0.021880185, z: -0.046783928, w: 0.9976168} + inSlope: {x: -0.29716995, y: -0.7356526, z: -0.27111393, w: -0.009010453} + outSlope: {x: -0.29716995, y: -0.7356526, z: -0.27111393, w: -0.009010453} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7666668 + value: {x: 0.041896522, y: -0.041267026, z: -0.053518854, w: 0.99683374} + inSlope: {x: 0.17095578, y: -2.0528378, z: -0.14508691, w: -0.112530395} + outSlope: {x: 0.17095578, y: -2.0528378, z: -0.14508691, w: -0.112530395} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.8000001 + value: {x: 0.05714915, y: -0.11497555, z: -0.05645638, w: 0.9901148} + inSlope: {x: 0.5092962, y: -1.5755303, z: -0.068291284, w: -0.18325406} + outSlope: {x: 0.5092962, y: -1.5755303, z: -0.068291284, w: -0.18325406} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.8666668 + value: {x: 0.08627117, y: -0.13225597, z: -0.060552426, w: 0.9855958} + inSlope: {x: 0.23697473, y: 0.7221809, z: -0.1526058, w: 0.059584383} + outSlope: {x: 0.23697473, y: 0.7221809, z: -0.1526058, w: 0.059584383} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9666668 + value: {x: 0.09619152, y: -0.03487731, z: -0.096474744, w: 0.99006236} + inSlope: {x: -0.103980124, y: 0.7483248, z: -0.3812273, w: 0.0027313852} + outSlope: {x: -0.103980124, y: 0.7483248, z: -0.3812273, w: 0.0027313852} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.0666668 + value: {x: 0.06790833, y: -0.015630448, z: -0.10865682, w: 0.99163395} + inSlope: {x: -0.22689587, y: -0.4880116, z: 0.13465329, w: 0.019361991} + outSlope: {x: -0.22689587, y: -0.4880116, z: 0.13465329, w: 0.019361991} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.2 + value: {x: 0.046029024, y: -0.1172747, z: -0.071879186, w: 0.98942477} + inSlope: {x: -0.16490896, y: -0.52544343, z: 0.25658315, w: -0.033507973} + outSlope: {x: -0.16490896, y: -0.52544343, z: 0.25658315, w: -0.033507973} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.033617042, y: -0.14571656, z: -0.04260162, w: 0.9878369} + inSlope: {x: -0.007150328, y: 0.016242132, z: 0.25977212, w: 0.013983263} + outSlope: {x: -0.007150328, y: 0.016242132, z: 0.25977212, w: 0.013983263} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.5000002 + value: {x: 0.06471704, y: -0.14545813, z: -0.025400016, w: 0.9869187} + inSlope: {x: 0.07609904, y: 0.0030994155, z: 0.051836826, w: -0.0030684099} + outSlope: {x: 0.07609904, y: 0.0030994155, z: 0.051836826, w: -0.0030684099} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.6333334 + value: {x: 0.06834678, y: -0.14060654, z: -0.03547092, w: 0.98706657} + inSlope: {x: 0.07697847, y: 0.065740556, z: -0.20852667, w: -0.0036647953} + outSlope: {x: 0.07697847, y: 0.065740556, z: -0.20852667, w: -0.0036647953} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.766667 + value: {x: 0.07333144, y: -0.09147093, z: -0.05572909, w: 0.9915391} + inSlope: {x: -0.05312109, y: 0.48693362, z: -0.08276075, w: 0.045141622} + outSlope: {x: -0.05312109, y: 0.48693362, z: -0.08276075, w: 0.045141622} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.0333335 + value: {x: 0.05821673, y: -0.08214767, z: -0.07213217, w: 0.9923001} + inSlope: {x: 0.010471744, y: -0.03275472, z: 0.0077894777, w: -0.0027617838} + outSlope: {x: 0.010471744, y: -0.03275472, z: 0.0077894777, w: -0.0027617838} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.2000003 + value: {x: 0.06057039, y: -0.100818455, z: -0.06264392, w: 0.99108154} + inSlope: {x: -0.02548429, y: -0.0012753718, z: 0.111744806, w: 0.008434676} + outSlope: {x: -0.02548429, y: -0.0012753718, z: 0.111744806, w: 0.008434676} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.3666668 + value: {x: 0.04616113, y: -0.071646005, z: -0.0482022, w: 0.99519473} + inSlope: {x: 0.054234598, y: -0.092194095, z: -0.010097353, w: -0.009946534} + outSlope: {x: 0.054234598, y: -0.092194095, z: -0.010097353, w: -0.009946534} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.5000002 + value: {x: 0.05218926, y: -0.09363063, z: -0.051794697, w: 0.99288815} + inSlope: {x: -0.0042012935, y: -0.08524951, z: 0.006825446, w: -0.007414527} + outSlope: {x: -0.0042012935, y: -0.08524951, z: 0.006825446, w: -0.007414527} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.7333336 + value: {x: 0.06043238, y: -0.108335204, z: -0.05703132, w: 0.9906356} + inSlope: {x: 0.029598039, y: -0.08433309, z: -0.060859326, w: -0.014662757} + outSlope: {x: 0.029598039, y: -0.08433309, z: -0.060859326, w: -0.014662757} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.8000002 + value: {x: 0.06466572, y: -0.11694373, z: -0.06307285, w: 0.9890219} + inSlope: {x: 0.08104224, y: -0.1455701, z: -0.105015956, w: -0.028542308} + outSlope: {x: 0.08104224, y: -0.1455701, z: -0.105015956, w: -0.028542308} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.15746598, y: 0.16986516, z: 0.335353, w: 0.9131751} + inSlope: {x: 0.26500046, y: -0.057312097, z: 0.26706308, w: -0.1360935} + outSlope: {x: 0.26500046, y: -0.057312097, z: 0.26706308, w: -0.1360935} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.20627481, y: 0.16953216, z: 0.3975711, w: 0.8778649} + inSlope: {x: 0.46600813, y: 0.014810266, z: 0.6402831, w: -0.40267918} + outSlope: {x: 0.46600813, y: 0.014810266, z: 0.6402831, w: -0.40267918} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: 0.27242482, y: 0.14096428, z: 0.5082046, w: 0.804762} + inSlope: {x: 0.5126529, y: -0.2457934, z: 0.6347712, w: -0.53100413} + outSlope: {x: 0.5126529, y: -0.2457934, z: 0.6347712, w: -0.53100413} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.32547885, y: 0.12037864, z: 0.53527486, w: 0.77009964} + inSlope: {x: 0.53645325, y: -0.0789606, z: -0.32867163, w: 0.010751244} + outSlope: {x: 0.53645325, y: -0.0789606, z: -0.32867163, w: 0.010751244} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: 0.3916622, y: 0.12285541, z: 0.45368195, w: 0.79099935} + inSlope: {x: 0.43074185, y: 0.12821184, z: -0.21396768, w: -0.10967544} + outSlope: {x: 0.43074185, y: 0.12821184, z: -0.21396768, w: -0.10967544} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.4237783, y: 0.19843413, z: 0.48874092, w: 0.7363207} + inSlope: {x: -0.048931036, y: 1.0157733, z: 0.47461915, w: -0.5645577} + outSlope: {x: -0.048931036, y: 1.0157733, z: 0.47461915, w: -0.5645577} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7666667 + value: {x: 0.4172964, y: 0.29395917, z: 0.52385247, w: 0.6819313} + inSlope: {x: 0.14666307, y: 0.5403945, z: 0.13169904, w: -0.41768754} + outSlope: {x: 0.14666307, y: 0.5403945, z: 0.13169904, w: -0.41768754} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.86666673 + value: {x: 0.4475143, y: 0.32126504, z: 0.5222793, w: 0.6509564} + inSlope: {x: -0.065489985, y: 0.73461986, z: 0.057925954, w: -0.3812895} + outSlope: {x: -0.065489985, y: 0.73461986, z: 0.057925954, w: -0.3812895} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.90000004 + value: {x: 0.43531716, y: 0.35870725, z: 0.52684164, w: 0.63581926} + inSlope: {x: -0.6304351, y: 1.4721463, z: 0.13909847, w: -0.552704} + outSlope: {x: -0.6304351, y: 1.4721463, z: 0.13909847, w: -0.552704} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9333334 + value: {x: 0.40548527, y: 0.41940814, z: 0.53155255, w: 0.61410946} + inSlope: {x: -0.8248253, y: 1.6142628, z: 0.1284197, w: -0.64752734} + outSlope: {x: -0.8248253, y: 1.6142628, z: 0.1284197, w: -0.64752734} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9666667 + value: {x: 0.3803288, y: 0.46632478, z: 0.53540295, w: 0.5926508} + inSlope: {x: -0.46498418, y: 0.6942212, z: 0.2706593, w: -0.45445603} + outSlope: {x: -0.46498418, y: 0.6942212, z: 0.2706593, w: -0.45445603} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.37448636, y: 0.4656895, z: 0.5495965, w: 0.5838124} + inSlope: {x: 0.06768506, y: -0.55488324, z: 0.48141488, w: -0.0726488} + outSlope: {x: 0.06768506, y: -0.55488324, z: 0.48141488, w: -0.0726488} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.39697832, y: 0.40084803, z: 0.5743978, w: 0.5931243} + inSlope: {x: 0.20671493, y: -0.42299506, z: 0.09267399, w: 0.07080413} + outSlope: {x: 0.20671493, y: -0.42299506, z: 0.09267399, w: 0.07080413} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.3894144, y: 0.4069052, z: 0.58312637, w: 0.585447} + inSlope: {x: -0.05831888, y: -0.43148336, z: 0.3391308, w: -0.00799299} + outSlope: {x: -0.05831888, y: -0.43148336, z: 0.3391308, w: -0.00799299} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666668 + value: {x: 0.40272093, y: 0.30241004, z: 0.60427564, w: 0.6174261} + inSlope: {x: 0.26205027, y: -1.1136158, z: -0.41928938, w: 0.7780405} + outSlope: {x: 0.26205027, y: -1.1136158, z: -0.41928938, w: 0.7780405} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3666668 + value: {x: 0.4100535, y: 0.19388005, z: 0.5013048, w: 0.7368583} + inSlope: {x: -0.141545, y: -1.709486, z: -1.1591773, w: 1.2985706} + outSlope: {x: -0.141545, y: -1.709486, z: -1.1591773, w: 1.2985706} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4333334 + value: {x: 0.40343568, y: 0.044692963, z: 0.43941498, w: 0.8013468} + inSlope: {x: 0.009506652, y: -2.3964248, z: -0.48733413, w: 0.4093046} + outSlope: {x: 0.009506652, y: -2.3964248, z: -0.48733413, w: 0.4093046} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333334 + value: {x: 0.3927369, y: -0.1447622, z: 0.45057166, w: 0.7885346} + inSlope: {x: -0.40189722, y: -0.7948265, z: 0.18619198, w: -0.03592644} + outSlope: {x: -0.40189722, y: -0.7948265, z: 0.18619198, w: -0.03592644} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6000001 + value: {x: 0.35503337, y: -0.1403777, z: 0.43473405, w: 0.81562966} + inSlope: {x: -0.7585037, y: 0.5455228, z: -0.82026756, w: 0.8399128} + outSlope: {x: -0.7585037, y: 0.5455228, z: -0.82026756, w: 0.8399128} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.29466915, y: -0.10398014, z: 0.3693586, w: 0.87517565} + inSlope: {x: -0.80008185, y: 0.33144814, z: -0.34894902, w: 0.47378138} + outSlope: {x: -0.80008185, y: 0.33144814, z: -0.34894902, w: 0.47378138} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7666668 + value: {x: 0.25772727, y: -0.08153574, z: 0.4333261, w: 0.85974246} + inSlope: {x: -0.25292227, y: 0.3542009, z: 0.49001545, w: -0.13222855} + outSlope: {x: -0.25292227, y: 0.3542009, z: 0.49001545, w: -0.13222855} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.8666668 + value: {x: 0.19125547, y: -0.036806334, z: 0.4008698, w: 0.89519274} + inSlope: {x: -0.95450485, y: 0.38228938, z: -0.64638007, w: 0.51114714} + outSlope: {x: -0.95450485, y: 0.38228938, z: -0.64638007, w: 0.51114714} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9666668 + value: {x: 0.13035078, y: 0.0045660245, z: 0.36246562, w: 0.9228253} + inSlope: {x: -0.037346937, y: 0.5154485, z: -0.006746657, w: 0.005210355} + outSlope: {x: -0.037346937, y: 0.5154485, z: -0.006746657, w: 0.005210355} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.1000001 + value: {x: 0.16036013, y: 0.07305467, z: 0.39580745, w: 0.90126806} + inSlope: {x: 0.2421382, y: 0.50675935, z: 0.26860827, w: -0.20212342} + outSlope: {x: 0.2421382, y: 0.50675935, z: 0.26860827, w: -0.20212342} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.2333333 + value: {x: 0.18023066, y: 0.13502395, z: 0.41126856, w: 0.8832574} + inSlope: {x: 0.003984653, y: 0.35388738, z: 0.0038256464, w: -0.05637718} + outSlope: {x: 0.003984653, y: 0.35388738, z: 0.0038256464, w: -0.05637718} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.4 + value: {x: 0.17054728, y: 0.17216827, z: 0.41301408, w: 0.8778901} + inSlope: {x: -0.18027166, y: 0.09368585, z: -0.11870754, w: 0.07257349} + outSlope: {x: -0.18027166, y: 0.09368585, z: -0.11870754, w: 0.07257349} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.6333334 + value: {x: 0.15903912, y: 0.20050465, z: 0.37964332, w: 0.8890306} + inSlope: {x: -0.09756835, y: 0.067173526, z: -0.2623735, w: 0.11447768} + outSlope: {x: -0.09756835, y: 0.067173526, z: -0.2623735, w: 0.11447768} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.15210642, y: 0.21015723, z: 0.3505089, w: 0.8999117} + inSlope: {x: -0.040683337, y: -0.0014302894, z: -0.07700764, w: 0.037285425} + outSlope: {x: -0.040683337, y: -0.0014302894, z: -0.07700764, w: 0.037285425} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.1000001 + value: {x: 0.15263613, y: 0.20699638, z: 0.3460844, w: 0.902264} + inSlope: {x: 0.038128756, y: -0.028407749, z: 0.04971658, w: -0.019059796} + outSlope: {x: 0.038128756, y: -0.028407749, z: 0.04971658, w: -0.019059796} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.3000002 + value: {x: 0.17707106, y: 0.21211287, z: 0.36113968, w: 0.89063585} + inSlope: {x: -0.0274122, y: -0.070787586, z: -0.06438738, w: 0.048213646} + outSlope: {x: -0.0274122, y: -0.070787586, z: -0.06438738, w: 0.048213646} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.466667 + value: {x: 0.17146893, y: 0.1980855, z: 0.35194176, w: 0.8986087} + inSlope: {x: -0.02246196, y: -0.077163875, z: -0.05150415, w: 0.04135424} + outSlope: {x: -0.02246196, y: -0.077163875, z: -0.05150415, w: 0.04135424} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.6333334 + value: {x: 0.16591361, y: 0.18505593, z: 0.34041107, w: 0.90683365} + inSlope: {x: -0.017581226, y: -0.052017692, z: -0.08721971, w: 0.046451434} + outSlope: {x: -0.017581226, y: -0.052017692, z: -0.08721971, w: 0.046451434} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.8000002 + value: {x: 0.15746567, y: 0.16986543, z: 0.335353, w: 0.9131751} + inSlope: {x: 0.062374383, y: -0.07025517, z: 0.21235159, w: -0.07458337} + outSlope: {x: 0.062374383, y: -0.07025517, z: 0.21235159, w: -0.07458337} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.059807558, y: 0.23709212, z: -0.31794736, w: 0.9160349} + inSlope: {x: -0.34928373, y: 0.07688149, z: 0.03863543, w: 0.013956427} + outSlope: {x: -0.34928373, y: 0.07688149, z: 0.03863543, w: 0.013956427} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: -0.007953213, y: 0.25336355, z: -0.31045428, w: 0.91616696} + inSlope: {x: -0.66450834, y: 0.16912514, z: 0.07177637, w: -0.027767124} + outSlope: {x: -0.66450834, y: 0.16912514, z: 0.07177637, w: -0.027767124} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.06984133, y: 0.2590342, z: -0.3018518, w: 0.9148273} + inSlope: {x: -0.0117383525, y: 0.010957272, z: -0.11992158, w: -0.04371733} + outSlope: {x: -0.0117383525, y: 0.010957272, z: -0.11992158, w: -0.04371733} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: -0.040434923, y: 0.27115408, z: -0.34759036, w: 0.8966724} + inSlope: {x: 0.45068952, y: 0.15599823, z: -0.5274527, w: -0.23325217} + outSlope: {x: 0.45068952, y: 0.15599823, z: -0.5274527, w: -0.23325217} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5666667 + value: {x: 0.020312753, y: 0.26236996, z: -0.39961743, w: 0.87809753} + inSlope: {x: 0.5895474, y: -0.32856077, z: -0.4796782, w: -0.13332458} + outSlope: {x: 0.5895474, y: -0.32856077, z: -0.4796782, w: -0.13332458} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000001 + value: {x: 0.1660173, y: 0.20146702, z: -0.46354443, w: 0.8467443} + inSlope: {x: 0.42513436, y: -0.14000416, z: -0.23297311, w: -0.17707318} + outSlope: {x: 0.42513436, y: -0.14000416, z: -0.23297311, w: -0.17707318} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.90000004 + value: {x: 0.21413158, y: 0.1875952, z: -0.47951913, w: 0.83007056} + inSlope: {x: 0.6157755, y: -0.15470737, z: -0.04196498, w: -0.1487285} + outSlope: {x: 0.6157755, y: -0.15470737, z: -0.04196498, w: -0.1487285} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.25468352, y: 0.17818713, z: -0.4860147, w: 0.8168081} + inSlope: {x: 0.00482817, y: -0.002397039, z: -0.1779009, w: -0.106971785} + outSlope: {x: 0.00482817, y: -0.002397039, z: -0.1779009, w: -0.106971785} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.25077793, y: 0.17879255, z: -0.50085294, w: 0.80888194} + inSlope: {x: 0.049653687, y: -0.011622451, z: -0.07239993, w: -0.057603084} + outSlope: {x: 0.049653687, y: -0.011622451, z: -0.07239993, w: -0.057603084} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.19690822, y: 0.19067839, z: -0.50401086, w: 0.8190494} + inSlope: {x: -0.3474899, y: 0.09400954, z: 0.1284397, w: 0.14016944} + outSlope: {x: -0.3474899, y: 0.09400954, z: 0.1284397, w: 0.14016944} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4666667 + value: {x: 0.114523776, y: 0.21528079, z: -0.4892276, w: 0.8373738} + inSlope: {x: -1.0183091, y: 0.34974808, z: 0.18286738, w: 0.15153483} + outSlope: {x: -1.0183091, y: 0.34974808, z: 0.18286738, w: 0.15153483} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333334 + value: {x: 0.049126185, y: 0.24150111, z: -0.46531025, w: 0.8501472} + inSlope: {x: -0.6453486, y: 0.32832283, z: 0.5721363, w: 0.2606877} + outSlope: {x: -0.6453486, y: 0.32832283, z: 0.5721363, w: 0.2606877} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6000001 + value: {x: 0.022577107, y: 0.25883213, z: -0.42039448, w: 0.86934733} + inSlope: {x: -0.5039264, y: 0.29140484, z: 0.59319985, w: 0.21242352} + outSlope: {x: -0.5039264, y: 0.29140484, z: 0.59319985, w: 0.21242352} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7 + value: {x: -0.03729498, y: 0.27707383, z: -0.37909126, w: 0.8821162} + inSlope: {x: -0.19237384, y: -0.015383681, z: 0.3518188, w: 0.1490797} + outSlope: {x: -0.19237384, y: -0.015383681, z: 0.3518188, w: 0.1490797} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.8666668 + value: {x: 0.0014327511, y: 0.25083217, z: -0.3295621, w: 0.9102033} + inSlope: {x: 0.51242703, y: -0.26475412, z: 0.27208346, w: 0.1714055} + outSlope: {x: 0.51242703, y: -0.26475412, z: 0.27208346, w: 0.1714055} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9666668 + value: {x: 0.022486035, y: 0.23964757, z: -0.3121082, w: 0.91904944} + inSlope: {x: -0.14606729, y: 0.07223075, z: 0.062532105, w: 0.0055977167} + outSlope: {x: -0.14606729, y: 0.07223075, z: 0.062532105, w: 0.0055977167} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.266667 + value: {x: 0.016570792, y: 0.24999994, z: -0.30674228, w: 0.9182236} + inSlope: {x: 0.17825729, y: -0.07078464, z: 0.029503327, w: 0.025990535} + outSlope: {x: 0.17825729, y: -0.07078464, z: 0.029503327, w: 0.025990535} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.4333334 + value: {x: 0.058710497, y: 0.2295157, z: -0.29634893, w: 0.9252313} + inSlope: {x: 0.22693527, y: -0.113807134, z: 0.06016782, w: 0.033823583} + outSlope: {x: 0.22693527, y: -0.113807134, z: 0.06016782, w: 0.033823583} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.6000001 + value: {x: 0.062496856, y: 0.22892478, z: -0.2963831, w: 0.92511874} + inSlope: {x: 0.06504375, y: -0.028304039, z: 0.0081749335, w: 0.0051534222} + outSlope: {x: 0.06504375, y: -0.028304039, z: 0.0081749335, w: 0.0051534222} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.8666668 + value: {x: 0.066585936, y: 0.22847258, z: -0.29855677, w: 0.9242459} + inSlope: {x: -0.0016912464, y: 0.0069753146, z: -0.014424039, w: -0.006266541} + outSlope: {x: -0.0016912464, y: 0.0069753146, z: -0.014424039, w: -0.006266541} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.2333336 + value: {x: 0.051561277, y: 0.23860903, z: -0.3088085, w: 0.919263} + inSlope: {x: -0.16966781, y: 0.09667517, z: -0.06298548, w: -0.036442317} + outSlope: {x: -0.16966781, y: 0.09667517, z: -0.06298548, w: -0.036442317} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.4333334 + value: {x: 0.049078662, y: 0.24085458, z: -0.31351507, w: 0.9172179} + inSlope: {x: -0.023839029, y: 0.016890723, z: -0.026835881, w: -0.012328296} + outSlope: {x: -0.023839029, y: 0.016890723, z: -0.026835881, w: -0.012328296} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.049884435, y: 0.24152789, z: -0.31809476, w: 0.9154188} + inSlope: {x: 0.016174935, y: -0.003088512, z: -0.015601497, w: -0.005497635} + outSlope: {x: 0.016174935, y: -0.003088512, z: -0.015601497, w: -0.005497635} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.8000002 + value: {x: 0.0598099, y: 0.23709774, z: -0.31794477, w: 0.91603416} + inSlope: {x: 0.06934221, y: -0.030064462, z: 0.00081718044, w: 0.0036424433} + outSlope: {x: 0.06934221, y: -0.030064462, z: 0.00081718044, w: 0.0036424433} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.11977852, y: -0.04120477, z: -0.1115476, w: 0.9856533} + inSlope: {x: 0.843525, y: 0.22430587, z: -1.3268192, w: -0.08103489} + outSlope: {x: 0.843525, y: 0.22430587, z: -1.3268192, w: -0.08103489} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: -0.009008941, y: -0.025843438, z: -0.23625892, w: 0.97130466} + inSlope: {x: 1.4831266, y: 0.01722352, z: -1.018194, w: -0.23488104} + outSlope: {x: 1.4831266, y: 0.01722352, z: -1.018194, w: -0.23488104} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: 0.196018, y: -0.020715969, z: -0.29315555, w: 0.9355253} + inSlope: {x: 1.2420788, y: 0.06342187, z: 0.09322331, w: -0.2250454} + outSlope: {x: 1.2420788, y: 0.06342187, z: 0.09322331, w: -0.2250454} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.30123907, y: -0.015159099, z: -0.2660281, w: 0.9155623} + inSlope: {x: -0.19900249, y: 0.026274223, z: -0.1976971, w: 0.0061637294} + outSlope: {x: -0.19900249, y: 0.026274223, z: -0.1976971, w: 0.0061637294} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.22470473, y: -0.01573613, z: -0.3026774, w: 0.9260921} + inSlope: {x: -1.3500476, y: -0.018368315, z: -0.47613186, w: 0.15914622} + outSlope: {x: -1.3500476, y: -0.018368315, z: -0.47613186, w: 0.15914622} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5666667 + value: {x: 0.10209933, y: -0.012298891, z: -0.3495106, w: 0.9312716} + inSlope: {x: -2.151628, y: 0.12652865, z: -0.86733705, w: -0.09311655} + outSlope: {x: -2.151628, y: 0.12652865, z: -0.86733705, w: -0.09311655} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6333334 + value: {x: -0.029466981, y: -0.0017684832, z: -0.40374693, w: 0.9143943} + inSlope: {x: -1.331278, y: 0.18812647, z: -0.6522493, w: -0.30860692} + outSlope: {x: -1.331278, y: 0.18812647, z: -0.6522493, w: -0.30860692} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.04834762, y: 0.036963336, z: -0.46265194, w: 0.8844487} + inSlope: {x: 0.6763066, y: 0.37848616, z: -0.71413994, w: -0.35871327} + outSlope: {x: 0.6763066, y: 0.37848616, z: -0.71413994, w: -0.35871327} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.86666673 + value: {x: 0.14146635, y: 0.050462198, z: -0.53769857, w: 0.8296512} + inSlope: {x: 1.9047811, y: 0.03197823, z: -0.059613734, w: -0.36777824} + outSlope: {x: 1.9047811, y: 0.03197823, z: -0.059613734, w: -0.36777824} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9666667 + value: {x: 0.3207629, y: 0.056892008, z: -0.5055716, w: 0.79891914} + inSlope: {x: 1.3800774, y: -0.12123887, z: 0.4491162, w: -0.24943674} + outSlope: {x: 1.3800774, y: -0.12123887, z: 0.4491162, w: -0.24943674} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.39905182, y: 0.052012824, z: -0.48116055, w: 0.7788047} + inSlope: {x: 0.42400402, y: 0.15303726, z: -0.044427708, w: -0.25529468} + outSlope: {x: 0.42400402, y: 0.15303726, z: -0.044427708, w: -0.25529468} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2 + value: {x: 0.40324655, y: 0.05827509, z: -0.49899223, w: 0.76485485} + inSlope: {x: -0.8392148, y: -0.08705352, z: 0.38445076, w: 0.6769142} + outSlope: {x: -0.8392148, y: -0.08705352, z: 0.38445076, w: 0.6769142} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3000001 + value: {x: 0.25442716, y: 0.060578115, z: -0.39806843, w: 0.879283} + inSlope: {x: -1.7677724, y: 0.25772074, z: 1.3528531, w: 1.1099528} + outSlope: {x: -1.7677724, y: 0.25772074, z: 1.3528531, w: 1.1099528} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4000001 + value: {x: 0.122063436, y: 0.108507566, z: -0.2869731, w: 0.9439137} + inSlope: {x: -0.45376524, y: 0.5872511, z: 0.622004, w: 0.19021887} + outSlope: {x: -0.45376524, y: 0.5872511, z: 0.622004, w: 0.19021887} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5000001 + value: {x: 0.13475096, y: 0.13963869, z: -0.25666055, w: 0.94682026} + inSlope: {x: 0.11643909, y: -0.13362616, z: 0.14678237, w: 0.04298598} + outSlope: {x: 0.11643909, y: -0.13362616, z: 0.14678237, w: 0.04298598} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6000001 + value: {x: 0.13518716, y: 0.111814775, z: -0.2446917, w: 0.9535973} + inSlope: {x: 0.115524516, y: -0.31657976, z: 0.12594861, w: 0.05281264} + outSlope: {x: 0.115524516, y: -0.31657976, z: 0.12594861, w: 0.05281264} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7 + value: {x: 0.14004748, y: 0.09140234, z: -0.211813, w: 0.9628954} + inSlope: {x: -0.10547347, y: -0.1570763, z: 0.6122856, w: 0.16393021} + outSlope: {x: -0.10547347, y: -0.1570763, z: 0.6122856, w: 0.16393021} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.8000001 + value: {x: 0.12343314, y: 0.07481496, z: -0.17179844, w: 0.974501} + inSlope: {x: -0.2477713, y: -0.14600953, z: 0.032784, w: 0.048281595} + outSlope: {x: -0.2477713, y: -0.14600953, z: 0.032784, w: 0.048281595} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9666668 + value: {x: 0.07633974, y: 0.050485108, z: -0.19273457, w: 0.97697335} + inSlope: {x: -0.15430638, y: -0.31909364, z: -0.16225116, w: -0.0033375695} + outSlope: {x: -0.15430638, y: -0.31909364, z: -0.16225116, w: -0.0033375695} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.048834912, y: -0.0024764845, z: -0.2350379, w: 0.97075546} + inSlope: {x: -0.20504004, y: -0.22939187, z: -0.31813934, w: -0.067160785} + outSlope: {x: -0.20504004, y: -0.22939187, z: -0.31813934, w: -0.067160785} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.4333334 + value: {x: -0.016207553, y: -0.019624885, z: -0.27118745, w: 0.96219} + inSlope: {x: -0.21385911, y: 0.021997768, z: 0.025968278, w: 0.0043165726} + outSlope: {x: -0.21385911, y: 0.021997768, z: 0.025968278, w: 0.0043165726} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.06952365, y: -0.015897227, z: -0.2492895, w: 0.9657994} + inSlope: {x: -0.09847528, y: -0.0064226114, z: 0.11510778, w: 0.022547565} + outSlope: {x: -0.09847528, y: -0.0064226114, z: 0.11510778, w: 0.022547565} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.266667 + value: {x: -0.094897985, y: -0.02375709, z: -0.19484307, w: 0.97594374} + inSlope: {x: -0.030394599, y: -0.03014219, z: 0.13814329, w: 0.023810886} + outSlope: {x: -0.030394599, y: -0.03014219, z: 0.13814329, w: 0.023810886} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.766667 + value: {x: -0.11884756, y: -0.04163659, z: -0.11744559, w: 0.98506254} + inSlope: {x: -0.04047502, y: -0.014916673, z: 0.1709854, w: 0.014868393} + outSlope: {x: -0.04047502, y: -0.014916673, z: 0.1709854, w: 0.014868393} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.8000002 + value: {x: -0.119778536, y: -0.041204646, z: -0.11154754, w: 0.98565334} + inSlope: {x: -0.027929422, y: 0.012958323, z: 0.1769417, w: 0.017724054} + outSlope: {x: -0.027929422, y: 0.012958323, z: 0.1769417, w: 0.017724054} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2/mixamorig:RightHandThumb3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.055552773, y: -0.03014639, z: 0.03980987, w: 0.9972062} + inSlope: {x: -0.10359763, y: 0.013152099, z: 0.014890618, w: 0.0053894515} + outSlope: {x: -0.10359763, y: 0.013152099, z: 0.014890618, w: 0.0053894515} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.06513488, y: -0.029950947, z: 0.04066104, w: 0.99659777} + inSlope: {x: 0.2795117, y: -0.02686853, z: 0.008329936, w: -0.019496085} + outSlope: {x: 0.2795117, y: -0.02686853, z: 0.008329936, w: -0.019496085} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: 0.12446729, y: -0.037461784, z: 0.041981984, w: 0.9906271} + inSlope: {x: 0.76405364, y: -0.06877391, z: -0.038053732, w: -0.09831906} + outSlope: {x: 0.76405364, y: -0.06877391, z: -0.038053732, w: -0.09831906} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: 0.23977163, y: -0.04021803, z: 0.026805507, w: 0.9696255} + inSlope: {x: 1.3177063, y: 0.0063044773, z: -0.21125588, w: -0.33090058} + outSlope: {x: 1.3177063, y: 0.0063044773, z: -0.21125588, w: -0.33090058} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: 0.40109164, y: -0.038758986, z: 0.0015304029, w: 0.9152163} + inSlope: {x: 1.3361511, y: 0.009552847, z: -0.19862406, w: -0.5729712} + outSlope: {x: 1.3361511, y: 0.009552847, z: -0.19862406, w: -0.5729712} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.49792466, y: -0.04009235, z: -0.010699571, w: 0.866227} + inSlope: {x: 0.46482685, y: -0.029572073, z: -0.020512044, w: -0.2686599} + outSlope: {x: 0.46482685, y: -0.029572073, z: -0.020512044, w: -0.2686599} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000001 + value: {x: 0.5779474, y: -0.04972233, z: -0.009237224, w: 0.8145055} + inSlope: {x: 0.7323352, y: -0.10267782, z: 0.01093534, w: -0.5256451} + outSlope: {x: 0.7323352, y: -0.10267782, z: 0.01093534, w: -0.5256451} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.90000004 + value: {x: 0.6338988, y: -0.06020579, z: -0.006111159, w: 0.7710449} + inSlope: {x: 0.2924923, y: -0.09443025, z: 0.06219954, w: -0.24571992} + outSlope: {x: 0.2924923, y: -0.09443025, z: 0.06219954, w: -0.24571992} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.6682851, y: -0.06811121, z: -0.003427777, w: 0.7407728} + inSlope: {x: 0.5317841, y: -0.060227744, z: -0.042424988, w: -0.48628944} + outSlope: {x: 0.5317841, y: -0.060227744, z: -0.042424988, w: -0.48628944} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.69488126, y: -0.06979449, z: -0.005811122, w: 0.71570593} + inSlope: {x: -0.08255375, y: 0.02641737, z: 0.02057332, w: 0.08244111} + outSlope: {x: -0.08255375, y: 0.02641737, z: 0.02057332, w: 0.08244111} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2333333 + value: {x: 0.678852, y: -0.06281928, z: -0.004861984, w: 0.73156685} + inSlope: {x: -0.2259588, y: 0.073747486, z: 0.009425513, w: 0.21454424} + outSlope: {x: -0.2259588, y: 0.073747486, z: 0.009425513, w: 0.21454424} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4000001 + value: {x: 0.5869966, y: -0.048081297, z: 0.0034701393, w: 0.8081529} + inSlope: {x: -0.39551982, y: 0.074116714, z: 0.016292594, w: 0.2952668} + outSlope: {x: -0.39551982, y: 0.074116714, z: 0.016292594, w: 0.2952668} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5000001 + value: {x: 0.59109616, y: -0.043680664, z: -0.00082224107, w: 0.80541706} + inSlope: {x: 0.16188705, y: 0.027206134, z: -0.056554332, w: -0.11612867} + outSlope: {x: 0.16188705, y: 0.027206134, z: -0.056554332, w: -0.11612867} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.5743494, y: -0.039616488, z: -0.0017271783, w: 0.81764925} + inSlope: {x: -0.831092, y: 0.13010813, z: 0.028054705, w: 0.57593566} + outSlope: {x: -0.831092, y: 0.13010813, z: 0.028054705, w: 0.57593566} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.44859344, y: -0.024020841, z: 0.00337704, w: 0.89340675} + inSlope: {x: -1.1593072, y: 0.0275096, z: 0.11018664, w: 0.58967173} + outSlope: {x: -1.1593072, y: 0.0275096, z: 0.11018664, w: 0.58967173} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.8000001 + value: {x: 0.33188435, y: -0.02890984, z: 0.019177623, w: 0.94268197} + inSlope: {x: -1.21155, y: 0.1329116, z: 0.0064192032, w: 0.41900796} + outSlope: {x: -1.21155, y: 0.1329116, z: 0.0064192032, w: 0.41900796} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.8666668 + value: {x: 0.22389291, y: -0.019061128, z: 0.021046756, w: 0.9742} + inSlope: {x: -1.7223628, y: 0.087352365, z: 0.085040554, w: 0.40033177} + outSlope: {x: -1.7223628, y: 0.087352365, z: 0.085040554, w: 0.40033177} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9333334 + value: {x: 0.13278137, y: -0.016419865, z: 0.026803127, w: 0.9906468} + inSlope: {x: -0.6982461, y: 0.035117786, z: 0.010852974, w: 0.102892235} + outSlope: {x: -0.6982461, y: 0.035117786, z: 0.010852974, w: 0.102892235} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.0333335 + value: {x: 0.13675947, y: -0.013642981, z: 0.0204813, w: 0.99029857} + inSlope: {x: 0.23388608, y: -0.022591325, z: -0.025492348, w: -0.031763516} + outSlope: {x: 0.23388608, y: -0.022591325, z: -0.025492348, w: -0.031763516} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.2333333 + value: {x: 0.15080102, y: -0.027981548, z: 0.028171865, w: 0.9877664} + inSlope: {x: -0.230797, y: -0.051196948, z: 0.052987173, w: 0.03229729} + outSlope: {x: -0.230797, y: -0.051196948, z: 0.052987173, w: 0.03229729} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.4 + value: {x: 0.10882388, y: -0.029308546, z: 0.0318731, w: 0.9931176} + inSlope: {x: -0.36828566, y: 0.023353988, z: 0.013715545, w: 0.04076872} + outSlope: {x: -0.36828566, y: 0.023353988, z: 0.013715545, w: 0.04076872} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.5333335 + value: {x: 0.0871866, y: -0.028961591, z: 0.033246275, w: 0.9952158} + inSlope: {x: -0.0062763756, y: -0.010209335, z: 0.00770035, w: -0.000007152674} + outSlope: {x: -0.0062763756, y: -0.010209335, z: 0.00770035, w: -0.000007152674} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.7333336 + value: {x: 0.060856253, y: -0.025937863, z: 0.032912873, w: 0.99726653} + inSlope: {x: 0.0025879135, y: 0.007771834, z: -0.009215416, w: 0.0003513688} + outSlope: {x: 0.0025879135, y: 0.007771834, z: -0.009215416, w: 0.0003513688} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.1000001 + value: {x: 0.05669923, y: -0.0273034, z: 0.03459109, w: 0.9974183} + inSlope: {x: 0.04244013, y: 0.0001984557, z: -0.0032758187, w: -0.002320113} + outSlope: {x: 0.04244013, y: 0.0001984557, z: -0.0032758187, w: -0.002320113} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.083463445, y: -0.027120037, z: 0.03170854, w: 0.995637} + inSlope: {x: -0.061001875, y: -0.008700061, z: 0.019016601, w: 0.004278127} + outSlope: {x: -0.061001875, y: -0.008700061, z: 0.019016601, w: 0.004278127} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.5666668 + value: {x: 0.078905344, y: -0.028527468, z: 0.034401476, w: 0.9958798} + inSlope: {x: -0.022919944, y: -0.0066904975, z: 0.013246102, w: 0.0011891137} + outSlope: {x: -0.022919944, y: -0.0066904975, z: 0.013246102, w: 0.0011891137} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.8000002 + value: {x: 0.055543326, y: -0.030115401, z: 0.03972037, w: 0.9972113} + inSlope: {x: -0.23886949, y: -0.018986985, z: 0.053439714, w: 0.011612188} + outSlope: {x: -0.23886949, y: -0.018986985, z: 0.053439714, w: 0.011612188} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.15075901, y: 0.005168071, z: -0.01765285, w: 0.98839945} + inSlope: {x: -0.14340429, y: 0.000114161514, z: 0.016789902, w: 0.021811722} + outSlope: {x: -0.14340429, y: 0.000114161514, z: 0.016789902, w: 0.021811722} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: 0.12400165, y: 0.0051876237, z: -0.014519783, w: 0.9921622} + inSlope: {x: 0.033551767, y: -0.00002085698, z: -0.0039305836, w: -0.0043550157} + outSlope: {x: 0.033551767, y: -0.00002085698, z: -0.0039305836, w: -0.0043550157} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: 0.25813526, y: 0.0050489698, z: -0.030225907, w: 0.96562266} + inSlope: {x: 1.617527, y: -0.0023387733, z: -0.1894007, w: -0.4472251} + outSlope: {x: 1.617527, y: -0.0023387733, z: -0.1894007, w: -0.4472251} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: 0.45243326, y: 0.004654707, z: -0.0529769, w: 0.89021116} + inSlope: {x: 2.0293796, y: -0.0054551624, z: -0.23762825, w: -1.0436124} + outSlope: {x: 2.0293796, y: -0.0054551624, z: -0.23762825, w: -1.0436124} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6333334 + value: {x: 0.69351226, y: 0.0037428576, z: -0.081205584, w: 0.71584386} + inSlope: {x: 0.7046243, y: -0.0035766382, z: -0.08250518, w: -0.6838461} + outSlope: {x: 0.7046243, y: -0.0035766382, z: -0.08250518, w: -0.6838461} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.86666673 + value: {x: 0.74282724, y: 0.0034705845, z: -0.08698026, w: 0.66379976} + inSlope: {x: -0.03321918, y: 0.00019666403, z: 0.003891329, w: 0.03759655} + outSlope: {x: -0.03321918, y: 0.00019666403, z: 0.003891329, w: 0.03759655} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.73463005, y: 0.0035187115, z: -0.08602052, w: 0.6729836} + inSlope: {x: -0.012978328, y: 0.0000743266, z: 0.0015201434, w: 0.014348044} + outSlope: {x: -0.012978328, y: 0.0000743266, z: 0.0015201434, w: 0.014348044} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4666667 + value: {x: 0.7009752, y: 0.0037042866, z: -0.082079425, w: 0.70843714} + inSlope: {x: -0.19175366, y: 0.0010059184, z: 0.022451412, w: 0.19238755} + outSlope: {x: -0.19175366, y: 0.0010059184, z: 0.022451412, w: 0.19238755} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.68597883, y: 0.0037810146, z: -0.08032371, w: 0.7231645} + inSlope: {x: -0.29814488, y: 0.0014774895, z: 0.034911126, w: 0.2826471} + outSlope: {x: -0.29814488, y: 0.0014774895, z: 0.034911126, w: 0.2826471} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.5912868, y: 0.0042010797, z: -0.069235906, w: 0.8034729} + inSlope: {x: -1.5049496, y: 0.0058397893, z: 0.17621739, w: 1.1171751} + outSlope: {x: -1.5049496, y: 0.0058397893, z: 0.17621739, w: 1.1171751} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.8000001 + value: {x: 0.40467796, y: 0.004774931, z: -0.047385164, w: 0.9132183} + inSlope: {x: -0.97017205, y: 0.0023034052, z: 0.113599926, w: 0.4410575} + outSlope: {x: -0.97017205, y: 0.0023034052, z: 0.113599926, w: 0.4410575} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.0333335 + value: {x: 0.26619682, y: 0.005037114, z: -0.031169973, w: 0.96340144} + inSlope: {x: -0.49979597, y: 0.00073377776, z: 0.058522772, w: 0.13987415} + outSlope: {x: -0.49979597, y: 0.00073377776, z: 0.058522772, w: 0.13987415} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.4666667 + value: {x: 0.14503616, y: 0.005172671, z: -0.016982784, w: 0.98926705} + inSlope: {x: -0.11533007, y: 0.00009387017, z: 0.013506517, w: 0.01722869} + outSlope: {x: -0.11533007, y: 0.00009387017, z: 0.013506517, w: 0.01722869} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.1000001 + value: {x: 0.12932847, y: 0.0051839696, z: -0.015143611, w: 0.9914726} + inSlope: {x: 0.0125934305, y: -0.000008682263, z: -0.0014760825, w: -0.0016674416} + outSlope: {x: 0.0125934305, y: -0.000008682263, z: -0.0014760825, w: -0.0016674416} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.8000002 + value: {x: 0.15075855, y: 0.005168, z: -0.017652836, w: 0.9883995} + inSlope: {x: 0.030694783, y: -0.000030342519, z: -0.0035949459, w: -0.004729633} + outSlope: {x: 0.030694783, y: -0.000030342519, z: -0.0035949459, w: -0.004729633} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.07001268, y: -0.0000000955234, z: -0.007827109, w: 0.9975154} + inSlope: {x: -0.05175702, y: 0.0000032170149, z: 0.0057834988, w: 0.003633499} + outSlope: {x: -0.05175702, y: 0.0000032170149, z: 0.0057834988, w: 0.003633499} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: 0.07623646, y: 0.00000008027217, z: -0.008522949, w: 0.9970533} + inSlope: {x: 0.1740349, y: 0.00000023649784, z: -0.01945578, w: -0.013848245} + outSlope: {x: 0.1740349, y: 0.00000023649784, z: -0.01945578, w: -0.013848245} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: 0.19816893, y: 0.000000015318651, z: -0.022154622, w: 0.97991747} + inSlope: {x: 1.2066514, y: -0.0000016712419, z: -0.13489693, w: -0.24871844} + outSlope: {x: 1.2066514, y: -0.0000016712419, z: -0.13489693, w: -0.24871844} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5666667 + value: {x: 0.4120708, y: 0.000000039199506, z: -0.04606799, w: 0.9099865} + inSlope: {x: 0.6400814, y: 0.0000005093311, z: -0.071559824, w: -0.29114127} + outSlope: {x: 0.6400814, y: 0.0000005093311, z: -0.071559824, w: -0.29114127} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7666667 + value: {x: 0.48912725, y: 0.000000014488153, z: -0.05468244, w: 0.87049663} + inSlope: {x: 0.34339443, y: -0.0000004735952, z: -0.038387127, w: -0.1953621} + outSlope: {x: 0.34339443, y: -0.0000004735952, z: -0.038387127, w: -0.1953621} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2 + value: {x: 0.566312, y: -0.00000015434875, z: -0.06331158, w: 0.82175565} + inSlope: {x: -0.03866408, y: 0.000000017799493, z: 0.004320596, w: 0.026933875} + outSlope: {x: -0.03866408, y: 0.000000017799493, z: 0.004320596, w: 0.026933875} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333334 + value: {x: 0.5312882, y: -0.00000012726824, z: -0.059396025, w: 0.84510654} + inSlope: {x: -0.1121978, y: 0.0000015375265, z: 0.012544759, w: 0.07133163} + outSlope: {x: -0.1121978, y: 0.0000015375265, z: 0.012544759, w: 0.07133163} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6333334 + value: {x: 0.47612426, y: -0.00000011354783, z: -0.053228945, w: 0.87776554} + inSlope: {x: -1.2814784, y: 0.00000041922158, z: 0.14326218, w: 0.69034135} + outSlope: {x: -1.2814784, y: 0.00000041922158, z: 0.14326218, w: 0.69034135} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7333335 + value: {x: 0.3184069, y: 0.000000052768332, z: -0.03559669, w: 0.94728553} + inSlope: {x: -1.4350505, y: 0.000001731214, z: 0.16043508, w: 0.49646735} + outSlope: {x: -1.4350505, y: 0.000001731214, z: 0.16043508, w: 0.49646735} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9000001 + value: {x: 0.18490854, y: 0.000000048761553, z: -0.020672046, w: 0.9825383} + inSlope: {x: -0.4124059, y: -0.0000012049136, z: 0.046107247, w: 0.07905103} + outSlope: {x: -0.4124059, y: -0.0000012049136, z: 0.046107247, w: 0.07905103} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.2 + value: {x: 0.10433332, y: -0.0000000152419, z: -0.01166413, w: 0.994474} + inSlope: {x: -0.12749848, y: -0.0000006443991, z: 0.014253886, w: 0.013501359} + outSlope: {x: -0.12749848, y: -0.0000006443991, z: 0.014253886, w: 0.013501359} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.7333336 + value: {x: 0.06759326, y: 0.000000018782886, z: -0.007556655, w: 0.99768436} + inSlope: {x: -0.014271328, y: -0.0000004877046, z: 0.0015971048, w: 0.0009781098} + outSlope: {x: -0.014271328, y: -0.0000004877046, z: 0.0015971048, w: 0.0009781098} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.8000002 + value: {x: 0.07001282, y: 0.0000000057039715, z: -0.007827168, w: 0.9975154} + inSlope: {x: 0.0120408945, y: 0.0000013436413, z: -0.0013450173, w: -0.0008547314} + outSlope: {x: 0.0120408945, y: 0.0000013436413, z: -0.0013450173, w: -0.0008547314} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2/mixamorig:RightHandIndex3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.12614393, y: -0.033717815, z: 0.0074112955, w: 0.9914111} + inSlope: {x: -0.12028723, y: -0.00040937212, z: 0.013656774, w: 0.014938115} + outSlope: {x: -0.12028723, y: -0.00040937212, z: 0.013656774, w: 0.014938115} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.13363339, y: -0.034140788, z: 0.007589355, w: 0.99041355} + inSlope: {x: 0.32835984, y: -0.008254443, z: -0.016620016, w: -0.044884983} + outSlope: {x: 0.32835984, y: -0.008254443, z: -0.016620016, w: -0.044884983} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: 0.16095397, y: -0.034390654, z: 0.0051761214, w: 0.986349} + inSlope: {x: 0.2830989, y: -0.012120568, z: -0.0058506597, w: -0.047509078} + outSlope: {x: 0.2830989, y: -0.012120568, z: -0.0058506597, w: -0.047509078} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: 0.25276312, y: -0.040333822, z: 0.005295799, w: 0.9666726} + inSlope: {x: 0.89527696, y: -0.046143144, z: -0.03993245, w: -0.23786} + outSlope: {x: 0.89527696, y: -0.046143144, z: -0.03993245, w: -0.23786} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: 0.3859221, y: -0.04665272, z: -0.0039855754, w: 0.9213424} + inSlope: {x: 1.7617035, y: -0.089699544, z: -0.14393064, w: -0.747963} + outSlope: {x: 1.7617035, y: -0.089699544, z: -0.14393064, w: -0.747963} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5666667 + value: {x: 0.5322111, y: -0.054355375, z: -0.018080577, w: 0.8446715} + inSlope: {x: 0.89536464, y: -0.051051263, z: -0.09655893, w: -0.56084806} + outSlope: {x: 0.89536464, y: -0.051051263, z: -0.09655893, w: -0.56084806} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.6057641, y: -0.06240052, z: -0.023893852, w: 0.7928336} + inSlope: {x: 0.41518718, y: -0.089346945, z: -0.0077254884, w: -0.32608956} + outSlope: {x: 0.41518718, y: -0.089346945, z: -0.0077254884, w: -0.32608956} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.90000004 + value: {x: 0.6729144, y: -0.0823254, z: -0.023636622, w: 0.7347449} + inSlope: {x: 0.1197893, y: -0.02192241, z: -0.012372596, w: -0.1119349} + outSlope: {x: 0.1197893, y: -0.02192241, z: -0.012372596, w: -0.1119349} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.6954482, y: -0.07589092, z: -0.032325637, w: 0.7138259} + inSlope: {x: 0.4532026, y: 0.08834675, z: -0.1458619, w: -0.43997216} + outSlope: {x: 0.4532026, y: 0.08834675, z: -0.1458619, w: -0.43997216} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.7191655, y: -0.06840885, z: -0.04130757, w: 0.6902282} + inSlope: {x: 0.0944809, y: 0.14748463, z: -0.09814793, w: -0.08843877} + outSlope: {x: 0.0944809, y: 0.14748463, z: -0.09814793, w: -0.08843877} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.7102566, y: -0.05667443, z: -0.045964614, w: 0.7001506} + inSlope: {x: -0.06437665, y: 0.018366277, z: 0.0014159288, w: 0.06704277} + outSlope: {x: -0.06437665, y: 0.018366277, z: 0.0014159288, w: 0.06704277} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3000001 + value: {x: 0.67976606, y: -0.063684605, z: -0.03643561, w: 0.7297499} + inSlope: {x: -0.5873891, y: -0.029614411, z: 0.1259614, w: 0.54669195} + outSlope: {x: -0.5873891, y: -0.029614411, z: 0.1259614, w: 0.54669195} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4333334 + value: {x: 0.60304314, y: -0.059317768, z: -0.0257369, w: 0.79508364} + inSlope: {x: -0.10420481, y: 0.023199901, z: 0.0009495863, w: 0.082326904} + outSlope: {x: -0.10420481, y: 0.023199901, z: 0.0009495863, w: 0.082326904} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.60860956, y: -0.058532245, z: -0.027278185, w: 0.7908377} + inSlope: {x: -0.90327895, y: 0.15292564, z: 0.0328263, w: 0.6850798} + outSlope: {x: -0.90327895, y: 0.15292564, z: 0.0328263, w: 0.6850798} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6333334 + value: {x: 0.51178175, y: -0.044272788, z: -0.024327101, w: 0.85762906} + inSlope: {x: -1.5251006, y: 0.17624918, z: 0.050439797, w: 0.9310206} + outSlope: {x: -1.5251006, y: 0.17624918, z: 0.050439797, w: 0.9310206} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7333335 + value: {x: 0.40884575, y: -0.0431266, z: -0.011517138, w: 0.9115112} + inSlope: {x: -0.59207517, y: -0.064258255, z: 0.15506774, w: 0.2661294} + outSlope: {x: -0.59207517, y: -0.064258255, z: 0.15506774, w: 0.2661294} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.8000001 + value: {x: 0.36210677, y: -0.041406423, z: -0.0074605434, w: 0.9311866} + inSlope: {x: -1.1431286, y: 0.13255519, z: -0.034160428, w: 0.43709052} + outSlope: {x: -1.1431286, y: 0.13255519, z: -0.034160428, w: 0.43709052} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.8666668 + value: {x: 0.25447738, y: -0.030882413, z: -0.010868489, w: 0.9665244} + inSlope: {x: -1.7419412, y: 0.10630956, z: -0.0067685125, w: 0.4670096} + outSlope: {x: -1.7419412, y: 0.10630956, z: -0.0067685125, w: 0.4670096} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9333334 + value: {x: 0.16415651, y: -0.02768876, z: -0.009230357, w: 0.98600245} + inSlope: {x: -0.6023732, y: 0.017972363, z: 0.009101277, w: 0.109890155} + outSlope: {x: -0.6023732, y: 0.017972363, z: 0.009101277, w: 0.109890155} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.0666668 + value: {x: 0.21039644, y: -0.03047707, z: -0.0075076893, w: 0.9771122} + inSlope: {x: 0.48549056, y: -0.062666886, z: 0.07318783, w: -0.10524283} + outSlope: {x: 0.48549056, y: -0.062666886, z: 0.07318783, w: -0.10524283} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.2333333 + value: {x: 0.24208225, y: -0.039502226, z: 0.0052633737, w: 0.969437} + inSlope: {x: -0.18470913, y: -0.018070634, z: 0.055296376, w: 0.045066353} + outSlope: {x: -0.18470913, y: -0.018070634, z: 0.055296376, w: 0.045066353} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.4 + value: {x: 0.20691739, y: -0.03747999, z: 0.0060327942, w: 0.9776216} + inSlope: {x: -0.32154286, y: 0.02682586, z: -0.01128317, w: 0.069176026} + outSlope: {x: -0.32154286, y: 0.02682586, z: -0.01128317, w: 0.069176026} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.5333335 + value: {x: 0.18532923, y: -0.03602818, z: 0.005796515, w: 0.9819987} + inSlope: {x: -0.007900007, y: -0.0031289116, z: 0.0071856584, w: 0.0013303768} + outSlope: {x: -0.007900007, y: -0.0031289116, z: 0.0071856584, w: 0.0013303768} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.7333336 + value: {x: 0.15055627, y: -0.033645064, z: 0.004682259, w: 0.9880177} + inSlope: {x: -0.03554073, y: 0.006013827, z: -0.009385685, w: 0.005670173} + outSlope: {x: -0.03554073, y: 0.006013827, z: -0.009385685, w: 0.005670173} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.0666668 + value: {x: 0.14517441, y: -0.034239672, z: 0.006562519, w: 0.9887917} + inSlope: {x: 0.021720773, y: -0.0003085661, z: -0.0016654577, w: -0.0032025606} + outSlope: {x: 0.021720773, y: -0.0003085661, z: -0.0016654577, w: -0.0032025606} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.3666668 + value: {x: 0.16393007, y: -0.034284066, z: 0.004627532, w: 0.9858652} + inSlope: {x: 0.0005042553, y: -0.007474597, z: 0.015680788, w: -0.0004202132} + outSlope: {x: 0.0005042553, y: -0.007474597, z: 0.015680788, w: -0.0004202132} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.15853105, y: -0.034018077, z: 0.004643596, w: 0.9867569} + inSlope: {x: -0.07244661, y: 0.0018959903, z: 0.00370578, w: 0.011604082} + outSlope: {x: -0.07244661, y: 0.0018959903, z: 0.00370578, w: 0.011604082} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.8000002 + value: {x: 0.12615135, y: -0.033747178, z: 0.0074790516, w: 0.99140865} + inSlope: {x: -0.34380633, y: 0.011130395, z: 0.011125436, w: 0.046069667} + outSlope: {x: -0.34380633, y: 0.011130395, z: 0.011125436, w: 0.046069667} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.15088366, y: 0.0134964455, z: -0.018377002, w: 0.9882886} + inSlope: {x: -0.1382102, y: 0.00035251488, z: 0.017244872, w: 0.021082161} + outSlope: {x: -0.1382102, y: 0.00035251488, z: 0.017244872, w: 0.021082161} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: 0.14578827, y: 0.013509249, z: -0.017741092, w: 0.9890645} + inSlope: {x: 0.43712413, y: -0.0011275477, z: -0.054559823, w: -0.06768466} + outSlope: {x: 0.43712413, y: -0.0011275477, z: -0.054559823, w: -0.06768466} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.2572908, y: 0.013138634, z: -0.031661145, w: 0.96572584} + inSlope: {x: 1.8438153, y: -0.007863232, z: -0.23024139, w: -0.51247007} + outSlope: {x: 1.8438153, y: -0.007863232, z: -0.23024139, w: -0.51247007} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: 0.46064597, y: 0.01194843, z: -0.057065245, w: 0.885667} + inSlope: {x: 1.8590034, y: -0.014203681, z: -0.23234397, w: -0.9739441} + outSlope: {x: 1.8590034, y: -0.014203681, z: -0.23234397, w: -0.9739441} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5666667 + value: {x: 0.6208547, y: 0.010426901, z: -0.077098265, w: 0.7800555} + inSlope: {x: 0.61473453, y: -0.007048901, z: -0.07690988, w: -0.49338427} + outSlope: {x: 0.61473453, y: -0.007048901, z: -0.07690988, w: -0.49338427} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.7162573, y: 0.009176093, z: -0.08903908, w: 0.6920718} + inSlope: {x: 0.22190365, y: -0.0032955972, z: -0.027784225, w: -0.23292038} + outSlope: {x: 0.22190365, y: -0.0032955972, z: -0.027784225, w: -0.23292038} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666668 + value: {x: 0.742409, y: 0.008772232, z: -0.092314385, w: 0.6634983} + inSlope: {x: -0.09065323, y: 0.0014562567, z: 0.011355012, w: 0.102951154} + outSlope: {x: -0.09065323, y: 0.0014562567, z: 0.011355012, w: 0.102951154} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.7110207, y: 0.009253441, z: -0.088383384, w: 0.697533} + inSlope: {x: -0.11550565, y: 0.0016932267, z: 0.0144594405, w: 0.119498566} + outSlope: {x: -0.11550565, y: 0.0016932267, z: 0.0144594405, w: 0.119498566} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.67022395, y: 0.0098191155, z: -0.08327627, w: 0.7374066} + inSlope: {x: -1.0927402, y: 0.013979869, z: 0.13676172, w: 0.9827257} + outSlope: {x: -1.0927402, y: 0.013979869, z: 0.13676172, w: 0.9827257} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7333335 + value: {x: 0.5608135, y: 0.011069886, z: -0.06958832, w: 0.8249383} + inSlope: {x: -1.8885677, y: 0.018811125, z: 0.23617993, w: 1.3085127} + outSlope: {x: -1.8885677, y: 0.018811125, z: 0.23617993, w: 1.3085127} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.8000001 + value: {x: 0.44884664, y: 0.012037922, z: -0.055590652, w: 0.89179677} + inSlope: {x: -1.2326903, y: 0.009400076, z: 0.15406439, w: 0.64447105} + outSlope: {x: -1.2326903, y: 0.009400076, z: 0.15406439, w: 0.64447105} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9333334 + value: {x: 0.34204316, y: 0.012728958, z: -0.04224603, w: 0.93864787} + inSlope: {x: -0.6694015, y: 0.0037128872, z: 0.08361797, w: 0.24870498} + outSlope: {x: -0.6694015, y: 0.0037128872, z: 0.08361797, w: 0.24870498} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.3666668 + value: {x: 0.17244302, y: 0.013437423, z: -0.021068297, w: 0.98470247} + inSlope: {x: -0.20962647, y: 0.0006044196, z: 0.02616774, w: 0.03733013} + outSlope: {x: -0.20962647, y: 0.0006044196, z: 0.02616774, w: 0.03733013} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.0333335 + value: {x: 0.1357248, y: 0.013533797, z: -0.016485194, w: 0.99051696} + inSlope: {x: -0.0048883306, y: 0.000012796385, z: 0.0006105384, w: 0.0006794936} + outSlope: {x: -0.0048883306, y: 0.000012796385, z: 0.0006105384, w: 0.0006794936} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.8000002 + value: {x: 0.15088335, y: 0.013496546, z: -0.018377148, w: 0.9882886} + inSlope: {x: 0.036938522, y: -0.00009264806, z: -0.004613348, w: -0.005700594} + outSlope: {x: 0.036938522, y: -0.00009264806, z: -0.004613348, w: -0.005700594} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.15973808, y: -0.0029594193, z: -0.018621298, w: 0.98697937} + inSlope: {x: -0.03207922, y: -0.0000012782401, z: 0.0036485863, w: 0.005242824} + outSlope: {x: -0.03207922, y: -0.0000012782401, z: 0.0036485863, w: 0.005242824} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: 0.19092454, y: -0.0029569378, z: -0.022167483, w: 0.98134995} + inSlope: {x: 0.52630466, y: 0.00007558382, z: -0.059843495, w: -0.1060027} + outSlope: {x: 0.52630466, y: 0.00007558382, z: -0.059843495, w: -0.1060027} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.30007774, y: -0.0029239538, z: -0.034576066, w: 0.9532835} + inSlope: {x: 1.6719352, y: 0.0008357911, z: -0.19001308, w: -0.5422256} + outSlope: {x: 1.6719352, y: 0.0008357911, z: -0.19001308, w: -0.5422256} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: 0.46671712, y: -0.0027926501, z: -0.053506967, w: 0.8827822} + inSlope: {x: 1.3157202, y: 0.0014432486, z: -0.14941001, w: -0.6952778} + outSlope: {x: 1.3157202, y: 0.0014432486, z: -0.14941001, w: -0.6952778} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5666667 + value: {x: 0.5448282, y: -0.0026916477, z: -0.062374454, w: 0.8362203} + inSlope: {x: 0.028792575, y: 0.00004266382, z: -0.0032717865, w: -0.018912226} + outSlope: {x: 0.028792575, y: 0.00004266382, z: -0.0032717865, w: -0.018912226} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7666667 + value: {x: 0.5588066, y: -0.0026703915, z: -0.06396107, w: 0.8268235} + inSlope: {x: 0.15249151, y: 0.00023822047, z: -0.01730515, w: -0.104420096} + outSlope: {x: 0.15249151, y: 0.00023822047, z: -0.01730515, w: -0.104420096} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2 + value: {x: 0.5952818, y: -0.0026100709, z: -0.06809987, w: 0.80062175} + inSlope: {x: -0.026721086, y: -0.000049254206, z: 0.003030899, w: 0.020112116} + outSlope: {x: -0.026721086, y: -0.000049254206, z: 0.003030899, w: 0.020112116} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.5821887, y: -0.0026323942, z: -0.06661436, w: 0.8103159} + inSlope: {x: -0.011832109, y: -0.000020298145, z: 0.001341774, w: 0.008611672} + outSlope: {x: -0.011832109, y: -0.000020298145, z: 0.001341774, w: 0.008611672} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.54991597, y: -0.0026838828, z: -0.0629521, w: 0.8328399} + inSlope: {x: -1.0560895, y: -0.0015397046, z: 0.11986843, w: 0.68747944} + outSlope: {x: -1.0560895, y: -0.0015397046, z: 0.11986843, w: 0.68747944} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7333335 + value: {x: 0.44221, y: -0.0028186175, z: -0.050723776, w: 0.89547163} + inSlope: {x: -1.8274388, y: -0.0018639725, z: 0.20754105, w: 0.9188863} + outSlope: {x: -1.8274388, y: -0.0018639725, z: 0.20754105, w: 0.9188863} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.8000001 + value: {x: 0.3386441, y: -0.0029026675, z: -0.03895882, w: 0.94010323} + inSlope: {x: -1.0476079, y: -0.00068052736, z: 0.119031966, w: 0.39353317} + outSlope: {x: -1.0476079, y: -0.00068052736, z: 0.119031966, w: 0.39353317} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9333334 + value: {x: 0.26244706, y: -0.00293983, z: -0.030298874, w: 0.96446615} + inSlope: {x: -0.43497398, y: -0.00015675896, z: 0.049442243, w: 0.120478496} + outSlope: {x: -0.43497398, y: -0.00015675896, z: 0.049442243, w: 0.120478496} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.4 + value: {x: 0.18278542, y: -0.0029579508, z: -0.021242077, w: 0.9829189} + inSlope: {x: -0.08632765, y: -0.000008661308, z: 0.009814631, w: 0.016273871} + outSlope: {x: -0.08632765, y: -0.000008661308, z: 0.009814631, w: 0.016273871} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.2333336 + value: {x: 0.16340612, y: -0.0029594472, z: -0.019038312, w: 0.98637074} + inSlope: {x: -0.034583095, y: -0.000004809122, z: 0.0039306413, w: 0.0058150347} + outSlope: {x: -0.034583095, y: -0.000004809122, z: 0.0039306413, w: 0.0058150347} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.8000002 + value: {x: 0.15973805, y: -0.0029594796, z: -0.018621236, w: 0.98697937} + inSlope: {x: 0.010222355, y: -0.0000015646234, z: -0.0011610065, w: -0.0016754882} + outSlope: {x: 0.010222355, y: -0.0000015646234, z: -0.0011610065, w: -0.0016754882} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2/mixamorig:RightHandMiddle3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.22380808, y: -0.012619638, z: -0.015466794, w: 0.97442883} + inSlope: {x: -0.091295235, y: 0.008646911, z: -0.010137129, w: 0.02076566} + outSlope: {x: -0.091295235, y: 0.008646911, z: -0.010137129, w: 0.02076566} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.24651767, y: -0.014164874, z: -0.015068689, w: 0.9689176} + inSlope: {x: 0.52651924, y: -0.027681, z: -0.0012370856, w: -0.1349205} + outSlope: {x: 0.52651924, y: -0.027681, z: -0.0012370856, w: -0.1349205} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: 0.2881826, y: -0.011715072, z: -0.021243207, w: 0.9572682} + inSlope: {x: 0.4063726, y: 0.055914115, z: -0.09752278, w: -0.12540133} + outSlope: {x: 0.4063726, y: 0.055914115, z: -0.09752278, w: -0.12540133} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: 0.390342, y: -0.006457347, z: -0.03413192, w: 0.9200144} + inSlope: {x: 0.8563477, y: -0.0046039885, z: -0.05537565, w: -0.36632255} + outSlope: {x: 0.8563477, y: -0.0046039885, z: -0.05537565, w: -0.36632255} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: 0.51041627, y: -0.021644395, z: -0.031675376, w: 0.85907125} + inSlope: {x: 1.6024013, y: -0.28033796, z: 0.030415863, w: -0.965274} + outSlope: {x: 1.6024013, y: -0.28033796, z: 0.030415863, w: -0.965274} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5666667 + value: {x: 0.6470382, y: -0.04405621, z: -0.036727883, w: 0.76029706} + inSlope: {x: 0.8713888, y: -0.09408761, z: -0.0936096, w: -0.7416522} + outSlope: {x: 0.8713888, y: -0.09408761, z: -0.0936096, w: -0.7416522} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.69956565, y: -0.03692987, z: -0.04760531, w: 0.71202374} + inSlope: {x: 0.124535814, y: 0.11825323, z: -0.061655432, w: -0.12102927} + outSlope: {x: 0.124535814, y: 0.11825323, z: -0.061655432, w: -0.12102927} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.90000004 + value: {x: 0.7248573, y: -0.01558152, z: -0.058421418, w: 0.68624055} + inSlope: {x: -0.1940345, y: 0.15098156, z: -0.029150646, w: 0.2039998} + outSlope: {x: -0.1940345, y: 0.15098156, z: -0.029150646, w: 0.2039998} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9666667 + value: {x: 0.7101782, y: -0.006407471, z: -0.06005911, w: 0.70142627} + inSlope: {x: 0.048784956, y: 0.08357307, z: -0.033777483, w: -0.05236481} + outSlope: {x: 0.048784956, y: 0.08357307, z: -0.033777483, w: -0.05236481} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.74016666, y: -0.0052980497, z: -0.063252546, w: 0.66942096} + inSlope: {x: 0.037289895, y: -0.0037731172, z: -0.002384374, w: -0.040769614} + outSlope: {x: 0.037289895, y: -0.0037731172, z: -0.002384374, w: -0.040769614} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.72094744, y: -0.006797133, z: -0.060958073, w: 0.69027007} + inSlope: {x: -0.13887687, y: -0.04688659, z: 0.029459177, w: 0.14771119} + outSlope: {x: -0.13887687, y: -0.04688659, z: 0.029459177, w: 0.14771119} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3000001 + value: {x: 0.6731195, y: -0.014071014, z: -0.053281724, w: 0.7374776} + inSlope: {x: -0.8761927, y: -0.03905888, z: 0.10974403, w: 0.79933393} + outSlope: {x: -0.8761927, y: -0.03905888, z: 0.10974403, w: 0.79933393} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4333334 + value: {x: 0.57977986, y: -0.019352779, z: -0.04049773, w: 0.8135359} + inSlope: {x: 0.05795902, y: -0.09649404, z: 0.047048282, w: -0.042371787} + outSlope: {x: 0.05795902, y: -0.09649404, z: 0.047048282, w: -0.042371787} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.6099302, y: -0.036420062, z: -0.03501747, w: 0.7908429} + inSlope: {x: -0.9747247, y: 0.090510346, z: 0.08294874, w: 0.7299602} + outSlope: {x: -0.9747247, y: 0.090510346, z: 0.08294874, w: 0.7299602} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6333334 + value: {x: 0.5038451, y: -0.023192156, z: -0.029882358, w: 0.8629654} + inSlope: {x: -1.5202873, y: 0.15823928, z: 0.060575932, w: 0.9140745} + outSlope: {x: -1.5202873, y: 0.15823928, z: 0.060575932, w: 0.9140745} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7333335 + value: {x: 0.42700717, y: -0.02695642, z: -0.018483844, w: 0.9036573} + inSlope: {x: -0.36213776, y: -0.12205505, z: 0.14606306, w: 0.1701011} + outSlope: {x: -0.36213776, y: -0.12205505, z: 0.14606306, w: 0.1701011} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.8000001 + value: {x: 0.38286474, y: -0.027000206, z: -0.013603427, w: 0.92330956} + inSlope: {x: -1.2838321, y: 0.16421692, z: -0.029515099, w: 0.5174594} + outSlope: {x: -1.2838321, y: 0.16421692, z: -0.029515099, w: 0.5174594} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.8666668 + value: {x: 0.2574996, y: -0.011455303, z: -0.019533832, w: 0.966013} + inSlope: {x: -2.0477154, y: 0.16297518, z: -0.0780365, w: 0.55339986} + outSlope: {x: -2.0477154, y: 0.16297518, z: -0.0780365, w: 0.55339986} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9333334 + value: {x: 0.15364322, y: -0.008005112, z: -0.020681968, w: 0.9878775} + inSlope: {x: -0.56078964, y: -0.013653333, z: 0.046755344, w: 0.099291004} + outSlope: {x: -0.56078964, y: -0.013653333, z: 0.046755344, w: 0.099291004} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.0333335 + value: {x: 0.21701404, y: -0.015249688, z: -0.011770736, w: 0.9759784} + inSlope: {x: 0.9753856, y: -0.12866533, z: 0.10423651, w: -0.21534148} + outSlope: {x: 0.9753856, y: -0.12866533, z: 0.10423651, w: -0.21534148} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.2 + value: {x: 0.32468805, y: -0.034136973, z: 0.0006913488, w: 0.9452047} + inSlope: {x: 0.14286444, y: -0.014562005, z: 0.00035804836, w: -0.048891354} + outSlope: {x: 0.14286444, y: -0.014562005, z: 0.00035804836, w: -0.048891354} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.32085413, y: -0.03205279, z: -0.0009094609, w: 0.94658566} + inSlope: {x: -0.20624599, y: 0.04269134, z: -0.021828972, w: 0.0705368} + outSlope: {x: -0.20624599, y: 0.04269134, z: -0.021828972, w: 0.0705368} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.5000002 + value: {x: 0.27048147, y: -0.023349255, z: -0.0054076584, w: 0.96242684} + inSlope: {x: 0.013932966, y: 0.0074721053, z: -0.009923034, w: -0.003824002} + outSlope: {x: 0.013932966, y: 0.0074721053, z: -0.009923034, w: -0.003824002} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.6000001 + value: {x: 0.26687533, y: -0.021690655, z: -0.0070959046, w: 0.96346086} + inSlope: {x: -0.31437173, y: 0.053420685, z: -0.03740541, w: 0.08685269} + outSlope: {x: -0.31437173, y: 0.053420685, z: -0.03740541, w: 0.08685269} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.7 + value: {x: 0.23451717, y: -0.01719896, z: -0.010001154, w: 0.9719084} + inSlope: {x: -0.09318022, y: 0.010995468, z: -0.006142291, w: 0.022901608} + outSlope: {x: -0.09318022, y: 0.010995468, z: -0.006142291, w: 0.022901608} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.0000002 + value: {x: 0.228501, y: -0.015920306, z: -0.011260865, w: 0.9733484} + inSlope: {x: -0.06331293, y: 0.0024830294, z: -0.0011591065, w: 0.0149184605} + outSlope: {x: -0.06331293, y: 0.0024830294, z: -0.0011591065, w: 0.0149184605} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.2333336 + value: {x: 0.2501687, y: -0.019242125, z: -0.008619912, w: 0.9679727} + inSlope: {x: 0.2338665, y: -0.02814682, z: 0.01702165, w: -0.060483873} + outSlope: {x: 0.2338665, y: -0.02814682, z: 0.01702165, w: -0.060483873} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.4333334 + value: {x: 0.25087744, y: -0.020113204, z: -0.0076289605, w: 0.9677798} + inSlope: {x: 0.009486506, y: -0.0038327014, z: 0.006416145, w: -0.0024872967} + outSlope: {x: 0.009486506, y: -0.0038327014, z: 0.006416145, w: -0.0024872967} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.6333334 + value: {x: 0.24076958, y: -0.019421423, z: -0.0076774675, w: 0.9703576} + inSlope: {x: -0.043697026, y: 0.00530832, z: -0.0030212947, w: 0.010871003} + outSlope: {x: -0.043697026, y: 0.00530832, z: -0.0030212947, w: 0.010871003} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.8000002 + value: {x: 0.22380346, y: -0.012654256, z: -0.015480842, w: 0.9744292} + inSlope: {x: 0.04719083, y: 0.06673624, z: -0.09599652, w: -0.011224161} + outSlope: {x: 0.04719083, y: 0.06673624, z: -0.09599652, w: -0.011224161} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.15110858, y: 0.00014143312, z: -0.016894022, w: 0.9883728} + inSlope: {x: 0.0038945673, y: 0.0000006858317, z: -0.0004373118, w: -0.0006026029} + outSlope: {x: 0.0038945673, y: 0.0000006858317, z: -0.0004373118, w: -0.0006026029} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.15786715, y: 0.00014108555, z: -0.017649688, w: 0.9873026} + inSlope: {x: 0.17413925, y: -0.0000026784985, z: -0.019467551, w: -0.028680854} + outSlope: {x: 0.17413925, y: -0.0000026784985, z: -0.019467551, w: -0.028680854} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.21784167, y: 0.00013960696, z: -0.024354884, w: 0.97568023} + inSlope: {x: 1.1157162, y: -0.000037792346, z: -0.12473742, w: -0.25839064} + outSlope: {x: 1.1157162, y: -0.000037792346, z: -0.12473742, w: -0.25839064} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.39147642, y: 0.00013162121, z: -0.04376744, w: 0.9191467} + inSlope: {x: 1.2640026, y: -0.000077097335, z: -0.14131933, w: -0.546035} + outSlope: {x: 1.2640026, y: -0.000077097335, z: -0.14131933, w: -0.546035} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: 0.5338125, y: 0.00012060898, z: -0.05968059, w: 0.84349424} + inSlope: {x: 0.59936863, y: -0.000053086434, z: -0.06700969, w: -0.37988362} + outSlope: {x: 0.59936863, y: -0.000053086434, z: -0.06700969, w: -0.37988362} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.5789505, y: 0.000116389354, z: -0.0647272, w: 0.8127895} + inSlope: {x: 0.07405045, y: -0.0000073898254, z: -0.00827797, w: -0.05331786} + outSlope: {x: 0.07405045, y: -0.0000073898254, z: -0.00827797, w: -0.05331786} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9666667 + value: {x: 0.5874923, y: 0.00011526676, z: -0.065681905, w: 0.8065598} + inSlope: {x: 0.053544987, y: -0.0000066607818, z: -0.0059854668, w: -0.039394535} + outSlope: {x: 0.053544987, y: -0.0000066607818, z: -0.0059854668, w: -0.039394535} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666668 + value: {x: 0.58285403, y: 0.00011577862, z: -0.06516353, w: 0.8099598} + inSlope: {x: -0.022777304, y: 0.0000028508375, z: 0.0025480967, w: 0.016592134} + outSlope: {x: -0.022777304, y: 0.0000028508375, z: 0.0025480967, w: 0.016592134} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4666667 + value: {x: 0.5570707, y: 0.00011833113, z: -0.062281, w: 0.82812643} + inSlope: {x: -0.29737803, y: 0.000023318364, z: 0.033245616, w: 0.20245475} + outSlope: {x: -0.29737803, y: 0.000023318364, z: 0.033245616, w: 0.20245475} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.53395456, y: 0.000120775876, z: -0.059696462, w: 0.84340316} + inSlope: {x: -0.39636812, y: 0.00003704577, z: 0.044317503, w: 0.24962382} + outSlope: {x: -0.39636812, y: 0.00003704577, z: 0.044317503, w: 0.24962382} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6333334 + value: {x: 0.47046825, y: 0.00012612503, z: -0.052598674, w: 0.88084793} + inSlope: {x: -1.5574248, y: 0.00011838423, z: 0.17411889, w: 0.82481223} + outSlope: {x: -1.5574248, y: 0.00011838423, z: 0.17411889, w: 0.82481223} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7333335 + value: {x: 0.29872367, y: 0.00013640513, z: -0.03339748, w: 0.9537551} + inSlope: {x: -1.326288, y: 0.000061951796, z: 0.14827953, w: 0.43115294} + outSlope: {x: -1.326288, y: 0.000061951796, z: 0.14827953, w: 0.43115294} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9000001 + value: {x: 0.18935956, y: 0.00014063713, z: -0.02117058, w: 0.98167956} + inSlope: {x: -0.3328665, y: 0.000012055763, z: 0.03721429, w: 0.06542182} + outSlope: {x: -0.3328665, y: 0.000012055763, z: 0.03721429, w: 0.06542182} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.2 + value: {x: 0.13524574, y: 0.00014173226, z: -0.015120561, w: 0.9906967} + inSlope: {x: 0.029198555, y: 0.0000003719473, z: -0.0032656766, w: -0.0040420927} + outSlope: {x: 0.029198555, y: 0.0000003719473, z: -0.0032656766, w: -0.0040420927} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.5666668 + value: {x: 0.1211191, y: 0.00014207882, z: -0.01354121, w: 0.9925456} + inSlope: {x: 0.021086542, y: -0.0000010204541, z: -0.0023559737, w: -0.002609792} + outSlope: {x: 0.021086542, y: -0.0000010204541, z: -0.0023559737, w: -0.002609792} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.11565237, y: 0.0001421062, z: -0.0129300095, w: 0.9932056} + inSlope: {x: -0.02251878, y: 0.000002004883, z: 0.002516648, w: 0.0026598526} + outSlope: {x: -0.02251878, y: 0.000002004883, z: 0.002516648, w: 0.0026598526} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.8000002 + value: {x: 0.15116113, y: 0.00014143599, z: -0.01689991, w: 0.9883647} + inSlope: {x: 0.61323893, y: -0.00001915092, z: -0.068556964, w: -0.08840927} + outSlope: {x: 0.61323893, y: -0.00001915092, z: -0.068556964, w: -0.08840927} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.14335826, y: -0.00000007584659, z: -0.016006755, w: 0.9895414} + inSlope: {x: 0.0038824973, y: 0.0000019572308, z: -0.00043474135, w: -0.0005704164} + outSlope: {x: 0.0038824973, y: 0.0000019572308, z: -0.00043474135, w: -0.0005704164} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.1501222, y: 0.000000055620625, z: -0.016762033, w: 0.9885254} + inSlope: {x: 0.17433013, y: -0.00000037847033, z: -0.019466098, w: -0.02729147} + outSlope: {x: 0.17433013, y: -0.00000037847033, z: -0.019466098, w: -0.02729147} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.21018553, y: -0.000000008904965, z: -0.023468478, w: 0.97737986} + inSlope: {x: 1.1177117, y: 0.000000057759962, z: -0.12479925, w: -0.24951878} + outSlope: {x: 1.1177117, y: 0.000000057759962, z: -0.12479925, w: -0.24951878} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.38426402, y: 0.00000007033463, z: -0.042905357, w: 0.9222257} + inSlope: {x: 1.2684867, y: 0.0000018711559, z: -0.1416331, w: -0.5360822} + outSlope: {x: 1.2684867, y: 0.0000018711559, z: -0.1416331, w: -0.5360822} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: 0.52722883, y: 0.00000004160134, z: -0.05886822, w: 0.8476817} + inSlope: {x: 0.60224485, y: -0.000002235185, z: -0.06724186, w: -0.37508875} + outSlope: {x: 0.60224485, y: -0.000002235185, z: -0.06724186, w: -0.37508875} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.57240796, y: 0.00000023544294, z: -0.06391281, w: 0.8174743} + inSlope: {x: 0.07213446, y: -0.0000001466949, z: -0.008054564, w: -0.051054075} + outSlope: {x: 0.07213446, y: -0.0000001466949, z: -0.008054564, w: -0.051054075} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9666667 + value: {x: 0.58038247, y: -0.000000083868535, z: -0.06480317, w: 0.8117615} + inSlope: {x: 0.052081395, y: -0.0000008390738, z: -0.0058155935, w: -0.037609972} + outSlope: {x: 0.052081395, y: -0.0000008390738, z: -0.0058155935, w: -0.037609972} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666668 + value: {x: 0.5758585, y: -0.000000117454455, z: -0.064297974, w: 0.81501704} + inSlope: {x: -0.021015093, y: 0.0000010585865, z: 0.002347155, w: 0.015030195} + outSlope: {x: -0.021015093, y: 0.0000010585865, z: 0.002347155, w: 0.015030195} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4666667 + value: {x: 0.5502751, y: 0.00000020409993, z: -0.061441433, w: 0.8327198} + inSlope: {x: -0.29770437, y: 0.000000055801138, z: 0.033241816, w: 0.19909127} + outSlope: {x: -0.29770437, y: 0.000000055801138, z: 0.033241816, w: 0.19909127} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.52719414, y: -0.00000008571465, z: -0.05886422, w: 0.8477036} + inSlope: {x: -0.39645037, y: -0.0000013951914, z: 0.04426805, w: 0.24522233} + outSlope: {x: -0.39645037, y: -0.0000013951914, z: 0.04426805, w: 0.24522233} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6333334 + value: {x: 0.46352592, y: -0.00000005599173, z: -0.051755514, w: 0.8845706} + inSlope: {x: -1.5626127, y: 0.00000010855808, z: 0.17447424, w: 0.8116882} + outSlope: {x: -1.5626127, y: 0.00000010855808, z: 0.17447424, w: 0.8116882} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7333335 + value: {x: 0.29128698, y: 0.00000009319686, z: -0.032523993, w: 0.9560827} + inSlope: {x: -1.3292584, y: 0.00000089306195, z: 0.1484229, w: 0.42055464} + outSlope: {x: -1.3292584, y: 0.00000089306195, z: 0.1484229, w: 0.42055464} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9000001 + value: {x: 0.1817307, y: -0.00000013347086, z: -0.020291261, w: 0.983139} + inSlope: {x: -0.3329789, y: -0.00000075009973, z: 0.037179366, w: 0.06272709} + outSlope: {x: -0.3329789, y: -0.00000075009973, z: 0.037179366, w: 0.06272709} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.2 + value: {x: 0.12749654, y: -0.00000003477413, z: -0.014235724, w: 0.9917368} + inSlope: {x: 0.02905841, y: -0.0000004379483, z: -0.0032430454, w: -0.0037872826} + outSlope: {x: 0.02905841, y: -0.0000004379483, z: -0.0032430454, w: -0.0037872826} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.5666668 + value: {x: 0.113325976, y: -0.0000000266145, z: -0.012653436, w: 0.9934773} + inSlope: {x: 0.02108319, y: 0.0000001224276, z: -0.0023533474, w: -0.0024390244} + outSlope: {x: 0.02108319, y: 0.0000001224276, z: -0.0023533474, w: -0.0024390244} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.10786283, y: -0.000000042862325, z: -0.012043377, w: 0.9940929} + inSlope: {x: -0.022517998, y: -0.0000037687278, z: 0.002514399, w: 0.0024774629} + outSlope: {x: -0.022517998, y: -0.0000037687278, z: 0.002514399, w: 0.0024774629} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.8000002 + value: {x: 0.14341146, y: 0.000000041866574, z: -0.016012728, w: 0.9895336} + inSlope: {x: 0.6139442, y: 0.000002463952, z: -0.06855291, w: -0.08354195} + outSlope: {x: 0.6139442, y: 0.000002463952, z: -0.06855291, w: -0.08354195} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2/mixamorig:RightHandPinky3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.1305907, y: 0.10282725, z: 0.98408717, w: 0.06280998} + inSlope: {x: -0.009866058, y: -0.021817086, z: -0.00047564504, w: 0.02236068} + outSlope: {x: -0.009866058, y: -0.021817086, z: -0.00047564504, w: 0.02236068} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.1405492, y: 0.052059665, z: 0.98650926, w: 0.06584233} + inSlope: {x: -0.0022454592, y: -0.095998734, z: 0.007795394, w: -0.045476742} + outSlope: {x: -0.0022454592, y: -0.095998734, z: 0.007795394, w: -0.045476742} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.90000004 + value: {x: -0.150882, y: 0.0663987, z: 0.9839209, w: 0.068742916} + inSlope: {x: -0.079422235, y: 0.2932269, z: -0.03963858, w: 0.107296534} + outSlope: {x: -0.079422235, y: 0.2932269, z: -0.03963858, w: 0.107296534} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.15301129, y: 0.10004288, z: 0.98067284, w: 0.06971198} + inSlope: {x: 0.02150168, y: -0.028721727, z: 0.007385902, w: -0.015577709} + outSlope: {x: 0.02150168, y: -0.028721727, z: 0.007385902, w: -0.015577709} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5000001 + value: {x: -0.1495159, y: 0.08657429, z: 0.98238283, w: 0.07123132} + inSlope: {x: -0.0004121709, y: 0.058469202, z: -0.0030228482, w: -0.030199967} + outSlope: {x: -0.0004121709, y: 0.058469202, z: -0.0030228482, w: -0.030199967} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7333335 + value: {x: -0.14572318, y: 0.11587174, z: 0.9805447, w: 0.062214904} + inSlope: {x: 0.03264043, y: 0.16207957, z: -0.011143674, w: -0.047615584} + outSlope: {x: 0.03264043, y: 0.16207957, z: -0.011143674, w: -0.047615584} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.0666668 + value: {x: -0.14886527, y: 0.11364505, z: 0.9797567, w: 0.07071562} + inSlope: {x: -0.026556354, y: -0.04676581, z: -0.0028100635, w: 0.058242552} + outSlope: {x: -0.026556354, y: -0.04676581, z: -0.0028100635, w: 0.058242552} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.3666668 + value: {x: -0.14486326, y: 0.11152782, z: 0.9806703, w: 0.069728374} + inSlope: {x: 0.05233822, y: 0.05381109, z: 0.004177097, w: -0.036007795} + outSlope: {x: 0.05233822, y: 0.05381109, z: 0.004177097, w: -0.036007795} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.9 + value: {x: -0.13521837, y: 0.10913792, z: 0.98312366, w: 0.05720819} + inSlope: {x: 0.00845433, y: -0.026966732, z: 0.005139117, w: -0.01691084} + outSlope: {x: 0.00845433, y: -0.026966732, z: 0.005139117, w: -0.01691084} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.8000002 + value: {x: -0.13059242, y: 0.10281534, z: 0.98408824, w: 0.062808745} + inSlope: {x: -0.011330109, y: 0.0126093, z: -0.0031524927, w: 0.0052633933} + outSlope: {x: -0.011330109, y: 0.0126093, z: -0.0031524927, w: 0.0052633933} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:LeftUpLeg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.22627036, y: 0.0091352025, z: -0.08809244, w: 0.9700299} + inSlope: {x: -0.03245607, y: 0.066950366, z: -0.011390223, w: -0.009334086} + outSlope: {x: -0.03245607, y: 0.066950366, z: -0.011390223, w: -0.009334086} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: -0.20547397, y: 0.049390424, z: -0.09048382, w: 0.9732182} + inSlope: {x: 0.123722374, y: -0.00053526834, z: 0.0330905, w: 0.029187774} + outSlope: {x: 0.123722374, y: -0.00053526834, z: 0.0330905, w: 0.029187774} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7666667 + value: {x: -0.18531135, y: 0.034271486, z: -0.081558354, w: 0.9786897} + inSlope: {x: -0.017971009, y: 0.077703975, z: 0.0013368565, w: -0.0060278126} + outSlope: {x: -0.017971009, y: 0.077703975, z: 0.0013368565, w: -0.0060278126} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.90000004 + value: {x: -0.21899249, y: 0.043510083, z: -0.08200232, w: 0.97130054} + inSlope: {x: -0.5186825, y: 0.049141653, z: -0.0702783, w: -0.1258403} + outSlope: {x: -0.5186825, y: 0.049141653, z: -0.0702783, w: -0.1258403} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.27522406, y: 0.043616384, z: -0.11699896, w: 0.95323694} + inSlope: {x: -0.04496683, y: -0.03438707, z: -0.13517866, w: -0.02778503} + outSlope: {x: -0.04496683, y: -0.03438707, z: -0.13517866, w: -0.02778503} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3666668 + value: {x: -0.26443893, y: 0.02848287, z: -0.11187043, w: 0.95746845} + inSlope: {x: 0.0009101499, y: -0.070772626, z: 0.016407717, w: 0.0042745387} + outSlope: {x: 0.0009101499, y: -0.070772626, z: 0.016407717, w: 0.0042745387} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7 + value: {x: -0.25656828, y: 0.001971225, z: -0.104041316, w: 0.96090806} + inSlope: {x: -0.05131242, y: -0.10140636, z: -0.0033005928, w: -0.013820524} + outSlope: {x: -0.05131242, y: -0.10140636, z: -0.0033005928, w: -0.013820524} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.0333335 + value: {x: -0.23742346, y: -0.019670444, z: -0.075626865, w: 0.9682581} + inSlope: {x: 0.035410024, y: -0.076352745, z: 0.07195757, w: 0.012738682} + outSlope: {x: 0.035410024, y: -0.076352745, z: 0.07195757, w: 0.012738682} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.266667 + value: {x: -0.21670744, y: -0.02306892, z: -0.06788683, w: 0.9736001} + inSlope: {x: 0.040323295, y: 0.16740358, z: -0.08651197, w: 0.006963879} + outSlope: {x: 0.040323295, y: 0.16740358, z: -0.08651197, w: 0.006963879} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.5666668 + value: {x: -0.20711342, y: 0.005064833, z: -0.08309582, w: 0.97476846} + inSlope: {x: 0.016673522, y: 0.03629329, z: -0.018773023, w: 0.0017648953} + outSlope: {x: 0.016673522, y: 0.03629329, z: -0.018773023, w: 0.0017648953} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.0333335 + value: {x: -0.2106433, y: 0.011944602, z: -0.08566145, w: 0.9737294} + inSlope: {x: -0.0071138954, y: 0.025752807, z: -0.016805284, w: -0.0033375653} + outSlope: {x: -0.0071138954, y: 0.025752807, z: -0.016805284, w: -0.0033375653} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.8000002 + value: {x: -0.22627053, y: 0.009135926, z: -0.08809257, w: 0.9700299} + inSlope: {x: -0.01211242, y: -0.045522522, z: 0.03294784, w: 0.0006526715} + outSlope: {x: -0.01211242, y: -0.045522522, z: 0.03294784, w: 0.0006526715} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.60308075, y: 0.055030085, z: 0.060545392, w: 0.7934732} + inSlope: {x: 0.02676308, y: 0.008699857, z: 0.019481217, w: -0.022467969} + outSlope: {x: 0.02676308, y: 0.008699857, z: 0.019481217, w: -0.022467969} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6333334 + value: {x: 0.5985585, y: 0.059207264, z: 0.06554181, w: 0.79619503} + inSlope: {x: -0.069102645, y: -0.023408536, z: -0.044577762, w: 0.057364404} + outSlope: {x: -0.069102645, y: -0.023408536, z: -0.044577762, w: 0.057364404} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7666667 + value: {x: 0.5917965, y: 0.043027516, z: 0.072110705, w: 0.80170166} + inSlope: {x: -0.04095819, y: -0.3038985, z: 0.1927921, w: 0.028979458} + outSlope: {x: -0.04095819, y: -0.3038985, z: 0.1927921, w: 0.028979458} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.60591996, y: -0.041628405, z: 0.14362161, w: 0.78134567} + inSlope: {x: 0.01650635, y: -0.33851808, z: 0.31516272, w: -0.08794066} + outSlope: {x: 0.01650635, y: -0.33851808, z: 0.31516272, w: -0.08794066} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666668 + value: {x: 0.5922711, y: -0.07005691, z: 0.16641994, w: 0.7852461} + inSlope: {x: -0.040230405, y: -0.025368176, z: -0.007232812, w: 0.029641062} + outSlope: {x: -0.040230405, y: -0.025368176, z: -0.007232812, w: 0.029641062} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6333334 + value: {x: 0.5924453, y: -0.047386758, z: 0.14075814, w: 0.79180187} + inSlope: {x: 0.00093519775, y: 0.039362963, z: -0.0870076, w: 0.017199235} + outSlope: {x: 0.00093519775, y: 0.039362963, z: -0.0870076, w: 0.017199235} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9333334 + value: {x: 0.5945406, y: -0.024912952, z: 0.1103561, w: 0.7960668} + inSlope: {x: 0.05057389, y: 0.30663413, z: -0.21410537, w: 0.0012499229} + outSlope: {x: 0.05057389, y: 0.30663413, z: -0.21410537, w: 0.0012499229} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.2 + value: {x: 0.60226524, y: 0.047848925, z: 0.055892196, w: 0.7948982} + inSlope: {x: -0.021610579, y: 0.16714576, z: -0.13650031, w: 0.016481295} + outSlope: {x: -0.021610579, y: 0.16714576, z: -0.13650031, w: 0.016481295} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.4 + value: {x: 0.59992665, y: 0.054898087, z: 0.05922838, w: 0.7959687} + inSlope: {x: -0.014450862, y: 0.009850198, z: 0.019775778, w: 0.00873328} + outSlope: {x: -0.014450862, y: 0.009850198, z: 0.019775778, w: 0.00873328} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.2000003 + value: {x: 0.6024101, y: 0.054394983, z: 0.05900826, w: 0.7941419} + inSlope: {x: -0.0034421585, y: 0.009465827, z: 0.014905948, w: 0.00085562177} + outSlope: {x: -0.0034421585, y: 0.009465827, z: 0.014905948, w: 0.00085562177} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.8000002 + value: {x: 0.6030791, y: 0.055112958, z: 0.06050386, w: 0.7934718} + inSlope: {x: -0.0025999572, y: -0.009755986, z: -0.023168609, w: 0.0044328016} + outSlope: {x: -0.0025999572, y: -0.009755986, z: -0.023168609, w: 0.0044328016} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.21148036, y: 0.03529909, z: -0.12281164, w: 0.96899295} + inSlope: {x: -0.0000026822088, y: 0.000001117587, z: -0.0000062584872, w: 0} + outSlope: {x: -0.0000026822088, y: 0.000001117587, z: -0.0000062584872, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6333334 + value: {x: 0.21505642, y: 0.035841536, z: -0.12286647, w: 0.9681787} + inSlope: {x: -0.006525374, y: -0.000989289, z: 0.000098683035, w: 0.0014984622} + outSlope: {x: -0.006525374, y: -0.000989289, z: 0.000098683035, w: 0.0014984622} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.266667 + value: {x: 0.21082194, y: 0.03519926, z: -0.12280149, w: 0.96914136} + inSlope: {x: 0.0049345987, y: 0.00074766646, z: -0.000076890065, w: -0.0011113296} + outSlope: {x: 0.0049345987, y: 0.00074766646, z: -0.000076890065, w: -0.0011113296} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.8000002 + value: {x: 0.21142149, y: 0.035290185, z: -0.122810625, w: 0.9690063} + inSlope: {x: 0.0039634146, y: 0.0006029388, z: -0.000058561618, w: -0.0008922824} + outSlope: {x: 0.0039634146, y: 0.0006029388, z: -0.000058561618, w: -0.0008922824} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot/mixamorig:LeftToeBase + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.090997145, y: -0.07161436, z: 0.9922426, w: 0.045227807} + inSlope: {x: -0.004138425, y: 0.048673373, z: 0.0039356947, w: -0.0018312781} + outSlope: {x: -0.004138425, y: 0.048673373, z: 0.0039356947, w: -0.0018312781} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: 0.09056888, y: -0.085407555, z: 0.99112076, w: 0.046717055} + inSlope: {x: -0.00323318, y: -0.08425351, z: -0.006683168, w: 0.000017599203} + outSlope: {x: -0.00323318, y: -0.08425351, z: -0.006683168, w: 0.000017599203} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: 0.0901437, y: -0.084135145, z: 0.99151987, w: 0.04103354} + inSlope: {x: 0.008082506, y: -0.014930639, z: -0.00067770545, w: -0.03210645} + outSlope: {x: 0.008082506, y: -0.014930639, z: -0.00067770545, w: -0.03210645} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.091088586, y: -0.06310709, z: 0.99325734, w: 0.034062} + inSlope: {x: 0.013871489, y: 0.0713996, z: 0.0046214485, w: -0.037501145} + outSlope: {x: 0.013871489, y: 0.0713996, z: 0.0046214485, w: -0.037501145} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9333334 + value: {x: 0.09357425, y: -0.078504, z: 0.99150294, w: 0.044754226} + inSlope: {x: -0.0008956271, y: -0.059229247, z: -0.009980504, w: 0.11674182} + outSlope: {x: -0.0008956271, y: -0.059229247, z: -0.009980504, w: 0.11674182} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1333334 + value: {x: 0.09098129, y: -0.12045547, z: 0.98636687, w: 0.06552408} + inSlope: {x: 0.019792229, y: -0.13996583, z: -0.020026252, w: 0.016382257} + outSlope: {x: 0.019792229, y: -0.13996583, z: -0.020026252, w: 0.016382257} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4333334 + value: {x: 0.0904498, y: -0.1534764, z: 0.9813256, w: 0.07255239} + inSlope: {x: -0.0018874947, y: 0.058663767, z: 0.01004667, w: -0.009726817} + outSlope: {x: -0.0018874947, y: 0.058663767, z: 0.01004667, w: -0.009726817} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7333335 + value: {x: 0.09043939, y: -0.137169, z: 0.983525, w: 0.075391985} + inSlope: {x: -0.006298713, y: -0.012072375, z: -0.0039419467, w: 0.037212472} + outSlope: {x: -0.006298713, y: -0.012072375, z: -0.0039419467, w: 0.037212472} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.2333333 + value: {x: 0.08694221, y: -0.07283808, z: 0.9920188, w: 0.055084854} + inSlope: {x: -0.0075034657, y: 0.050392143, z: 0.0055003073, w: -0.02006579} + outSlope: {x: -0.0075034657, y: 0.050392143, z: 0.0055003073, w: -0.02006579} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.7 + value: {x: 0.08712696, y: -0.06252028, z: 0.9930516, w: 0.048463374} + inSlope: {x: 0.005238899, y: -0.014673531, z: -0.00027716014, w: -0.022730876} + outSlope: {x: 0.005238899, y: -0.014673531, z: -0.00027716014, w: -0.022730876} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.3000002 + value: {x: 0.09062908, y: -0.077674665, z: 0.99196184, w: 0.042008277} + inSlope: {x: 0.0010448332, y: -0.008174151, z: -0.0009977827, w: 0.0062494967} + outSlope: {x: 0.0010448332, y: -0.008174151, z: -0.0009977827, w: 0.0062494967} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.7000003 + value: {x: 0.0913503, y: -0.087009504, z: 0.99093074, w: 0.04626808} + inSlope: {x: 0.00006604503, y: 0.01168146, z: 0.00083775376, w: 0.0036018507} + outSlope: {x: 0.00006604503, y: 0.01168146, z: 0.00083775376, w: 0.0036018507} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.8000002 + value: {x: 0.09098467, y: -0.07164626, z: 0.99224144, w: 0.045227554} + inSlope: {x: -0.00029101997, y: 0.078017265, z: 0.005897289, w: -0.0029411567} + outSlope: {x: -0.00029101997, y: 0.078017265, z: 0.005897289, w: -0.0029411567} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:RightUpLeg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.03056227, y: -0.0869982, z: 0.08532286, w: 0.9920773} + inSlope: {x: -0.081750594, y: 0.18288104, z: 0.0002709031, w: 0.012817382} + outSlope: {x: -0.081750594, y: 0.18288104, z: 0.0002709031, w: 0.012817382} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.011203325, y: -0.05424362, z: 0.08293281, w: 0.9950147} + inSlope: {x: 0.3384096, y: 0.20995435, z: -0.0228418, w: 0.016361473} + outSlope: {x: 0.3384096, y: 0.20995435, z: -0.0228418, w: 0.016361473} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: 0.0018695898, y: -0.040441796, z: 0.08187293, w: 0.99582016} + inSlope: {x: -0.015014423, y: 0.20660023, z: -0.009218865, w: 0.0091445455} + outSlope: {x: -0.015014423, y: 0.20660023, z: -0.009218865, w: 0.0091445455} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: -0.002314242, y: 0.007905009, z: 0.07917641, w: 0.9968266} + inSlope: {x: -0.0141644515, y: 0.18195906, z: -0.0054398566, w: -0.0009709605} + outSlope: {x: -0.0141644515, y: 0.18195906, z: -0.0054398566, w: -0.0009709605} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.0026508411, y: 0.013584021, z: 0.07912041, w: 0.996769} + inSlope: {x: -0.4236281, y: 0.14400601, z: -0.006888244, w: -0.008276397} + outSlope: {x: -0.4236281, y: 0.14400601, z: -0.006888244, w: -0.008276397} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: -0.030556139, y: 0.017505407, z: 0.078717194, w: 0.9962748} + inSlope: {x: -0.68992573, y: 0.09877533, z: -0.002006514, w: -0.019278808} + outSlope: {x: -0.68992573, y: 0.09877533, z: -0.002006514, w: -0.019278808} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.09235753, y: 0.014769933, z: 0.08848082, w: 0.9916769} + inSlope: {x: -0.18987796, y: -0.10308936, z: 0.085793026, w: -0.02382338} + outSlope: {x: -0.18987796, y: -0.10308936, z: 0.085793026, w: -0.02382338} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.90000004 + value: {x: -0.12689848, y: -0.014866141, z: 0.10648572, w: 0.9860713} + inSlope: {x: -0.40711617, y: -0.2512244, z: 0.10112287, w: -0.06787329} + outSlope: {x: -0.40711617, y: -0.2512244, z: 0.10112287, w: -0.06787329} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0333334 + value: {x: -0.16321246, y: -0.048254177, z: 0.11691964, w: 0.9784493} + inSlope: {x: -0.021330614, y: 0.0061618695, z: 0.00017859833, w: -0.0032409867} + outSlope: {x: -0.021330614, y: 0.0061618695, z: 0.00017859833, w: -0.0032409867} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666668 + value: {x: -0.13609172, y: -0.06466767, z: 0.1183355, w: 0.98147535} + inSlope: {x: 0.12897207, y: -0.1273208, z: 0.025117632, w: 0.006566034} + outSlope: {x: 0.12897207, y: -0.1273208, z: 0.025117632, w: 0.006566034} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333334 + value: {x: -0.123511404, y: -0.077592716, z: 0.118968114, w: 0.9821257} + inSlope: {x: 0.13095976, y: -0.005093743, z: -0.0073428894, w: 0.016946213} + outSlope: {x: 0.13095976, y: -0.005093743, z: -0.0073428894, w: 0.016946213} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9333334 + value: {x: -0.07309839, y: -0.07962404, z: 0.11667698, w: 0.98727053} + inSlope: {x: 0.03923342, y: -0.011454139, z: -0.042354822, w: 0.006973736} + outSlope: {x: 0.03923342, y: -0.011454139, z: -0.042354822, w: 0.006973736} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.3666668 + value: {x: -0.015531656, y: -0.085476905, z: 0.08628346, w: 0.9924755} + inSlope: {x: 0.26148233, y: -0.011237461, z: -0.042174537, w: 0.006586618} + outSlope: {x: 0.26148233, y: -0.011237461, z: -0.042174537, w: 0.006586618} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.6333334 + value: {x: -0.008556062, y: -0.085245885, z: 0.08250163, w: 0.99290156} + inSlope: {x: -0.00035299023, y: 0.0008185216, z: -0.004262258, w: 0.0004220013} + outSlope: {x: -0.00035299023, y: 0.0008185216, z: -0.004262258, w: 0.0004220013} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.0054622656, y: -0.08635945, z: 0.079890385, w: 0.9930407} + inSlope: {x: -0.0009592871, y: -0.001748126, z: -0.0070350794, w: 0.00041842333} + outSlope: {x: -0.0009592871, y: -0.001748126, z: -0.0070350794, w: 0.00041842333} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.005330421, y: -0.08394745, z: 0.080708526, w: 0.99318206} + inSlope: {x: -0.0045289914, y: -0.006525125, z: 0.008331257, w: -0.0012016261} + outSlope: {x: -0.0045289914, y: -0.006525125, z: 0.008331257, w: -0.0012016261} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.7333336 + value: {x: 0.0009628638, y: -0.084708184, z: 0.08172652, w: 0.993048} + inSlope: {x: -0.44556087, y: -0.027279098, z: 0.04794967, w: -0.010421285} + outSlope: {x: -0.44556087, y: -0.027279098, z: 0.04794967, w: -0.010421285} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.766667 + value: {x: -0.023976695, y: -0.08600085, z: 0.08415893, w: 0.9924446} + inSlope: {x: -0.4718587, y: -0.03429487, z: 0.05386462, w: -0.014517916} + outSlope: {x: -0.4718587, y: -0.03429487, z: 0.05386462, w: -0.014517916} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.8000002 + value: {x: -0.030494353, y: -0.08699451, z: 0.08531749, w: 0.99208015} + inSlope: {x: -0.19552992, y: -0.029809652, z: 0.034756992, w: -0.010932694} + outSlope: {x: -0.19552992, y: -0.029809652, z: 0.034756992, w: -0.010932694} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.58517456, y: -0.04103716, z: -0.027646381, w: 0.8093964} + inSlope: {x: 0.014988183, y: -0.08536599, z: 0.06629035, w: -0.013151764} + outSlope: {x: 0.014988183, y: -0.08536599, z: 0.06629035, w: -0.013151764} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.573509, y: -0.053888336, z: -0.01398271, w: 0.8173054} + inSlope: {x: -0.1671597, y: -0.07145197, z: 0.09306561, w: 0.11387317} + outSlope: {x: -0.1671597, y: -0.07145197, z: 0.09306561, w: 0.11387317} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: 0.5627487, y: -0.07756272, z: 0.006986401, w: 0.8229515} + inSlope: {x: -0.010745829, y: -0.07890336, z: 0.066769235, w: -0.0006526716} + outSlope: {x: -0.010745829, y: -0.07890336, z: 0.066769235, w: -0.0006526716} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: 0.5744123, y: -0.08327073, z: 0.01049699, w: 0.814252} + inSlope: {x: 0.30018276, y: -0.09233933, z: 0.03818469, w: -0.22061688} + outSlope: {x: 0.30018276, y: -0.09233933, z: 0.03818469, w: -0.22061688} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9333334 + value: {x: 0.64137596, y: -0.13013555, z: 0.010999467, w: 0.75602955} + inSlope: {x: 0.26466966, y: -0.12589395, z: -0.03907568, w: -0.24551691} + outSlope: {x: 0.26466966, y: -0.12589395, z: -0.03907568, w: -0.24551691} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.65644884, y: -0.13794252, z: 0.0069513395, w: 0.7416188} + inSlope: {x: 0.15689933, y: -0.26727873, z: 0.09246069, w: -0.19173487} + outSlope: {x: 0.15689933, y: -0.26727873, z: 0.09246069, w: -0.19173487} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.66326517, y: -0.16780883, z: 0.026456248, w: 0.72884816} + inSlope: {x: 0.019424561, y: -0.08406717, z: 0.076869994, w: -0.039393615} + outSlope: {x: 0.019424561, y: -0.08406717, z: 0.076869994, w: -0.039393615} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3666668 + value: {x: 0.65625453, y: -0.16604371, z: 0.026264464, w: 0.73557436} + inSlope: {x: 0.0123041775, y: 0.036229637, z: -0.03139485, w: -0.0015977144} + outSlope: {x: 0.0123041775, y: 0.036229637, z: -0.03139485, w: -0.0015977144} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6000001 + value: {x: 0.64875776, y: -0.15578797, z: 0.021188715, w: 0.74457675} + inSlope: {x: -0.05442018, y: 0.03391132, z: -0.009122044, w: 0.05483502} + outSlope: {x: -0.05442018, y: 0.03391132, z: -0.009122044, w: 0.05483502} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.8666668 + value: {x: 0.6345329, y: -0.16376862, z: 0.025636137, w: 0.754911} + inSlope: {x: -0.05417611, y: 0.17205268, z: -0.1203071, w: 0.08649671} + outSlope: {x: -0.05417611, y: 0.17205268, z: -0.1203071, w: 0.08649671} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.2333333 + value: {x: 0.60132325, y: -0.063098304, z: -0.014705721, w: 0.7963748} + inSlope: {x: -0.14458767, y: 0.18082036, z: -0.04405409, w: 0.122763485} + outSlope: {x: -0.14458767, y: 0.18082036, z: -0.04405409, w: 0.122763485} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.5000002 + value: {x: 0.5776621, y: -0.042118113, z: -0.021840429, w: 0.81489605} + inSlope: {x: -0.0027134921, y: 0.0173872, z: -0.0143681, w: 0.0024399082} + outSlope: {x: -0.0027134921, y: 0.0173872, z: -0.0143681, w: 0.0024399082} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.2333336 + value: {x: 0.56918633, y: -0.032100838, z: -0.02731826, w: 0.8211274} + inSlope: {x: -0.011411022, y: 0.018529668, z: -0.007666655, w: 0.008386381} + outSlope: {x: -0.011411022, y: 0.018529668, z: -0.007666655, w: 0.008386381} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.7000003 + value: {x: 0.5691443, y: -0.03795198, z: -0.024724258, w: 0.8209892} + inSlope: {x: 0.033651922, y: -0.014387231, z: 0.0010384358, w: -0.02403351} + outSlope: {x: 0.033651922, y: -0.014387231, z: 0.0010384358, w: -0.02403351} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.8000002 + value: {x: 0.585145, y: -0.041037057, z: -0.02764224, w: 0.80941784} + inSlope: {x: 0.08634933, y: -0.027222548, z: -0.019104108, w: -0.06419426} + outSlope: {x: 0.08634933, y: -0.027222548, z: -0.019104108, w: -0.06419426} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.23116098, y: -0.038283862, z: 0.12309331, w: 0.9643376} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.8000002 + value: {x: 0.23116098, y: -0.038283862, z: 0.12309331, w: 0.9643376} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot/mixamorig:RightToeBase + m_CompressedRotationCurves: [] + m_EulerCurves: [] + m_PositionCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.00023446539, y: 0.017569456, z: 0.0000116465135} + inSlope: {x: -0.000015071324, y: -0.000028702183, z: -0.00009633036} + outSlope: {x: -0.000015071324, y: -0.000028702183, z: -0.00009633036} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: -0.00023496774, y: 0.017568503, z: 0.000008435504} + inSlope: {x: -0.000010832476, y: -0.000006563318, z: -0.00006955592} + outSlope: {x: -0.000010828698, y: -0.0000066093053, z: -0.000069556045} + tangentMode: 0 + weightedMode: 0 + 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.00023515371, y: 0.017570587, z: 0.0000071734507} + inSlope: {x: -0.0000009808426, y: 0.000075934615, z: 0.0000263564} + outSlope: {x: -0.0000009804163, y: 0.000075657, z: 0.00002635637} + tangentMode: 0 + weightedMode: 0 + 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.00023525281, y: 0.017574081, z: 0.000008766545} + inSlope: {x: -0.0000133137855, y: 0.00009541168, z: 0.000059653143} + outSlope: {x: -0.000013322088, y: 0.000095740375, z: 0.000059653263} + tangentMode: 0 + weightedMode: 0 + 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.00023604148, y: 0.017576959, z: 0.000011150326} + inSlope: {x: -0.00004462783, y: 0.000107831605, z: 0.000082938495} + outSlope: {x: -0.0000446253, y: 0.00010781117, z: 0.000082938874} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.23333333 + value: {x: -0.00024131776, y: 0.017586023, z: 0.000017633241} + inSlope: {x: -0.000093563074, y: 0.00013275145, z: 0.00009956565} + outSlope: {x: -0.000093560695, y: 0.00013262367, z: 0.000099565565} + tangentMode: 0 + weightedMode: 0 + 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.00024754374, y: 0.017594334, z: 0.000024849143} + inSlope: {x: -0.00007617968, y: 0.00011344295, z: 0.0001258649} + outSlope: {x: -0.0000761854, y: 0.00011353662, z: 0.00012586532} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: -0.00025055918, y: 0.017601835, z: 0.00003450486} + inSlope: {x: -0.000023201635, y: 0.00013540301, z: 0.00015907711} + outSlope: {x: -0.000023200786, y: 0.00013536384, z: 0.00015907727} + tangentMode: 0 + weightedMode: 0 + 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.00025115913, y: 0.017612578, z: 0.00004486737} + inSlope: {x: 0.000008320543, y: 0.0001971483, z: 0.0001360504} + outSlope: {x: 0.000008319423, y: 0.00019681962, z: 0.00013605111} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.56666666 + value: {x: -0.00024264434, y: 0.017629744, z: 0.0000636666} + inSlope: {x: 0.00015181353, y: 0.000035507368, z: 0.00023005594} + outSlope: {x: 0.00015180963, y: 0.000035153083, z: 0.00023005324} + tangentMode: 0 + weightedMode: 0 + 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.00016520967, y: 0.017606942, z: 0.00015017964} + inSlope: {x: 0.0006901131, y: -0.0003401742, z: 0.00059448887} + outSlope: {x: 0.00069010153, y: -0.00034004077, z: 0.0005944798} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.8666667 + value: {x: -0.00007149946, y: 0.017546678, z: 0.0002109235} + inSlope: {x: 0.0012789754, y: -0.0011474139, z: 0.0006305111} + outSlope: {x: 0.0012789887, y: -0.0011478143, z: 0.00063051924} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.9 + value: {x: -0.000023892315, y: 0.017499866, z: 0.00023298165} + inSlope: {x: 0.0015302926, y: -0.0016616068, z: 0.0007683125} + outSlope: {x: 0.001530269, y: -0.0016611747, z: 0.00076830044} + tangentMode: 0 + weightedMode: 0 + 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.00003051961, y: 0.017435933, z: 0.00026214402} + inSlope: {x: 0.0016908253, y: -0.0020291905, z: 0.0010840371} + outSlope: {x: 0.0016908397, y: -0.0020291924, z: 0.0010840434} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.96666664 + value: {x: 0.00008883021, y: 0.017364584, z: 0.00030525128} + inSlope: {x: 0.0018272488, y: -0.0020853912, z: 0.0014993417} + outSlope: {x: 0.0018272194, y: -0.002085108, z: 0.0014993184} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.0666667 + value: {x: 0.00027013515, y: 0.017213915, z: 0.00047525731} + inSlope: {x: 0.0013841186, y: -0.00067978393, z: 0.0011750496} + outSlope: {x: 0.0013841648, y: -0.00067995157, z: 0.001175092} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.2 + value: {x: 0.00037012136, y: 0.017211948, z: 0.00050420145} + inSlope: {x: 0.0005493403, y: 0.0001761789, z: 0.000061118495} + outSlope: {x: 0.00054935954, y: 0.00017668534, z: 0.0000611188} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.3666667 + value: {x: 0.00043875765, y: 0.017216, z: 0.00052875106} + inSlope: {x: 0.00016989672, y: -0.000036030182, z: 0.00015645954} + outSlope: {x: 0.00016989786, y: -0.000036081274, z: 0.00015645384} + tangentMode: 0 + weightedMode: 0 + 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.00041963052, y: 0.017235806, z: 0.0005429067} + inSlope: {x: -0.0004504456, y: 0.00039736237, z: 0.000019210058} + outSlope: {x: -0.00045043541, y: 0.00039727887, z: 0.000019210327} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.6333333 + value: {x: 0.0003594219, y: 0.017286092, z: 0.00054259144} + inSlope: {x: -0.0003168281, y: 0.000107184555, z: 0.00006958646} + outSlope: {x: -0.0003168228, y: 0.00010733444, z: 0.00006958597} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.7333333 + value: {x: 0.00032592443, y: 0.017278573, z: 0.00055952364} + inSlope: {x: -0.0005004186, y: -0.00002407177, z: 0.00020004899} + outSlope: {x: -0.0005004175, y: -0.000024022402, z: 0.00020004596} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.9 + value: {x: 0.00021010758, y: 0.017345544, z: 0.00056434} + inSlope: {x: -0.00068099954, y: 0.0007433489, z: -0.00037965918} + outSlope: {x: -0.0006809987, y: 0.00074329437, z: -0.0003796601} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.9666667 + value: {x: 0.00017364658, y: 0.017394936, z: 0.00052589376} + inSlope: {x: -0.00039459075, y: 0.0006730265, z: -0.00073023216} + outSlope: {x: -0.00039460207, y: 0.00067319756, z: -0.0007302434} + tangentMode: 0 + weightedMode: 0 + 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.00014274447, y: 0.017456122, z: 0.00043739902} + inSlope: {x: -0.00038483724, y: 0.00062013743, z: -0.0009927818} + outSlope: {x: -0.00038482962, y: 0.0006202243, z: -0.0009927624} + tangentMode: 0 + weightedMode: 0 + 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.00009344189, y: 0.017517535, z: 0.00032952402} + inSlope: {x: -0.00055330177, y: 0.000559327, z: -0.0011349224} + outSlope: {x: -0.0005533139, y: 0.0005593798, z: -0.0011349418} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.3 + value: {x: 0.000010169894, y: 0.017574603, z: 0.00018305407} + inSlope: {x: -0.0006865689, y: 0.0002561401, z: -0.0009477352} + outSlope: {x: -0.0006865599, y: 0.00025606176, z: -0.000947723} + tangentMode: 0 + weightedMode: 0 + 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.00001306195, y: 0.01758132, z: 0.0001537233} + inSlope: {x: -0.00070162927, y: 0.00017806476, z: -0.0008011061} + outSlope: {x: -0.0007016131, y: 0.00017789446, z: -0.00080108456} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.4 + value: {x: -0.00006017656, y: 0.017590305, z: 0.00011083988} + inSlope: {x: -0.00071046344, y: 0.00025279363, z: -0.00045930877} + outSlope: {x: -0.00071050733, y: 0.00025298956, z: -0.00045933682} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.4666667 + value: {x: -0.00010616149, y: 0.017616924, z: 0.000093383984} + inSlope: {x: -0.00062259915, y: 0.00037418804, z: -0.000085742075} + outSlope: {x: -0.0006226044, y: 0.00037390876, z: -0.00008574305} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.6 + value: {x: -0.00017808606, y: 0.017652366, z: 0.00011747196} + inSlope: {x: -0.00052881107, y: 0.00017933178, z: 0.00033556655} + outSlope: {x: -0.0005287771, y: 0.00017954678, z: 0.00033554307} + tangentMode: 0 + weightedMode: 0 + 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.00030193484, y: 0.017654877, z: 0.00019301503} + inSlope: {x: -0.0004395388, y: -0.00007784543, z: 0.00027263616} + outSlope: {x: -0.00043952468, y: -0.00007777901, z: 0.0002726305} + tangentMode: 0 + weightedMode: 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.0333333 + value: {x: -0.00035656817, y: 0.017638993, z: 0.00020176773} + inSlope: {x: -0.0000998444, y: -0.00008081545, z: -0.00025275655} + outSlope: {x: -0.000099842604, y: -0.00008065366, z: -0.0002527505} + tangentMode: 0 + weightedMode: 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.2333333 + value: {x: -0.00034905653, y: 0.017627303, z: 0.00012110519} + inSlope: {x: 0.00016878442, y: -0.000036713085, z: -0.0004251417} + outSlope: {x: 0.00016879234, y: -0.000037174595, z: -0.00042514378} + tangentMode: 0 + weightedMode: 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.4333334 + value: {x: -0.0003044875, y: 0.017614517, z: 0.00005044737} + inSlope: {x: 0.00024309449, y: -0.0001294069, z: -0.00028073075} + outSlope: {x: 0.00024310075, y: -0.00012899817, z: -0.00028073555} + tangentMode: 0 + weightedMode: 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.0002875824, y: 0.017605226, z: 0.000034569002} + inSlope: {x: 0.0002645478, y: -0.00013773111, z: -0.000179325} + outSlope: {x: 0.0002645426, y: -0.00013749099, z: -0.0001793257} + tangentMode: 0 + weightedMode: 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.0002492684, y: 0.01758761, z: 0.000022574344} + inSlope: {x: 0.000167193, y: -0.00010645228, z: -0.000040593084} + outSlope: {x: 0.0001671951, y: -0.00010610486, z: -0.000040594237} + tangentMode: 0 + weightedMode: 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.7333333 + value: {x: -0.00023966929, y: 0.017579246, z: 0.000018877749} + inSlope: {x: 0.00011377793, y: -0.00017231035, z: -0.000081296894} + outSlope: {x: 0.00011378145, y: -0.00017258624, z: -0.00008129683} + tangentMode: 0 + weightedMode: 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.8 + value: {x: -0.0002344395, y: 0.017569477, z: 0.000011634523} + inSlope: {x: 0.000060098933, y: -0.00008383315, z: -0.00011934404} + outSlope: {x: 0.000060098933, y: -0.00008383315, z: -0.00011934404} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips + m_ScaleCurves: [] + m_FloatCurves: [] + m_PPtrCurves: [] + m_SampleRate: 30 + 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: 1083781737 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1083781737 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 408225041 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3001700786 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3132553515 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 168334831 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 215603437 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1852142506 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1775379527 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1207142558 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3198065886 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 10533847 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2486468252 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1925155201 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1714668715 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1454392865 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2364716999 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 407569882 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3106263194 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 688943277 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2140469971 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 971364194 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1021604224 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 733358149 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1601611806 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 4126269581 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2280639224 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3984737358 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3155596823 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1692231856 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3048725362 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1185900278 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2828911296 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1886386198 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 395264987 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 4080340377 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3974837130 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1014061991 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1587372701 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 357817416 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1915810720 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2119318601 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2334650127 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2471676248 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 565509406 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3092991833 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2853632173 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1651132406 + 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: 3.8000002 + 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: 0.033333335 + value: 0 + inSlope: 0 + 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: Armature.001 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_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.033333335 + value: -0 + inSlope: 0 + 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: Armature.001 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_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.033333335 + value: -0 + inSlope: 0 + 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: Armature.001 + 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.033333335 + value: 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: Armature.001 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.03159396 + inSlope: -0.008899346 + outSlope: -0.008899346 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.041887928 + inSlope: -0.040649883 + outSlope: -0.040649883 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.07142748 + inSlope: -0.11087884 + outSlope: -0.11087884 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: -0.092968784 + inSlope: -0.09541507 + outSlope: -0.09541507 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: -0.101804815 + inSlope: 0.13956665 + outSlope: 0.13956665 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: -0.07618169 + inSlope: 0.110210314 + outSlope: 0.110210314 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: -0.04159678 + inSlope: 0.10477495 + outSlope: 0.10477495 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.766667 + value: -0.008784984 + inSlope: -0.008445935 + outSlope: -0.008445935 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: -0.031593967 + inSlope: -0.008914554 + outSlope: -0.008914554 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: Armature.001/mixamorig:Hips + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.046791025 + inSlope: 0.07901284 + outSlope: 0.07901284 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.09446797 + inSlope: 0.04356401 + outSlope: 0.04356401 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.014080203 + inSlope: -0.36986837 + outSlope: -0.36986837 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: -0.044956613 + inSlope: -0.14981812 + outSlope: -0.14981812 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: -0.06273666 + inSlope: 0.053623613 + outSlope: 0.053623613 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: -0.07312244 + inSlope: -0.1389234 + outSlope: -0.1389234 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: -0.021457 + inSlope: 0.32580647 + outSlope: 0.32580647 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.766667 + value: 0.050001957 + inSlope: -0.0036934612 + outSlope: -0.0036934612 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.04679111 + inSlope: -0.0312842 + outSlope: -0.0312842 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: Armature.001/mixamorig:Hips + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.023122879 + inSlope: 0.012168623 + outSlope: 0.012168623 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.025974076 + inSlope: -0.026376393 + outSlope: -0.026376393 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.008577921 + inSlope: -0.0036760513 + outSlope: -0.0036760513 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: 0.005850163 + inSlope: -0.025955237 + outSlope: -0.025955237 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 0.0026029015 + inSlope: 0.010884708 + outSlope: 0.010884708 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: 0.0053491895 + inSlope: 0.004382187 + outSlope: 0.004382187 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: 0.011359849 + inSlope: 0.056341283 + outSlope: 0.056341283 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.766667 + value: 0.022863101 + inSlope: -0.0064504957 + outSlope: -0.0064504957 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.023122955 + inSlope: -0.007905148 + outSlope: -0.007905148 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: Armature.001/mixamorig:Hips + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9981372 + inSlope: -0.004377365 + outSlope: -0.004377365 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.9943071 + inSlope: -0.0051435847 + outSlope: -0.0051435847 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.99730957 + inSlope: -0.003073814 + outSlope: -0.003073814 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: 0.99463636 + inSlope: -0.015303782 + outSlope: -0.015303782 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 0.9928208 + inSlope: 0.017647164 + outSlope: 0.017647164 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: 0.9943947 + inSlope: -0.0017228691 + outSlope: -0.0017228691 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: 0.99883944 + inSlope: 0.010816419 + outSlope: 0.010816419 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.766667 + value: 0.9984488 + inSlope: 0.0002574923 + outSlope: 0.0002574923 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.9981372 + inSlope: 0.0013875974 + outSlope: 0.0013875974 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: Armature.001/mixamorig:Hips + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.029184693 + inSlope: 0.000039897855 + outSlope: 0.000039897855 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.025250182 + inSlope: 0.03146936 + outSlope: 0.03146936 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 0.03212796 + inSlope: -0.065063946 + outSlope: -0.065063946 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4666667 + value: 0.021912953 + inSlope: -0.0021892383 + outSlope: -0.0021892383 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.029210266 + inSlope: 0.000027660308 + outSlope: 0.000027660308 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: Armature.001/mixamorig:Hips/mixamorig:Spine + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.013092213 + inSlope: -0.00047170554 + outSlope: -0.00047170554 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.016821112 + inSlope: -0.017718425 + outSlope: -0.017718425 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: -0.018534224 + inSlope: 0.0031192158 + outSlope: 0.0031192158 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4666667 + value: -0.012037617 + inSlope: -0.006577485 + outSlope: -0.006577485 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: -0.0129203815 + inSlope: -0.00021100065 + outSlope: -0.00021100065 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: Armature.001/mixamorig:Hips/mixamorig:Spine + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.016104616 + inSlope: 0.002351906 + outSlope: 0.002351906 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.022539467 + inSlope: 0.0007790142 + outSlope: 0.0007790142 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: -0.022951847 + inSlope: 0.019760016 + outSlope: 0.019760016 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4666667 + value: -0.015529759 + inSlope: 0.009576997 + outSlope: 0.009576997 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: -0.01607893 + inSlope: 0.0016272083 + outSlope: 0.0016272083 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: Armature.001/mixamorig:Hips/mixamorig:Spine + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.99935853 + inSlope: 0.000030398367 + outSlope: 0.000030398367 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.99928546 + inSlope: -0.0010871891 + outSlope: -0.0010871891 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 0.9990483 + inSlope: 0.00261247 + outSlope: 0.00261247 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4666667 + value: 0.9995668 + inSlope: 0.00011712288 + outSlope: 0.00011712288 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.99936044 + inSlope: 0.000023245833 + outSlope: 0.000023245833 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: Armature.001/mixamorig:Hips/mixamorig:Spine + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.010088756 + inSlope: 0.00000013969837 + outSlope: 0.00000013969837 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.0029453924 + inSlope: -0.026544759 + outSlope: -0.026544759 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.014134781 + inSlope: 0.050156564 + outSlope: 0.050156564 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: 0.018891986 + inSlope: 0.018306175 + outSlope: 0.018306175 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9 + value: 0.019839358 + inSlope: -0.01648082 + outSlope: -0.01648082 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.010064697 + inSlope: 0.000000027939704 + outSlope: 0.000000027939704 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0028405136 + inSlope: 0.00000020256265 + outSlope: 0.00000020256265 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.008166624 + inSlope: -0.016078344 + outSlope: -0.016078344 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.013084868 + inSlope: 0.0008175734 + outSlope: 0.0008175734 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: -0.004724445 + inSlope: 0.044666424 + outSlope: 0.044666424 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9 + value: -0.0019764453 + inSlope: 0.0043360237 + outSlope: 0.0043360237 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: -0.0026548137 + inSlope: 0.00000016763822 + outSlope: 0.00000016763822 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.013669265 + inSlope: -0.000000083819025 + outSlope: -0.000000083819025 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.02041915 + inSlope: -0.0019886373 + outSlope: -0.0019886373 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.016863495 + inSlope: -0.010193054 + outSlope: -0.010193054 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: -0.023814423 + inSlope: 0.0035203116 + outSlope: 0.0035203116 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9 + value: -0.017404322 + inSlope: -0.0007481694 + outSlope: -0.0007481694 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: -0.013518619 + inSlope: 0 + 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: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.99985164 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.99975383 + inSlope: -0.00010639432 + outSlope: -0.00010639432 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.99967223 + inSlope: 0.0005391236 + outSlope: 0.0005391236 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: 0.99952674 + inSlope: -0.000036657057 + outSlope: -0.000036657057 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9 + value: 0.99964976 + inSlope: 0.00032275944 + outSlope: 0.00032275944 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.99985445 + inSlope: 0 + 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: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0026899427 + inSlope: -0.00000013969837 + outSlope: -0.00000013969837 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.008939079 + inSlope: 0.024122544 + outSlope: 0.024122544 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.002153481 + inSlope: -0.07320155 + outSlope: -0.07320155 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: -0.0012863546 + inSlope: 0.051244855 + outSlope: 0.051244855 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: 0.005876295 + inSlope: 0.012030473 + outSlope: 0.012030473 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1333334 + value: 0.0010282274 + inSlope: -0.00516791 + outSlope: -0.00516791 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: -0.0027113436 + inSlope: 0 + 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: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.002920306 + inSlope: -0.0000007823109 + outSlope: -0.0000007823109 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.008040544 + inSlope: -0.015713235 + outSlope: -0.015713235 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.014100152 + inSlope: -0.019342545 + outSlope: -0.019342545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: -0.012145531 + inSlope: -0.012859877 + outSlope: -0.012859877 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: -0.0016078476 + inSlope: 0.01444902 + outSlope: 0.01444902 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1333334 + value: -0.0012481586 + inSlope: 0.00034040512 + outSlope: 0.00034040512 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: -0.0027077997 + inSlope: 0.000000041909555 + outSlope: 0.000000041909555 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.013664898 + inSlope: 0.00000041909513 + outSlope: 0.00000041909513 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.020845776 + inSlope: -0.01489098 + outSlope: -0.01489098 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.024125483 + inSlope: 0.033062644 + outSlope: 0.033062644 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: -0.023914475 + inSlope: -0.015871763 + outSlope: -0.015871763 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: -0.02343639 + inSlope: 0.007736476 + outSlope: 0.007736476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1333334 + value: -0.016462935 + inSlope: 0.0040202998 + outSlope: 0.0040202998 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: -0.0136207985 + inSlope: 0.000000027939704 + outSlope: 0.000000027939704 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9998988 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.99971044 + inSlope: -0.00023424625 + outSlope: -0.00023424625 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.9996072 + inSlope: 0.00037193333 + outSlope: 0.00037193333 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 0.9996394 + inSlope: -0.00046044632 + outSlope: -0.00046044632 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: 0.9997068 + inSlope: 0.00013232243 + outSlope: 0.00013232243 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1333334 + value: 0.9998632 + inSlope: 0.000072419716 + outSlope: 0.000072419716 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.9998999 + inSlope: 0 + 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: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.07454482 + inSlope: 0.008281544 + outSlope: 0.008281544 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.10480317 + inSlope: 0.16088134 + outSlope: 0.16088134 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.16976996 + inSlope: 0.09401901 + outSlope: 0.09401901 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 0.18176469 + inSlope: 0.00094212685 + outSlope: 0.00094212685 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 0.17026417 + inSlope: -0.03497492 + outSlope: -0.03497492 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: 0.13436347 + inSlope: -0.104825795 + outSlope: -0.104825795 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4666667 + value: 0.087598786 + inSlope: -0.039246533 + outSlope: -0.039246533 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1333334 + value: 0.073760174 + inSlope: 0.00071849744 + outSlope: 0.00071849744 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.074545115 + inSlope: 0.00964121 + outSlope: 0.00964121 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.00085661374 + inSlope: -0.00094064156 + outSlope: -0.00094064156 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.0058637555 + inSlope: 0.06273017 + outSlope: 0.06273017 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.03537393 + inSlope: 0.026322253 + outSlope: 0.026322253 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 0.038608804 + inSlope: 0.040477924 + outSlope: 0.040477924 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 0.035897955 + inSlope: -0.024387673 + outSlope: -0.024387673 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: 0.022489578 + inSlope: -0.07688822 + outSlope: -0.07688822 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4666667 + value: -0.00054170156 + inSlope: 0.0023775655 + outSlope: 0.0023775655 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1333334 + value: 0.000490772 + inSlope: -0.0017518522 + outSlope: -0.0017518522 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.00085561466 + inSlope: -0.00011596723 + outSlope: -0.00011596723 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.003930833 + inSlope: 0.0054103225 + outSlope: 0.0054103225 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.0053928182 + inSlope: 0.07048449 + outSlope: 0.07048449 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.01818212 + inSlope: -0.007627785 + outSlope: -0.007627785 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 0.010277663 + inSlope: -0.10172196 + outSlope: -0.10172196 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 0.011136451 + inSlope: 0.020034138 + outSlope: 0.020034138 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: 0.011563911 + inSlope: -0.019719623 + outSlope: -0.019719623 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4666667 + value: -0.009224639 + inSlope: -0.0045250244 + outSlope: -0.0045250244 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1333334 + value: -0.006243618 + inSlope: 0.009325931 + outSlope: 0.009325931 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: -0.0039294497 + inSlope: 0.0031785325 + outSlope: 0.0031785325 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.99720955 + inSlope: -0.0005990266 + outSlope: -0.0005990266 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.99446106 + inSlope: -0.017756209 + outSlope: -0.017756209 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.98468083 + inSlope: -0.016939042 + outSlope: -0.016939042 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 0.9825301 + inSlope: -0.0006687647 + outSlope: -0.0006687647 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 0.9846814 + inSlope: 0.0067001646 + outSlope: 0.0067001646 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: 0.9906094 + inSlope: 0.016161192 + outSlope: 0.016161192 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4666667 + value: 0.996113 + inSlope: 0.003408184 + outSlope: 0.003408184 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1333334 + value: 0.99725634 + inSlope: 0.0000053644235 + outSlope: 0.0000053644235 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.99720955 + inSlope: -0.00070631574 + outSlope: -0.00070631574 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.009639498 + inSlope: 0.00017384066 + outSlope: 0.00017384066 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.010282688 + inSlope: 0.2650537 + outSlope: 0.2650537 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.11343432 + inSlope: 0.60898244 + outSlope: 0.60898244 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.1860192 + inSlope: 0.15682364 + outSlope: 0.15682364 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.20877416 + inSlope: -0.026429258 + outSlope: -0.026429258 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333334 + value: 0.21113428 + inSlope: 0.10458656 + outSlope: 0.10458656 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: 0.19779132 + inSlope: -0.17214713 + outSlope: -0.17214713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0.16161533 + inSlope: -0.12453693 + outSlope: -0.12453693 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: 0.10807299 + inSlope: -0.40206185 + outSlope: -0.40206185 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: 0.053327046 + inSlope: -0.21332377 + outSlope: -0.21332377 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: 0.003857858 + inSlope: -0.094610155 + outSlope: -0.094610155 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.766667 + value: -0.007297498 + inSlope: -0.07783751 + outSlope: -0.07783751 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2333336 + value: -0.008261174 + inSlope: 0.029920544 + outSlope: 0.029920544 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: -0.009637591 + inSlope: -0.0310295 + outSlope: -0.0310295 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.011781557 + inSlope: -0.0029863322 + outSlope: -0.0029863322 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.010213215 + inSlope: 0.05893733 + outSlope: 0.05893733 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.0394583 + inSlope: 0.49469656 + outSlope: 0.49469656 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.13741516 + inSlope: 0.17277789 + outSlope: 0.17277789 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.16244905 + inSlope: 0.15114044 + outSlope: 0.15114044 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333334 + value: 0.16120718 + inSlope: 0.06303197 + outSlope: 0.06303197 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: 0.17511307 + inSlope: -0.0077055767 + outSlope: -0.0077055767 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0.14593872 + inSlope: -0.13163935 + outSlope: -0.13163935 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: 0.12502219 + inSlope: -0.20811191 + outSlope: -0.20811191 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: 0.045286655 + inSlope: -0.3488219 + outSlope: -0.3488219 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: -0.020249618 + inSlope: 0.0024946802 + outSlope: 0.0024946802 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.766667 + value: -0.011848459 + inSlope: 0.026269203 + outSlope: 0.026269203 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2333336 + value: -0.014711912 + inSlope: -0.005351459 + outSlope: -0.005351459 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: -0.011784871 + inSlope: -0.006535292 + outSlope: -0.006535292 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0024683874 + inSlope: 0.014905482 + outSlope: 0.014905482 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.016796628 + inSlope: 0.11755817 + outSlope: 0.11755817 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.051492758 + inSlope: 0.22476979 + outSlope: 0.22476979 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.100707754 + inSlope: 0.11218119 + outSlope: 0.11218119 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.0912273 + inSlope: -0.13042516 + outSlope: -0.13042516 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333334 + value: 0.08046051 + inSlope: -0.17560625 + outSlope: -0.17560625 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: 0.06262511 + inSlope: -0.01193255 + outSlope: -0.01193255 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0.0728484 + inSlope: 0.06973806 + outSlope: 0.06973806 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: 0.06597588 + inSlope: -0.17030713 + outSlope: -0.17030713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: 0.03665457 + inSlope: -0.12964842 + outSlope: -0.12964842 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: -0.014805967 + inSlope: -0.13350458 + outSlope: -0.13350458 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.766667 + value: -0.008981438 + inSlope: 0.069016814 + outSlope: 0.069016814 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2333336 + value: -0.0035302853 + inSlope: 0.019660022 + outSlope: 0.019660022 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.0024703306 + inSlope: 0.017082116 + outSlope: 0.017082116 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9998811 + inSlope: -0.000073313706 + outSlope: -0.000073313706 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.9997539 + inSlope: -0.0045356145 + outSlope: -0.0045356145 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.99142534 + inSlope: -0.10097712 + outSlope: -0.10097712 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.9676631 + inSlope: -0.066049404 + outSlope: -0.066049404 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.9600527 + inSlope: -0.0070631714 + outSlope: -0.0070631714 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333334 + value: 0.96070844 + inSlope: -0.019083902 + outSlope: -0.019083902 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: 0.9624407 + inSlope: 0.037690364 + outSlope: 0.037690364 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0.9732808 + inSlope: 0.035034098 + outSlope: 0.035034098 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: 0.9840411 + inSlope: 0.08213915 + outSlope: 0.08213915 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: 0.996876 + inSlope: 0.032097988 + outSlope: 0.032097988 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: 0.9996779 + inSlope: -0.001483263 + outSlope: -0.001483263 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.766667 + value: 0.99986285 + inSlope: 0.00039249696 + outSlope: 0.00039249696 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2333336 + value: 0.99985147 + inSlope: 0.0002333524 + outSlope: 0.0002333524 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.9998811 + inSlope: -0.0003969673 + outSlope: -0.0003969673 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.5679691 + inSlope: -0.001013875 + outSlope: -0.001013875 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.56157136 + inSlope: -0.0037756609 + outSlope: -0.0037756609 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.564515 + inSlope: -0.00613509 + outSlope: -0.00613509 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: 0.5635106 + inSlope: -0.009967992 + outSlope: -0.009967992 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 0.5585748 + inSlope: -0.05112474 + outSlope: -0.05112474 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: 0.5680353 + inSlope: 0.022801448 + outSlope: 0.022801448 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4333334 + value: 0.56881464 + inSlope: -0.0059518274 + outSlope: -0.0059518274 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3666668 + value: 0.5677168 + inSlope: -0.00565589 + outSlope: -0.00565589 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.5679897 + inSlope: 0.003234747 + outSlope: 0.003234747 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.40770572 + inSlope: -0.0019419192 + outSlope: -0.0019419192 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.41494256 + inSlope: -0.005131518 + outSlope: -0.005131518 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.4118659 + inSlope: -0.0070805713 + outSlope: -0.0070805713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: -0.41288275 + inSlope: -0.013764663 + outSlope: -0.013764663 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: -0.4187362 + inSlope: -0.056093536 + outSlope: -0.056093536 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: -0.40829915 + inSlope: 0.026737139 + outSlope: 0.026737139 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4333334 + value: -0.40700936 + inSlope: -0.009064982 + outSlope: -0.009064982 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3666668 + value: -0.40805796 + inSlope: -0.00558347 + outSlope: -0.00558347 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: -0.40774944 + inSlope: 0.005766755 + outSlope: 0.005766755 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.44596183 + inSlope: 0.0011515616 + outSlope: 0.0011515616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.4483826 + inSlope: 0.010115957 + outSlope: 0.010115957 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.44900826 + inSlope: 0.0030251173 + outSlope: 0.0030251173 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: 0.44851628 + inSlope: 0.028658537 + outSlope: 0.028658537 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 0.45436108 + inSlope: 0.020613689 + outSlope: 0.020613689 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: 0.45106533 + inSlope: -0.02065566 + outSlope: -0.02065566 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4333334 + value: 0.4469044 + inSlope: 0.023848437 + outSlope: 0.023848437 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3666668 + value: 0.4457154 + inSlope: -0.0010335456 + outSlope: -0.0010335456 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.44589958 + inSlope: -0.0025051855 + outSlope: -0.0025051855 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.5588427 + inSlope: -0.0013035535 + outSlope: -0.0013035535 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.55804425 + inSlope: -0.008137827 + outSlope: -0.008137827 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.5568492 + inSlope: -0.0014537899 + outSlope: -0.0014537899 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: 0.5575096 + inSlope: -0.023193978 + outSlope: -0.023193978 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 0.5533626 + inSlope: -0.0076863244 + outSlope: -0.0076863244 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: 0.5542272 + inSlope: 0.013136539 + outSlope: 0.013136539 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4333334 + value: 0.5577363 + inSlope: -0.019648094 + outSlope: -0.019648094 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3666668 + value: 0.5590386 + inSlope: 0.0024944567 + outSlope: 0.0024944567 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.55883956 + inSlope: 0.0029200343 + outSlope: 0.0029200343 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.53634244 + inSlope: 0.0020956993 + outSlope: 0.0020956993 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.539052 + inSlope: 0.020239057 + outSlope: 0.020239057 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.5415189 + inSlope: -0.019804556 + outSlope: -0.019804556 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: 0.54685163 + inSlope: -0.019542482 + outSlope: -0.019542482 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.53877836 + inSlope: -0.050484587 + outSlope: -0.050484587 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.53843945 + inSlope: 0.005778359 + outSlope: 0.005778359 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 0.5423938 + inSlope: -0.02219258 + outSlope: -0.02219258 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: 0.5385259 + inSlope: -0.036295686 + outSlope: -0.036295686 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: 0.5476654 + inSlope: 0.07161048 + outSlope: 0.07161048 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: 0.5511938 + inSlope: -0.046702668 + outSlope: -0.046702668 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: 0.5350053 + inSlope: -0.04303072 + outSlope: -0.04303072 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.766667 + value: 0.5311154 + inSlope: 0.067747295 + outSlope: 0.067747295 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0333335 + value: 0.5327065 + inSlope: 0.0014671697 + outSlope: 0.0014671697 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4333334 + value: 0.535256 + inSlope: 0.010623317 + outSlope: 0.010623317 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.53634256 + inSlope: -0.021275302 + outSlope: -0.021275302 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.10566862 + inSlope: -0.0074158604 + outSlope: -0.0074158604 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.0856017 + inSlope: 0.059471954 + outSlope: 0.059471954 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.066149816 + inSlope: 0.08492698 + outSlope: 0.08492698 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: -0.06546352 + inSlope: -0.16427177 + outSlope: -0.16427177 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.07197546 + inSlope: 0.14849864 + outSlope: 0.14849864 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.046379894 + inSlope: 0.11732119 + outSlope: 0.11732119 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: -0.022849204 + inSlope: 0.09085575 + outSlope: 0.09085575 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: -0.027140388 + inSlope: -0.083431646 + outSlope: -0.083431646 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: -0.02537761 + inSlope: -0.10661079 + outSlope: -0.10661079 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: -0.04850696 + inSlope: -0.05896384 + outSlope: -0.05896384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: -0.06436238 + inSlope: 0.006521239 + outSlope: 0.006521239 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.766667 + value: -0.0780838 + inSlope: -0.047177196 + outSlope: -0.047177196 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0333335 + value: -0.10075155 + inSlope: -0.019054096 + outSlope: -0.019054096 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4333334 + value: -0.10887 + inSlope: 0.01495865 + outSlope: 0.01495865 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: -0.10566857 + inSlope: -0.0108209355 + outSlope: -0.0108209355 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.12136193 + inSlope: -0.055913772 + outSlope: -0.055913772 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.09146636 + inSlope: -0.07803228 + outSlope: -0.07803228 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.10559682 + inSlope: 0.018452162 + outSlope: 0.018452162 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: -0.09037747 + inSlope: 0.07786419 + outSlope: 0.07786419 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.07810682 + inSlope: 0.30119315 + outSlope: 0.30119315 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.042774137 + inSlope: 0.11179395 + outSlope: 0.11179395 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: -0.012028786 + inSlope: 0.069577985 + outSlope: 0.069577985 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: -0.024870964 + inSlope: 0.2256456 + outSlope: 0.2256456 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: 0.039135132 + inSlope: -0.01290982 + outSlope: -0.01290982 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: -0.009101956 + inSlope: -0.4631198 + outSlope: -0.4631198 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: -0.11495217 + inSlope: -0.29439172 + outSlope: -0.29439172 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.766667 + value: -0.10041747 + inSlope: 0.20672798 + outSlope: 0.20672798 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0333335 + value: -0.07876068 + inSlope: -0.0407248 + outSlope: -0.0407248 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4333334 + value: -0.13717903 + inSlope: -0.047513016 + outSlope: -0.047513016 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: -0.12136181 + inSlope: 0.017915385 + outSlope: 0.017915385 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.8285181 + inSlope: -0.010558962 + outSlope: -0.010558962 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.83290404 + inSlope: -0.015568436 + outSlope: -0.015568436 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.8314029 + inSlope: 0.021962842 + outSlope: 0.021962842 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: 0.8297589 + inSlope: 0.008326426 + outSlope: 0.008326426 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.83572525 + inSlope: 0.07244206 + outSlope: 0.07244206 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.8402989 + inSlope: 0.008577706 + outSlope: 0.008577706 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 0.83972746 + inSlope: 0.01795112 + outSlope: 0.01795112 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: 0.84180444 + inSlope: 0.026540484 + outSlope: 0.026540484 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: 0.83539635 + inSlope: -0.04973887 + outSlope: -0.04973887 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: 0.8329163 + inSlope: 0.021412095 + outSlope: 0.021412095 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: 0.8345136 + inSlope: -0.011820506 + outSlope: -0.011820506 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.766667 + value: 0.8376967 + inSlope: -0.022478722 + outSlope: -0.022478722 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0333335 + value: 0.8365821 + inSlope: -0.0071060723 + outSlope: -0.0071060723 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4333334 + value: 0.82633543 + inSlope: -0.012769081 + outSlope: -0.012769081 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.82851803 + inSlope: 0.015036478 + outSlope: 0.015036478 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0009894603 + inSlope: 0.0012901843 + outSlope: 0.0012901843 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.00093674765 + inSlope: 0.00466156 + outSlope: 0.00466156 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2333333 + value: 0.00009413619 + inSlope: -0.004965927 + outSlope: -0.004965927 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: -1.0080694e-10 + inSlope: 0.00082598225 + outSlope: 0.00082598225 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: -0.000000044499554 + inSlope: -0.0041108257 + outSlope: -0.0041108257 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2333333 + value: -0.000000015763037 + inSlope: -0.000002925853 + outSlope: -0.000002925853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6000001 + value: 0.0020989035 + inSlope: -0.006068589 + outSlope: -0.006068589 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9333334 + value: 0.000111645626 + inSlope: -0.00011421113 + outSlope: -0.00011421113 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5666668 + value: 0.0016361712 + inSlope: -0.0026237895 + outSlope: -0.0026237895 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.0009892478 + inSlope: -0.0013372292 + outSlope: -0.0013372292 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.014679334 + inSlope: 0.0046526263 + outSlope: 0.0046526263 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.014490802 + inSlope: 0.016730392 + outSlope: 0.016730392 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2333333 + value: 0.011465856 + inSlope: -0.017848466 + outSlope: -0.017848466 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: 0.011127403 + inSlope: 0.0029705947 + outSlope: 0.0029705947 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: 0.011127303 + inSlope: -0.014769908 + outSlope: -0.014769908 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2333333 + value: 0.011127445 + inSlope: -0.00000025145852 + outSlope: -0.00000025145852 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6000001 + value: 0.018661471 + inSlope: -0.021777604 + outSlope: -0.021777604 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9333334 + value: 0.011528905 + inSlope: -0.00041365993 + outSlope: -0.00041365993 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5666668 + value: 0.017002491 + inSlope: -0.009422749 + outSlope: -0.009422749 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.014679375 + inSlope: -0.004806244 + outSlope: -0.004806244 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.012189415 + inSlope: -0.01597247 + outSlope: -0.01597247 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.01154273 + inSlope: -0.057436924 + outSlope: -0.057436924 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2333333 + value: -0.0011614696 + inSlope: 0.061247423 + outSlope: 0.061247423 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: 0.000000012102989 + inSlope: -0.01019191 + outSlope: -0.01019191 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: -0.0000000020325515 + inSlope: 0.050677747 + outSlope: 0.050677747 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2333333 + value: 0.000000016790317 + inSlope: -0.0000002898421 + outSlope: -0.0000002898421 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6000001 + value: -0.025862802 + inSlope: 0.074801624 + outSlope: 0.074801624 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9333334 + value: -0.0013778603 + inSlope: 0.0014190336 + outSlope: 0.0014190336 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5666668 + value: -0.020165617 + inSlope: 0.03235574 + outSlope: 0.03235574 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: -0.012189249 + inSlope: 0.016494762 + outSlope: 0.016494762 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9998175 + inSlope: -0.00027000904 + outSlope: -0.00027000904 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.999828 + inSlope: -0.0009083748 + outSlope: -0.0009083748 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2333333 + value: 0.9999336 + inSlope: 0.0003352762 + outSlope: 0.0003352762 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: 0.99993813 + inSlope: -0.000037550828 + outSlope: -0.000037550828 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: 0.99993813 + inSlope: 0.00025838547 + outSlope: 0.00025838547 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2333333 + value: 0.99993813 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6000001 + value: 0.9994891 + inSlope: 0.0023120665 + outSlope: 0.0023120665 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9333334 + value: 0.9999326 + inSlope: 0.0000071525387 + outSlope: 0.0000071525387 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5666668 + value: 0.9996508 + inSlope: 0.0008118161 + outSlope: 0.0008118161 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.9998175 + inSlope: 0.00027895 + outSlope: 0.00027895 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.055074885 + inSlope: -0.005090385 + outSlope: -0.005090385 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.05003998 + inSlope: -0.046738595 + outSlope: -0.046738595 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.047393654 + inSlope: -0.004432409 + outSlope: -0.004432409 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.045096654 + inSlope: 0.018957404 + outSlope: 0.018957404 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333334 + value: 0.05940109 + inSlope: 0.09168383 + outSlope: 0.09168383 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: 0.04973383 + inSlope: -0.0045015886 + outSlope: -0.0045015886 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: 0.04568558 + inSlope: -0.0073004765 + outSlope: -0.0073004765 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0.049286816 + inSlope: -0.006995784 + outSlope: -0.006995784 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: 0.04815941 + inSlope: -0.048237227 + outSlope: -0.048237227 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9000001 + value: 0.047426082 + inSlope: -0.0067198905 + outSlope: -0.0067198905 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: 0.044907127 + inSlope: -0.0047336565 + outSlope: -0.0047336565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2333333 + value: 0.04224676 + inSlope: 0.028340252 + outSlope: 0.028340252 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4333334 + value: 0.04456513 + inSlope: 0.03702201 + outSlope: 0.03702201 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7 + value: 0.051107682 + inSlope: 0.015051361 + outSlope: 0.015051361 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.966667 + value: 0.051743414 + inSlope: 0.0013560276 + outSlope: 0.0013560276 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2333336 + value: 0.051671565 + inSlope: 0.009299396 + outSlope: 0.009299396 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.766667 + value: 0.055511393 + inSlope: -0.014172191 + outSlope: -0.014172191 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.05509896 + inSlope: -0.012373042 + outSlope: -0.012373042 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.22993691 + inSlope: -0.016021729 + outSlope: -0.016021729 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.22328521 + inSlope: -0.003018606 + outSlope: -0.003018606 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.23837416 + inSlope: 0.091281146 + outSlope: 0.091281146 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.24283162 + inSlope: 0.009852411 + outSlope: 0.009852411 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333334 + value: 0.22683641 + inSlope: -0.27454573 + outSlope: -0.27454573 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: 0.21853076 + inSlope: -0.11734273 + outSlope: -0.11734273 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: 0.2199647 + inSlope: 0.12616542 + outSlope: 0.12616542 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0.23307712 + inSlope: 0.059307788 + outSlope: 0.059307788 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: 0.24939403 + inSlope: 0.26886576 + outSlope: 0.26886576 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9000001 + value: 0.2436443 + inSlope: -0.32182312 + outSlope: -0.32182312 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: 0.2243819 + inSlope: 0.10523926 + outSlope: 0.10523926 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2333333 + value: 0.22745629 + inSlope: -0.056642827 + outSlope: -0.056642827 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4333334 + value: 0.24962388 + inSlope: 0.15844695 + outSlope: 0.15844695 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7 + value: 0.24532779 + inSlope: -0.19219536 + outSlope: -0.19219536 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.966667 + value: 0.21473177 + inSlope: 0.015446577 + outSlope: 0.015446577 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2333336 + value: 0.23875892 + inSlope: 0.15244417 + outSlope: 0.15244417 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.766667 + value: 0.23171474 + inSlope: -0.05924089 + outSlope: -0.05924089 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.22993527 + inSlope: -0.05338406 + outSlope: -0.05338406 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.06927375 + inSlope: -0.022404043 + outSlope: -0.022404043 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.07015146 + inSlope: 0.0027890506 + outSlope: 0.0027890506 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.06501674 + inSlope: -0.049368188 + outSlope: -0.049368188 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.051503513 + inSlope: -0.015461615 + outSlope: -0.015461615 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333334 + value: 0.056435585 + inSlope: 0.023688713 + outSlope: 0.023688713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: 0.059277624 + inSlope: 0.027004171 + outSlope: 0.027004171 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: 0.057659328 + inSlope: -0.012372147 + outSlope: -0.012372147 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0.056430157 + inSlope: 0.0031991503 + outSlope: 0.0031991503 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: 0.050769553 + inSlope: -0.029072436 + outSlope: -0.029072436 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9000001 + value: 0.061349723 + inSlope: 0.13052624 + outSlope: 0.13052624 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: 0.06987223 + inSlope: 0.008691371 + outSlope: 0.008691371 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2333333 + value: 0.061746318 + inSlope: -0.005354575 + outSlope: -0.005354575 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4333334 + value: 0.05911593 + inSlope: -0.074436344 + outSlope: -0.074436344 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7 + value: 0.062544994 + inSlope: 0.07625099 + outSlope: 0.07625099 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.966667 + value: 0.07364255 + inSlope: 0.019470882 + outSlope: 0.019470882 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2333336 + value: 0.06919386 + inSlope: -0.03961861 + outSlope: -0.03961861 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.766667 + value: 0.068662636 + inSlope: 0.018872153 + outSlope: 0.018872153 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.06928185 + inSlope: 0.018576328 + outSlope: 0.018576328 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9691733 + inSlope: 0.00567913 + outSlope: 0.00567913 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.97093695 + inSlope: 0.002912879 + outSlope: 0.002912879 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.9678349 + inSlope: -0.018897053 + outSlope: -0.018897053 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.96765 + inSlope: -0.0025400447 + outSlope: -0.0025400447 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333334 + value: 0.9704802 + inSlope: 0.05746628 + outSlope: 0.05746628 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: 0.97275746 + inSlope: 0.02481135 + outSlope: 0.02481135 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: 0.9727301 + inSlope: -0.0273371 + outSlope: -0.0273371 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0.9695677 + inSlope: -0.014021672 + outSlope: -0.014021672 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: 0.96587044 + inSlope: -0.06530291 + outSlope: -0.06530291 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9000001 + value: 0.9667598 + inSlope: 0.073130496 + outSlope: 0.073130496 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: 0.9709552 + inSlope: -0.024790786 + outSlope: -0.024790786 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2333333 + value: 0.97091 + inSlope: 0.012432034 + outSlope: 0.012432034 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4333334 + value: 0.96550876 + inSlope: -0.038012303 + outSlope: -0.038012303 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7 + value: 0.9660696 + inSlope: 0.042992108 + outSlope: 0.042992108 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.966667 + value: 0.9725172 + inSlope: -0.004956709 + outSlope: -0.004956709 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2333336 + value: 0.96723133 + inSlope: -0.03521386 + outSlope: -0.03521386 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.766667 + value: 0.9687684 + inSlope: 0.013657821 + outSlope: 0.013657821 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.96917176 + inSlope: 0.01210035 + outSlope: 0.01210035 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.1576385 + inSlope: -0.035338104 + outSlope: -0.035338104 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.15561305 + inSlope: -0.043020844 + outSlope: -0.043020844 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.14976203 + inSlope: 0.027918022 + outSlope: 0.027918022 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: 0.15340488 + inSlope: 0.08377829 + outSlope: 0.08377829 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2333333 + value: 0.15389875 + inSlope: 0.0315778 + outSlope: 0.0315778 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.14720497 + inSlope: -0.015351861 + outSlope: -0.015351861 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: 0.14711997 + inSlope: 0.14083552 + outSlope: 0.14083552 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: 0.15631542 + inSlope: -0.002369287 + outSlope: -0.002369287 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6000001 + value: 0.14486286 + inSlope: 0.072464414 + outSlope: 0.072464414 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0333335 + value: 0.16106954 + inSlope: -0.01829246 + outSlope: -0.01829246 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4 + value: 0.15053932 + inSlope: 0.001869725 + outSlope: 0.001869725 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.15766919 + inSlope: -0.0016133502 + outSlope: -0.0016133502 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.17653191 + inSlope: 0.020889936 + outSlope: 0.020889936 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.17374484 + inSlope: 0.045102462 + outSlope: 0.045102462 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.16722548 + inSlope: -0.031380758 + outSlope: -0.031380758 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: -0.1629473 + inSlope: -0.07717439 + outSlope: -0.07717439 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2333333 + value: -0.17029959 + inSlope: -0.030125849 + outSlope: -0.030125849 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: -0.16215798 + inSlope: 0.017636882 + outSlope: 0.017636882 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: -0.16448225 + inSlope: -0.1611168 + outSlope: -0.1611168 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: -0.17520115 + inSlope: 0.004275892 + outSlope: 0.004275892 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6000001 + value: -0.16257557 + inSlope: -0.06654544 + outSlope: -0.06654544 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0333335 + value: -0.18049052 + inSlope: 0.01932377 + outSlope: 0.01932377 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4 + value: -0.16948768 + inSlope: -0.0016064213 + outSlope: -0.0016064213 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: -0.17652164 + inSlope: 0.012547386 + outSlope: 0.012547386 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.31735268 + inSlope: 0.02874702 + outSlope: 0.02874702 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.3189532 + inSlope: -0.0055114888 + outSlope: -0.0055114888 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.31994188 + inSlope: 0.009522745 + outSlope: 0.009522745 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: -0.3369037 + inSlope: -0.0049162246 + outSlope: -0.0049162246 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2333333 + value: -0.32236543 + inSlope: -0.005253072 + outSlope: -0.005253072 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: -0.3256444 + inSlope: -0.0031390819 + outSlope: -0.0031390819 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: -0.320624 + inSlope: 0.04075343 + outSlope: 0.04075343 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: -0.31724402 + inSlope: -0.002063068 + outSlope: -0.002063068 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6000001 + value: -0.31996098 + inSlope: -0.011615317 + outSlope: -0.011615317 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0333335 + value: -0.31620976 + inSlope: -0.002131464 + outSlope: -0.002131464 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4 + value: -0.31723875 + inSlope: 0.000020563602 + outSlope: 0.000020563602 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: -0.31735536 + inSlope: -0.022022745 + outSlope: -0.022022745 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.91829944 + inSlope: 0.019964574 + outSlope: 0.019964574 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.9186219 + inSlope: 0.013891161 + outSlope: 0.013891161 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.92045873 + inSlope: -0.006874508 + outSlope: -0.006874508 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: 0.9145551 + inSlope: -0.02965364 + outSlope: -0.02965364 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2333333 + value: 0.9183647 + inSlope: -0.012775328 + outSlope: -0.012775328 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.91977787 + inSlope: 0.00443906 + outSlope: 0.00443906 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: 0.92114145 + inSlope: -0.03714499 + outSlope: -0.03714499 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: 0.9188179 + inSlope: 0.0005024676 + outSlope: 0.0005024676 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6000001 + value: 0.92206776 + inSlope: -0.02719852 + outSlope: -0.02719852 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0333335 + value: 0.9173283 + inSlope: 0.006267434 + outSlope: 0.006267434 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4 + value: 0.9208536 + inSlope: -0.0005945569 + outSlope: -0.0005945569 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.9182952 + inSlope: -0.0049102353 + outSlope: -0.0049102353 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.03730179 + inSlope: 0.006089061 + outSlope: 0.006089061 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.042844556 + inSlope: 0.016065482 + outSlope: 0.016065482 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: 0.038964324 + inSlope: -0.0011017187 + outSlope: -0.0011017187 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: 0.047620233 + inSlope: -0.02943621 + outSlope: -0.02943621 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: 0.0366954 + inSlope: 0.017031975 + outSlope: 0.017031975 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4666667 + value: 0.045774102 + inSlope: 0.014500679 + outSlope: 0.014500679 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.03613005 + inSlope: 0.027543519 + outSlope: 0.027543519 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.037216615 + inSlope: 0.000008158394 + outSlope: 0.000008158394 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.2448097 + inSlope: 0.0031560657 + outSlope: 0.0031560657 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.24194898 + inSlope: 0.008258969 + outSlope: 0.008258969 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: -0.24393468 + inSlope: -0.0005534296 + outSlope: -0.0005534296 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: -0.23948589 + inSlope: -0.0150735825 + outSlope: -0.0150735825 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: -0.2450905 + inSlope: 0.00877795 + outSlope: 0.00877795 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4666667 + value: -0.24042188 + inSlope: 0.0074504996 + outSlope: 0.0074504996 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: -0.24537261 + inSlope: 0.014174147 + outSlope: 0.014174147 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: -0.24481389 + inSlope: 0.000004023317 + outSlope: 0.000004023317 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.2878655 + inSlope: -0.0031659005 + outSlope: -0.0031659005 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.28626522 + inSlope: -0.0044828653 + outSlope: -0.0044828653 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: 0.2873375 + inSlope: 0.0003236537 + outSlope: 0.0003236537 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: 0.2849215 + inSlope: 0.0084444955 + outSlope: 0.0084444955 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: 0.2879463 + inSlope: -0.004503415 + outSlope: -0.004503415 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4666667 + value: 0.28545722 + inSlope: -0.004141327 + outSlope: -0.004141327 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.28809273 + inSlope: -0.007244654 + outSlope: -0.007244654 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.28782272 + inSlope: -0.000008046634 + outSlope: -0.000008046634 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.92510015 + inSlope: 0.0015735625 + outSlope: 0.0015735625 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.92610866 + inSlope: 0.0028011203 + outSlope: 0.0028011203 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: 0.92542684 + inSlope: -0.00019937765 + outSlope: -0.00019937765 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: 0.92692965 + inSlope: -0.0050175237 + outSlope: -0.0050175237 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: 0.92502487 + inSlope: 0.0030532386 + outSlope: 0.0030532386 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4666667 + value: 0.9266155 + inSlope: 0.0024980283 + outSlope: 0.0024980283 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.92492676 + inSlope: 0.004934375 + outSlope: 0.004934375 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.92511576 + inSlope: 0.000003576282 + outSlope: 0.000003576282 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.092984945 + inSlope: -0.0000029057262 + outSlope: -0.0000029057262 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.09214348 + inSlope: -0.002318102 + outSlope: -0.002318102 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: -0.09258488 + inSlope: -0.0016150266 + outSlope: -0.0016150266 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9000001 + value: -0.09264834 + inSlope: 0.00024922218 + outSlope: 0.00024922218 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7333336 + value: -0.092853054 + inSlope: -0.00004458631 + outSlope: -0.00004458631 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.7333336 + value: -0.092949994 + inSlope: 0.0025666528 + outSlope: 0.0025666528 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: -0.09278668 + inSlope: 0.0026126977 + outSlope: 0.0026126977 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2/mixamorig:LeftHandThumb3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.029208053 + inSlope: 0.000001285225 + outSlope: 0.000001285225 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.028097637 + inSlope: -0.00089135877 + outSlope: -0.00089135877 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: 0.028976496 + inSlope: 0.00017160561 + outSlope: 0.00017160561 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9000001 + value: 0.029386895 + inSlope: 0.011417197 + outSlope: 0.011417197 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7333336 + value: 0.029137854 + inSlope: 0.008338433 + outSlope: 0.008338433 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.7333336 + value: 0.029210752 + inSlope: 0.0008249198 + outSlope: 0.0008249198 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.029318549 + inSlope: 0.0029338924 + outSlope: 0.0029338924 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2/mixamorig:LeftHandThumb3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.08175441 + inSlope: 0.0000020116568 + outSlope: 0.0000020116568 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.07732468 + inSlope: 0.0019420383 + outSlope: 0.0019420383 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: 0.08051286 + inSlope: 0.003455806 + outSlope: 0.003455806 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9000001 + value: 0.081726566 + inSlope: 0.030012272 + outSlope: 0.030012272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7333336 + value: 0.08143941 + inSlope: 0.022320263 + outSlope: 0.022320263 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.7333336 + value: 0.08192029 + inSlope: 0.0022467992 + outSlope: 0.0022467992 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.08176806 + inSlope: -0.0054379604 + outSlope: -0.0054379604 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2/mixamorig:LeftHandThumb3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.99187547 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.99234116 + inSlope: -0.0003424296 + outSlope: -0.0003424296 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: 0.9920212 + inSlope: -0.00043541237 + outSlope: -0.00043541237 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9000001 + value: 0.99190396 + inSlope: -0.0027743008 + outSlope: -0.0027743008 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7333336 + value: 0.9919158 + inSlope: -0.0020787048 + outSlope: -0.0020787048 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.7333336 + value: 0.991865 + inSlope: 0.00003129247 + outSlope: 0.00003129247 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.99188966 + inSlope: 0.0006061798 + outSlope: 0.0006061798 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2/mixamorig:LeftHandThumb3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.062173918 + inSlope: -0.009663104 + outSlope: -0.009663104 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.057047073 + inSlope: -0.012573927 + outSlope: -0.012573927 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.05774696 + inSlope: -0.12063667 + outSlope: -0.12063667 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: 0.06560595 + inSlope: -0.0051793507 + outSlope: -0.0051793507 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: 0.06524592 + inSlope: 0.07396295 + outSlope: 0.07396295 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2333333 + value: 0.064802 + inSlope: -0.02264265 + outSlope: -0.02264265 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7333336 + value: 0.06254439 + inSlope: 0.045371275 + outSlope: 0.045371275 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5666668 + value: 0.06064644 + inSlope: 0.02078971 + outSlope: 0.02078971 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.062172618 + inSlope: -0.023019299 + outSlope: -0.023019299 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.03016696 + inSlope: -0.0071064006 + outSlope: -0.0071064006 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.03112843 + inSlope: 0.002805899 + outSlope: 0.002805899 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.030267192 + inSlope: 0.027817337 + outSlope: 0.027817337 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: 0.029590692 + inSlope: 0.0047619874 + outSlope: 0.0047619874 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: 0.0302053 + inSlope: -0.0239276 + outSlope: -0.0239276 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2333333 + value: 0.0292672 + inSlope: 0.003488076 + outSlope: 0.003488076 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7333336 + value: 0.029917995 + inSlope: -0.009570286 + outSlope: -0.009570286 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5666668 + value: 0.030269606 + inSlope: -0.003819106 + outSlope: -0.003819106 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.030176384 + inSlope: -0.00055672653 + outSlope: -0.00055672653 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.036988508 + inSlope: 0.00319574 + outSlope: 0.00319574 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.03946851 + inSlope: -0.007166083 + outSlope: -0.007166083 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.038674105 + inSlope: -0.046642743 + outSlope: -0.046642743 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: -0.0370625 + inSlope: -0.004918673 + outSlope: -0.004918673 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: -0.037507437 + inSlope: 0.03172826 + outSlope: 0.03172826 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2333333 + value: -0.036480058 + inSlope: -0.0048404606 + outSlope: -0.0048404606 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7333336 + value: -0.036969814 + inSlope: 0.0152435005 + outSlope: 0.0152435005 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5666668 + value: -0.037444334 + inSlope: 0.010499909 + outSlope: 0.010499909 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: -0.036974873 + inSlope: -0.0029853014 + outSlope: -0.0029853014 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9969234 + inSlope: 0.0009334087 + outSlope: 0.0009334087 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.99710524 + inSlope: 0.00035315793 + outSlope: 0.00035315793 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.99712265 + inSlope: 0.0042995773 + outSlope: 0.0042995773 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: 0.99671793 + inSlope: 0.00001341106 + outSlope: 0.00001341106 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: 0.9967065 + inSlope: -0.0028869477 + outSlope: -0.0028869477 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2333333 + value: 0.99680156 + inSlope: 0.0011792725 + outSlope: 0.0011792725 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7333336 + value: 0.9969084 + inSlope: -0.0019857234 + outSlope: -0.0019857234 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5666668 + value: 0.99699736 + inSlope: -0.0007492311 + outSlope: -0.0007492311 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.9969237 + inSlope: 0.0013500465 + outSlope: 0.0013500465 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.15033099 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.15033099 + inSlope: 0 + 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: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.005167936 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: -0.005167936 + inSlope: 0 + 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: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.020786507 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.020786507 + inSlope: 0 + 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: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9884037 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.9884037 + inSlope: 0 + 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: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.06983134 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.06983134 + inSlope: 0 + 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: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2/mixamorig:LeftHandIndex3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.00000012035017 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: -0.00000012035017 + inSlope: 0 + 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: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2/mixamorig:LeftHandIndex3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.009283831 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.009283831 + inSlope: 0 + 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: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2/mixamorig:LeftHandIndex3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9975156 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.9975156 + inSlope: 0 + 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: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2/mixamorig:LeftHandIndex3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.13203765 + inSlope: -0.012123584 + outSlope: -0.012123584 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.12922391 + inSlope: -0.010183461 + outSlope: -0.010183461 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.12978832 + inSlope: -0.13789316 + outSlope: -0.13789316 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: 0.13723662 + inSlope: 0.0051400107 + outSlope: 0.0051400107 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: 0.13722765 + inSlope: 0.054543115 + outSlope: 0.054543115 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: 0.13708109 + inSlope: 0.006501234 + outSlope: 0.006501234 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7 + value: 0.13334796 + inSlope: 0.03873658 + outSlope: 0.03873658 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6666667 + value: 0.13098852 + inSlope: 0.023345646 + outSlope: 0.023345646 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.13204011 + inSlope: -0.025864566 + outSlope: -0.025864566 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.03366998 + inSlope: 0.0071837376 + outSlope: 0.0071837376 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.035175107 + inSlope: 0.0015846826 + outSlope: 0.0015846826 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.03440196 + inSlope: -0.00011041688 + outSlope: -0.00011041688 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: 0.034078654 + inSlope: -0.006370348 + outSlope: -0.006370348 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: 0.03437861 + inSlope: -0.024441268 + outSlope: -0.024441268 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: 0.033144947 + inSlope: 0.0034175843 + outSlope: 0.0034175843 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7 + value: 0.03400664 + inSlope: -0.011791131 + outSlope: -0.011791131 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6666667 + value: 0.03391288 + inSlope: -0.0044000978 + outSlope: -0.0044000978 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.033677872 + inSlope: 0.0000735373 + outSlope: 0.0000735373 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.003187294 + inSlope: -0.018118264 + outSlope: -0.018118264 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.007043765 + inSlope: -0.005094312 + outSlope: -0.005094312 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.0051720166 + inSlope: -0.01810128 + outSlope: -0.01810128 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: -0.0034481934 + inSlope: 0.015132941 + outSlope: 0.015132941 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: -0.0041302834 + inSlope: 0.062822275 + outSlope: 0.062822275 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: -0.0013501445 + inSlope: -0.0069304453 + outSlope: -0.0069304453 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7 + value: -0.0037916398 + inSlope: 0.032108538 + outSlope: 0.032108538 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6666667 + value: -0.003882714 + inSlope: 0.013190008 + outSlope: 0.013190008 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: -0.0032053282 + inSlope: -0.003491024 + outSlope: -0.003491024 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9906676 + inSlope: 0.0013035535 + outSlope: 0.0013035535 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.9909664 + inSlope: 0.0012382874 + outSlope: 0.0012382874 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.9909313 + inSlope: 0.017944857 + outSlope: 0.017944857 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: 0.9899459 + inSlope: -0.0004380952 + outSlope: -0.0004380952 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: 0.98993415 + inSlope: -0.0064194137 + outSlope: -0.0064194137 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: 0.99000424 + inSlope: -0.001027287 + outSlope: -0.001027287 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7 + value: 0.99047846 + inSlope: -0.004684018 + outSlope: -0.004684018 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6666667 + value: 0.9907961 + inSlope: -0.002887835 + outSlope: -0.002887835 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.9906669 + inSlope: 0.0034457478 + outSlope: 0.0034457478 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.1504585 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.1504585 + inSlope: 0 + 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: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.013496641 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: -0.013496641 + inSlope: 0 + 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: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.02151669 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.02151669 + inSlope: 0 + 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: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.98829 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.98829 + inSlope: 0 + 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: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.15932482 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.15932482 + inSlope: 0 + 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: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2/mixamorig:LeftHandMiddle3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0029592323 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.0029592323 + inSlope: 0 + 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: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2/mixamorig:LeftHandMiddle3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.021945626 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.021945626 + inSlope: 0 + 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: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2/mixamorig:LeftHandMiddle3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9869779 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.9869779 + inSlope: 0 + 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: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2/mixamorig:LeftHandMiddle3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.2291177 + inSlope: 0.001297742 + outSlope: 0.001297742 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.22516851 + inSlope: -0.015439024 + outSlope: -0.015439024 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.22337933 + inSlope: -0.056465473 + outSlope: -0.056465473 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: 0.230847 + inSlope: -0.0003764038 + outSlope: -0.0003764038 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: 0.2312215 + inSlope: 0.06065049 + outSlope: 0.06065049 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: 0.22802016 + inSlope: -0.031298503 + outSlope: -0.031298503 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2000003 + value: 0.22770248 + inSlope: -0.029638093 + outSlope: -0.029638093 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.22914438 + inSlope: -0.011634093 + outSlope: -0.011634093 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.012714133 + inSlope: 0.0033520905 + outSlope: 0.0033520905 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.014015465 + inSlope: 0.0012308266 + outSlope: 0.0012308266 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.014296591 + inSlope: 0.004269089 + outSlope: 0.004269089 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: 0.012952143 + inSlope: 0.0027915537 + outSlope: 0.0027915537 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: 0.013136552 + inSlope: -0.022982985 + outSlope: -0.022982985 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: 0.013806346 + inSlope: 0.010337761 + outSlope: 0.010337761 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2000003 + value: 0.0137082245 + inSlope: 0.008661695 + outSlope: 0.008661695 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.012609173 + inSlope: 0.00021348728 + outSlope: 0.00021348728 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.021682212 + inSlope: -0.00584308 + outSlope: -0.00584308 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.01967573 + inSlope: -0.0035444838 + outSlope: -0.0035444838 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.019251231 + inSlope: -0.010007611 + outSlope: -0.010007611 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: 0.021358544 + inSlope: -0.0028504087 + outSlope: -0.0028504087 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: 0.021343492 + inSlope: 0.030148193 + outSlope: 0.030148193 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: 0.020218028 + inSlope: -0.013546845 + outSlope: -0.013546845 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2000003 + value: 0.020541612 + inSlope: -0.0120595135 + outSlope: -0.0120595135 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.021618476 + inSlope: -0.0013455761 + outSlope: -0.0013455761 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.97307414 + inSlope: -0.00021815299 + outSlope: -0.00021815299 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.9740203 + inSlope: 0.003626348 + outSlope: 0.003626348 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.9744366 + inSlope: 0.013156248 + outSlope: 0.013156248 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: 0.9726694 + inSlope: 0.000113546965 + outSlope: 0.000113546965 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: 0.9725783 + inSlope: -0.014744086 + outSlope: -0.014744086 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: 0.97334856 + inSlope: 0.007464595 + outSlope: 0.007464595 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2000003 + value: 0.9734176 + inSlope: 0.0070702815 + outSlope: 0.0070702815 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.9730707 + inSlope: 0.0027698304 + outSlope: 0.0027698304 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.1507245 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.1507245 + inSlope: 0 + 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: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0001414011 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: -0.0001414011 + inSlope: 0 + 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: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.020038985 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.020038985 + inSlope: 0 + 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: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9883727 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.9883727 + inSlope: 0 + 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: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.14296569 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.14296569 + inSlope: 0 + 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: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2/mixamorig:LeftHandPinky3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.000000047065758 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: -0.000000047065758 + inSlope: 0 + 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: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2/mixamorig:LeftHandPinky3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.018986594 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.018986594 + inSlope: 0 + 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: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2/mixamorig:LeftHandPinky3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9895455 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.9895455 + inSlope: 0 + 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: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2/mixamorig:LeftHandPinky3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.57109386 + inSlope: 0.00086367124 + outSlope: 0.00086367124 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.5722606 + inSlope: -0.0022003064 + outSlope: -0.0022003064 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.5539245 + inSlope: -0.01270655 + outSlope: -0.01270655 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: 0.57413113 + inSlope: -0.021157186 + outSlope: -0.021157186 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: 0.5627125 + inSlope: -0.01988406 + outSlope: -0.01988406 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: 0.5661772 + inSlope: -0.015705198 + outSlope: -0.015705198 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.57889766 + inSlope: 0.1603426 + outSlope: 0.1603426 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: 0.5732318 + inSlope: -0.22672734 + outSlope: -0.22672734 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: 0.5494301 + inSlope: 0.031787686 + outSlope: 0.031787686 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3000002 + value: 0.5692193 + inSlope: 0.07270492 + outSlope: 0.07270492 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6333334 + value: 0.574408 + inSlope: -0.007906266 + outSlope: -0.007906266 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: 0.5696106 + inSlope: 0.0038588084 + outSlope: 0.0038588084 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.5709602 + inSlope: -0.009101638 + outSlope: -0.009101638 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.4106245 + inSlope: -0.0023674963 + outSlope: -0.0023674963 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.40894347 + inSlope: 0.000020115753 + outSlope: 0.000020115753 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.4275443 + inSlope: 0.022658888 + outSlope: 0.022658888 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: 0.40692794 + inSlope: 0.021552805 + outSlope: 0.021552805 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: 0.41948402 + inSlope: 0.023031628 + outSlope: 0.023031628 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: 0.41613594 + inSlope: 0.01910355 + outSlope: 0.01910355 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.40137136 + inSlope: -0.18854964 + outSlope: -0.18854964 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: 0.40791303 + inSlope: 0.25574932 + outSlope: 0.25574932 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: 0.43412018 + inSlope: -0.033205673 + outSlope: -0.033205673 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3000002 + value: 0.41268632 + inSlope: -0.08242838 + outSlope: -0.08242838 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6333334 + value: 0.40644446 + inSlope: 0.010247389 + outSlope: 0.010247389 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: 0.41222394 + inSlope: -0.004685377 + outSlope: -0.004685377 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.41057327 + inSlope: 0.011527251 + outSlope: 0.011527251 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.4644053 + inSlope: 0.0042521954 + outSlope: 0.0042521954 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.45601144 + inSlope: 0.06406952 + outSlope: 0.06406952 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.42361027 + inSlope: -0.09000552 + outSlope: -0.09000552 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: -0.4632648 + inSlope: 0.09777975 + outSlope: 0.09777975 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: -0.4485808 + inSlope: -0.011743622 + outSlope: -0.011743622 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: -0.46647835 + inSlope: -0.07650946 + outSlope: -0.07650946 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: -0.4623801 + inSlope: 0.055604927 + outSlope: 0.055604927 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: -0.48589146 + inSlope: -0.33053428 + outSlope: -0.33053428 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: -0.50512964 + inSlope: 0.031367514 + outSlope: 0.031367514 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3000002 + value: -0.47715577 + inSlope: 0.16676204 + outSlope: 0.16676204 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6333334 + value: -0.45664635 + inSlope: -0.03437209 + outSlope: -0.03437209 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: -0.4687135 + inSlope: 0.02981904 + outSlope: 0.02981904 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: -0.46450606 + inSlope: 0.018203275 + outSlope: 0.018203275 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.5381143 + inSlope: 0.004559755 + outSlope: 0.004559755 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.5452858 + inSlope: 0.055764057 + outSlope: 0.055764057 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.5752633 + inSlope: -0.07117775 + outSlope: -0.07117775 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: 0.5386732 + inSlope: 0.08964998 + outSlope: 0.08964998 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: 0.55332005 + inSlope: -0.006724321 + outSlope: -0.006724321 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: 0.5372823 + inSlope: -0.06445697 + outSlope: -0.06445697 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.53850085 + inSlope: 0.01660289 + outSlope: 0.01660289 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: 0.5185766 + inSlope: -0.26028627 + outSlope: -0.26028627 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: 0.50449014 + inSlope: 0.02525924 + outSlope: 0.02525924 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3000002 + value: 0.52725875 + inSlope: 0.13706191 + outSlope: 0.13706191 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6333334 + value: 0.5443643 + inSlope: -0.028135505 + outSlope: -0.028135505 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: 0.5347177 + inSlope: 0.025633898 + outSlope: 0.025633898 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.5382083 + inSlope: 0.016599312 + outSlope: 0.016599312 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.4674927 + inSlope: -0.004273653 + outSlope: -0.004273653 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.45638523 + inSlope: -0.072274365 + outSlope: -0.072274365 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.44037297 + inSlope: -0.1423829 + outSlope: -0.1423829 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.45522213 + inSlope: 0.19341993 + outSlope: 0.19341993 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.4931146 + inSlope: 0.24747983 + outSlope: 0.24747983 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.5087402 + inSlope: 0.021948537 + outSlope: 0.021948537 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.5031976 + inSlope: -0.08165009 + outSlope: -0.08165009 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 0.4976642 + inSlope: 0.0041958736 + outSlope: 0.0041958736 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666668 + value: 0.49222317 + inSlope: -0.20404807 + outSlope: -0.20404807 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 0.43835062 + inSlope: -0.29631376 + outSlope: -0.29631376 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.43679705 + inSlope: 0.36856538 + outSlope: 0.36856538 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: 0.4740199 + inSlope: 0.00070066005 + outSlope: 0.00070066005 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: 0.44239798 + inSlope: -0.12240197 + outSlope: -0.12240197 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: 0.4338683 + inSlope: -0.06383568 + outSlope: -0.06383568 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: 0.44305366 + inSlope: 0.15710697 + outSlope: 0.15710697 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3666668 + value: 0.44260383 + inSlope: -0.14824763 + outSlope: -0.14824763 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5666668 + value: 0.43713892 + inSlope: 0.10340328 + outSlope: 0.10340328 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.766667 + value: 0.44939283 + inSlope: 0.030674666 + outSlope: 0.030674666 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.45745626 + inSlope: 0.03359336 + outSlope: 0.03359336 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4 + value: 0.45252487 + inSlope: 0.012718154 + outSlope: 0.012718154 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.46745378 + inSlope: 0.039629675 + outSlope: 0.039629675 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.18209015 + inSlope: -0.008947401 + outSlope: -0.008947401 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.19084993 + inSlope: -0.04625872 + outSlope: -0.04625872 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.122756936 + inSlope: -0.4931988 + outSlope: -0.4931988 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.059084512 + inSlope: -0.88780093 + outSlope: -0.88780093 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.16609423 + inSlope: -0.20517951 + outSlope: -0.20517951 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.14496352 + inSlope: 0.61272466 + outSlope: 0.61272466 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.08861724 + inSlope: 0.10405114 + outSlope: 0.10405114 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -0.12529951 + inSlope: -0.4870076 + outSlope: -0.4870076 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666668 + value: -0.12038317 + inSlope: 0.49536943 + outSlope: 0.49536943 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 0.02134806 + inSlope: 1.0457783 + outSlope: 1.0457783 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.0981567 + inSlope: 0.18450353 + outSlope: 0.18450353 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: 0.11730203 + inSlope: 0.7930008 + outSlope: 0.7930008 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: 0.2565941 + inSlope: 0.46969348 + outSlope: 0.46969348 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: 0.22214192 + inSlope: -0.4302804 + outSlope: -0.4302804 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: 0.18027727 + inSlope: -0.19911867 + outSlope: -0.19911867 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3666668 + value: 0.17354207 + inSlope: 0.07133319 + outSlope: 0.07133319 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5666668 + value: 0.18072078 + inSlope: 0.00900709 + outSlope: 0.00900709 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.766667 + value: 0.1841077 + inSlope: -0.048921973 + outSlope: -0.048921973 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.18219148 + inSlope: 0.04232038 + outSlope: 0.04232038 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4 + value: 0.19997093 + inSlope: -0.08159354 + outSlope: -0.08159354 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.18210196 + inSlope: -0.04014153 + outSlope: -0.04014153 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.17450248 + inSlope: 0.003543645 + outSlope: 0.003543645 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.18877907 + inSlope: 0.046003688 + outSlope: 0.046003688 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.18546532 + inSlope: 0.059704207 + outSlope: 0.059704207 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.123150066 + inSlope: -0.37514073 + outSlope: -0.37514073 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.066587515 + inSlope: -0.28925174 + outSlope: -0.28925174 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.014500177 + inSlope: -0.7571492 + outSlope: -0.7571492 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.033682667 + inSlope: 0.015897632 + outSlope: 0.015897632 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -0.018405482 + inSlope: 0.07528247 + outSlope: 0.07528247 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666668 + value: 0.0004333538 + inSlope: 0.14470541 + outSlope: 0.14470541 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 0.09085254 + inSlope: 0.9469689 + outSlope: 0.9469689 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.13127454 + inSlope: -0.65390587 + outSlope: -0.65390587 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: 0.014918767 + inSlope: -0.84119666 + outSlope: -0.84119666 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: -0.0077100135 + inSlope: -0.11339519 + outSlope: -0.11339519 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: -0.047242608 + inSlope: 0.0038967133 + outSlope: 0.0038967133 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: 0.037447114 + inSlope: 0.76621974 + outSlope: 0.76621974 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3666668 + value: 0.20404948 + inSlope: 0.6728178 + outSlope: 0.6728178 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5666668 + value: 0.25217158 + inSlope: -0.16459593 + outSlope: -0.16459593 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.766667 + value: 0.18885536 + inSlope: -0.5108804 + outSlope: -0.5108804 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.10019183 + inSlope: 0.16760021 + outSlope: 0.16760021 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4 + value: 0.19322293 + inSlope: 0.09379269 + outSlope: 0.09379269 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.1744968 + inSlope: -0.028299566 + outSlope: -0.028299566 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.84725595 + inSlope: 0.0035494564 + outSlope: 0.0035494564 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.8483227 + inSlope: 0.038979653 + outSlope: 0.038979653 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.8698304 + inSlope: 0.12850648 + outSlope: 0.12850648 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.8798386 + inSlope: -0.107150696 + outSlope: -0.107150696 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.85136175 + inSlope: -0.15987486 + outSlope: -0.15987486 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.8485038 + inSlope: 0.101303555 + outSlope: 0.101303555 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.85895556 + inSlope: 0.06003058 + outSlope: 0.06003058 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 0.85807437 + inSlope: -0.07086939 + outSlope: -0.07086939 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666668 + value: 0.8621044 + inSlope: 0.18308124 + outSlope: 0.18308124 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 0.89394563 + inSlope: 0.024164043 + outSlope: 0.024164043 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.8845002 + inSlope: -0.11524479 + outSlope: -0.11524479 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: 0.87253815 + inSlope: -0.09191114 + outSlope: -0.09191114 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: 0.85929275 + inSlope: -0.073593415 + outSlope: -0.073593415 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: 0.87188274 + inSlope: 0.14271674 + outSlope: 0.14271674 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: 0.8773832 + inSlope: -0.071877904 + outSlope: -0.071877904 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3666668 + value: 0.8557738 + inSlope: -0.096511334 + outSlope: -0.096511334 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5666668 + value: 0.8441914 + inSlope: -0.006562478 + outSlope: -0.006562478 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.766667 + value: 0.8535128 + inSlope: 0.1071472 + outSlope: 0.1071472 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.86458176 + inSlope: -0.04640226 + outSlope: -0.04640226 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4 + value: 0.8472885 + inSlope: -0.008828946 + outSlope: -0.008828946 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.84727603 + inSlope: -0.00732959 + outSlope: -0.00732959 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0045341025 + inSlope: -0.0014470516 + outSlope: -0.0014470516 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.008362127 + inSlope: 0.04662791 + outSlope: 0.04662791 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.020392932 + inSlope: 0.117929846 + outSlope: 0.117929846 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.04094859 + inSlope: 0.11877403 + outSlope: 0.11877403 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.053826593 + inSlope: 0.06719605 + outSlope: 0.06719605 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.06007199 + inSlope: 0.07161717 + outSlope: 0.07161717 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.06594002 + inSlope: 0.020309754 + outSlope: 0.020309754 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333334 + value: 0.065362036 + inSlope: -0.0019067 + outSlope: -0.0019067 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.0669465 + inSlope: -0.026146911 + outSlope: -0.026146911 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: 0.05916383 + inSlope: -0.14740066 + outSlope: -0.14740066 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: 0.045361172 + inSlope: -0.27345982 + outSlope: -0.27345982 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 0.035114266 + inSlope: -0.32501578 + outSlope: -0.32501578 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 0.023693476 + inSlope: -0.3260214 + outSlope: -0.3260214 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.005864052 + inSlope: -0.1801891 + outSlope: -0.1801891 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: 0.000000051929778 + inSlope: -0.02050361 + outSlope: -0.02050361 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: 0.0028368302 + inSlope: -0.00037950044 + outSlope: -0.00037950044 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: 0.0002516491 + inSlope: 0.0037822225 + outSlope: 0.0037822225 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.266667 + value: 0.004969264 + inSlope: 0.026364107 + outSlope: 0.026364107 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5333335 + value: 0.010101751 + inSlope: -0.009292103 + outSlope: -0.009292103 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: 0.0035703396 + inSlope: -0.014459048 + outSlope: -0.014459048 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: 0.0049061547 + inSlope: 0.012052441 + outSlope: 0.012052441 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.0045340788 + inSlope: -0.0023898366 + outSlope: -0.0023898366 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.027395125 + inSlope: 0.005216058 + outSlope: 0.005216058 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.04110033 + inSlope: -0.16676125 + outSlope: -0.16676125 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.08398855 + inSlope: -0.41895032 + outSlope: -0.41895032 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.15654388 + inSlope: -0.41607702 + outSlope: -0.41607702 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.20136905 + inSlope: -0.23217696 + outSlope: -0.23217696 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.22283357 + inSlope: -0.24462017 + outSlope: -0.24462017 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.24273764 + inSlope: -0.068406016 + outSlope: -0.068406016 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333334 + value: -0.24079242 + inSlope: 0.00641557 + outSlope: 0.00641557 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.24611479 + inSlope: 0.08768439 + outSlope: 0.08768439 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: -0.21972734 + inSlope: 0.505269 + outSlope: 0.505269 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: -0.17197095 + inSlope: 0.9547105 + outSlope: 0.9547105 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: -0.13605635 + inSlope: 1.1439843 + outSlope: 1.1439843 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: -0.095705405 + inSlope: 1.1555378 + outSlope: 1.1555378 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: -0.03215914 + inSlope: 0.6447799 + outSlope: 0.6447799 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: -0.0111273555 + inSlope: 0.073615976 + outSlope: 0.073615976 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: -0.021310758 + inSlope: 0.0013554152 + outSlope: 0.0013554152 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: -0.012030475 + inSlope: -0.01358458 + outSlope: -0.01358458 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.266667 + value: -0.028954893 + inSlope: -0.09448282 + outSlope: -0.09448282 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5333335 + value: -0.04731936 + inSlope: 0.033200692 + outSlope: 0.033200692 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: -0.02394127 + inSlope: 0.05183935 + outSlope: 0.05183935 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: -0.02872909 + inSlope: -0.04316452 + outSlope: -0.04316452 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: -0.027395155 + inSlope: 0.008537368 + outSlope: 0.008537368 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.055878833 + inSlope: -0.017926766 + outSlope: -0.017926766 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.10305776 + inSlope: 0.57467556 + outSlope: 0.57467556 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.25132337 + inSlope: 1.4534539 + outSlope: 1.4534539 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.5046547 + inSlope: 1.4637835 + outSlope: 1.4637835 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.6633685 + inSlope: 0.828151 + outSlope: 0.828151 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.740335 + inSlope: 0.8825828 + outSlope: 0.8825828 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.81265116 + inSlope: 0.25029245 + outSlope: 0.25029245 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333334 + value: 0.8055287 + inSlope: -0.023485236 + outSlope: -0.023485236 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.82505614 + inSlope: -0.32219356 + outSlope: -0.32219356 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: 0.7291434 + inSlope: -1.8166316 + outSlope: -1.8166316 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: 0.5590364 + inSlope: -3.3701458 + outSlope: -3.3701458 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 0.4327508 + inSlope: -4.005491 + outSlope: -4.005491 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 0.2920039 + inSlope: -4.0179124 + outSlope: -4.0179124 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.07226789 + inSlope: -2.220684 + outSlope: -2.220684 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: 0.00000008200601 + inSlope: -0.25266483 + outSlope: -0.25266483 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: 0.03496339 + inSlope: -0.0046642646 + outSlope: -0.0046642646 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: 0.0030985796 + inSlope: 0.0466179 + outSlope: 0.0466179 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.266667 + value: 0.061243996 + inSlope: 0.3250022 + outSlope: 0.3250022 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5333335 + value: 0.12449741 + inSlope: -0.11448752 + outSlope: -0.11448752 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: 0.044004496 + inSlope: -0.17819156 + outSlope: -0.17819156 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: 0.060467236 + inSlope: 0.14847405 + outSlope: 0.14847405 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.055878796 + inSlope: -0.029363623 + outSlope: -0.029363623 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.99805135 + inSlope: 0.0011479853 + outSlope: 0.0011479853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.9937907 + inSlope: -0.06799397 + outSlope: -0.06799397 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.96403664 + inSlope: -0.42473638 + outSlope: -0.42473638 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.84802175 + inSlope: -0.95377576 + outSlope: -0.95377576 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.71867615 + inSlope: -0.8294097 + outSlope: -0.8294097 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.63137996 + inSlope: -1.1372283 + outSlope: -1.1372283 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.5256695 + inSlope: -0.40962696 + outSlope: -0.40962696 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333334 + value: 0.5374666 + inSlope: 0.038815726 + outSlope: 0.038815726 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.5042103 + inSlope: 0.56037915 + outSlope: 0.56037915 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: 0.6454219 + inSlope: 2.181845 + outSlope: 2.181845 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: 0.80984366 + inSlope: 2.4882572 + outSlope: 2.4882572 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 0.8904956 + inSlope: 2.122172 + outSlope: 2.122172 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 0.95132166 + inSlope: 1.40937 + outSlope: 1.40937 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.9968494 + inSlope: 0.22912525 + outSlope: 0.22912525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: 0.99993813 + inSlope: 0.003142658 + outSlope: 0.003142658 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: 0.99915737 + inSlope: 0.00017256383 + outSlope: 0.00017256383 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: 0.9999228 + inSlope: -0.0004380953 + outSlope: -0.0004380953 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.266667 + value: 0.9976904 + inSlope: -0.02298827 + outSlope: -0.02298827 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5333335 + value: 0.9910395 + inSlope: 0.015837565 + outSlope: 0.015837565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: 0.99873805 + inSlope: 0.009329626 + outSlope: 0.009329626 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: 0.9977446 + inSlope: -0.010215649 + outSlope: -0.010215649 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.99805135 + inSlope: 0.0019043703 + outSlope: 0.0019043703 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.06467866 + inSlope: 0.00094212586 + outSlope: 0.00094212586 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.064732075 + inSlope: -0.07087099 + outSlope: -0.07087099 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.061508447 + inSlope: -0.2173529 + outSlope: -0.2173529 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.041167863 + inSlope: -0.0038237143 + outSlope: -0.0038237143 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.038846236 + inSlope: -0.06045447 + outSlope: -0.06045447 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.06605091 + inSlope: 0.16402867 + outSlope: 0.16402867 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.04008801 + inSlope: -0.032897417 + outSlope: -0.032897417 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 0.026933957 + inSlope: 0.20642966 + outSlope: 0.20642966 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.054329596 + inSlope: 0.27939108 + outSlope: 0.27939108 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.0828733 + inSlope: -0.13432187 + outSlope: -0.13432187 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 0.05941976 + inSlope: -0.35959628 + outSlope: -0.35959628 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0.052247945 + inSlope: 0.19188115 + outSlope: 0.19188115 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.06267349 + inSlope: 0.2567361 + outSlope: 0.2567361 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 0.06936367 + inSlope: -0.014483944 + outSlope: -0.014483944 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: 0.06170789 + inSlope: -0.3541729 + outSlope: -0.3541729 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: 0.045752108 + inSlope: -0.29716995 + outSlope: -0.29716995 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: 0.041896522 + inSlope: 0.17095578 + outSlope: 0.17095578 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: 0.05714915 + inSlope: 0.5092962 + outSlope: 0.5092962 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: 0.08627117 + inSlope: 0.23697473 + outSlope: 0.23697473 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666668 + value: 0.09619152 + inSlope: -0.103980124 + outSlope: -0.103980124 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: 0.06790833 + inSlope: -0.22689587 + outSlope: -0.22689587 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: 0.046029024 + inSlope: -0.16490896 + outSlope: -0.16490896 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: 0.033617042 + inSlope: -0.007150328 + outSlope: -0.007150328 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5000002 + value: 0.06471704 + inSlope: 0.07609904 + outSlope: 0.07609904 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6333334 + value: 0.06834678 + inSlope: 0.07697847 + outSlope: 0.07697847 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.766667 + value: 0.07333144 + inSlope: -0.05312109 + outSlope: -0.05312109 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0333335 + value: 0.05821673 + inSlope: 0.010471744 + outSlope: 0.010471744 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2000003 + value: 0.06057039 + inSlope: -0.02548429 + outSlope: -0.02548429 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3666668 + value: 0.04616113 + inSlope: 0.054234598 + outSlope: 0.054234598 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5000002 + value: 0.05218926 + inSlope: -0.0042012935 + outSlope: -0.0042012935 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.7333336 + value: 0.06043238 + inSlope: 0.029598039 + outSlope: 0.029598039 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.06466572 + inSlope: 0.08104224 + outSlope: 0.08104224 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.11690582 + inSlope: -0.00042334196 + outSlope: -0.00042334196 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.123921886 + inSlope: -0.2748857 + outSlope: -0.2748857 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.29977536 + inSlope: -0.7360915 + outSlope: -0.7360915 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.37208033 + inSlope: -0.8570097 + outSlope: -0.8570097 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.46022242 + inSlope: -0.5662932 + outSlope: -0.5662932 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.48048472 + inSlope: -0.12677017 + outSlope: -0.12677017 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.51209414 + inSlope: -0.18289968 + outSlope: -0.18289968 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -0.51682955 + inSlope: 0.2377128 + outSlope: 0.2377128 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.42256778 + inSlope: 0.9011432 + outSlope: 0.9011432 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.32483545 + inSlope: 0.29305014 + outSlope: 0.29305014 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: -0.32725832 + inSlope: -0.21805486 + outSlope: -0.21805486 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: -0.31074616 + inSlope: 1.6324023 + outSlope: 1.6324023 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: -0.22583736 + inSlope: 3.2279077 + outSlope: 3.2279077 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: -0.09555252 + inSlope: 3.5042095 + outSlope: 3.5042095 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: 0.0077763847 + inSlope: 1.7614915 + outSlope: 1.7614915 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: 0.021880185 + inSlope: -0.7356526 + outSlope: -0.7356526 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: -0.041267026 + inSlope: -2.0528378 + outSlope: -2.0528378 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: -0.11497555 + inSlope: -1.5755303 + outSlope: -1.5755303 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: -0.13225597 + inSlope: 0.7221809 + outSlope: 0.7221809 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666668 + value: -0.03487731 + inSlope: 0.7483248 + outSlope: 0.7483248 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: -0.015630448 + inSlope: -0.4880116 + outSlope: -0.4880116 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: -0.1172747 + inSlope: -0.52544343 + outSlope: -0.52544343 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: -0.14571656 + inSlope: 0.016242132 + outSlope: 0.016242132 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5000002 + value: -0.14545813 + inSlope: 0.0030994155 + outSlope: 0.0030994155 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6333334 + value: -0.14060654 + inSlope: 0.065740556 + outSlope: 0.065740556 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.766667 + value: -0.09147093 + inSlope: 0.48693362 + outSlope: 0.48693362 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0333335 + value: -0.08214767 + inSlope: -0.03275472 + outSlope: -0.03275472 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2000003 + value: -0.100818455 + inSlope: -0.0012753718 + outSlope: -0.0012753718 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3666668 + value: -0.071646005 + inSlope: -0.092194095 + outSlope: -0.092194095 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5000002 + value: -0.09363063 + inSlope: -0.08524951 + outSlope: -0.08524951 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.7333336 + value: -0.108335204 + inSlope: -0.08433309 + outSlope: -0.08433309 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: -0.11694373 + inSlope: -0.1455701 + outSlope: -0.1455701 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.06300925 + inSlope: -0.0025930253 + outSlope: -0.0025930253 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.06221441 + inSlope: 0.07130344 + outSlope: 0.07130344 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.00551883 + inSlope: 0.25479767 + outSlope: 0.25479767 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.0047033033 + inSlope: -0.033680543 + outSlope: -0.033680543 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.003209371 + inSlope: 0.07577499 + outSlope: 0.07577499 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.001277538 + inSlope: -0.2870891 + outSlope: -0.2870891 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.067630425 + inSlope: -0.18989183 + outSlope: -0.18989183 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -0.06743412 + inSlope: 0.09813608 + outSlope: 0.09813608 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.03804079 + inSlope: 0.37003303 + outSlope: 0.37003303 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.026853975 + inSlope: 0.5098983 + outSlope: 0.5098983 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 0.049996503 + inSlope: 0.0072378367 + outSlope: 0.0072378367 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0.021144375 + inSlope: -0.72850525 + outSlope: -0.72850525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: -0.005436145 + inSlope: -0.66833824 + outSlope: -0.66833824 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: -0.023411464 + inSlope: -0.4501268 + outSlope: -0.4501268 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: -0.03544457 + inSlope: -0.3505867 + outSlope: -0.3505867 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: -0.046783928 + inSlope: -0.27111393 + outSlope: -0.27111393 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: -0.053518854 + inSlope: -0.14508691 + outSlope: -0.14508691 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: -0.05645638 + inSlope: -0.068291284 + outSlope: -0.068291284 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: -0.060552426 + inSlope: -0.1526058 + outSlope: -0.1526058 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666668 + value: -0.096474744 + inSlope: -0.3812273 + outSlope: -0.3812273 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: -0.10865682 + inSlope: 0.13465329 + outSlope: 0.13465329 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: -0.071879186 + inSlope: 0.25658315 + outSlope: 0.25658315 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: -0.04260162 + inSlope: 0.25977212 + outSlope: 0.25977212 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5000002 + value: -0.025400016 + inSlope: 0.051836826 + outSlope: 0.051836826 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6333334 + value: -0.03547092 + inSlope: -0.20852667 + outSlope: -0.20852667 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.766667 + value: -0.05572909 + inSlope: -0.08276075 + outSlope: -0.08276075 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0333335 + value: -0.07213217 + inSlope: 0.0077894777 + outSlope: 0.0077894777 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2000003 + value: -0.06264392 + inSlope: 0.111744806 + outSlope: 0.111744806 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3666668 + value: -0.0482022 + inSlope: -0.010097353 + outSlope: -0.010097353 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5000002 + value: -0.051794697 + inSlope: 0.006825446 + outSlope: 0.006825446 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.7333336 + value: -0.05703132 + inSlope: -0.060859326 + outSlope: -0.060859326 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: -0.06307285 + inSlope: -0.105015956 + outSlope: -0.105015956 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9890296 + inSlope: -0.0002771616 + outSlope: -0.0002771616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.9882219 + inSlope: -0.026261508 + outSlope: -0.026261508 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.95200896 + inSlope: -0.21552813 + outSlope: -0.21552813 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.92727524 + inSlope: -0.34643775 + outSlope: -0.34643775 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.8869476 + inSlope: -0.28659323 + outSlope: -0.28659323 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.87451136 + inSlope: -0.08182974 + outSlope: -0.08182974 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.85532373 + inSlope: -0.12255719 + outSlope: -0.12255719 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 0.8530032 + inSlope: 0.14419301 + outSlope: 0.14419301 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.90390134 + inSlope: 0.41776356 + outSlope: 0.41776356 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.94174993 + inSlope: 0.100105405 + outSlope: 0.100105405 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 0.94173867 + inSlope: -0.052510552 + outSlope: -0.052510552 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0.9488203 + inSlope: 0.4815638 + outSlope: 0.4815638 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.97213167 + inSlope: 0.6586269 + outSlope: 0.6586269 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 0.9927287 + inSlope: 0.37954187 + outSlope: 0.37954187 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: 0.99743444 + inSlope: 0.07332182 + outSlope: 0.07332182 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: 0.9976168 + inSlope: -0.009010453 + outSlope: -0.009010453 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: 0.99683374 + inSlope: -0.112530395 + outSlope: -0.112530395 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: 0.9901148 + inSlope: -0.18325406 + outSlope: -0.18325406 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: 0.9855958 + inSlope: 0.059584383 + outSlope: 0.059584383 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666668 + value: 0.99006236 + inSlope: 0.0027313852 + outSlope: 0.0027313852 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: 0.99163395 + inSlope: 0.019361991 + outSlope: 0.019361991 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: 0.98942477 + inSlope: -0.033507973 + outSlope: -0.033507973 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: 0.9878369 + inSlope: 0.013983263 + outSlope: 0.013983263 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5000002 + value: 0.9869187 + inSlope: -0.0030684099 + outSlope: -0.0030684099 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6333334 + value: 0.98706657 + inSlope: -0.0036647953 + outSlope: -0.0036647953 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.766667 + value: 0.9915391 + inSlope: 0.045141622 + outSlope: 0.045141622 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0333335 + value: 0.9923001 + inSlope: -0.0027617838 + outSlope: -0.0027617838 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2000003 + value: 0.99108154 + inSlope: 0.008434676 + outSlope: 0.008434676 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3666668 + value: 0.99519473 + inSlope: -0.009946534 + outSlope: -0.009946534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5000002 + value: 0.99288815 + inSlope: -0.007414527 + outSlope: -0.007414527 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.7333336 + value: 0.9906356 + inSlope: -0.014662757 + outSlope: -0.014662757 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.9890219 + inSlope: -0.028542308 + outSlope: -0.028542308 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.15746598 + inSlope: 0.26500046 + outSlope: 0.26500046 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.20627481 + inSlope: 0.46600813 + outSlope: 0.46600813 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.27242482 + inSlope: 0.5126529 + outSlope: 0.5126529 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.32547885 + inSlope: 0.53645325 + outSlope: 0.53645325 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.3916622 + inSlope: 0.43074185 + outSlope: 0.43074185 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.4237783 + inSlope: -0.048931036 + outSlope: -0.048931036 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.4172964 + inSlope: 0.14666307 + outSlope: 0.14666307 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.4475143 + inSlope: -0.065489985 + outSlope: -0.065489985 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.43531716 + inSlope: -0.6304351 + outSlope: -0.6304351 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.40548527 + inSlope: -0.8248253 + outSlope: -0.8248253 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.3803288 + inSlope: -0.46498418 + outSlope: -0.46498418 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.37448636 + inSlope: 0.06768506 + outSlope: 0.06768506 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.39697832 + inSlope: 0.20671493 + outSlope: 0.20671493 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 0.3894144 + inSlope: -0.05831888 + outSlope: -0.05831888 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: 0.40272093 + inSlope: 0.26205027 + outSlope: 0.26205027 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666668 + value: 0.4100535 + inSlope: -0.141545 + outSlope: -0.141545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: 0.40343568 + inSlope: 0.009506652 + outSlope: 0.009506652 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 0.3927369 + inSlope: -0.40189722 + outSlope: -0.40189722 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0.35503337 + inSlope: -0.7585037 + outSlope: -0.7585037 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 0.29466915 + inSlope: -0.80008185 + outSlope: -0.80008185 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: 0.25772727 + inSlope: -0.25292227 + outSlope: -0.25292227 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: 0.19125547 + inSlope: -0.95450485 + outSlope: -0.95450485 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666668 + value: 0.13035078 + inSlope: -0.037346937 + outSlope: -0.037346937 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1000001 + value: 0.16036013 + inSlope: 0.2421382 + outSlope: 0.2421382 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2333333 + value: 0.18023066 + inSlope: 0.003984653 + outSlope: 0.003984653 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: 0.17054728 + inSlope: -0.18027166 + outSlope: -0.18027166 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6333334 + value: 0.15903912 + inSlope: -0.09756835 + outSlope: -0.09756835 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8333335 + value: 0.15210642 + inSlope: -0.040683337 + outSlope: -0.040683337 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.15263613 + inSlope: 0.038128756 + outSlope: 0.038128756 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3000002 + value: 0.17707106 + inSlope: -0.0274122 + outSlope: -0.0274122 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.466667 + value: 0.17146893 + inSlope: -0.02246196 + outSlope: -0.02246196 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6333334 + value: 0.16591361 + inSlope: -0.017581226 + outSlope: -0.017581226 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.15746567 + inSlope: 0.062374383 + outSlope: 0.062374383 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.16986516 + inSlope: -0.057312097 + outSlope: -0.057312097 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.16953216 + inSlope: 0.014810266 + outSlope: 0.014810266 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.14096428 + inSlope: -0.2457934 + outSlope: -0.2457934 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.12037864 + inSlope: -0.0789606 + outSlope: -0.0789606 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.12285541 + inSlope: 0.12821184 + outSlope: 0.12821184 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.19843413 + inSlope: 1.0157733 + outSlope: 1.0157733 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.29395917 + inSlope: 0.5403945 + outSlope: 0.5403945 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.32126504 + inSlope: 0.73461986 + outSlope: 0.73461986 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.35870725 + inSlope: 1.4721463 + outSlope: 1.4721463 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.41940814 + inSlope: 1.6142628 + outSlope: 1.6142628 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.46632478 + inSlope: 0.6942212 + outSlope: 0.6942212 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.4656895 + inSlope: -0.55488324 + outSlope: -0.55488324 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.40084803 + inSlope: -0.42299506 + outSlope: -0.42299506 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 0.4069052 + inSlope: -0.43148336 + outSlope: -0.43148336 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: 0.30241004 + inSlope: -1.1136158 + outSlope: -1.1136158 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666668 + value: 0.19388005 + inSlope: -1.709486 + outSlope: -1.709486 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: 0.044692963 + inSlope: -2.3964248 + outSlope: -2.3964248 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: -0.1447622 + inSlope: -0.7948265 + outSlope: -0.7948265 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: -0.1403777 + inSlope: 0.5455228 + outSlope: 0.5455228 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: -0.10398014 + inSlope: 0.33144814 + outSlope: 0.33144814 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: -0.08153574 + inSlope: 0.3542009 + outSlope: 0.3542009 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: -0.036806334 + inSlope: 0.38228938 + outSlope: 0.38228938 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666668 + value: 0.0045660245 + inSlope: 0.5154485 + outSlope: 0.5154485 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1000001 + value: 0.07305467 + inSlope: 0.50675935 + outSlope: 0.50675935 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2333333 + value: 0.13502395 + inSlope: 0.35388738 + outSlope: 0.35388738 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: 0.17216827 + inSlope: 0.09368585 + outSlope: 0.09368585 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6333334 + value: 0.20050465 + inSlope: 0.067173526 + outSlope: 0.067173526 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8333335 + value: 0.21015723 + inSlope: -0.0014302894 + outSlope: -0.0014302894 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.20699638 + inSlope: -0.028407749 + outSlope: -0.028407749 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3000002 + value: 0.21211287 + inSlope: -0.070787586 + outSlope: -0.070787586 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.466667 + value: 0.1980855 + inSlope: -0.077163875 + outSlope: -0.077163875 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6333334 + value: 0.18505593 + inSlope: -0.052017692 + outSlope: -0.052017692 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.16986543 + inSlope: -0.07025517 + outSlope: -0.07025517 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.335353 + inSlope: 0.26706308 + outSlope: 0.26706308 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.3975711 + inSlope: 0.6402831 + outSlope: 0.6402831 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.5082046 + inSlope: 0.6347712 + outSlope: 0.6347712 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.53527486 + inSlope: -0.32867163 + outSlope: -0.32867163 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.45368195 + inSlope: -0.21396768 + outSlope: -0.21396768 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.48874092 + inSlope: 0.47461915 + outSlope: 0.47461915 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.52385247 + inSlope: 0.13169904 + outSlope: 0.13169904 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.5222793 + inSlope: 0.057925954 + outSlope: 0.057925954 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.52684164 + inSlope: 0.13909847 + outSlope: 0.13909847 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.53155255 + inSlope: 0.1284197 + outSlope: 0.1284197 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.53540295 + inSlope: 0.2706593 + outSlope: 0.2706593 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.5495965 + inSlope: 0.48141488 + outSlope: 0.48141488 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.5743978 + inSlope: 0.09267399 + outSlope: 0.09267399 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 0.58312637 + inSlope: 0.3391308 + outSlope: 0.3391308 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: 0.60427564 + inSlope: -0.41928938 + outSlope: -0.41928938 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666668 + value: 0.5013048 + inSlope: -1.1591773 + outSlope: -1.1591773 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: 0.43941498 + inSlope: -0.48733413 + outSlope: -0.48733413 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 0.45057166 + inSlope: 0.18619198 + outSlope: 0.18619198 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0.43473405 + inSlope: -0.82026756 + outSlope: -0.82026756 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 0.3693586 + inSlope: -0.34894902 + outSlope: -0.34894902 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: 0.4333261 + inSlope: 0.49001545 + outSlope: 0.49001545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: 0.4008698 + inSlope: -0.64638007 + outSlope: -0.64638007 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666668 + value: 0.36246562 + inSlope: -0.006746657 + outSlope: -0.006746657 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1000001 + value: 0.39580745 + inSlope: 0.26860827 + outSlope: 0.26860827 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2333333 + value: 0.41126856 + inSlope: 0.0038256464 + outSlope: 0.0038256464 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: 0.41301408 + inSlope: -0.11870754 + outSlope: -0.11870754 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6333334 + value: 0.37964332 + inSlope: -0.2623735 + outSlope: -0.2623735 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8333335 + value: 0.3505089 + inSlope: -0.07700764 + outSlope: -0.07700764 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.3460844 + inSlope: 0.04971658 + outSlope: 0.04971658 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3000002 + value: 0.36113968 + inSlope: -0.06438738 + outSlope: -0.06438738 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.466667 + value: 0.35194176 + inSlope: -0.05150415 + outSlope: -0.05150415 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6333334 + value: 0.34041107 + inSlope: -0.08721971 + outSlope: -0.08721971 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.335353 + inSlope: 0.21235159 + outSlope: 0.21235159 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9131751 + inSlope: -0.1360935 + outSlope: -0.1360935 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.8778649 + inSlope: -0.40267918 + outSlope: -0.40267918 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.804762 + inSlope: -0.53100413 + outSlope: -0.53100413 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.77009964 + inSlope: 0.010751244 + outSlope: 0.010751244 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.79099935 + inSlope: -0.10967544 + outSlope: -0.10967544 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.7363207 + inSlope: -0.5645577 + outSlope: -0.5645577 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.6819313 + inSlope: -0.41768754 + outSlope: -0.41768754 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.6509564 + inSlope: -0.3812895 + outSlope: -0.3812895 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.63581926 + inSlope: -0.552704 + outSlope: -0.552704 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.61410946 + inSlope: -0.64752734 + outSlope: -0.64752734 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.5926508 + inSlope: -0.45445603 + outSlope: -0.45445603 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.5838124 + inSlope: -0.0726488 + outSlope: -0.0726488 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.5931243 + inSlope: 0.07080413 + outSlope: 0.07080413 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 0.585447 + inSlope: -0.00799299 + outSlope: -0.00799299 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: 0.6174261 + inSlope: 0.7780405 + outSlope: 0.7780405 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666668 + value: 0.7368583 + inSlope: 1.2985706 + outSlope: 1.2985706 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: 0.8013468 + inSlope: 0.4093046 + outSlope: 0.4093046 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 0.7885346 + inSlope: -0.03592644 + outSlope: -0.03592644 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0.81562966 + inSlope: 0.8399128 + outSlope: 0.8399128 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 0.87517565 + inSlope: 0.47378138 + outSlope: 0.47378138 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: 0.85974246 + inSlope: -0.13222855 + outSlope: -0.13222855 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: 0.89519274 + inSlope: 0.51114714 + outSlope: 0.51114714 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666668 + value: 0.9228253 + inSlope: 0.005210355 + outSlope: 0.005210355 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1000001 + value: 0.90126806 + inSlope: -0.20212342 + outSlope: -0.20212342 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2333333 + value: 0.8832574 + inSlope: -0.05637718 + outSlope: -0.05637718 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: 0.8778901 + inSlope: 0.07257349 + outSlope: 0.07257349 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6333334 + value: 0.8890306 + inSlope: 0.11447768 + outSlope: 0.11447768 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8333335 + value: 0.8999117 + inSlope: 0.037285425 + outSlope: 0.037285425 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.902264 + inSlope: -0.019059796 + outSlope: -0.019059796 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3000002 + value: 0.89063585 + inSlope: 0.048213646 + outSlope: 0.048213646 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.466667 + value: 0.8986087 + inSlope: 0.04135424 + outSlope: 0.04135424 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6333334 + value: 0.90683365 + inSlope: 0.046451434 + outSlope: 0.046451434 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.9131751 + inSlope: -0.07458337 + outSlope: -0.07458337 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.059807558 + inSlope: -0.34928373 + outSlope: -0.34928373 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.007953213 + inSlope: -0.66450834 + outSlope: -0.66450834 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.06984133 + inSlope: -0.0117383525 + outSlope: -0.0117383525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.040434923 + inSlope: 0.45068952 + outSlope: 0.45068952 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.020312753 + inSlope: 0.5895474 + outSlope: 0.5895474 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.1660173 + inSlope: 0.42513436 + outSlope: 0.42513436 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.21413158 + inSlope: 0.6157755 + outSlope: 0.6157755 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.25468352 + inSlope: 0.00482817 + outSlope: 0.00482817 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: 0.25077793 + inSlope: 0.049653687 + outSlope: 0.049653687 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.19690822 + inSlope: -0.3474899 + outSlope: -0.3474899 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.114523776 + inSlope: -1.0183091 + outSlope: -1.0183091 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 0.049126185 + inSlope: -0.6453486 + outSlope: -0.6453486 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0.022577107 + inSlope: -0.5039264 + outSlope: -0.5039264 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: -0.03729498 + inSlope: -0.19237384 + outSlope: -0.19237384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: 0.0014327511 + inSlope: 0.51242703 + outSlope: 0.51242703 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666668 + value: 0.022486035 + inSlope: -0.14606729 + outSlope: -0.14606729 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.266667 + value: 0.016570792 + inSlope: 0.17825729 + outSlope: 0.17825729 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4333334 + value: 0.058710497 + inSlope: 0.22693527 + outSlope: 0.22693527 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6000001 + value: 0.062496856 + inSlope: 0.06504375 + outSlope: 0.06504375 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8666668 + value: 0.066585936 + inSlope: -0.0016912464 + outSlope: -0.0016912464 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2333336 + value: 0.051561277 + inSlope: -0.16966781 + outSlope: -0.16966781 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4333334 + value: 0.049078662 + inSlope: -0.023839029 + outSlope: -0.023839029 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6666667 + value: 0.049884435 + inSlope: 0.016174935 + outSlope: 0.016174935 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.0598099 + inSlope: 0.06934221 + outSlope: 0.06934221 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.23709212 + inSlope: 0.07688149 + outSlope: 0.07688149 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.25336355 + inSlope: 0.16912514 + outSlope: 0.16912514 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.2590342 + inSlope: 0.010957272 + outSlope: 0.010957272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.27115408 + inSlope: 0.15599823 + outSlope: 0.15599823 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.26236996 + inSlope: -0.32856077 + outSlope: -0.32856077 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.20146702 + inSlope: -0.14000416 + outSlope: -0.14000416 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.1875952 + inSlope: -0.15470737 + outSlope: -0.15470737 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.17818713 + inSlope: -0.002397039 + outSlope: -0.002397039 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: 0.17879255 + inSlope: -0.011622451 + outSlope: -0.011622451 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.19067839 + inSlope: 0.09400954 + outSlope: 0.09400954 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.21528079 + inSlope: 0.34974808 + outSlope: 0.34974808 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 0.24150111 + inSlope: 0.32832283 + outSlope: 0.32832283 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0.25883213 + inSlope: 0.29140484 + outSlope: 0.29140484 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: 0.27707383 + inSlope: -0.015383681 + outSlope: -0.015383681 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: 0.25083217 + inSlope: -0.26475412 + outSlope: -0.26475412 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666668 + value: 0.23964757 + inSlope: 0.07223075 + outSlope: 0.07223075 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.266667 + value: 0.24999994 + inSlope: -0.07078464 + outSlope: -0.07078464 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4333334 + value: 0.2295157 + inSlope: -0.113807134 + outSlope: -0.113807134 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6000001 + value: 0.22892478 + inSlope: -0.028304039 + outSlope: -0.028304039 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8666668 + value: 0.22847258 + inSlope: 0.0069753146 + outSlope: 0.0069753146 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2333336 + value: 0.23860903 + inSlope: 0.09667517 + outSlope: 0.09667517 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4333334 + value: 0.24085458 + inSlope: 0.016890723 + outSlope: 0.016890723 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6666667 + value: 0.24152789 + inSlope: -0.003088512 + outSlope: -0.003088512 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.23709774 + inSlope: -0.030064462 + outSlope: -0.030064462 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.31794736 + inSlope: 0.03863543 + outSlope: 0.03863543 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.31045428 + inSlope: 0.07177637 + outSlope: 0.07177637 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.3018518 + inSlope: -0.11992158 + outSlope: -0.11992158 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.34759036 + inSlope: -0.5274527 + outSlope: -0.5274527 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.39961743 + inSlope: -0.4796782 + outSlope: -0.4796782 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.46354443 + inSlope: -0.23297311 + outSlope: -0.23297311 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.47951913 + inSlope: -0.04196498 + outSlope: -0.04196498 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.4860147 + inSlope: -0.1779009 + outSlope: -0.1779009 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: -0.50085294 + inSlope: -0.07239993 + outSlope: -0.07239993 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.50401086 + inSlope: 0.1284397 + outSlope: 0.1284397 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.4892276 + inSlope: 0.18286738 + outSlope: 0.18286738 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: -0.46531025 + inSlope: 0.5721363 + outSlope: 0.5721363 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: -0.42039448 + inSlope: 0.59319985 + outSlope: 0.59319985 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: -0.37909126 + inSlope: 0.3518188 + outSlope: 0.3518188 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: -0.3295621 + inSlope: 0.27208346 + outSlope: 0.27208346 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666668 + value: -0.3121082 + inSlope: 0.062532105 + outSlope: 0.062532105 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.266667 + value: -0.30674228 + inSlope: 0.029503327 + outSlope: 0.029503327 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4333334 + value: -0.29634893 + inSlope: 0.06016782 + outSlope: 0.06016782 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6000001 + value: -0.2963831 + inSlope: 0.0081749335 + outSlope: 0.0081749335 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8666668 + value: -0.29855677 + inSlope: -0.014424039 + outSlope: -0.014424039 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2333336 + value: -0.3088085 + inSlope: -0.06298548 + outSlope: -0.06298548 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4333334 + value: -0.31351507 + inSlope: -0.026835881 + outSlope: -0.026835881 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6666667 + value: -0.31809476 + inSlope: -0.015601497 + outSlope: -0.015601497 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: -0.31794477 + inSlope: 0.00081718044 + outSlope: 0.00081718044 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9160349 + inSlope: 0.013956427 + outSlope: 0.013956427 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.91616696 + inSlope: -0.027767124 + outSlope: -0.027767124 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.9148273 + inSlope: -0.04371733 + outSlope: -0.04371733 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.8966724 + inSlope: -0.23325217 + outSlope: -0.23325217 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.87809753 + inSlope: -0.13332458 + outSlope: -0.13332458 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.8467443 + inSlope: -0.17707318 + outSlope: -0.17707318 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.83007056 + inSlope: -0.1487285 + outSlope: -0.1487285 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.8168081 + inSlope: -0.106971785 + outSlope: -0.106971785 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: 0.80888194 + inSlope: -0.057603084 + outSlope: -0.057603084 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.8190494 + inSlope: 0.14016944 + outSlope: 0.14016944 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.8373738 + inSlope: 0.15153483 + outSlope: 0.15153483 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 0.8501472 + inSlope: 0.2606877 + outSlope: 0.2606877 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0.86934733 + inSlope: 0.21242352 + outSlope: 0.21242352 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: 0.8821162 + inSlope: 0.1490797 + outSlope: 0.1490797 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: 0.9102033 + inSlope: 0.1714055 + outSlope: 0.1714055 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666668 + value: 0.91904944 + inSlope: 0.0055977167 + outSlope: 0.0055977167 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.266667 + value: 0.9182236 + inSlope: 0.025990535 + outSlope: 0.025990535 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4333334 + value: 0.9252313 + inSlope: 0.033823583 + outSlope: 0.033823583 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6000001 + value: 0.92511874 + inSlope: 0.0051534222 + outSlope: 0.0051534222 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8666668 + value: 0.9242459 + inSlope: -0.006266541 + outSlope: -0.006266541 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2333336 + value: 0.919263 + inSlope: -0.036442317 + outSlope: -0.036442317 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4333334 + value: 0.9172179 + inSlope: -0.012328296 + outSlope: -0.012328296 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6666667 + value: 0.9154188 + inSlope: -0.005497635 + outSlope: -0.005497635 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.91603416 + inSlope: 0.0036424433 + outSlope: 0.0036424433 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.11977852 + inSlope: 0.843525 + outSlope: 0.843525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.009008941 + inSlope: 1.4831266 + outSlope: 1.4831266 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.196018 + inSlope: 1.2420788 + outSlope: 1.2420788 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.30123907 + inSlope: -0.19900249 + outSlope: -0.19900249 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.22470473 + inSlope: -1.3500476 + outSlope: -1.3500476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.10209933 + inSlope: -2.151628 + outSlope: -2.151628 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.029466981 + inSlope: -1.331278 + outSlope: -1.331278 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.04834762 + inSlope: 0.6763066 + outSlope: 0.6763066 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.14146635 + inSlope: 1.9047811 + outSlope: 1.9047811 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.3207629 + inSlope: 1.3800774 + outSlope: 1.3800774 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.39905182 + inSlope: 0.42400402 + outSlope: 0.42400402 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.40324655 + inSlope: -0.8392148 + outSlope: -0.8392148 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: 0.25442716 + inSlope: -1.7677724 + outSlope: -1.7677724 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: 0.122063436 + inSlope: -0.45376524 + outSlope: -0.45376524 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: 0.13475096 + inSlope: 0.11643909 + outSlope: 0.11643909 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0.13518716 + inSlope: 0.115524516 + outSlope: 0.115524516 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: 0.14004748 + inSlope: -0.10547347 + outSlope: -0.10547347 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: 0.12343314 + inSlope: -0.2477713 + outSlope: -0.2477713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666668 + value: 0.07633974 + inSlope: -0.15430638 + outSlope: -0.15430638 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: 0.048834912 + inSlope: -0.20504004 + outSlope: -0.20504004 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4333334 + value: -0.016207553 + inSlope: -0.21385911 + outSlope: -0.21385911 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8333335 + value: -0.06952365 + inSlope: -0.09847528 + outSlope: -0.09847528 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: -0.094897985 + inSlope: -0.030394599 + outSlope: -0.030394599 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.766667 + value: -0.11884756 + inSlope: -0.04047502 + outSlope: -0.04047502 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: -0.119778536 + inSlope: -0.027929422 + outSlope: -0.027929422 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2/mixamorig:RightHandThumb3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.04120477 + inSlope: 0.22430587 + outSlope: 0.22430587 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.025843438 + inSlope: 0.01722352 + outSlope: 0.01722352 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.020715969 + inSlope: 0.06342187 + outSlope: 0.06342187 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.015159099 + inSlope: 0.026274223 + outSlope: 0.026274223 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.01573613 + inSlope: -0.018368315 + outSlope: -0.018368315 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.012298891 + inSlope: 0.12652865 + outSlope: 0.12652865 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.0017684832 + inSlope: 0.18812647 + outSlope: 0.18812647 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.036963336 + inSlope: 0.37848616 + outSlope: 0.37848616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.050462198 + inSlope: 0.03197823 + outSlope: 0.03197823 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.056892008 + inSlope: -0.12123887 + outSlope: -0.12123887 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.052012824 + inSlope: 0.15303726 + outSlope: 0.15303726 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.05827509 + inSlope: -0.08705352 + outSlope: -0.08705352 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: 0.060578115 + inSlope: 0.25772074 + outSlope: 0.25772074 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: 0.108507566 + inSlope: 0.5872511 + outSlope: 0.5872511 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: 0.13963869 + inSlope: -0.13362616 + outSlope: -0.13362616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0.111814775 + inSlope: -0.31657976 + outSlope: -0.31657976 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: 0.09140234 + inSlope: -0.1570763 + outSlope: -0.1570763 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: 0.07481496 + inSlope: -0.14600953 + outSlope: -0.14600953 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666668 + value: 0.050485108 + inSlope: -0.31909364 + outSlope: -0.31909364 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: -0.0024764845 + inSlope: -0.22939187 + outSlope: -0.22939187 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4333334 + value: -0.019624885 + inSlope: 0.021997768 + outSlope: 0.021997768 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8333335 + value: -0.015897227 + inSlope: -0.0064226114 + outSlope: -0.0064226114 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: -0.02375709 + inSlope: -0.03014219 + outSlope: -0.03014219 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.766667 + value: -0.04163659 + inSlope: -0.014916673 + outSlope: -0.014916673 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: -0.041204646 + inSlope: 0.012958323 + outSlope: 0.012958323 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2/mixamorig:RightHandThumb3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.1115476 + inSlope: -1.3268192 + outSlope: -1.3268192 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.23625892 + inSlope: -1.018194 + outSlope: -1.018194 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.29315555 + inSlope: 0.09322331 + outSlope: 0.09322331 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.2660281 + inSlope: -0.1976971 + outSlope: -0.1976971 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.3026774 + inSlope: -0.47613186 + outSlope: -0.47613186 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.3495106 + inSlope: -0.86733705 + outSlope: -0.86733705 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.40374693 + inSlope: -0.6522493 + outSlope: -0.6522493 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.46265194 + inSlope: -0.71413994 + outSlope: -0.71413994 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.53769857 + inSlope: -0.059613734 + outSlope: -0.059613734 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.5055716 + inSlope: 0.4491162 + outSlope: 0.4491162 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.48116055 + inSlope: -0.044427708 + outSlope: -0.044427708 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.49899223 + inSlope: 0.38445076 + outSlope: 0.38445076 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: -0.39806843 + inSlope: 1.3528531 + outSlope: 1.3528531 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: -0.2869731 + inSlope: 0.622004 + outSlope: 0.622004 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: -0.25666055 + inSlope: 0.14678237 + outSlope: 0.14678237 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: -0.2446917 + inSlope: 0.12594861 + outSlope: 0.12594861 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: -0.211813 + inSlope: 0.6122856 + outSlope: 0.6122856 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: -0.17179844 + inSlope: 0.032784 + outSlope: 0.032784 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666668 + value: -0.19273457 + inSlope: -0.16225116 + outSlope: -0.16225116 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: -0.2350379 + inSlope: -0.31813934 + outSlope: -0.31813934 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4333334 + value: -0.27118745 + inSlope: 0.025968278 + outSlope: 0.025968278 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8333335 + value: -0.2492895 + inSlope: 0.11510778 + outSlope: 0.11510778 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: -0.19484307 + inSlope: 0.13814329 + outSlope: 0.13814329 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.766667 + value: -0.11744559 + inSlope: 0.1709854 + outSlope: 0.1709854 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: -0.11154754 + inSlope: 0.1769417 + outSlope: 0.1769417 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2/mixamorig:RightHandThumb3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9856533 + inSlope: -0.08103489 + outSlope: -0.08103489 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.97130466 + inSlope: -0.23488104 + outSlope: -0.23488104 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.9355253 + inSlope: -0.2250454 + outSlope: -0.2250454 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.9155623 + inSlope: 0.0061637294 + outSlope: 0.0061637294 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.9260921 + inSlope: 0.15914622 + outSlope: 0.15914622 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.9312716 + inSlope: -0.09311655 + outSlope: -0.09311655 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.9143943 + inSlope: -0.30860692 + outSlope: -0.30860692 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.8844487 + inSlope: -0.35871327 + outSlope: -0.35871327 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.8296512 + inSlope: -0.36777824 + outSlope: -0.36777824 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.79891914 + inSlope: -0.24943674 + outSlope: -0.24943674 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.7788047 + inSlope: -0.25529468 + outSlope: -0.25529468 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.76485485 + inSlope: 0.6769142 + outSlope: 0.6769142 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: 0.879283 + inSlope: 1.1099528 + outSlope: 1.1099528 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: 0.9439137 + inSlope: 0.19021887 + outSlope: 0.19021887 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: 0.94682026 + inSlope: 0.04298598 + outSlope: 0.04298598 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0.9535973 + inSlope: 0.05281264 + outSlope: 0.05281264 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: 0.9628954 + inSlope: 0.16393021 + outSlope: 0.16393021 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: 0.974501 + inSlope: 0.048281595 + outSlope: 0.048281595 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666668 + value: 0.97697335 + inSlope: -0.0033375695 + outSlope: -0.0033375695 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: 0.97075546 + inSlope: -0.067160785 + outSlope: -0.067160785 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4333334 + value: 0.96219 + inSlope: 0.0043165726 + outSlope: 0.0043165726 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8333335 + value: 0.9657994 + inSlope: 0.022547565 + outSlope: 0.022547565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: 0.97594374 + inSlope: 0.023810886 + outSlope: 0.023810886 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.766667 + value: 0.98506254 + inSlope: 0.014868393 + outSlope: 0.014868393 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.98565334 + inSlope: 0.017724054 + outSlope: 0.017724054 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2/mixamorig:RightHandThumb3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.055552773 + inSlope: -0.10359763 + outSlope: -0.10359763 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.06513488 + inSlope: 0.2795117 + outSlope: 0.2795117 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.12446729 + inSlope: 0.76405364 + outSlope: 0.76405364 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.23977163 + inSlope: 1.3177063 + outSlope: 1.3177063 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.40109164 + inSlope: 1.3361511 + outSlope: 1.3361511 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.49792466 + inSlope: 0.46482685 + outSlope: 0.46482685 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.5779474 + inSlope: 0.7323352 + outSlope: 0.7323352 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.6338988 + inSlope: 0.2924923 + outSlope: 0.2924923 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.6682851 + inSlope: 0.5317841 + outSlope: 0.5317841 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: 0.69488126 + inSlope: -0.08255375 + outSlope: -0.08255375 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2333333 + value: 0.678852 + inSlope: -0.2259588 + outSlope: -0.2259588 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: 0.5869966 + inSlope: -0.39551982 + outSlope: -0.39551982 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: 0.59109616 + inSlope: 0.16188705 + outSlope: 0.16188705 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 0.5743494 + inSlope: -0.831092 + outSlope: -0.831092 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 0.44859344 + inSlope: -1.1593072 + outSlope: -1.1593072 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: 0.33188435 + inSlope: -1.21155 + outSlope: -1.21155 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: 0.22389291 + inSlope: -1.7223628 + outSlope: -1.7223628 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: 0.13278137 + inSlope: -0.6982461 + outSlope: -0.6982461 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: 0.13675947 + inSlope: 0.23388608 + outSlope: 0.23388608 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2333333 + value: 0.15080102 + inSlope: -0.230797 + outSlope: -0.230797 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: 0.10882388 + inSlope: -0.36828566 + outSlope: -0.36828566 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5333335 + value: 0.0871866 + inSlope: -0.0062763756 + outSlope: -0.0062763756 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7333336 + value: 0.060856253 + inSlope: 0.0025879135 + outSlope: 0.0025879135 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.05669923 + inSlope: 0.04244013 + outSlope: 0.04244013 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 0.083463445 + inSlope: -0.061001875 + outSlope: -0.061001875 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5666668 + value: 0.078905344 + inSlope: -0.022919944 + outSlope: -0.022919944 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.055543326 + inSlope: -0.23886949 + outSlope: -0.23886949 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.03014639 + inSlope: 0.013152099 + outSlope: 0.013152099 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.029950947 + inSlope: -0.02686853 + outSlope: -0.02686853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.037461784 + inSlope: -0.06877391 + outSlope: -0.06877391 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.04021803 + inSlope: 0.0063044773 + outSlope: 0.0063044773 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.038758986 + inSlope: 0.009552847 + outSlope: 0.009552847 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.04009235 + inSlope: -0.029572073 + outSlope: -0.029572073 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.04972233 + inSlope: -0.10267782 + outSlope: -0.10267782 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.06020579 + inSlope: -0.09443025 + outSlope: -0.09443025 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.06811121 + inSlope: -0.060227744 + outSlope: -0.060227744 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: -0.06979449 + inSlope: 0.02641737 + outSlope: 0.02641737 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2333333 + value: -0.06281928 + inSlope: 0.073747486 + outSlope: 0.073747486 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: -0.048081297 + inSlope: 0.074116714 + outSlope: 0.074116714 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: -0.043680664 + inSlope: 0.027206134 + outSlope: 0.027206134 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: -0.039616488 + inSlope: 0.13010813 + outSlope: 0.13010813 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: -0.024020841 + inSlope: 0.0275096 + outSlope: 0.0275096 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: -0.02890984 + inSlope: 0.1329116 + outSlope: 0.1329116 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: -0.019061128 + inSlope: 0.087352365 + outSlope: 0.087352365 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: -0.016419865 + inSlope: 0.035117786 + outSlope: 0.035117786 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: -0.013642981 + inSlope: -0.022591325 + outSlope: -0.022591325 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2333333 + value: -0.027981548 + inSlope: -0.051196948 + outSlope: -0.051196948 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: -0.029308546 + inSlope: 0.023353988 + outSlope: 0.023353988 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5333335 + value: -0.028961591 + inSlope: -0.010209335 + outSlope: -0.010209335 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7333336 + value: -0.025937863 + inSlope: 0.007771834 + outSlope: 0.007771834 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: -0.0273034 + inSlope: 0.0001984557 + outSlope: 0.0001984557 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: -0.027120037 + inSlope: -0.008700061 + outSlope: -0.008700061 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5666668 + value: -0.028527468 + inSlope: -0.0066904975 + outSlope: -0.0066904975 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: -0.030115401 + inSlope: -0.018986985 + outSlope: -0.018986985 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.03980987 + inSlope: 0.014890618 + outSlope: 0.014890618 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.04066104 + inSlope: 0.008329936 + outSlope: 0.008329936 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.041981984 + inSlope: -0.038053732 + outSlope: -0.038053732 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.026805507 + inSlope: -0.21125588 + outSlope: -0.21125588 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.0015304029 + inSlope: -0.19862406 + outSlope: -0.19862406 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.010699571 + inSlope: -0.020512044 + outSlope: -0.020512044 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.009237224 + inSlope: 0.01093534 + outSlope: 0.01093534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.006111159 + inSlope: 0.06219954 + outSlope: 0.06219954 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.003427777 + inSlope: -0.042424988 + outSlope: -0.042424988 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: -0.005811122 + inSlope: 0.02057332 + outSlope: 0.02057332 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2333333 + value: -0.004861984 + inSlope: 0.009425513 + outSlope: 0.009425513 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: 0.0034701393 + inSlope: 0.016292594 + outSlope: 0.016292594 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: -0.00082224107 + inSlope: -0.056554332 + outSlope: -0.056554332 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: -0.0017271783 + inSlope: 0.028054705 + outSlope: 0.028054705 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 0.00337704 + inSlope: 0.11018664 + outSlope: 0.11018664 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: 0.019177623 + inSlope: 0.0064192032 + outSlope: 0.0064192032 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: 0.021046756 + inSlope: 0.085040554 + outSlope: 0.085040554 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: 0.026803127 + inSlope: 0.010852974 + outSlope: 0.010852974 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: 0.0204813 + inSlope: -0.025492348 + outSlope: -0.025492348 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2333333 + value: 0.028171865 + inSlope: 0.052987173 + outSlope: 0.052987173 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: 0.0318731 + inSlope: 0.013715545 + outSlope: 0.013715545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5333335 + value: 0.033246275 + inSlope: 0.00770035 + outSlope: 0.00770035 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7333336 + value: 0.032912873 + inSlope: -0.009215416 + outSlope: -0.009215416 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.03459109 + inSlope: -0.0032758187 + outSlope: -0.0032758187 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 0.03170854 + inSlope: 0.019016601 + outSlope: 0.019016601 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5666668 + value: 0.034401476 + inSlope: 0.013246102 + outSlope: 0.013246102 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.03972037 + inSlope: 0.053439714 + outSlope: 0.053439714 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9972062 + inSlope: 0.0053894515 + outSlope: 0.0053894515 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.99659777 + inSlope: -0.019496085 + outSlope: -0.019496085 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.9906271 + inSlope: -0.09831906 + outSlope: -0.09831906 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.9696255 + inSlope: -0.33090058 + outSlope: -0.33090058 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.9152163 + inSlope: -0.5729712 + outSlope: -0.5729712 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.866227 + inSlope: -0.2686599 + outSlope: -0.2686599 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.8145055 + inSlope: -0.5256451 + outSlope: -0.5256451 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.7710449 + inSlope: -0.24571992 + outSlope: -0.24571992 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.7407728 + inSlope: -0.48628944 + outSlope: -0.48628944 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: 0.71570593 + inSlope: 0.08244111 + outSlope: 0.08244111 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2333333 + value: 0.73156685 + inSlope: 0.21454424 + outSlope: 0.21454424 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: 0.8081529 + inSlope: 0.2952668 + outSlope: 0.2952668 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: 0.80541706 + inSlope: -0.11612867 + outSlope: -0.11612867 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 0.81764925 + inSlope: 0.57593566 + outSlope: 0.57593566 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 0.89340675 + inSlope: 0.58967173 + outSlope: 0.58967173 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: 0.94268197 + inSlope: 0.41900796 + outSlope: 0.41900796 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: 0.9742 + inSlope: 0.40033177 + outSlope: 0.40033177 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: 0.9906468 + inSlope: 0.102892235 + outSlope: 0.102892235 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: 0.99029857 + inSlope: -0.031763516 + outSlope: -0.031763516 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2333333 + value: 0.9877664 + inSlope: 0.03229729 + outSlope: 0.03229729 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: 0.9931176 + inSlope: 0.04076872 + outSlope: 0.04076872 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5333335 + value: 0.9952158 + inSlope: -0.000007152674 + outSlope: -0.000007152674 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7333336 + value: 0.99726653 + inSlope: 0.0003513688 + outSlope: 0.0003513688 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.9974183 + inSlope: -0.002320113 + outSlope: -0.002320113 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 0.995637 + inSlope: 0.004278127 + outSlope: 0.004278127 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5666668 + value: 0.9958798 + inSlope: 0.0011891137 + outSlope: 0.0011891137 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.9972113 + inSlope: 0.011612188 + outSlope: 0.011612188 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.15075901 + inSlope: -0.14340429 + outSlope: -0.14340429 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.12400165 + inSlope: 0.033551767 + outSlope: 0.033551767 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.25813526 + inSlope: 1.617527 + outSlope: 1.617527 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.45243326 + inSlope: 2.0293796 + outSlope: 2.0293796 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.69351226 + inSlope: 0.7046243 + outSlope: 0.7046243 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.74282724 + inSlope: -0.03321918 + outSlope: -0.03321918 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.73463005 + inSlope: -0.012978328 + outSlope: -0.012978328 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.7009752 + inSlope: -0.19175366 + outSlope: -0.19175366 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 0.68597883 + inSlope: -0.29814488 + outSlope: -0.29814488 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 0.5912868 + inSlope: -1.5049496 + outSlope: -1.5049496 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: 0.40467796 + inSlope: -0.97017205 + outSlope: -0.97017205 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: 0.26619682 + inSlope: -0.49979597 + outSlope: -0.49979597 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4666667 + value: 0.14503616 + inSlope: -0.11533007 + outSlope: -0.11533007 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.12932847 + inSlope: 0.0125934305 + outSlope: 0.0125934305 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.15075855 + inSlope: 0.030694783 + outSlope: 0.030694783 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.005168071 + inSlope: 0.000114161514 + outSlope: 0.000114161514 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.0051876237 + inSlope: -0.00002085698 + outSlope: -0.00002085698 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.0050489698 + inSlope: -0.0023387733 + outSlope: -0.0023387733 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.004654707 + inSlope: -0.0054551624 + outSlope: -0.0054551624 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.0037428576 + inSlope: -0.0035766382 + outSlope: -0.0035766382 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.0034705845 + inSlope: 0.00019666403 + outSlope: 0.00019666403 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.0035187115 + inSlope: 0.0000743266 + outSlope: 0.0000743266 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.0037042866 + inSlope: 0.0010059184 + outSlope: 0.0010059184 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 0.0037810146 + inSlope: 0.0014774895 + outSlope: 0.0014774895 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 0.0042010797 + inSlope: 0.0058397893 + outSlope: 0.0058397893 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: 0.004774931 + inSlope: 0.0023034052 + outSlope: 0.0023034052 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: 0.005037114 + inSlope: 0.00073377776 + outSlope: 0.00073377776 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4666667 + value: 0.005172671 + inSlope: 0.00009387017 + outSlope: 0.00009387017 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.0051839696 + inSlope: -0.000008682263 + outSlope: -0.000008682263 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.005168 + inSlope: -0.000030342519 + outSlope: -0.000030342519 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.01765285 + inSlope: 0.016789902 + outSlope: 0.016789902 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.014519783 + inSlope: -0.0039305836 + outSlope: -0.0039305836 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.030225907 + inSlope: -0.1894007 + outSlope: -0.1894007 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.0529769 + inSlope: -0.23762825 + outSlope: -0.23762825 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.081205584 + inSlope: -0.08250518 + outSlope: -0.08250518 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.08698026 + inSlope: 0.003891329 + outSlope: 0.003891329 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.08602052 + inSlope: 0.0015201434 + outSlope: 0.0015201434 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.082079425 + inSlope: 0.022451412 + outSlope: 0.022451412 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: -0.08032371 + inSlope: 0.034911126 + outSlope: 0.034911126 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: -0.069235906 + inSlope: 0.17621739 + outSlope: 0.17621739 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: -0.047385164 + inSlope: 0.113599926 + outSlope: 0.113599926 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: -0.031169973 + inSlope: 0.058522772 + outSlope: 0.058522772 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4666667 + value: -0.016982784 + inSlope: 0.013506517 + outSlope: 0.013506517 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: -0.015143611 + inSlope: -0.0014760825 + outSlope: -0.0014760825 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: -0.017652836 + inSlope: -0.0035949459 + outSlope: -0.0035949459 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.98839945 + inSlope: 0.021811722 + outSlope: 0.021811722 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.9921622 + inSlope: -0.0043550157 + outSlope: -0.0043550157 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.96562266 + inSlope: -0.4472251 + outSlope: -0.4472251 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.89021116 + inSlope: -1.0436124 + outSlope: -1.0436124 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.71584386 + inSlope: -0.6838461 + outSlope: -0.6838461 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.66379976 + inSlope: 0.03759655 + outSlope: 0.03759655 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.6729836 + inSlope: 0.014348044 + outSlope: 0.014348044 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.70843714 + inSlope: 0.19238755 + outSlope: 0.19238755 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 0.7231645 + inSlope: 0.2826471 + outSlope: 0.2826471 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 0.8034729 + inSlope: 1.1171751 + outSlope: 1.1171751 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: 0.9132183 + inSlope: 0.4410575 + outSlope: 0.4410575 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: 0.96340144 + inSlope: 0.13987415 + outSlope: 0.13987415 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4666667 + value: 0.98926705 + inSlope: 0.01722869 + outSlope: 0.01722869 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.9914726 + inSlope: -0.0016674416 + outSlope: -0.0016674416 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.9883995 + inSlope: -0.004729633 + outSlope: -0.004729633 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.07001268 + inSlope: -0.05175702 + outSlope: -0.05175702 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.07623646 + inSlope: 0.1740349 + outSlope: 0.1740349 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.19816893 + inSlope: 1.2066514 + outSlope: 1.2066514 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.4120708 + inSlope: 0.6400814 + outSlope: 0.6400814 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.48912725 + inSlope: 0.34339443 + outSlope: 0.34339443 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.566312 + inSlope: -0.03866408 + outSlope: -0.03866408 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 0.5312882 + inSlope: -0.1121978 + outSlope: -0.1121978 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.47612426 + inSlope: -1.2814784 + outSlope: -1.2814784 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: 0.3184069 + inSlope: -1.4350505 + outSlope: -1.4350505 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9000001 + value: 0.18490854 + inSlope: -0.4124059 + outSlope: -0.4124059 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: 0.10433332 + inSlope: -0.12749848 + outSlope: -0.12749848 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7333336 + value: 0.06759326 + inSlope: -0.014271328 + outSlope: -0.014271328 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.07001282 + inSlope: 0.0120408945 + outSlope: 0.0120408945 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2/mixamorig:RightHandIndex3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0000000955234 + inSlope: 0.0000032170149 + outSlope: 0.0000032170149 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.00000008027217 + inSlope: 0.00000023649784 + outSlope: 0.00000023649784 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.000000015318651 + inSlope: -0.0000016712419 + outSlope: -0.0000016712419 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.000000039199506 + inSlope: 0.0000005093311 + outSlope: 0.0000005093311 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.000000014488153 + inSlope: -0.0000004735952 + outSlope: -0.0000004735952 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.00000015434875 + inSlope: 0.000000017799493 + outSlope: 0.000000017799493 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: -0.00000012726824 + inSlope: 0.0000015375265 + outSlope: 0.0000015375265 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: -0.00000011354783 + inSlope: 0.00000041922158 + outSlope: 0.00000041922158 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: 0.000000052768332 + inSlope: 0.000001731214 + outSlope: 0.000001731214 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9000001 + value: 0.000000048761553 + inSlope: -0.0000012049136 + outSlope: -0.0000012049136 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: -0.0000000152419 + inSlope: -0.0000006443991 + outSlope: -0.0000006443991 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7333336 + value: 0.000000018782886 + inSlope: -0.0000004877046 + outSlope: -0.0000004877046 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.0000000057039715 + inSlope: 0.0000013436413 + outSlope: 0.0000013436413 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2/mixamorig:RightHandIndex3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.007827109 + inSlope: 0.0057834988 + outSlope: 0.0057834988 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.008522949 + inSlope: -0.01945578 + outSlope: -0.01945578 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.022154622 + inSlope: -0.13489693 + outSlope: -0.13489693 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.04606799 + inSlope: -0.071559824 + outSlope: -0.071559824 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.05468244 + inSlope: -0.038387127 + outSlope: -0.038387127 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.06331158 + inSlope: 0.004320596 + outSlope: 0.004320596 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: -0.059396025 + inSlope: 0.012544759 + outSlope: 0.012544759 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: -0.053228945 + inSlope: 0.14326218 + outSlope: 0.14326218 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: -0.03559669 + inSlope: 0.16043508 + outSlope: 0.16043508 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9000001 + value: -0.020672046 + inSlope: 0.046107247 + outSlope: 0.046107247 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: -0.01166413 + inSlope: 0.014253886 + outSlope: 0.014253886 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7333336 + value: -0.007556655 + inSlope: 0.0015971048 + outSlope: 0.0015971048 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: -0.007827168 + inSlope: -0.0013450173 + outSlope: -0.0013450173 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2/mixamorig:RightHandIndex3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9975154 + inSlope: 0.003633499 + outSlope: 0.003633499 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.9970533 + inSlope: -0.013848245 + outSlope: -0.013848245 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.97991747 + inSlope: -0.24871844 + outSlope: -0.24871844 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.9099865 + inSlope: -0.29114127 + outSlope: -0.29114127 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.87049663 + inSlope: -0.1953621 + outSlope: -0.1953621 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.82175565 + inSlope: 0.026933875 + outSlope: 0.026933875 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 0.84510654 + inSlope: 0.07133163 + outSlope: 0.07133163 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.87776554 + inSlope: 0.69034135 + outSlope: 0.69034135 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: 0.94728553 + inSlope: 0.49646735 + outSlope: 0.49646735 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9000001 + value: 0.9825383 + inSlope: 0.07905103 + outSlope: 0.07905103 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: 0.994474 + inSlope: 0.013501359 + outSlope: 0.013501359 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7333336 + value: 0.99768436 + inSlope: 0.0009781098 + outSlope: 0.0009781098 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.9975154 + inSlope: -0.0008547314 + outSlope: -0.0008547314 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2/mixamorig:RightHandIndex3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.12614393 + inSlope: -0.12028723 + outSlope: -0.12028723 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.13363339 + inSlope: 0.32835984 + outSlope: 0.32835984 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.16095397 + inSlope: 0.2830989 + outSlope: 0.2830989 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.25276312 + inSlope: 0.89527696 + outSlope: 0.89527696 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.3859221 + inSlope: 1.7617035 + outSlope: 1.7617035 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.5322111 + inSlope: 0.89536464 + outSlope: 0.89536464 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.6057641 + inSlope: 0.41518718 + outSlope: 0.41518718 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.6729144 + inSlope: 0.1197893 + outSlope: 0.1197893 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.6954482 + inSlope: 0.4532026 + outSlope: 0.4532026 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.7191655 + inSlope: 0.0944809 + outSlope: 0.0944809 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 0.7102566 + inSlope: -0.06437665 + outSlope: -0.06437665 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: 0.67976606 + inSlope: -0.5873891 + outSlope: -0.5873891 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: 0.60304314 + inSlope: -0.10420481 + outSlope: -0.10420481 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 0.60860956 + inSlope: -0.90327895 + outSlope: -0.90327895 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.51178175 + inSlope: -1.5251006 + outSlope: -1.5251006 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: 0.40884575 + inSlope: -0.59207517 + outSlope: -0.59207517 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: 0.36210677 + inSlope: -1.1431286 + outSlope: -1.1431286 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: 0.25447738 + inSlope: -1.7419412 + outSlope: -1.7419412 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: 0.16415651 + inSlope: -0.6023732 + outSlope: -0.6023732 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: 0.21039644 + inSlope: 0.48549056 + outSlope: 0.48549056 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2333333 + value: 0.24208225 + inSlope: -0.18470913 + outSlope: -0.18470913 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: 0.20691739 + inSlope: -0.32154286 + outSlope: -0.32154286 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5333335 + value: 0.18532923 + inSlope: -0.007900007 + outSlope: -0.007900007 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7333336 + value: 0.15055627 + inSlope: -0.03554073 + outSlope: -0.03554073 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0666668 + value: 0.14517441 + inSlope: 0.021720773 + outSlope: 0.021720773 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3666668 + value: 0.16393007 + inSlope: 0.0005042553 + outSlope: 0.0005042553 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6666667 + value: 0.15853105 + inSlope: -0.07244661 + outSlope: -0.07244661 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.12615135 + inSlope: -0.34380633 + outSlope: -0.34380633 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.033717815 + inSlope: -0.00040937212 + outSlope: -0.00040937212 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.034140788 + inSlope: -0.008254443 + outSlope: -0.008254443 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.034390654 + inSlope: -0.012120568 + outSlope: -0.012120568 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.040333822 + inSlope: -0.046143144 + outSlope: -0.046143144 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.04665272 + inSlope: -0.089699544 + outSlope: -0.089699544 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.054355375 + inSlope: -0.051051263 + outSlope: -0.051051263 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.06240052 + inSlope: -0.089346945 + outSlope: -0.089346945 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.0823254 + inSlope: -0.02192241 + outSlope: -0.02192241 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.07589092 + inSlope: 0.08834675 + outSlope: 0.08834675 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.06840885 + inSlope: 0.14748463 + outSlope: 0.14748463 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -0.05667443 + inSlope: 0.018366277 + outSlope: 0.018366277 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: -0.063684605 + inSlope: -0.029614411 + outSlope: -0.029614411 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: -0.059317768 + inSlope: 0.023199901 + outSlope: 0.023199901 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: -0.058532245 + inSlope: 0.15292564 + outSlope: 0.15292564 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: -0.044272788 + inSlope: 0.17624918 + outSlope: 0.17624918 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: -0.0431266 + inSlope: -0.064258255 + outSlope: -0.064258255 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: -0.041406423 + inSlope: 0.13255519 + outSlope: 0.13255519 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: -0.030882413 + inSlope: 0.10630956 + outSlope: 0.10630956 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: -0.02768876 + inSlope: 0.017972363 + outSlope: 0.017972363 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: -0.03047707 + inSlope: -0.062666886 + outSlope: -0.062666886 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2333333 + value: -0.039502226 + inSlope: -0.018070634 + outSlope: -0.018070634 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: -0.03747999 + inSlope: 0.02682586 + outSlope: 0.02682586 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5333335 + value: -0.03602818 + inSlope: -0.0031289116 + outSlope: -0.0031289116 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7333336 + value: -0.033645064 + inSlope: 0.006013827 + outSlope: 0.006013827 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0666668 + value: -0.034239672 + inSlope: -0.0003085661 + outSlope: -0.0003085661 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3666668 + value: -0.034284066 + inSlope: -0.007474597 + outSlope: -0.007474597 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6666667 + value: -0.034018077 + inSlope: 0.0018959903 + outSlope: 0.0018959903 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: -0.033747178 + inSlope: 0.011130395 + outSlope: 0.011130395 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0074112955 + inSlope: 0.013656774 + outSlope: 0.013656774 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.007589355 + inSlope: -0.016620016 + outSlope: -0.016620016 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.0051761214 + inSlope: -0.0058506597 + outSlope: -0.0058506597 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.005295799 + inSlope: -0.03993245 + outSlope: -0.03993245 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.0039855754 + inSlope: -0.14393064 + outSlope: -0.14393064 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.018080577 + inSlope: -0.09655893 + outSlope: -0.09655893 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.023893852 + inSlope: -0.0077254884 + outSlope: -0.0077254884 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.023636622 + inSlope: -0.012372596 + outSlope: -0.012372596 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.032325637 + inSlope: -0.1458619 + outSlope: -0.1458619 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.04130757 + inSlope: -0.09814793 + outSlope: -0.09814793 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -0.045964614 + inSlope: 0.0014159288 + outSlope: 0.0014159288 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: -0.03643561 + inSlope: 0.1259614 + outSlope: 0.1259614 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: -0.0257369 + inSlope: 0.0009495863 + outSlope: 0.0009495863 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: -0.027278185 + inSlope: 0.0328263 + outSlope: 0.0328263 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: -0.024327101 + inSlope: 0.050439797 + outSlope: 0.050439797 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: -0.011517138 + inSlope: 0.15506774 + outSlope: 0.15506774 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: -0.0074605434 + inSlope: -0.034160428 + outSlope: -0.034160428 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: -0.010868489 + inSlope: -0.0067685125 + outSlope: -0.0067685125 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: -0.009230357 + inSlope: 0.009101277 + outSlope: 0.009101277 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: -0.0075076893 + inSlope: 0.07318783 + outSlope: 0.07318783 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2333333 + value: 0.0052633737 + inSlope: 0.055296376 + outSlope: 0.055296376 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: 0.0060327942 + inSlope: -0.01128317 + outSlope: -0.01128317 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5333335 + value: 0.005796515 + inSlope: 0.0071856584 + outSlope: 0.0071856584 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7333336 + value: 0.004682259 + inSlope: -0.009385685 + outSlope: -0.009385685 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0666668 + value: 0.006562519 + inSlope: -0.0016654577 + outSlope: -0.0016654577 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3666668 + value: 0.004627532 + inSlope: 0.015680788 + outSlope: 0.015680788 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6666667 + value: 0.004643596 + inSlope: 0.00370578 + outSlope: 0.00370578 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.0074790516 + inSlope: 0.011125436 + outSlope: 0.011125436 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9914111 + inSlope: 0.014938115 + outSlope: 0.014938115 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.99041355 + inSlope: -0.044884983 + outSlope: -0.044884983 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.986349 + inSlope: -0.047509078 + outSlope: -0.047509078 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.9666726 + inSlope: -0.23786 + outSlope: -0.23786 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.9213424 + inSlope: -0.747963 + outSlope: -0.747963 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.8446715 + inSlope: -0.56084806 + outSlope: -0.56084806 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.7928336 + inSlope: -0.32608956 + outSlope: -0.32608956 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.7347449 + inSlope: -0.1119349 + outSlope: -0.1119349 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.7138259 + inSlope: -0.43997216 + outSlope: -0.43997216 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.6902282 + inSlope: -0.08843877 + outSlope: -0.08843877 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 0.7001506 + inSlope: 0.06704277 + outSlope: 0.06704277 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: 0.7297499 + inSlope: 0.54669195 + outSlope: 0.54669195 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: 0.79508364 + inSlope: 0.082326904 + outSlope: 0.082326904 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 0.7908377 + inSlope: 0.6850798 + outSlope: 0.6850798 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.85762906 + inSlope: 0.9310206 + outSlope: 0.9310206 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: 0.9115112 + inSlope: 0.2661294 + outSlope: 0.2661294 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: 0.9311866 + inSlope: 0.43709052 + outSlope: 0.43709052 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: 0.9665244 + inSlope: 0.4670096 + outSlope: 0.4670096 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: 0.98600245 + inSlope: 0.109890155 + outSlope: 0.109890155 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: 0.9771122 + inSlope: -0.10524283 + outSlope: -0.10524283 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2333333 + value: 0.969437 + inSlope: 0.045066353 + outSlope: 0.045066353 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: 0.9776216 + inSlope: 0.069176026 + outSlope: 0.069176026 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5333335 + value: 0.9819987 + inSlope: 0.0013303768 + outSlope: 0.0013303768 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7333336 + value: 0.9880177 + inSlope: 0.005670173 + outSlope: 0.005670173 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0666668 + value: 0.9887917 + inSlope: -0.0032025606 + outSlope: -0.0032025606 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3666668 + value: 0.9858652 + inSlope: -0.0004202132 + outSlope: -0.0004202132 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6666667 + value: 0.9867569 + inSlope: 0.011604082 + outSlope: 0.011604082 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.99140865 + inSlope: 0.046069667 + outSlope: 0.046069667 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.15088366 + inSlope: -0.1382102 + outSlope: -0.1382102 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.14578827 + inSlope: 0.43712413 + outSlope: 0.43712413 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.2572908 + inSlope: 1.8438153 + outSlope: 1.8438153 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.46064597 + inSlope: 1.8590034 + outSlope: 1.8590034 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.6208547 + inSlope: 0.61473453 + outSlope: 0.61473453 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.7162573 + inSlope: 0.22190365 + outSlope: 0.22190365 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: 0.742409 + inSlope: -0.09065323 + outSlope: -0.09065323 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 0.7110207 + inSlope: -0.11550565 + outSlope: -0.11550565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 0.67022395 + inSlope: -1.0927402 + outSlope: -1.0927402 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: 0.5608135 + inSlope: -1.8885677 + outSlope: -1.8885677 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: 0.44884664 + inSlope: -1.2326903 + outSlope: -1.2326903 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: 0.34204316 + inSlope: -0.6694015 + outSlope: -0.6694015 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3666668 + value: 0.17244302 + inSlope: -0.20962647 + outSlope: -0.20962647 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0333335 + value: 0.1357248 + inSlope: -0.0048883306 + outSlope: -0.0048883306 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.15088335 + inSlope: 0.036938522 + outSlope: 0.036938522 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0134964455 + inSlope: 0.00035251488 + outSlope: 0.00035251488 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.013509249 + inSlope: -0.0011275477 + outSlope: -0.0011275477 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.013138634 + inSlope: -0.007863232 + outSlope: -0.007863232 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.01194843 + inSlope: -0.014203681 + outSlope: -0.014203681 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.010426901 + inSlope: -0.007048901 + outSlope: -0.007048901 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.009176093 + inSlope: -0.0032955972 + outSlope: -0.0032955972 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: 0.008772232 + inSlope: 0.0014562567 + outSlope: 0.0014562567 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 0.009253441 + inSlope: 0.0016932267 + outSlope: 0.0016932267 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 0.0098191155 + inSlope: 0.013979869 + outSlope: 0.013979869 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: 0.011069886 + inSlope: 0.018811125 + outSlope: 0.018811125 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: 0.012037922 + inSlope: 0.009400076 + outSlope: 0.009400076 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: 0.012728958 + inSlope: 0.0037128872 + outSlope: 0.0037128872 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3666668 + value: 0.013437423 + inSlope: 0.0006044196 + outSlope: 0.0006044196 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0333335 + value: 0.013533797 + inSlope: 0.000012796385 + outSlope: 0.000012796385 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.013496546 + inSlope: -0.00009264806 + outSlope: -0.00009264806 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.018377002 + inSlope: 0.017244872 + outSlope: 0.017244872 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.017741092 + inSlope: -0.054559823 + outSlope: -0.054559823 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.031661145 + inSlope: -0.23024139 + outSlope: -0.23024139 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.057065245 + inSlope: -0.23234397 + outSlope: -0.23234397 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.077098265 + inSlope: -0.07690988 + outSlope: -0.07690988 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.08903908 + inSlope: -0.027784225 + outSlope: -0.027784225 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: -0.092314385 + inSlope: 0.011355012 + outSlope: 0.011355012 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: -0.088383384 + inSlope: 0.0144594405 + outSlope: 0.0144594405 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: -0.08327627 + inSlope: 0.13676172 + outSlope: 0.13676172 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: -0.06958832 + inSlope: 0.23617993 + outSlope: 0.23617993 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: -0.055590652 + inSlope: 0.15406439 + outSlope: 0.15406439 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: -0.04224603 + inSlope: 0.08361797 + outSlope: 0.08361797 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3666668 + value: -0.021068297 + inSlope: 0.02616774 + outSlope: 0.02616774 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0333335 + value: -0.016485194 + inSlope: 0.0006105384 + outSlope: 0.0006105384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: -0.018377148 + inSlope: -0.004613348 + outSlope: -0.004613348 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9882886 + inSlope: 0.021082161 + outSlope: 0.021082161 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.9890645 + inSlope: -0.06768466 + outSlope: -0.06768466 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.96572584 + inSlope: -0.51247007 + outSlope: -0.51247007 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.885667 + inSlope: -0.9739441 + outSlope: -0.9739441 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.7800555 + inSlope: -0.49338427 + outSlope: -0.49338427 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.6920718 + inSlope: -0.23292038 + outSlope: -0.23292038 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: 0.6634983 + inSlope: 0.102951154 + outSlope: 0.102951154 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 0.697533 + inSlope: 0.119498566 + outSlope: 0.119498566 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 0.7374066 + inSlope: 0.9827257 + outSlope: 0.9827257 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: 0.8249383 + inSlope: 1.3085127 + outSlope: 1.3085127 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: 0.89179677 + inSlope: 0.64447105 + outSlope: 0.64447105 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: 0.93864787 + inSlope: 0.24870498 + outSlope: 0.24870498 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3666668 + value: 0.98470247 + inSlope: 0.03733013 + outSlope: 0.03733013 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0333335 + value: 0.99051696 + inSlope: 0.0006794936 + outSlope: 0.0006794936 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.9882886 + inSlope: -0.005700594 + outSlope: -0.005700594 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.15973808 + inSlope: -0.03207922 + outSlope: -0.03207922 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.19092454 + inSlope: 0.52630466 + outSlope: 0.52630466 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.30007774 + inSlope: 1.6719352 + outSlope: 1.6719352 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.46671712 + inSlope: 1.3157202 + outSlope: 1.3157202 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.5448282 + inSlope: 0.028792575 + outSlope: 0.028792575 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.5588066 + inSlope: 0.15249151 + outSlope: 0.15249151 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.5952818 + inSlope: -0.026721086 + outSlope: -0.026721086 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 0.5821887 + inSlope: -0.011832109 + outSlope: -0.011832109 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 0.54991597 + inSlope: -1.0560895 + outSlope: -1.0560895 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: 0.44221 + inSlope: -1.8274388 + outSlope: -1.8274388 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: 0.3386441 + inSlope: -1.0476079 + outSlope: -1.0476079 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: 0.26244706 + inSlope: -0.43497398 + outSlope: -0.43497398 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: 0.18278542 + inSlope: -0.08632765 + outSlope: -0.08632765 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2333336 + value: 0.16340612 + inSlope: -0.034583095 + outSlope: -0.034583095 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.15973805 + inSlope: 0.010222355 + outSlope: 0.010222355 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2/mixamorig:RightHandMiddle3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0029594193 + inSlope: -0.0000012782401 + outSlope: -0.0000012782401 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.0029569378 + inSlope: 0.00007558382 + outSlope: 0.00007558382 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.0029239538 + inSlope: 0.0008357911 + outSlope: 0.0008357911 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.0027926501 + inSlope: 0.0014432486 + outSlope: 0.0014432486 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.0026916477 + inSlope: 0.00004266382 + outSlope: 0.00004266382 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.0026703915 + inSlope: 0.00023822047 + outSlope: 0.00023822047 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.0026100709 + inSlope: -0.000049254206 + outSlope: -0.000049254206 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: -0.0026323942 + inSlope: -0.000020298145 + outSlope: -0.000020298145 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: -0.0026838828 + inSlope: -0.0015397046 + outSlope: -0.0015397046 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: -0.0028186175 + inSlope: -0.0018639725 + outSlope: -0.0018639725 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: -0.0029026675 + inSlope: -0.00068052736 + outSlope: -0.00068052736 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: -0.00293983 + inSlope: -0.00015675896 + outSlope: -0.00015675896 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: -0.0029579508 + inSlope: -0.000008661308 + outSlope: -0.000008661308 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2333336 + value: -0.0029594472 + inSlope: -0.000004809122 + outSlope: -0.000004809122 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: -0.0029594796 + inSlope: -0.0000015646234 + outSlope: -0.0000015646234 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2/mixamorig:RightHandMiddle3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.018621298 + inSlope: 0.0036485863 + outSlope: 0.0036485863 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.022167483 + inSlope: -0.059843495 + outSlope: -0.059843495 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.034576066 + inSlope: -0.19001308 + outSlope: -0.19001308 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.053506967 + inSlope: -0.14941001 + outSlope: -0.14941001 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.062374454 + inSlope: -0.0032717865 + outSlope: -0.0032717865 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.06396107 + inSlope: -0.01730515 + outSlope: -0.01730515 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.06809987 + inSlope: 0.003030899 + outSlope: 0.003030899 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: -0.06661436 + inSlope: 0.001341774 + outSlope: 0.001341774 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: -0.0629521 + inSlope: 0.11986843 + outSlope: 0.11986843 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: -0.050723776 + inSlope: 0.20754105 + outSlope: 0.20754105 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: -0.03895882 + inSlope: 0.119031966 + outSlope: 0.119031966 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: -0.030298874 + inSlope: 0.049442243 + outSlope: 0.049442243 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: -0.021242077 + inSlope: 0.009814631 + outSlope: 0.009814631 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2333336 + value: -0.019038312 + inSlope: 0.0039306413 + outSlope: 0.0039306413 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: -0.018621236 + inSlope: -0.0011610065 + outSlope: -0.0011610065 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2/mixamorig:RightHandMiddle3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.98697937 + inSlope: 0.005242824 + outSlope: 0.005242824 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.98134995 + inSlope: -0.1060027 + outSlope: -0.1060027 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.9532835 + inSlope: -0.5422256 + outSlope: -0.5422256 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.8827822 + inSlope: -0.6952778 + outSlope: -0.6952778 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.8362203 + inSlope: -0.018912226 + outSlope: -0.018912226 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.8268235 + inSlope: -0.104420096 + outSlope: -0.104420096 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.80062175 + inSlope: 0.020112116 + outSlope: 0.020112116 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 0.8103159 + inSlope: 0.008611672 + outSlope: 0.008611672 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 0.8328399 + inSlope: 0.68747944 + outSlope: 0.68747944 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: 0.89547163 + inSlope: 0.9188863 + outSlope: 0.9188863 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: 0.94010323 + inSlope: 0.39353317 + outSlope: 0.39353317 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: 0.96446615 + inSlope: 0.120478496 + outSlope: 0.120478496 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: 0.9829189 + inSlope: 0.016273871 + outSlope: 0.016273871 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2333336 + value: 0.98637074 + inSlope: 0.0058150347 + outSlope: 0.0058150347 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.98697937 + inSlope: -0.0016754882 + outSlope: -0.0016754882 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2/mixamorig:RightHandMiddle3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.22380808 + inSlope: -0.091295235 + outSlope: -0.091295235 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.24651767 + inSlope: 0.52651924 + outSlope: 0.52651924 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.2881826 + inSlope: 0.4063726 + outSlope: 0.4063726 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.390342 + inSlope: 0.8563477 + outSlope: 0.8563477 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.51041627 + inSlope: 1.6024013 + outSlope: 1.6024013 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.6470382 + inSlope: 0.8713888 + outSlope: 0.8713888 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.69956565 + inSlope: 0.124535814 + outSlope: 0.124535814 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.7248573 + inSlope: -0.1940345 + outSlope: -0.1940345 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.7101782 + inSlope: 0.048784956 + outSlope: 0.048784956 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.74016666 + inSlope: 0.037289895 + outSlope: 0.037289895 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 0.72094744 + inSlope: -0.13887687 + outSlope: -0.13887687 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: 0.6731195 + inSlope: -0.8761927 + outSlope: -0.8761927 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: 0.57977986 + inSlope: 0.05795902 + outSlope: 0.05795902 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 0.6099302 + inSlope: -0.9747247 + outSlope: -0.9747247 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.5038451 + inSlope: -1.5202873 + outSlope: -1.5202873 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: 0.42700717 + inSlope: -0.36213776 + outSlope: -0.36213776 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: 0.38286474 + inSlope: -1.2838321 + outSlope: -1.2838321 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: 0.2574996 + inSlope: -2.0477154 + outSlope: -2.0477154 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: 0.15364322 + inSlope: -0.56078964 + outSlope: -0.56078964 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: 0.21701404 + inSlope: 0.9753856 + outSlope: 0.9753856 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: 0.32468805 + inSlope: 0.14286444 + outSlope: 0.14286444 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: 0.32085413 + inSlope: -0.20624599 + outSlope: -0.20624599 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5000002 + value: 0.27048147 + inSlope: 0.013932966 + outSlope: 0.013932966 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6000001 + value: 0.26687533 + inSlope: -0.31437173 + outSlope: -0.31437173 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7 + value: 0.23451717 + inSlope: -0.09318022 + outSlope: -0.09318022 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0000002 + value: 0.228501 + inSlope: -0.06331293 + outSlope: -0.06331293 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2333336 + value: 0.2501687 + inSlope: 0.2338665 + outSlope: 0.2338665 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4333334 + value: 0.25087744 + inSlope: 0.009486506 + outSlope: 0.009486506 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6333334 + value: 0.24076958 + inSlope: -0.043697026 + outSlope: -0.043697026 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.22380346 + inSlope: 0.04719083 + outSlope: 0.04719083 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.012619638 + inSlope: 0.008646911 + outSlope: 0.008646911 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.014164874 + inSlope: -0.027681 + outSlope: -0.027681 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.011715072 + inSlope: 0.055914115 + outSlope: 0.055914115 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.006457347 + inSlope: -0.0046039885 + outSlope: -0.0046039885 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.021644395 + inSlope: -0.28033796 + outSlope: -0.28033796 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.04405621 + inSlope: -0.09408761 + outSlope: -0.09408761 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.03692987 + inSlope: 0.11825323 + outSlope: 0.11825323 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.01558152 + inSlope: 0.15098156 + outSlope: 0.15098156 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.006407471 + inSlope: 0.08357307 + outSlope: 0.08357307 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.0052980497 + inSlope: -0.0037731172 + outSlope: -0.0037731172 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -0.006797133 + inSlope: -0.04688659 + outSlope: -0.04688659 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: -0.014071014 + inSlope: -0.03905888 + outSlope: -0.03905888 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: -0.019352779 + inSlope: -0.09649404 + outSlope: -0.09649404 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: -0.036420062 + inSlope: 0.090510346 + outSlope: 0.090510346 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: -0.023192156 + inSlope: 0.15823928 + outSlope: 0.15823928 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: -0.02695642 + inSlope: -0.12205505 + outSlope: -0.12205505 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: -0.027000206 + inSlope: 0.16421692 + outSlope: 0.16421692 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: -0.011455303 + inSlope: 0.16297518 + outSlope: 0.16297518 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: -0.008005112 + inSlope: -0.013653333 + outSlope: -0.013653333 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: -0.015249688 + inSlope: -0.12866533 + outSlope: -0.12866533 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: -0.034136973 + inSlope: -0.014562005 + outSlope: -0.014562005 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: -0.03205279 + inSlope: 0.04269134 + outSlope: 0.04269134 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5000002 + value: -0.023349255 + inSlope: 0.0074721053 + outSlope: 0.0074721053 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6000001 + value: -0.021690655 + inSlope: 0.053420685 + outSlope: 0.053420685 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7 + value: -0.01719896 + inSlope: 0.010995468 + outSlope: 0.010995468 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0000002 + value: -0.015920306 + inSlope: 0.0024830294 + outSlope: 0.0024830294 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2333336 + value: -0.019242125 + inSlope: -0.02814682 + outSlope: -0.02814682 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4333334 + value: -0.020113204 + inSlope: -0.0038327014 + outSlope: -0.0038327014 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6333334 + value: -0.019421423 + inSlope: 0.00530832 + outSlope: 0.00530832 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: -0.012654256 + inSlope: 0.06673624 + outSlope: 0.06673624 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.015466794 + inSlope: -0.010137129 + outSlope: -0.010137129 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.015068689 + inSlope: -0.0012370856 + outSlope: -0.0012370856 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.021243207 + inSlope: -0.09752278 + outSlope: -0.09752278 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.03413192 + inSlope: -0.05537565 + outSlope: -0.05537565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.031675376 + inSlope: 0.030415863 + outSlope: 0.030415863 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.036727883 + inSlope: -0.0936096 + outSlope: -0.0936096 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.04760531 + inSlope: -0.061655432 + outSlope: -0.061655432 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.058421418 + inSlope: -0.029150646 + outSlope: -0.029150646 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.06005911 + inSlope: -0.033777483 + outSlope: -0.033777483 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.063252546 + inSlope: -0.002384374 + outSlope: -0.002384374 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -0.060958073 + inSlope: 0.029459177 + outSlope: 0.029459177 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: -0.053281724 + inSlope: 0.10974403 + outSlope: 0.10974403 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: -0.04049773 + inSlope: 0.047048282 + outSlope: 0.047048282 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: -0.03501747 + inSlope: 0.08294874 + outSlope: 0.08294874 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: -0.029882358 + inSlope: 0.060575932 + outSlope: 0.060575932 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: -0.018483844 + inSlope: 0.14606306 + outSlope: 0.14606306 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: -0.013603427 + inSlope: -0.029515099 + outSlope: -0.029515099 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: -0.019533832 + inSlope: -0.0780365 + outSlope: -0.0780365 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: -0.020681968 + inSlope: 0.046755344 + outSlope: 0.046755344 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: -0.011770736 + inSlope: 0.10423651 + outSlope: 0.10423651 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: 0.0006913488 + inSlope: 0.00035804836 + outSlope: 0.00035804836 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: -0.0009094609 + inSlope: -0.021828972 + outSlope: -0.021828972 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5000002 + value: -0.0054076584 + inSlope: -0.009923034 + outSlope: -0.009923034 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6000001 + value: -0.0070959046 + inSlope: -0.03740541 + outSlope: -0.03740541 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7 + value: -0.010001154 + inSlope: -0.006142291 + outSlope: -0.006142291 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0000002 + value: -0.011260865 + inSlope: -0.0011591065 + outSlope: -0.0011591065 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2333336 + value: -0.008619912 + inSlope: 0.01702165 + outSlope: 0.01702165 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4333334 + value: -0.0076289605 + inSlope: 0.006416145 + outSlope: 0.006416145 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6333334 + value: -0.0076774675 + inSlope: -0.0030212947 + outSlope: -0.0030212947 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: -0.015480842 + inSlope: -0.09599652 + outSlope: -0.09599652 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.97442883 + inSlope: 0.02076566 + outSlope: 0.02076566 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.9689176 + inSlope: -0.1349205 + outSlope: -0.1349205 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.9572682 + inSlope: -0.12540133 + outSlope: -0.12540133 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.9200144 + inSlope: -0.36632255 + outSlope: -0.36632255 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.85907125 + inSlope: -0.965274 + outSlope: -0.965274 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.76029706 + inSlope: -0.7416522 + outSlope: -0.7416522 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.71202374 + inSlope: -0.12102927 + outSlope: -0.12102927 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.68624055 + inSlope: 0.2039998 + outSlope: 0.2039998 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.70142627 + inSlope: -0.05236481 + outSlope: -0.05236481 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.66942096 + inSlope: -0.040769614 + outSlope: -0.040769614 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 0.69027007 + inSlope: 0.14771119 + outSlope: 0.14771119 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: 0.7374776 + inSlope: 0.79933393 + outSlope: 0.79933393 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: 0.8135359 + inSlope: -0.042371787 + outSlope: -0.042371787 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 0.7908429 + inSlope: 0.7299602 + outSlope: 0.7299602 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.8629654 + inSlope: 0.9140745 + outSlope: 0.9140745 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: 0.9036573 + inSlope: 0.1701011 + outSlope: 0.1701011 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: 0.92330956 + inSlope: 0.5174594 + outSlope: 0.5174594 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: 0.966013 + inSlope: 0.55339986 + outSlope: 0.55339986 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: 0.9878775 + inSlope: 0.099291004 + outSlope: 0.099291004 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: 0.9759784 + inSlope: -0.21534148 + outSlope: -0.21534148 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: 0.9452047 + inSlope: -0.048891354 + outSlope: -0.048891354 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: 0.94658566 + inSlope: 0.0705368 + outSlope: 0.0705368 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5000002 + value: 0.96242684 + inSlope: -0.003824002 + outSlope: -0.003824002 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6000001 + value: 0.96346086 + inSlope: 0.08685269 + outSlope: 0.08685269 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7 + value: 0.9719084 + inSlope: 0.022901608 + outSlope: 0.022901608 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0000002 + value: 0.9733484 + inSlope: 0.0149184605 + outSlope: 0.0149184605 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2333336 + value: 0.9679727 + inSlope: -0.060483873 + outSlope: -0.060483873 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4333334 + value: 0.9677798 + inSlope: -0.0024872967 + outSlope: -0.0024872967 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6333334 + value: 0.9703576 + inSlope: 0.010871003 + outSlope: 0.010871003 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.9744292 + inSlope: -0.011224161 + outSlope: -0.011224161 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.15110858 + inSlope: 0.0038945673 + outSlope: 0.0038945673 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.15786715 + inSlope: 0.17413925 + outSlope: 0.17413925 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.21784167 + inSlope: 1.1157162 + outSlope: 1.1157162 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.39147642 + inSlope: 1.2640026 + outSlope: 1.2640026 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.5338125 + inSlope: 0.59936863 + outSlope: 0.59936863 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.5789505 + inSlope: 0.07405045 + outSlope: 0.07405045 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.5874923 + inSlope: 0.053544987 + outSlope: 0.053544987 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: 0.58285403 + inSlope: -0.022777304 + outSlope: -0.022777304 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.5570707 + inSlope: -0.29737803 + outSlope: -0.29737803 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 0.53395456 + inSlope: -0.39636812 + outSlope: -0.39636812 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.47046825 + inSlope: -1.5574248 + outSlope: -1.5574248 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: 0.29872367 + inSlope: -1.326288 + outSlope: -1.326288 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9000001 + value: 0.18935956 + inSlope: -0.3328665 + outSlope: -0.3328665 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: 0.13524574 + inSlope: 0.029198555 + outSlope: 0.029198555 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5666668 + value: 0.1211191 + inSlope: 0.021086542 + outSlope: 0.021086542 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6666667 + value: 0.11565237 + inSlope: -0.02251878 + outSlope: -0.02251878 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.15116113 + inSlope: 0.61323893 + outSlope: 0.61323893 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.00014143312 + inSlope: 0.0000006858317 + outSlope: 0.0000006858317 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.00014108555 + inSlope: -0.0000026784985 + outSlope: -0.0000026784985 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.00013960696 + inSlope: -0.000037792346 + outSlope: -0.000037792346 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.00013162121 + inSlope: -0.000077097335 + outSlope: -0.000077097335 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.00012060898 + inSlope: -0.000053086434 + outSlope: -0.000053086434 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.000116389354 + inSlope: -0.0000073898254 + outSlope: -0.0000073898254 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.00011526676 + inSlope: -0.0000066607818 + outSlope: -0.0000066607818 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: 0.00011577862 + inSlope: 0.0000028508375 + outSlope: 0.0000028508375 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.00011833113 + inSlope: 0.000023318364 + outSlope: 0.000023318364 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 0.000120775876 + inSlope: 0.00003704577 + outSlope: 0.00003704577 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.00012612503 + inSlope: 0.00011838423 + outSlope: 0.00011838423 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: 0.00013640513 + inSlope: 0.000061951796 + outSlope: 0.000061951796 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9000001 + value: 0.00014063713 + inSlope: 0.000012055763 + outSlope: 0.000012055763 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: 0.00014173226 + inSlope: 0.0000003719473 + outSlope: 0.0000003719473 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5666668 + value: 0.00014207882 + inSlope: -0.0000010204541 + outSlope: -0.0000010204541 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6666667 + value: 0.0001421062 + inSlope: 0.000002004883 + outSlope: 0.000002004883 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.00014143599 + inSlope: -0.00001915092 + outSlope: -0.00001915092 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.016894022 + inSlope: -0.0004373118 + outSlope: -0.0004373118 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.017649688 + inSlope: -0.019467551 + outSlope: -0.019467551 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.024354884 + inSlope: -0.12473742 + outSlope: -0.12473742 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.04376744 + inSlope: -0.14131933 + outSlope: -0.14131933 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.05968059 + inSlope: -0.06700969 + outSlope: -0.06700969 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.0647272 + inSlope: -0.00827797 + outSlope: -0.00827797 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.065681905 + inSlope: -0.0059854668 + outSlope: -0.0059854668 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: -0.06516353 + inSlope: 0.0025480967 + outSlope: 0.0025480967 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.062281 + inSlope: 0.033245616 + outSlope: 0.033245616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: -0.059696462 + inSlope: 0.044317503 + outSlope: 0.044317503 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: -0.052598674 + inSlope: 0.17411889 + outSlope: 0.17411889 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: -0.03339748 + inSlope: 0.14827953 + outSlope: 0.14827953 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9000001 + value: -0.02117058 + inSlope: 0.03721429 + outSlope: 0.03721429 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: -0.015120561 + inSlope: -0.0032656766 + outSlope: -0.0032656766 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5666668 + value: -0.01354121 + inSlope: -0.0023559737 + outSlope: -0.0023559737 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6666667 + value: -0.0129300095 + inSlope: 0.002516648 + outSlope: 0.002516648 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: -0.01689991 + inSlope: -0.068556964 + outSlope: -0.068556964 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9883728 + inSlope: -0.0006026029 + outSlope: -0.0006026029 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.9873026 + inSlope: -0.028680854 + outSlope: -0.028680854 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.97568023 + inSlope: -0.25839064 + outSlope: -0.25839064 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.9191467 + inSlope: -0.546035 + outSlope: -0.546035 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.84349424 + inSlope: -0.37988362 + outSlope: -0.37988362 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.8127895 + inSlope: -0.05331786 + outSlope: -0.05331786 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.8065598 + inSlope: -0.039394535 + outSlope: -0.039394535 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: 0.8099598 + inSlope: 0.016592134 + outSlope: 0.016592134 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.82812643 + inSlope: 0.20245475 + outSlope: 0.20245475 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 0.84340316 + inSlope: 0.24962382 + outSlope: 0.24962382 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.88084793 + inSlope: 0.82481223 + outSlope: 0.82481223 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: 0.9537551 + inSlope: 0.43115294 + outSlope: 0.43115294 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9000001 + value: 0.98167956 + inSlope: 0.06542182 + outSlope: 0.06542182 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: 0.9906967 + inSlope: -0.0040420927 + outSlope: -0.0040420927 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5666668 + value: 0.9925456 + inSlope: -0.002609792 + outSlope: -0.002609792 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6666667 + value: 0.9932056 + inSlope: 0.0026598526 + outSlope: 0.0026598526 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.9883647 + inSlope: -0.08840927 + outSlope: -0.08840927 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.14335826 + inSlope: 0.0038824973 + outSlope: 0.0038824973 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.1501222 + inSlope: 0.17433013 + outSlope: 0.17433013 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.21018553 + inSlope: 1.1177117 + outSlope: 1.1177117 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.38426402 + inSlope: 1.2684867 + outSlope: 1.2684867 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.52722883 + inSlope: 0.60224485 + outSlope: 0.60224485 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.57240796 + inSlope: 0.07213446 + outSlope: 0.07213446 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.58038247 + inSlope: 0.052081395 + outSlope: 0.052081395 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: 0.5758585 + inSlope: -0.021015093 + outSlope: -0.021015093 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.5502751 + inSlope: -0.29770437 + outSlope: -0.29770437 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 0.52719414 + inSlope: -0.39645037 + outSlope: -0.39645037 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.46352592 + inSlope: -1.5626127 + outSlope: -1.5626127 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: 0.29128698 + inSlope: -1.3292584 + outSlope: -1.3292584 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9000001 + value: 0.1817307 + inSlope: -0.3329789 + outSlope: -0.3329789 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: 0.12749654 + inSlope: 0.02905841 + outSlope: 0.02905841 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5666668 + value: 0.113325976 + inSlope: 0.02108319 + outSlope: 0.02108319 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6666667 + value: 0.10786283 + inSlope: -0.022517998 + outSlope: -0.022517998 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.14341146 + inSlope: 0.6139442 + outSlope: 0.6139442 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2/mixamorig:RightHandPinky3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.00000007584659 + inSlope: 0.0000019572308 + outSlope: 0.0000019572308 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.000000055620625 + inSlope: -0.00000037847033 + outSlope: -0.00000037847033 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.000000008904965 + inSlope: 0.000000057759962 + outSlope: 0.000000057759962 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.00000007033463 + inSlope: 0.0000018711559 + outSlope: 0.0000018711559 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.00000004160134 + inSlope: -0.000002235185 + outSlope: -0.000002235185 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.00000023544294 + inSlope: -0.0000001466949 + outSlope: -0.0000001466949 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.000000083868535 + inSlope: -0.0000008390738 + outSlope: -0.0000008390738 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: -0.000000117454455 + inSlope: 0.0000010585865 + outSlope: 0.0000010585865 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.00000020409993 + inSlope: 0.000000055801138 + outSlope: 0.000000055801138 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: -0.00000008571465 + inSlope: -0.0000013951914 + outSlope: -0.0000013951914 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: -0.00000005599173 + inSlope: 0.00000010855808 + outSlope: 0.00000010855808 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: 0.00000009319686 + inSlope: 0.00000089306195 + outSlope: 0.00000089306195 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9000001 + value: -0.00000013347086 + inSlope: -0.00000075009973 + outSlope: -0.00000075009973 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: -0.00000003477413 + inSlope: -0.0000004379483 + outSlope: -0.0000004379483 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5666668 + value: -0.0000000266145 + inSlope: 0.0000001224276 + outSlope: 0.0000001224276 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6666667 + value: -0.000000042862325 + inSlope: -0.0000037687278 + outSlope: -0.0000037687278 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.000000041866574 + inSlope: 0.000002463952 + outSlope: 0.000002463952 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2/mixamorig:RightHandPinky3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.016006755 + inSlope: -0.00043474135 + outSlope: -0.00043474135 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.016762033 + inSlope: -0.019466098 + outSlope: -0.019466098 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.023468478 + inSlope: -0.12479925 + outSlope: -0.12479925 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.042905357 + inSlope: -0.1416331 + outSlope: -0.1416331 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.05886822 + inSlope: -0.06724186 + outSlope: -0.06724186 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.06391281 + inSlope: -0.008054564 + outSlope: -0.008054564 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.06480317 + inSlope: -0.0058155935 + outSlope: -0.0058155935 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: -0.064297974 + inSlope: 0.002347155 + outSlope: 0.002347155 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.061441433 + inSlope: 0.033241816 + outSlope: 0.033241816 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: -0.05886422 + inSlope: 0.04426805 + outSlope: 0.04426805 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: -0.051755514 + inSlope: 0.17447424 + outSlope: 0.17447424 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: -0.032523993 + inSlope: 0.1484229 + outSlope: 0.1484229 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9000001 + value: -0.020291261 + inSlope: 0.037179366 + outSlope: 0.037179366 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: -0.014235724 + inSlope: -0.0032430454 + outSlope: -0.0032430454 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5666668 + value: -0.012653436 + inSlope: -0.0023533474 + outSlope: -0.0023533474 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6666667 + value: -0.012043377 + inSlope: 0.002514399 + outSlope: 0.002514399 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: -0.016012728 + inSlope: -0.06855291 + outSlope: -0.06855291 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2/mixamorig:RightHandPinky3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9895414 + inSlope: -0.0005704164 + outSlope: -0.0005704164 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.9885254 + inSlope: -0.02729147 + outSlope: -0.02729147 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.97737986 + inSlope: -0.24951878 + outSlope: -0.24951878 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.9222257 + inSlope: -0.5360822 + outSlope: -0.5360822 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.8476817 + inSlope: -0.37508875 + outSlope: -0.37508875 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.8174743 + inSlope: -0.051054075 + outSlope: -0.051054075 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.8117615 + inSlope: -0.037609972 + outSlope: -0.037609972 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: 0.81501704 + inSlope: 0.015030195 + outSlope: 0.015030195 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.8327198 + inSlope: 0.19909127 + outSlope: 0.19909127 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 0.8477036 + inSlope: 0.24522233 + outSlope: 0.24522233 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.8845706 + inSlope: 0.8116882 + outSlope: 0.8116882 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: 0.9560827 + inSlope: 0.42055464 + outSlope: 0.42055464 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9000001 + value: 0.983139 + inSlope: 0.06272709 + outSlope: 0.06272709 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: 0.9917368 + inSlope: -0.0037872826 + outSlope: -0.0037872826 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5666668 + value: 0.9934773 + inSlope: -0.0024390244 + outSlope: -0.0024390244 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6666667 + value: 0.9940929 + inSlope: 0.0024774629 + outSlope: 0.0024774629 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.9895336 + inSlope: -0.08354195 + outSlope: -0.08354195 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2/mixamorig:RightHandPinky3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.1305907 + inSlope: -0.009866058 + outSlope: -0.009866058 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.1405492 + inSlope: -0.0022454592 + outSlope: -0.0022454592 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.150882 + inSlope: -0.079422235 + outSlope: -0.079422235 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: -0.15301129 + inSlope: 0.02150168 + outSlope: 0.02150168 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: -0.1495159 + inSlope: -0.0004121709 + outSlope: -0.0004121709 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: -0.14572318 + inSlope: 0.03264043 + outSlope: 0.03264043 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: -0.14886527 + inSlope: -0.026556354 + outSlope: -0.026556354 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3666668 + value: -0.14486326 + inSlope: 0.05233822 + outSlope: 0.05233822 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9 + value: -0.13521837 + inSlope: 0.00845433 + outSlope: 0.00845433 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: -0.13059242 + inSlope: -0.011330109 + outSlope: -0.011330109 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: Armature.001/mixamorig:Hips/mixamorig:LeftUpLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.10282725 + inSlope: -0.021817086 + outSlope: -0.021817086 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.052059665 + inSlope: -0.095998734 + outSlope: -0.095998734 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.0663987 + inSlope: 0.2932269 + outSlope: 0.2932269 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: 0.10004288 + inSlope: -0.028721727 + outSlope: -0.028721727 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: 0.08657429 + inSlope: 0.058469202 + outSlope: 0.058469202 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: 0.11587174 + inSlope: 0.16207957 + outSlope: 0.16207957 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: 0.11364505 + inSlope: -0.04676581 + outSlope: -0.04676581 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3666668 + value: 0.11152782 + inSlope: 0.05381109 + outSlope: 0.05381109 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9 + value: 0.10913792 + inSlope: -0.026966732 + outSlope: -0.026966732 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.10281534 + inSlope: 0.0126093 + outSlope: 0.0126093 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: Armature.001/mixamorig:Hips/mixamorig:LeftUpLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.98408717 + inSlope: -0.00047564504 + outSlope: -0.00047564504 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.98650926 + inSlope: 0.007795394 + outSlope: 0.007795394 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.9839209 + inSlope: -0.03963858 + outSlope: -0.03963858 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: 0.98067284 + inSlope: 0.007385902 + outSlope: 0.007385902 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: 0.98238283 + inSlope: -0.0030228482 + outSlope: -0.0030228482 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: 0.9805447 + inSlope: -0.011143674 + outSlope: -0.011143674 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: 0.9797567 + inSlope: -0.0028100635 + outSlope: -0.0028100635 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3666668 + value: 0.9806703 + inSlope: 0.004177097 + outSlope: 0.004177097 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9 + value: 0.98312366 + inSlope: 0.005139117 + outSlope: 0.005139117 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.98408824 + inSlope: -0.0031524927 + outSlope: -0.0031524927 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: Armature.001/mixamorig:Hips/mixamorig:LeftUpLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.06280998 + inSlope: 0.02236068 + outSlope: 0.02236068 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.06584233 + inSlope: -0.045476742 + outSlope: -0.045476742 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.068742916 + inSlope: 0.107296534 + outSlope: 0.107296534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: 0.06971198 + inSlope: -0.015577709 + outSlope: -0.015577709 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: 0.07123132 + inSlope: -0.030199967 + outSlope: -0.030199967 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: 0.062214904 + inSlope: -0.047615584 + outSlope: -0.047615584 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: 0.07071562 + inSlope: 0.058242552 + outSlope: 0.058242552 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3666668 + value: 0.069728374 + inSlope: -0.036007795 + outSlope: -0.036007795 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9 + value: 0.05720819 + inSlope: -0.01691084 + outSlope: -0.01691084 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.062808745 + inSlope: 0.0052633933 + outSlope: 0.0052633933 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: Armature.001/mixamorig:Hips/mixamorig:LeftUpLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.22627036 + inSlope: -0.03245607 + outSlope: -0.03245607 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.20547397 + inSlope: 0.123722374 + outSlope: 0.123722374 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.18531135 + inSlope: -0.017971009 + outSlope: -0.017971009 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.21899249 + inSlope: -0.5186825 + outSlope: -0.5186825 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.27522406 + inSlope: -0.04496683 + outSlope: -0.04496683 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666668 + value: -0.26443893 + inSlope: 0.0009101499 + outSlope: 0.0009101499 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: -0.25656828 + inSlope: -0.05131242 + outSlope: -0.05131242 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: -0.23742346 + inSlope: 0.035410024 + outSlope: 0.035410024 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.266667 + value: -0.21670744 + inSlope: 0.040323295 + outSlope: 0.040323295 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5666668 + value: -0.20711342 + inSlope: 0.016673522 + outSlope: 0.016673522 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0333335 + value: -0.2106433 + inSlope: -0.0071138954 + outSlope: -0.0071138954 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: -0.22627053 + inSlope: -0.01211242 + outSlope: -0.01211242 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: Armature.001/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0091352025 + inSlope: 0.066950366 + outSlope: 0.066950366 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.049390424 + inSlope: -0.00053526834 + outSlope: -0.00053526834 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.034271486 + inSlope: 0.077703975 + outSlope: 0.077703975 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.043510083 + inSlope: 0.049141653 + outSlope: 0.049141653 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.043616384 + inSlope: -0.03438707 + outSlope: -0.03438707 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666668 + value: 0.02848287 + inSlope: -0.070772626 + outSlope: -0.070772626 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: 0.001971225 + inSlope: -0.10140636 + outSlope: -0.10140636 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: -0.019670444 + inSlope: -0.076352745 + outSlope: -0.076352745 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.266667 + value: -0.02306892 + inSlope: 0.16740358 + outSlope: 0.16740358 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5666668 + value: 0.005064833 + inSlope: 0.03629329 + outSlope: 0.03629329 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0333335 + value: 0.011944602 + inSlope: 0.025752807 + outSlope: 0.025752807 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.009135926 + inSlope: -0.045522522 + outSlope: -0.045522522 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: Armature.001/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.08809244 + inSlope: -0.011390223 + outSlope: -0.011390223 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.09048382 + inSlope: 0.0330905 + outSlope: 0.0330905 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.081558354 + inSlope: 0.0013368565 + outSlope: 0.0013368565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.08200232 + inSlope: -0.0702783 + outSlope: -0.0702783 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.11699896 + inSlope: -0.13517866 + outSlope: -0.13517866 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666668 + value: -0.11187043 + inSlope: 0.016407717 + outSlope: 0.016407717 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: -0.104041316 + inSlope: -0.0033005928 + outSlope: -0.0033005928 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: -0.075626865 + inSlope: 0.07195757 + outSlope: 0.07195757 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.266667 + value: -0.06788683 + inSlope: -0.08651197 + outSlope: -0.08651197 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5666668 + value: -0.08309582 + inSlope: -0.018773023 + outSlope: -0.018773023 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0333335 + value: -0.08566145 + inSlope: -0.016805284 + outSlope: -0.016805284 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: -0.08809257 + inSlope: 0.03294784 + outSlope: 0.03294784 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: Armature.001/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9700299 + inSlope: -0.009334086 + outSlope: -0.009334086 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.9732182 + inSlope: 0.029187774 + outSlope: 0.029187774 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.9786897 + inSlope: -0.0060278126 + outSlope: -0.0060278126 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.97130054 + inSlope: -0.1258403 + outSlope: -0.1258403 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.95323694 + inSlope: -0.02778503 + outSlope: -0.02778503 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666668 + value: 0.95746845 + inSlope: 0.0042745387 + outSlope: 0.0042745387 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: 0.96090806 + inSlope: -0.013820524 + outSlope: -0.013820524 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: 0.9682581 + inSlope: 0.012738682 + outSlope: 0.012738682 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.266667 + value: 0.9736001 + inSlope: 0.006963879 + outSlope: 0.006963879 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5666668 + value: 0.97476846 + inSlope: 0.0017648953 + outSlope: 0.0017648953 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0333335 + value: 0.9737294 + inSlope: -0.0033375653 + outSlope: -0.0033375653 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.9700299 + inSlope: 0.0006526715 + outSlope: 0.0006526715 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: Armature.001/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.60308075 + inSlope: 0.02676308 + outSlope: 0.02676308 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.5985585 + inSlope: -0.069102645 + outSlope: -0.069102645 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.5917965 + inSlope: -0.04095819 + outSlope: -0.04095819 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.60591996 + inSlope: 0.01650635 + outSlope: 0.01650635 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: 0.5922711 + inSlope: -0.040230405 + outSlope: -0.040230405 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.5924453 + inSlope: 0.00093519775 + outSlope: 0.00093519775 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: 0.5945406 + inSlope: 0.05057389 + outSlope: 0.05057389 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: 0.60226524 + inSlope: -0.021610579 + outSlope: -0.021610579 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: 0.59992665 + inSlope: -0.014450862 + outSlope: -0.014450862 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2000003 + value: 0.6024101 + inSlope: -0.0034421585 + outSlope: -0.0034421585 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.6030791 + inSlope: -0.0025999572 + outSlope: -0.0025999572 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: Armature.001/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.055030085 + inSlope: 0.008699857 + outSlope: 0.008699857 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.059207264 + inSlope: -0.023408536 + outSlope: -0.023408536 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.043027516 + inSlope: -0.3038985 + outSlope: -0.3038985 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.041628405 + inSlope: -0.33851808 + outSlope: -0.33851808 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: -0.07005691 + inSlope: -0.025368176 + outSlope: -0.025368176 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: -0.047386758 + inSlope: 0.039362963 + outSlope: 0.039362963 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: -0.024912952 + inSlope: 0.30663413 + outSlope: 0.30663413 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: 0.047848925 + inSlope: 0.16714576 + outSlope: 0.16714576 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: 0.054898087 + inSlope: 0.009850198 + outSlope: 0.009850198 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2000003 + value: 0.054394983 + inSlope: 0.009465827 + outSlope: 0.009465827 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.055112958 + inSlope: -0.009755986 + outSlope: -0.009755986 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: Armature.001/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.060545392 + inSlope: 0.019481217 + outSlope: 0.019481217 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.06554181 + inSlope: -0.044577762 + outSlope: -0.044577762 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.072110705 + inSlope: 0.1927921 + outSlope: 0.1927921 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.14362161 + inSlope: 0.31516272 + outSlope: 0.31516272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: 0.16641994 + inSlope: -0.007232812 + outSlope: -0.007232812 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.14075814 + inSlope: -0.0870076 + outSlope: -0.0870076 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: 0.1103561 + inSlope: -0.21410537 + outSlope: -0.21410537 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: 0.055892196 + inSlope: -0.13650031 + outSlope: -0.13650031 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: 0.05922838 + inSlope: 0.019775778 + outSlope: 0.019775778 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2000003 + value: 0.05900826 + inSlope: 0.014905948 + outSlope: 0.014905948 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.06050386 + inSlope: -0.023168609 + outSlope: -0.023168609 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: Armature.001/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.7934732 + inSlope: -0.022467969 + outSlope: -0.022467969 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.79619503 + inSlope: 0.057364404 + outSlope: 0.057364404 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.80170166 + inSlope: 0.028979458 + outSlope: 0.028979458 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.78134567 + inSlope: -0.08794066 + outSlope: -0.08794066 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: 0.7852461 + inSlope: 0.029641062 + outSlope: 0.029641062 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.79180187 + inSlope: 0.017199235 + outSlope: 0.017199235 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: 0.7960668 + inSlope: 0.0012499229 + outSlope: 0.0012499229 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: 0.7948982 + inSlope: 0.016481295 + outSlope: 0.016481295 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: 0.7959687 + inSlope: 0.00873328 + outSlope: 0.00873328 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2000003 + value: 0.7941419 + inSlope: 0.00085562177 + outSlope: 0.00085562177 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.7934718 + inSlope: 0.0044328016 + outSlope: 0.0044328016 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: Armature.001/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.21148036 + inSlope: -0.0000026822088 + outSlope: -0.0000026822088 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.21505642 + inSlope: -0.006525374 + outSlope: -0.006525374 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: 0.21082194 + inSlope: 0.0049345987 + outSlope: 0.0049345987 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.21142149 + inSlope: 0.0039634146 + outSlope: 0.0039634146 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: Armature.001/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot/mixamorig:LeftToeBase + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.03529909 + inSlope: 0.000001117587 + outSlope: 0.000001117587 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.035841536 + inSlope: -0.000989289 + outSlope: -0.000989289 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: 0.03519926 + inSlope: 0.00074766646 + outSlope: 0.00074766646 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.035290185 + inSlope: 0.0006029388 + outSlope: 0.0006029388 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: Armature.001/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot/mixamorig:LeftToeBase + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.12281164 + inSlope: -0.0000062584872 + outSlope: -0.0000062584872 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: -0.12286647 + inSlope: 0.000098683035 + outSlope: 0.000098683035 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: -0.12280149 + inSlope: -0.000076890065 + outSlope: -0.000076890065 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: -0.122810625 + inSlope: -0.000058561618 + outSlope: -0.000058561618 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: Armature.001/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot/mixamorig:LeftToeBase + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.96899295 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.9681787 + inSlope: 0.0014984622 + outSlope: 0.0014984622 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: 0.96914136 + inSlope: -0.0011113296 + outSlope: -0.0011113296 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.9690063 + inSlope: -0.0008922824 + outSlope: -0.0008922824 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: Armature.001/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot/mixamorig:LeftToeBase + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.090997145 + inSlope: -0.004138425 + outSlope: -0.004138425 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.09056888 + inSlope: -0.00323318 + outSlope: -0.00323318 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.0901437 + inSlope: 0.008082506 + outSlope: 0.008082506 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.091088586 + inSlope: 0.013871489 + outSlope: 0.013871489 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.09357425 + inSlope: -0.0008956271 + outSlope: -0.0008956271 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333334 + value: 0.09098129 + inSlope: 0.019792229 + outSlope: 0.019792229 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: 0.0904498 + inSlope: -0.0018874947 + outSlope: -0.0018874947 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: 0.09043939 + inSlope: -0.006298713 + outSlope: -0.006298713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2333333 + value: 0.08694221 + inSlope: -0.0075034657 + outSlope: -0.0075034657 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7 + value: 0.08712696 + inSlope: 0.005238899 + outSlope: 0.005238899 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3000002 + value: 0.09062908 + inSlope: 0.0010448332 + outSlope: 0.0010448332 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.7000003 + value: 0.0913503 + inSlope: 0.00006604503 + outSlope: 0.00006604503 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.09098467 + inSlope: -0.00029101997 + outSlope: -0.00029101997 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: Armature.001/mixamorig:Hips/mixamorig:RightUpLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.07161436 + inSlope: 0.048673373 + outSlope: 0.048673373 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.085407555 + inSlope: -0.08425351 + outSlope: -0.08425351 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.084135145 + inSlope: -0.014930639 + outSlope: -0.014930639 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.06310709 + inSlope: 0.0713996 + outSlope: 0.0713996 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.078504 + inSlope: -0.059229247 + outSlope: -0.059229247 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333334 + value: -0.12045547 + inSlope: -0.13996583 + outSlope: -0.13996583 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: -0.1534764 + inSlope: 0.058663767 + outSlope: 0.058663767 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: -0.137169 + inSlope: -0.012072375 + outSlope: -0.012072375 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2333333 + value: -0.07283808 + inSlope: 0.050392143 + outSlope: 0.050392143 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7 + value: -0.06252028 + inSlope: -0.014673531 + outSlope: -0.014673531 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3000002 + value: -0.077674665 + inSlope: -0.008174151 + outSlope: -0.008174151 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.7000003 + value: -0.087009504 + inSlope: 0.01168146 + outSlope: 0.01168146 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: -0.07164626 + inSlope: 0.078017265 + outSlope: 0.078017265 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: Armature.001/mixamorig:Hips/mixamorig:RightUpLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9922426 + inSlope: 0.0039356947 + outSlope: 0.0039356947 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.99112076 + inSlope: -0.006683168 + outSlope: -0.006683168 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.99151987 + inSlope: -0.00067770545 + outSlope: -0.00067770545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.99325734 + inSlope: 0.0046214485 + outSlope: 0.0046214485 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.99150294 + inSlope: -0.009980504 + outSlope: -0.009980504 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333334 + value: 0.98636687 + inSlope: -0.020026252 + outSlope: -0.020026252 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: 0.9813256 + inSlope: 0.01004667 + outSlope: 0.01004667 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: 0.983525 + inSlope: -0.0039419467 + outSlope: -0.0039419467 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2333333 + value: 0.9920188 + inSlope: 0.0055003073 + outSlope: 0.0055003073 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7 + value: 0.9930516 + inSlope: -0.00027716014 + outSlope: -0.00027716014 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3000002 + value: 0.99196184 + inSlope: -0.0009977827 + outSlope: -0.0009977827 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.7000003 + value: 0.99093074 + inSlope: 0.00083775376 + outSlope: 0.00083775376 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.99224144 + inSlope: 0.005897289 + outSlope: 0.005897289 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: Armature.001/mixamorig:Hips/mixamorig:RightUpLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.045227807 + inSlope: -0.0018312781 + outSlope: -0.0018312781 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.046717055 + inSlope: 0.000017599203 + outSlope: 0.000017599203 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.04103354 + inSlope: -0.03210645 + outSlope: -0.03210645 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.034062 + inSlope: -0.037501145 + outSlope: -0.037501145 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.044754226 + inSlope: 0.11674182 + outSlope: 0.11674182 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333334 + value: 0.06552408 + inSlope: 0.016382257 + outSlope: 0.016382257 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: 0.07255239 + inSlope: -0.009726817 + outSlope: -0.009726817 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: 0.075391985 + inSlope: 0.037212472 + outSlope: 0.037212472 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2333333 + value: 0.055084854 + inSlope: -0.02006579 + outSlope: -0.02006579 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7 + value: 0.048463374 + inSlope: -0.022730876 + outSlope: -0.022730876 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3000002 + value: 0.042008277 + inSlope: 0.0062494967 + outSlope: 0.0062494967 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.7000003 + value: 0.04626808 + inSlope: 0.0036018507 + outSlope: 0.0036018507 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.045227554 + inSlope: -0.0029411567 + outSlope: -0.0029411567 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: Armature.001/mixamorig:Hips/mixamorig:RightUpLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.03056227 + inSlope: -0.081750594 + outSlope: -0.081750594 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.011203325 + inSlope: 0.3384096 + outSlope: 0.3384096 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.0018695898 + inSlope: -0.015014423 + outSlope: -0.015014423 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.002314242 + inSlope: -0.0141644515 + outSlope: -0.0141644515 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.0026508411 + inSlope: -0.4236281 + outSlope: -0.4236281 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.030556139 + inSlope: -0.68992573 + outSlope: -0.68992573 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.09235753 + inSlope: -0.18987796 + outSlope: -0.18987796 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.12689848 + inSlope: -0.40711617 + outSlope: -0.40711617 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.16321246 + inSlope: -0.021330614 + outSlope: -0.021330614 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: -0.13609172 + inSlope: 0.12897207 + outSlope: 0.12897207 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: -0.123511404 + inSlope: 0.13095976 + outSlope: 0.13095976 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: -0.07309839 + inSlope: 0.03923342 + outSlope: 0.03923342 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3666668 + value: -0.015531656 + inSlope: 0.26148233 + outSlope: 0.26148233 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6333334 + value: -0.008556062 + inSlope: -0.00035299023 + outSlope: -0.00035299023 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1666667 + value: 0.0054622656 + inSlope: -0.0009592871 + outSlope: -0.0009592871 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6666667 + value: 0.005330421 + inSlope: -0.0045289914 + outSlope: -0.0045289914 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.7333336 + value: 0.0009628638 + inSlope: -0.44556087 + outSlope: -0.44556087 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.766667 + value: -0.023976695 + inSlope: -0.4718587 + outSlope: -0.4718587 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: -0.030494353 + inSlope: -0.19552992 + outSlope: -0.19552992 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: Armature.001/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0869982 + inSlope: 0.18288104 + outSlope: 0.18288104 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.05424362 + inSlope: 0.20995435 + outSlope: 0.20995435 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.040441796 + inSlope: 0.20660023 + outSlope: 0.20660023 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.007905009 + inSlope: 0.18195906 + outSlope: 0.18195906 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.013584021 + inSlope: 0.14400601 + outSlope: 0.14400601 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.017505407 + inSlope: 0.09877533 + outSlope: 0.09877533 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.014769933 + inSlope: -0.10308936 + outSlope: -0.10308936 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.014866141 + inSlope: -0.2512244 + outSlope: -0.2512244 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.048254177 + inSlope: 0.0061618695 + outSlope: 0.0061618695 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: -0.06466767 + inSlope: -0.1273208 + outSlope: -0.1273208 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: -0.077592716 + inSlope: -0.005093743 + outSlope: -0.005093743 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: -0.07962404 + inSlope: -0.011454139 + outSlope: -0.011454139 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3666668 + value: -0.085476905 + inSlope: -0.011237461 + outSlope: -0.011237461 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6333334 + value: -0.085245885 + inSlope: 0.0008185216 + outSlope: 0.0008185216 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1666667 + value: -0.08635945 + inSlope: -0.001748126 + outSlope: -0.001748126 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6666667 + value: -0.08394745 + inSlope: -0.006525125 + outSlope: -0.006525125 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.7333336 + value: -0.084708184 + inSlope: -0.027279098 + outSlope: -0.027279098 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.766667 + value: -0.08600085 + inSlope: -0.03429487 + outSlope: -0.03429487 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: -0.08699451 + inSlope: -0.029809652 + outSlope: -0.029809652 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: Armature.001/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.08532286 + inSlope: 0.0002709031 + outSlope: 0.0002709031 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.08293281 + inSlope: -0.0228418 + outSlope: -0.0228418 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.08187293 + inSlope: -0.009218865 + outSlope: -0.009218865 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.07917641 + inSlope: -0.0054398566 + outSlope: -0.0054398566 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.07912041 + inSlope: -0.006888244 + outSlope: -0.006888244 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.078717194 + inSlope: -0.002006514 + outSlope: -0.002006514 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.08848082 + inSlope: 0.085793026 + outSlope: 0.085793026 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.10648572 + inSlope: 0.10112287 + outSlope: 0.10112287 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.11691964 + inSlope: 0.00017859833 + outSlope: 0.00017859833 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: 0.1183355 + inSlope: 0.025117632 + outSlope: 0.025117632 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 0.118968114 + inSlope: -0.0073428894 + outSlope: -0.0073428894 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: 0.11667698 + inSlope: -0.042354822 + outSlope: -0.042354822 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3666668 + value: 0.08628346 + inSlope: -0.042174537 + outSlope: -0.042174537 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6333334 + value: 0.08250163 + inSlope: -0.004262258 + outSlope: -0.004262258 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1666667 + value: 0.079890385 + inSlope: -0.0070350794 + outSlope: -0.0070350794 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6666667 + value: 0.080708526 + inSlope: 0.008331257 + outSlope: 0.008331257 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.7333336 + value: 0.08172652 + inSlope: 0.04794967 + outSlope: 0.04794967 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.766667 + value: 0.08415893 + inSlope: 0.05386462 + outSlope: 0.05386462 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.08531749 + inSlope: 0.034756992 + outSlope: 0.034756992 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: Armature.001/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9920773 + inSlope: 0.012817382 + outSlope: 0.012817382 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.9950147 + inSlope: 0.016361473 + outSlope: 0.016361473 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.99582016 + inSlope: 0.0091445455 + outSlope: 0.0091445455 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.9968266 + inSlope: -0.0009709605 + outSlope: -0.0009709605 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.996769 + inSlope: -0.008276397 + outSlope: -0.008276397 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.9962748 + inSlope: -0.019278808 + outSlope: -0.019278808 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.9916769 + inSlope: -0.02382338 + outSlope: -0.02382338 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.9860713 + inSlope: -0.06787329 + outSlope: -0.06787329 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.9784493 + inSlope: -0.0032409867 + outSlope: -0.0032409867 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: 0.98147535 + inSlope: 0.006566034 + outSlope: 0.006566034 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 0.9821257 + inSlope: 0.016946213 + outSlope: 0.016946213 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: 0.98727053 + inSlope: 0.006973736 + outSlope: 0.006973736 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3666668 + value: 0.9924755 + inSlope: 0.006586618 + outSlope: 0.006586618 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6333334 + value: 0.99290156 + inSlope: 0.0004220013 + outSlope: 0.0004220013 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1666667 + value: 0.9930407 + inSlope: 0.00041842333 + outSlope: 0.00041842333 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6666667 + value: 0.99318206 + inSlope: -0.0012016261 + outSlope: -0.0012016261 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.7333336 + value: 0.993048 + inSlope: -0.010421285 + outSlope: -0.010421285 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.766667 + value: 0.9924446 + inSlope: -0.014517916 + outSlope: -0.014517916 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.99208015 + inSlope: -0.010932694 + outSlope: -0.010932694 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: Armature.001/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.58517456 + inSlope: 0.014988183 + outSlope: 0.014988183 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.573509 + inSlope: -0.1671597 + outSlope: -0.1671597 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.5627487 + inSlope: -0.010745829 + outSlope: -0.010745829 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.5744123 + inSlope: 0.30018276 + outSlope: 0.30018276 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.64137596 + inSlope: 0.26466966 + outSlope: 0.26466966 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.65644884 + inSlope: 0.15689933 + outSlope: 0.15689933 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: 0.66326517 + inSlope: 0.019424561 + outSlope: 0.019424561 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666668 + value: 0.65625453 + inSlope: 0.0123041775 + outSlope: 0.0123041775 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0.64875776 + inSlope: -0.05442018 + outSlope: -0.05442018 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: 0.6345329 + inSlope: -0.05417611 + outSlope: -0.05417611 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2333333 + value: 0.60132325 + inSlope: -0.14458767 + outSlope: -0.14458767 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5000002 + value: 0.5776621 + inSlope: -0.0027134921 + outSlope: -0.0027134921 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2333336 + value: 0.56918633 + inSlope: -0.011411022 + outSlope: -0.011411022 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.7000003 + value: 0.5691443 + inSlope: 0.033651922 + outSlope: 0.033651922 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.585145 + inSlope: 0.08634933 + outSlope: 0.08634933 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: Armature.001/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.04103716 + inSlope: -0.08536599 + outSlope: -0.08536599 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.053888336 + inSlope: -0.07145197 + outSlope: -0.07145197 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.07756272 + inSlope: -0.07890336 + outSlope: -0.07890336 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.08327073 + inSlope: -0.09233933 + outSlope: -0.09233933 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.13013555 + inSlope: -0.12589395 + outSlope: -0.12589395 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.13794252 + inSlope: -0.26727873 + outSlope: -0.26727873 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: -0.16780883 + inSlope: -0.08406717 + outSlope: -0.08406717 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666668 + value: -0.16604371 + inSlope: 0.036229637 + outSlope: 0.036229637 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: -0.15578797 + inSlope: 0.03391132 + outSlope: 0.03391132 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: -0.16376862 + inSlope: 0.17205268 + outSlope: 0.17205268 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2333333 + value: -0.063098304 + inSlope: 0.18082036 + outSlope: 0.18082036 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5000002 + value: -0.042118113 + inSlope: 0.0173872 + outSlope: 0.0173872 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2333336 + value: -0.032100838 + inSlope: 0.018529668 + outSlope: 0.018529668 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.7000003 + value: -0.03795198 + inSlope: -0.014387231 + outSlope: -0.014387231 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: -0.041037057 + inSlope: -0.027222548 + outSlope: -0.027222548 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: Armature.001/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.027646381 + inSlope: 0.06629035 + outSlope: 0.06629035 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.01398271 + inSlope: 0.09306561 + outSlope: 0.09306561 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.006986401 + inSlope: 0.066769235 + outSlope: 0.066769235 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.01049699 + inSlope: 0.03818469 + outSlope: 0.03818469 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.010999467 + inSlope: -0.03907568 + outSlope: -0.03907568 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.0069513395 + inSlope: 0.09246069 + outSlope: 0.09246069 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: 0.026456248 + inSlope: 0.076869994 + outSlope: 0.076869994 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666668 + value: 0.026264464 + inSlope: -0.03139485 + outSlope: -0.03139485 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0.021188715 + inSlope: -0.009122044 + outSlope: -0.009122044 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: 0.025636137 + inSlope: -0.1203071 + outSlope: -0.1203071 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2333333 + value: -0.014705721 + inSlope: -0.04405409 + outSlope: -0.04405409 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5000002 + value: -0.021840429 + inSlope: -0.0143681 + outSlope: -0.0143681 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2333336 + value: -0.02731826 + inSlope: -0.007666655 + outSlope: -0.007666655 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.7000003 + value: -0.024724258 + inSlope: 0.0010384358 + outSlope: 0.0010384358 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: -0.02764224 + inSlope: -0.019104108 + outSlope: -0.019104108 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: Armature.001/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.8093964 + inSlope: -0.013151764 + outSlope: -0.013151764 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.8173054 + inSlope: 0.11387317 + outSlope: 0.11387317 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.8229515 + inSlope: -0.0006526716 + outSlope: -0.0006526716 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.814252 + inSlope: -0.22061688 + outSlope: -0.22061688 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.75602955 + inSlope: -0.24551691 + outSlope: -0.24551691 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.7416188 + inSlope: -0.19173487 + outSlope: -0.19173487 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: 0.72884816 + inSlope: -0.039393615 + outSlope: -0.039393615 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666668 + value: 0.73557436 + inSlope: -0.0015977144 + outSlope: -0.0015977144 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0.74457675 + inSlope: 0.05483502 + outSlope: 0.05483502 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: 0.754911 + inSlope: 0.08649671 + outSlope: 0.08649671 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2333333 + value: 0.7963748 + inSlope: 0.122763485 + outSlope: 0.122763485 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5000002 + value: 0.81489605 + inSlope: 0.0024399082 + outSlope: 0.0024399082 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2333336 + value: 0.8211274 + inSlope: 0.008386381 + outSlope: 0.008386381 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.7000003 + value: 0.8209892 + inSlope: -0.02403351 + outSlope: -0.02403351 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.80941784 + inSlope: -0.06419426 + outSlope: -0.06419426 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: Armature.001/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.23116098 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.23116098 + inSlope: 0 + 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: Armature.001/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot/mixamorig:RightToeBase + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.038283862 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: -0.038283862 + inSlope: 0 + 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: Armature.001/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot/mixamorig:RightToeBase + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.12309331 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.12309331 + inSlope: 0 + 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: Armature.001/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot/mixamorig:RightToeBase + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9643376 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.9643376 + inSlope: 0 + 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: Armature.001/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot/mixamorig:RightToeBase + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.00023446539 + inSlope: -0.000015071324 + outSlope: -0.000015071324 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.00023496774 + inSlope: -0.000010832476 + outSlope: -0.000010828698 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.1 + value: -0.00023515371 + inSlope: -0.0000009808426 + outSlope: -0.0000009804163 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.00023525281 + inSlope: -0.0000133137855 + outSlope: -0.000013322088 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.00023604148 + inSlope: -0.00004462783 + outSlope: -0.0000446253 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333333 + value: -0.00024131776 + inSlope: -0.000093563074 + outSlope: -0.000093560695 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.00024754374 + inSlope: -0.00007617968 + outSlope: -0.0000761854 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.00025055918 + inSlope: -0.000023201635 + outSlope: -0.000023200786 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333334 + value: -0.00025115913 + inSlope: 0.000008320543 + outSlope: 0.000008319423 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.56666666 + value: -0.00024264434 + inSlope: 0.00015181353 + outSlope: 0.00015180963 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.76666665 + value: -0.00016520967 + inSlope: 0.0006901131 + outSlope: 0.00069010153 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -0.00007149946 + inSlope: 0.0012789754 + outSlope: 0.0012789887 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9 + value: -0.000023892315 + inSlope: 0.0015302926 + outSlope: 0.001530269 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.00003051961 + inSlope: 0.0016908253 + outSlope: 0.0016908397 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.96666664 + value: 0.00008883021 + inSlope: 0.0018272488 + outSlope: 0.0018272194 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.00027013515 + inSlope: 0.0013841186 + outSlope: 0.0013841648 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.00037012136 + inSlope: 0.0005493403 + outSlope: 0.00054935954 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666667 + value: 0.00043875765 + inSlope: 0.00016989672 + outSlope: 0.00016989786 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5 + value: 0.00041963052 + inSlope: -0.0004504456 + outSlope: -0.00045043541 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333333 + value: 0.0003594219 + inSlope: -0.0003168281 + outSlope: -0.0003168228 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333333 + value: 0.00032592443 + inSlope: -0.0005004186 + outSlope: -0.0005004175 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9 + value: 0.00021010758 + inSlope: -0.00068099954 + outSlope: -0.0006809987 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666667 + value: 0.00017364658 + inSlope: -0.00039459075 + outSlope: -0.00039460207 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: 0.00014274447 + inSlope: -0.00038483724 + outSlope: -0.00038482962 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: 0.00009344189 + inSlope: -0.00055330177 + outSlope: -0.0005533139 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3 + value: 0.000010169894 + inSlope: -0.0006865689 + outSlope: -0.0006865599 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333333 + value: -0.00001306195 + inSlope: -0.00070162927 + outSlope: -0.0007016131 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: -0.00006017656 + inSlope: -0.00071046344 + outSlope: -0.00071050733 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4666667 + value: -0.00010616149 + inSlope: -0.00062259915 + outSlope: -0.0006226044 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6 + value: -0.00017808606 + inSlope: -0.00052881107 + outSlope: -0.0005287771 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8333333 + value: -0.00030193484 + inSlope: -0.0004395388 + outSlope: -0.00043952468 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0333333 + value: -0.00035656817 + inSlope: -0.0000998444 + outSlope: -0.000099842604 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2333333 + value: -0.00034905653 + inSlope: 0.00016878442 + outSlope: 0.00016879234 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4333334 + value: -0.0003044875 + inSlope: 0.00024309449 + outSlope: 0.00024310075 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5 + value: -0.0002875824 + inSlope: 0.0002645478 + outSlope: 0.0002645426 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6666667 + value: -0.0002492684 + inSlope: 0.000167193 + outSlope: 0.0001671951 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.7333333 + value: -0.00023966929 + inSlope: 0.00011377793 + outSlope: 0.00011378145 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8 + value: -0.0002344395 + inSlope: 0.000060098933 + outSlope: 0.000060098933 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: Armature.001/mixamorig:Hips + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.017569456 + inSlope: -0.000028702183 + outSlope: -0.000028702183 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.017568503 + inSlope: -0.000006563318 + outSlope: -0.0000066093053 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.1 + value: 0.017570587 + inSlope: 0.000075934615 + outSlope: 0.000075657 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.017574081 + inSlope: 0.00009541168 + outSlope: 0.000095740375 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.017576959 + inSlope: 0.000107831605 + outSlope: 0.00010781117 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333333 + value: 0.017586023 + inSlope: 0.00013275145 + outSlope: 0.00013262367 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.017594334 + inSlope: 0.00011344295 + outSlope: 0.00011353662 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.017601835 + inSlope: 0.00013540301 + outSlope: 0.00013536384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333334 + value: 0.017612578 + inSlope: 0.0001971483 + outSlope: 0.00019681962 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.56666666 + value: 0.017629744 + inSlope: 0.000035507368 + outSlope: 0.000035153083 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.76666665 + value: 0.017606942 + inSlope: -0.0003401742 + outSlope: -0.00034004077 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.017546678 + inSlope: -0.0011474139 + outSlope: -0.0011478143 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9 + value: 0.017499866 + inSlope: -0.0016616068 + outSlope: -0.0016611747 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.017435933 + inSlope: -0.0020291905 + outSlope: -0.0020291924 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.96666664 + value: 0.017364584 + inSlope: -0.0020853912 + outSlope: -0.002085108 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.017213915 + inSlope: -0.00067978393 + outSlope: -0.00067995157 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.017211948 + inSlope: 0.0001761789 + outSlope: 0.00017668534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666667 + value: 0.017216 + inSlope: -0.000036030182 + outSlope: -0.000036081274 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5 + value: 0.017235806 + inSlope: 0.00039736237 + outSlope: 0.00039727887 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333333 + value: 0.017286092 + inSlope: 0.000107184555 + outSlope: 0.00010733444 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333333 + value: 0.017278573 + inSlope: -0.00002407177 + outSlope: -0.000024022402 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9 + value: 0.017345544 + inSlope: 0.0007433489 + outSlope: 0.00074329437 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666667 + value: 0.017394936 + inSlope: 0.0006730265 + outSlope: 0.00067319756 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: 0.017456122 + inSlope: 0.00062013743 + outSlope: 0.0006202243 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: 0.017517535 + inSlope: 0.000559327 + outSlope: 0.0005593798 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3 + value: 0.017574603 + inSlope: 0.0002561401 + outSlope: 0.00025606176 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333333 + value: 0.01758132 + inSlope: 0.00017806476 + outSlope: 0.00017789446 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: 0.017590305 + inSlope: 0.00025279363 + outSlope: 0.00025298956 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4666667 + value: 0.017616924 + inSlope: 0.00037418804 + outSlope: 0.00037390876 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6 + value: 0.017652366 + inSlope: 0.00017933178 + outSlope: 0.00017954678 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8333333 + value: 0.017654877 + inSlope: -0.00007784543 + outSlope: -0.00007777901 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0333333 + value: 0.017638993 + inSlope: -0.00008081545 + outSlope: -0.00008065366 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2333333 + value: 0.017627303 + inSlope: -0.000036713085 + outSlope: -0.000037174595 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4333334 + value: 0.017614517 + inSlope: -0.0001294069 + outSlope: -0.00012899817 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5 + value: 0.017605226 + inSlope: -0.00013773111 + outSlope: -0.00013749099 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6666667 + value: 0.01758761 + inSlope: -0.00010645228 + outSlope: -0.00010610486 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.7333333 + value: 0.017579246 + inSlope: -0.00017231035 + outSlope: -0.00017258624 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8 + value: 0.017569477 + inSlope: -0.00008383315 + outSlope: -0.00008383315 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: Armature.001/mixamorig:Hips + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0000116465135 + inSlope: -0.00009633036 + outSlope: -0.00009633036 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.000008435504 + inSlope: -0.00006955592 + outSlope: -0.000069556045 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.1 + value: 0.0000071734507 + inSlope: 0.0000263564 + outSlope: 0.00002635637 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.000008766545 + inSlope: 0.000059653143 + outSlope: 0.000059653263 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.000011150326 + inSlope: 0.000082938495 + outSlope: 0.000082938874 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333333 + value: 0.000017633241 + inSlope: 0.00009956565 + outSlope: 0.000099565565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.000024849143 + inSlope: 0.0001258649 + outSlope: 0.00012586532 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.00003450486 + inSlope: 0.00015907711 + outSlope: 0.00015907727 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333334 + value: 0.00004486737 + inSlope: 0.0001360504 + outSlope: 0.00013605111 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.56666666 + value: 0.0000636666 + inSlope: 0.00023005594 + outSlope: 0.00023005324 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.76666665 + value: 0.00015017964 + inSlope: 0.00059448887 + outSlope: 0.0005944798 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.0002109235 + inSlope: 0.0006305111 + outSlope: 0.00063051924 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9 + value: 0.00023298165 + inSlope: 0.0007683125 + outSlope: 0.00076830044 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.00026214402 + inSlope: 0.0010840371 + outSlope: 0.0010840434 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.96666664 + value: 0.00030525128 + inSlope: 0.0014993417 + outSlope: 0.0014993184 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.00047525731 + inSlope: 0.0011750496 + outSlope: 0.001175092 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.00050420145 + inSlope: 0.000061118495 + outSlope: 0.0000611188 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666667 + value: 0.00052875106 + inSlope: 0.00015645954 + outSlope: 0.00015645384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5 + value: 0.0005429067 + inSlope: 0.000019210058 + outSlope: 0.000019210327 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333333 + value: 0.00054259144 + inSlope: 0.00006958646 + outSlope: 0.00006958597 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333333 + value: 0.00055952364 + inSlope: 0.00020004899 + outSlope: 0.00020004596 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9 + value: 0.00056434 + inSlope: -0.00037965918 + outSlope: -0.0003796601 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666667 + value: 0.00052589376 + inSlope: -0.00073023216 + outSlope: -0.0007302434 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666666 + value: 0.00043739902 + inSlope: -0.0009927818 + outSlope: -0.0009927624 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: 0.00032952402 + inSlope: -0.0011349224 + outSlope: -0.0011349418 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3 + value: 0.00018305407 + inSlope: -0.0009477352 + outSlope: -0.000947723 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333333 + value: 0.0001537233 + inSlope: -0.0008011061 + outSlope: -0.00080108456 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: 0.00011083988 + inSlope: -0.00045930877 + outSlope: -0.00045933682 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4666667 + value: 0.000093383984 + inSlope: -0.000085742075 + outSlope: -0.00008574305 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6 + value: 0.00011747196 + inSlope: 0.00033556655 + outSlope: 0.00033554307 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8333333 + value: 0.00019301503 + inSlope: 0.00027263616 + outSlope: 0.0002726305 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0333333 + value: 0.00020176773 + inSlope: -0.00025275655 + outSlope: -0.0002527505 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2333333 + value: 0.00012110519 + inSlope: -0.0004251417 + outSlope: -0.00042514378 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4333334 + value: 0.00005044737 + inSlope: -0.00028073075 + outSlope: -0.00028073555 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5 + value: 0.000034569002 + inSlope: -0.000179325 + outSlope: -0.0001793257 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6666667 + value: 0.000022574344 + inSlope: -0.000040593084 + outSlope: -0.000040594237 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.7333333 + value: 0.000018877749 + inSlope: -0.000081296894 + outSlope: -0.00008129683 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8 + value: 0.000011634523 + inSlope: -0.00011934404 + outSlope: -0.00011934404 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: Armature.001/mixamorig:Hips + classID: 4 + script: {fileID: 0} + m_EulerEditorCurves: + - curve: + serializedVersion: 2 + m_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.033333335 + value: -0 + 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: Armature.001 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_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.033333335 + value: -0 + 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: Armature.001 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_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.033333335 + value: -0 + 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: Armature.001 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -3.7402947 + inSlope: -1.293736 + outSlope: -1.293736 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -5.0604286 + inSlope: -4.4407425 + outSlope: -4.444471 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -8.204818 + inSlope: -12.241943 + outSlope: -12.354146 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: -10.626984 + inSlope: -10.933871 + outSlope: -10.939952 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: -11.643482 + inSlope: 16.065205 + outSlope: 16.065727 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: -8.669061 + inSlope: 12.848637 + outSlope: 12.850425 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: -4.7385764 + inSlope: 11.532337 + outSlope: 11.252143 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.766667 + value: -1.1361989 + inSlope: -0.92085844 + outSlope: -0.9211713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: -3.7402954 + inSlope: -0.9100047 + outSlope: -0.9100047 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: Armature.001/mixamorig:Hips + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 5.2868977 + inSlope: 9.011341 + outSlope: 9.011341 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 10.7434025 + inSlope: 5.12241 + outSlope: 5.1188226 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 1.555027 + inSlope: -42.86434 + outSlope: -42.80611 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: -5.284334 + inSlope: -17.349854 + outSlope: -17.37032 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: -7.338489 + inSlope: 6.454173 + outSlope: 6.4716825 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: -8.506997 + inSlope: -15.829106 + outSlope: -15.817781 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: -2.5195067 + inSlope: 37.344715 + outSlope: 37.316086 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.766667 + value: 5.708457 + inSlope: -0.43567267 + outSlope: -0.43504256 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 5.2869077 + inSlope: -3.581622 + outSlope: -3.581622 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: Armature.001/mixamorig:Hips + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 2.4814076 + inSlope: 1.0370607 + outSlope: 1.0370607 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 2.516634 + inSlope: -3.7057 + outSlope: -3.701032 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.87404656 + inSlope: 3.1549227 + outSlope: 2.7403986 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: 1.1658001 + inSlope: -0.762417 + outSlope: -0.61310834 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 1.0496705 + inSlope: -0.3193644 + outSlope: -0.39166322 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: 1.262402 + inSlope: 0.63313705 + outSlope: 0.5731534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: 1.4074615 + inSlope: 5.018401 + outSlope: 5.53465 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.766667 + value: 2.566881 + inSlope: -0.781347 + outSlope: -0.78096443 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 2.4814162 + inSlope: -0.825485 + outSlope: -0.825485 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: Armature.001/mixamorig:Hips + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 3.3198702 + inSlope: 0.007356149 + outSlope: 0.007356149 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 2.8491178 + inSlope: 3.5602183 + outSlope: 3.5603812 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 3.631774 + inSlope: -7.405937 + outSlope: -7.406461 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4666667 + value: 2.489313 + inSlope: -0.24712166 + outSlope: -0.24611464 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 3.323166 + inSlope: 0.00528717 + outSlope: 0.00528717 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: Armature.001/mixamorig:Hips/mixamorig:Spine + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -1.5559559 + inSlope: -0.046391483 + outSlope: -0.046391483 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -1.9942645 + inSlope: -2.1174126 + outSlope: -2.1168835 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: -2.2113323 + inSlope: 0.58161587 + outSlope: 0.5675189 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4666667 + value: -1.4192917 + inSlope: -0.72694385 + outSlope: -0.7272707 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: -1.5362067 + inSlope: -0.018853782 + outSlope: -0.018853782 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: Armature.001/mixamorig:Hips/mixamorig:Spine + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -1.8915713 + inSlope: 0.26823393 + outSlope: 0.26823393 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -2.6338398 + inSlope: -0.048686687 + outSlope: -0.042042356 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: -2.7022467 + inSlope: 2.4246852 + outSlope: 2.4206767 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4666667 + value: -1.8110455 + inSlope: 1.0855957 + outSlope: 1.0858158 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: -1.8880949 + inSlope: 0.18595003 + outSlope: 0.18595003 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: Armature.001/mixamorig:Hips/mixamorig:Spine + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1.1515428 + inSlope: 0.000025033949 + outSlope: 0.000025033949 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.31832683 + inSlope: -3.0814545 + outSlope: -3.0810173 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -1.6447068 + inSlope: 5.733227 + outSlope: 5.7331896 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: 2.1514506 + inSlope: 2.2179103 + outSlope: 2.2139459 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9 + value: 2.269278 + inSlope: -1.8800534 + outSlope: -1.8800559 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 1.1491258 + inSlope: -0.0000055630994 + outSlope: -0.0000055630994 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.34132436 + inSlope: 0.0000016887982 + outSlope: 0.0000016887982 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.9425445 + inSlope: -1.7788391 + outSlope: -1.779722 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -1.4723783 + inSlope: 0.0076884488 + outSlope: 0.0055602184 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: -0.59310883 + inSlope: 5.078943 + outSlope: 5.080999 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9 + value: -0.26618168 + inSlope: 0.5288713 + outSlope: 0.5288432 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: -0.31983235 + inSlope: -0.000023742514 + outSlope: -0.000023742514 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -1.5699472 + inSlope: 0.0000031789143 + outSlope: 0.0000031789143 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -2.3427312 + inSlope: -0.19331692 + outSlope: -0.20079264 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -1.9117293 + inSlope: -1.2406001 + outSlope: -1.2405885 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: -2.7408442 + inSlope: 0.5045959 + outSlope: 0.5210518 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9 + value: -2.000157 + inSlope: -0.07321427 + outSlope: -0.07282018 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: -1.552458 + inSlope: -0.0000055630994 + outSlope: -0.0000055630994 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.31278795 + inSlope: -0.0000065565105 + outSlope: -0.0000065565105 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -1.0433108 + inSlope: 2.7044888 + outSlope: 2.7101767 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.28565592 + inSlope: -8.378029 + outSlope: -8.373862 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: -0.18063608 + inSlope: 5.8085465 + outSlope: 5.8092675 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: 0.6688734 + inSlope: 1.4168596 + outSlope: 1.4140054 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1333334 + value: 0.11545547 + inSlope: -0.59096533 + outSlope: -0.59096074 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: -0.314894 + inSlope: -0.000007376074 + outSlope: -0.000007376074 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.33040312 + inSlope: -0.00008652607 + outSlope: -0.00008652607 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.8999445 + inSlope: -1.8540058 + outSlope: -1.8460445 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -1.6094017 + inSlope: -2.052803 + outSlope: -2.0688872 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: -1.3878909 + inSlope: -1.6255037 + outSlope: -1.6233646 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: -0.19998722 + inSlope: 1.6297941 + outSlope: 1.632215 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1333334 + value: -0.14494906 + inSlope: 0.048381984 + outSlope: 0.048709378 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: -0.30603403 + inSlope: 0.000016897915 + outSlope: 0.000016897915 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -1.5650411 + inSlope: 0.000027020771 + outSlope: 0.000027020771 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -2.3809013 + inSlope: -1.7241541 + outSlope: -1.7155837 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -2.7611136 + inSlope: 3.9270542 + outSlope: 3.9355912 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: -2.7386749 + inSlope: -1.9002622 + outSlope: -1.8984832 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: -2.6870751 + inSlope: 0.89643335 + outSlope: 0.90088564 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1333334 + value: -1.886747 + inSlope: 0.46146235 + outSlope: 0.4614842 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: -1.5600471 + inSlope: 0.000017166136 + outSlope: 0.000017166136 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 8.550458 + inSlope: 0.95093423 + outSlope: 0.95093423 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 12.027555 + inSlope: 18.313189 + outSlope: 18.347181 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 19.45413 + inSlope: 10.871672 + outSlope: 10.872565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 20.87835 + inSlope: 0.5466679 + outSlope: 0.55761856 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 19.542887 + inSlope: -4.098353 + outSlope: -4.0988097 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: 15.407557 + inSlope: -11.95884 + outSlope: -11.983234 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4666667 + value: 10.049945 + inSlope: -4.512268 + outSlope: -4.5122347 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1333334 + value: 8.460163 + inSlope: 0.08148765 + outSlope: 0.08148765 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 8.550491 + inSlope: 1.1075591 + outSlope: 1.1075591 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.06503162 + inSlope: -0.06470879 + outSlope: -0.06470879 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.74945366 + inSlope: 8.642618 + outSlope: 8.559356 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 4.613251 + inSlope: 3.465496 + outSlope: 3.4575481 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 4.8874736 + inSlope: 2.6301525 + outSlope: 2.6277962 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 4.533494 + inSlope: -2.6504593 + outSlope: -2.6501853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: 2.8339274 + inSlope: -9.567067 + outSlope: -9.508079 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4666667 + value: -0.15683752 + inSlope: 0.2770618 + outSlope: 0.27743936 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1333334 + value: 0.0033475645 + inSlope: -0.12307337 + outSlope: -0.12307337 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.06492798 + inSlope: 0.010566092 + outSlope: 0.010566092 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.44683692 + inSlope: 0.6171144 + outSlope: 0.6171144 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.70036143 + inSlope: 9.438981 + outSlope: 9.360249 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 2.9069066 + inSlope: 0.23917793 + outSlope: 0.21932805 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 2.099632 + inSlope: -11.352503 + outSlope: -11.352307 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 2.0770798 + inSlope: 1.7081867 + outSlope: 1.7073438 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: 1.7210566 + inSlope: -3.7811043 + outSlope: -3.6808147 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4666667 + value: -1.0749507 + inSlope: -0.48813114 + outSlope: -0.4882757 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1333334 + value: -0.7171773 + inSlope: 1.0624416 + outSlope: 1.0624416 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: -0.44668564 + inSlope: 0.366462 + outSlope: 0.366462 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -1.1012089 + inSlope: 0.04163682 + outSlope: 0.04163682 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 1.1977643 + inSlope: 30.257524 + outSlope: 30.330349 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 12.759531 + inSlope: 64.025665 + outSlope: 63.739803 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 19.410275 + inSlope: 12.585083 + outSlope: 12.689555 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 21.791422 + inSlope: -2.3300977 + outSlope: -2.3475103 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333334 + value: 22.31729 + inSlope: 14.872086 + outSlope: 14.872099 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: 21.026018 + inSlope: -19.125868 + outSlope: -19.140808 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 17.057505 + inSlope: -13.864967 + outSlope: -13.891013 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: 11.314811 + inSlope: -41.519386 + outSlope: -41.67066 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: 5.912006 + inSlope: -22.647192 + outSlope: -22.970715 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: 0.4075827 + inSlope: -11.133535 + outSlope: -11.134808 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.766667 + value: -0.84834236 + inSlope: -8.823646 + outSlope: -8.830068 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2333336 + value: -0.9525155 + inSlope: 3.461189 + outSlope: 3.4615867 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: -1.100987 + inSlope: -3.5278816 + outSlope: -3.5278816 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -1.3530086 + inSlope: -0.3585693 + outSlope: -0.3585693 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -1.1505972 + inSlope: 7.878403 + outSlope: 7.6347065 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 5.2901154 + inSlope: 67.557 + outSlope: 67.91395 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 18.765425 + inSlope: 26.80215 + outSlope: 26.725931 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 22.144714 + inSlope: 14.829624 + outSlope: 14.828097 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333334 + value: 21.811443 + inSlope: 6.2049527 + outSlope: 6.2049584 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: 22.80875 + inSlope: -4.888659 + outSlope: -4.791446 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 18.77063 + inSlope: -16.713087 + outSlope: -16.72559 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: 15.395126 + inSlope: -30.58567 + outSlope: -30.308153 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: 5.4342504 + inSlope: -41.648804 + outSlope: -41.39362 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: -2.3269315 + inSlope: 0.5899178 + outSlope: 0.5736336 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.766667 + value: -1.3503095 + inSlope: 2.9553065 + outSlope: 2.9349074 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2333336 + value: -1.6827427 + inSlope: -0.63247633 + outSlope: -0.63032234 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: -1.35339 + inSlope: -0.78966135 + outSlope: -0.78966135 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.2958926 + inSlope: 1.7112787 + outSlope: 1.7112787 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 1.913017 + inSlope: 13.538762 + outSlope: 13.391309 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 6.538231 + inSlope: 39.837917 + outSlope: 40.33169 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 15.120627 + inSlope: 21.111319 + outSlope: 21.024971 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 15.17077 + inSlope: -12.891789 + outSlope: -12.889548 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333334 + value: 13.92789 + inSlope: -16.360067 + outSlope: -16.36008 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: 11.733373 + inSlope: -6.5864115 + outSlope: -6.5023003 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 11.400807 + inSlope: 3.1526208 + outSlope: 3.0420291 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: 9.205639 + inSlope: -28.404541 + outSlope: -28.112408 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: 4.4923925 + inSlope: -17.574099 + outSlope: -17.084473 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: -1.705339 + inSlope: -15.079408 + outSlope: -15.078968 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.766667 + value: -1.0193132 + inSlope: 7.963925 + outSlope: 7.956721 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2333336 + value: -0.39061058 + inSlope: 2.2046278 + outSlope: 2.2039752 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.29611638 + inSlope: 2.0117679 + outSlope: 2.0117679 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 86.81272 + inSlope: 0.05764389 + outSlope: 0.05764389 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 87.27522 + inSlope: -0.443367 + outSlope: -0.44068912 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 86.926735 + inSlope: 0.39543918 + outSlope: 0.39543143 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: 87.071625 + inSlope: -1.3781735 + outSlope: -1.380532 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 87.08227 + inSlope: 3.1291683 + outSlope: 3.1991675 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: 86.357925 + inSlope: -0.7135964 + outSlope: -0.71713257 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4333334 + value: 86.64456 + inSlope: -1.4631958 + outSlope: -1.4735411 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3666668 + value: 86.86824 + inSlope: 0.65677637 + outSlope: 0.66498965 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 86.82072 + inSlope: -0.2643585 + outSlope: -0.2643585 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 66.27027 + inSlope: 0.52360153 + outSlope: 0.52360153 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 58.385548 + inSlope: 5.491087 + outSlope: 5.6025815 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 64.14799 + inSlope: -6.283425 + outSlope: -6.274794 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: 62.020496 + inSlope: 13.822896 + outSlope: 13.664339 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 60.184563 + inSlope: -73.4725 + outSlope: -70.7553 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: 70.45115 + inSlope: 11.595298 + outSlope: 11.458878 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4333334 + value: 68.35755 + inSlope: 10.233719 + outSlope: 9.5675955 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3666668 + value: 65.82508 + inSlope: -10.469308 + outSlope: -10.099867 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 66.340996 + inSlope: -0.23805468 + outSlope: -0.23805468 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 140.56511 + inSlope: 0.8368149 + outSlope: 0.8368149 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 133.65656 + inSlope: 7.059265 + outSlope: 7.170777 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 139.17506 + inSlope: -5.2590184 + outSlope: -5.2503953 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: 137.09834 + inSlope: 18.1871 + outSlope: 18.028439 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 136.46286 + inSlope: -65.639565 + outSlope: -62.92317 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: 145.33678 + inSlope: 6.77393 + outSlope: 6.6372986 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4333334 + value: 142.68106 + inSlope: 13.613342 + outSlope: 12.947681 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3666668 + value: 140.1295 + inSlope: -10.020462 + outSlope: -9.651171 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 140.63374 + inSlope: -1.0738078 + outSlope: -1.0738078 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 59.665375 + inSlope: -2.4906158 + outSlope: -2.4906158 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 61.920803 + inSlope: 1.760578 + outSlope: 1.7612145 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 62.433006 + inSlope: 1.2267858 + outSlope: 1.3356973 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: 63.59553 + inSlope: -5.506125 + outSlope: -5.5058656 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 62.785145 + inSlope: 6.914862 + outSlope: 6.6363435 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 64.2809 + inSlope: 4.899903 + outSlope: 4.691358 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 65.557396 + inSlope: -2.0272717 + outSlope: -1.9888682 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: 64.866005 + inSlope: -3.312034 + outSlope: -3.3371968 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: 66.494484 + inSlope: 10.361584 + outSlope: 10.382421 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: 66.53644 + inSlope: -16.312634 + outSlope: -16.312634 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: 61.418938 + inSlope: -14.92664 + outSlope: -15.1855345 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.766667 + value: 60.943977 + inSlope: 13.180281 + outSlope: 13.201362 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0333335 + value: 61.09649 + inSlope: -1.957884 + outSlope: -1.9729049 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4333334 + value: 58.730213 + inSlope: -0.28189668 + outSlope: -0.28043216 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 59.6654 + inSlope: -2.0504165 + outSlope: -2.0504165 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -37.18967 + inSlope: -6.7635913 + outSlope: -6.7635913 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -30.82722 + inSlope: -0.07562637 + outSlope: -0.04597404 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -28.999554 + inSlope: 21.617191 + outSlope: 21.553375 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: -27.811579 + inSlope: -21.011826 + outSlope: -21.03578 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -26.55727 + inSlope: 72.9809 + outSlope: 73.18723 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -16.60432 + inSlope: 40.716965 + outSlope: 40.959724 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: -7.138916 + inSlope: 32.081253 + outSlope: 32.11051 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: -9.825584 + inSlope: 15.004002 + outSlope: 14.9621105 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: 0.066828065 + inSlope: -27.212292 + outSlope: -27.097233 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: -13.187721 + inSlope: -78.30584 + outSlope: -78.30584 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: -28.793264 + inSlope: -23.978943 + outSlope: -22.951134 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.766667 + value: -29.274548 + inSlope: 5.176775 + outSlope: 4.923721 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0333335 + value: -31.492245 + inSlope: -8.107439 + outSlope: -8.08059 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4333334 + value: -39.01672 + inSlope: -3.370887 + outSlope: -3.3715844 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: -37.18967 + inSlope: 3.0791984 + outSlope: 3.0791984 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -38.5072 + inSlope: -10.847797 + outSlope: -10.847797 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -31.317059 + inSlope: -11.548405 + outSlope: -11.5230665 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -32.29111 + inSlope: 16.080645 + outSlope: 16.01575 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: -29.885235 + inSlope: -0.8697224 + outSlope: -0.8959577 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -27.068432 + inSlope: 85.71153 + outSlope: 85.91609 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -16.304634 + inSlope: 40.25477 + outSlope: 40.49766 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: -6.2418146 + inSlope: 30.319431 + outSlope: 30.34871 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: -9.637183 + inSlope: 40.673767 + outSlope: 40.633236 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: 5.4080644 + inSlope: -19.561344 + outSlope: -19.444859 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: -9.926233 + inSlope: -111.73445 + outSlope: -111.73445 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: -33.024334 + inSlope: -49.34445 + outSlope: -48.357338 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.766667 + value: -31.14407 + inSlope: 26.407347 + outSlope: 26.177116 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0333335 + value: -29.652056 + inSlope: -9.913595 + outSlope: -9.887113 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4333334 + value: -41.398865 + inSlope: -8.630336 + outSlope: -8.630881 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: -38.50719 + inSlope: 5.4868264 + outSlope: 5.4868264 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.13386737 + inSlope: 0.18320127 + outSlope: 0.18320127 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.126492 + inSlope: 0.678045 + outSlope: 0.6696369 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2333333 + value: 0.012312539 + inSlope: -0.63097364 + outSlope: -0.632294 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: -0.000000026983507 + inSlope: 0.10819587 + outSlope: 0.10794111 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: -0.000005096366 + inSlope: -0.53082234 + outSlope: -0.525055 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2333333 + value: -0.0000018276087 + inSlope: -0.00035958085 + outSlope: -0.00035958062 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6000001 + value: 0.2957013 + inSlope: -0.896519 + outSlope: -0.8985555 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9333334 + value: 0.014613096 + inSlope: -0.014925458 + outSlope: -0.015011068 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5666668 + value: 0.22671603 + inSlope: -0.37794852 + outSlope: -0.3825717 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.13384281 + inSlope: -0.18687007 + outSlope: -0.18687007 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1.6806841 + inSlope: 0.5285103 + outSlope: 0.5285103 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 1.6592346 + inSlope: 1.8943549 + outSlope: 1.8974669 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2333333 + value: 1.3139057 + inSlope: -2.050518 + outSlope: -2.0500414 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: 1.2751327 + inSlope: 0.34027267 + outSlope: 0.34027562 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: 1.2751212 + inSlope: -1.6941854 + outSlope: -1.6960578 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2333333 + value: 1.2751374 + inSlope: -0.00005071815 + outSlope: -0.000050718118 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6000001 + value: 2.1316543 + inSlope: -2.4631956 + outSlope: -2.4624615 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9333334 + value: 1.3211254 + inSlope: -0.047416102 + outSlope: -0.047362156 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5666668 + value: 1.9442685 + inSlope: -1.0688957 + outSlope: -1.0671605 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 1.6806891 + inSlope: -0.5468916 + outSlope: -0.5468916 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -1.3950262 + inSlope: -1.8272612 + outSlope: -1.8272612 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -1.3210366 + inSlope: -6.5685472 + outSlope: -6.5695996 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2333333 + value: -0.13296221 + inSlope: 7.0128307 + outSlope: 7.0126915 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: 0.0000013866858 + inSlope: -1.1667176 + outSlope: -1.1667725 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: -0.00000028963996 + inSlope: 5.802157 + outSlope: 5.8024087 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2333333 + value: 0.0000019038094 + inSlope: -0.000015576628 + outSlope: -0.000015576617 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6000001 + value: -2.9590108 + inSlope: 8.555817 + outSlope: 8.555569 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9333334 + value: -0.1577332 + inSlope: 0.16248827 + outSlope: 0.16242439 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5666668 + value: -2.307456 + inSlope: 3.7014117 + outSlope: 3.7011049 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: -1.3950075 + inSlope: 1.8873354 + outSlope: 1.8873354 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 4.2953057 + inSlope: 0.18275304 + outSlope: 0.18275304 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 3.7753007 + inSlope: -5.242864 + outSlope: -5.2428274 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 3.4823947 + inSlope: 0.12823533 + outSlope: 0.122799896 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 3.5696695 + inSlope: 2.4672155 + outSlope: 2.466477 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333334 + value: 5.1458807 + inSlope: 11.834175 + outSlope: 11.844518 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: 4.062806 + inSlope: -0.22303969 + outSlope: -0.22627117 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: 3.641503 + inSlope: -1.4757891 + outSlope: -1.4742401 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 3.9719822 + inSlope: -1.3303965 + outSlope: -1.3303975 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: 3.8823671 + inSlope: -6.393169 + outSlope: -6.4042788 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9000001 + value: 3.5433798 + inSlope: -1.5394379 + outSlope: -1.4913762 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: 3.201606 + inSlope: -1.729921 + outSlope: -1.7299235 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2333333 + value: 3.0924034 + inSlope: 3.7587698 + outSlope: 3.7587538 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4333334 + value: 3.2413778 + inSlope: 5.037473 + outSlope: 5.061275 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7 + value: 3.9025164 + inSlope: 1.2954749 + outSlope: 1.2954737 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.966667 + value: 3.9574673 + inSlope: -0.492252 + outSlope: -0.49225244 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2333336 + value: 3.8368373 + inSlope: 0.7475907 + outSlope: 0.79659736 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.766667 + value: 4.343459 + inSlope: -1.5098424 + outSlope: -1.5242686 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 4.297776 + inSlope: -1.3665117 + outSlope: -1.3665117 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 27.039507 + inSlope: -2.0322366 + outSlope: -2.0322366 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 26.204138 + inSlope: -0.8589779 + outSlope: -0.8594569 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 27.93317 + inSlope: 10.551234 + outSlope: 10.551416 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 28.3932 + inSlope: 1.2814715 + outSlope: 1.2830819 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333334 + value: 26.66633 + inSlope: -31.255606 + outSlope: -31.25381 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: 25.603256 + inSlope: -13.714236 + outSlope: -13.714372 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: 25.726597 + inSlope: 14.698249 + outSlope: 14.697984 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 27.29888 + inSlope: 6.927872 + outSlope: 6.927877 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: 29.194382 + inSlope: 31.263802 + outSlope: 31.263659 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9000001 + value: 28.543352 + inSlope: -37.639893 + outSlope: -37.639725 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: 26.276026 + inSlope: 12.328955 + outSlope: 12.328972 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2333333 + value: 26.586475 + inSlope: -6.401259 + outSlope: -6.401194 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4333334 + value: 29.214327 + inSlope: 18.854795 + outSlope: 18.848742 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7 + value: 28.784523 + inSlope: -22.259418 + outSlope: -22.259398 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.966667 + value: 25.232859 + inSlope: 1.8962344 + outSlope: 1.8962361 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2333336 + value: 28.039133 + inSlope: 17.92735 + outSlope: 17.921995 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.766667 + value: 27.251293 + inSlope: -7.0624714 + outSlope: -7.0597525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 27.039625 + inSlope: -6.349932 + outSlope: -6.349932 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 9.210007 + inSlope: -2.7188663 + outSlope: -2.7188663 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 9.144012 + inSlope: -0.9434509 + outSlope: -0.9438628 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 8.552778 + inSlope: -5.308851 + outSlope: -5.309125 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 6.9967394 + inSlope: -1.1403372 + outSlope: -1.1419978 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333334 + value: 7.876613 + inSlope: 3.568247 + outSlope: 3.5324574 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: 7.89786 + inSlope: 2.4273868 + outSlope: 2.4272385 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: 7.616391 + inSlope: -1.1177946 + outSlope: -1.1197295 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 7.6267843 + inSlope: 0.39964467 + outSlope: 0.39964494 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: 7.029236 + inSlope: -3.6798716 + outSlope: -3.6608508 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9000001 + value: 8.163741 + inSlope: 13.203185 + outSlope: 13.2074995 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: 8.979548 + inSlope: 1.1805662 + outSlope: 1.1805679 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2333333 + value: 8.008598 + inSlope: -0.027877834 + outSlope: -0.030097954 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4333334 + value: 7.852393 + inSlope: -6.607002 + outSlope: -6.588439 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7 + value: 8.41031 + inSlope: 8.144292 + outSlope: 8.144285 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.966667 + value: 9.546887 + inSlope: 2.2836416 + outSlope: 2.2836437 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2333336 + value: 9.142076 + inSlope: -3.55014 + outSlope: -3.5383756 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.766667 + value: 9.161583 + inSlope: 1.4696361 + outSlope: 1.45363 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 9.211572 + inSlope: 1.5029826 + outSlope: 1.5029826 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 10.222601 + inSlope: -2.0832348 + outSlope: -2.0832348 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 10.082508 + inSlope: -2.7986336 + outSlope: -2.7934299 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 9.711933 + inSlope: 1.8844986 + outSlope: 1.8844129 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: 9.834295 + inSlope: 5.2461867 + outSlope: 5.2461867 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2333333 + value: 9.9549 + inSlope: 1.908424 + outSlope: 1.9013996 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 9.507693 + inSlope: -0.9569762 + outSlope: -0.95676935 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: 9.529923 + inSlope: 9.202183 + outSlope: 9.187309 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: 10.141964 + inSlope: -0.12830907 + outSlope: -0.12825963 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6000001 + value: 9.387519 + inSlope: 4.558932 + outSlope: 4.5545254 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0333335 + value: 10.449079 + inSlope: -1.1722424 + outSlope: -1.1720184 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4 + value: 9.771146 + inSlope: 0.13098547 + outSlope: 0.13094184 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 10.226128 + inSlope: -0.24827951 + outSlope: -0.24827951 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -25.538403 + inSlope: 4.206066 + outSlope: 4.206066 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -25.153337 + inSlope: 6.891031 + outSlope: 6.895809 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -24.176447 + inSlope: -4.634654 + outSlope: -4.633613 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: -24.04163 + inSlope: -12.484847 + outSlope: -12.484847 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2333333 + value: -24.72829 + inSlope: -4.831839 + outSlope: -4.8359003 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: -23.557018 + inSlope: 2.608308 + outSlope: 2.608739 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: -23.76109 + inSlope: -23.7477 + outSlope: -23.767952 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: -25.329357 + inSlope: 0.5605212 + outSlope: 0.5606173 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6000001 + value: -23.443232 + inSlope: -10.721323 + outSlope: -10.723962 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0333335 + value: -26.12324 + inSlope: 2.9634163 + outSlope: 2.963641 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4 + value: -24.43504 + inSlope: -0.26170564 + outSlope: -0.26175493 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: -25.538706 + inSlope: 1.2396953 + outSlope: 1.2396953 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -40.451588 + inSlope: 4.8199654 + outSlope: 4.8199654 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -40.54978 + inSlope: 1.1531448 + outSlope: 1.1668603 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -40.41857 + inSlope: -0.03501892 + outSlope: -0.029010775 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: -42.54456 + inSlope: -4.0250306 + outSlope: -4.0250306 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2333333 + value: -40.871742 + inSlope: -1.9485284 + outSlope: -1.9561954 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: -40.97959 + inSlope: 0.2504539 + outSlope: 0.25188455 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: -40.39252 + inSlope: -1.0585216 + outSlope: -1.1668916 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: -40.38162 + inSlope: -0.12937026 + outSlope: -0.12934682 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6000001 + value: -40.22587 + inSlope: -4.274768 + outSlope: -4.2799664 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0333335 + value: -40.469467 + inSlope: 0.557873 + outSlope: 0.55855507 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4 + value: -40.1388 + inSlope: -0.072597176 + outSlope: -0.07249831 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: -40.45289 + inSlope: -2.470264 + outSlope: -2.470264 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 12.120026 + inSlope: 0.47035214 + outSlope: 0.47035214 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 12.584579 + inSlope: 1.3582991 + outSlope: 1.3574524 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: 12.257196 + inSlope: -0.09252548 + outSlope: -0.09256226 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: 12.98821 + inSlope: -2.4884338 + outSlope: -2.490516 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: 12.065754 + inSlope: 1.4345306 + outSlope: 1.4351689 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4666667 + value: 12.831836 + inSlope: 1.2265408 + outSlope: 1.2269856 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 12.017792 + inSlope: 2.3243308 + outSlope: 2.3249161 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 12.109774 + inSlope: 0.0005149841 + outSlope: 0.0005149841 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -26.187365 + inSlope: 0.4944491 + outSlope: 0.4944491 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -25.724216 + inSlope: 1.3355397 + outSlope: 1.3361435 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: -26.0468 + inSlope: -0.090351105 + outSlope: -0.09033066 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: -25.326838 + inSlope: -2.4333122 + outSlope: -2.4319901 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: -26.235575 + inSlope: 1.430561 + outSlope: 1.4301907 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4666667 + value: -25.478165 + inSlope: 1.2014189 + outSlope: 1.2010512 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: -26.282055 + inSlope: 2.3098571 + outSlope: 2.3094666 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: -26.190695 + inSlope: 0.0006130763 + outSlope: 0.0006130763 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 31.740389 + inSlope: -0.46749827 + outSlope: -0.46749827 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 31.468832 + inSlope: -0.7585358 + outSlope: -0.759922 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: 31.652939 + inSlope: 0.055023193 + outSlope: 0.054931637 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: 31.242743 + inSlope: 1.4119024 + outSlope: 1.40876 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: 31.759554 + inSlope: -0.7927534 + outSlope: -0.79187423 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4666667 + value: 31.331861 + inSlope: -0.6913863 + outSlope: -0.69061166 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 31.785677 + inSlope: -1.2732664 + outSlope: -1.2723296 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 31.737045 + inSlope: -0.0011117117 + outSlope: -0.0011117117 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -10.908128 + inSlope: -0.000366431 + outSlope: -0.000366431 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -10.790639 + inSlope: -0.26291588 + outSlope: -0.2628994 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: -10.85699 + inSlope: -0.19556852 + outSlope: -0.19548891 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9000001 + value: -10.871085 + inSlope: -0.15835285 + outSlope: -0.16059606 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7333336 + value: -10.891559 + inSlope: -0.14198796 + outSlope: -0.14281368 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.7333336 + value: -10.904559 + inSlope: 0.28116703 + outSlope: 0.28165367 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: -10.886433 + inSlope: 0.2865031 + outSlope: 0.2865031 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2/mixamorig:LeftHandThumb3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 2.4945319 + inSlope: 0.00012461955 + outSlope: 0.00012461955 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 2.4221692 + inSlope: -0.14426322 + outSlope: -0.14422527 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: 2.4850175 + inSlope: -0.032653626 + outSlope: -0.032662153 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9000001 + value: 2.518553 + inSlope: 0.9911429 + outSlope: 0.9907529 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7333336 + value: 2.4910727 + inSlope: 0.7168063 + outSlope: 0.7166319 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.7333336 + value: 2.4933116 + inSlope: 0.09367347 + outSlope: 0.093609184 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 2.508945 + inSlope: 0.4235105 + outSlope: 0.4235105 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2/mixamorig:LeftHandThumb3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 9.185584 + inSlope: 0.00018816727 + outSlope: 0.00018816727 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 8.682339 + inSlope: 0.23410648 + outSlope: 0.23411971 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: 9.043772 + inSlope: 0.39956164 + outSlope: 0.39950368 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9000001 + value: 9.180647 + inSlope: 3.3721254 + outSlope: 3.37204 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7333336 + value: 9.149752 + inSlope: 2.50927 + outSlope: 2.5092258 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.7333336 + value: 9.204913 + inSlope: 0.25478268 + outSlope: 0.25461698 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 9.186119 + inSlope: -0.6643302 + outSlope: -0.6643302 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2/mixamorig:LeftHandThumb3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 7.2498817 + inSlope: -1.1470413 + outSlope: -1.1470413 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 6.6740584 + inSlope: -1.4050466 + outSlope: -1.4055845 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 6.747999 + inSlope: -13.552978 + outSlope: -13.54904 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: 7.6415205 + inSlope: -0.5592192 + outSlope: -0.55898494 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: 7.6041327 + inSlope: 8.301427 + outSlope: 8.2961235 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2333333 + value: 7.546154 + inSlope: -2.5685232 + outSlope: -2.5683963 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7333336 + value: 7.2913113 + inSlope: 5.1201415 + outSlope: 5.121916 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5666668 + value: 7.076562 + inSlope: 2.336157 + outSlope: 2.335269 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 7.2497263 + inSlope: -2.6331995 + outSlope: -2.6331995 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 3.210044 + inSlope: -0.76082724 + outSlope: -0.76082724 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 3.323089 + inSlope: 0.32788953 + outSlope: 0.3257095 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 3.2265105 + inSlope: 3.3992164 + outSlope: 3.4128697 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: 3.1304257 + inSlope: 0.5306778 + outSlope: 0.5308514 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: 3.1992247 + inSlope: -2.7461286 + outSlope: -2.7621124 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2333333 + value: 3.100507 + inSlope: 0.4489629 + outSlope: 0.4494479 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7333336 + value: 3.1801202 + inSlope: -1.1458148 + outSlope: -1.1374893 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5666668 + value: 3.2242534 + inSlope: -0.43630403 + outSlope: -0.4411544 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 3.2112346 + inSlope: -0.00068051467 + outSlope: -0.00068051467 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -4.046287 + inSlope: 0.29237193 + outSlope: 0.29237193 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -4.339704 + inSlope: -0.84342897 + outSlope: -0.8427785 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -4.2520165 + inSlope: -5.5400476 + outSlope: -5.5473824 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: -4.049958 + inSlope: -0.54484254 + outSlope: -0.5449491 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: -4.0975413 + inSlope: 3.6456404 + outSlope: 3.6566343 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2333333 + value: -3.987327 + inSlope: -0.59207976 + outSlope: -0.59239453 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7333336 + value: -4.044948 + inSlope: 1.8031961 + outSlope: 1.7987213 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5666668 + value: -4.1022863 + inSlope: 1.2388425 + outSlope: 1.2399714 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: -4.044649 + inSlope: -0.41098183 + outSlope: -0.41098183 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 17.30092 + inSlope: -0.0000015058015 + outSlope: -0.0000015058015 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 17.30092 + inSlope: -0.0000015058015 + outSlope: -0.0000015058015 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.23802201 + inSlope: 0.00000012940481 + outSlope: 0.00000012940481 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: -0.23802201 + inSlope: 0.00000012940481 + outSlope: 0.00000012940481 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 2.373337 + inSlope: -0.00000018822519 + outSlope: -0.00000018822519 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 2.373337 + inSlope: -0.00000018822519 + outSlope: -0.00000018822519 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 8.008251 + inSlope: 0.000003011603 + outSlope: 0.000003011603 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 8.008251 + inSlope: 0.000003011603 + outSlope: 0.000003011603 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2/mixamorig:LeftHandIndex3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.075007714 + inSlope: 0.0000035468684 + outSlope: 0.0000035468684 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.075007714 + inSlope: 0.0000035468684 + outSlope: 0.0000035468684 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2/mixamorig:LeftHandIndex3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1.071718 + inSlope: -0.0000013175763 + outSlope: -0.0000013175763 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 1.071718 + inSlope: -0.0000013175763 + outSlope: -0.0000013175763 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2/mixamorig:LeftHandIndex3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 15.178406 + inSlope: -1.3274779 + outSlope: -1.3274779 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 14.868925 + inSlope: -1.1548759 + outSlope: -1.1549089 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 14.926427 + inSlope: -15.854484 + outSlope: -15.854313 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: 15.780258 + inSlope: 0.5351911 + outSlope: 0.53604126 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: 15.781923 + inSlope: 6.075048 + outSlope: 6.0662227 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: 15.754211 + inSlope: 0.7778322 + outSlope: 0.77783203 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7 + value: 15.33216 + inSlope: 4.3536587 + outSlope: 4.357242 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6666667 + value: 15.059924 + inSlope: 2.646086 + outSlope: 2.6452353 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 15.17876 + inSlope: -2.9746103 + outSlope: -2.9746103 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 3.9135215 + inSlope: 0.5539006 + outSlope: 0.5539006 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 4.0281405 + inSlope: 0.102160834 + outSlope: 0.1008868 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 3.9663987 + inSlope: -0.40029278 + outSlope: -0.39588177 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: 3.9640782 + inSlope: -0.49768615 + outSlope: -0.49673674 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: 3.988339 + inSlope: -1.7185806 + outSlope: -1.7518778 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: 3.8878748 + inSlope: 0.29968435 + outSlope: 0.29949045 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7 + value: 3.945252 + inSlope: -0.8120756 + outSlope: -0.79021204 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6666667 + value: 3.930035 + inSlope: -0.27493197 + outSlope: -0.28488255 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 3.9141717 + inSlope: -0.0773012 + outSlope: -0.0773012 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.15294753 + inSlope: -2.0684822 + outSlope: -2.0684822 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.2886593 + inSlope: -0.61608166 + outSlope: -0.61624676 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.07828814 + inSlope: -2.6864562 + outSlope: -2.684648 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: 0.15043494 + inSlope: 1.7013301 + outSlope: 1.7012097 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: 0.0749001 + inSlope: 7.237193 + outSlope: 7.2360573 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: 0.38182926 + inSlope: -0.7336895 + outSlope: -0.7337551 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7 + value: 0.09258241 + inSlope: 3.7536182 + outSlope: 3.7549334 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6666667 + value: 0.07063311 + inSlope: 1.5796156 + outSlope: 1.5785927 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.15096033 + inSlope: -0.516129 + outSlope: -0.516129 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 17.335962 + inSlope: 0.0000045174042 + outSlope: 0.0000045174042 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 17.335962 + inSlope: 0.0000045174042 + outSlope: 0.0000045174042 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -1.2126893 + inSlope: -0.0000023528148 + outSlope: -0.0000023528148 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: -1.2126893 + inSlope: -0.0000023528148 + outSlope: -0.0000023528148 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 2.3095708 + inSlope: -0.00000037645037 + outSlope: -0.00000037645037 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 2.3095708 + inSlope: -0.00000037645037 + outSlope: -0.00000037645037 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 18.322802 + inSlope: -0.0000015058015 + outSlope: -0.0000015058015 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 18.322802 + inSlope: -0.0000015058015 + outSlope: -0.0000015058015 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2/mixamorig:LeftHandMiddle3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.77465135 + inSlope: 0.000005411474 + outSlope: 0.000005411474 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.77465135 + inSlope: 0.000005411474 + outSlope: 0.000005411474 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2/mixamorig:LeftHandMiddle3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 2.6724758 + inSlope: -0.0000045174042 + outSlope: -0.0000045174042 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 2.6724758 + inSlope: -0.0000045174042 + outSlope: -0.0000045174042 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2/mixamorig:LeftHandMiddle3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 26.445457 + inSlope: 0.15570372 + outSlope: 0.15570372 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 25.981815 + inSlope: -1.8097914 + outSlope: -1.8098503 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 25.771774 + inSlope: -6.6237745 + outSlope: -6.6237745 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: 26.648918 + inSlope: -0.0465938 + outSlope: -0.046328373 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: 26.692448 + inSlope: 7.146747 + outSlope: 7.1455026 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: 26.316406 + inSlope: -3.6782618 + outSlope: -3.6769333 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2000003 + value: 26.27858 + inSlope: -3.4811866 + outSlope: -3.4818273 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 26.449072 + inSlope: -1.3663008 + outSlope: -1.3663008 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 2.2197423 + inSlope: 0.25235423 + outSlope: 0.25235423 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 2.3055882 + inSlope: -0.014338874 + outSlope: -0.016093252 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 2.32056 + inSlope: 0.0074120923 + outSlope: 0.0074120923 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: 2.2479537 + inSlope: 0.26232 + outSlope: 0.2622266 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: 2.2722623 + inSlope: -1.6566722 + outSlope: -1.6626614 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: 2.307964 + inSlope: 0.75769025 + outSlope: 0.76324683 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2000003 + value: 2.3037188 + inSlope: 0.6033228 + outSlope: 0.60001266 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 2.2049282 + inSlope: -0.06615997 + outSlope: -0.06615997 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 3.0745535 + inSlope: -0.62462425 + outSlope: -0.62462425 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 2.846465 + inSlope: -0.4665859 + outSlope: -0.467299 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 2.7945535 + inSlope: -1.3450128 + outSlope: -1.3450128 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: 3.0483472 + inSlope: -0.2749494 + outSlope: -0.27485886 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: 3.0534813 + inSlope: 3.3345964 + outSlope: 3.3349435 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: 2.9195313 + inSlope: -1.5154663 + outSlope: -1.5158705 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2000003 + value: 2.9556437 + inSlope: -1.3720264 + outSlope: -1.371999 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 3.0636518 + inSlope: -0.20870093 + outSlope: -0.20870093 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 17.334494 + inSlope: -0.0000045174042 + outSlope: -0.0000045174042 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 17.334494 + inSlope: -0.0000045174042 + outSlope: -0.0000045174042 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.3458012 + inSlope: -0.0000051526645 + outSlope: -0.0000051526645 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.3458012 + inSlope: -0.0000051526645 + outSlope: -0.0000051526645 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 2.3757067 + inSlope: -0.0000037645036 + outSlope: -0.0000037645036 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 2.3757067 + inSlope: -0.0000037645036 + outSlope: -0.0000037645036 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 16.435877 + inSlope: 0.0000045174042 + outSlope: 0.0000045174042 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 16.435877 + inSlope: 0.0000045174042 + outSlope: 0.0000045174042 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2/mixamorig:LeftHandPinky3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.32429907 + inSlope: -0.0000031763 + outSlope: -0.0000031763 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.32429907 + inSlope: -0.0000031763 + outSlope: -0.0000031763 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2/mixamorig:LeftHandPinky3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 2.2452555 + inSlope: -0.00000075290075 + outSlope: -0.00000075290075 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 2.2452555 + inSlope: -0.00000075290075 + outSlope: -0.00000075290075 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2/mixamorig:LeftHandPinky3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 84.886406 + inSlope: 0.28706685 + outSlope: 0.28706685 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 85.60318 + inSlope: 6.7948475 + outSlope: 6.7994804 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 88.24186 + inSlope: 4.24236 + outSlope: 5.165749 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: 84.60424 + inSlope: 12.935143 + outSlope: 12.944223 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: 87.52235 + inSlope: 1.1962732 + outSlope: 1.1891718 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: 85.29539 + inSlope: -6.0127583 + outSlope: -6.0096936 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 84.06845 + inSlope: -15.469438 + outSlope: -15.469438 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: 82.278175 + inSlope: -6.4903455 + outSlope: -6.477678 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: 83.186714 + inSlope: -0.40937814 + outSlope: -0.4088036 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3000002 + value: 83.76407 + inSlope: 8.596299 + outSlope: 8.59598 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6333334 + value: 85.25806 + inSlope: -2.5219123 + outSlope: -2.523241 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: 84.61787 + inSlope: 2.6598113 + outSlope: 2.6601937 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 84.88557 + inSlope: 3.137069 + outSlope: 3.137069 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -83.24837 + inSlope: 1.637159 + outSlope: 1.637159 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -82.07811 + inSlope: 22.249079 + outSlope: 21.68437 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 47.45387 + inSlope: -234.15051 + outSlope: -178.37306 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: -84.16117 + inSlope: 26.810076 + outSlope: 25.861256 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: -70.01386 + inSlope: 19.212332 + outSlope: 19.4046 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: -81.19947 + inSlope: -7.247052 + outSlope: -7.7439885 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: -85.80636 + inSlope: -44.828342 + outSlope: -44.828342 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: -85.721344 + inSlope: 39.903034 + outSlope: 39.819954 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: -80.621284 + inSlope: -6.5780654 + outSlope: -6.5654526 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3000002 + value: -83.99756 + inSlope: -6.099657 + outSlope: -6.228975 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6333334 + value: -83.24992 + inSlope: -2.2697759 + outSlope: -2.0498896 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: -83.12329 + inSlope: 3.2836106 + outSlope: 3.1910136 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: -82.99746 + inSlope: 6.259976 + outSlope: 6.259976 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -159.78664 + inSlope: 2.3311613 + outSlope: 2.3311613 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -157.55618 + inSlope: 29.01234 + outSlope: 28.447828 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -26.562363 + inSlope: -245.53133 + outSlope: -189.75542 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: -160.21068 + inSlope: 35.100636 + outSlope: 34.152084 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: -145.76633 + inSlope: 15.662651 + outSlope: 15.855624 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: -158.50934 + inSlope: -17.365263 + outSlope: -17.861025 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: -161.21452 + inSlope: -20.368998 + outSlope: -20.368998 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: -164.33199 + inSlope: -21.992914 + outSlope: -22.071814 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: -164.03589 + inSlope: 0.4158326 + outSlope: 0.4283418 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3000002 + value: -162.11937 + inSlope: 20.30797 + outSlope: 20.180792 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6333334 + value: -158.54758 + inSlope: -6.920427 + outSlope: -6.701081 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: -160.28293 + inSlope: 6.962584 + outSlope: 6.8701463 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: -159.54088 + inSlope: 7.0616345 + outSlope: 7.0616345 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 46.77096 + inSlope: -0.17522334 + outSlope: -0.17522334 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 44.60916 + inSlope: -7.032966 + outSlope: -7.026443 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 46.101173 + inSlope: 1.8341445 + outSlope: 1.6662923 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 54.646385 + inSlope: 30.428694 + outSlope: 33.70344 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 59.514473 + inSlope: 19.79228 + outSlope: 20.644005 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 60.174004 + inSlope: -10.188679 + outSlope: -10.188672 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 59.14624 + inSlope: -8.046568 + outSlope: -8.046568 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 58.152267 + inSlope: -7.414854 + outSlope: -7.873991 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666668 + value: 58.08137 + inSlope: -17.817703 + outSlope: -17.277859 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 51.246307 + inSlope: -81.56362 + outSlope: -76.416306 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 48.32455 + inSlope: 55.66737 + outSlope: 55.66737 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: 55.457 + inSlope: 9.553984 + outSlope: 9.812165 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: 49.840794 + inSlope: -19.291737 + outSlope: -19.291754 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: 51.037132 + inSlope: -3.5703883 + outSlope: -3.7472975 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: 49.814014 + inSlope: -5.346563 + outSlope: -5.5525002 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3666668 + value: 43.370644 + inSlope: -48.33491 + outSlope: -48.33491 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5666668 + value: 40.30922 + inSlope: 16.860348 + outSlope: 16.860348 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.766667 + value: 44.233616 + inSlope: 27.582716 + outSlope: 26.95122 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 48.98244 + inSlope: -5.0548453 + outSlope: -5.017129 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4 + value: 43.59531 + inSlope: 0.6248094 + outSlope: 0.63603383 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 46.766834 + inSlope: 7.066925 + outSlope: 7.066925 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 43.52835 + inSlope: -1.5660666 + outSlope: -1.5660666 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 44.177 + inSlope: -12.10071 + outSlope: -12.12427 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 32.926884 + inSlope: -79.574486 + outSlope: -79.5799 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.80720806 + inSlope: -193.7961 + outSlope: -190.82211 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -25.341795 + inSlope: -89.50948 + outSlope: -88.17911 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -27.706928 + inSlope: 41.119667 + outSlope: 41.11964 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -21.281017 + inSlope: 27.754549 + outSlope: 27.754549 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -26.246662 + inSlope: -83.97661 + outSlope: -83.492355 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666668 + value: -23.065235 + inSlope: 118.4267 + outSlope: 119.06663 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 10.848717 + inSlope: 208.49652 + outSlope: 217.43976 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 25.697655 + inSlope: 12.942121 + outSlope: 12.942121 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: 22.702887 + inSlope: 67.05303 + outSlope: 66.99897 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: 42.314674 + inSlope: 58.869385 + outSlope: 58.86944 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: 33.423767 + inSlope: -76.15421 + outSlope: -76.0888 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: 32.797695 + inSlope: 29.561243 + outSlope: 29.43494 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3666668 + value: 41.077843 + inSlope: 22.326616 + outSlope: 22.326616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5666668 + value: 43.570404 + inSlope: 5.335692 + outSlope: 5.335692 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.766667 + value: 42.49519 + inSlope: -29.985516 + outSlope: -31.375278 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 38.294514 + inSlope: 19.51471 + outSlope: 19.548916 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4 + value: 45.183304 + inSlope: -5.274049 + outSlope: -5.272177 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 43.525166 + inSlope: -2.5163548 + outSlope: -2.5163548 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 42.86703 + inSlope: -0.47769067 + outSlope: -0.47769067 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 43.99512 + inSlope: -3.9836166 + outSlope: -4.0118976 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 38.407234 + inSlope: -31.312979 + outSlope: -31.328396 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 16.352777 + inSlope: -151.97537 + outSlope: -148.88934 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -5.7045274 + inSlope: -97.69703 + outSlope: -96.376724 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -14.304916 + inSlope: -74.23144 + outSlope: -74.2314 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -16.662134 + inSlope: 20.419744 + outSlope: 20.419744 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -17.230272 + inSlope: -36.279537 + outSlope: -35.777855 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666668 + value: -12.86977 + inSlope: 89.07581 + outSlope: 89.727356 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 16.821423 + inSlope: 201.1543 + outSlope: 210.13144 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 28.569252 + inSlope: -59.838165 + outSlope: -59.838165 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: 14.006844 + inSlope: -71.61551 + outSlope: -71.57404 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: 19.359303 + inSlope: 6.0791306 + outSlope: 6.079136 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: 10.109913 + inSlope: -38.226364 + outSlope: -38.159138 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: 20.45046 + inSlope: 113.17907 + outSlope: 113.04577 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3666668 + value: 43.769855 + inSlope: 76.51352 + outSlope: 76.51352 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5666668 + value: 49.953754 + inSlope: -10.551049 + outSlope: -10.551049 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.766667 + value: 42.912746 + inSlope: -70.36987 + outSlope: -71.561356 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 31.196043 + inSlope: 30.281641 + outSlope: 30.314203 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4 + value: 44.588406 + inSlope: 10.184977 + outSlope: 10.18481 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 42.86231 + inSlope: -1.4713951 + outSlope: -1.4713951 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.69399196 + inSlope: -0.25336683 + outSlope: -0.25336683 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 1.4378064 + inSlope: 11.108041 + outSlope: 10.479012 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 4.6768394 + inSlope: 40.995384 + outSlope: 40.995384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 13.147094 + inSlope: 59.61128 + outSlope: 59.56412 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 20.153202 + inSlope: 38.94954 + outSlope: 39.09427 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 23.941235 + inSlope: 43.67808 + outSlope: 43.67808 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 27.635649 + inSlope: 12.39309 + outSlope: 12.39309 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333334 + value: 27.270388 + inSlope: -1.2181661 + outSlope: -1.2195115 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 28.270006 + inSlope: -16.810032 + outSlope: -16.49282 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: 23.37808 + inSlope: -92.52632 + outSlope: -91.8119 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: 15.411341 + inSlope: -141.58798 + outSlope: -142.9908 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 10.386953 + inSlope: -142.8037 + outSlope: -142.8037 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 5.795199 + inSlope: -111.01305 + outSlope: -105.97688 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.9362145 + inSlope: -30.468328 + outSlope: -30.468382 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: 0.000006054912 + inSlope: -2.6239474 + outSlope: -2.5525064 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: 0.41018808 + inSlope: -0.06017372 + outSlope: -0.06017372 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: 0.033106312 + inSlope: 0.50656414 + outSlope: 0.50818527 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.266667 + value: 0.77135056 + inSlope: 5.0012846 + outSlope: 5.0377073 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5333335 + value: 1.8225851 + inSlope: -2.09649 + outSlope: -2.09649 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: 0.5293469 + inSlope: -2.3097515 + outSlope: -2.2400608 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: 0.76002306 + inSlope: 2.2681007 + outSlope: 2.2832792 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.69398934 + inSlope: -0.41432923 + outSlope: -0.41432923 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -3.1058483 + inSlope: 0.5758927 + outSlope: 0.5758927 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -4.588098 + inSlope: -16.889032 + outSlope: -17.330492 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -8.753999 + inSlope: -33.219063 + outSlope: -33.219063 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -13.309398 + inSlope: -7.6295404 + outSlope: -8.795007 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -13.429205 + inSlope: 10.074936 + outSlope: 9.520281 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -12.154828 + inSlope: 24.382233 + outSlope: 24.382233 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -9.618636 + inSlope: 11.9183035 + outSlope: 11.9183035 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333334 + value: -9.946715 + inSlope: -1.0560892 + outSlope: -1.0537866 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -8.996191 + inSlope: -15.822063 + outSlope: -16.302162 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: -12.415906 + inSlope: -29.53911 + outSlope: -32.838238 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: -13.66941 + inSlope: 26.289875 + outSlope: 19.852915 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: -12.442189 + inSlope: 66.07365 + outSlope: 66.07365 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: -9.736681 + inSlope: 98.41442 + outSlope: 102.92061 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: -3.6279008 + inSlope: 71.7634 + outSlope: 71.76352 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: -1.2751272 + inSlope: 8.453118 + outSlope: 8.473952 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: -2.429399 + inSlope: 0.15191166 + outSlope: 0.15191166 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: -1.3785282 + inSlope: -1.5528545 + outSlope: -1.5521667 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.266667 + value: -3.2775326 + inSlope: -10.252524 + outSlope: -10.233529 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5333335 + value: -5.2396426 + inSlope: 3.460731 + outSlope: 3.460731 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: -2.7231426 + inSlope: 5.8065968 + outSlope: 5.8317657 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: -3.252724 + inSlope: -4.6916018 + outSlope: -4.683651 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: -3.105852 + inSlope: 0.94380367 + outSlope: 0.94380367 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 6.3902383 + inSlope: -2.0489073 + outSlope: -2.0489073 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 11.783409 + inSlope: 65.46259 + outSlope: 65.64564 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 28.865273 + inSlope: 168.93442 + outSlope: 168.93442 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 59.97288 + inSlope: 194.67613 + outSlope: 194.64212 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 83.019554 + inSlope: 134.61154 + outSlope: 134.4344 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 96.49656 + inSlope: 170.2814 + outSlope: 170.2814 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 111.83479 + inSlope: 58.726944 + outSlope: 58.726944 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333334 + value: 110.15725 + inSlope: -5.507582 + outSlope: -5.5067844 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 114.87002 + inSlope: -78.87946 + outSlope: -79.18921 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: 94.39248 + inSlope: -326.85394 + outSlope: -328.7227 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: 67.37654 + inSlope: -464.60114 + outSlope: -466.6269 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 50.701046 + inSlope: -502.13025 + outSlope: -502.13025 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 33.633247 + inSlope: -475.223 + outSlope: -474.49396 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 8.263304 + inSlope: -254.11896 + outSlope: -254.11873 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: 0.000009330398 + inSlope: -28.927452 + outSlope: -28.930176 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: 3.9995553 + inSlope: -0.5330727 + outSlope: -0.5330727 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: 0.35469905 + inSlope: 5.335904 + outSlope: 5.3357143 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.266667 + value: 7.0034075 + inSlope: 37.10371 + outSlope: 37.09649 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5333335 + value: 14.236923 + inSlope: -13.111154 + outSlope: -13.111154 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: 5.03307 + inSlope: -20.37677 + outSlope: -20.380156 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: 6.914634 + inSlope: 16.950876 + outSlope: 16.947918 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 6.390234 + inSlope: -3.3565273 + outSlope: -3.3565273 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 6.5001564 + inSlope: 0.06723403 + outSlope: 0.06723403 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 6.4605937 + inSlope: -9.079163 + outSlope: -9.032558 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 6.5346675 + inSlope: -14.965433 + outSlope: -16.293163 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 4.5798225 + inSlope: -3.2337563 + outSlope: -3.2337582 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 4.12101 + inSlope: -3.0828106 + outSlope: -3.0241573 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 6.7047 + inSlope: -0.2623736 + outSlope: -0.4097487 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.039525025 + inSlope: -16.576244 + outSlope: -16.539 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -1.3611542 + inSlope: 28.313843 + outSlope: 28.313864 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 3.7881517 + inSlope: 51.8109 + outSlope: 52.18015 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 9.993596 + inSlope: 3.5577466 + outSlope: 4.064037 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 8.316393 + inSlope: -37.99421 + outSlope: -37.99421 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 6.4472766 + inSlope: -2.683902 + outSlope: -4.078292 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 6.8573833 + inSlope: 21.246935 + outSlope: 21.246935 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 7.657123 + inSlope: 6.0229597 + outSlope: 6.0229597 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: 7.102825 + inSlope: -33.27453 + outSlope: -33.27441 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: 5.355406 + inSlope: -37.467228 + outSlope: -37.46736 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: 4.537445 + inSlope: 5.221257 + outSlope: 5.221257 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: 5.7498946 + inSlope: 44.88181 + outSlope: 44.38947 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: 8.861133 + inSlope: 30.771177 + outSlope: 30.880644 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666668 + value: 10.587776 + inSlope: -4.319686 + outSlope: -4.319686 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: 7.5437794 + inSlope: -31.494648 + outSlope: -31.424404 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: 4.2567105 + inSlope: -19.154606 + outSlope: -19.154572 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: 3.0955226 + inSlope: 3.6343527 + outSlope: 3.6262634 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5000002 + value: 6.912396 + inSlope: 9.523279 + outSlope: 9.523514 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6333334 + value: 7.177912 + inSlope: 5.6855483 + outSlope: 5.6855383 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.766667 + value: 7.7717347 + inSlope: -3.3499367 + outSlope: -3.2358868 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0333335 + value: 5.951463 + inSlope: 0.98188704 + outSlope: 0.98132753 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2000003 + value: 6.1671333 + inSlope: -1.566993 + outSlope: -1.5669953 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3666668 + value: 4.8743935 + inSlope: 5.5518775 + outSlope: 5.554185 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5000002 + value: 5.390144 + inSlope: -0.9587173 + outSlope: -0.9574719 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.7333336 + value: 6.1640706 + inSlope: 1.9093587 + outSlope: 1.9490237 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 6.497489 + inSlope: 6.4967456 + outSlope: 6.4967456 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -13.942395 + inSlope: -0.07488727 + outSlope: -0.07488727 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -14.749646 + inSlope: -30.70408 + outSlope: -30.709564 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -35.11318 + inSlope: -85.99441 + outSlope: -85.966965 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -43.7778 + inSlope: -106.25196 + outSlope: -106.25202 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -54.910248 + inSlope: -72.414116 + outSlope: -72.40296 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -57.77876 + inSlope: -19.574968 + outSlope: -19.569233 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -61.81596 + inSlope: -23.818195 + outSlope: -23.845333 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -62.32506 + inSlope: 29.902643 + outSlope: 29.90239 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -50.330044 + inSlope: 112.80895 + outSlope: 112.64206 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -38.07803 + inSlope: 41.313316 + outSlope: 41.272682 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: -38.092243 + inSlope: -25.89321 + outSlope: -25.89321 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: -36.24321 + inSlope: 191.14479 + outSlope: 191.09363 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: -26.291441 + inSlope: 374.28516 + outSlope: 374.28516 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: -11.227162 + inSlope: 402.76373 + outSlope: 402.76373 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: 0.6431349 + inSlope: 201.58354 + outSlope: 201.5842 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: 2.2665122 + inSlope: -84.26785 + outSlope: -84.26816 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: -4.992768 + inSlope: -237.52872 + outSlope: -237.52872 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: -13.610179 + inSlope: -186.52786 + outSlope: -186.59529 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: -15.927754 + inSlope: 79.97581 + outSlope: 79.96823 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666668 + value: -5.114085 + inSlope: 83.7033 + outSlope: 83.7033 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: -2.6454985 + inSlope: -52.006794 + outSlope: -52.027386 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: -13.8479595 + inSlope: -58.00345 + outSlope: -58.003345 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: -16.928465 + inSlope: 2.751 + outSlope: 2.7613778 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5000002 + value: -17.009157 + inSlope: 0.2675513 + outSlope: 0.2633717 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6333334 + value: -16.53826 + inSlope: 5.563679 + outSlope: 5.563669 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.766667 + value: -11.030107 + inSlope: 56.135647 + outSlope: 56.1029 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0333335 + value: -9.924939 + inSlope: -3.8280811 + outSlope: -3.8282356 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2000003 + value: -12.042358 + inSlope: 0.7610775 + outSlope: 0.7610786 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3666668 + value: -8.487136 + inSlope: -11.028653 + outSlope: -11.026853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5000002 + value: -11.080358 + inSlope: -9.759521 + outSlope: -9.759329 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.7333336 + value: -12.874881 + inSlope: -10.387536 + outSlope: -10.379214 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: -13.947061 + inSlope: -18.31384 + outSlope: -18.31384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -8.086206 + inSlope: -0.3138828 + outSlope: -0.3138828 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -8.041778 + inSlope: 7.6391454 + outSlope: 7.6911054 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -2.7337737 + inSlope: 31.49155 + outSlope: 30.931356 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -1.2596449 + inSlope: -7.573201 + outSlope: -7.5732055 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -1.727194 + inSlope: 8.374049 + outSlope: 8.3936825 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -3.5351083 + inSlope: -39.11102 + outSlope: -39.104507 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -9.018276 + inSlope: -16.54387 + outSlope: -16.582825 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -8.217074 + inSlope: -2.5526206 + outSlope: -2.5526226 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -6.600005 + inSlope: 31.302786 + outSlope: 30.734234 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.18971546 + inSlope: 64.14821 + outSlope: 64.12591 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 3.202409 + inSlope: 12.494824 + outSlope: 12.494824 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0.4412639 + inSlope: -75.71542 + outSlope: -75.65285 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: -2.24413 + inSlope: -58.468887 + outSlope: -58.468887 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: -3.4556365 + inSlope: -23.91095 + outSlope: -23.91095 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: -4.030467 + inSlope: -28.216093 + outSlope: -28.215992 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: -5.2639003 + inSlope: -35.49815 + outSlope: -35.498276 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: -6.3443127 + inSlope: -27.130936 + outSlope: -27.130936 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: -7.2136664 + inSlope: -24.8211 + outSlope: -25.623636 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: -8.27345 + inSlope: -14.765055 + outSlope: -14.528585 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666668 + value: -11.605195 + inSlope: -35.765038 + outSlope: -35.765038 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: -12.680748 + inSlope: 13.392102 + outSlope: 13.545984 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: -8.827346 + inSlope: 29.921272 + outSlope: 29.921219 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: -5.399597 + inSlope: 29.6816 + outSlope: 29.682299 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5000002 + value: -3.9834127 + inSlope: 4.595287 + outSlope: 4.5946712 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6333334 + value: -5.160688 + inSlope: -24.64859 + outSlope: -24.648546 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.766667 + value: -7.1853423 + inSlope: -5.1297207 + outSlope: -5.1971183 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0333335 + value: -8.832471 + inSlope: 0.5829299 + outSlope: 0.5841462 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2000003 + value: -7.8845572 + inSlope: 13.135891 + outSlope: 13.13591 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3666668 + value: -5.907799 + inSlope: -2.1309378 + outSlope: -2.1246512 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5000002 + value: -6.495543 + inSlope: 0.37418932 + outSlope: 0.37704805 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.7333336 + value: -7.285965 + inSlope: -7.91663 + outSlope: -7.906044 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: -8.093544 + inSlope: -14.210485 + outSlope: -14.210485 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 10.000598 + inSlope: 22.53049 + outSlope: 22.53049 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 13.141731 + inSlope: 23.421991 + outSlope: 23.038193 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 17.169342 + inSlope: 34.684387 + outSlope: 35.386955 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 21.86562 + inSlope: 61.712822 + outSlope: 61.723167 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 30.539652 + inSlope: 35.09149 + outSlope: 35.09149 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 25.474394 + inSlope: -111.74019 + outSlope: -111.29737 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 15.138456 + inSlope: -47.721794 + outSlope: -47.721794 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 14.302682 + inSlope: -72.501305 + outSlope: -72.48314 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 10.113704 + inSlope: -169.9541 + outSlope: -169.95518 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 2.989316 + inSlope: -192.3908 + outSlope: -192.39113 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -2.7821736 + inSlope: -108.3795 + outSlope: -108.3795 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -4.2795672 + inSlope: 10.96398 + outSlope: 11.325329 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.59717596 + inSlope: 40.969685 + outSlope: 41.02728 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -1.0652652 + inSlope: 9.311927 + outSlope: 9.311927 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: 7.5749373 + inSlope: 146.60515 + outSlope: 146.60515 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666668 + value: 24.199596 + inSlope: 179.7483 + outSlope: 183.60455 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: 37.394978 + inSlope: 173.28941 + outSlope: 169.90433 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 48.575195 + inSlope: 6.8490586 + outSlope: 7.1356144 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 44.523796 + inSlope: -107.45684 + outSlope: -107.45703 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 36.340763 + inSlope: -103.85815 + outSlope: -103.94083 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: 30.918701 + inSlope: -49.747456 + outSlope: -49.747456 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: 21.8347 + inSlope: -115.95283 + outSlope: -115.95283 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666668 + value: 13.725583 + inSlope: -26.073212 + outSlope: -26.089033 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1000001 + value: 13.36913 + inSlope: -5.2707987 + outSlope: -5.2708035 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2333333 + value: 11.96522 + inSlope: -17.94024 + outSlope: -17.950468 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: 9.046019 + inSlope: -19.059587 + outSlope: -19.063215 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6333334 + value: 7.500844 + inSlope: -4.783626 + outSlope: -4.785074 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8333335 + value: 7.2639637 + inSlope: -1.664457 + outSlope: -1.6699435 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 7.594412 + inSlope: 3.5931518 + outSlope: 3.5919847 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3000002 + value: 9.335017 + inSlope: 2.6619666 + outSlope: 2.6705863 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.466667 + value: 9.714441 + inSlope: 2.7862344 + outSlope: 2.7862384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6333334 + value: 10.074114 + inSlope: 2.9418325 + outSlope: 2.9418283 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 10.000554 + inSlope: 3.8182106 + outSlope: 3.8182106 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 24.977509 + inSlope: 9.509009 + outSlope: 9.509009 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 28.299887 + inSlope: 39.201492 + outSlope: 39.440266 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 31.821712 + inSlope: 31.85273 + outSlope: 30.989792 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 35.11577 + inSlope: 35.978386 + outSlope: 36.036877 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 39.663757 + inSlope: 52.347797 + outSlope: 52.347797 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 51.493553 + inSlope: 95.67805 + outSlope: 96.82638 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 60.256363 + inSlope: 66.45354 + outSlope: 66.45354 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 66.07052 + inSlope: 62.223114 + outSlope: 62.447037 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 68.32162 + inSlope: 78.0806 + outSlope: 78.08045 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 71.34964 + inSlope: 86.37444 + outSlope: 86.374596 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 73.97195 + inSlope: 31.73198 + outSlope: 31.73198 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 73.346344 + inSlope: -54.665276 + outSlope: -54.589645 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 68.68605 + inSlope: -22.057095 + outSlope: -21.93786 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 68.55349 + inSlope: -48.25446 + outSlope: -48.25446 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: 60.193935 + inSlope: -74.53524 + outSlope: -74.53524 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666668 + value: 49.816727 + inSlope: -215.79845 + outSlope: -210.23389 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: 32.44129 + inSlope: -284.69757 + outSlope: -291.56448 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 10.944078 + inSlope: -127.59799 + outSlope: -127.50799 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 6.4181905 + inSlope: -53.17964 + outSlope: -53.179737 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 2.5384252 + inSlope: -23.770477 + outSlope: -22.759653 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: 5.562711 + inSlope: 40.161514 + outSlope: 40.161514 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: 5.4051147 + inSlope: -23.04638 + outSlope: -23.04638 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666668 + value: 6.081797 + inSlope: 53.91189 + outSlope: 53.867462 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1000001 + value: 15.416335 + inSlope: 70.56521 + outSlope: 70.56528 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2333333 + value: 23.288298 + inSlope: 37.460026 + outSlope: 37.439224 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: 26.663376 + inSlope: -1.3233026 + outSlope: -1.2443978 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6333334 + value: 28.7759 + inSlope: 0.2759579 + outSlope: 0.2594661 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8333335 + value: 29.261621 + inSlope: -2.683553 + outSlope: -2.6799133 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 28.909079 + inSlope: -0.87382084 + outSlope: -0.87899184 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3000002 + value: 30.831343 + inSlope: -9.762695 + outSlope: -9.75994 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.466667 + value: 28.922861 + inSlope: -10.0845175 + outSlope: -10.084532 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6333334 + value: 27.104319 + inSlope: -7.458797 + outSlope: -7.4587865 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 24.977524 + inSlope: -2.576018 + outSlope: -2.576018 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 42.550728 + inSlope: 41.10311 + outSlope: 41.10311 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 52.056858 + inSlope: 100.681366 + outSlope: 100.79702 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 69.4728 + inSlope: 115.23793 + outSlope: 114.83479 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 76.59918 + inSlope: -5.3210435 + outSlope: -5.0976567 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 70.91961 + inSlope: 13.83402 + outSlope: 13.83402 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 79.592255 + inSlope: 58.648457 + outSlope: 60.05034 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 83.8816 + inSlope: 30.928108 + outSlope: 30.928108 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 86.81069 + inSlope: 1.1547086 + outSlope: 2.0578785 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 86.16326 + inSlope: -43.417324 + outSlope: -43.417248 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 83.903015 + inSlope: -63.264717 + outSlope: -63.26483 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 82.093925 + inSlope: -10.710994 + outSlope: -10.710994 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 83.35426 + inSlope: 68.23478 + outSlope: 68.17217 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 88.57018 + inSlope: 29.965528 + outSlope: 29.876625 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 89.04638 + inSlope: 40.591953 + outSlope: 40.591953 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: 93.16133 + inSlope: -36.052086 + outSlope: -36.052086 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666668 + value: 79.82705 + inSlope: -194.17575 + outSlope: -188.3618 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: 68.72191 + inSlope: -135.14844 + outSlope: -143.33218 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 64.4382 + inSlope: -34.779503 + outSlope: -34.63849 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 58.745205 + inSlope: -165.02396 + outSlope: -165.02425 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 46.59658 + inSlope: -70.38638 + outSlope: -69.60547 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: 55.037437 + inSlope: 66.87216 + outSlope: 66.87216 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: 49.289238 + inSlope: -101.9602 + outSlope: -101.9602 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666668 + value: 43.62028 + inSlope: 3.7469091 + outSlope: 3.6046317 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1000001 + value: 49.236633 + inSlope: 45.80235 + outSlope: 45.802387 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2333333 + value: 52.410255 + inSlope: 3.3087761 + outSlope: 3.240828 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: 52.5383 + inSlope: -20.959158 + outSlope: -20.942295 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6333334 + value: 48.174713 + inSlope: -35.13349 + outSlope: -35.137245 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8333335 + value: 44.459743 + inSlope: -10.72992 + outSlope: -10.728622 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 43.93126 + inSlope: 7.179566 + outSlope: 7.1795635 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3000002 + value: 46.722965 + inSlope: -9.395197 + outSlope: -9.392276 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.466667 + value: 45.286736 + inSlope: -7.6798515 + outSlope: -7.6798625 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6333334 + value: 43.58488 + inSlope: -11.574589 + outSlope: -11.574572 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 42.55072 + inSlope: 27.113695 + outSlope: 27.113695 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 15.090073 + inSlope: -35.99121 + outSlope: -35.99121 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 8.206583 + inSlope: -66.35317 + outSlope: -66.25938 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 1.6385595 + inSlope: 3.071907 + outSlope: 3.0680578 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 6.6605754 + inSlope: 70.39988 + outSlope: 70.43083 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 14.203604 + inSlope: 59.168514 + outSlope: 57.635574 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 27.899765 + inSlope: 39.24885 + outSlope: 39.989334 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 32.371014 + inSlope: 55.66328 + outSlope: 55.66328 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 36.10439 + inSlope: 0.9703449 + outSlope: 0.9703443 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: 35.78865 + inSlope: 4.6073904 + outSlope: 4.569331 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 30.98162 + inSlope: -31.903412 + outSlope: -31.638395 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 23.730865 + inSlope: -88.98961 + outSlope: -88.47832 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 17.955296 + inSlope: -63.942608 + outSlope: -63.942608 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 14.884887 + inSlope: -55.84685 + outSlope: -56.23675 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: 8.295327 + inSlope: -32.365555 + outSlope: -32.419968 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: 9.667936 + inSlope: 37.02147 + outSlope: 36.684315 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666668 + value: 11.006682 + inSlope: -14.786192 + outSlope: -14.823748 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.266667 + value: 10.591323 + inSlope: 15.812841 + outSlope: 15.780794 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4333334 + value: 14.162629 + inSlope: 19.493868 + outSlope: 19.494114 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6000001 + value: 14.556399 + inSlope: 5.953437 + outSlope: 5.9557595 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8666668 + value: 15.040848 + inSlope: 0.4040909 + outSlope: 0.40437165 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2333336 + value: 14.0144 + inSlope: -13.194411 + outSlope: -13.26639 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4333334 + value: 13.948798 + inSlope: -1.2603247 + outSlope: -1.2595898 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6666667 + value: 14.181113 + inSlope: 2.0459216 + outSlope: 2.046395 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 15.090462 + inSlope: 6.4062257 + outSlope: 6.4062257 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 24.235786 + inSlope: 20.027903 + outSlope: 20.027903 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 28.296797 + inSlope: 41.355328 + outSlope: 41.393764 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 31.08557 + inSlope: 1.4582348 + outSlope: 1.4667175 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 31.189993 + inSlope: -4.1831727 + outSlope: -3.838519 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 27.293985 + inSlope: -69.074974 + outSlope: -70.75953 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 12.233652 + inSlope: -49.11293 + outSlope: -47.953793 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 7.2148933 + inSlope: -59.627975 + outSlope: -59.627975 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 3.0884104 + inSlope: -9.724764 + outSlope: -9.724758 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: 2.6877394 + inSlope: -8.744972 + outSlope: -8.786647 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 7.6319985 + inSlope: 37.294724 + outSlope: 37.80854 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 15.749708 + inSlope: 96.395805 + outSlope: 97.70554 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 22.556036 + inSlope: 77.57689 + outSlope: 77.57689 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 26.488226 + inSlope: 62.478252 + outSlope: 62.001232 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: 31.504553 + inSlope: 8.5678 + outSlope: 8.326157 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: 27.531553 + inSlope: -44.23859 + outSlope: -44.494102 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666668 + value: 25.750399 + inSlope: 13.469178 + outSlope: 13.403298 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.266667 + value: 27.1761 + inSlope: -13.200204 + outSlope: -13.226693 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4333334 + value: 23.711744 + inSlope: -18.647078 + outSlope: -18.64705 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6000001 + value: 23.536776 + inSlope: -4.974916 + outSlope: -4.974082 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8666668 + value: 23.337196 + inSlope: 0.63574797 + outSlope: 0.6356462 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2333336 + value: 24.791979 + inSlope: 15.354246 + outSlope: 15.316529 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4333334 + value: 25.058807 + inSlope: 2.289736 + outSlope: 2.290257 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6666667 + value: 25.047146 + inSlope: -1.075434 + outSlope: -1.0741701 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 24.236404 + inSlope: -5.564227 + outSlope: -5.564227 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -35.024895 + inSlope: -0.508976 + outSlope: -0.508976 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -35.3671 + inSlope: -7.740812 + outSlope: -8.261204 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -36.065365 + inSlope: -14.300137 + outSlope: -14.30085 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -40.516148 + inSlope: -49.35667 + outSlope: -49.28317 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -45.47479 + inSlope: -53.984173 + outSlope: -55.934975 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -54.346695 + inSlope: -43.675556 + outSlope: -42.465378 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -57.932064 + inSlope: -27.873354 + outSlope: -27.873354 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -60.499912 + inSlope: -28.17296 + outSlope: -28.172943 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: -62.662926 + inSlope: -13.789212 + outSlope: -13.825901 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -61.0949 + inSlope: 28.945099 + outSlope: 29.502155 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -57.26127 + inSlope: 32.091755 + outSlope: 34.12076 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: -53.77727 + inSlope: 72.92599 + outSlope: 72.92599 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: -48.092445 + inSlope: 69.02326 + outSlope: 68.57238 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: -44.167774 + inSlope: 37.01904 + outSlope: 36.931416 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: -37.434288 + inSlope: 41.399624 + outSlope: 41.679142 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666668 + value: -34.99165 + inSlope: 5.1030335 + outSlope: 4.977378 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.266667 + value: -34.378017 + inSlope: 6.65325 + outSlope: 6.7282395 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4333334 + value: -32.532528 + inSlope: 9.527834 + outSlope: 9.52782 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6000001 + value: -32.479805 + inSlope: 1.6865379 + outSlope: 1.6782476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8666668 + value: -32.68035 + inSlope: -1.674471 + outSlope: -1.6744782 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2333336 + value: -34.042606 + inSlope: -9.624488 + outSlope: -9.539747 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4333334 + value: -34.627453 + inSlope: -3.466247 + outSlope: -3.4662354 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6666667 + value: -35.15782 + inSlope: -1.6365705 + outSlope: -1.6355883 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: -35.024467 + inSlope: 0.84646153 + outSlope: 0.84646153 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -14.200316 + inSlope: 96.19213 + outSlope: 96.19213 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -1.7026421 + inSlope: 161.1975 + outSlope: 160.49594 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 20.769764 + inSlope: 138.84512 + outSlope: 138.6655 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 32.924995 + inSlope: -23.875074 + outSlope: -23.892754 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 23.99573 + inSlope: -153.01677 + outSlope: -153.17065 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 10.46106 + inSlope: -228.91711 + outSlope: -228.91733 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -3.1710443 + inSlope: -128.39615 + outSlope: -127.54465 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -2.9416916 + inSlope: 93.76089 + outSlope: 93.74036 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 16.798239 + inSlope: 181.99347 + outSlope: 183.0161 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 34.753933 + inSlope: 128.58873 + outSlope: 128.58864 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 42.192215 + inSlope: 46.668995 + outSlope: 46.518864 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 42.45475 + inSlope: -70.63128 + outSlope: -69.464935 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: 29.712978 + inSlope: -176.15692 + outSlope: -176.15692 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: 17.020401 + inSlope: -38.94332 + outSlope: -38.94332 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: 19.077654 + inSlope: 7.492159 + outSlope: 7.492159 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 18.212883 + inSlope: 3.2183068 + outSlope: 3.2183106 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: 17.964191 + inSlope: -20.090466 + outSlope: -20.09044 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: 15.442881 + inSlope: -31.261417 + outSlope: -31.25626 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666668 + value: 9.707839 + inSlope: -24.111666 + outSlope: -24.180445 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: 5.373588 + inSlope: -30.040401 + outSlope: -30.182442 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4333334 + value: -2.3975844 + inSlope: -22.883133 + outSlope: -22.889427 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8333335 + value: -8.176201 + inSlope: -11.17933 + outSlope: -11.18033 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: -11.214815 + inSlope: -3.9427047 + outSlope: -3.9284248 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.766667 + value: -14.118291 + inSlope: -4.1750507 + outSlope: -4.27875 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: -14.200317 + inSlope: -2.4554467 + outSlope: -2.4554467 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2/mixamorig:RightHandThumb3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -3.22305 + inSlope: 30.576694 + outSlope: 30.576694 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -2.6346498 + inSlope: -42.1278 + outSlope: -44.0722 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -9.460643 + inSlope: -45.85223 + outSlope: -46.451923 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -12.944962 + inSlope: 6.135314 + outSlope: 6.055758 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -10.41622 + inSlope: 48.526802 + outSlope: 48.429325 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -5.501414 + inSlope: 98.49829 + outSlope: 98.49838 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 1.179904 + inSlope: 86.10179 + outSlope: 87.26252 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 6.330642 + inSlope: 2.150131 + outSlope: 1.3643749 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -4.0972357 + inSlope: -134.68704 + outSlope: -132.60254 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -16.506094 + inSlope: -127.9851 + outSlope: -127.98503 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -24.139822 + inSlope: -40.19101 + outSlope: -40.676754 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -25.12667 + inSlope: 113.01001 + outSlope: 115.00554 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: -6.347913 + inSlope: 169.43195 + outSlope: 169.43195 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: 8.103381 + inSlope: 91.43269 + outSlope: 91.43269 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: 11.923312 + inSlope: -15.621725 + outSlope: -15.621725 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 8.908212 + inSlope: -37.349644 + outSlope: -37.34969 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: 7.0464797 + inSlope: -4.6458907 + outSlope: -4.6458855 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: 6.1583314 + inSlope: -11.923096 + outSlope: -11.913405 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666668 + value: 4.026863 + inSlope: -34.287903 + outSlope: -34.221622 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: -1.5980024 + inSlope: -21.089937 + outSlope: -20.85777 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4333334 + value: -1.661842 + inSlope: 8.951194 + outSlope: 8.929763 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8333335 + value: 0.22898822 + inSlope: 0.98865813 + outSlope: 0.9740888 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: -0.5485323 + inSlope: -4.438939 + outSlope: -4.4523363 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.766667 + value: -3.198679 + inSlope: -3.8489113 + outSlope: -3.7248838 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: -3.2230368 + inSlope: -0.75127673 + outSlope: -0.75127673 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2/mixamorig:RightHandThumb3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -12.511959 + inSlope: -158.58684 + outSlope: -158.58684 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -27.302969 + inSlope: -124.73813 + outSlope: -125.40983 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -36.535324 + inSlope: -20.511473 + outSlope: -21.338194 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -36.243946 + inSlope: -17.841452 + outSlope: -17.859999 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -38.41766 + inSlope: -24.354525 + outSlope: -23.730621 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -41.646706 + inSlope: -81.15285 + outSlope: -81.15292 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -47.679962 + inSlope: -88.57865 + outSlope: -89.70981 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -55.390522 + inSlope: -86.48383 + outSlope: -86.44374 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -66.49992 + inSlope: -65.91314 + outSlope: -62.93978 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -69.850716 + inSlope: -36.811535 + outSlope: -36.811516 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -72.84893 + inSlope: -49.90996 + outSlope: -50.37644 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -76.13558 + inSlope: 144.8829 + outSlope: 146.7828 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: -50.39985 + inSlope: 243.48924 + outSlope: 243.48924 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: -32.60662 + inSlope: 85.43218 + outSlope: 85.43218 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: -28.323433 + inSlope: 15.978008 + outSlope: 15.978008 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: -27.352333 + inSlope: 9.920881 + outSlope: 9.920893 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: -23.696947 + inSlope: 71.53897 + outSlope: 71.53889 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: -19.160528 + inSlope: 1.4824101 + outSlope: 1.554393 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666668 + value: -21.977596 + inSlope: -21.726347 + outSlope: -21.635578 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: -27.295895 + inSlope: -37.45956 + outSlope: -37.314423 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4333334 + value: -31.44556 + inSlope: 2.9859211 + outSlope: 2.9078572 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8333335 + value: -28.96262 + inSlope: 13.357112 + outSlope: 13.358131 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: -22.52698 + inSlope: 16.618944 + outSlope: 16.624157 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.766667 + value: -13.2019615 + inSlope: 20.447182 + outSlope: 20.399914 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: -12.511953 + inSlope: 20.707016 + outSlope: 20.707016 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2/mixamorig:RightHandThumb3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 6.4995484 + inSlope: -11.88769 + outSlope: -11.88769 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 7.600337 + inSlope: 32.211678 + outSlope: 32.2109 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 14.462528 + inSlope: 88.264915 + outSlope: 88.28809 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 27.848385 + inSlope: 154.64189 + outSlope: 154.73065 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 47.247242 + inSlope: 164.5165 + outSlope: 164.28123 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 59.51631 + inSlope: 60.3249 + outSlope: 60.324875 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 70.1465 + inSlope: 97.09644 + outSlope: 97.547646 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 77.63225 + inSlope: 37.681747 + outSlope: 37.681747 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 81.7406 + inSlope: 42.81099 + outSlope: 42.810963 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: 83.64238 + inSlope: -0.3858947 + outSlope: -0.5544663 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2333333 + value: 83.044464 + inSlope: -19.636003 + outSlope: -20.279104 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: 71.640656 + inSlope: -54.463596 + outSlope: -54.320057 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: 72.19187 + inSlope: 21.809458 + outSlope: 21.824018 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 69.90026 + inSlope: -112.70301 + outSlope: -112.899826 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 53.29419 + inSlope: -148.35294 + outSlope: -148.30273 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: 38.816746 + inSlope: -146.83752 + outSlope: -146.89618 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: 25.914871 + inSlope: -202.5321 + outSlope: -202.53178 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: 15.305109 + inSlope: -80.9052 + outSlope: -80.8893 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: 15.749036 + inSlope: 27.059374 + outSlope: 27.054817 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2333333 + value: 17.426908 + inSlope: -26.424175 + outSlope: -26.428114 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: 12.592654 + inSlope: -42.464386 + outSlope: -42.46631 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5333335 + value: 10.1057005 + inSlope: -0.66130346 + outSlope: -0.6610535 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7333336 + value: 7.0703063 + inSlope: 0.24385208 + outSlope: 0.2442469 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 6.603314 + inSlope: 4.8572345 + outSlope: 4.857177 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 9.666816 + inSlope: -6.9251995 + outSlope: -6.9251995 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5666668 + value: 9.15601 + inSlope: -2.5675144 + outSlope: -2.5675144 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 6.4980416 + inSlope: -27.12027 + outSlope: -27.12027 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -3.2137756 + inSlope: 1.1800002 + outSlope: 1.1800002 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -3.146165 + inSlope: -1.8937467 + outSlope: -1.8945751 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -3.7760894 + inSlope: -6.338343 + outSlope: -6.249916 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -4.224834 + inSlope: -8.099422 + outSlope: -7.436958 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -5.894804 + inSlope: -31.453001 + outSlope: -33.51899 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -9.086367 + inSlope: -25.46043 + outSlope: -25.460419 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -15.660593 + inSlope: -122.32186 + outSlope: -114.78171 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -28.011044 + inSlope: -116.54587 + outSlope: -116.54587 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -47.250935 + inSlope: -545.463 + outSlope: -545.4627 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: -77.19753 + inSlope: 125.42996 + outSlope: 125.28672 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2333333 + value: -54.439186 + inSlope: 240.52318 + outSlope: 233.67319 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: -13.520679 + inSlope: 51.398758 + outSlope: 54.327953 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: -13.488379 + inSlope: -19.771095 + outSlope: -19.447622 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: -11.203252 + inSlope: 84.90333 + outSlope: 80.69516 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: -3.8267636 + inSlope: 20.804338 + outSlope: 19.86252 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: -3.07351 + inSlope: 18.320234 + outSlope: 19.0328 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: -1.765714 + inSlope: 9.928086 + outSlope: 9.928104 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: -1.5098705 + inSlope: 2.4430013 + outSlope: 2.419678 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: -1.2752037 + inSlope: -2.6615486 + outSlope: -2.6974323 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2333333 + value: -2.8104746 + inSlope: -5.670721 + outSlope: -5.6592565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: -3.0117314 + inSlope: 1.8162667 + outSlope: 1.8291631 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5333335 + value: -3.018929 + inSlope: -1.124542 + outSlope: -1.1243746 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7333336 + value: -2.7566307 + inSlope: 0.8382903 + outSlope: 0.83827543 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: -2.9165127 + inSlope: 0.14701436 + outSlope: 0.14784029 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: -2.8322532 + inSlope: -1.0137738 + outSlope: -1.0137738 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5666668 + value: -2.9838328 + inSlope: -0.7291255 + outSlope: -0.7291255 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: -3.2108316 + inSlope: -2.9190156 + outSlope: -2.9190156 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 4.3897014 + inSlope: 2.0790017 + outSlope: 2.0790017 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 4.463697 + inSlope: 0.009323358 + outSlope: 0.003613472 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 4.374099 + inSlope: -7.991987 + outSlope: -7.914253 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 2.1192222 + inSlope: -32.928543 + outSlope: -32.482613 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -2.3884945 + inSlope: -51.211685 + outSlope: -53.15482 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -6.6176944 + inSlope: -25.057337 + outSlope: -25.057327 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -12.329821 + inSlope: -113.53263 + outSlope: -105.97822 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -23.601095 + inSlope: -103.95204 + outSlope: -103.95204 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -41.994244 + inSlope: -544.18933 + outSlope: -544.18896 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: -72.00328 + inSlope: 124.95618 + outSlope: 124.812935 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2333333 + value: -49.733006 + inSlope: 235.34167 + outSlope: 228.49141 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: -9.288393 + inSlope: 46.941296 + outSlope: 49.877975 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: -9.972714 + inSlope: -26.745838 + outSlope: -26.42502 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: -8.084914 + inSlope: 77.04715 + outSlope: 72.82283 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: -1.4876211 + inSlope: 28.96853 + outSlope: 28.066202 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: 1.2478065 + inSlope: 9.400779 + outSlope: 10.239078 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: 2.068971 + inSlope: 14.035655 + outSlope: 14.035681 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: 2.8967733 + inSlope: 2.303054 + outSlope: 2.2787728 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: 2.19326 + inSlope: -3.5726044 + outSlope: -3.6029432 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2333333 + value: 2.8365314 + inSlope: 5.902886 + outSlope: 5.892261 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: 3.3440592 + inSlope: 2.7171195 + outSlope: 2.7269192 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5333335 + value: 3.5596437 + inSlope: 0.8041256 + outSlope: 0.8041046 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7333336 + value: 3.6101696 + inSlope: -1.0130486 + outSlope: -1.0129994 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 3.8042285 + inSlope: -0.481641 + outSlope: -0.4818136 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 3.4086773 + inSlope: 2.2614024 + outSlope: 2.2614024 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5666668 + value: 3.71788 + inSlope: 1.5274949 + outSlope: 1.5274949 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 4.3796196 + inSlope: 6.7215233 + outSlope: 6.7215233 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 17.349684 + inSlope: -16.619537 + outSlope: -16.619537 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 14.253361 + inSlope: 3.8772008 + outSlope: 3.8772814 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 29.922474 + inSlope: 191.24664 + outSlope: 191.66595 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 53.70843 + inSlope: 256.4594 + outSlope: 254.20226 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 83.46418 + inSlope: -26.36018 + outSlope: -40.799004 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 80.67348 + inSlope: 4.130663 + outSlope: 4.1416173 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 81.64751 + inSlope: 1.422043 + outSlope: 1.4091111 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 83.61742 + inSlope: -10.126534 + outSlope: -3.5627737 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 83.100555 + inSlope: -22.152094 + outSlope: -22.152094 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 71.94279 + inSlope: -205.02704 + outSlope: -205.68004 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: 47.694893 + inSlope: -121.16633 + outSlope: -121.0521 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: 30.878736 + inSlope: -59.33651 + outSlope: -59.27326 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4666667 + value: 16.68649 + inSlope: -13.360411 + outSlope: -13.3592825 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 14.868902 + inSlope: 1.4557334 + outSlope: 1.4557292 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 17.34963 + inSlope: 3.5580416 + outSlope: 3.5580416 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.2937477 + inSlope: 0.5861552 + outSlope: 0.5861552 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.3956621 + inSlope: -0.11469527 + outSlope: -0.114563055 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.38699487 + inSlope: -18.764898 + outSlope: -16.799421 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -3.8409913 + inSlope: -89.67533 + outSlope: -113.48404 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -70.46902 + inSlope: -892.5366 + outSlope: -788.71173 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -129.74113 + inSlope: 24.93857 + outSlope: 24.81148 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -123.12787 + inSlope: 11.71898 + outSlope: 11.854249 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -81.07835 + inSlope: 242.95334 + outSlope: 275.11362 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: -60.673115 + inSlope: 328.14517 + outSlope: 328.14517 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: -14.026291 + inSlope: 170.96187 + outSlope: 156.06424 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: -2.5230978 + inSlope: 19.359537 + outSlope: 17.543926 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: -0.45991498 + inSlope: 4.128893 + outSlope: 3.7396832 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4666667 + value: 0.31750146 + inSlope: 0.43757555 + outSlope: 0.42378485 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.37717822 + inSlope: -0.04522839 + outSlope: -0.04530238 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.29374042 + inSlope: -0.13455454 + outSlope: -0.13455454 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -2.0015738 + inSlope: 2.0283828 + outSlope: 2.0283828 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -1.6273988 + inSlope: -0.462293 + outSlope: -0.46219185 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -3.6891873 + inSlope: -32.384243 + outSlope: -30.700563 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -8.756696 + inSlope: -105.46011 + outSlope: -129.01907 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -77.36764 + inSlope: -898.8227 + outSlope: -794.99524 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -137.09962 + inSlope: 25.260902 + outSlope: 25.133974 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -130.40729 + inSlope: 11.843034 + outSlope: 11.9781885 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -88.04435 + inSlope: 244.69357 + outSlope: 276.85358 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: -67.50441 + inSlope: 330.77994 + outSlope: 330.77994 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: -20.054207 + inSlope: 183.36566 + outSlope: 168.5078 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: -7.056071 + inSlope: 27.347258 + outSlope: 25.6424 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: -3.8332343 + inSlope: 8.625801 + outSlope: 8.328468 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4666667 + value: -1.920441 + inSlope: 1.6133032 + outSlope: 1.6063905 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: -1.7009013 + inSlope: -0.17467785 + outSlope: -0.17471755 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: -2.0015733 + inSlope: -0.43911898 + outSlope: -0.43911898 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 8.0291815 + inSlope: -5.9446187 + outSlope: -5.9446187 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 8.744217 + inSlope: 20.001295 + outSlope: 20.00171 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 22.853636 + inSlope: 140.70634 + outSlope: 140.59433 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 48.586716 + inSlope: 79.63347 + outSlope: 79.63349 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 58.38254 + inSlope: 44.345116 + outSlope: 44.16533 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 68.55048 + inSlope: -5.174402 + outSlope: -5.1724315 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 63.895138 + inSlope: -14.833979 + outSlope: -14.816776 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 56.704548 + inSlope: -164.50203 + outSlope: -164.50203 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: 37.102623 + inSlope: -173.19003 + outSlope: -172.96042 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9000001 + value: 21.306654 + inSlope: -48.05802 + outSlope: -48.041676 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: 11.976678 + inSlope: -14.68652 + outSlope: -14.685159 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7333336 + value: 7.7513037 + inSlope: -1.638974 + outSlope: -1.6389987 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 8.029198 + inSlope: 1.3830115 + outSlope: 1.3830115 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2/mixamorig:RightHandIndex3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.063428536 + inSlope: 0.092663385 + outSlope: 0.092663385 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.07532328 + inSlope: -0.37573543 + outSlope: -0.37095705 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.54596186 + inSlope: -8.944752 + outSlope: -9.3291855 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -3.2903428 + inSlope: -17.982119 + outSlope: -17.982124 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -5.8565793 + inSlope: -17.376532 + outSlope: -19.859606 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -11.30873 + inSlope: 4.047927 + outSlope: 4.0804505 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: -8.246584 + inSlope: 7.3982096 + outSlope: 7.7339725 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: -5.2978983 + inSlope: 43.766804 + outSlope: 43.766804 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: -1.6286956 + inSlope: 16.022272 + outSlope: 14.625333 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9000001 + value: -0.47015396 + inSlope: 2.0802643 + outSlope: 1.9488544 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: -0.1425581 + inSlope: 0.33274657 + outSlope: 0.31488585 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7333336 + value: -0.05906854 + inSlope: 0.02464333 + outSlope: 0.024166306 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: -0.06341746 + inSlope: -0.022568045 + outSlope: -0.022568045 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2/mixamorig:RightHandIndex3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.90358764 + inSlope: 0.67692244 + outSlope: 0.67692244 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.9852794 + inSlope: -2.2979116 + outSlope: -2.2963433 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -2.7006724 + inSlope: -19.817066 + outSlope: -20.108347 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -7.281752 + inSlope: -23.035141 + outSlope: -23.035149 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -10.4628315 + inSlope: -20.085728 + outSlope: -22.546045 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -16.531767 + inSlope: 4.3601856 + outSlope: 4.392591 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: -13.188514 + inSlope: 8.297071 + outSlope: 8.630875 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: -9.800802 + inSlope: 54.060677 + outSlope: 54.060677 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: -4.850656 + inSlope: 28.456228 + outSlope: 27.27373 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9000001 + value: -2.4990256 + inSlope: 6.0892124 + outSlope: 6.0101542 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: -1.3589305 + inSlope: 1.7072859 + outSlope: 1.700723 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7333336 + value: -0.8719237 + inSlope: 0.1867152 + outSlope: 0.1866127 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: -0.9035937 + inSlope: -0.15776034 + outSlope: -0.15776034 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2/mixamorig:RightHandIndex3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 14.514249 + inSlope: -13.831036 + outSlope: -13.831036 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 15.380194 + inSlope: 37.88691 + outSlope: 37.888466 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 18.534134 + inSlope: 32.840878 + outSlope: 32.8402 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 29.281809 + inSlope: 105.65222 + outSlope: 105.68862 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 45.296856 + inSlope: 215.89056 + outSlope: 215.89056 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 63.78224 + inSlope: 114.296234 + outSlope: 113.25589 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 73.247406 + inSlope: 49.70326 + outSlope: 49.70324 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 80.04672 + inSlope: 6.1968374 + outSlope: 6.563418 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 81.09688 + inSlope: -2.2727973 + outSlope: 0.9922019 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 80.79597 + inSlope: -0.18711075 + outSlope: -0.32798758 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 81.63569 + inSlope: 2.4295802 + outSlope: 2.3536494 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: 80.92317 + inSlope: -49.080395 + outSlope: -49.080395 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: 72.91816 + inSlope: -13.229772 + outSlope: -13.229772 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 73.62344 + inSlope: -116.264885 + outSlope: -114.209656 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 61.125996 + inSlope: -198.52913 + outSlope: -198.8027 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: 48.10257 + inSlope: -73.151535 + outSlope: -73.140175 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: 42.35794 + inSlope: -139.39261 + outSlope: -139.39235 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: 29.422503 + inSlope: -205.9709 + outSlope: -205.97058 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: 18.85694 + inSlope: -70.01894 + outSlope: -69.99465 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: 24.249079 + inSlope: 57.02496 + outSlope: 57.02222 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2333333 + value: 28.020199 + inSlope: -21.529585 + outSlope: -21.529554 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: 23.89276 + inSlope: -37.67536 + outSlope: -37.67651 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5333335 + value: 21.370893 + inSlope: -0.88984895 + outSlope: -0.8898637 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7333336 + value: 17.326689 + inSlope: -4.153718 + outSlope: -4.15364 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0666668 + value: 16.710968 + inSlope: 2.5079048 + outSlope: 2.507935 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3666668 + value: 18.877338 + inSlope: 0.12203219 + outSlope: 0.12203219 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6666667 + value: 18.250925 + inSlope: -8.386632 + outSlope: -8.386553 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 14.515379 + inSlope: -39.678764 + outSlope: -39.678764 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -3.8491051 + inSlope: 0.21799384 + outSlope: 0.21799384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -3.90114 + inSlope: -1.5315251 + outSlope: -1.5169786 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -4.002279 + inSlope: -1.9929456 + outSlope: -2.0024838 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -4.9526997 + inSlope: -11.356388 + outSlope: -11.125886 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -7.27216 + inSlope: -55.261547 + outSlope: -55.261547 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -14.56115 + inSlope: -96.282555 + outSlope: -108.430824 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -26.340757 + inSlope: -136.1561 + outSlope: -136.1566 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -62.123177 + inSlope: -105.72362 + outSlope: -104.25526 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -82.13243 + inSlope: -456.82816 + outSlope: -458.81958 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -105.87669 + inSlope: -85.653465 + outSlope: -85.60911 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -96.05834 + inSlope: 72.98811 + outSlope: 73.21221 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: -64.577385 + inSlope: 439.09317 + outSlope: 439.09317 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: -25.264427 + inSlope: 26.640303 + outSlope: 26.640303 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: -26.49492 + inSlope: 188.38914 + outSlope: 213.25827 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: -12.053635 + inSlope: 103.92646 + outSlope: 97.877174 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: -7.57555 + inSlope: 9.716146 + outSlope: 10.094557 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: -6.4114895 + inSlope: 28.69314 + outSlope: 28.693089 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: -4.2947717 + inSlope: 21.61775 + outSlope: 21.617788 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: -3.4915586 + inSlope: 4.0812745 + outSlope: 4.006841 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: -3.944343 + inSlope: -7.55671 + outSlope: -7.548035 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2333333 + value: -4.811216 + inSlope: -0.020642301 + outSlope: -0.020642271 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: -4.440308 + inSlope: 3.6828988 + outSlope: 3.6917572 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5333335 + value: -4.2251897 + inSlope: -0.20083292 + outSlope: -0.20117994 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7333336 + value: -3.908725 + inSlope: 0.5921637 + outSlope: 0.59342706 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0666668 + value: -3.9397879 + inSlope: -0.08817389 + outSlope: -0.088052765 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3666668 + value: -4.0046883 + inSlope: -0.5831529 + outSlope: -0.5831529 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6666667 + value: -3.9646528 + inSlope: 0.3929878 + outSlope: 0.39704707 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: -3.8515482 + inSlope: 1.6424762 + outSlope: 1.6424762 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.3662776 + inSlope: 2.0628996 + outSlope: 2.0628996 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.3511085 + inSlope: -3.4336553 + outSlope: -3.4241846 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.051951755 + inSlope: -2.1767988 + outSlope: -2.1860359 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.6668397 + inSlope: -13.0418 + outSlope: -12.821038 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -3.533392 + inSlope: -62.715267 + outSlope: -62.715267 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -11.542863 + inSlope: -100.76472 + outSlope: -112.888374 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -23.186584 + inSlope: -129.69775 + outSlope: -129.69826 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -57.348343 + inSlope: -104.97435 + outSlope: -103.5059 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -78.59116 + inSlope: -475.8849 + outSlope: -477.87604 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -103.67348 + inSlope: -105.62659 + outSlope: -105.581795 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -95.188225 + inSlope: 71.60979 + outSlope: 71.834114 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: -62.362354 + inSlope: 451.8156 + outSlope: 451.8156 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: -22.512642 + inSlope: 24.859488 + outSlope: 24.859488 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: -23.936157 + inSlope: 178.8921 + outSlope: 203.79485 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: -10.384708 + inSlope: 94.030014 + outSlope: 87.931915 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: -4.8327413 + inSlope: 29.576805 + outSlope: 29.901745 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: -3.404424 + inSlope: 15.410625 + outSlope: 15.410598 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: -2.4166238 + inSlope: 12.76326 + outSlope: 12.763283 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: -1.6526861 + inSlope: 3.9842215 + outSlope: 3.9088764 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: -1.7281327 + inSlope: 4.6633167 + outSlope: 4.6287932 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2333333 + value: -0.5789865 + inSlope: 7.4436455 + outSlope: 7.443635 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: -0.23280093 + inSlope: 0.86320686 + outSlope: 0.8788512 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5333335 + value: -0.12119511 + inSlope: 0.83346426 + outSlope: 0.83350563 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7333336 + value: -0.05273541 + inSlope: -0.8573757 + outSlope: -0.8580231 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0666668 + value: 0.18164928 + inSlope: -0.29190233 + outSlope: -0.29183468 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3666668 + value: -0.12813775 + inSlope: 1.7212887 + outSlope: 1.7212887 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6666667 + value: -0.09783502 + inSlope: 0.7810542 + outSlope: 0.7837076 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 0.37376076 + inSlope: 2.7802992 + outSlope: 2.7802992 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 17.381294 + inSlope: -16.035036 + outSlope: -16.035036 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 16.790157 + inSlope: 50.712936 + outSlope: 50.72903 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 29.853018 + inSlope: 218.72711 + outSlope: 218.72704 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 54.817566 + inSlope: 235.91898 + outSlope: 235.06343 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 75.97971 + inSlope: 77.2646 + outSlope: 70.5548 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 83.23467 + inSlope: -19.551804 + outSlope: -22.321417 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: 80.678055 + inSlope: 10.498175 + outSlope: 10.86899 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 83.492256 + inSlope: 1.722336 + outSlope: 3.596877 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 81.927216 + inSlope: -129.20651 + outSlope: -123.217064 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: 67.94345 + inSlope: -255.08379 + outSlope: -255.08287 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: 53.311756 + inSlope: -157.72966 + outSlope: -157.70403 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: 40.030228 + inSlope: -81.54534 + outSlope: -81.34825 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3666668 + value: 19.887617 + inSlope: -24.409174 + outSlope: -24.400074 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0333335 + value: 15.623903 + inSlope: -0.56614774 + outSlope: -0.5661019 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 17.381258 + inSlope: 4.286213 + outSlope: 4.286213 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1.2687609 + inSlope: 0.55941683 + outSlope: 0.55941683 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 1.2898232 + inSlope: -2.020278 + outSlope: -1.877221 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.60014266 + inSlope: -19.393135 + outSlope: -19.39313 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -3.1248834 + inSlope: -85.9866 + outSlope: -95.4453 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -19.148296 + inSlope: -220.41463 + outSlope: -312.09967 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -102.85899 + inSlope: -237.2247 + outSlope: -206.45844 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: -129.2544 + inSlope: 78.61044 + outSlope: 74.21785 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: -95.707855 + inSlope: 169.80533 + outSlope: 166.21349 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: -43.770676 + inSlope: 622.4701 + outSlope: 706.63385 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: -9.161262 + inSlope: 151.2771 + outSlope: 151.27669 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: -2.7276835 + inSlope: 35.85973 + outSlope: 32.6172 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: -0.3744325 + inSlope: 9.105884 + outSlope: 7.5161066 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3666668 + value: 1.1697795 + inSlope: 0.9330273 + outSlope: 0.8770747 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0333335 + value: 1.3289793 + inSlope: 0.018334506 + outSlope: 0.018271675 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 1.2687708 + inSlope: -0.16146106 + outSlope: -0.16146106 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -1.9366149 + inSlope: 1.938889 + outSlope: 1.938889 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -1.864877 + inSlope: -6.2770033 + outSlope: -6.1951094 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -3.5955338 + inSlope: -35.066574 + outSlope: -35.066563 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -8.993851 + inSlope: -100.33582 + outSlope: -109.69195 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -26.29838 + inSlope: -225.46942 + outSlope: -317.13425 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -110.83754 + inSlope: -239.27126 + outSlope: -208.50548 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: -137.47952 + inSlope: 79.48375 + outSlope: 75.09157 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: -103.638336 + inSlope: 170.86124 + outSlope: 167.26955 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: -51.33831 + inSlope: 631.85815 + outSlope: 716.0138 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: -15.823589 + inSlope: 166.55243 + outSlope: 166.55272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: -8.503343 + inSlope: 45.76089 + outSlope: 42.61805 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: -5.2903757 + inSlope: 14.712089 + outSlope: 13.316596 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3666668 + value: -2.2462926 + inSlope: 2.9984252 + outSlope: 2.9673405 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0333335 + value: -1.7246354 + inSlope: 0.067682855 + outSlope: 0.06769149 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: -1.9366306 + inSlope: -0.5254317 + outSlope: -0.5254317 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 18.373259 + inSlope: -3.7200243 + outSlope: -3.7200243 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 21.999374 + inSlope: 61.368645 + outSlope: 61.40305 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 34.883945 + inSlope: 200.1621 + outSlope: 200.16203 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 55.458958 + inSlope: 166.89774 + outSlope: 166.50937 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 65.624054 + inSlope: 3.8019555 + outSlope: 3.8012698 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 67.4772 + inSlope: 20.194704 + outSlope: 20.106249 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 72.33284 + inSlope: -3.5599928 + outSlope: -3.5588212 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 70.58968 + inSlope: -1.5774744 + outSlope: -1.5772244 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 66.29764 + inSlope: -139.76117 + outSlope: -139.49191 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: 52.34345 + inSlope: -231.52312 + outSlope: -231.52353 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: 39.530926 + inSlope: -127.475685 + outSlope: -127.417984 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: 30.402039 + inSlope: -51.55678 + outSlope: -51.49831 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: 21.051123 + inSlope: -10.050565 + outSlope: -10.049763 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2333336 + value: 18.798767 + inSlope: -4.013195 + outSlope: -4.0132413 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 18.373255 + inSlope: 1.1855037 + outSlope: 1.1855037 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2/mixamorig:RightHandMiddle3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.71187115 + inSlope: 0.15443392 + outSlope: 0.15443392 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.8817422 + inSlope: -3.6445463 + outSlope: -3.380651 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -1.8390706 + inSlope: -23.940434 + outSlope: -23.940426 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -5.5539727 + inSlope: -62.000797 + outSlope: -66.43357 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -10.11278 + inSlope: -2.497973 + outSlope: -2.5071433 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -11.428499 + inSlope: -16.683628 + outSlope: -18.04577 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -16.315323 + inSlope: 4.5195007 + outSlope: 4.539601 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: -14.254638 + inSlope: 1.664296 + outSlope: 1.6763016 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: -10.565406 + inSlope: 79.83371 + outSlope: 84.6595 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: -4.685948 + inSlope: 50.706863 + outSlope: 50.70695 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: -2.3662488 + inSlope: 15.105175 + outSlope: 14.111762 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: -1.4333438 + inSlope: 3.9364076 + outSlope: 3.4134731 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: -0.8337687 + inSlope: 0.4727914 + outSlope: 0.4558703 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2333336 + value: -0.7299545 + inSlope: 0.16634928 + outSlope: 0.16821176 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: -0.71187705 + inSlope: -0.050280698 + outSlope: -0.050280698 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2/mixamorig:RightHandMiddle3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -2.2768664 + inSlope: 0.48295087 + outSlope: 0.48295087 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -2.7594333 + inSlope: -8.686218 + outSlope: -8.501488 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -4.7323256 + inSlope: -38.337395 + outSlope: -38.337383 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -9.858308 + inSlope: -72.65071 + outSlope: -77.02992 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -15.061842 + inSlope: -2.7370114 + outSlope: -2.746153 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -16.493933 + inSlope: -17.95295 + outSlope: -19.311811 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -21.687529 + inSlope: 4.746503 + outSlope: 4.7666774 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: -19.51612 + inSlope: 1.7641171 + outSlope: 1.7763515 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: -15.556785 + inSlope: 88.62643 + outSlope: 93.42521 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: -8.787956 + inSlope: 66.07138 + outSlope: 66.071495 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: -5.59647 + inSlope: 24.277233 + outSlope: 23.391354 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: -3.9882073 + inSlope: 7.957932 + outSlope: 7.554587 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: -2.630995 + inSlope: 1.3383594 + outSlope: 1.3279113 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2333336 + value: -2.332337 + inSlope: 0.5208634 + outSlope: 0.521934 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: -2.27686 + inSlope: -0.15418854 + outSlope: -0.15418854 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2/mixamorig:RightHandMiddle3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 25.834917 + inSlope: -10.725101 + outSlope: -10.725101 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 28.508148 + inSlope: 62.146908 + outSlope: 62.153316 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 33.452003 + inSlope: 48.586803 + outSlope: 48.58618 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 45.873116 + inSlope: 106.00897 + outSlope: 106.05627 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 61.11567 + inSlope: 206.85489 + outSlope: 206.85489 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 78.70925 + inSlope: 82.45626 + outSlope: 66.03787 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 83.072014 + inSlope: 5.9212203 + outSlope: 5.9212184 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 83.23241 + inSlope: 20.811674 + outSlope: 22.681963 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 84.56581 + inSlope: 2.776108 + outSlope: 2.696685 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 82.01146 + inSlope: -4.9324026 + outSlope: -4.9324026 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 83.97064 + inSlope: 6.941527 + outSlope: 6.466141 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: 82.44609 + inSlope: -109.12137 + outSlope: -109.12137 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: 70.35198 + inSlope: 6.931172 + outSlope: 6.931172 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 74.189316 + inSlope: -129.06567 + outSlope: -127.3177 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 60.25195 + inSlope: -199.18866 + outSlope: -199.29778 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: 50.420364 + inSlope: -45.42937 + outSlope: -45.43469 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: 44.9323 + inSlope: -157.64314 + outSlope: -157.64287 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: 29.804914 + inSlope: -242.3636 + outSlope: -242.36336 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: 17.651722 + inSlope: -65.15946 + outSlope: -65.147575 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: 25.039501 + inSlope: 114.35298 + outSlope: 114.28463 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: 37.867718 + inSlope: 17.237635 + outSlope: 17.238306 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: 37.399834 + inSlope: -24.926413 + outSlope: -24.926731 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5000002 + value: 31.358059 + inSlope: 1.63758 + outSlope: 1.6375366 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6000001 + value: 30.92663 + inSlope: -37.34285 + outSlope: -37.34285 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7 + value: 27.098034 + inSlope: -10.981189 + outSlope: -10.980943 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0000002 + value: 26.389025 + inSlope: -7.447524 + outSlope: -7.4475775 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2333336 + value: 28.945745 + inSlope: 27.647608 + outSlope: 27.648409 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4333334 + value: 29.030909 + inSlope: 1.1346542 + outSlope: 1.1346529 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6333334 + value: 27.837595 + inSlope: -5.1545606 + outSlope: -5.15468 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 25.834263 + inSlope: 5.5202837 + outSlope: 5.5202837 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -2.0067298 + inSlope: 1.1134118 + outSlope: 1.1134118 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -2.274734 + inSlope: -5.838214 + outSlope: -5.7943864 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -2.3817112 + inSlope: 0.9584784 + outSlope: 0.88708705 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -3.172162 + inSlope: -16.656368 + outSlope: -16.144033 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -8.275208 + inSlope: -147.83243 + outSlope: -147.83243 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -35.797455 + inSlope: -604.4603 + outSlope: -719.40967 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -81.183266 + inSlope: -158.6091 + outSlope: -158.60905 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -115.8178 + inSlope: 255.06625 + outSlope: 227.44997 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -95.32458 + inSlope: -87.568596 + outSlope: -88.08332 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -133.54846 + inSlope: -28.488914 + outSlope: -28.488914 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -112.161606 + inSlope: 212.34554 + outSlope: 214.9046 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: -44.710224 + inSlope: 477.3444 + outSlope: 477.3444 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: -13.491941 + inSlope: -23.465124 + outSlope: -23.465124 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: -21.605095 + inSlope: 171.39479 + outSlope: 197.5117 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: -8.12646 + inSlope: 83.10168 + outSlope: 78.392784 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: -5.810501 + inSlope: -3.0638115 + outSlope: -2.9422789 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: -4.8841944 + inSlope: 34.78382 + outSlope: 34.78376 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: -2.1261172 + inSlope: 26.907019 + outSlope: 26.907066 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: -1.3332152 + inSlope: 0.9617123 + outSlope: 0.9171711 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: -2.2060492 + inSlope: -16.163776 + outSlope: -16.217583 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: -4.6562476 + inSlope: -2.8526456 + outSlope: -2.845167 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: -4.423016 + inSlope: 5.9521065 + outSlope: 5.9402447 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5000002 + value: -3.2135391 + inSlope: 0.5505521 + outSlope: 0.5513769 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6000001 + value: -3.046049 + inSlope: 6.755168 + outSlope: 6.755168 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7 + value: -2.454344 + inSlope: 1.5005007 + outSlope: 1.4965644 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0000002 + value: -2.312054 + inSlope: 0.4830572 + outSlope: 0.4835486 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2333336 + value: -2.7224653 + inSlope: -3.8869069 + outSlope: -3.8815 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4333334 + value: -2.803017 + inSlope: -0.30887276 + outSlope: -0.3088724 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6333334 + value: -2.6827068 + inSlope: 0.7161425 + outSlope: 0.7162739 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: -2.0114083 + inSlope: 5.356562 + outSlope: 5.356562 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -2.2790127 + inSlope: -0.70368284 + outSlope: -0.70368284 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -2.359946 + inSlope: -3.3530884 + outSlope: -3.3007405 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -3.25836 + inSlope: -12.855891 + outSlope: -12.892843 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -5.5919623 + inSlope: -20.131815 + outSlope: -19.634008 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -9.114533 + inSlope: -121.84335 + outSlope: -121.84335 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -35.200756 + inSlope: -604.476 + outSlope: -719.42566 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -82.04987 + inSlope: -173.20775 + outSlope: -173.20769 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -119.295654 + inSlope: 240.4852 + outSlope: 212.86287 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -99.67781 + inSlope: -97.093056 + outSlope: -97.60755 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -138.25717 + inSlope: -28.388206 + outSlope: -28.388206 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -116.557335 + inSlope: 218.56197 + outSlope: 221.12047 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: -47.894733 + inSlope: 489.28003 + outSlope: 489.28003 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: -15.230848 + inSlope: -11.648298 + outSlope: -11.648298 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: -21.490355 + inSlope: 170.7917 + outSlope: 196.91046 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: -8.687353 + inSlope: 74.58157 + outSlope: 69.83017 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: -5.080886 + inSlope: 20.240902 + outSlope: 20.324684 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: -3.7089274 + inSlope: 18.263597 + outSlope: 18.263565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: -2.882724 + inSlope: 2.7570188 + outSlope: 2.7570238 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: -2.6057289 + inSlope: 6.561623 + outSlope: 6.5423703 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: -1.8718833 + inSlope: 5.5328636 + outSlope: 5.181636 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: -1.5142254 + inSlope: -1.7442808 + outSlope: -1.7357445 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: -1.607857 + inSlope: 0.39671448 + outSlope: 0.37807113 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5000002 + value: -1.5460913 + inSlope: -1.078681 + outSlope: -1.0786568 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6000001 + value: -1.6867809 + inSlope: -1.5028968 + outSlope: -1.5028968 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7 + value: -1.7706732 + inSlope: -0.090254635 + outSlope: -0.100732975 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0000002 + value: -1.8677971 + inSlope: 0.15227547 + outSlope: 0.15321083 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2333336 + value: -1.72325 + inSlope: 0.17439109 + outSlope: 0.18629032 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4333334 + value: -1.6291519 + inSlope: 0.64775944 + outSlope: 0.64775866 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6333334 + value: -1.5715803 + inSlope: -0.043010104 + outSlope: -0.0425484 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: -2.281725 + inSlope: -10.171378 + outSlope: -10.171378 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 17.380018 + inSlope: 0.45129776 + outSlope: 0.45129776 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 18.163534 + inSlope: 20.205952 + outSlope: 20.20643 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 25.15664 + inSlope: 130.9371 + outSlope: 130.88097 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 46.02642 + inSlope: 156.07193 + outSlope: 156.07196 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 64.23045 + inSlope: 78.528564 + outSlope: 78.2364 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 70.24472 + inSlope: 9.896852 + outSlope: 9.89358 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 71.38959 + inSlope: 7.156415 + outSlope: 7.1517925 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: 70.76787 + inSlope: -3.0557244 + outSlope: -3.0544293 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 67.318794 + inSlope: -39.818703 + outSlope: -39.741432 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 64.24922 + inSlope: -52.236317 + outSlope: -52.20287 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 55.97927 + inSlope: -199.27226 + outSlope: -199.34848 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: 34.7382 + inSlope: -159.151 + outSlope: -158.95813 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9000001 + value: 21.825853 + inSlope: -38.8249 + outSlope: -38.816555 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: 15.54406 + inSlope: 3.3759313 + outSlope: 3.3758602 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5666668 + value: 13.9122925 + inSlope: 2.4335957 + outSlope: 2.4335551 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6666667 + value: 13.281578 + inSlope: -2.5973306 + outSlope: -2.5974061 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 17.386108 + inSlope: 70.89609 + outSlope: 70.89609 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.2897439 + inSlope: -0.016573906 + outSlope: -0.016573906 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.31923398 + inSlope: -0.807957 + outSlope: -0.796363 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.6544453 + inSlope: -8.536959 + outSlope: -8.871552 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -2.808938 + inSlope: -31.944954 + outSlope: -31.944962 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -8.400401 + inSlope: -50.20557 + outSlope: -54.560013 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -12.778144 + inSlope: -9.936348 + outSlope: -9.994922 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -13.960104 + inSlope: -8.145896 + outSlope: -8.219545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: -13.299381 + inSlope: 3.0813973 + outSlope: 3.097974 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -10.337316 + inSlope: 25.428165 + outSlope: 26.885513 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: -8.410636 + inSlope: 26.670422 + outSlope: 27.271091 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: -5.0520988 + inSlope: 52.18937 + outSlope: 49.051353 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: -1.3731871 + inSlope: 13.217093 + outSlope: 12.13775 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9000001 + value: -0.47781584 + inSlope: 1.758675 + outSlope: 1.6705536 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: -0.22653468 + inSlope: -0.1101415 + outSlope: -0.11034056 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5666668 + value: -0.17697366 + inSlope: -0.07026934 + outSlope: -0.07186285 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6666667 + value: -0.15945016 + inSlope: 0.06777923 + outSlope: 0.06994357 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: -0.28996682 + inSlope: -2.8807275 + outSlope: -2.8807275 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -2.002781 + inSlope: -0.055412292 + outSlope: -0.055412292 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -2.0993264 + inSlope: -2.5168433 + outSlope: -2.5101683 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -3.0058627 + inSlope: -18.574575 + outSlope: -18.831518 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -6.645725 + inSlope: -41.935078 + outSlope: -41.935085 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -13.372722 + inSlope: -54.940678 + outSlope: -59.27841 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -18.113308 + inSlope: -10.535947 + outSlope: -10.5944 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -19.364643 + inSlope: -8.581254 + outSlope: -8.6545925 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: -18.666206 + inSlope: 3.2666771 + outSlope: 3.2831967 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -15.495865 + inSlope: 27.829065 + outSlope: 29.280846 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: -13.384106 + inSlope: 29.82959 + outSlope: 30.42644 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: -9.520893 + inSlope: 64.65328 + outSlope: 61.5922 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: -4.4405303 + inSlope: 24.855001 + outSlope: 23.968765 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9000001 + value: -2.5629864 + inSlope: 4.9622164 + outSlope: 4.907666 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: -1.7797426 + inSlope: -0.40707237 + outSlope: -0.40721673 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5666668 + value: -1.5848575 + inSlope: -0.28873825 + outSlope: -0.28946403 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6666667 + value: -1.5102856 + inSlope: 0.30499873 + outSlope: 0.30592713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: -2.0035293 + inSlope: -8.859677 + outSlope: -8.859677 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 16.482224 + inSlope: 0.44934082 + outSlope: 0.44934082 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 17.265457 + inSlope: 20.203857 + outSlope: 20.204313 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 24.259007 + inSlope: 130.95142 + outSlope: 130.89615 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 45.133812 + inSlope: 156.18385 + outSlope: 156.18388 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 63.36039 + inSlope: 78.72305 + outSlope: 78.4583 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 69.36714 + inSlope: 9.63524 + outSlope: 9.632262 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 70.43535 + inSlope: 6.962585 + outSlope: 6.958922 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: 69.829216 + inSlope: -2.8170006 + outSlope: -2.8165064 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 66.412476 + inSlope: -39.749237 + outSlope: -39.68032 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 63.35582 + inSlope: -52.08617 + outSlope: -52.056614 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 55.089077 + inSlope: -199.25664 + outSlope: -199.32158 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: 33.847813 + inSlope: -159.13338 + outSlope: -158.93822 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9000001 + value: 20.936499 + inSlope: -38.7824 + outSlope: -38.774174 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: 14.648357 + inSlope: 3.3562093 + outSlope: 3.3562284 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5666668 + value: 13.013084 + inSlope: 2.4310365 + outSlope: 2.4309957 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6666667 + value: 12.38334 + inSlope: -2.594961 + outSlope: -2.594681 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 16.488382 + inSlope: 70.90377 + outSlope: 70.90377 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2/mixamorig:RightHandPinky3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.27423167 + inSlope: -0.015367985 + outSlope: -0.015367985 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.3019539 + inSlope: -0.7627666 + outSlope: -0.75171584 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.62001014 + inSlope: -8.146369 + outSlope: -8.4690895 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -2.6790578 + inSlope: -30.404064 + outSlope: -30.404072 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -7.9576693 + inSlope: -46.633255 + outSlope: -50.537384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -11.9841175 + inSlope: -8.784457 + outSlope: -8.832983 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -12.981035 + inSlope: -7.092827 + outSlope: -7.1520786 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: -12.401409 + inSlope: 2.5680153 + outSlope: 2.5801287 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -9.728781 + inSlope: 23.445147 + outSlope: 24.741835 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: -7.9553523 + inSlope: 24.775064 + outSlope: 25.315205 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: -4.8091545 + inSlope: 49.431396 + outSlope: 46.50546 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: -1.3072572 + inSlope: 12.639954 + outSlope: 11.600304 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9000001 + value: -0.45245326 + inSlope: 1.6646973 + outSlope: 1.5792813 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: -0.21497633 + inSlope: -0.10258661 + outSlope: -0.10291084 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5666668 + value: -0.16865459 + inSlope: -0.06517546 + outSlope: -0.06679408 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6666667 + value: -0.15240909 + inSlope: 0.06201792 + outSlope: 0.06464152 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: -0.2744306 + inSlope: -2.7194285 + outSlope: -2.7194285 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2/mixamorig:RightHandPinky3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -1.8931819 + inSlope: -0.054775 + outSlope: -0.054775 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -1.9887401 + inSlope: -2.4911306 + outSlope: -2.4847088 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -2.8842547 + inSlope: -18.28147 + outSlope: -18.524487 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -6.4409194 + inSlope: -40.454025 + outSlope: -40.454033 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -12.861033 + inSlope: -51.38248 + outSlope: -55.269547 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -17.249844 + inSlope: -9.366818 + outSlope: -9.415135 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -18.311323 + inSlope: -7.5146723 + outSlope: -7.5738697 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: -17.695019 + inSlope: 2.7383034 + outSlope: 2.7504168 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -14.816341 + inSlope: 25.84323 + outSlope: 27.133821 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: -12.858418 + inSlope: 27.931046 + outSlope: 28.46714 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: -9.206337 + inSlope: 61.949448 + outSlope: 59.102997 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: -4.294456 + inSlope: 24.376123 + outSlope: 23.535595 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9000001 + value: -2.4483476 + inSlope: 4.8998775 + outSlope: 4.8486195 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: -1.6724039 + inSlope: -0.4010523 + outSlope: -0.40116763 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5666668 + value: -1.4786531 + inSlope: -0.28626767 + outSlope: -0.28701752 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6666667 + value: -1.4047366 + inSlope: 0.30269918 + outSlope: 0.3034354 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: -1.893932 + inSlope: -8.768207 + outSlope: -8.768207 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2/mixamorig:RightHandPinky3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -12.637782 + inSlope: 2.106452 + outSlope: 2.106452 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -6.9626822 + inSlope: 11.611659 + outSlope: 11.609855 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -8.708431 + inSlope: -35.68287 + outSlope: -35.67656 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: -12.565297 + inSlope: 3.6745408 + outSlope: 3.673016 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: -11.034417 + inSlope: -6.1505613 + outSlope: -6.1512523 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: -14.20353 + inSlope: -17.584684 + outSlope: -17.590405 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: -14.107572 + inSlope: 4.1886487 + outSlope: 4.1903405 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3666668 + value: -13.824351 + inSlope: -5.256854 + outSlope: -5.2726064 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9 + value: -13.300799 + inSlope: 3.3802004 + outSlope: 3.379017 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: -12.636412 + inSlope: -1.5842246 + outSlope: -1.5842246 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: Armature.001/mixamorig:Hips/mixamorig:LeftUpLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -14.487514 + inSlope: -0.94538206 + outSlope: -0.94538206 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -15.810703 + inSlope: -0.95914835 + outSlope: -0.99834436 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -16.926182 + inSlope: -6.9292827 + outSlope: -6.987248 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: -17.048538 + inSlope: 2.2657015 + outSlope: 2.2668452 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: -16.66235 + inSlope: -0.1967525 + outSlope: -0.1832853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: -16.255142 + inSlope: 3.3278763 + outSlope: 3.29219 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: -16.511162 + inSlope: -2.4607313 + outSlope: -2.4579625 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3666668 + value: -16.056477 + inSlope: 5.812112 + outSlope: 5.8015757 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9 + value: -15.092008 + inSlope: 0.7382137 + outSlope: 0.7429917 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: -14.487764 + inSlope: -1.2322425 + outSlope: -1.2322425 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: Armature.001/mixamorig:Hips/mixamorig:LeftUpLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 174.30878 + inSlope: -2.7642822 + outSlope: -2.7642822 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 173.33115 + inSlope: 3.7371824 + outSlope: 3.7512205 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 173.30508 + inSlope: -6.6818233 + outSlope: -6.743317 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: 173.75858 + inSlope: 1.0643007 + outSlope: 1.0688779 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: 173.32642 + inSlope: 4.4114676 + outSlope: 4.4082637 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: 174.77763 + inSlope: 7.55565 + outSlope: 7.548293 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: 173.80055 + inSlope: -7.115157 + outSlope: -7.1150217 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3666668 + value: 173.82507 + inSlope: 4.2272954 + outSlope: 4.209481 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9 + value: 175.10916 + inSlope: 1.4606668 + outSlope: 1.462097 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 174.30879 + inSlope: -0.28650916 + outSlope: -0.28650916 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: Armature.001/mixamorig:Hips/mixamorig:LeftUpLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -25.936102 + inSlope: -2.9366646 + outSlope: -2.9366646 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -23.01698 + inSlope: 14.055011 + outSlope: 14.043616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -20.924309 + inSlope: -1.2388065 + outSlope: -1.2436868 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -24.72599 + inSlope: -59.113144 + outSlope: -59.079933 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -30.964128 + inSlope: -4.4299273 + outSlope: -4.419841 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666668 + value: -30.00073 + inSlope: -1.1113164 + outSlope: -1.1077139 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: -29.516018 + inSlope: -7.3886166 + outSlope: -7.3886113 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: -27.564674 + inSlope: 3.5964415 + outSlope: 3.5608454 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.266667 + value: -25.157303 + inSlope: 6.177651 + outSlope: 6.2368784 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5666668 + value: -23.761694 + inSlope: 2.3908048 + outSlope: 2.3972142 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0333335 + value: -24.090101 + inSlope: -0.46653882 + outSlope: -0.45832843 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: -25.936113 + inSlope: -1.9940112 + outSlope: -1.9940112 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: Armature.001/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 3.6716206 + inSlope: 9.108238 + outSlope: 9.108238 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 8.328664 + inSlope: -2.8581028 + outSlope: -2.9485168 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 5.979926 + inSlope: 9.560177 + outSlope: 9.558299 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 7.619574 + inSlope: 17.041716 + outSlope: 17.206398 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 9.908676 + inSlope: 1.6564634 + outSlope: 1.6929623 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666668 + value: 7.544746 + inSlope: -9.543984 + outSlope: -9.545126 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: 3.7672048 + inSlope: -11.837569 + outSlope: -11.837562 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: -0.14095977 + inSlope: -12.072055 + outSlope: -12.092427 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.266667 + value: -0.9809879 + inSlope: 22.5773 + outSlope: 22.543343 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5666668 + value: 2.7740424 + inSlope: 4.687403 + outSlope: 4.6809955 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0333335 + value: 3.727534 + inSlope: 3.6882992 + outSlope: 3.6901124 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 3.6717153 + inSlope: -6.4295416 + outSlope: -6.4295416 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: Armature.001/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -11.223845 + inSlope: -3.679572 + outSlope: -3.679572 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -12.322114 + inSlope: 5.740705 + outSlope: 5.8076596 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -10.632584 + inSlope: -1.7487879 + outSlope: -1.7447664 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -11.3239975 + inSlope: -17.841284 + outSlope: -18.002882 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -16.745722 + inSlope: -17.302744 + outSlope: -17.322899 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666668 + value: -15.352799 + inSlope: 4.4935694 + outSlope: 4.4950657 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: -13.351852 + inSlope: 2.3848577 + outSlope: 2.384856 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: -8.897588 + inSlope: 11.486381 + outSlope: 11.507258 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.266667 + value: -7.7583876 + inSlope: -15.059766 + outSlope: -15.020345 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5666668 + value: -10.328717 + inSlope: -3.0888658 + outSlope: -3.081291 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0333335 + value: -10.850669 + inSlope: -2.8035305 + outSlope: -2.8056672 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: -11.223884 + inSlope: 5.313886 + outSlope: 5.313886 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: Armature.001/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 71.87741 + inSlope: 2.1567895 + outSlope: 2.1567895 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 70.97518 + inSlope: -6.3315578 + outSlope: -5.9214597 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 70.50712 + inSlope: -0.72458273 + outSlope: -0.77895045 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 73.50072 + inSlope: 8.481054 + outSlope: 8.496892 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: 72.45393 + inSlope: -3.989409 + outSlope: -4.010759 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 72.08962 + inSlope: 0.40380996 + outSlope: 0.412674 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: 72.19199 + inSlope: 0.6804658 + outSlope: 0.6893063 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: 72.20018 + inSlope: -3.8977435 + outSlope: -3.907012 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: 71.53958 + inSlope: -2.8706353 + outSlope: -2.877044 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2000003 + value: 71.87473 + inSlope: -1.3380715 + outSlope: -1.3339617 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 71.87561 + inSlope: 0.87265027 + outSlope: 0.87265027 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: Armature.001/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 31.033075 + inSlope: 12.658589 + outSlope: 12.658589 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 32.000088 + inSlope: -27.828205 + outSlope: -29.363281 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 27.550241 + inSlope: -51.733807 + outSlope: -51.68394 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 22.56783 + inSlope: -17.383759 + outSlope: -17.321356 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: 16.794523 + inSlope: -16.531992 + outSlope: -16.41593 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 17.35656 + inSlope: -7.826448 + outSlope: -7.8200545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: 17.420115 + inSlope: 48.882053 + outSlope: 48.875668 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: 27.974527 + inSlope: 14.745605 + outSlope: 14.756094 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: 30.028208 + inSlope: 3.0769436 + outSlope: 2.9730241 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2000003 + value: 30.413687 + inSlope: 4.5169034 + outSlope: 4.5398436 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 31.047232 + inSlope: -7.7072444 + outSlope: -7.7072444 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: Armature.001/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 31.48562 + inSlope: 13.541254 + outSlope: 13.541254 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 32.520523 + inSlope: -29.566086 + outSlope: -31.098864 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 29.941492 + inSlope: -10.887667 + outSlope: -10.843434 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 37.77994 + inSlope: 36.369217 + outSlope: 36.417732 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: 36.276432 + inSlope: -14.918956 + outSlope: -14.802609 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 32.836815 + inSlope: -18.296917 + outSlope: -18.290943 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: 28.531862 + inSlope: 5.985242 + outSlope: 5.97431 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: 28.634205 + inSlope: -10.163256 + outSlope: -10.151422 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: 30.383692 + inSlope: 3.893365 + outSlope: 3.790132 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2000003 + value: 30.79222 + inSlope: 4.9642243 + outSlope: 4.987117 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 31.489565 + inSlope: -8.807994 + outSlope: -8.807994 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: Armature.001/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 24.740946 + inSlope: -0.00029777992 + outSlope: -0.00029777992 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 25.165445 + inSlope: -0.7748899 + outSlope: -0.7748899 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: 24.662827 + inSlope: 0.5854423 + outSlope: 0.5854512 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 24.73396 + inSlope: 0.47028783 + outSlope: 0.47028783 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: Armature.001/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot/mixamorig:LeftToeBase + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1.0387539 + inSlope: 0.0000063497187 + outSlope: 0.0000063497187 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 1.0480994 + inSlope: -0.016990753 + outSlope: -0.016990753 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: 1.0370291 + inSlope: 0.012815265 + outSlope: 0.012896732 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 1.0386052 + inSlope: 0.010640324 + outSlope: 0.010640324 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: Armature.001/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot/mixamorig:LeftToeBase + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -14.218653 + inSlope: -0.00073919486 + outSlope: -0.00073919486 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: -14.230937 + inSlope: 0.022440344 + outSlope: 0.022440344 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: -14.216402 + inSlope: -0.016952436 + outSlope: -0.01698375 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: -14.218438 + inSlope: -0.013169647 + outSlope: -0.013169647 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: Armature.001/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot/mixamorig:LeftToeBase + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 8.647142 + inSlope: -5.605573 + outSlope: -5.605573 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 10.239348 + inSlope: 9.634108 + outSlope: 9.634162 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 10.034501 + inSlope: 1.4143072 + outSlope: 1.416185 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 7.560238 + inSlope: -8.50814 + outSlope: -8.512309 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 9.442027 + inSlope: 7.9791374 + outSlope: 7.9866724 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333334 + value: 14.450856 + inSlope: 16.381912 + outSlope: 16.381485 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: 18.321297 + inSlope: -6.884843 + outSlope: -6.8848405 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: 16.466522 + inSlope: 1.6937252 + outSlope: 1.6901554 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2333333 + value: 8.864133 + inSlope: -6.0005336 + outSlope: -6.0005765 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7 + value: 7.620825 + inSlope: 1.4802728 + outSlope: 1.4795395 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3000002 + value: 9.306452 + inSlope: 1.0034463 + outSlope: 1.0034606 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.7000003 + value: 10.421836 + inSlope: -1.301243 + outSlope: -1.3016236 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 8.650733 + inSlope: -8.958186 + outSlope: -8.958186 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: Armature.001/mixamorig:Hips/mixamorig:RightUpLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 10.143046 + inSlope: -0.31715867 + outSlope: -0.31715867 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 10.039424 + inSlope: -0.6098985 + outSlope: -0.6088292 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 10.05093 + inSlope: 1.2360047 + outSlope: 1.2336446 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 10.26486 + inSlope: 2.0126011 + outSlope: 1.9929368 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 10.427048 + inSlope: -1.4670867 + outSlope: -1.4257046 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333334 + value: 9.732275 + inSlope: 1.5109917 + outSlope: 1.5108683 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: 9.41251 + inSlope: 0.20580295 + outSlope: 0.20580287 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: 9.435652 + inSlope: -1.4463612 + outSlope: -1.4512829 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2333333 + value: 9.582069 + inSlope: -0.49461377 + outSlope: -0.49364904 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7 + value: 9.698948 + inSlope: 0.73046815 + outSlope: 0.73209745 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3000002 + value: 10.1127825 + inSlope: 0.041937817 + outSlope: 0.042307366 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.7000003 + value: 10.130681 + inSlope: 0.0020241733 + outSlope: 0.001230241 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 10.141508 + inSlope: 0.22481939 + outSlope: 0.22481939 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: Armature.001/mixamorig:Hips/mixamorig:RightUpLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 175.54921 + inSlope: -0.29136655 + outSlope: -0.29136655 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 175.50441 + inSlope: 0.7564544 + outSlope: 0.75548166 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 176.14502 + inSlope: 3.9379117 + outSlope: 3.9372256 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 176.75185 + inSlope: 3.699303 + outSlope: 3.6865993 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 175.69456 + inSlope: -12.923353 + outSlope: -12.912366 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333334 + value: 173.63567 + inSlope: -0.42503348 + outSlope: -0.4179383 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: 173.06447 + inSlope: 0.66604626 + outSlope: 0.66604596 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: 172.60146 + inSlope: -4.416045 + outSlope: -4.4187937 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2333333 + value: 174.3879 + inSlope: 1.8044133 + outSlope: 1.80421 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7 + value: 175.05959 + inSlope: 2.7923908 + outSlope: 2.7930443 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3000002 + value: 175.97533 + inSlope: -0.6327055 + outSlope: -0.63274366 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.7000003 + value: 175.57973 + inSlope: -0.5272292 + outSlope: -0.527802 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 175.54944 + inSlope: -0.41290322 + outSlope: -0.41290322 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: Armature.001/mixamorig:Hips/mixamorig:RightUpLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -2.6247437 + inSlope: -11.142552 + outSlope: -11.142552 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.76193005 + inSlope: 36.4861 + outSlope: 36.454586 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.592777 + inSlope: -3.68882 + outSlope: -3.6779153 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.33607468 + inSlope: -3.2533283 + outSlope: -3.262956 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.42594638 + inSlope: -49.687336 + outSlope: -49.68725 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -3.648802 + inSlope: -79.71551 + outSlope: -79.64061 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -10.7072735 + inSlope: -20.688202 + outSlope: -20.705416 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -14.305724 + inSlope: -42.800823 + outSlope: -42.871746 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -17.945156 + inSlope: -2.5348368 + outSlope: -2.5347517 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: -14.586206 + inSlope: 16.885323 + outSlope: 16.888327 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: -12.952625 + inSlope: 14.884459 + outSlope: 14.885474 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: -7.2243686 + inSlope: 4.177233 + outSlope: 4.1770453 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3666668 + value: -0.9213037 + inSlope: 29.425879 + outSlope: 29.430412 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6333334 + value: -0.16757935 + inSlope: -0.08986809 + outSlope: -0.0898235 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1666667 + value: 1.4123168 + inSlope: -0.16278596 + outSlope: -0.16274357 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6666667 + value: 1.3831804 + inSlope: -0.37473536 + outSlope: -0.3756692 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.7333336 + value: 0.90291286 + inSlope: -49.9707 + outSlope: -49.975887 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.766667 + value: -1.8977312 + inSlope: -52.760914 + outSlope: -52.760914 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: -2.617114 + inSlope: -21.567299 + outSlope: -21.567299 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: Armature.001/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -10.254448 + inSlope: 20.103195 + outSlope: 20.103195 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -6.304614 + inSlope: 27.207418 + outSlope: 27.257204 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -4.602572 + inSlope: 23.470333 + outSlope: 23.469965 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.8820256 + inSlope: 20.660097 + outSlope: 20.65922 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 1.527774 + inSlope: 12.636767 + outSlope: 12.636745 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 1.7266337 + inSlope: 5.1901236 + outSlope: 5.267564 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.75516486 + inSlope: -14.97173 + outSlope: -14.942087 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -3.3334563 + inSlope: -37.134224 + outSlope: -37.010387 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -8.011642 + inSlope: 0.33027637 + outSlope: 0.33037457 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: -9.465205 + inSlope: -12.823852 + outSlope: -12.813718 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: -10.751277 + inSlope: 1.8300284 + outSlope: 1.8121363 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: -10.117845 + inSlope: -0.4229665 + outSlope: -0.42507973 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3666668 + value: -9.925644 + inSlope: 1.1408877 + outSlope: 1.246605 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6333334 + value: -9.828174 + inSlope: 0.091184385 + outSlope: 0.09125412 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1666667 + value: -9.828286 + inSlope: -0.21873416 + outSlope: -0.21875954 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6666667 + value: -9.551736 + inSlope: -0.7778721 + outSlope: -0.7775811 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.7333336 + value: -9.677487 + inSlope: -7.3245573 + outSlope: -7.2773337 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.766667 + value: -10.068983 + inSlope: -8.87164 + outSlope: -8.87164 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: -10.253292 + inSlope: -5.5827765 + outSlope: -5.5827765 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: Armature.001/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 10.066717 + inSlope: 0.3316841 + outSlope: 0.3316841 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 9.570951 + inSlope: -4.474697 + outSlope: -4.7638597 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 9.376362 + inSlope: -0.8866309 + outSlope: -0.9281975 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 9.080176 + inSlope: -0.7440171 + outSlope: -0.70509976 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 9.071209 + inSlope: -1.4814391 + outSlope: -1.4814365 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 8.980281 + inSlope: -1.4634979 + outSlope: -1.6719104 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 10.126482 + inSlope: 11.53699 + outSlope: 11.501826 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 12.745401 + inSlope: 19.219034 + outSlope: 19.037369 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 14.895479 + inSlope: 0.19462101 + outSlope: 0.19439423 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: 14.963899 + inSlope: 2.8819368 + outSlope: 2.8591814 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 15.03755 + inSlope: -2.683561 + outSlope: -2.6695492 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: 14.12044 + inSlope: -5.287643 + outSlope: -5.2876053 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3666668 + value: 10.017334 + inSlope: -7.4188337 + outSlope: -7.434483 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6333334 + value: 9.514164 + inSlope: -0.48498634 + outSlope: -0.48496488 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1666667 + value: 9.077673 + inSlope: -0.79911596 + outSlope: -0.79919815 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6666667 + value: 9.17602 + inSlope: 0.9885292 + outSlope: 0.9883378 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.7333336 + value: 9.33309 + inSlope: 9.837974 + outSlope: 9.802046 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.766667 + value: 9.861325 + inSlope: 11.161004 + outSlope: 11.161004 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 10.065363 + inSlope: 6.1707172 + outSlope: 6.1707172 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: Armature.001/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 70.910225 + inSlope: 1.7466888 + outSlope: 1.7466888 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 69.3833 + inSlope: -21.893005 + outSlope: -21.93863 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 68.01984 + inSlope: -1.0552979 + outSlope: -1.0643007 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 69.5834 + inSlope: 39.60194 + outSlope: 38.55268 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 76.57168 + inSlope: 10.337504 + outSlope: 17.869623 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 77.31379 + inSlope: 2.6665905 + outSlope: 2.236404 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: 77.34799 + inSlope: 1.4648434 + outSlope: 1.4230722 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666668 + value: 76.94917 + inSlope: 0.9027668 + outSlope: 0.90225214 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 76.58167 + inSlope: -3.7185776 + outSlope: -3.746424 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: 75.111694 + inSlope: -4.7121053 + outSlope: -4.834985 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2333333 + value: 72.92116 + inSlope: -17.22482 + outSlope: -16.969057 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5000002 + value: 69.9894 + inSlope: -0.34460992 + outSlope: -0.3440406 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2333336 + value: 68.90662 + inSlope: -1.3900201 + outSlope: -1.38722 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.7000003 + value: 68.851105 + inSlope: 4.3293977 + outSlope: 4.3428082 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 70.906296 + inSlope: 10.672313 + outSlope: 10.672313 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: Armature.001/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -17.580996 + inSlope: -12.731197 + outSlope: -12.731197 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -17.200287 + inSlope: 13.730713 + outSlope: 12.848357 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -18.667145 + inSlope: -7.948608 + outSlope: -7.9554753 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -20.742146 + inSlope: -53.616547 + outSlope: -67.111206 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -51.86561 + inSlope: -195.57481 + outSlope: -175.65645 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -62.88516 + inSlope: -157.59576 + outSlope: -157.85713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: -73.054375 + inSlope: -27.422327 + outSlope: -27.550953 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666668 + value: -68.29332 + inSlope: -0.68990684 + outSlope: -0.6874302 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: -61.79232 + inSlope: 36.854614 + outSlope: 36.74704 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: -56.69142 + inSlope: 54.644455 + outSlope: 54.193077 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2333333 + value: -23.729504 + inSlope: 64.266014 + outSlope: 65.969025 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5000002 + value: -15.922523 + inSlope: 2.2974174 + outSlope: 2.2947342 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2333336 + value: -13.467528 + inSlope: 4.373491 + outSlope: 4.3921704 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.7000003 + value: -14.520384 + inSlope: -6.7598405 + outSlope: -6.607882 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: -17.57652 + inSlope: -22.319262 + outSlope: -22.319262 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: Armature.001/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -16.480713 + inSlope: -0.2741089 + outSlope: -0.2741089 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -13.913297 + inSlope: 27.426767 + outSlope: 26.565216 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -11.6839485 + inSlope: 4.1124344 + outSlope: 4.104939 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -13.016231 + inSlope: -43.350895 + outSlope: -56.917454 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -40.331215 + inSlope: -188.70264 + outSlope: -168.76904 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -51.051292 + inSlope: -128.1323 + outSlope: -128.39398 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: -57.16609 + inSlope: -14.203602 + outSlope: -14.333934 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666668 + value: -52.559895 + inSlope: -6.272118 + outSlope: -6.269613 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: -47.3148 + inSlope: 33.36621 + outSlope: 33.25849 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: -41.166336 + inSlope: 30.607225 + outSlope: 30.15411 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2333333 + value: -19.763577 + inSlope: 45.868153 + outSlope: 47.583076 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5000002 + value: -14.25402 + inSlope: -0.31492326 + outSlope: -0.31782714 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2333336 + value: -13.073342 + inSlope: 2.2140298 + outSlope: 2.2331243 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.7000003 + value: -13.430028 + inSlope: -5.497253 + outSlope: -5.3437953 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: -16.4759 + inSlope: -21.670267 + outSlope: -21.670267 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: Armature.001/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 27.081627 + inSlope: 0.000006023206 + outSlope: 0.000006023206 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 27.081627 + inSlope: 0.000006023206 + outSlope: 0.000006023206 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: Armature.001/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot/mixamorig:RightToeBase + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -1.0894301 + inSlope: -0.0000013175763 + outSlope: -0.0000013175763 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: -1.0894301 + inSlope: -0.0000013175763 + outSlope: -0.0000013175763 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: Armature.001/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot/mixamorig:RightToeBase + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 14.286039 + inSlope: 0.0000015058015 + outSlope: 0.0000015058015 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.8000002 + value: 14.286039 + inSlope: 0.0000015058015 + outSlope: 0.0000015058015 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: Armature.001/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot/mixamorig:RightToeBase + classID: 4 + script: {fileID: 0} + m_HasGenericRootTransform: 0 + m_HasMotionFloatCurves: 0 + m_Events: [] diff --git a/Assets/Jammo-Character/Animations/Fist Pump.anim.meta b/Assets/Jammo-Character/Animations/Fist Pump.anim.meta new file mode 100644 index 0000000..e6ae608 --- /dev/null +++ b/Assets/Jammo-Character/Animations/Fist Pump.anim.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 9320442ecbaf905429dac366ee003323 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 7400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Jammo-Character/Animations/Jump.anim b/Assets/Jammo-Character/Animations/Jump.anim new file mode 100644 index 0000000..884517f --- /dev/null +++ b/Assets/Jammo-Character/Animations/Jump.anim @@ -0,0 +1,8671 @@ +%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: Jump + 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, 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.033333335 + 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: Armature.001 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.18078682, y: -0.14355412, z: -0.033954695, w: 0.97239673} + inSlope: {x: -2.2971587, y: 1.1005778, z: 2.4419222, w: 0.45782802} + outSlope: {x: -2.2971587, y: 1.1005778, z: 2.4419222, w: 0.45782802} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.104214855, y: -0.10686819, z: 0.04744272, w: 0.98765767} + inSlope: {x: -2.1355906, y: 1.2098947, z: 2.2386043, w: 0.27297017} + outSlope: {x: -2.1355906, y: 1.2098947, z: 2.2386043, w: 0.27297017} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: -0.010261851, y: -0.028640497, z: 0.14710367, w: 0.9886531} + inSlope: {x: -1.213952, y: 0.628103, z: 0.2106407, w: -0.001917772} + outSlope: {x: -1.213952, y: 0.628103, z: 0.2106407, w: -0.001917772} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.07080594, y: -0.026318833, z: 0.07809526, w: 0.99407995} + inSlope: {x: -0.82896984, y: 0.039584495, z: -1.5433428, w: 0.06330013} + outSlope: {x: -0.82896984, y: 0.039584495, z: -1.5433428, w: 0.06330013} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: -0.09778069, y: -0.018381968, z: 0.026438786, w: 0.9946869} + inSlope: {x: -0.62099683, y: 0.5321247, z: -1.1042341, w: -0.0067082103} + outSlope: {x: -0.62099683, y: 0.5321247, z: -1.1042341, w: -0.0067082103} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.10753933, y: 0.036613557, z: 0.017660964, w: 0.99336946} + inSlope: {x: 0.33618924, y: 0.7528383, z: 0.57386845, w: -0.0054135923} + outSlope: {x: 0.33618924, y: 0.7528383, z: 0.57386845, w: -0.0054135923} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.071660936, y: 0.066851206, z: 0.060215086, w: 0.9933629} + inSlope: {x: 0.41818094, y: 0.017109647, z: 0.25585374, w: 0.017686488} + outSlope: {x: 0.41818094, y: 0.017109647, z: 0.25585374, w: 0.017686488} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: -0.059787024, y: 0.050792646, z: 0.03905793, w: 0.9961527} + inSlope: {x: 0.07069111, y: -0.33944505, z: -0.929212, w: 0.047871154} + outSlope: {x: 0.07069111, y: -0.33944505, z: -0.929212, w: 0.047871154} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.03777928, y: -0.016781706, z: -0.09321494, w: 0.99478745} + inSlope: {x: 0.21731804, y: -0.8812711, z: -0.91809535, w: -0.082681775} + outSlope: {x: 0.21731804, y: -0.8812711, z: -0.91809535, w: -0.082681775} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.055210173, y: -0.08077776, z: -0.08920642, w: 0.9911958} + inSlope: {x: -0.33437407, y: -0.08217138, z: 0.9484228, w: 0.05358783} + outSlope: {x: -0.33437407, y: -0.08217138, z: 0.9484228, w: 0.05358783} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.70000005 + value: {x: -0.032195292, y: -0.050956067, z: 0.014292367, w: 0.9980795} + inSlope: {x: 1.107276, y: -0.022985563, z: 0.16932881, w: 0.022983827} + outSlope: {x: 1.107276, y: -0.022985563, z: 0.16932881, w: 0.022983827} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7666667 + value: {x: 0.07348049, y: -0.0886895, z: -0.034577787, w: 0.99274325} + inSlope: {x: 1.6549737, y: -0.9361389, z: -1.2263393, w: -0.2511252} + outSlope: {x: 1.6549737, y: -0.9361389, z: -1.2263393, w: -0.2511252} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.16076581, y: -0.16303504, z: -0.10736797, w: 0.9674947} + inSlope: {x: 0.8131917, y: -1.2515174, z: -0.58025664, w: -0.4001883} + outSlope: {x: 0.8131917, y: -1.2515174, z: -0.58025664, w: -0.4001883} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9333334 + value: {x: 0.19232075, y: -0.24991445, z: -0.088730805, w: 0.94481874} + inSlope: {x: 0.0000117607415, y: 0.3289536, z: 0.71544766, w: 0.14315145} + outSlope: {x: 0.0000117607415, y: 0.3289536, z: 0.71544766, w: 0.14315145} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9666667 + value: {x: 0.18908331, y: -0.21954833, z: -0.06033545, w: 0.9551993} + inSlope: {x: -0.1730089, y: 1.5954064, z: 0.82164216, w: 0.41367033} + outSlope: {x: -0.1730089, y: 1.5954064, z: 0.82164216, w: 0.41367033} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.18078683, y: -0.14355412, z: -0.033954713, w: 0.97239673} + inSlope: {x: -0.24889448, y: 2.2798283, z: 0.79142284, w: 0.5159234} + outSlope: {x: -0.24889448, y: 2.2798283, z: 0.79142284, w: 0.5159234} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.1324406, y: 0.09127176, z: 0.0006686168, w: 0.9869795} + inSlope: {x: -0.73654866, y: -0.32141602, z: -0.45978224, w: 0.11417448} + outSlope: {x: -0.73654866, y: -0.32141602, z: -0.45978224, w: 0.11417448} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.107888974, y: 0.08055789, z: -0.014657458, w: 0.9907853} + inSlope: {x: -0.74787486, y: -0.10463253, z: -0.6444678, w: 0.07698118} + outSlope: {x: -0.74787486, y: -0.10463253, z: -0.6444678, w: 0.07698118} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: 0.068254314, y: 0.101989165, z: -0.06083446, w: 0.99057496} + inSlope: {x: -0.15396781, y: 0.7138243, z: -0.07445857, w: -0.06927252} + outSlope: {x: -0.15396781, y: 0.7138243, z: -0.07445857, w: -0.06927252} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.0922973, y: 0.14903894, z: -0.0060392297, w: 0.9844959} + inSlope: {x: 0.6717862, y: 0.043095395, z: 1.2142256, w: -0.062035915} + outSlope: {x: 0.6717862, y: 0.043095395, z: 1.2142256, w: -0.062035915} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: 0.13787143, y: 0.10375861, z: 0.040905163, w: 0.9841506} + inSlope: {x: 0.5449659, y: -0.7435371, z: -0.31612888, w: 0.01562208} + outSlope: {x: 0.5449659, y: -0.7435371, z: -0.31612888, w: 0.01562208} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: 0.16635826, y: 0.07360526, z: -0.021570707, w: 0.98307776} + inSlope: {x: 0.3924479, y: -0.2637566, z: -0.7884395, w: -0.056971915} + outSlope: {x: 0.3924479, y: -0.2637566, z: -0.7884395, w: -0.056971915} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.19523543, y: 0.063948624, z: -0.009908237, w: 0.9786192} + inSlope: {x: -0.040787518, y: 0.050628845, z: 1.0175017, w: 0.006138685} + outSlope: {x: -0.040787518, y: 0.050628845, z: 1.0175017, w: 0.006138685} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.14806515, y: 0.09235957, z: 0.10039585, w: 0.97952396} + inSlope: {x: -0.6258272, y: -0.06774507, z: 0.42371657, w: 0.062499013} + outSlope: {x: -0.6258272, y: -0.06774507, z: 0.42371657, w: 0.062499013} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.122005664, y: 0.007780892, z: 0.05449302, w: 0.99100184} + inSlope: {x: 0.18016802, y: -1.2070696, z: -1.2616686, w: 0.046003513} + outSlope: {x: 0.18016802, y: -1.2070696, z: -1.2616686, w: 0.046003513} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.13956487, y: -0.06285706, z: -0.05123579, w: 0.9868868} + inSlope: {x: 0.08595979, y: -0.7840079, z: -1.3352642, w: -0.11268319} + outSlope: {x: 0.08595979, y: -0.7840079, z: -1.3352642, w: -0.11268319} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.12338446, y: -0.09619856, z: -0.0775083, w: 0.98463935} + inSlope: {x: -0.5255897, y: -0.09016941, z: 0.8307304, w: 0.104267254} + outSlope: {x: -0.5255897, y: -0.09016941, z: 0.8307304, w: 0.104267254} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000001 + value: {x: 0.081532404, y: -0.057598814, z: 0.031355996, w: 0.99451077} + inSlope: {x: -0.5220311, y: 1.3763466, z: 1.554759, w: 0.07139768} + outSlope: {x: -0.5220311, y: 1.3763466, z: 1.554759, w: 0.07139768} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.86666673 + value: {x: 0.06717631, y: 0.074115366, z: 0.08309562, w: 0.99150866} + inSlope: {x: 0.20822959, y: 1.9859498, z: -0.15837523, w: -0.14082047} + outSlope: {x: 0.20822959, y: 1.9859498, z: -0.15837523, w: -0.14082047} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9333334 + value: {x: 0.10126908, y: 0.16119517, z: 0.034222152, w: 0.9811165} + inSlope: {x: 0.563413, y: 0.17908272, z: -0.82741314, w: -0.052820668} + outSlope: {x: 0.563413, y: 0.17908272, z: -0.82741314, w: -0.052820668} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9666667 + value: {x: 0.11903042, y: 0.14601427, z: 0.008188236, w: 0.9820614} + inSlope: {x: 0.46757495, y: -1.0488533, z: -0.50330347, w: 0.087945245} + outSlope: {x: 0.46757495, y: -1.0488533, z: -0.50330347, w: 0.087945245} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.13244072, y: 0.09127169, z: 0.0006686164, w: 0.9869795} + inSlope: {x: 0.40230915, y: -1.642279, z: -0.22558878, w: 0.14754309} + outSlope: {x: 0.40230915, y: -1.642279, z: -0.22558878, w: 0.14754309} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.0099833915, y: 0.026492877, z: 0.0065310365, w: 0.9995778} + inSlope: {x: -0.20559505, y: -0.3585543, z: -0.48928788, w: 0.007912517} + outSlope: {x: -0.20559505, y: -0.3585543, z: -0.48928788, w: 0.007912517} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.0031302231, y: 0.014541066, z: -0.009778561, w: 0.9998416} + inSlope: {x: -0.36640835, y: -0.3396881, z: -0.6942631, w: -0.0072017303} + outSlope: {x: -0.36640835, y: -0.3396881, z: -0.6942631, w: -0.0072017303} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: -0.035161648, y: -0.009821931, z: -0.08369922, w: 0.9958221} + inSlope: {x: 0.15020835, y: -0.11268468, z: -0.17037359, w: -0.009784699} + outSlope: {x: 0.15020835, y: -0.11268468, z: -0.17037359, w: -0.009784699} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: 0.038902137, y: -0.01097922, z: -0.058394503, w: 0.9974749} + inSlope: {x: 0.979316, y: 0.09268098, z: 0.30233577, w: -0.01918316} + outSlope: {x: 0.979316, y: 0.09268098, z: 0.30233577, w: -0.01918316} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.13956974, y: -0.0009999047, z: -0.0117956735, w: 0.99014145} + inSlope: {x: -0.13179395, y: -0.105791345, z: 0.18981194, w: 0.019965474} + outSlope: {x: -0.13179395, y: -0.105791345, z: 0.18981194, w: 0.019965474} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5666667 + value: {x: 0.064532675, y: -0.0016160824, z: 0.0087994225, w: 0.9978755} + inSlope: {x: -0.06398508, y: 0.03334891, z: -0.021528216, w: 0.0047323015} + outSlope: {x: -0.06398508, y: 0.03334891, z: -0.021528216, w: 0.0047323015} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.70000005 + value: {x: 0.062249575, y: -0.0014448384, z: 0.001742784, w: 0.9980581} + inSlope: {x: -0.5226105, y: -0.015668336, z: -0.026542496, w: 0.029778786} + outSlope: {x: -0.5226105, y: -0.015668336, z: -0.026542496, w: 0.029778786} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.86666673 + value: {x: -0.049282156, y: 0.014380497, z: 0.010223803, w: 0.99862903} + inSlope: {x: -0.092874356, y: 0.22062561, z: 0.002744928, w: -0.0069111497} + outSlope: {x: -0.092874356, y: 0.22062561, z: 0.002744928, w: -0.0069111497} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.009983358, y: 0.02649288, z: 0.0065310434, w: 0.9995778} + inSlope: {x: 0.5833005, y: 0.0038994327, z: 0.009717639, w: -0.0003182891} + outSlope: {x: 0.5833005, y: 0.0038994327, z: 0.009717639, w: -0.0003182891} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.0022535378, y: 0.026061688, z: 0.006684513, w: 0.99963546} + inSlope: {x: 0.095152564, y: -0.35419014, z: -0.4794226, w: 0.0065803523} + outSlope: {x: 0.095152564, y: -0.35419014, z: -0.4794226, w: 0.0065803523} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: -0.0027603863, y: 0.003774516, z: -0.03963215, w: 0.9992034} + inSlope: {x: -0.084566854, y: -0.27125895, z: -0.90675, w: -0.03462821} + outSlope: {x: -0.084566854, y: -0.27125895, z: -0.90675, w: -0.03462821} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.0038372392, y: -0.007832429, z: -0.08459515, w: 0.9963772} + inSlope: {x: 0.46684575, y: -0.08359322, z: -0.16942409, w: -0.01844466} + outSlope: {x: 0.46684575, y: -0.08359322, z: -0.16942409, w: -0.01844466} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: 0.09764698, y: -0.008517452, z: -0.05683998, w: 0.99356014} + inSlope: {x: 1.1104143, y: 0.07478904, z: 0.32558912, w: -0.08887232} + outSlope: {x: 1.1104143, y: 0.07478904, z: 0.32558912, w: -0.08887232} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.20880443, y: -0.001954822, z: -0.009935718, w: 0.97790504} + inSlope: {x: -0.19433591, y: -0.0945048, z: 0.20644557, w: 0.0419122} + outSlope: {x: -0.19433591, y: -0.0945048, z: 0.20644557, w: 0.0419122} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: 0.10403452, y: -0.0029283238, z: 0.007851916, w: 0.9945384} + inSlope: {x: -0.7684259, y: 0.048674002, z: -0.0077207107, w: 0.08504473} + outSlope: {x: -0.7684259, y: 0.048674002, z: -0.0077207107, w: 0.08504473} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6333334 + value: {x: 0.0913064, y: -0.0036341995, z: 0.0014098261, w: 0.9958152} + inSlope: {x: 0.2736486, y: -0.011951401, z: -0.06474321, w: -0.0249213} + outSlope: {x: 0.2736486, y: -0.011951401, z: -0.06474321, w: -0.0249213} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.08824083, y: -0.0039894176, z: -0.0017426464, w: 0.99608964} + inSlope: {x: -0.46148595, y: -0.010207888, z: 0.025105499, w: 0.039058324} + outSlope: {x: -0.46148595, y: -0.010207888, z: 0.025105499, w: 0.039058324} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.86666673 + value: {x: 0.014321586, y: 0.015141371, z: 0.006985255, w: 0.9997584} + inSlope: {x: -0.32372707, y: 0.22905052, z: 0.0054185046, w: 0.0021439765} + outSlope: {x: -0.32372707, y: 0.22905052, z: 0.0054185046, w: 0.0021439765} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.0022535909, y: 0.026061686, z: 0.0066845096, w: 0.99963546} + inSlope: {x: 0.23661867, y: -0.0041624573, z: 0.029859748, w: 0.0013911737} + outSlope: {x: 0.23661867, y: -0.0041624573, z: 0.029859748, w: 0.0013911737} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.039201215, y: -0.014166189, z: 0.012831358, w: 0.99904853} + inSlope: {x: -0.23827727, y: -0.010786307, z: 0.05519346, w: -0.011213421} + outSlope: {x: -0.23827727, y: -0.010786307, z: 0.05519346, w: -0.011213421} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: -0.04254952, y: -0.013200359, z: 0.03150873, w: 0.9985102} + inSlope: {x: 0.31911016, y: 0.061813556, z: 0.5888781, w: -0.007790922} + outSlope: {x: 0.31911016, y: 0.061813556, z: 0.5888781, w: -0.007790922} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.012437757, y: -0.0011582169, z: 0.068458706, w: 0.99757576} + inSlope: {x: 0.37437457, y: 0.14414302, z: -0.15627438, w: 0.007095334} + outSlope: {x: 0.37437457, y: 0.14414302, z: -0.15627438, w: 0.007095334} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.026890282, y: 0.00041037702, z: 0.04231484, w: 0.9987423} + inSlope: {x: 0.109992646, y: -0.12629336, z: -0.114539325, w: 0.0019758942} + outSlope: {x: 0.109992646, y: -0.12629336, z: -0.114539325, w: 0.0019758942} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.037341062, y: -0.0052229683, z: 0.027501583, w: 0.9989104} + inSlope: {x: 0.11365139, y: 0.051716015, z: -0.11708842, w: -0.0009182112} + outSlope: {x: 0.11365139, y: 0.051716015, z: -0.11708842, w: -0.0009182112} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: 0.11552792, y: -0.0014416795, z: 0.01997809, w: 0.99310225} + inSlope: {x: 0.9014291, y: 0.08413674, z: -0.046077713, w: -0.10278484} + outSlope: {x: 0.9014291, y: 0.08413674, z: -0.046077713, w: -0.10278484} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6333334 + value: {x: 0.15782553, y: 0.007935267, z: 0.032920823, w: 0.9868862} + inSlope: {x: -0.3509653, y: 0.023153536, z: 0.3488445, w: 0.04055772} + outSlope: {x: -0.3509653, y: 0.023153536, z: 0.3488445, w: 0.04055772} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.061855763, y: 0.008836864, z: 0.055067666, w: 0.99652565} + inSlope: {x: -1.3997122, y: 0.068690665, z: -0.12381296, w: 0.08624734} + outSlope: {x: -1.3997122, y: 0.068690665, z: -0.12381296, w: 0.08624734} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.09814819, y: 0.014537115, z: 0.028720807, w: 0.9946511} + inSlope: {x: -1.192822, y: -0.043783642, z: -0.14776728, w: -0.09845586} + outSlope: {x: -1.192822, y: -0.043783642, z: -0.14776728, w: -0.09845586} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.90000004 + value: {x: -0.12152981, y: 0.006125664, z: 0.026163995, w: 0.99222404} + inSlope: {x: 0.48954812, y: -0.1842627, z: -0.02191584, w: 0.055731803} + outSlope: {x: 0.48954812, y: -0.1842627, z: -0.02191584, w: 0.055731803} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9666667 + value: {x: -0.061188802, y: -0.0076923952, z: 0.020314133, w: 0.9978898} + inSlope: {x: 0.8157659, y: -0.20204273, z: -0.17978886, w: 0.05620306} + outSlope: {x: 0.8157659, y: -0.20204273, z: -0.17978886, w: 0.05620306} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.03920111, y: -0.014166204, z: 0.012831363, w: 0.99904853} + inSlope: {x: 0.6596314, y: -0.19421445, z: -0.22448331, w: 0.034761462} + outSlope: {x: 0.6596314, y: -0.19421445, z: -0.22448331, w: 0.034761462} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.1575309, y: 0.027167562, z: -0.04313872, w: 0.9861973} + inSlope: {x: 2.5441387, y: -1.2061285, z: 0.41238812, w: 0.31908628} + outSlope: {x: 2.5441387, y: -1.2061285, z: 0.41238812, w: 0.31908628} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: -0.07272628, y: -0.013036722, z: -0.02939245, w: 0.9968335} + inSlope: {x: 3.0500321, y: -1.0681357, z: 0.68353593, w: 0.17668246} + outSlope: {x: 3.0500321, y: -1.0681357, z: 0.68353593, w: 0.17668246} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: 0.04580457, y: -0.044041492, z: 0.0024303442, w: 0.9979761} + inSlope: {x: 3.57936, y: -0.75490856, z: 1.0491736, w: -0.2034634} + outSlope: {x: 3.57936, y: -0.75490856, z: 1.0491736, w: -0.2034634} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: 0.16589776, y: -0.06336396, z: 0.04055247, w: 0.9832693} + inSlope: {x: 3.0054073, y: -0.3548199, z: 1.0400572, w: -0.50673634} + outSlope: {x: 3.0054073, y: -0.3548199, z: 1.0400572, w: -0.50673634} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.24616508, y: -0.067696154, z: 0.071767494, w: 0.9641937} + inSlope: {x: 1.5357194, y: 0.06750478, z: 0.715051, w: -0.38675848} + outSlope: {x: 1.5357194, y: 0.06750478, z: 0.715051, w: -0.38675848} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: 0.244488, y: -0.046794083, z: 0.09245688, w: 0.9640994} + inSlope: {x: -1.0690992, y: 0.27072468, z: 0.08062461, w: 0.26377556} + outSlope: {x: -1.0690992, y: 0.27072468, z: 0.08062461, w: 0.26377556} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: 0.080489285, y: -0.04085802, z: 0.10081739, w: 0.9908017} + inSlope: {x: -1.7497206, y: 0.08999147, z: 0.038741827, w: 0.1446435} + outSlope: {x: -1.7497206, y: 0.08999147, z: 0.038741827, w: 0.1446435} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: -0.059102174, y: 0.0043277717, z: 0.068035424, w: 0.9959214} + inSlope: {x: -0.091744244, y: 0.42036664, z: -0.44048178, w: 0.022695066} + outSlope: {x: -0.091744244, y: 0.42036664, z: -0.44048178, w: 0.022695066} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: -0.028447645, y: 0.071401656, z: 0.016212268, w: 0.9969101} + inSlope: {x: 0.3657472, y: 1.0751481, z: -0.42570567, w: -0.061851688} + outSlope: {x: 0.3657472, y: 1.0751481, z: -0.42570567, w: -0.061851688} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.019180857, y: 0.15094332, z: 0.003740856, w: 0.98834926} + inSlope: {x: 0.03884905, y: 1.0307081, z: 0.018190626, w: -0.15146525} + outSlope: {x: 0.03884905, y: 1.0307081, z: 0.018190626, w: -0.15146525} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.013088668, y: 0.1973134, z: 0.004737134, w: 0.98024166} + inSlope: {x: 1.4192414, y: 0.43367597, z: -0.2436339, w: -0.13138172} + outSlope: {x: 1.4192414, y: 0.43367597, z: -0.2436339, w: -0.13138172} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.15460528, y: 0.22040862, z: -0.036899988, w: 0.9623698} + inSlope: {x: 1.9263979, y: 0.26232618, z: -0.87865853, w: -0.38015395} + outSlope: {x: 1.9263979, y: 0.26232618, z: -0.87865853, w: -0.38015395} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000001 + value: {x: 0.21952923, y: 0.2223873, z: -0.0942267, w: 0.94523656} + inSlope: {x: -0.09665942, y: -0.25785518, z: -0.63672215, w: 0.01990033} + outSlope: {x: -0.09665942, y: -0.25785518, z: -0.63672215, w: 0.01990033} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.90000004 + value: {x: 0.088517435, y: 0.16189568, z: -0.1127747, w: 0.97633827} + inSlope: {x: -2.3516736, y: -1.0023352, z: 0.2930178, w: 0.38126802} + outSlope: {x: -2.3516736, y: -1.0023352, z: 0.2930178, w: 0.38126802} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9666667 + value: {x: -0.09027376, y: 0.076933034, z: -0.072796874, w: 0.99026895} + inSlope: {x: -2.356143, y: -1.4405429, z: 0.8154119, w: -0.020743333} + outSlope: {x: -2.356143, y: -1.4405429, z: 0.8154119, w: -0.020743333} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.15753095, y: 0.02716757, z: -0.04313872, w: 0.98619723} + inSlope: {x: -2.0177176, y: -1.4929653, z: 0.8897455, w: -0.122151494} + outSlope: {x: -2.0177176, y: -1.4929653, z: 0.8897455, w: -0.122151494} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.57564765, y: -0.40081677, z: 0.5197973, w: 0.4876335} + inSlope: {x: -1.2198918, y: -1.28737, z: -1.3568686, w: 1.5732416} + outSlope: {x: -1.2198918, y: -1.28737, z: -1.3568686, w: 1.5732416} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.5349846, y: -0.4437291, z: 0.47456837, w: 0.5400749} + inSlope: {x: -1.1643255, y: -1.1600424, z: -0.9928813, w: 1.1386625} + outSlope: {x: -1.1643255, y: -1.1600424, z: -0.9928813, w: 1.1386625} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.4642571, y: -0.5082557, z: 0.4652953, w: 0.5564546} + inSlope: {x: -0.037288964, y: -0.052768886, z: 0.26478994, w: -0.2364439} + outSlope: {x: -0.037288964, y: -0.052768886, z: 0.26478994, w: -0.2364439} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: 0.4901107, y: -0.48664418, z: 0.48438126, w: 0.5369765} + inSlope: {x: 0.22914293, y: 0.18805774, z: 0.28937998, w: -0.3009242} + outSlope: {x: 0.22914293, y: 0.18805774, z: 0.28937998, w: -0.3009242} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.5001571, y: -0.47791535, z: 0.5095094, w: 0.511703} + inSlope: {x: 0.016562195, y: 0.051719252, z: -0.005264282, w: 0.03710032} + outSlope: {x: 0.016562195, y: 0.051719252, z: -0.005264282, w: 0.03710032} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: 0.50984895, y: -0.48348916, z: 0.4977946, w: 0.5084219} + inSlope: {x: 0.2488366, y: -0.2862731, z: -0.056478832, w: -0.47453064} + outSlope: {x: 0.2488366, y: -0.2862731, z: -0.056478832, w: -0.47453064} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: 0.5361283, y: -0.53470117, z: 0.4785158, w: 0.44461644} + inSlope: {x: 0.12670119, y: -0.6741494, z: -0.61607516, w: -0.30632323} + outSlope: {x: 0.12670119, y: -0.6741494, z: -0.61607516, w: -0.30632323} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6333334 + value: {x: 0.5251463, y: -0.6054288, z: 0.3992371, w: 0.44529453} + inSlope: {x: -0.19533989, y: -0.42970315, z: -0.23992774, w: -0.12616052} + outSlope: {x: -0.19533989, y: -0.42970315, z: -0.23992774, w: -0.12616052} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.70000005 + value: {x: 0.52588946, y: -0.60207963, z: 0.43104294, w: 0.41850036} + inSlope: {x: 0.3182952, y: 0.5755674, z: 0.92559385, w: -0.54888195} + outSlope: {x: 0.3182952, y: 0.5755674, z: 0.92559385, w: -0.54888195} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7666667 + value: {x: 0.5594643, y: -0.5398661, z: 0.49207017, w: 0.3916777} + inSlope: {x: 0.44272056, y: 1.0049343, z: 0.6027089, w: 0.012321621} + outSlope: {x: 0.44272056, y: 1.0049343, z: 0.6027089, w: 0.012321621} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.90000004 + value: {x: 0.56796354, y: -0.44461814, z: 0.5098916, w: 0.46876717} + inSlope: {x: -0.045210462, y: 0.53861266, z: 0.059859723, w: 0.50532115} + outSlope: {x: -0.045210462, y: 0.53861266, z: 0.059859723, w: 0.50532115} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.5756475, y: -0.40081704, z: 0.51979727, w: 0.4876337} + inSlope: {x: 0.14086796, y: 0.33247265, z: 0.086681925, w: 0.019317288} + outSlope: {x: 0.14086796, y: 0.33247265, z: 0.086681925, w: 0.019317288} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.38670447, y: 0.15673171, z: -0.19996925, w: 0.886514} + inSlope: {x: 1.180458, y: 3.3661726, z: -0.22985993, w: -1.4411633} + outSlope: {x: 1.180458, y: 3.3661726, z: -0.22985993, w: -1.4411633} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.42605308, y: 0.26893747, z: -0.20763125, w: 0.8384752} + inSlope: {x: 0.9783213, y: 2.9570496, z: 0.075961046, w: -1.3677369} + outSlope: {x: 0.9783213, y: 2.9570496, z: 0.075961046, w: -1.3677369} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: 0.46451876, y: 0.4013974, z: -0.1633493, w: 0.772282} + inSlope: {x: 0.31489938, y: 0.71515685, z: 1.2055674, w: -0.29176527} + outSlope: {x: 0.31489938, y: 0.71515685, z: 1.2055674, w: -0.29176527} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.4855205, y: 0.35379145, z: -0.055346567, w: 0.79752004} + inSlope: {x: 0.42260206, y: -1.8948145, z: 1.7242429, w: 0.6687193} + outSlope: {x: 0.42260206, y: -1.8948145, z: 1.7242429, w: 0.6687193} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: 0.5010927, y: 0.2752245, z: 0.0004155269, w: 0.8204618} + inSlope: {x: 0.3924451, y: -2.3641763, z: 1.4501761, w: 0.56902516} + outSlope: {x: 0.3924451, y: -2.3641763, z: 1.4501761, w: 0.56902516} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.5121461, y: 0.13923483, z: 0.06658845, w: 0.8449178} + inSlope: {x: -0.024366084, y: -1.3395367, z: 0.5528102, w: 0.21644446} + outSlope: {x: -0.024366084, y: -1.3395367, z: 0.5528102, w: 0.21644446} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.519008, y: 0.08192757, z: 0.07599816, w: 0.84743315} + inSlope: {x: 0.42908108, y: -1.0333942, z: -0.23344484, w: -0.15830936} + outSlope: {x: 0.42908108, y: -1.0333942, z: -0.23344484, w: -0.15830936} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.5513951, y: -0.036455344, z: 0.042634554, w: 0.83235615} + inSlope: {x: 0.04993719, y: -2.5892043, z: -0.5264664, w: -0.15388271} + outSlope: {x: 0.04993719, y: -2.5892043, z: -0.5264664, w: -0.15388271} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: 0.51402754, y: -0.24400866, z: 0.0305973, w: 0.82176596} + inSlope: {x: -0.91186666, y: -3.206202, z: 0.31347463, w: -0.39178517} + outSlope: {x: -0.91186666, y: -3.206202, z: 0.31347463, w: -0.39178517} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5666667 + value: {x: 0.41870233, y: -0.50071794, z: 0.09593022, w: 0.7515101} + inSlope: {x: -0.8370414, y: -1.593873, z: 0.88081276, w: -0.6807008} + outSlope: {x: -0.8370414, y: -1.593873, z: 0.88081276, w: -0.6807008} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6333334 + value: {x: 0.38725647, y: -0.55739343, z: 0.15151477, w: 0.7186016} + inSlope: {x: 0.105663665, y: -0.10319947, z: 0.071155995, w: -0.14807472} + outSlope: {x: 0.105663665, y: -0.10319947, z: 0.071155995, w: -0.14807472} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.4008282, y: -0.54859, z: 0.13347414, w: 0.72150576} + inSlope: {x: 0.40702078, y: 0.65518826, z: -1.2919912, w: 0.4469791} + outSlope: {x: 0.40702078, y: 0.65518826, z: -1.2919912, w: 0.4469791} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.41161472, y: -0.4438741, z: -0.016373627, w: 0.79578954} + inSlope: {x: -0.22451599, y: 2.8091516, z: -1.906468, w: 1.5907984} + outSlope: {x: -0.22451599, y: 2.8091516, z: -1.906468, w: 1.5907984} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7666667 + value: {x: 0.39942345, y: -0.32643738, z: -0.06171585, w: 0.85445344} + inSlope: {x: -0.29777905, y: 4.0959997, z: -0.61545086, w: 1.5968769} + outSlope: {x: -0.29777905, y: 4.0959997, z: -0.61545086, w: 1.5968769} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000001 + value: {x: 0.39176276, y: -0.17080721, z: -0.057403717, w: 0.9022481} + inSlope: {x: 0.04463712, y: 4.529503, z: 0.5056567, w: 0.90382624} + outSlope: {x: 0.04463712, y: 4.529503, z: 0.5056567, w: 0.90382624} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.40239924, y: -0.024470517, z: -0.028005427, w: 0.91470855} + inSlope: {x: 0.75347596, y: 3.6479218, z: 0.72511685, w: -0.12302622} + outSlope: {x: 0.75347596, y: 3.6479218, z: 0.72511685, w: -0.12302622} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.86666673 + value: {x: 0.44199452, y: 0.072387524, z: -0.009062604, w: 0.8940463} + inSlope: {x: 1.3998799, y: 2.1483905, z: 0.1121736, w: -0.8194696} + outSlope: {x: 1.3998799, y: 2.1483905, z: 0.1121736, w: -0.8194696} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9333334 + value: {x: 0.5233502, y: 0.13757251, z: -0.062157962, w: 0.8386387} + inSlope: {x: -0.03887227, y: 0.50789905, z: -1.6187799, w: -0.19951573} + outSlope: {x: -0.03887227, y: 0.50789905, z: -1.6187799, w: -0.19951573} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9666667 + value: {x: 0.49313313, y: 0.15261549, z: -0.12844579, w: 0.8467762} + inSlope: {x: -2.0496879, y: 0.28738824, z: -2.0671697, w: 0.7181309} + outSlope: {x: -2.0496879, y: 0.28738824, z: -2.0671697, w: 0.7181309} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.38670444, y: 0.15673171, z: -0.19996914, w: 0.88651407} + inSlope: {x: -3.1928635, y: 0.12348679, z: -2.1457026, w: 1.1921376} + outSlope: {x: -3.1928635, y: 0.12348679, z: -2.1457026, w: 1.1921376} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.062581375, y: 0.007048403, z: -0.77126086, w: 0.6333961} + inSlope: {x: -0.05575161, y: 0.009046028, z: 0.6870871, w: 0.8121818} + outSlope: {x: -0.05575161, y: 0.009046028, z: 0.6870871, w: 0.8121818} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: 0.05951133, y: 0.0075351465, z: -0.7334255, w: 0.6771179} + inSlope: {x: -0.030903123, y: 0.0046510757, z: 0.38085842, w: 0.41813576} + outSlope: {x: -0.030903123, y: 0.0046510757, z: 0.38085842, w: 0.41813576} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.05542498, y: 0.008103586, z: -0.68306535, w: 0.7282061} + inSlope: {x: -0.07183435, y: 0.009204013, z: 0.88527274, w: 0.82691324} + outSlope: {x: -0.07183435, y: 0.009204013, z: 0.88527274, w: 0.82691324} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.044715486, y: 0.009272008, z: -0.5510784, w: 0.83320296} + inSlope: {x: -0.16492295, y: 0.014682008, z: 2.0325313, w: 1.3193126} + outSlope: {x: -0.16492295, y: 0.014682008, z: 2.0325313, w: 1.3193126} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.030409928, y: 0.010310847, z: -0.37477574, w: 0.92655927} + inSlope: {x: -0.23142913, y: 0.013085032, z: 2.852191, w: 1.1758966} + outSlope: {x: -0.23142913, y: 0.013085032, z: 2.852191, w: 1.1758966} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.017723022, y: 0.010857024, z: -0.21842216, w: 0.975633} + inSlope: {x: -0.10414883, y: 0.0035438663, z: 1.2835317, w: 0.31835297} + outSlope: {x: -0.10414883, y: 0.0035438663, z: 1.2835317, w: 0.31835297} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: 0.02265743, y: 0.01068179, z: -0.2792346, w: 0.95989615} + inSlope: {x: 0.0698502, y: -0.002722873, z: -0.860844, w: -0.24445811} + outSlope: {x: 0.0698502, y: -0.002722873, z: -0.860844, w: -0.24445811} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.023294521, y: 0.010655802, z: -0.28708512, w: 0.9575625} + inSlope: {x: -0.080574825, y: 0.0030871234, z: 0.99302596, w: 0.27710247} + outSlope: {x: -0.080574825, y: 0.0030871234, z: 0.99302596, w: 0.27710247} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.012644273, y: 0.010990596, z: -0.1558305, w: 0.98764175} + inSlope: {x: -0.18397656, y: 0.0040823235, z: 2.2673397, w: 0.3669263} + outSlope: {x: -0.18397656, y: 0.0040823235, z: 2.2673397, w: 0.3669263} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000001 + value: {x: -0.000000019174232, y: 0.011127343, z: -0.00000007581131, w: 0.99993813} + inSlope: {x: 0.035108484, y: -0.00007239177, z: -0.43269673, w: -0.0062835277} + outSlope: {x: 0.035108484, y: -0.00007239177, z: -0.43269673, w: -0.0062835277} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.0023405694, y: 0.011122731, z: -0.028846582, w: 0.9995192} + inSlope: {x: 0.24803688, y: -0.0035241963, z: -3.056856, w: -0.31685802} + outSlope: {x: 0.24803688, y: -0.0035241963, z: -3.056856, w: -0.31685802} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.86666673 + value: {x: 0.016535781, y: 0.010892397, z: -0.20379059, w: 0.97881424} + inSlope: {x: 0.52512085, y: -0.018792182, z: -6.4716544, w: -1.6888746} + outSlope: {x: 0.52512085, y: -0.018792182, z: -6.4716544, w: -1.6888746} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.90000004 + value: {x: 0.037348617, y: 0.009869919, z: -0.46029013, w: 0.88692766} + inSlope: {x: 0.5713066, y: -0.04029528, z: -7.0408154, w: -3.620997} + outSlope: {x: 0.5713066, y: -0.04029528, z: -7.0408154, w: -3.620997} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9333334 + value: {x: 0.054622885, y: 0.008206044, z: -0.67317826, w: 0.7374144} + inSlope: {x: 0.37981236, y: -0.04254417, z: -4.6808486, w: -3.82297} + outSlope: {x: 0.37981236, y: -0.04254417, z: -4.6808486, w: -3.82297} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9666667 + value: {x: 0.06266945, y: 0.007033641, z: -0.7723468, w: 0.632063} + inSlope: {x: 0.11937535, y: -0.017364303, z: -1.4712404, w: -1.5602765} + outSlope: {x: 0.11937535, y: -0.017364303, z: -1.4712404, w: -1.5602765} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.06258123, y: 0.0070484253, z: -0.77126086, w: 0.6333961} + inSlope: {x: -0.0026464488, y: 0.00044352884, z: 0.03257814, w: 0.03999356} + outSlope: {x: -0.0026464488, y: 0.00044352884, z: 0.03257814, w: 0.03999356} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.07612452, y: -0.32890165, z: -0.08499721, w: 0.93744564} + inSlope: {x: 0.110698335, y: -1.9174441, z: 1.091679, w: -0.6592619} + outSlope: {x: 0.110698335, y: -1.9174441, z: 1.091679, w: -0.6592619} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: -0.072434574, y: -0.39281645, z: -0.048607904, w: 0.91547024} + inSlope: {x: 0.05201116, y: -1.181683, z: 1.1712524, w: -0.4086372} + outSlope: {x: 0.05201116, y: -1.181683, z: 1.1712524, w: -0.4086372} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: -0.07265711, y: -0.4076805, z: -0.0069137122, w: 0.91020316} + inSlope: {x: -0.24939533, y: 0.23800887, z: 0.9861293, w: 0.09469179} + outSlope: {x: -0.24939533, y: 0.23800887, z: 0.9861293, w: 0.09469179} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: -0.12183646, y: -0.33166614, z: -0.014446995, w: 0.9353848} + inSlope: {x: -0.9865432, y: 0.9384706, z: -2.0649047, w: 0.105205186} + outSlope: {x: -0.9865432, y: 0.9384706, z: -2.0649047, w: 0.105205186} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.15483047, y: -0.3143845, z: -0.120526254, w: 0.9287967} + inSlope: {x: -0.94332683, y: 0.010861725, z: -3.79068, w: -0.74090636} + outSlope: {x: -0.94332683, y: 0.010861725, z: -3.79068, w: -0.74090636} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: -0.18472493, y: -0.33094203, z: -0.26715904, w: 0.88599104} + inSlope: {x: -0.98929715, y: -0.5621793, z: -3.9295049, w: -1.5522165} + outSlope: {x: -0.98929715, y: -0.5621793, z: -3.9295049, w: -1.5522165} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: -0.22078362, y: -0.35186312, z: -0.3824933, w: 0.8253156} + inSlope: {x: -1.0872602, y: -0.4751395, z: -2.188009, w: -1.3673563} + outSlope: {x: -1.0872602, y: -0.4751395, z: -2.188009, w: -1.3673563} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.25720894, y: -0.362618, z: -0.4130263, w: 0.79483396} + inSlope: {x: -1.1030116, y: -0.09051428, z: 0.403208, w: -0.20451844} + outSlope: {x: -1.1030116, y: -0.09051428, z: 0.403208, w: -0.20451844} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: -0.29431772, y: -0.3578974, z: -0.35561275, w: 0.81168103} + inSlope: {x: -1.2491894, y: 0.4568066, z: 2.435791, w: 0.72484916} + outSlope: {x: -1.2491894, y: 0.4568066, z: 2.435791, w: 0.72484916} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.34048823, y: -0.33216423, z: -0.25064024, w: 0.84315723} + inSlope: {x: -1.0978031, y: 0.6702233, z: 3.070352, w: 0.7636089} + outSlope: {x: -1.0978031, y: 0.6702233, z: 3.070352, w: 0.7636089} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: -0.3675046, y: -0.31321585, z: -0.15092264, w: 0.8625883} + inSlope: {x: 0.17043686, y: 0.07734841, z: 2.5062332, w: 0.58124876} + outSlope: {x: 0.17043686, y: 0.07734841, z: 2.5062332, w: 0.58124876} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: -0.32912573, y: -0.32700768, z: -0.08355797, w: 0.88190717} + inSlope: {x: 2.3975685, y: -0.5510508, z: 1.5097895, w: 0.7422993} + outSlope: {x: 2.3975685, y: -0.5510508, z: 1.5097895, w: 0.7422993} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: -0.20766668, y: -0.34995258, z: -0.05026995, w: 0.9120749} + inSlope: {x: 4.51238, y: -0.27997795, z: 0.8733774, w: 0.8351836} + outSlope: {x: 4.51238, y: -0.27997795, z: 0.8733774, w: 0.8351836} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: -0.028300423, y: -0.34567288, z: -0.025332814, w: 0.93758607} + inSlope: {x: 5.243895, y: 0.41474986, z: 1.1143696, w: 0.35330594} + outSlope: {x: 5.243895, y: 0.41474986, z: 1.1143696, w: 0.35330594} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.14192615, y: -0.3223026, z: 0.024021305, w: 0.93562865} + inSlope: {x: 3.9999156, y: 0.41198847, z: 1.7342191, w: -0.36707616} + outSlope: {x: 3.9999156, y: 0.41198847, z: 1.7342191, w: -0.36707616} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: 0.23836054, y: -0.318207, z: 0.0902818, w: 0.9131143} + inSlope: {x: 1.7237875, y: -0.3487495, z: 1.785485, w: -0.6670854} + outSlope: {x: 1.7237875, y: -0.3487495, z: 1.785485, w: -0.6670854} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.23735651, y: -0.3798471, z: 0.16897471, w: 0.87796676} + inSlope: {x: -0.6360874, y: -0.59907943, z: 0.32073742, w: -0.13352686} + outSlope: {x: -0.6360874, y: -0.59907943, z: 0.32073742, w: -0.13352686} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6333334 + value: {x: 0.21443959, y: -0.3854912, z: 0.1644362, w: 0.8822545} + inSlope: {x: -0.5828755, y: 0.50781924, z: -0.5694443, w: 0.44438154} + outSlope: {x: -0.5828755, y: 0.50781924, z: -0.5694443, w: 0.44438154} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.70000005 + value: {x: 0.18173973, y: -0.28619668, z: 0.08090571, w: 0.93729204} + inSlope: {x: -0.77546334, y: 1.2923702, z: -1.5370843, w: 0.6961583} + outSlope: {x: -0.77546334, y: 1.2923702, z: -1.5370843, w: 0.6961583} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.1468006, y: -0.2598345, z: 0.028539503, w: 0.95400274} + inSlope: {x: -1.4032354, y: -0.044784993, z: -1.4077573, w: 0.23734625} + outSlope: {x: -1.4032354, y: -0.044784993, z: -1.4077573, w: 0.23734625} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000001 + value: {x: 0.024066646, y: -0.3389208, z: -0.03739284, w: 0.9397634} + inSlope: {x: -1.6540082, y: -1.1927487, z: -0.59786135, w: -0.37994564} + outSlope: {x: -1.6540082, y: -1.1927487, z: -0.59786135, w: -0.37994564} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.86666673 + value: {x: -0.03915266, y: -0.3806344, z: -0.065548, w: 0.9215682} + inSlope: {x: -0.1607835, y: -0.44426242, z: -0.3148173, w: -0.2114797} + outSlope: {x: -0.1607835, y: -0.44426242, z: -0.3148173, w: -0.2114797} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9333334 + value: {x: -0.023329176, y: -0.41806993, z: -0.07787141, w: 0.9047704} + inSlope: {x: -0.012698501, y: -0.1108374, z: -0.08864173, w: -0.05679202} + outSlope: {x: -0.012698501, y: -0.1108374, z: -0.08864173, w: -0.05679202} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9666667 + value: {x: -0.033641994, y: -0.40570566, z: -0.07969946, w: 0.9099006} + inSlope: {x: -0.79193336, y: 1.3375254, z: -0.10688546, w: 0.49012858} + outSlope: {x: -0.79193336, y: 1.3375254, z: -0.10688546, w: 0.49012858} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.07612468, y: -0.32890165, z: -0.0849971, w: 0.9374456} + inSlope: {x: -1.2744819, y: 2.3041224, z: -0.15892953, w: 0.82635003} + outSlope: {x: -1.2744819, y: 2.3041224, z: -0.15892953, w: 0.82635003} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.1535029, y: -0.07966346, z: -0.33937132, w: 0.9246176} + inSlope: {x: 0.0000017881392, y: -0.000002235174, z: 0.0000026822088, w: 0} + outSlope: {x: 0.0000017881392, y: -0.000002235174, z: 0.0000026822088, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.1535029, y: -0.079663485, z: -0.33937135, w: 0.9246176} + inSlope: {x: 0.000001564622, y: -0.00000078231096, z: -0.0000008940701, w: -0.00000089406973} + outSlope: {x: 0.000001564622, y: -0.00000078231096, z: -0.0000008940701, w: -0.00000089406973} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: 0.1535029, y: -0.07966349, z: -0.3393713, w: 0.9246176} + inSlope: {x: 0.12878405, y: 0.52932423, z: -0.13450296, w: -0.036541525} + outSlope: {x: 0.12878405, y: 0.52932423, z: -0.13450296, w: -0.036541525} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: 0.1620885, y: -0.044375204, z: -0.34833822, w: 0.9221815} + inSlope: {x: 0.4001494, y: 1.3591009, z: -0.39307868, w: -0.17261805} + outSlope: {x: 0.4001494, y: 1.3591009, z: -0.39307868, w: -0.17261805} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.18017952, y: 0.010943229, z: -0.36557654, w: 0.9131097} + inSlope: {x: 0.43014145, y: 0.84108526, z: -0.4696356, w: -0.2551112} + outSlope: {x: 0.43014145, y: 0.84108526, z: -0.4696356, w: -0.2551112} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: 0.19076459, y: 0.01169714, z: -0.37964725, w: 0.9051741} + inSlope: {x: -0.05024202, y: -2.1258256, z: -0.35990465, w: -0.2813852} + outSlope: {x: -0.05024202, y: -2.1258256, z: -0.35990465, w: -0.2813852} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.17683005, y: -0.13077846, z: -0.38957018, w: 0.8943507} + inSlope: {x: -0.39803135, y: -3.8505783, z: -0.22535342, w: -0.5247251} + outSlope: {x: -0.39803135, y: -3.8505783, z: -0.22535342, w: -0.5247251} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: 0.16422917, y: -0.24500807, z: -0.3946708, w: 0.8701924} + inSlope: {x: -0.18901104, y: -1.713445, z: -0.07650868, w: -0.3623754} + outSlope: {x: -0.18901104, y: -1.713445, z: -0.07650868, w: -0.3623754} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.16422932, y: -0.24500813, z: -0.39467075, w: 0.87019235} + inSlope: {x: 0.00000089406774, y: -0.00000044703407, z: 0.00000044703407, + w: -0.00000089406893} + outSlope: {x: 0.00000089406774, y: -0.00000044703407, z: 0.00000044703407, + w: -0.00000089406893} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.16369903, y: -0.21988316, z: -0.38549852, w: 0.8810476} + inSlope: {x: -0.048566956, y: 1.2216341, z: 0.43089586, w: 0.47552425} + outSlope: {x: -0.048566956, y: 1.2216341, z: 0.43089586, w: 0.47552425} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5666667 + value: {x: 0.15627286, y: -0.10608522, z: -0.34740907, w: 0.9184943} + inSlope: {x: -0.11232486, y: 1.2585332, z: 0.3985976, w: 0.3408541} + outSlope: {x: -0.11232486, y: 1.2585332, z: 0.3985976, w: 0.3408541} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.15350275, y: -0.07966346, z: -0.33937132, w: 0.92461765} + inSlope: {x: -0.0000011175916, y: 0.0000022351749, z: -0.0000017881403, w: 1.5916157e-12} + outSlope: {x: -0.0000011175916, y: 0.0000022351749, z: -0.0000017881403, w: 1.5916157e-12} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.1604324, y: -0.060770642, z: -0.3480203, w: 0.9216563} + inSlope: {x: 0.33168724, y: 0.8548291, z: -0.3839398, w: -0.15887076} + outSlope: {x: 0.33168724, y: 0.8548291, z: -0.3839398, w: -0.15887076} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000001 + value: {x: 0.18885554, y: 0.007537845, z: -0.37790367, w: 0.9063474} + inSlope: {x: 0.17685463, y: 0.40534022, z: -0.17389056, w: -0.10197211} + outSlope: {x: 0.17685463, y: 0.40534022, z: -0.17389056, w: -0.10197211} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.18740569, y: 0.004347917, z: -0.37656006, w: 0.90722805} + inSlope: {x: -0.2704637, y: -0.6269229, z: 0.27024668, w: 0.15355279} + outSlope: {x: -0.2704637, y: -0.6269229, z: 0.27024668, w: 0.15355279} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.90000004 + value: {x: 0.15593511, y: -0.07291015, z: -0.34248087, w: 0.9236207} + inSlope: {x: -0.25982487, y: -0.6810976, z: 0.30773988, w: 0.12050012} + outSlope: {x: -0.25982487, y: -0.6810976, z: 0.30773988, w: 0.12050012} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9666667 + value: {x: 0.15350278, y: -0.07966346, z: -0.33937111, w: 0.9246177} + inSlope: {x: -0.0000024586939, y: -0.00000044703523, z: -0.00000089407047, + w: 0} + outSlope: {x: -0.0000024586939, y: -0.00000044703523, z: -0.00000089407047, + w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.1535028, y: -0.07966355, z: -0.3393713, w: 0.9246176} + inSlope: {x: 0.0000008940705, y: -0.0000026822115, z: -0.000005364423, w: -0.000003576282} + outSlope: {x: 0.0000008940705, y: -0.0000026822115, z: -0.000005364423, w: -0.000003576282} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.15147088, y: -0.1606979, z: 0.21300314, w: 0.9517681} + inSlope: {x: -0.0000013411044, y: -0.0000004470348, z: -0.0000075995918, w: 0.0000017881392} + outSlope: {x: -0.0000013411044, y: -0.0000004470348, z: -0.0000075995918, + w: 0.0000017881392} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: 0.15147083, y: -0.16069792, z: 0.21300314, w: 0.9517681} + inSlope: {x: -0.01548439, y: -0.014636365, z: -0.12810966, w: 0.02804428} + outSlope: {x: -0.01548439, y: -0.014636365, z: -0.12810966, w: 0.02804428} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: 0.15043855, y: -0.16167368, z: 0.20446225, w: 0.9536378} + inSlope: {x: -0.114358224, y: -0.10899649, z: -0.9465214, w: 0.17826141} + outSlope: {x: -0.114358224, y: -0.10899649, z: -0.9465214, w: 0.17826141} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.13484202, y: -0.17664312, z: 0.076394364, w: 0.9719973} + inSlope: {x: -0.24517265, y: -0.23423773, z: -1.9109638, w: 0.16183108} + outSlope: {x: -0.24517265, y: -0.23423773, z: -1.9109638, w: 0.16183108} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: 0.12228706, y: -0.18699676, z: 0.0034599965, w: 0.9747133} + inSlope: {x: -0.1303738, y: -0.09569698, z: -0.3339938, w: 0.0020322206} + outSlope: {x: -0.1303738, y: -0.09569698, z: -0.3339938, w: 0.0020322206} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.1158058, y: -0.19250488, z: 0.008598799, w: 0.9744008} + inSlope: {x: 0.0000006705512, y: -0.0000004470363, z: 0.0000005029132, w: 0} + outSlope: {x: 0.0000006705512, y: -0.0000004470363, z: 0.0000005029132, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5666667 + value: {x: 0.12569125, y: -0.18499835, z: 0.020330938, w: 0.9744558} + inSlope: {x: 0.08725, y: 0.06761132, z: 0.10430498, w: -0.00029861942} + outSlope: {x: 0.08725, y: 0.06761132, z: 0.10430498, w: -0.00029861942} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.12421488, y: -0.18581639, z: 0.011569008, w: 0.9746328} + inSlope: {x: -0.11717944, y: -0.08277654, z: -0.34385663, w: 0.002929869} + outSlope: {x: -0.11717944, y: -0.08277654, z: -0.34385663, w: 0.002929869} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000001 + value: {x: 0.11767263, y: -0.191019, z: 0.00032041705, w: 0.97450745} + inSlope: {x: 0.01508772, y: 0.007111488, z: 0.42474067, w: -0.006471279} + outSlope: {x: 0.01508772, y: 0.007111488, z: 0.42474067, w: -0.006471279} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.12069605, y: -0.18862447, z: 0.027896278, w: 0.97420484} + inSlope: {x: 0.27299386, y: 0.23393051, z: 1.7901132, w: -0.10208748} + outSlope: {x: 0.27299386, y: 0.23393051, z: 1.7901132, w: -0.10208748} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.86666673 + value: {x: 0.13587223, y: -0.17542362, z: 0.11966135, w: 0.9677016} + inSlope: {x: 0.42832756, y: 0.38627812, z: 2.5774517, w: -0.29372078} + outSlope: {x: 0.42832756, y: 0.38627812, z: 2.5774517, w: -0.29372078} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.90000004 + value: {x: 0.14925122, y: -0.1628726, z: 0.1997264, w: 0.95462346} + inSlope: {x: 0.23397842, y: 0.22088498, z: 1.4001254, w: -0.23900285} + outSlope: {x: 0.23397842, y: 0.22088498, z: 1.4001254, w: -0.23900285} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9333334 + value: {x: 0.15147078, y: -0.16069797, z: 0.21300298, w: 0.9517681} + inSlope: {x: 0.03329647, y: 0.03262033, z: 0.19914961, w: -0.04283037} + outSlope: {x: 0.03329647, y: 0.03262033, z: 0.19914961, w: -0.04283037} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.15147091, y: -0.16069782, z: 0.21300295, w: 0.9517681} + inSlope: {x: -0.0000022351762, y: 0.0000026822115, z: -0.0000031292468, w: 0} + outSlope: {x: -0.0000022351762, y: 0.0000026822115, z: -0.0000031292468, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.22304888, y: -0.038173817, z: -0.1549756, w: 0.961652} + inSlope: {x: 1.4414544, y: 0.3582399, z: 2.6503308, w: 0.6092637} + outSlope: {x: 1.4414544, y: 0.3582399, z: 2.6503308, w: 0.6092637} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: -0.1750004, y: -0.026232487, z: -0.06663123, w: 0.9819608} + inSlope: {x: 1.9638278, y: 0.48206854, z: 3.52212, w: 0.4630735} + outSlope: {x: 1.9638278, y: 0.48206854, z: 3.52212, w: 0.4630735} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: -0.09212702, y: -0.006035913, z: 0.0798324, w: 0.99252355} + inSlope: {x: 1.6481018, y: 0.33806485, z: 2.8131795, w: 0.12834905} + outSlope: {x: 1.6481018, y: 0.33806485, z: 2.8131795, w: 0.12834905} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: -0.06512693, y: -0.0036948298, z: 0.120914064, w: 0.9905174} + inSlope: {x: 0.254411, y: -0.4061411, z: -0.102078676, w: 0.021276185} + outSlope: {x: 0.254411, y: -0.4061411, z: -0.102078676, w: 0.021276185} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: -0.07516628, y: -0.033111986, z: 0.073027164, w: 0.99394196} + inSlope: {x: -0.53558373, y: -1.107527, z: -1.8822455, w: 0.02025068} + outSlope: {x: -0.53558373, y: -1.107527, z: -1.8822455, w: 0.02025068} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.100832514, y: -0.07752996, z: -0.004568963, w: 0.9918674} + inSlope: {x: -0.7359431, y: -1.19469, z: -2.0532148, w: -0.15279199} + outSlope: {x: -0.7359431, y: -1.19469, z: -2.0532148, w: -0.15279199} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: -0.124229155, y: -0.112757996, z: -0.06385384, w: 0.9837558} + inSlope: {x: -0.5153855, y: -0.7646682, z: -1.2856354, w: -0.20360377} + outSlope: {x: -0.5153855, y: -0.7646682, z: -1.2856354, w: -0.20360377} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.14409111, y: -0.13507397, z: -0.10728251, w: 0.9744143} + inSlope: {x: -0.3071494, y: -0.16281144, z: -0.5831971, w: -0.13396741} + outSlope: {x: -0.3071494, y: -0.16281144, z: -0.5831971, w: -0.13396741} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: -0.15566818, y: -0.13936195, z: -0.12915781, w: 0.9693627} + inSlope: {x: -0.49325848, y: -0.121458486, z: -0.984076, w: -0.2420828} + outSlope: {x: -0.49325848, y: -0.121458486, z: -0.984076, w: -0.2420828} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: -0.19062851, y: -0.14431456, z: -0.20202155, w: 0.9497481} + inSlope: {x: -0.20480277, y: -0.017151164, z: -0.43700877, w: -0.12791099} + outSlope: {x: -0.20480277, y: -0.017151164, z: -0.43700877, w: -0.12791099} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: -0.19062865, y: -0.14431457, z: -0.20202142, w: 0.94974804} + inSlope: {x: 0.00000067055237, y: 0.0000013411046, z: -0.0000013411046, w: 0} + outSlope: {x: 0.00000067055237, y: 0.0000013411046, z: -0.0000013411046, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.18045598, y: -0.13914792, z: -0.1808113, w: 0.95675534} + inSlope: {x: 0.4924304, y: 0.24364443, z: 1.026415, w: 0.30338907} + outSlope: {x: 0.4924304, y: 0.24364443, z: 1.026415, w: 0.30338907} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5666667 + value: {x: -0.13479285, y: -0.11743485, z: -0.085755706, w: 0.9801459} + inSlope: {x: 0.503559, y: 0.22970375, z: 1.0461012, w: 0.2067276} + outSlope: {x: 0.503559, y: 0.22970375, z: 1.0461012, w: 0.2067276} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.124229275, y: -0.112757996, z: -0.06385386, w: 0.98375577} + inSlope: {x: 0.0000016763798, y: 0.00000033527564, z: 0.00000078230823, w: 0.00000089406893} + outSlope: {x: 0.0000016763798, y: 0.00000033527564, z: 0.00000078230823, w: 0.00000089406893} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.12658831, y: -0.12072492, z: -0.07449404, w: 0.9817594} + inSlope: {x: -0.1804396, y: -0.29649583, z: -0.4996392, w: -0.10209468} + outSlope: {x: -0.1804396, y: -0.29649583, z: -0.4996392, w: -0.10209468} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000001 + value: {x: -0.15099248, y: -0.13797915, z: -0.12002235, w: 0.9714719} + inSlope: {x: -0.4546184, y: 0.07365122, z: -0.57257473, w: -0.12935576} + outSlope: {x: -0.4546184, y: 0.07365122, z: -0.57257473, w: -0.12935576} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.16656639, y: -0.12761429, z: -0.13533467, w: 0.9683258} + inSlope: {x: -0.6770055, y: 0.80404294, z: -0.39416713, w: -0.083201244} + outSlope: {x: -0.6770055, y: 0.80404294, z: -0.39416713, w: -0.083201244} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.90000004 + value: {x: -0.21934913, y: -0.04486863, z: -0.15381424, w: 0.9624001} + inSlope: {x: -0.40383995, y: 0.6930374, z: -0.13013238, w: -0.06409769} + outSlope: {x: -0.40383995, y: 0.6930374, z: -0.13013238, w: -0.06409769} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9666667 + value: {x: -0.22304891, y: -0.03817391, z: -0.15497549, w: 0.961652} + inSlope: {x: -0.0000006705528, y: -0.00000050291465, z: 0.0000033527645, w: 0.0000008940705} + outSlope: {x: -0.0000006705528, y: -0.00000050291465, z: 0.0000033527645, + w: 0.0000008940705} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1 + value: {x: -0.22304888, y: -0.038173832, z: -0.15497541, w: 0.96165204} + inSlope: {x: 0.0000008940705, y: 0.0000023469352, z: 0.0000022351762, w: 0.000001788141} + outSlope: {x: 0.0000008940705, y: 0.0000023469352, z: 0.0000022351762, w: 0.000001788141} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2/mixamorig:LeftHandThumb3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.5092769, y: 0.045798853, z: -0.01321961, w: 0.85928154} + inSlope: {x: 1.7908179, y: -0.18594603, z: 0.16496305, w: -1.1374247} + outSlope: {x: 1.7908179, y: -0.18594603, z: 0.16496305, w: -1.1374247} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.56897086, y: 0.03960065, z: -0.007720841, w: 0.8213674} + inSlope: {x: 2.0832412, y: -0.229049, z: 0.1996657, w: -1.4758381} + outSlope: {x: 2.0832412, y: -0.229049, z: 0.1996657, w: -1.4758381} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: 0.6481597, y: 0.03052892, z: 0.00009143736, w: 0.76089233} + inSlope: {x: 0.8992391, y: -0.0945515, z: 0.03756457, w: -0.66942483} + outSlope: {x: 0.8992391, y: -0.0945515, z: 0.03756457, w: -0.66942483} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: 0.62892014, y: 0.03329722, z: -0.005216537, w: 0.77673906} + inSlope: {x: -1.987634, y: 0.21897216, z: -0.56794727, w: 1.4082475} + outSlope: {x: -1.987634, y: 0.21897216, z: -0.56794727, w: 1.4082475} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.51565075, y: 0.045127064, z: -0.037771717, w: 0.8547755} + inSlope: {x: -4.0507665, y: 0.24843381, z: -1.1238501, w: 2.277969} + outSlope: {x: -4.0507665, y: 0.24843381, z: -1.1238501, w: 2.277969} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.35886905, y: 0.04985947, z: -0.080139875, w: 0.92860365} + inSlope: {x: -4.300564, y: 0.0050629824, z: -1.1040412, w: 1.6680281} + outSlope: {x: -4.300564, y: 0.0050629824, z: -1.1040412, w: 1.6680281} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: 0.22894643, y: 0.045464594, z: -0.111374475, w: 0.9659774} + inSlope: {x: -2.8602679, y: -0.1288409, z: -0.71133375, w: 0.71987695} + outSlope: {x: -2.8602679, y: -0.1288409, z: -0.71133375, w: 0.71987695} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: 0.16818447, y: 0.041270077, z: -0.12756214, w: 0.97659546} + inSlope: {x: -1.3568577, y: -0.10577661, z: -0.40909714, w: 0.20821275} + outSlope: {x: -1.3568577, y: -0.10577661, z: -0.40909714, w: 0.20821275} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: 0.10075645, y: 0.033858843, z: -0.14823668, w: 0.9832231} + inSlope: {x: -1.7777848, y: -0.24071461, z: -0.28086644, w: 0.108388074} + outSlope: {x: -1.7777848, y: -0.24071461, z: -0.28086644, w: 0.108388074} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.019970285, y: 0.02236518, z: -0.15737204, w: 0.9870841} + inSlope: {x: -2.0132453, y: -0.2837399, z: -0.18965454, w: 0.04605532} + outSlope: {x: -2.0132453, y: -0.2837399, z: -0.18965454, w: 0.04605532} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: -0.033459898, y: 0.014942852, z: -0.16088031, w: 0.98629344} + inSlope: {x: -0.80145377, y: -0.111333154, z: -0.052624498, w: -0.011859835} + outSlope: {x: -0.80145377, y: -0.111333154, z: -0.052624498, w: -0.011859835} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: -0.03345996, y: 0.014942971, z: -0.16088034, w: 0.98629344} + inSlope: {x: 0.00000094994994, y: -0.0000028777886, z: -0.0000013411042, w: 0} + outSlope: {x: 0.00000094994994, y: -0.0000028777886, z: -0.0000013411042, + w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: -0.033459835, y: 0.01494266, z: -0.1608804, w: 0.98629344} + inSlope: {x: 0.0000015087427, y: -0.000003408641, z: -0.0000011175872, w: -0.00000089406973} + outSlope: {x: 0.0000015087427, y: -0.000003408641, z: -0.0000011175872, w: -0.00000089406973} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.008022765, y: 0.020797392, z: -0.15458035, w: 0.9877287} + inSlope: {x: 1.9848669, y: 0.2704973, z: 0.33165437, w: -0.022018196} + outSlope: {x: 1.9848669, y: 0.2704973, z: 0.33165437, w: -0.022018196} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: 0.09886462, y: 0.0329759, z: -0.13877012, w: 0.9848255} + inSlope: {x: 2.7095203, y: 0.32424346, z: 0.51248735, w: -0.21029127} + outSlope: {x: 2.7095203, y: 0.32424346, z: 0.51248735, w: -0.21029127} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5666667 + value: {x: 0.18865761, y: 0.04241364, z: -0.1204145, w: 0.9737093} + inSlope: {x: 1.9512253, y: 0.18732981, z: 0.41093433, w: -0.2827218} + outSlope: {x: 1.9512253, y: 0.18732981, z: 0.41093433, w: -0.2827218} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6333334 + value: {x: 0.22894646, y: 0.045464527, z: -0.11137462, w: 0.9659774} + inSlope: {x: 0.00000067054975, y: 0.00000072643314, z: 0.000002011662, w: 0} + outSlope: {x: 0.00000067054975, y: 0.00000072643314, z: 0.000002011662, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.22894639, y: 0.04546461, z: -0.111374356, w: 0.9659774} + inSlope: {x: -0.0000024586916, y: 0.000002123416, z: 0.00000022352424, w: 0} + outSlope: {x: -0.0000024586916, y: 0.000002123416, z: 0.00000022352424, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.70000005 + value: {x: 0.2289463, y: 0.04546467, z: -0.1113746, w: 0.9659774} + inSlope: {x: -0.5401612, y: -0.040328335, z: -0.16180608, w: 0.09989361} + outSlope: {x: -0.5401612, y: -0.040328335, z: -0.16180608, w: 0.09989361} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.19293568, y: 0.042776056, z: -0.12216142, w: 0.97263694} + inSlope: {x: -1.5576229, y: -0.14205968, z: -0.44942594, w: 0.23081481} + outSlope: {x: -1.5576229, y: -0.14205968, z: -0.44942594, w: 0.23081481} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000001 + value: {x: 0.0879197, y: 0.031690273, z: -0.15136245, w: 0.98405045} + inSlope: {x: 0.40295434, y: 0.06501469, z: 0.09936614, w: -0.045507368} + outSlope: {x: 0.40295434, y: 0.06501469, z: 0.09936614, w: -0.045507368} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.15196829, y: 0.04032832, z: -0.13471195, w: 0.9783312} + inSlope: {x: 3.6832428, y: 0.3279946, z: 1.0927155, w: -0.69138455} + outSlope: {x: 3.6832428, y: 0.3279946, z: 1.0927155, w: -0.69138455} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.86666673 + value: {x: 0.3334693, y: 0.053556584, z: -0.07851472, w: 0.9379581} + inSlope: {x: 4.9985037, y: 0.11927564, z: 1.6790862, w: -1.5834005} + outSlope: {x: 4.9985037, y: 0.11927564, z: 1.6790862, w: -1.5834005} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.90000004 + value: {x: 0.4852019, y: 0.048280045, z: -0.022772873, w: 0.8727712} + inSlope: {x: 2.6371162, y: -0.11636752, z: 0.9794249, w: -1.1801496} + outSlope: {x: 2.6371162, y: -0.11636752, z: 0.9794249, w: -1.1801496} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9333334 + value: {x: 0.5092769, y: 0.045798752, z: -0.013219771, w: 0.85928154} + inSlope: {x: 0.36112338, y: -0.037218805, z: 0.1432988, w: -0.2023439} + outSlope: {x: 0.36112338, y: -0.037218805, z: 0.1432988, w: -0.2023439} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.50927687, y: 0.0457989, z: -0.013219682, w: 0.85928154} + inSlope: {x: 0.000001788141, y: 0.0000033527645, z: -0.0000021234175, w: -0.000001788141} + outSlope: {x: 0.000001788141, y: 0.0000033527645, z: -0.0000021234175, w: -0.000001788141} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.5017669, y: -0.004508151, z: 0.06937988, w: 0.8622042} + inSlope: {x: 0, y: -0.00000058673317, z: 0.000004470348, w: 0} + outSlope: {x: 0, y: -0.00000058673317, z: 0.000004470348, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.49896395, y: -0.0045167673, z: 0.06899244, w: 0.8638603} + inSlope: {x: -0.270305, y: -0.0008202042, z: -0.037375804, w: 0.15652211} + outSlope: {x: -0.270305, y: -0.0008202042, z: -0.037375804, w: 0.15652211} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: 0.44616258, y: -0.0046681846, z: 0.061691422, w: 0.89281094} + inSlope: {x: -1.7102572, y: -0.00432071, z: -0.23647681, w: 0.8264583} + outSlope: {x: -1.7102572, y: -0.00432071, z: -0.23647681, w: 0.8264583} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.26464054, y: -0.0050385366, z: 0.03659228, w: 0.9636395} + inSlope: {x: -3.1140666, y: -0.0046118423, z: -0.43058854, w: 0.882066} + outSlope: {x: -3.1140666, y: -0.0046118423, z: -0.43058854, w: 0.882066} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: 0.16221555, y: -0.0051579517, z: 0.022429697, w: 0.9864869} + inSlope: {x: -3.0902832, y: -0.0027132642, z: -0.42729783, w: 0.5189136} + outSlope: {x: -3.0902832, y: -0.0027132642, z: -0.42729783, w: 0.5189136} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: 0.000000015254331, y: -0.0052285427, z: -0.00000008797138, w: 0.99998635} + inSlope: {x: -0.8793228, y: -0.000138029, z: -0.12158608, w: 0.026289226} + outSlope: {x: -0.8793228, y: -0.000138029, z: -0.12158608, w: 0.026289226} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.00000015413809, y: -0.005228623, z: 0.00000001911378, w: 0.99998635} + inSlope: {x: 0.0000026621265, y: -0.0000017811535, z: 0.0000012611309, w: 0} + outSlope: {x: 0.0000026621265, y: -0.0000017811535, z: 0.0000012611309, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: 0.00000019272954, y: -0.0052286615, z: -0.000000003895889, w: 0.99998635} + inSlope: {x: 0.0000028399181, y: 0.00000026542693, z: 0.0000003048309, w: 0} + outSlope: {x: 0.0000028399181, y: 0.00000026542693, z: 0.0000003048309, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: 0.00000034346596, y: -0.005228605, z: 0.00000003943584, w: 0.99998635} + inSlope: {x: 1.0813843, y: 0.00021087492, z: 0.14952308, w: -0.039777197} + outSlope: {x: 1.0813843, y: 0.00021087492, z: 0.14952308, w: -0.039777197} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.07209241, y: -0.005214603, z: 0.009968191, w: 0.99733454} + inSlope: {x: 3.4379475, y: 0.0021287296, z: 0.47537094, w: -0.4070339} + outSlope: {x: 3.4379475, y: 0.0021287296, z: 0.47537094, w: -0.4070339} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: 0.22919689, y: -0.0050866897, z: 0.031691443, w: 0.97285074} + inSlope: {x: 4.6256156, y: 0.005805078, z: 0.6395906, w: -1.1107519} + outSlope: {x: 4.6256156, y: 0.005805078, z: 0.6395906, w: -1.1107519} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5666667 + value: {x: 0.38046703, y: -0.0048275976, z: 0.052607603, w: 0.92328435} + inSlope: {x: 3.2544851, y: 0.0062780795, z: 0.44999987, w: -1.2005978} + outSlope: {x: 3.2544851, y: 0.0062780795, z: 0.44999987, w: -1.2005978} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.44616264, y: -0.004668151, z: 0.061691444, w: 0.8928109} + inSlope: {x: 0.98543644, y: 0.0023918413, z: 0.13625924, w: -0.4571025} + outSlope: {x: 0.98543644, y: 0.0023918413, z: 0.13625924, w: -0.4571025} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6333334 + value: {x: 0.44616273, y: -0.0046681417, z: 0.061691545, w: 0.8928109} + inSlope: {x: 0.0000008940681, y: -0.0000019138702, z: -0.00000033527908, w: 0} + outSlope: {x: 0.0000008940681, y: -0.0000019138702, z: -0.00000033527908, + w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.4461627, y: -0.0046682786, z: 0.061691422, w: 0.8928109} + inSlope: {x: -7.9580786e-13, y: 0.00000013969452, z: 0.00000027939325, w: 0} + outSlope: {x: -7.9580786e-13, y: 0.00000013969452, z: 0.00000027939325, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.70000005 + value: {x: 0.44616273, y: -0.0046681324, z: 0.061691564, w: 0.8928109} + inSlope: {x: -0.85752094, y: -0.0021044745, z: -0.118570626, w: 0.40267596} + outSlope: {x: -0.85752094, y: -0.0021044745, z: -0.118570626, w: 0.40267596} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.3889947, y: -0.004808577, z: 0.05378672, w: 0.9196559} + inSlope: {x: -2.659106, y: -0.0054623177, z: -0.36767957, w: 1.0444396} + outSlope: {x: -2.659106, y: -0.0054623177, z: -0.36767957, w: 1.0444396} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7666667 + value: {x: 0.26888895, y: -0.005032287, z: 0.037179586, w: 0.9624402} + inSlope: {x: -3.2522125, y: -0.00510783, z: -0.44968617, w: 0.9766246} + outSlope: {x: -3.2522125, y: -0.00510783, z: -0.44968617, w: 0.9766246} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000001 + value: {x: 0.17218034, y: -0.005149099, z: 0.023807617, w: 0.9847643} + inSlope: {x: -1.1141748, y: -0.0014133896, z: -0.15405934, w: 0.27086702} + outSlope: {x: -1.1141748, y: -0.0014133896, z: -0.15405934, w: 0.27086702} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.19461052, y: -0.005126513, z: 0.026908949, w: 0.980498} + inSlope: {x: 2.5755134, y: 0.0036837321, z: 0.35612196, w: -0.7045282} + outSlope: {x: 2.5755134, y: 0.0036837321, z: 0.35612196, w: -0.7045282} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.86666673 + value: {x: 0.34388134, y: -0.0049035167, z: 0.047549095, w: 0.9377957} + inSlope: {x: 4.272787, y: 0.008268889, z: 0.59080595, w: -1.5818349} + outSlope: {x: 4.272787, y: 0.008268889, z: 0.59080595, w: -1.5818349} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.90000004 + value: {x: 0.47946298, y: -0.004575254, z: 0.06629601, w: 0.8750424} + inSlope: {x: 2.3682847, y: 0.005931688, z: 0.32746238, w: -1.1338724} + outSlope: {x: 2.3682847, y: 0.005931688, z: 0.32746238, w: -1.1338724} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9333334 + value: {x: 0.50176686, y: -0.004508071, z: 0.0693799, w: 0.86220425} + inSlope: {x: 0.33455792, y: 0.0010067775, z: 0.04625812, w: -0.19257171} + outSlope: {x: 0.33455792, y: 0.0010067775, z: 0.04625812, w: -0.19257171} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.5017668, y: -0.0045080907, z: 0.06937986, w: 0.86220425} + inSlope: {x: -0.000001788141, y: 0.0000013411058, z: -0.0000008940705, w: 0} + outSlope: {x: -0.000001788141, y: 0.0000013411058, z: -0.0000008940705, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.29718536, y: -0.000000023396783, z: 0.039509848, w: 0.954002} + inSlope: {x: -0.0000017881392, y: -0.0000005521629, z: -0.0000053644176, w: 0.0000017881392} + outSlope: {x: -0.0000017881392, y: -0.0000005521629, z: -0.0000053644176, + w: 0.0000017881392} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: 0.29718536, y: -0.000000025297124, z: 0.039509762, w: 0.954002} + inSlope: {x: -0.19517449, y: 0.00000012024174, z: -0.025946122, w: 0.060391713} + outSlope: {x: -0.19517449, y: 0.00000012024174, z: -0.025946122, w: 0.060391713} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: 0.28417367, y: -0.000000033786097, z: 0.037779927, w: 0.9580282} + inSlope: {x: -1.4586095, y: 0.00000058036574, z: -0.19391805, w: 0.38166854} + outSlope: {x: -1.4586095, y: 0.00000058036574, z: -0.19391805, w: 0.38166854} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.19994473, y: 0.000000013393918, z: 0.026581893, w: 0.9794466} + inSlope: {x: -3.008048, y: 0.0000005022914, z: -0.3999091, w: 0.5760912} + outSlope: {x: -3.008048, y: 0.0000005022914, z: -0.3999091, w: 0.5760912} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.08363714, y: -3.0000405e-10, z: 0.011119321, w: 0.9964343} + inSlope: {x: -3.087864, y: 0.00000051848275, z: -0.410518, w: 0.30803472} + outSlope: {x: -3.087864, y: 0.00000051848275, z: -0.410518, w: 0.30803472} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: -0.0059128893, y: 0.000000047959453, z: -0.00078597665, w: 0.99998224} + inSlope: {x: -1.9643104, y: -0.0000002656185, z: -0.26115063, w: 0.03638772} + outSlope: {x: -1.9643104, y: -0.0000002656185, z: -0.26115063, w: 0.03638772} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.0675102, y: 0.000000057764325, z: -0.008975202, w: 0.9976782} + inSlope: {x: -0.47310862, y: 0.00000030076262, z: -0.0628979, w: -0.030440394} + outSlope: {x: -0.47310862, y: 0.00000030076262, z: -0.0628979, w: -0.030440394} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: -0.074462146, y: -0.000000009114701, z: -0.009899609, w: 0.99717474} + inSlope: {x: 0.00000044703427, y: -0.0000010805466, z: -0.0000018440164, w: 0} + outSlope: {x: 0.00000044703427, y: -0.0000010805466, z: -0.0000018440164, + w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.063766606, y: -0.00000003497311, z: -0.008477533, w: 0.99792886} + inSlope: {x: 0.5137587, y: 0.0000007571753, z: 0.06830224, w: 0.030033585} + outSlope: {x: 0.5137587, y: 0.0000007571753, z: 0.06830224, w: 0.030033585} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.005912825, y: 0.000000098639916, z: -0.00078617106, w: 0.99998224} + inSlope: {x: 0.16081367, y: -0.0000017800126, z: 0.0213809, w: 0.0018453615} + outSlope: {x: 0.16081367, y: -0.0000017800126, z: 0.0213809, w: 0.0018453615} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.005912925, y: -0.00000003673094, z: -0.0007860362, w: 0.99998224} + inSlope: {x: -0.00000011175803, y: -0.00000094342056, z: 0.00000028900064, + w: 0} + outSlope: {x: -0.00000011175803, y: -0.00000094342056, z: 0.00000028900064, + w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.031207817, y: 0.00000013681867, z: -0.0041490803, w: 0.9995043} + inSlope: {x: -1.0527557, y: 0.0000012647995, z: -0.13996106, w: -0.043996252} + outSlope: {x: -1.0527557, y: 0.0000012647995, z: -0.13996106, w: -0.043996252} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000001 + value: {x: -0.09423323, y: -0.00000004084472, z: -0.012527955, w: 0.99547136} + inSlope: {x: 0.6566906, y: 0.0000009656662, z: 0.08730446, w: 0.03628947} + outSlope: {x: 0.6566906, y: 0.0000009656662, z: 0.08730446, w: 0.03628947} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.03231738, y: -0.000000009387849, z: -0.004296463, w: 0.99946845} + inSlope: {x: 3.377678, y: 0.0000002033814, z: 0.44904882, w: -0.063519016} + outSlope: {x: 3.377678, y: 0.0000002033814, z: 0.44904882, w: -0.063519016} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.86666673 + value: {x: 0.13094537, y: -0.000000027286005, z: 0.017408643, w: 0.99123675} + inSlope: {x: 4.5902944, y: 0.0000006955082, z: 0.6102636, w: -0.57513833} + outSlope: {x: 4.5902944, y: 0.0000006955082, z: 0.6102636, w: -0.57513833} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.90000004 + value: {x: 0.27370223, y: 0.00000003697929, z: 0.036387775, w: 0.9611259} + inSlope: {x: 2.4936008, y: 0.0000008131263, z: 0.3315156, w: -0.5585203} + outSlope: {x: 2.4936008, y: 0.0000008131263, z: 0.3315156, w: -0.5585203} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9333334 + value: {x: 0.2971853, y: 0.000000026922343, z: 0.03950967, w: 0.9540021} + inSlope: {x: 0.3522466, y: -0.000000911683, z: 0.0468296, w: -0.10685822} + outSlope: {x: 0.3522466, y: -0.000000911683, z: 0.0468296, w: -0.10685822} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.29718533, y: -0.000000016021497, z: 0.03950984, w: 0.954002} + inSlope: {x: -0.0000008940705, y: 0.00000023334141, z: 0.0000026822115, w: 0} + outSlope: {x: -0.0000008940705, y: 0.00000023334141, z: 0.0000026822115, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2/mixamorig:LeftHandIndex3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.5268828, y: 0.052441016, z: 0.008138224, w: 0.8482796} + inSlope: {x: 1.7537175, y: 0.060417537, z: 0.29996195, w: -1.1857741} + outSlope: {x: 1.7537175, y: 0.060417537, z: 0.29996195, w: -1.1857741} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.5853401, y: 0.054454934, z: 0.018136956, w: 0.8087538} + inSlope: {x: 2.0265393, y: 0.03621222, z: 0.3928557, w: -1.5234239} + outSlope: {x: 2.0265393, y: 0.03621222, z: 0.3928557, w: -1.5234239} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: 0.66198546, y: 0.054855164, z: 0.034328606, w: 0.746718} + inSlope: {x: 0.83785677, y: -0.03089267, z: 0.22058626, w: -0.6580987} + outSlope: {x: 0.83785677, y: -0.03089267, z: 0.22058626, w: -0.6580987} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: 0.6411972, y: 0.052395422, z: 0.032842707, w: 0.76488054} + inSlope: {x: -2.0404868, y: -0.12662071, z: -0.24614567, w: 1.5350882} + outSlope: {x: -2.0404868, y: -0.12662071, z: -0.24614567, w: 1.5350882} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.525953, y: 0.046413783, z: 0.017918896, w: 0.8490572} + inSlope: {x: -4.111629, y: -0.22110394, z: -0.40854952, w: 2.4678907} + outSlope: {x: -4.111629, y: -0.22110394, z: -0.40854952, w: 2.4678907} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.36708862, y: 0.03765516, z: 0.005606074, w: 0.9294066} + inSlope: {x: -4.3547945, y: -0.21616176, z: -0.23996557, w: 1.8338377} + outSlope: {x: -4.3547945, y: -0.21616176, z: -0.23996557, w: 1.8338377} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: 0.23563333, y: 0.032002997, z: 0.0019211905, w: 0.97131306} + inSlope: {x: -2.896028, y: -0.11259326, z: -0.03867566, w: 0.8230383} + outSlope: {x: -2.896028, y: -0.11259326, z: -0.03867566, w: 0.8230383} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: 0.17402004, y: 0.03014894, z: 0.0030276952, w: 0.9842758} + inSlope: {x: -1.3793027, y: -0.03711409, z: 0.035516974, w: 0.26791874} + outSlope: {x: -1.3793027, y: -0.03711409, z: 0.035516974, w: 0.26791874} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: 0.10460261, y: 0.029541884, z: 0.0022978485, w: 0.9940726} + inSlope: {x: -1.8551706, y: 0.012477051, z: -0.18310997, w: 0.15199812} + outSlope: {x: -1.8551706, y: 0.012477051, z: -0.18310997, w: 0.15199812} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.020001778, y: 0.030360527, z: -0.007918341, w: 0.9993075} + inSlope: {x: -2.1120222, y: 0.019120324, z: -0.2682646, w: 0.070127256} + outSlope: {x: -2.1120222, y: 0.019120324, z: -0.2682646, w: 0.070127256} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: -0.03619885, y: 0.030816572, z: -0.015586456, w: 0.99874777} + inSlope: {x: -0.8430079, y: 0.00684307, z: -0.11501968, w: -0.008396209} + outSlope: {x: -0.8430079, y: 0.00684307, z: -0.11501968, w: -0.008396209} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: -0.036198743, y: 0.030816732, z: -0.015586319, w: 0.99874777} + inSlope: {x: 0.000000055877877, y: 0.0000008102485, z: 0.0000018160772, w: 0} + outSlope: {x: 0.000000055877877, y: 0.0000008102485, z: 0.0000018160772, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: -0.036198847, y: 0.030816626, z: -0.015586335, w: 0.99874777} + inSlope: {x: -0.0000023469331, y: -0.0000028498473, z: -0.0000012991951, w: 0} + outSlope: {x: -0.0000023469331, y: -0.0000028498473, z: -0.0000012991951, + w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.006673654, y: 0.030503549, z: -0.013610139, w: 0.9994197} + inSlope: {x: 2.0550938, y: -0.0032688363, z: 0.10783196, w: -0.065217845} + outSlope: {x: 2.0550938, y: -0.0032688363, z: 0.10783196, w: -0.065217845} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: 0.10080739, y: 0.03059862, z: -0.008397606, w: 0.9943999} + inSlope: {x: 2.808495, y: 0.014529458, z: 0.1787427, w: -0.2835924} + outSlope: {x: 2.808495, y: 0.014529458, z: 0.1787427, w: -0.2835924} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5666667 + value: {x: 0.19390681, y: 0.03147218, z: -0.0016939483, w: 0.9805135} + inSlope: {x: 2.0223885, y: 0.021064864, z: 0.15478185, w: -0.34630263} + outSlope: {x: 2.0223885, y: 0.021064864, z: 0.15478185, w: -0.34630263} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6333334 + value: {x: 0.23563342, y: 0.032002814, z: 0.0019210525, w: 0.97131306} + inSlope: {x: -0.00000022352037, y: 0.00000078231506, z: 0.0000011472775, w: 0} + outSlope: {x: -0.00000022352037, y: 0.00000078231506, z: 0.0000011472775, + w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.2356333, y: 0.032002997, z: 0.0019212617, w: 0.97131306} + inSlope: {x: -0.0000011175894, y: 0.0000038556773, z: 0.0000018056057, w: 0} + outSlope: {x: -0.0000011175894, y: 0.0000038556773, z: 0.0000018056057, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.70000005 + value: {x: 0.23563334, y: 0.03200307, z: 0.0019211728, w: 0.97131306} + inSlope: {x: -0.5534775, y: -0.01706613, z: 0.0020490212, w: 0.123779595} + outSlope: {x: -0.5534775, y: -0.01706613, z: 0.0020490212, w: 0.123779595} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.19873483, y: 0.030865256, z: 0.002057863, w: 0.979565} + inSlope: {x: -1.593158, y: -0.036254246, z: 0.015823077, w: 0.29745784} + outSlope: {x: -1.593158, y: -0.036254246, z: 0.015823077, w: 0.29745784} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000001 + value: {x: 0.091523595, y: 0.029436793, z: 0.0033025919, w: 0.9953623} + inSlope: {x: 0.4114619, y: 0.011304436, z: -0.04394585, w: -0.059817903} + outSlope: {x: 0.4114619, y: 0.011304436, z: -0.04394585, w: -0.059817903} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.15685348, y: 0.03033975, z: 0.00004632532, w: 0.98715574} + inSlope: {x: 3.783652, y: 0.13971043, z: -0.07643661, w: -0.8566336} + outSlope: {x: 3.783652, y: 0.13971043, z: -0.07643661, w: -0.8566336} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.86666673 + value: {x: 0.34376717, y: 0.038750827, z: -0.0017931808, w: 0.93825334} + inSlope: {x: 5.1722593, y: 0.3011825, z: 0.08836161, w: -1.8538208} + outSlope: {x: 5.1722593, y: 0.3011825, z: 0.08836161, w: -1.8538208} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.90000004 + value: {x: 0.5016708, y: 0.050418578, z: 0.0059370906, w: 0.8635677} + inSlope: {x: 2.7467377, y: 0.20535292, z: 0.1489712, w: -1.349607} + outSlope: {x: 2.7467377, y: 0.20535292, z: 0.1489712, w: -1.349607} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9333334 + value: {x: 0.5268829, y: 0.052441012, z: 0.008138226, w: 0.8482796} + inSlope: {x: 0.3781813, y: 0.030337714, z: 0.033016507, w: -0.22932152} + outSlope: {x: 0.3781813, y: 0.030337714, z: 0.033016507, w: -0.22932152} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.52688277, y: 0.05244095, z: 0.008138442, w: 0.8482796} + inSlope: {x: -0.000003576282, y: -0.0000043585937, z: 0.000007487841, w: 0} + outSlope: {x: -0.000003576282, y: -0.0000043585937, z: 0.000007487841, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.5808822, y: -0.010849124, z: 0.084424786, w: 0.80952495} + inSlope: {x: 0.01901686, y: 0.0002009142, z: 0.0027843562, w: -0.013945698} + outSlope: {x: 0.01901686, y: 0.0002009142, z: 0.0027843562, w: -0.013945698} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: 0.58535427, y: -0.010801843, z: 0.08507901, w: 0.8062291} + inSlope: {x: 0.21566749, y: 0.0023163809, z: 0.031552278, w: -0.16175242} + outSlope: {x: 0.21566749, y: 0.0023163809, z: 0.031552278, w: -0.16175242} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: 0.58276373, y: -0.010829302, z: 0.084699996, w: 0.80814296} + inSlope: {x: -1.1465638, y: -0.011563618, z: -0.16772087, w: 0.80480576} + outSlope: {x: -1.1465638, y: -0.011563618, z: -0.16772087, w: 0.80480576} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.43805397, y: -0.012108833, z: 0.06353732, w: 0.8966187} + inSlope: {x: -2.89559, y: -0.020775791, z: -0.4233016, w: 1.4186196} + outSlope: {x: -2.89559, y: -0.020775791, z: -0.4233016, w: 1.4186196} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: 0.33267453, y: -0.012775478, z: 0.04813507, w: 0.9417258} + inSlope: {x: -3.9811049, y: -0.019903433, z: -0.5817046, w: 1.3194332} + outSlope: {x: -3.9811049, y: -0.019903433, z: -0.5817046, w: 1.3194332} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.17264698, y: -0.013435728, z: 0.024757015, w: 0.98458093} + inSlope: {x: -4.0061307, y: -0.013331208, z: -0.58513856, w: 0.83977467} + outSlope: {x: -4.0061307, y: -0.013331208, z: -0.58513856, w: 0.83977467} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: 0.065599166, y: -0.013664225, z: 0.009125834, w: 0.99771076} + inSlope: {x: -1.60572, y: -0.00342479, z: -0.23446853, w: 0.19694747} + outSlope: {x: -1.60572, y: -0.00342479, z: -0.23446853, w: 0.19694747} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.065598994, y: -0.013664047, z: 0.009125779, w: 0.99771076} + inSlope: {x: -0.000001452861, y: 0.000001438891, z: -0.0000039115544, w: 0} + outSlope: {x: -0.000001452861, y: 0.000001438891, z: -0.0000039115544, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: 0.06559907, y: -0.013664129, z: 0.009125574, w: 0.99771076} + inSlope: {x: 0.0000037997966, y: -0.0000017741697, z: 0.0000005727634, w: 0} + outSlope: {x: 0.0000037997966, y: -0.0000017741697, z: 0.0000005727634, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: 0.06559925, y: -0.0136641655, z: 0.009125818, w: 0.99771076} + inSlope: {x: 1.2981286, y: 0.0025786252, z: 0.18955229, w: -0.14525516} + outSlope: {x: 1.2981286, y: 0.0025786252, z: 0.18955229, w: -0.14525516} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.15214089, y: -0.013492221, z: 0.02176238, w: 0.9880271} + inSlope: {x: 4.0777044, y: 0.013719479, z: 0.59559894, w: -0.8657978} + outSlope: {x: 4.0777044, y: 0.013719479, z: 0.59559894, w: -0.8657978} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: 0.33744627, y: -0.012749533, z: 0.048832424, w: 0.9399909} + inSlope: {x: 5.3704767, y: 0.029437304, z: 0.78479636, w: -1.9684376} + outSlope: {x: 5.3704767, y: 0.029437304, z: 0.78479636, w: -1.9684376} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5666667 + value: {x: 0.51017296, y: -0.0115297325, z: 0.07408218, w: 0.8567978} + inSlope: {x: 3.67976, y: 0.028804377, z: 0.53801405, w: -1.9777175} + outSlope: {x: 3.67976, y: 0.028804377, z: 0.53801405, w: -1.9777175} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.5827637, y: -0.010829241, z: 0.08470004, w: 0.808143} + inSlope: {x: 1.0888625, y: 0.010506013, z: 0.1592666, w: -0.72982264} + outSlope: {x: 1.0888625, y: 0.010506013, z: 0.1592666, w: -0.72982264} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6333334 + value: {x: 0.58276373, y: -0.010829332, z: 0.08469994, w: 0.808143} + inSlope: {x: -1.5916157e-12, y: 0.00000018161052, z: 0.00000011176144, w: 0} + outSlope: {x: -1.5916157e-12, y: 0.00000018161052, z: 0.00000011176144, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.5827637, y: -0.010829229, z: 0.08470005, w: 0.808143} + inSlope: {x: -1.5916157e-12, y: -0.00000047497144, z: 0.0000012293476, w: -0.00000089406893} + outSlope: {x: -1.5916157e-12, y: -0.00000047497144, z: 0.0000012293476, w: -0.00000089406893} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.70000005 + value: {x: 0.58276373, y: -0.010829364, z: 0.084700026, w: 0.80814296} + inSlope: {x: -0.71236855, y: -0.0070898538, z: -0.104203805, w: 0.49311477} + outSlope: {x: -0.71236855, y: -0.0070898538, z: -0.104203805, w: 0.49311477} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.5352725, y: -0.011301885, z: 0.077753134, w: 0.8410173} + inSlope: {x: -2.2501822, y: -0.019769274, z: -0.32906762, w: 1.3665128} + outSlope: {x: -2.2501822, y: -0.019769274, z: -0.32906762, w: 1.3665128} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7666667 + value: {x: 0.43275154, y: -0.012147316, z: 0.06276218, w: 0.89924383} + inSlope: {x: -2.8503828, y: -0.021064613, z: -0.41670987, w: 1.4411559} + outSlope: {x: -2.8503828, y: -0.021064613, z: -0.41670987, w: 1.4411559} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000001 + value: {x: 0.3452468, y: -0.012706194, z: 0.049972452, w: 0.93709445} + inSlope: {x: -1.1770965, y: -0.007610592, z: -0.17204978, w: 0.5160395} + outSlope: {x: -1.1770965, y: -0.007610592, z: -0.17204978, w: 0.5160395} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.35427836, y: -0.012654689, z: 0.05129218, w: 0.9336465} + inSlope: {x: 1.7718889, y: 0.011826606, z: 0.25899762, w: -0.8034891} + outSlope: {x: 1.7718889, y: 0.011826606, z: 0.25899762, w: -0.8034891} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.86666673 + value: {x: 0.4633728, y: -0.011917753, z: 0.06723897, w: 0.8835285} + inSlope: {x: 3.14866, y: 0.024506718, z: 0.46035817, w: -1.6823264} + outSlope: {x: 3.14866, y: 0.024506718, z: 0.46035817, w: -1.6823264} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.90000004 + value: {x: 0.564189, y: -0.011020908, z: 0.081982724, w: 0.8214914} + inSlope: {x: 1.7626421, y: 0.016027648, z: 0.25778717, w: -1.1100535} + outSlope: {x: 1.7626421, y: 0.016027648, z: 0.25778717, w: -1.1100535} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9333334 + value: {x: 0.5808822, y: -0.010849244, z: 0.08442477, w: 0.80952495} + inSlope: {x: 0.2503974, y: 0.002577475, z: 0.036631458, w: -0.17949685} + outSlope: {x: 0.2503974, y: 0.002577475, z: 0.036631458, w: -0.17949685} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.5808824, y: -0.010849225, z: 0.0844248, w: 0.8095248} + inSlope: {x: 0.000005364423, y: -0.0000044703525, z: -0.0000006705529, w: -0.000005364423} + outSlope: {x: 0.000005364423, y: -0.0000044703525, z: -0.0000006705529, w: -0.000005364423} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.4586788, y: 0.0027996686, z: 0.06229969, w: 0.88641113} + inSlope: {x: 0.2780378, y: -0.0003104936, z: 0.03745548, w: -0.14839767} + outSlope: {x: 0.2780378, y: -0.0003104936, z: 0.03745548, w: -0.14839767} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: 0.4708978, y: 0.0027859404, z: 0.063945755, w: 0.8798627} + inSlope: {x: -0.54403013, y: 0.0005740415, z: -0.07329414, w: 0.27973914} + outSlope: {x: -0.54403013, y: 0.0005740415, z: -0.07329414, w: 0.27973914} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: 0.43167806, y: 0.0028275882, z: 0.05866193, w: 0.9001138} + inSlope: {x: -1.8650056, y: 0.001660916, z: -0.2513067, w: 0.8545688} + outSlope: {x: -1.8650056, y: 0.001660916, z: -0.2513067, w: 0.8545688} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.34656408, y: 0.0028966682, z: 0.047191974, w: 0.936834} + inSlope: {x: -2.7839966, y: 0.0017566446, z: -0.3752518, w: 1.0282133} + outSlope: {x: -2.7839966, y: 0.0017566446, z: -0.3752518, w: 1.0282133} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.2460783, y: 0.0029446979, z: 0.033645146, w: 0.96866137} + inSlope: {x: -2.694296, y: 0.0009331957, z: -0.3632816, w: 0.7329037} + outSlope: {x: -2.694296, y: 0.0009331957, z: -0.3632816, w: 0.7329037} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: 0.12583555, y: 0.0029586048, z: 0.017428255, w: 0.99189365} + inSlope: {x: -0.91901505, y: -0.000036070127, z: -0.12396413, w: 0.12889715} + outSlope: {x: -0.91901505, y: -0.000036070127, z: -0.12396413, w: 0.12889715} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.098992564, y: 0.0029556048, z: 0.013807097, w: 0.994988} + inSlope: {x: 0.0000008940701, y: -0.00000014319141, z: -0.0000007543696, w: 0} + outSlope: {x: 0.0000008940701, y: -0.00000014319141, z: -0.0000007543696, + w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.10964966, y: 0.0029570144, z: 0.015244832, w: 0.993849} + inSlope: {x: 0.5108312, y: 0.00005350448, z: 0.06891156, w: -0.060804762} + outSlope: {x: 0.5108312, y: 0.00005350448, z: 0.06891156, w: -0.060804762} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.16694432, y: 0.0029588337, z: 0.022973338, w: 0.9856942} + inSlope: {x: 0.15859671, y: -0.000005490154, z: 0.021392565, w: -0.026469853} + outSlope: {x: 0.15859671, y: -0.000005490154, z: 0.021392565, w: -0.026469853} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.1669443, y: 0.002958882, z: 0.022973336, w: 0.9856942} + inSlope: {x: 0.0000013411053, y: 0.00000070896795, z: -0.0000019837173, w: 0} + outSlope: {x: 0.0000013411053, y: 0.00000070896795, z: -0.0000019837173, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.14186315, y: 0.0029593338, z: 0.019590365, w: 0.989688} + inSlope: {x: -1.0479609, y: -0.000054332137, z: -0.14136311, w: 0.14228581} + outSlope: {x: -1.0479609, y: -0.000054332137, z: -0.14136311, w: 0.14228581} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000001 + value: {x: 0.078902915, y: 0.002951821, z: 0.011096602, w: 0.9968162} + inSlope: {x: 0.6563375, y: 0.00005951865, z: 0.088540405, w: -0.080138266} + outSlope: {x: 0.6563375, y: 0.00005951865, z: 0.088540405, w: -0.080138266} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.140836, y: 0.0029593047, z: 0.019451749, w: 0.9898374} + inSlope: {x: 3.328918, y: -0.00043465348, z: 0.44895753, w: -0.6603908} + outSlope: {x: 3.328918, y: -0.00043465348, z: 0.44895753, w: -0.6603908} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.86666673 + value: {x: 0.30083087, y: 0.0029228441, z: 0.041027114, w: 0.95279014} + inSlope: {x: 4.4381175, y: -0.0020501935, z: 0.59832263, w: -1.3829849} + outSlope: {x: 4.4381175, y: -0.0020501935, z: 0.59832263, w: -1.3829849} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.90000004 + value: {x: 0.4367105, y: 0.0028226252, z: 0.059339926, w: 0.89763844} + inSlope: {x: 2.3677204, y: -0.0018465589, z: 0.3190899, w: -0.9956858} + outSlope: {x: 2.3677204, y: -0.0018465589, z: 0.3190899, w: -0.9956858} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9333334 + value: {x: 0.45867878, y: 0.0027997403, z: 0.06229976, w: 0.88641113} + inSlope: {x: 0.3295243, y: -0.0003447369, z: 0.044396557, w: -0.16840951} + outSlope: {x: 0.3295243, y: -0.0003447369, z: 0.044396557, w: -0.16840951} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.45867866, y: 0.0027996881, z: 0.062299695, w: 0.8864112} + inSlope: {x: -0.0000044703525, y: 0.0000013620605, z: -0.000000111758816, + w: 0.000001788141} + outSlope: {x: -0.0000044703525, y: 0.0000013620605, z: -0.000000111758816, + w: 0.000001788141} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2/mixamorig:LeftHandMiddle3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.6564008, y: 0.041992866, z: 0.027844585, w: 0.752728} + inSlope: {x: 1.5451865, y: 0.1324116, z: 0.1817782, w: -1.4629357} + outSlope: {x: 1.5451865, y: 0.1324116, z: 0.1817782, w: -1.4629357} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.707907, y: 0.046406586, z: 0.03390386, w: 0.70396346} + inSlope: {x: 1.7613297, y: 0.08389893, z: 0.29002172, w: -1.843205} + outSlope: {x: 1.7613297, y: 0.08389893, z: 0.29002172, w: -1.843205} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: 0.7738228, y: 0.047586128, z: 0.047179367, w: 0.62984765} + inSlope: {x: 0.7216259, y: -0.14219902, z: 0.37564707, w: -0.79674125} + outSlope: {x: 0.7216259, y: -0.14219902, z: 0.37564707, w: -0.79674125} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: 0.7560154, y: 0.03692665, z: 0.058947, w: 0.6508474} + inSlope: {x: -1.7567219, y: -0.31654352, z: 0.46114653, w: 1.7968986} + outSlope: {x: -1.7567219, y: -0.31654352, z: 0.46114653, w: 1.7968986} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.656708, y: 0.026483225, z: 0.07792247, w: 0.7496409} + inSlope: {x: -3.6699657, y: -0.249626, z: 0.7029425, w: 3.0261676} + outSlope: {x: -3.6699657, y: -0.249626, z: 0.7029425, w: 3.0261676} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.51135105, y: 0.020284917, z: 0.10580983, w: 0.8525919} + inSlope: {x: -4.18944, y: -0.18057457, z: 0.9239646, w: 2.4858012} + outSlope: {x: -4.18944, y: -0.18057457, z: 0.9239646, w: 2.4858012} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: 0.37741196, y: 0.014444918, z: 0.13952012, w: 0.915361} + inSlope: {x: -3.349069, y: -0.37904018, z: 1.1460366, w: 1.3125896} + outSlope: {x: -3.349069, y: -0.37904018, z: 1.1460366, w: 1.3125896} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: 0.2880797, y: -0.0049844296, z: 0.18221228, w: 0.94009787} + inSlope: {x: -2.3611383, y: -0.64511526, z: 1.3781462, w: 0.47798756} + outSlope: {x: -2.3611383, y: -0.64511526, z: 1.3781462, w: 0.47798756} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: 0.1573311, y: -0.036635537, z: 0.2695214, w: 0.94934875} + inSlope: {x: -2.1344426, y: 0.1821796, z: 0.7279914, w: 0.14254422} + outSlope: {x: -2.1344426, y: 0.1821796, z: 0.7279914, w: 0.14254422} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.07770658, y: -0.016417457, z: 0.27992928, w: 0.95672977} + inSlope: {x: -1.9050573, y: 0.5191674, z: 0.09869324, w: 0.16948791} + outSlope: {x: -1.9050573, y: 0.5191674, z: 0.09869324, w: 0.16948791} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: 0.030327281, y: -0.0020243751, z: 0.27610093, w: 0.96064794} + inSlope: {x: -0.71068954, y: 0.21589741, z: -0.057425205, w: 0.058772568} + outSlope: {x: -0.71068954, y: 0.21589741, z: -0.057425205, w: 0.058772568} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.030327281, y: -0.002024297, z: 0.27610093, w: 0.96064794} + inSlope: {x: 0.0000008102507, y: -0.0000008521614, z: -0.00000089406973, w: 0} + outSlope: {x: 0.0000008102507, y: -0.0000008521614, z: -0.00000089406973, + w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: 0.030327335, y: -0.002024432, z: 0.27610087, w: 0.96064794} + inSlope: {x: -0.000000698492, y: -0.0000022142196, z: 0, w: 0} + outSlope: {x: -0.000000698492, y: -0.0000022142196, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: 0.030327234, y: -0.0020244445, z: 0.27610093, w: 0.96064794} + inSlope: {x: 0.790048, y: -0.068346694, z: -0.35706404, w: 0.05120342} + outSlope: {x: 0.790048, y: -0.068346694, z: -0.35706404, w: 0.05120342} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.08299715, y: -0.006580874, z: 0.25229663, w: 0.9640615} + inSlope: {x: 2.576493, y: -0.073037684, z: -1.1092936, w: -0.035938796} + outSlope: {x: 2.576493, y: -0.073037684, z: -1.1092936, w: -0.035938796} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: 0.20209348, y: -0.0068936194, z: 0.202148, w: 0.958252} + inSlope: {x: 3.5984633, y: 0.17718375, z: -1.4236975, w: -0.462281} + outSlope: {x: 3.5984633, y: 0.17718375, z: -1.4236975, w: -0.462281} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5666667 + value: {x: 0.3228949, y: 0.0052313856, z: 0.15738338, w: 0.93324274} + inSlope: {x: 2.629777, y: 0.32007998, z: -0.93942016, w: -0.6433653} + outSlope: {x: 2.629777, y: 0.32007998, z: -0.93942016, w: -0.6433653} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.377412, y: 0.014445046, z: 0.13951997, w: 0.915361} + inSlope: {x: 0.81775844, y: 0.13820302, z: -0.26795158, w: -0.26822743} + outSlope: {x: 0.81775844, y: 0.13820302, z: -0.26795158, w: -0.26822743} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6333334 + value: {x: 0.37741208, y: 0.014444912, z: 0.13951996, w: 0.9153609} + inSlope: {x: 0.0000008940681, y: -0.0000025564793, z: 0.0000015646239, w: -0.00000089406893} + outSlope: {x: 0.0000008940681, y: -0.0000025564793, z: 0.0000015646239, w: -0.00000089406893} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.37741205, y: 0.0144448755, z: 0.13952008, w: 0.9153609} + inSlope: {x: 0.00000044703367, y: 0.0000017182879, z: -0.0000004470313, w: 0} + outSlope: {x: 0.00000044703367, y: 0.0000017182879, z: -0.0000004470313, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.70000005 + value: {x: 0.3774121, y: 0.014445026, z: 0.13951993, w: 0.9153609} + inSlope: {x: -0.83977675, y: -0.21794274, z: 0.416735, w: 0.25015467} + outSlope: {x: -0.83977675, y: -0.21794274, z: 0.416735, w: 0.25015467} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.321427, y: -0.000084627056, z: 0.16730238, w: 0.9320379} + inSlope: {x: -2.4464467, y: -0.51734596, z: 1.3170202, w: 0.5155752} + outSlope: {x: -2.4464467, y: -0.51734596, z: 1.3170202, w: 0.5155752} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7666667 + value: {x: 0.21431564, y: -0.020044709, z: 0.2273213, w: 0.9497326} + inSlope: {x: -2.5956087, y: -0.458804, z: 1.5647599, w: 0.2754573} + outSlope: {x: -2.5956087, y: -0.458804, z: 1.5647599, w: 0.2754573} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000001 + value: {x: 0.14838627, y: -0.03067159, z: 0.2716198, w: 0.9504017} + inSlope: {x: 0.02132529, y: -0.3411951, z: 0.17215878, w: -0.058482066} + outSlope: {x: 0.02132529, y: -0.3411951, z: 0.17215878, w: -0.058482066} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.21573721, y: -0.042791046, z: 0.23879862, w: 0.9458338} + inSlope: {x: 4.351623, y: 0.023309365, z: -2.2416651, w: -0.9073075} + outSlope: {x: 4.351623, y: 0.023309365, z: -2.2416651, w: -0.9073075} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.86666673 + value: {x: 0.4384946, y: -0.029117608, z: 0.12217539, w: 0.8899145} + inSlope: {x: 6.173229, y: 1.0715585, z: -3.0027711, w: -2.5279543} + outSlope: {x: 6.173229, y: 1.0715585, z: -3.0027711, w: -2.5279543} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.90000004 + value: {x: 0.62728584, y: 0.028646138, z: 0.038613856, w: 0.7773036} + inSlope: {x: 3.2685952, y: 1.0666552, z: -1.414964, w: -2.0577993} + outSlope: {x: 3.2685952, y: 1.0666552, z: -1.414964, w: -2.0577993} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9333334 + value: {x: 0.6564008, y: 0.04199269, z: 0.027844524, w: 0.752728} + inSlope: {x: 0.43672138, y: 0.2001997, z: -0.16153875, w: -0.36863267} + outSlope: {x: 0.43672138, y: 0.2001997, z: -0.16153875, w: -0.36863267} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9666667 + value: {x: 0.6564006, y: 0.041992795, z: 0.027844597, w: 0.75272804} + inSlope: {x: -0.0000017881409, y: 0.0000020116586, z: 0.0000025704526, w: 0} + outSlope: {x: -0.0000017881409, y: 0.0000020116586, z: 0.0000025704526, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.6564007, y: 0.041992825, z: 0.027844695, w: 0.752728} + inSlope: {x: 0.000001788141, y: 0.0000008940705, z: 0.0000029616085, w: -0.000001788141} + outSlope: {x: 0.000001788141, y: 0.0000008940705, z: 0.0000029616085, w: -0.000001788141} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.64539117, y: -0.000108608794, z: 0.08580538, w: 0.7590176} + inSlope: {x: 0.0169909, y: 0.0000021469896, z: 0.0022577492, w: -0.01471281} + outSlope: {x: 0.0169909, y: 0.0000021469896, z: 0.0022577492, w: -0.01471281} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: 0.6494012, y: -0.00010814392, z: 0.08633851, w: 0.7555288} + inSlope: {x: 0.22026032, y: 0.000027868302, z: 0.029281452, w: -0.19514322} + outSlope: {x: 0.22026032, y: 0.000027868302, z: 0.029281452, w: -0.19514322} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: 0.64749116, y: -0.00010841718, z: 0.08608445, w: 0.75719535} + inSlope: {x: -1.1529037, y: -0.00013777512, z: -0.15328065, w: 0.95582926} + outSlope: {x: -1.1529037, y: -0.00013777512, z: -0.15328065, w: 0.95582926} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.50025564, y: -0.00012346641, z: 0.06650944, w: 0.86331964} + inSlope: {x: -3.0525403, y: -0.00024912666, z: -0.40583676, w: 1.7598994} + outSlope: {x: -3.0525403, y: -0.00024912666, z: -0.40583676, w: 1.7598994} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: 0.38666126, y: -0.00013165966, z: 0.051407006, w: 0.92078793} + inSlope: {x: -4.484995, y: -0.00024995842, z: -0.59628445, w: 1.7378033} + outSlope: {x: -4.484995, y: -0.00024995842, z: -0.59628445, w: 1.7378033} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.201256, y: -0.0001401303, z: 0.026757147, w: 0.9791732} + inSlope: {x: -4.6716795, y: -0.00016472275, z: -0.6211033, w: 1.1449386} + outSlope: {x: -4.6716795, y: -0.00016472275, z: -0.6211033, w: 1.1449386} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: 0.075215966, y: -0.00014264118, z: 0.0100001255, w: 0.99711716} + inSlope: {x: -1.8905994, y: -0.000039306327, z: -0.2513567, w: 0.2691597} + outSlope: {x: -1.8905994, y: -0.000039306327, z: -0.2513567, w: 0.2691597} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.075216055, y: -0.00014275072, z: 0.010000037, w: 0.99711716} + inSlope: {x: -1.2505552e-12, y: 0.0000014044069, z: 0.00000079628217, w: 0} + outSlope: {x: -1.2505552e-12, y: 0.0000014044069, z: 0.00000079628217, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: 0.075215966, y: -0.00014254755, z: 0.010000179, w: 0.99711716} + inSlope: {x: 0.00000022351742, y: 0.000001548906, z: 0.0000008940698, w: 0} + outSlope: {x: 0.00000022351742, y: 0.000001548906, z: 0.0000008940698, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: 0.07521607, y: -0.00014264746, z: 0.010000097, w: 0.99711716} + inSlope: {x: 1.4650025, y: 0.000023492927, z: 0.19477044, w: -0.18664438} + outSlope: {x: 1.4650025, y: 0.000023492927, z: 0.19477044, w: -0.18664438} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.1728827, y: -0.00014098136, z: 0.022984862, w: 0.9846742} + inSlope: {x: 4.578007, y: 0.00015873199, z: 0.60865104, w: -1.1052885} + outSlope: {x: 4.578007, y: 0.00015873199, z: 0.60865104, w: -1.1052885} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: 0.38041663, y: -0.00013206532, z: 0.050576843, w: 0.9234312} + inSlope: {x: 5.954509, y: 0.00036074163, z: 0.7916578, w: -2.4963818} + outSlope: {x: 5.954509, y: 0.00036074163, z: 0.7916578, w: -2.4963818} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5666667 + value: {x: 0.56985027, y: -0.00011693189, z: 0.07576209, w: 0.8182486} + inSlope: {x: 4.006115, y: 0.0003558176, z: 0.53261614, w: -2.4935374} + outSlope: {x: 4.006115, y: 0.0003558176, z: 0.53261614, w: -2.4935374} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.64749104, y: -0.000108344146, z: 0.0860846, w: 0.75719535} + inSlope: {x: 1.1646127, y: 0.00012808641, z: 0.15483747, w: -0.91580003} + outSlope: {x: 1.1646127, y: 0.00012808641, z: 0.15483747, w: -0.91580003} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6333334 + value: {x: 0.64749104, y: -0.00010839281, z: 0.08608458, w: 0.75719535} + inSlope: {x: 0, y: 0.0000014385687, z: -0.0000007823113, w: 0} + outSlope: {x: 0, y: 0.0000014385687, z: -0.0000007823113, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.64749104, y: -0.00010824824, z: 0.086084545, w: 0.75719535} + inSlope: {x: 0, y: 0.0000009292156, z: 0.00000011175763, w: 0.00000089406893} + outSlope: {x: 0, y: 0.0000009292156, z: 0.00000011175763, w: 0.00000089406893} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.70000005 + value: {x: 0.64749104, y: -0.00010833086, z: 0.08608459, w: 0.7571954} + inSlope: {x: -0.72917086, y: -0.00008754349, z: -0.09694328, w: 0.5951372} + outSlope: {x: -0.72917086, y: -0.00008754349, z: -0.09694328, w: 0.5951372} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.5988797, y: -0.00011408447, z: 0.079621665, w: 0.7968711} + inSlope: {x: -2.3275256, y: -0.00023678326, z: -0.30944917, w: 1.6612921} + outSlope: {x: -2.3275256, y: -0.00023678326, z: -0.30944917, w: 1.6612921} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7666667 + value: {x: 0.49232262, y: -0.00012411641, z: 0.06545464, w: 0.86794823} + inSlope: {x: -2.9828858, y: -0.000249808, z: -0.3965763, w: 1.7713598} + outSlope: {x: -2.9828858, y: -0.000249808, z: -0.3965763, w: 1.7713598} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000001 + value: {x: 0.40002048, y: -0.00013073835, z: 0.053183224, w: 0.9149619} + inSlope: {x: -1.2512068, y: -0.00009411406, z: -0.16634619, w: 0.64509386} + outSlope: {x: -1.2512068, y: -0.00009411406, z: -0.16634619, w: 0.64509386} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.40890875, y: -0.00013039069, z: 0.054364882, w: 0.91095454} + inSlope: {x: 1.8625318, y: 0.00013968321, z: 0.24762264, w: -0.9932472} + outSlope: {x: 1.8625318, y: 0.00013968321, z: 0.24762264, w: -0.9932472} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.86666673 + value: {x: 0.52418935, y: -0.00012142613, z: 0.06969141, w: 0.84874535} + inSlope: {x: 3.2927027, y: 0.00029682944, z: 0.43776488, w: -2.0637312} + outSlope: {x: 3.2927027, y: 0.00029682944, z: 0.43776488, w: -2.0637312} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.90000004 + value: {x: 0.62842226, y: -0.000110602065, z: 0.08354921, w: 0.7733725} + inSlope: {x: 1.8180304, y: 0.0001963317, z: 0.24170855, w: -1.3459191} + outSlope: {x: 1.8180304, y: 0.0001963317, z: 0.24170855, w: -1.3459191} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9333334 + value: {x: 0.6453913, y: -0.00010833736, z: 0.085805304, w: 0.75901747} + inSlope: {x: 0.25453427, y: 0.000029955121, z: 0.033842854, w: -0.21532398} + outSlope: {x: 0.25453427, y: 0.000029955121, z: 0.033842854, w: -0.21532398} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.6453913, y: -0.00010852683, z: 0.08580548, w: 0.75901747} + inSlope: {x: 0.000001788141, y: 0.0000023467169, z: 0.0000024586939, w: -0.000001788141} + outSlope: {x: 0.000001788141, y: 0.0000023467169, z: 0.0000024586939, w: -0.000001788141} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.57845324, y: 0.000000002510666, z: 0.07682164, w: 0.81209004} + inSlope: {x: 0.25399804, y: -0.0000028412649, z: 0.03373325, w: -0.18617211} + outSlope: {x: 0.25399804, y: -0.0000028412649, z: 0.03373325, w: -0.18617211} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: 0.5896609, y: -0.000000072785404, z: 0.07831019, w: 0.80384547} + inSlope: {x: -0.49502218, y: 0.0000013001352, z: -0.065739475, w: 0.35145605} + outSlope: {x: -0.49502218, y: 0.0000013001352, z: -0.065739475, w: 0.35145605} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: 0.55391836, y: -0.0000000055224785, z: 0.07356345, w: 0.8293147} + inSlope: {x: -1.7152603, y: 0.0000009683143, z: -0.2277953, w: 1.1055815} + outSlope: {x: -1.7152603, y: 0.0000009683143, z: -0.2277953, w: 1.1055815} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.4753102, y: -0.0000000082311065, z: 0.06312384, w: 0.8775509} + inSlope: {x: -2.59529, y: 0.0000006629292, z: -0.34467107, w: 1.4087571} + outSlope: {x: -2.59529, y: 0.0000006629292, z: -0.34467107, w: 1.4087571} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.38089904, y: 0.000000038672802, z: 0.050585378, w: 0.92323184} + inSlope: {x: -2.5486312, y: 0.0000014517514, z: -0.33847517, w: 1.1071299} + outSlope: {x: -2.5486312, y: 0.0000014517514, z: -0.33847517, w: 1.1071299} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: 0.26575056, y: 0.000000105239046, z: 0.035293117, w: 0.9633956} + inSlope: {x: -0.8889688, y: -0.00000012599767, z: -0.1180571, w: 0.25986227} + outSlope: {x: -0.8889688, y: -0.00000012599767, z: -0.1180571, w: 0.25986227} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.23914735, y: 0.0000000028327216, z: 0.031760007, w: 0.97046375} + inSlope: {x: 0.0000011175872, y: -0.0000005575977, z: 0.000002067535, w: 0} + outSlope: {x: 0.0000011175872, y: -0.0000005575977, z: 0.000002067535, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.24958396, y: 0.000000105606944, z: 0.03314613, w: 0.9677857} + inSlope: {x: 0.49937353, y: -0.000002265951, z: 0.06631933, w: -0.13456817} + outSlope: {x: 0.49937353, y: -0.000002265951, z: 0.06631933, w: -0.13456817} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.3054014, y: 0.000000019734598, z: 0.040558856, w: 0.95135957} + inSlope: {x: 0.15394554, y: 0.0000012410313, z: 0.020441972, w: -0.04936074} + outSlope: {x: 0.15394554, y: 0.0000012410313, z: 0.020441972, w: -0.04936074} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.3054014, y: -0.00000007574798, z: 0.040558927, w: 0.95135957} + inSlope: {x: 0.00000089406734, y: -0.0000004792463, z: 0.00000016763687, w: 1.5916157e-12} + outSlope: {x: 0.00000089406734, y: -0.0000004792463, z: 0.00000016763687, + w: 1.5916157e-12} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.28122425, y: -0.000000028006657, z: 0.037348006, w: 0.95891505} + inSlope: {x: -1.0139606, y: 0.0000006423455, z: -0.13465793, w: 0.2916008} + outSlope: {x: -1.0139606, y: 0.0000006423455, z: -0.13465793, w: 0.2916008} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000001 + value: {x: 0.2200336, y: 5.214932e-10, z: 0.029221617, w: 0.97505456} + inSlope: {x: 0.63250935, y: -0.0000020476211, z: 0.08399648, w: -0.17267284} + outSlope: {x: 0.63250935, y: -0.0000020476211, z: 0.08399648, w: -0.17267284} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.27997136, y: -0.00000011993878, z: 0.037181538, w: 0.95928806} + inSlope: {x: 3.1838055, y: 0.00000023115842, z: 0.42282748, w: -1.1272202} + outSlope: {x: 3.1838055, y: 0.00000023115842, z: 0.42282748, w: -1.1272202} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.86666673 + value: {x: 0.43228737, y: 0.000000015932287, z: 0.057410125, w: 0.8999065} + inSlope: {x: 4.176174, y: 0.00000292959, z: 0.554621, w: -1.9953878} + outSlope: {x: 4.176174, y: 0.00000292959, z: 0.554621, w: -1.9953878} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.90000004 + value: {x: 0.558383, y: 0.00000007536728, z: 0.07415627, w: 0.82626224} + inSlope: {x: 2.192488, y: 0.0000011162376, z: 0.2911745, w: -1.3172454} + outSlope: {x: 2.192488, y: 0.0000011162376, z: 0.2911745, w: -1.3172454} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9333334 + value: {x: 0.5784531, y: 0.00000009034809, z: 0.076821744, w: 0.8120902} + inSlope: {x: 0.3010518, y: -0.0000010637352, z: 0.039981086, w: -0.21258098} + outSlope: {x: 0.3010518, y: -0.0000010637352, z: 0.039981086, w: -0.21258098} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.5784532, y: 0.000000044665445, z: 0.07682168, w: 0.8120901} + inSlope: {x: 0.000001788141, y: 0.0000012064138, z: 0, w: -0.000001788141} + outSlope: {x: 0.000001788141, y: 0.0000012064138, z: 0, w: -0.000001788141} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2/mixamorig:LeftHandPinky3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.48797497, y: -0.48949048, z: 0.55187327, w: -0.4665998} + inSlope: {x: 0.7236671, y: -0.86185, z: -0.83555275, w: -0.7506403} + outSlope: {x: 0.7236671, y: -0.86185, z: -0.83555275, w: -0.7506403} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: -0.46385273, y: -0.5182188, z: 0.5240215, w: -0.49162114} + inSlope: {x: 0.77896845, y: -0.8715887, z: -1.0430981, w: -0.9007291} + outSlope: {x: 0.77896845, y: -0.8715887, z: -1.0430981, w: -0.9007291} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: -0.4120965, y: -0.5701142, z: 0.44076023, w: -0.5575632} + inSlope: {x: 0.5484661, y: -0.50919497, z: -0.9498273, w: -0.67331755} + outSlope: {x: 0.5484661, y: -0.50919497, z: -0.9498273, w: -0.67331755} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.3993226, y: -0.58293515, z: 0.42499068, w: -0.56578356} + inSlope: {x: -0.11148821, y: 0.058702797, z: 0.42267534, w: 0.34641704} + outSlope: {x: -0.11148821, y: 0.058702797, z: 0.42267534, w: 0.34641704} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: -0.4173059, y: -0.56811386, z: 0.46917734, w: -0.531954} + inSlope: {x: -0.32112393, y: 0.3300378, z: 0.55354273, w: 0.38240078} + outSlope: {x: -0.32112393, y: 0.3300378, z: 0.55354273, w: 0.38240078} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: -0.4564835, y: -0.5196365, z: 0.5095894, w: -0.51178056} + inSlope: {x: -0.192929, y: 0.22736096, z: 0.1221156, w: 0.06079584} + outSlope: {x: -0.192929, y: 0.22736096, z: 0.1221156, w: 0.06079584} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.46326357, y: -0.51281047, z: 0.51439047, w: -0.5077546} + inSlope: {x: 0.0017930865, y: 0.003100602, z: 0.3795548, w: 0.38803774} + outSlope: {x: 0.0017930865, y: 0.003100602, z: 0.3795548, w: 0.38803774} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.480537, y: -0.49576756, z: 0.56658477, w: -0.4497559} + inSlope: {x: -0.31132847, y: 0.2949013, z: 0.12847269, w: 0.16347735} + outSlope: {x: -0.31132847, y: 0.2949013, z: 0.12847269, w: 0.16347735} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.5059634, y: -0.4727116, z: 0.49651796, w: -0.52346414} + inSlope: {x: -0.043166604, y: 0.04550012, z: -0.38861382, w: -0.37710625} + outSlope: {x: -0.043166604, y: 0.04550012, z: -0.38861382, w: -0.37710625} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.86666673 + value: {x: -0.5082913, y: -0.46987265, z: 0.50472325, w: -0.5158625} + inSlope: {x: -0.03988087, y: 0.038515627, z: 0.2764151, w: 0.27632928} + outSlope: {x: -0.03988087, y: 0.038515627, z: 0.2764151, w: 0.27632928} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.48797497, y: -0.4894905, z: 0.55187327, w: -0.4665998} + inSlope: {x: 0.36353356, y: -0.34825388, z: 0.3281972, w: 0.35590443} + outSlope: {x: 0.36353356, y: -0.34825388, z: 0.3281972, w: 0.35590443} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.4967004, y: 0.2550981, z: -0.31723708, w: 0.766534} + inSlope: {x: -1.7010318, y: 3.5184412, z: -0.6137895, w: -0.6728124} + outSlope: {x: -1.7010318, y: 3.5184412, z: -0.6137895, w: -0.6728124} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.43999934, y: 0.37237948, z: -0.33769673, w: 0.7441069} + inSlope: {x: -1.4700346, y: 2.8789682, z: -0.55258775, w: -0.7247641} + outSlope: {x: -1.4700346, y: 2.8789682, z: -0.55258775, w: -0.7247641} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: 0.3807922, y: 0.4696369, z: -0.35925916, w: 0.71089476} + inSlope: {x: -0.22926715, y: 0.037587047, z: 0.04805538, w: 0.12423727} + outSlope: {x: -0.22926715, y: 0.037587047, z: 0.04805538, w: 0.12423727} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.3913361, y: 0.41277075, z: -0.33229747, w: 0.7523662} + inSlope: {x: 0.08850576, y: -1.009856, z: 0.6635802, w: 0.8017935} + outSlope: {x: 0.08850576, y: -1.009856, z: 0.6635802, w: 0.8017935} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.3544883, y: 0.32869044, z: -0.23179553, w: 0.84413946} + inSlope: {x: -0.45417315, y: -1.0763209, z: 1.3118081, w: 0.96367395} + outSlope: {x: -0.45417315, y: -1.0763209, z: 1.3118081, w: 0.96367395} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: 0.36546856, y: 0.22334076, z: -0.122479476, w: 0.8952935} + inSlope: {x: 0.68572295, y: -0.37159345, z: 0.48596165, w: -0.11671977} + outSlope: {x: 0.68572295, y: -0.37159345, z: 0.48596165, w: -0.11671977} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.4581247, y: 0.24758808, z: -0.1627652, w: 0.83805096} + inSlope: {x: 0.08575845, y: -0.019226588, z: -1.0747697, w: -0.25580505} + outSlope: {x: 0.08575845, y: -0.019226588, z: -1.0747697, w: -0.25580505} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5666667 + value: {x: 0.44209844, y: 0.21097714, z: -0.23870307, w: 0.83848584} + inSlope: {x: -0.42283422, y: -1.4783072, z: -0.5099843, w: 0.42144236} + outSlope: {x: -0.42283422, y: -1.4783072, z: -0.5099843, w: 0.42144236} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.42619133, y: 0.1425933, z: -0.23837471, w: 0.860933} + inSlope: {x: -0.28886604, y: -2.6410744, z: 0.7627977, w: 0.71020424} + outSlope: {x: -0.28886604, y: -2.6410744, z: 0.7627977, w: 0.71020424} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6333334 + value: {x: 0.4228407, y: 0.034905486, z: -0.18784985, w: 0.8858328} + inSlope: {x: 0.39907426, y: -3.3264198, z: 1.9892476, w: 0.3125959} + outSlope: {x: 0.39907426, y: -3.3264198, z: 1.9892476, w: 0.3125959} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.45279625, y: -0.07916801, z: -0.105758235, w: 0.88177276} + inSlope: {x: 1.2219436, y: -2.8146942, z: 2.3812127, w: -0.5463075} + outSlope: {x: 1.2219436, y: -2.8146942, z: 2.3812127, w: -0.5463075} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.70000005 + value: {x: 0.50430363, y: -0.15274075, z: -0.029102353, w: 0.84941226} + inSlope: {x: 1.379852, y: -1.4811609, z: 2.0678163, w: -0.9437531} + outSlope: {x: 1.379852, y: -1.4811609, z: 2.0678163, w: -0.9437531} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.5447864, y: -0.1779121, z: 0.032096192, w: 0.8188559} + inSlope: {x: 0.9499663, y: -0.3590697, z: 1.7341202, w: -0.7496973} + outSlope: {x: 0.9499663, y: -0.3590697, z: 1.7341202, w: -0.7496973} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000001 + value: {x: 0.5905954, y: -0.16063981, z: 0.1300478, w: 0.78005093} + inSlope: {x: 0.7460834, y: 0.82807004, z: 0.81396556, w: -0.52577645} + outSlope: {x: 0.7460834, y: 0.82807004, z: 0.81396556, w: -0.52577645} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.6173736, y: -0.12147406, z: 0.14077005, w: 0.7643807} + inSlope: {x: 0.59576446, y: 1.5506141, z: -0.41526848, w: -0.1893231} + outSlope: {x: 0.59576446, y: 1.5506141, z: -0.41526848, w: -0.1893231} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.90000004 + value: {x: 0.6287657, y: 0.008565705, z: 0.02591179, w: 0.77711576} + inSlope: {x: -0.27967733, y: 1.8757954, z: -2.6133916, w: 0.2623934} + outSlope: {x: -0.27967733, y: 1.8757954, z: -2.6133916, w: 0.2623934} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9333334 + value: {x: 0.6116679, y: 0.06778749, z: -0.07186293, w: 0.7849223} + inSlope: {x: -0.8072281, y: 2.1496527, z: -3.3192947, w: 0.041287072} + outSlope: {x: -0.8072281, y: 2.1496527, z: -3.3192947, w: 0.041287072} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9666667 + value: {x: 0.5749505, y: 0.15187585, z: -0.19537449, w: 0.77986825} + inSlope: {x: -1.7245127, y: 2.8096614, z: -3.6806169, w: -0.27582613} + outSlope: {x: -1.7245127, y: 2.8096614, z: -3.6806169, w: -0.27582613} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.49670047, y: 0.25509807, z: -0.31723714, w: 0.7665339} + inSlope: {x: -2.3475037, y: 3.0966697, z: -3.655883, w: -0.4000304} + outSlope: {x: -2.3475037, y: 3.0966697, z: -3.655883, w: -0.4000304} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.043842375, y: -0.009350512, z: 0.540319, w: 0.8402653} + inSlope: {x: -0.07373224, y: -0.006290478, z: -0.9086644, w: 0.5652559} + outSlope: {x: -0.07373224, y: -0.006290478, z: -0.9086644, w: 0.5652559} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.041384634, y: -0.009560195, z: 0.5100302, w: 0.85910714} + inSlope: {x: -0.12055255, y: -0.009406478, z: -1.485717, w: 0.84507555} + outSlope: {x: -0.12055255, y: -0.009406478, z: -1.485717, w: 0.84507555} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: 0.027005127, y: -0.010488682, z: 0.33281565, w: 0.94254684} + inSlope: {x: -0.28664032, y: -0.013652038, z: -3.5325706, w: 1.2269166} + outSlope: {x: -0.28664032, y: -0.013652038, z: -3.5325706, w: 1.2269166} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.016696183, y: -0.010887747, z: 0.2057665, w: 0.9783981} + inSlope: {x: -0.28428206, y: -0.008750973, z: -3.5035527, w: 0.786329} + outSlope: {x: -0.28428206, y: -0.008750973, z: -3.5035527, w: 0.786329} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: 0.0033096266, y: -0.011118049, z: 0.040788524, w: 0.99910045} + inSlope: {x: -0.08557049, y: -0.00075865973, z: -1.05457, w: 0.068215705} + outSlope: {x: -0.08557049, y: -0.00075865973, z: -1.05457, w: 0.068215705} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: 0.005927725, y: -0.011097646, z: 0.07305283, w: 0.9972487} + inSlope: {x: 0.08427934, y: 0.0009227918, z: 1.0386827, w: -0.0830108} + outSlope: {x: 0.08427934, y: 0.0009227918, z: 1.0386827, w: -0.0830108} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.01770939, y: -0.0108575495, z: 0.21825501, w: 0.9756707} + inSlope: {x: 0.09945704, y: 0.002914121, z: 1.2257155, w: -0.26178706} + outSlope: {x: 0.09945704, y: 0.002914121, z: 1.2257155, w: -0.26178706} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: 0.020099737, y: -0.010778287, z: 0.24771205, w: 0.9685652} + inSlope: {x: -0.024081817, y: -0.0008152107, z: -0.29679206, w: 0.0733254} + outSlope: {x: -0.024081817, y: -0.0008152107, z: -0.29679206, w: 0.0733254} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: 0.016800726, y: -0.010884719, z: 0.20705496, w: 0.9781245} + inSlope: {x: -0.054437313, y: -0.0015828373, z: -0.6708993, w: 0.14226514} + outSlope: {x: -0.054437313, y: -0.0015828373, z: -0.6708993, w: 0.14226514} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.011835974, y: -0.011007618, z: 0.14586805, w: 0.98917204} + inSlope: {x: -0.10230771, y: -0.0020217432, z: -1.2608285, w: 0.18181087} + outSlope: {x: -0.10230771, y: -0.0020217432, z: -1.2608285, w: 0.18181087} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.0070795896, y: -0.01108471, z: 0.08725042, w: 0.9960996} + inSlope: {x: 0.06643804, y: 0.0011715512, z: 0.81877583, w: -0.105516195} + outSlope: {x: 0.06643804, y: 0.0011715512, z: 0.81877583, w: -0.105516195} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.70000005 + value: {x: 0.012514974, y: -0.0109934565, z: 0.15423627, w: 0.9878936} + inSlope: {x: 0.2498478, y: 0.006709438, z: 3.0791233, w: -0.6029341} + outSlope: {x: 0.2498478, y: 0.006709438, z: 3.0791233, w: -0.6029341} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.023736103, y: -0.010637415, z: 0.29252523, w: 0.955904} + inSlope: {x: 0.33520877, y: 0.014296563, z: 4.1311607, w: -1.2843854} + outSlope: {x: 0.33520877, y: 0.014296563, z: 4.1311607, w: -1.2843854} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7666667 + value: {x: 0.034862224, y: -0.010040352, z: 0.429647, w: 0.9022679} + inSlope: {x: 0.24541467, y: 0.014607997, z: 3.024585, w: -1.3127158} + outSlope: {x: 0.24541467, y: 0.014607997, z: 3.024585, w: -1.3127158} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000001 + value: {x: 0.040097095, y: -0.009663547, z: 0.4941644, w: 0.86838955} + inSlope: {x: 0.052458055, y: 0.0036640167, z: 0.646477, w: -0.32938004} + outSlope: {x: 0.052458055, y: 0.0036640167, z: 0.646477, w: -0.32938004} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.86666673 + value: {x: 0.032969374, y: -0.010160993, z: 0.4063167, w: 0.9130808} + inSlope: {x: -0.13847157, y: -0.008768377, z: -1.7065003, w: 0.78786206} + outSlope: {x: -0.13847157, y: -0.008768377, z: -1.7065003, w: 0.78786206} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.90000004 + value: {x: 0.029127995, y: -0.0103806425, z: 0.35897884, w: 0.9328333} + inSlope: {x: -0.041493785, y: -0.0024197893, z: -0.5113269, w: 0.21767142} + outSlope: {x: -0.041493785, y: -0.0024197893, z: -0.5113269, w: 0.21767142} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9666667 + value: {x: 0.03586179, y: -0.009973609, z: 0.4419656, w: 0.89625937} + inSlope: {x: 0.2045906, y: 0.014575878, z: 2.5213633, w: -1.3099045} + outSlope: {x: 0.2045906, y: 0.014575878, z: 2.5213633, w: -1.3099045} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.043842487, y: -0.009350588, z: 0.540319, w: 0.84026533} + inSlope: {x: 0.23942113, y: 0.018690657, z: 2.9506054, w: -1.6798226} + outSlope: {x: 0.23942113, y: 0.018690657, z: 2.9506054, w: -1.6798226} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.15222786, y: 0.17700358, z: 0.0937447, w: 0.967837} + inSlope: {x: 3.712392, y: -0.97470486, z: -2.3505583, w: 0.6340831} + outSlope: {x: 3.712392, y: -0.97470486, z: -2.3505583, w: 0.6340831} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: -0.02848145, y: 0.14451341, z: 0.015392755, w: 0.9889731} + inSlope: {x: 3.2918367, y: -1.8530848, z: -1.9136696, w: 0.41838792} + outSlope: {x: 3.2918367, y: -1.8530848, z: -1.9136696, w: 0.41838792} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: 0.06722793, y: 0.053464588, z: -0.033833276, w: 0.9957295} + inSlope: {x: 2.4847403, y: -2.9016387, z: -1.232509, w: -0.028356306} + outSlope: {x: 2.4847403, y: -2.9016387, z: -1.232509, w: -0.028356306} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: 0.13716792, y: -0.048929185, z: -0.06677452, w: 0.98708266} + inSlope: {x: 1.913809, y: -2.2129557, z: -0.94596976, w: -0.36346436} + outSlope: {x: 1.913809, y: -2.2129557, z: -0.94596976, w: -0.36346436} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.1948152, y: -0.0940658, z: -0.09689793, w: 0.97149855} + inSlope: {x: 1.6558102, y: -0.07782006, z: -0.99745214, w: -0.4341844} + outSlope: {x: 1.6558102, y: -0.07782006, z: -0.99745214, w: -0.4341844} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: 0.29556897, y: 0.03330534, z: -0.16944958, w: 0.9395832} + inSlope: {x: 1.2399426, y: 2.4220037, z: -0.8367636, w: -0.59416556} + outSlope: {x: 1.2399426, y: 2.4220037, z: -0.8367636, w: -0.59416556} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: 0.3302181, y: 0.10734977, z: -0.18905558, w: 0.918526} + inSlope: {x: 0.7226994, y: 1.5610499, z: -0.15749598, w: -0.4232991} + outSlope: {x: 0.7226994, y: 1.5610499, z: -0.15749598, w: -0.4232991} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: 0.33810276, y: 0.13020362, z: -0.14377283, w: 0.9209033} + inSlope: {x: -0.36388728, y: -0.4990059, z: 1.2583843, w: 0.38368556} + outSlope: {x: -0.36388728, y: -0.4990059, z: 1.2583843, w: 0.38368556} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: 0.2916662, y: 0.070761, z: -0.052125733, w: 0.95247394} + inSlope: {x: -1.0109304, y: -1.0287849, z: 1.221101, w: 0.44995826} + outSlope: {x: -1.0109304, y: -1.0287849, z: 1.221101, w: 0.44995826} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: 0.10549487, y: -0.02182338, z: 0.050858177, w: 0.9928787} + inSlope: {x: -2.9933226, y: -0.5813128, z: 0.77838945, w: 0.23486055} + outSlope: {x: -2.9933226, y: -0.5813128, z: 0.77838945, w: 0.23486055} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: -0.12771015, y: -0.036713026, z: 0.08875181, w: 0.98715013} + inSlope: {x: -3.385196, y: 0.19399871, z: 0.5929672, w: -0.4631438} + outSlope: {x: -3.385196, y: 0.19399871, z: 0.5929672, w: -0.4631438} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6333334 + value: {x: -0.35599303, y: 0.0008141315, z: 0.1601826, w: 0.92065734} + inSlope: {x: -0.88403916, y: -0.049161494, z: 0.8551518, w: -0.47321486} + outSlope: {x: -0.88403916, y: -0.049161494, z: 0.8551518, w: -0.47321486} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.70000005 + value: {x: -0.34599105, y: -0.020217007, z: 0.20436493, w: 0.91548705} + inSlope: {x: 1.213628, y: -0.000353083, z: 0.09225649, w: 0.4124507} + outSlope: {x: 1.213628, y: -0.000353083, z: 0.09225649, w: 0.4124507} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7666667 + value: {x: -0.20606968, y: 0.03929224, z: 0.17414035, w: 0.9621157} + inSlope: {x: 2.460991, y: 1.7785447, z: -0.5292374, w: 0.535415} + outSlope: {x: 2.460991, y: 1.7785447, z: -0.5292374, w: 0.535415} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000001 + value: {x: -0.12401104, y: 0.10974635, z: 0.16021454, w: 0.97309214} + inSlope: {x: 2.078433, y: 1.9971162, z: -0.27230603, w: 0.12195718} + outSlope: {x: 2.078433, y: 1.9971162, z: -0.27230603, w: 0.12195718} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.86666673 + value: {x: -0.045543823, y: 0.20989703, z: 0.1497017, w: 0.965121} + inSlope: {x: 0.23402399, y: 0.7589877, z: -0.30963433, w: -0.09409542} + outSlope: {x: 0.23402399, y: 0.7589877, z: -0.30963433, w: -0.09409542} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9666667 + value: {x: -0.111262046, y: 0.20290759, z: 0.0961938, w: 0.96808887} + inSlope: {x: -1.1357374, y: -0.6316532, z: -0.33227226, w: 0.031071633} + outSlope: {x: -1.1357374, y: -0.6316532, z: -0.33227226, w: 0.031071633} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.15222806, y: 0.17700377, z: 0.09374484, w: 0.9678369} + inSlope: {x: -1.2289815, y: -0.77711535, z: -0.0734689, w: -0.007558472} + outSlope: {x: -1.2289815, y: -0.77711535, z: -0.0734689, w: -0.007558472} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.0060913605, y: 0.14458916, z: 0.35998932, w: 0.921664} + inSlope: {x: -0.0000018998979, y: -0.0000058114524, z: -0.0000026822088, w: 0.0000017881392} + outSlope: {x: -0.0000018998979, y: -0.0000058114524, z: -0.0000026822088, + w: 0.0000017881392} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: 0.006091382, y: 0.14458905, z: 0.35998932, w: 0.92166406} + inSlope: {x: 0.03240275, y: -0.097636886, z: 0.01872182, w: 0.0073930626} + outSlope: {x: 0.03240275, y: -0.097636886, z: 0.01872182, w: 0.0073930626} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: 0.008251635, y: 0.13807993, z: 0.36123744, w: 0.92215693} + inSlope: {x: 0.2535277, y: -0.7447421, z: 0.13668047, w: 0.038658682} + outSlope: {x: 0.2535277, y: -0.7447421, z: 0.13668047, w: 0.038658682} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: 0.04598269, y: 0.031651914, z: 0.37928882, w: 0.92359287} + inSlope: {x: 0.69154954, y: -1.8386847, z: 0.2757092, w: -0.08059055} + outSlope: {x: 0.69154954, y: -1.8386847, z: 0.2757092, w: -0.08059055} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.06909653, y: -0.027639389, z: 0.38748196, w: 0.9188686} + inSlope: {x: 0.5940151, y: -1.4387608, z: 0.18865408, w: -0.1472524} + outSlope: {x: 0.5940151, y: -1.4387608, z: 0.18865408, w: -0.1472524} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: 0.13155687, y: -0.11617915, z: 0.38762054, w: 0.9049561} + inSlope: {x: 0.75436574, y: -0.6154851, z: -0.14684202, w: -0.12412818} + outSlope: {x: 0.75436574, y: -0.6154851, z: -0.14684202, w: -0.12412818} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5666667 + value: {x: 0.20591907, y: -0.14401013, z: 0.37849247, w: 0.89084333} + inSlope: {x: 0.076834604, y: 0.30367205, z: 0.2819316, w: -0.09153844} + outSlope: {x: 0.076834604, y: 0.30367205, z: 0.2819316, w: -0.09153844} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.20208248, y: -0.12815085, z: 0.39319244, w: 0.8877723} + inSlope: {x: -0.4116006, y: 0.80571634, z: 0.6831111, w: -0.11341362} + outSlope: {x: -0.4116006, y: 0.80571634, z: 0.6831111, w: -0.11341362} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.14431742, y: -0.045605365, z: 0.45544094, w: 0.8773062} + inSlope: {x: -0.9512812, y: 1.188391, z: 0.73040867, w: -0.14531586} + outSlope: {x: -0.9512812, y: 1.188391, z: 0.73040867, w: -0.14531586} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.0988466, y: 0.0077805505, z: 0.47161472, w: 0.87621254} + inSlope: {x: -0.39539102, y: 0.46427035, z: -0.18734725, w: 0.14302963} + outSlope: {x: -0.39539102, y: 0.46427035, z: -0.18734725, w: 0.14302963} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.067232646, y: 0.04777394, z: 0.43256456, w: 0.89782256} + inSlope: {x: -0.43138462, y: 0.59077525, z: -0.4420137, w: 0.20991415} + outSlope: {x: -0.43138462, y: 0.59077525, z: -0.4420137, w: 0.20991415} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9666667 + value: {x: 0.00981933, y: 0.13767026, z: 0.36540517, w: 0.9205594} + inSlope: {x: -0.20544559, y: 0.36935416, z: -0.28685537, w: 0.06504452} + outSlope: {x: -0.20544559, y: 0.36935416, z: -0.28685537, w: 0.06504452} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.0060913065, y: 0.14458911, z: 0.35998926, w: 0.92166406} + inSlope: {x: -0.11184081, y: 0.20756562, z: -0.16247764, w: 0.033139616} + outSlope: {x: -0.11184081, y: 0.20756562, z: -0.16247764, w: 0.033139616} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.20591213, y: 0.049999665, z: -0.21456584, w: 0.9534473} + inSlope: {x: -0.0000008940696, y: 0.0000021234155, z: 0.000002235174, w: 0} + outSlope: {x: -0.0000008940696, y: 0.0000021234155, z: 0.000002235174, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: 0.20591202, y: 0.04999973, z: -0.21456578, w: 0.95344734} + inSlope: {x: -0.02591327, y: 0.014517569, z: 0.07814013, w: 0.022158625} + outSlope: {x: -0.02591327, y: 0.014517569, z: 0.07814013, w: 0.022158625} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: 0.20418453, y: 0.05096767, z: -0.20935655, w: 0.9549245} + inSlope: {x: -0.19952954, y: 0.10973968, z: 0.59657454, w: 0.1564792} + outSlope: {x: -0.19952954, y: 0.10973968, z: 0.59657454, w: 0.1564792} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: 0.17522322, y: 0.066428095, z: -0.12391596, w: 0.9744378} + inSlope: {x: -0.51013273, y: 0.2608024, z: 1.4766738, w: 0.2650273} + outSlope: {x: -0.51013273, y: 0.2608024, z: 1.4766738, w: 0.2650273} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: 0.14849812, y: 0.07953799, z: -0.047914274, w: 0.9845437} + inSlope: {x: -0.2709124, y: 0.12818441, z: 0.75885403, w: 0.07027207} + outSlope: {x: -0.2709124, y: 0.12818441, z: 0.75885403, w: 0.07027207} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5666667 + value: {x: 0.12505035, y: 0.09023264, z: 0.016782979, w: 0.98789614} + inSlope: {x: 0.09742418, y: -0.051658053, z: -0.0801953, w: -0.0068798726} + outSlope: {x: 0.09742418, y: -0.051658053, z: -0.0801953, w: -0.0068798726} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.1315454, y: 0.0867886, z: 0.011436576, w: 0.9874375} + inSlope: {x: 0.60068953, y: -0.3467341, z: -0.32385242, w: -0.05875107} + outSlope: {x: 0.60068953, y: -0.3467341, z: -0.32385242, w: -0.05875107} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.20586033, y: 0.039857704, z: -0.02467478, w: 0.977458} + inSlope: {x: 1.0058837, y: -0.7081586, z: -0.581243, w: -0.18720481} + outSlope: {x: 1.0058837, y: -0.7081586, z: -0.581243, w: -0.18720481} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.23718874, y: 0.01546479, z: -0.059870936, w: 0.96949357} + inSlope: {x: -0.00016325712, y: -0.009505387, z: -0.48393893, w: -0.02953115} + outSlope: {x: -0.00016325712, y: -0.009505387, z: -0.48393893, w: -0.02953115} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.22043285, y: 0.029307514, z: -0.111968726, w: 0.9685109} + inSlope: {x: -0.1205899, y: 0.12220508, z: -0.669201, w: -0.05568354} + outSlope: {x: -0.1205899, y: 0.12220508, z: -0.669201, w: -0.05568354} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9666667 + value: {x: 0.20677546, y: 0.048333023, z: -0.20756976, w: 0.95489407} + inSlope: {x: -0.047846407, y: 0.08710287, z: -0.37671104, w: -0.073514946} + outSlope: {x: -0.047846407, y: 0.08710287, z: -0.37671104, w: -0.073514946} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.20591205, y: 0.049999658, z: -0.21456575, w: 0.95344734} + inSlope: {x: -0.025902117, y: 0.049999107, z: -0.20987992, w: -0.04340176} + outSlope: {x: -0.025902117, y: 0.049999107, z: -0.20987992, w: -0.04340176} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.23419763, y: 0.1392847, z: 0.033028703, w: 0.9615926} + inSlope: {x: -0.0000008940696, y: 0.0000053644176, z: -0.0000015646218, w: 0} + outSlope: {x: -0.0000008940696, y: 0.0000053644176, z: -0.0000015646218, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: -0.23419784, y: 0.13928477, z: 0.033028644, w: 0.96159256} + inSlope: {x: -0.04712664, y: 0.023586007, z: 0.1075002, w: -0.019095542} + outSlope: {x: -0.04712664, y: 0.023586007, z: 0.1075002, w: -0.019095542} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: -0.23733954, y: 0.14085709, z: 0.04019525, w: 0.9603195} + inSlope: {x: -0.34143203, y: 0.17037036, z: 0.7903722, w: -0.1626} + outSlope: {x: -0.34143203, y: 0.17037036, z: 0.7903722, w: -0.1626} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: -0.2822299, y: 0.16315205, z: 0.1464757, w: 0.9339553} + inSlope: {x: -0.6482985, y: 0.31984162, z: 1.5834196, w: -0.48306143} + outSlope: {x: -0.6482985, y: 0.31984162, z: 1.5834196, w: -0.48306143} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.30017987, y: 0.17196557, z: 0.19128142, w: 0.91854846} + inSlope: {x: -0.31049836, y: 0.15236536, z: 0.7770523, w: -0.27074936} + outSlope: {x: -0.31049836, y: 0.15236536, z: 0.7770523, w: -0.27074936} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: -0.30292964, y: 0.17330982, z: 0.1982792, w: 0.9159054} + inSlope: {x: 0.0000017881375, y: 0.0000029057255, z: -0.000002458692, w: 0.00000089406893} + outSlope: {x: 0.0000017881375, y: 0.0000029057255, z: -0.000002458692, w: 0.00000089406893} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5666667 + value: {x: -0.30292973, y: 0.17330976, z: 0.19827925, w: 0.9159054} + inSlope: {x: 0.092514396, y: -0.02002092, z: -0.071964405, w: 0.049363423} + outSlope: {x: 0.092514396, y: -0.02002092, z: -0.071964405, w: 0.049363423} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.2967621, y: 0.17197512, z: 0.19348153, w: 0.91919625} + inSlope: {x: 0.6850917, y: -0.17361502, z: -0.55096966, w: 0.34515452} + outSlope: {x: 0.6850917, y: -0.17361502, z: -0.55096966, w: 0.34515452} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.20372905, y: 0.1432039, z: 0.11433849, w: 0.9617244} + inSlope: {x: 1.4037256, y: -0.5430063, z: -1.3801414, w: 0.5565702} + outSlope: {x: 1.4037256, y: -0.5430063, z: -1.3801414, w: 0.5565702} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7666667 + value: {x: -0.13283099, y: 0.10995952, z: -0.021867933, w: 0.98477745} + inSlope: {x: 0.2306852, y: -0.10220102, z: -1.247946, w: 0.023125092} + outSlope: {x: 0.2306852, y: -0.10220102, z: -1.247946, w: 0.023125092} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.13387735, y: 0.110685594, z: -0.06907287, w: 0.98237187} + inSlope: {x: -0.35076618, y: 0.12551604, z: 0.004033625, w: -0.06439088} + outSlope: {x: -0.35076618, y: 0.12551604, z: 0.004033625, w: -0.06439088} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9333334 + value: {x: -0.2051177, y: 0.13252312, z: -0.0024486107, w: 0.9697208} + inSlope: {x: -0.7138996, y: 0.18414772, z: 0.82258266, w: -0.16957194} + outSlope: {x: -0.7138996, y: 0.18414772, z: 0.82258266, w: -0.16957194} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.23419775, y: 0.13928473, z: 0.033028606, w: 0.96159256} + inSlope: {x: -0.24936834, y: 0.054248177, z: 0.31440878, w: -0.076450184} + outSlope: {x: -0.24936834, y: 0.054248177, z: 0.31440878, w: -0.076450184} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2/mixamorig:RightHandThumb3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.23848245, y: -0.02493249, z: 0.12618929, w: 0.96259063} + inSlope: {x: 1.0153278, y: -0.03463341, z: -0.10915249, w: -0.25735795} + outSlope: {x: 1.0153278, y: -0.03463341, z: -0.10915249, w: -0.25735795} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.2723267, y: -0.026086938, z: 0.122550875, w: 0.95401204} + inSlope: {x: 1.7426324, y: -0.057790704, z: -0.22296387, w: -0.5203798} + outSlope: {x: 1.7426324, y: -0.057790704, z: -0.22296387, w: -0.5203798} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: 0.35465795, y: -0.028785205, z: 0.11132503, w: 0.92789865} + inSlope: {x: 2.7554016, y: -0.08518243, z: -0.45096958, w: -1.0414712} + outSlope: {x: 2.7554016, y: -0.08518243, z: -0.45096958, w: -1.0414712} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: 0.45602018, y: -0.031765766, z: 0.09248623, w: 0.8845806} + inSlope: {x: 2.9172802, y: -0.08184014, z: -0.6187361, w: -1.4372671} + outSlope: {x: 2.9172802, y: -0.08184014, z: -0.6187361, w: -1.4372671} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: 0.6295119, y: -0.040722378, z: 0.053429283, w: 0.77408123} + inSlope: {x: -0.62903094, y: -0.14017089, z: 0.4935858, w: 0.4140715} + outSlope: {x: -0.62903094, y: -0.14017089, z: 0.4935858, w: 0.4140715} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: 0.5705538, y: -0.046091504, z: 0.08603595, w: 0.8154397} + inSlope: {x: -3.7817376, y: -0.04145779, z: 1.5595686, w: 2.061891} + outSlope: {x: -3.7817376, y: -0.04145779, z: 1.5595686, w: 2.061891} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.37739608, y: -0.04348623, z: 0.15740052, w: 0.9115406} + inSlope: {x: -6.805538, y: 0.35450327, z: 1.8657411, w: 2.3235488} + outSlope: {x: -6.805538, y: 0.35450327, z: 1.8657411, w: 2.3235488} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: 0.11685127, y: -0.022457955, z: 0.21041869, w: 0.97034293} + inSlope: {x: -6.8303022, y: 0.65016645, z: 0.9885937, w: 0.9012777} + outSlope: {x: -6.8303022, y: 0.65016645, z: 0.9885937, w: 0.9012777} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.07795739, y: -0.00014180399, z: 0.22330676, w: 0.9716258} + inSlope: {x: -3.3735387, y: 0.39065313, z: 0.19343579, w: -0.024155082} + outSlope: {x: -3.3735387, y: 0.39065313, z: 0.19343579, w: -0.024155082} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: -0.10805129, y: 0.0035855833, z: 0.2233144, w: 0.9687326} + inSlope: {x: -0.4514092, y: 0.05591058, z: 0.00011220575, w: -0.043398146} + outSlope: {x: -0.4514092, y: 0.05591058, z: 0.00011220575, w: -0.043398146} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: -0.10805117, y: 0.003585708, z: 0.22331429, w: 0.9687326} + inSlope: {x: 0.0000026822092, y: -0.000000607688, z: 0.00000089406973, w: 0} + outSlope: {x: 0.0000026822092, y: -0.000000607688, z: 0.00000089406973, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5666667 + value: {x: -0.10805126, y: 0.003585627, z: 0.22331426, w: 0.9687326} + inSlope: {x: 0.16112459, y: -0.028402422, z: -0.050491963, w: 0.0286791} + outSlope: {x: 0.16112459, y: -0.028402422, z: -0.050491963, w: 0.0286791} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.09730965, y: 0.0016920606, z: 0.21994816, w: 0.97064453} + inSlope: {x: 1.1541048, y: -0.18031792, z: -0.3956037, w: 0.16729197} + outSlope: {x: 1.1541048, y: -0.18031792, z: -0.3956037, w: 0.16729197} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6333334 + value: {x: -0.031110898, y: -0.008435575, z: 0.19694066, w: 0.9798854} + inSlope: {x: 2.2172477, y: -0.27975106, z: -0.8569566, w: 0.21858211} + outSlope: {x: 2.2172477, y: -0.27975106, z: -0.8569566, w: 0.21858211} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.70000005 + value: {x: 0.09652679, y: -0.019764444, z: 0.13787262, w: 0.985537} + inSlope: {x: 0.42932752, y: -0.047479372, z: -0.42835882, w: 0.03540161} + outSlope: {x: 0.42932752, y: -0.047479372, z: -0.42835882, w: 0.03540161} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7666667 + value: {x: 0.029426906, y: -0.019594852, z: 0.1404437, w: 0.98945725} + inSlope: {x: -1.3626051, y: 0.023200754, z: 0.19111505, w: 0.019735677} + outSlope: {x: -1.3626051, y: 0.023200754, z: 0.19111505, w: 0.019735677} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000001 + value: {x: -0.011711688, y: -0.018576587, z: 0.14700148, w: 0.9888925} + inSlope: {x: -0.54749936, y: 0.010195897, z: 0.11854933, w: -0.010921055} + outSlope: {x: -0.54749936, y: 0.010195897, z: 0.11854933, w: -0.010921055} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.90000004 + value: {x: 0.10036444, y: -0.022331728, z: 0.14266482, w: 0.9844161} + inSlope: {x: 1.9454265, y: -0.05118245, z: -0.16272894, w: -0.17885233} + outSlope: {x: 1.9454265, y: -0.05118245, z: -0.16272894, w: -0.17885233} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9666667 + value: {x: 0.21782248, y: -0.024699697, z: 0.1292921, w: 0.9670713} + inSlope: {x: 1.0811728, y: -0.016040016, z: -0.14763027, w: -0.20620844} + outSlope: {x: 1.0811728, y: -0.016040016, z: -0.14763027, w: -0.20620844} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.23848248, y: -0.024932425, z: 0.12618935, w: 0.96259063} + inSlope: {x: 0.6198005, y: -0.0069818525, z: -0.09308258, w: -0.13441993} + outSlope: {x: 0.6198005, y: -0.0069818525, z: -0.09308258, w: -0.13441993} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.6321473, y: 0.0040327837, z: -0.07402039, w: 0.77129406} + inSlope: {x: 0.4026818, y: -0.0017836549, z: -0.047147196, w: -0.34061012} + outSlope: {x: 0.4026818, y: -0.0017836549, z: -0.047147196, w: -0.34061012} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.64557004, y: 0.0039733285, z: -0.07559197, w: 0.7599404} + inSlope: {x: 0.6789484, y: -0.0031356488, z: -0.07949966, w: -0.59981966} + outSlope: {x: 0.6789484, y: -0.0031356488, z: -0.07949966, w: -0.59981966} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: 0.715197, y: 0.0036280425, z: -0.08374486, w: 0.6938781} + inSlope: {x: 1.058456, y: -0.005755835, z: -0.12393661, w: -1.1008688} + outSlope: {x: 1.058456, y: -0.005755835, z: -0.12393661, w: -1.1008688} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: 0.7635398, y: 0.0033438345, z: -0.08940567, w: 0.6395329} + inSlope: {x: -0.63485837, y: 0.0038015004, z: 0.07433542, w: 0.7272605} + outSlope: {x: -0.63485837, y: 0.0038015004, z: 0.07433542, w: 0.7272605} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: 0.7244773, y: 0.003576587, z: -0.084831625, w: 0.6840493} + inSlope: {x: -2.0375795, y: 0.010621339, z: 0.23858988, w: 2.0315008} + outSlope: {x: -2.0375795, y: 0.010621339, z: 0.23858988, w: 2.0315008} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.62770116, y: 0.0040519238, z: -0.07349968, w: 0.7749663} + inSlope: {x: -3.4736264, y: 0.014438478, z: 0.40674004, w: 2.7616088} + outSlope: {x: -3.4736264, y: 0.014438478, z: 0.40674004, w: 2.7616088} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: 0.49290222, y: 0.004539152, z: -0.057715625, w: 0.86815655} + inSlope: {x: -3.9852543, y: 0.012255188, z: 0.4666489, w: 2.3434193} + outSlope: {x: -3.9852543, y: 0.012255188, z: 0.4666489, w: 2.3434193} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.36201757, y: 0.0048689363, z: -0.042389754, w: 0.93119425} + inSlope: {x: -3.1924496, y: 0.007158733, z: 0.37381345, w: 1.368734} + outSlope: {x: -3.1924496, y: 0.007158733, z: 0.37381345, w: 1.368734} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: 0.28007227, y: 0.005016401, z: -0.03279473, w: 0.9594055} + inSlope: {x: -2.0452228, y: 0.0033430515, z: 0.23948099, w: 0.6395699} + outSlope: {x: -2.0452228, y: 0.0033430515, z: 0.23948099, w: 0.6395699} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: 0.16652383, y: 0.005154519, z: -0.019498872, w: 0.98583114} + inSlope: {x: -0.5221329, y: 0.00048384554, z: 0.061137706, w: 0.09223941} + outSlope: {x: -0.5221329, y: 0.00048384554, z: 0.061137706, w: 0.09223941} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5666667 + value: {x: 0.14381891, y: 0.005173495, z: -0.016840197, w: 0.98944724} + inSlope: {x: -0.10517387, y: 0.000080878366, z: 0.012313545, w: 0.015573798} + outSlope: {x: -0.10517387, y: 0.000080878366, z: 0.012313545, w: 0.015573798} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6333334 + value: {x: 0.15365627, y: 0.0051655527, z: -0.017992277, w: 0.98794705} + inSlope: {x: 0.47830907, y: -0.0004022756, z: -0.056006186, w: -0.077081345} + outSlope: {x: 0.47830907, y: -0.0004022756, z: -0.056006186, w: -0.077081345} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.70000005 + value: {x: 0.18606895, y: 0.0051359697, z: -0.021787522, w: 0.9822817} + inSlope: {x: 0.09770993, y: -0.000093611634, z: -0.011440262, w: -0.017730247} + outSlope: {x: 0.09770993, y: -0.000093611634, z: -0.011440262, w: -0.017730247} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000001 + value: {x: 0.16710557, y: 0.005154032, z: -0.019566974, w: 0.98573136} + inSlope: {x: 0.72024906, y: -0.00073673495, z: -0.084335625, w: -0.1402752} + outSlope: {x: 0.72024906, y: -0.00073673495, z: -0.084335625, w: -0.1402752} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.86666673 + value: {x: 0.3061672, y: 0.0049738646, z: -0.03585004, w: 0.9512895} + inSlope: {x: 3.1166291, y: -0.0055508404, z: -0.36493495, w: -1.0620415} + outSlope: {x: 3.1166291, y: -0.0055508404, z: -0.36493495, w: -1.0620415} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.90000004 + value: {x: 0.4203582, y: 0.00473721, z: -0.049221102, w: 0.90600985} + inSlope: {x: 3.3116736, y: -0.008127638, z: -0.38777745, w: -1.5546691} + outSlope: {x: 3.3116736, y: -0.008127638, z: -0.38777745, w: -1.5546691} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9333334 + value: {x: 0.5269454, y: 0.004432022, z: -0.061701868, w: 0.84764487} + inSlope: {x: 2.7425284, y: -0.008748563, z: -0.3211342, w: -1.6733882} + outSlope: {x: 2.7425284, y: -0.008748563, z: -0.3211342, w: -1.6733882} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9666667 + value: {x: 0.60319346, y: 0.0041539725, z: -0.07063005, w: 0.79445064} + inSlope: {x: 1.57803, y: -0.0059904754, z: -0.18477514, w: -1.1452632} + outSlope: {x: 1.57803, y: -0.0059904754, z: -0.18477514, w: -1.1452632} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.6321473, y: 0.0040326575, z: -0.0740202, w: 0.77129406} + inSlope: {x: 0.86861634, y: -0.0036394538, z: -0.101704545, w: -0.69469815} + outSlope: {x: 0.86861634, y: -0.0036394538, z: -0.101704545, w: -0.69469815} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.26203796, y: 0.000000033961708, z: -0.029294927, w: 0.96461284} + inSlope: {x: 0.40486154, y: -0.00000014009198, z: -0.045263447, w: -0.11444806} + outSlope: {x: 0.40486154, y: -0.00000014009198, z: -0.045263447, w: -0.11444806} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: 0.30859745, y: 0.00000008923602, z: -0.034500085, w: 0.9505669} + inSlope: {x: 1.1183183, y: -0.0000013713893, z: -0.12502298, w: -0.37348592} + outSlope: {x: 1.1183183, y: -0.0000013713893, z: -0.12502298, w: -0.37348592} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: 0.42045385, y: 0.000000037785515, z: -0.047005266, w: 0.90609556} + inSlope: {x: -0.42514092, y: 0.00000017035484, z: 0.0475254, w: 0.18909666} + outSlope: {x: -0.42514092, y: 0.00000017035484, z: 0.0475254, w: 0.18909666} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: 0.38757333, y: -0.00000004192692, z: -0.043329462, w: 0.92082} + inSlope: {x: -1.8760748, y: -0.000002047515, z: 0.20973746, w: 0.730691} + outSlope: {x: -1.8760748, y: -0.000002047515, z: 0.20973746, w: 0.730691} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.2953822, y: -0.00000009871547, z: -0.03302277, w: 0.9548083} + inSlope: {x: -3.081461, y: -0.0000005670976, z: 0.34449837, w: 0.9336189} + outSlope: {x: -3.081461, y: -0.0000005670976, z: 0.34449837, w: 0.9336189} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: 0.1821426, y: -0.000000079733425, z: -0.020362906, w: 0.98306125} + inSlope: {x: -2.9346735, y: 0.0000008386502, z: 0.32808757, w: 0.60214525} + outSlope: {x: -2.9346735, y: 0.0000008386502, z: 0.32808757, w: 0.60214525} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.09973731, y: -0.00000004280546, z: -0.011150267, w: 0.9949513} + inSlope: {x: -1.4279096, y: 0.00000041750664, z: 0.15963618, w: 0.19656213} + outSlope: {x: -1.4279096, y: 0.00000041750664, z: 0.15963618, w: 0.19656213} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: 0.08694863, y: -0.00000005189965, z: -0.009720495, w: 0.9961654} + inSlope: {x: -0.19182858, y: -0.0000007328929, z: 0.021446457, w: 0.018211307} + outSlope: {x: -0.19182858, y: -0.0000007328929, z: 0.021446457, w: 0.018211307} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.086948775, y: 0.0000000014653632, z: -0.009720608, w: 0.99616534} + inSlope: {x: 0.000001341104, y: -0.0000031685477, z: -0.0000007124628, w: -0.0000008940705} + outSlope: {x: 0.000001341104, y: -0.0000031685477, z: -0.0000007124628, w: -0.0000008940705} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6333334 + value: {x: 0.079162516, y: 0.00000009665951, z: -0.0088500185, w: 0.9968225} + inSlope: {x: -0.19446631, y: 0.00000016846593, z: 0.021739583, w: 0.015664995} + outSlope: {x: -0.19446631, y: 0.00000016846593, z: 0.021739583, w: 0.015664995} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.08615877, y: 0.00000009427306, z: -0.009632223, w: 0.9962349} + inSlope: {x: 0.4702751, y: 0.0000021057024, z: -0.052572504, w: -0.042862583} + outSlope: {x: 0.4702751, y: 0.0000021057024, z: -0.052572504, w: -0.042862583} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.90000004 + value: {x: 0.20695959, y: -0.0000000054612666, z: -0.02313744, w: 0.97807586} + inSlope: {x: 0.8622129, y: -0.000000734968, z: -0.09639078, w: -0.18358201} + outSlope: {x: 0.8622129, y: -0.000000734968, z: -0.09639078, w: -0.18358201} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.26203796, y: 0.0000000222609, z: -0.029294932, w: 0.96461284} + inSlope: {x: 0.23120396, y: 0.0000017827033, z: -0.025846796, w: -0.06258851} + outSlope: {x: 0.23120396, y: 0.0000017827033, z: -0.025846796, w: -0.06258851} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2/mixamorig:RightHandIndex3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.40191796, y: -0.054207135, z: 0.03670956, w: 0.91333234} + inSlope: {x: 0.6614318, y: -0.025946906, z: -0.11735971, w: -0.29775378} + outSlope: {x: 0.6614318, y: -0.025946906, z: -0.11735971, w: -0.29775378} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.4239657, y: -0.055072032, z: 0.032797568, w: 0.9034072} + inSlope: {x: 1.1245584, y: -0.035909355, z: -0.21150354, w: -0.54726446} + outSlope: {x: 1.1245584, y: -0.035909355, z: -0.21150354, w: -0.54726446} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: 0.5408947, y: -0.057169307, z: 0.008803098, w: 0.839099} + inSlope: {x: 1.8189425, y: 0.005094244, z: -0.4101731, w: -1.1618444} + outSlope: {x: 1.8189425, y: 0.005094244, z: -0.4101731, w: -1.1618444} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: 0.6354478, y: -0.056415346, z: -0.012118709, w: 0.7699848} + inSlope: {x: -0.7844684, y: -0.081033215, z: 0.27326322, w: 0.59815145} + outSlope: {x: -0.7844684, y: -0.081033215, z: 0.27326322, w: 0.59815145} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: 0.58167183, y: -0.060639814, z: 0.004934811, w: 0.81114507} + inSlope: {x: -2.9242802, y: -0.078248814, z: 0.81802607, w: 1.8697037} + outSlope: {x: -2.9242802, y: -0.078248814, z: 0.81802607, w: 1.8697037} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.4404958, y: -0.061631933, z: 0.042416357, w: 0.8946317} + inSlope: {x: -5.0070496, y: 0.15439002, z: 1.0991261, w: 2.2975965} + outSlope: {x: -5.0070496, y: 0.15439002, z: 1.0991261, w: 2.2975965} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: 0.24786855, y: -0.050347146, z: 0.07820988, w: 0.96431816} + inSlope: {x: -5.5240536, y: 0.39141226, z: 0.7993007, w: 1.462774} + outSlope: {x: -5.5240536, y: 0.39141226, z: 0.7993007, w: 1.462774} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.07222558, y: -0.035537783, z: 0.095703065, w: 0.99214995} + inSlope: {x: -4.0375886, y: 0.33264998, z: 0.2857913, w: 0.45470598} + outSlope: {x: -4.0375886, y: 0.33264998, z: 0.2857913, w: 0.45470598} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: -0.021304008, y: -0.028170481, z: 0.09726263, w: 0.9946319} + inSlope: {x: -2.1236165, y: 0.15163508, z: -0.055652194, w: 0.012996221} + outSlope: {x: -2.1236165, y: 0.15163508, z: -0.055652194, w: 0.012996221} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: -0.08849938, y: -0.025274195, z: 0.08338912, w: 0.9922577} + inSlope: {x: -0.2391327, y: -0.015296556, z: -0.2812462, w: 0.004379154} + outSlope: {x: -0.2391327, y: -0.015296556, z: -0.2812462, w: 0.004379154} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5666667 + value: {x: -0.005428036, y: -0.030364294, z: 0.046858728, w: 0.9984252} + inSlope: {x: 1.0349119, y: -0.029428836, z: -0.14616945, w: 0.009310824} + outSlope: {x: 1.0349119, y: -0.029428836, z: -0.14616945, w: 0.009310824} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.031548407, y: -0.031322606, z: 0.04391416, w: 0.9980457} + inSlope: {x: 1.614872, y: -0.05122755, z: -0.04620858, w: -0.07803614} + outSlope: {x: 1.614872, y: -0.05122755, z: -0.04620858, w: -0.07803614} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6333334 + value: {x: 0.10223013, y: -0.033779465, z: 0.04377816, w: 0.9932228} + inSlope: {x: 2.1766138, y: -0.09238782, z: -0.00020557677, w: -0.2320076} + outSlope: {x: 2.1766138, y: -0.09238782, z: -0.00020557677, w: -0.2320076} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.70000005 + value: {x: 0.21653791, y: -0.040121626, z: 0.04465323, w: 0.97442687} + inSlope: {x: 0.25181815, y: -0.030023767, z: 0.081833586, w: -0.052578278} + outSlope: {x: 0.25181815, y: -0.030023767, z: 0.081833586, w: -0.052578278} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7666667 + value: {x: 0.1344822, y: -0.036747452, z: 0.056130495, w: 0.9886423} + inSlope: {x: -1.5962553, y: 0.07538879, z: 0.17438903, w: 0.22000891} + outSlope: {x: -1.5962553, y: 0.07538879, z: 0.17438903, w: 0.22000891} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000001 + value: {x: 0.0870268, y: -0.034457456, z: 0.06098197, w: 0.99374056} + inSlope: {x: -0.59294426, y: 0.025633331, z: 0.09754772, w: 0.06373725} + outSlope: {x: -0.59294426, y: 0.025633331, z: 0.09754772, w: 0.06373725} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.90000004 + value: {x: 0.2319906, y: -0.04385116, z: 0.056544665, w: 0.9700825} + inSlope: {x: 2.4401798, y: -0.16046982, z: -0.19110882, w: -0.5842065} + outSlope: {x: 2.4401798, y: -0.16046982, z: -0.19110882, w: -0.5842065} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9666667 + value: {x: 0.37696123, y: -0.052922945, z: 0.0404654, w: 0.9238301} + inSlope: {x: 1.317092, y: -0.074694335, z: -0.17862825, w: -0.5029379} + outSlope: {x: 1.317092, y: -0.074694335, z: -0.17862825, w: -0.5029379} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.40191802, y: -0.054207183, z: 0.036709584, w: 0.9133323} + inSlope: {x: 0.7487045, y: -0.038527176, z: -0.112674564, w: -0.31493455} + outSlope: {x: 0.7487045, y: -0.038527176, z: -0.112674564, w: -0.31493455} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.54213303, y: 0.011250879, z: -0.0672522, w: 0.83752155} + inSlope: {x: 0.44085857, y: -0.0042521954, z: -0.055129673, w: -0.29540595} + outSlope: {x: 0.44085857, y: -0.0042521954, z: -0.055129673, w: -0.29540595} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.5568283, y: 0.011109139, z: -0.06908985, w: 0.8276747} + inSlope: {x: 0.74689597, y: -0.0075333887, z: -0.09341229, w: -0.52436644} + outSlope: {x: 0.74689597, y: -0.0075333887, z: -0.09341229, w: -0.52436644} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: 0.63405085, y: 0.010271819, z: -0.078749485, w: 0.76920253} + inSlope: {x: 1.188586, y: -0.014128814, z: -0.14871463, w: -0.9904021} + outSlope: {x: 1.188586, y: -0.014128814, z: -0.14871463, w: -0.9904021} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: 0.6905853, y: 0.009544699, z: -0.08582499, w: 0.71807724} + inSlope: {x: -0.6655482, y: 0.008752454, z: 0.08329947, w: 0.6159211} + outSlope: {x: -0.6655482, y: 0.008752454, z: 0.08329947, w: 0.6159211} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: 0.64874774, y: 0.010093058, z: -0.080588646, w: 0.7566571} + inSlope: {x: -2.1713119, y: 0.025064994, z: 0.27165627, w: 1.7550294} + outSlope: {x: -2.1713119, y: 0.025064994, z: 0.27165627, w: 1.7550294} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.5458312, y: 0.011215699, z: -0.06771457, w: 0.8350792} + inSlope: {x: -3.6480906, y: 0.033752363, z: 0.45614377, w: 2.3393648} + outSlope: {x: -3.6480906, y: 0.033752363, z: 0.45614377, w: 2.3393648} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: 0.40554172, y: 0.012343216, z: -0.050179064, w: 0.91261476} + inSlope: {x: -4.099178, y: 0.027867135, z: 0.5122136, w: 1.8958061} + outSlope: {x: -4.099178, y: 0.027867135, z: 0.5122136, w: 1.8958061} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.2725527, y: 0.013073508, z: -0.033567, w: 0.96146625} + inSlope: {x: -3.2362185, y: 0.015630463, z: 0.40417388, w: 1.0326452} + outSlope: {x: -3.2362185, y: 0.015630463, z: 0.40417388, w: 1.0326452} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: 0.18979384, y: 0.0133852465, z: -0.02323414, w: 0.98145777} + inSlope: {x: -2.1356103, y: 0.0070973607, z: 0.26661113, w: 0.44708928} + outSlope: {x: -2.1356103, y: 0.0070973607, z: 0.26661113, w: 0.44708928} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: 0.055113062, y: 0.013678035, z: -0.006425514, w: 0.99836576} + inSlope: {x: -0.70913005, y: 0.00092851964, z: 0.08848047, w: 0.044599786} + outSlope: {x: -0.70913005, y: 0.00092851964, z: 0.08848047, w: 0.044599786} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5666667 + value: {x: 0.041094754, y: 0.013693575, z: -0.0046764496, w: 0.9990505} + inSlope: {x: 0.45551527, y: -0.0005164513, z: -0.056834556, w: -0.022700444} + outSlope: {x: 0.45551527, y: -0.0005164513, z: -0.056834556, w: -0.022700444} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.06425657, y: 0.013666102, z: -0.0075664297, w: 0.9978112} + inSlope: {x: 1.25264, y: -0.0020145755, z: -0.1563107, w: -0.10577196} + outSlope: {x: 1.25264, y: -0.0020145755, z: -0.1563107, w: -0.10577196} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.1993401, y: 0.013354524, z: -0.024425872, w: 0.97953486} + inSlope: {x: 2.023056, y: -0.006443588, z: -0.25255266, w: -0.40299743} + outSlope: {x: 2.023056, y: -0.006443588, z: -0.25255266, w: -0.40299743} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.29433355, y: 0.012973881, z: -0.03628714, w: 0.95492554} + inSlope: {x: 0.8862177, y: -0.004132265, z: -0.11067535, w: -0.2719671} + outSlope: {x: 0.8862177, y: -0.004132265, z: -0.11067535, w: -0.2719671} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.3734789, y: 0.012546839, z: -0.04617311, w: 0.9264039} + inSlope: {x: 1.1068228, y: -0.006823553, z: -0.13828033, w: -0.4609474} + outSlope: {x: 1.1068228, y: -0.006823553, z: -0.13828033, w: -0.4609474} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9333334 + value: {x: 0.5017127, y: 0.011614869, z: -0.06219849, w: 0.86271715} + inSlope: {x: 1.0499341, y: -0.008861054, z: -0.13125116, w: -0.61108947} + outSlope: {x: 1.0499341, y: -0.008861054, z: -0.13125116, w: -0.61108947} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.54213303, y: 0.011250812, z: -0.067252204, w: 0.8375216} + inSlope: {x: 0.33566448, y: -0.0031378523, z: -0.041971248, w: -0.21738788} + outSlope: {x: 0.33566448, y: -0.0031378523, z: -0.041971248, w: -0.21738788} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.28792787, y: -0.0029296535, z: -0.033195227, w: 0.95707214} + inSlope: {x: 0.41244683, y: 0.00019372672, z: -0.046871822, w: -0.12899816} + outSlope: {x: 0.41244683, y: 0.00019372672, z: -0.046871822, w: -0.12899816} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: 0.33524412, y: -0.0029047534, z: -0.038572382, w: 0.9413369} + inSlope: {x: 1.1316068, y: 0.00070447795, z: -0.12858419, w: -0.4143753} + outSlope: {x: 1.1316068, y: 0.00070447795, z: -0.12858419, w: -0.4143753} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: 0.4452282, y: -0.002815627, z: -0.05106663, w: 0.89395535} + inSlope: {x: -0.4938931, y: -0.0004646509, z: 0.056093156, w: 0.23581003} + outSlope: {x: -0.4938931, y: -0.0004646509, z: 0.056093156, w: 0.23581003} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: 0.4092875, y: -0.0028497346, z: -0.046984628, w: 0.9111905} + inSlope: {x: -2.0204687, y: -0.0015468944, z: 0.2295404, w: 0.83895934} + outSlope: {x: -2.0204687, y: -0.0015468944, z: 0.2295404, w: 0.83895934} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.31053028, y: -0.0029187533, z: -0.035763938, w: 0.94988596} + inSlope: {x: -3.3023305, y: -0.00161242, z: 0.37531346, w: 1.0576649} + outSlope: {x: -3.3023305, y: -0.00161242, z: 0.37531346, w: 1.0576649} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: 0.18913217, y: -0.0029572293, z: -0.021963732, w: 0.9817015} + inSlope: {x: -3.1473212, y: -0.0005564746, z: 0.35784566, w: 0.67431456} + outSlope: {x: -3.1473212, y: -0.0005564746, z: 0.35784566, w: 0.67431456} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.10070887, y: -0.0029558516, z: -0.011907564, w: 0.99484026} + inSlope: {x: -1.5321786, y: 0.000054154087, z: 0.17425512, w: 0.21674754} + outSlope: {x: -1.5321786, y: 0.000054154087, z: 0.17425512, w: 0.21674754} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: 0.08698693, y: -0.002953619, z: -0.010346726, w: 0.9961513} + inSlope: {x: -0.20580491, y: 0.000034886183, z: 0.02341028, w: 0.01966417} + outSlope: {x: -0.20580491, y: 0.000034886183, z: 0.02341028, w: 0.01966417} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.086988434, y: -0.0029534383, z: -0.010346778, w: 0.9961512} + inSlope: {x: -0.000035762787, y: 0.0000009883674, z: 0.0000034784912, w: 0.000003576279} + outSlope: {x: -0.000035762787, y: 0.0000009883674, z: 0.0000034784912, w: 0.000003576279} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7666667 + value: {x: 0.13353916, y: -0.002959054, z: -0.015641678, w: 0.99091566} + inSlope: {x: 0.5868474, y: -0.000024677698, z: -0.06674458, w: -0.080787174} + outSlope: {x: 0.5868474, y: -0.000024677698, z: -0.06674458, w: -0.080787174} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.90000004 + value: {x: 0.23324637, y: -0.002948778, z: -0.026979389, w: 0.97203887} + inSlope: {x: 0.85668063, y: 0.00022085266, z: -0.09739339, w: -0.20712018} + outSlope: {x: 0.85668063, y: 0.00022085266, z: -0.09739339, w: -0.20712018} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.2879278, y: -0.0029295855, z: -0.033195194, w: 0.95707214} + inSlope: {x: 0.22938095, y: 0.00009616148, z: -0.026075566, w: -0.06890065} + outSlope: {x: 0.22938095, y: 0.00009616148, z: -0.026075566, w: -0.06890065} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2/mixamorig:RightHandMiddle3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.47276765, y: -0.03212018, z: 0.0051863543, w: 0.88058627} + inSlope: {x: 0.6418651, y: -0.038967576, z: -0.040825274, w: -0.35604176} + outSlope: {x: 0.6418651, y: -0.038967576, z: -0.040825274, w: -0.35604176} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.49416316, y: -0.0334191, z: 0.0038255118, w: 0.8687182} + inSlope: {x: 1.0888766, y: -0.063919775, z: -0.082562275, w: -0.6476095} + outSlope: {x: 1.0888766, y: -0.063919775, z: -0.082562275, w: -0.6476095} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: 0.606933, y: -0.039390113, z: -0.0070712306, w: 0.7937448} + inSlope: {x: 1.7438434, y: -0.066830866, z: -0.22290993, w: -1.3325366} + outSlope: {x: 1.7438434, y: -0.066830866, z: -0.22290993, w: -1.3325366} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: 0.69633543, y: -0.03844179, z: -0.029513923, w: 0.7160783} + inSlope: {x: -0.77104306, y: 0.041145474, z: -0.17650884, w: 0.6931499} + outSlope: {x: -0.77104306, y: 0.041145474, z: -0.17650884, w: 0.6931499} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: 0.64412594, y: -0.036961593, z: -0.034238476, w: 0.7632584} + inSlope: {x: -2.8448074, y: -0.011004211, z: -0.13924268, w: 2.1643524} + outSlope: {x: -2.8448074, y: -0.011004211, z: -0.13924268, w: 2.1643524} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.5066816, y: -0.039175402, z: -0.038796768, w: 0.86036843} + inSlope: {x: -4.8942814, y: -0.16768825, z: -0.20661813, w: 2.7366734} + outSlope: {x: -4.8942814, y: -0.16768825, z: -0.20661813, w: 2.7366734} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: 0.31784052, y: -0.04814081, z: -0.048013017, w: 0.94570327} + inSlope: {x: -5.4241257, y: -0.3378617, z: -0.34709728, w: 1.8777387} + outSlope: {x: -5.4241257, y: -0.3378617, z: -0.34709728, w: 1.8777387} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.14507325, y: -0.061699513, z: -0.061936583, w: 0.985551} + inSlope: {x: -3.9734192, y: -0.35107917, z: -0.4743128, w: 0.70708936} + outSlope: {x: -3.9734192, y: -0.35107917, z: -0.4743128, w: 0.70708936} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: 0.05294592, y: -0.071546085, z: -0.07963387, w: 0.99284256} + inSlope: {x: -2.0888472, y: -0.2539722, z: -0.6398092, w: 0.08750978} + outSlope: {x: -2.0888472, y: -0.2539722, z: -0.6398092, w: 0.08750978} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: -0.012750627, y: -0.08286293, z: -0.13400255, w: 0.9874282} + inSlope: {x: -0.22944117, y: -0.063315004, z: -0.8927443, w: -0.12710454} + outSlope: {x: -0.22944117, y: -0.063315004, z: -0.8927443, w: -0.12710454} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5666667 + value: {x: 0.067209184, y: -0.057875805, z: -0.2170947, w: 0.9721128} + inSlope: {x: 0.978267, y: 0.37258363, z: -0.0053915307, w: -0.049062952} + outSlope: {x: 0.978267, y: 0.37258363, z: -0.0053915307, w: -0.049062952} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.10174987, y: -0.04407448, z: -0.21121147, w: 0.9711304} + inSlope: {x: 1.4803953, y: 0.55280924, z: 0.6163534, w: -0.030477941} + outSlope: {x: 1.4803953, y: 0.55280924, z: 0.6163534, w: -0.030477941} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6333334 + value: {x: 0.16590223, y: -0.021021847, z: -0.17600445, w: 0.9700809} + inSlope: {x: 2.0090897, y: 0.5881999, z: 1.2123878, w: -0.12150684} + outSlope: {x: 2.0090897, y: 0.5881999, z: 1.2123878, w: -0.12150684} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.70000005 + value: {x: 0.28128296, y: -0.0075708437, z: -0.09811566, w: 0.9545658} + inSlope: {x: 0.7470211, y: -0.48317134, z: 0.57879996, w: -0.14663449} + outSlope: {x: 0.7470211, y: -0.48317134, z: 0.57879996, w: -0.14663449} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000001 + value: {x: 0.25379184, y: -0.11856694, z: -0.09993798, w: 0.95474815} + inSlope: {x: 0.044774517, y: -0.67021763, z: 0.06613727, w: -0.079336226} + outSlope: {x: 0.044774517, y: -0.67021763, z: 0.06613727, w: -0.079336226} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.90000004 + value: {x: 0.3678041, y: -0.08569876, z: -0.051963456, w: 0.92448676} + inSlope: {x: 1.5955269, y: 0.77990973, z: 0.7454622, w: -0.52087337} + outSlope: {x: 1.5955269, y: 0.77990973, z: 0.7454622, w: -0.52087337} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9666667 + value: {x: 0.4579868, y: -0.039763488, z: -0.003993073, w: 0.8880603} + inSlope: {x: 0.79431725, y: 0.40876347, z: 0.46563125, w: -0.37066913} + outSlope: {x: 0.79431725, y: 0.40876347, z: 0.46563125, w: -0.37066913} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.4727678, y: -0.03212026, z: 0.005186368, w: 0.88058615} + inSlope: {x: 0.44343036, y: 0.22929701, z: 0.2753835, w: -0.22422394} + outSlope: {x: 0.44343036, y: 0.22929701, z: 0.2753835, w: -0.22422394} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.47911295, y: 0.00012532459, z: -0.053565208, w: 0.8761173} + inSlope: {x: 0.42304066, y: -0.000032524404, z: -0.047294494, w: -0.23876666} + outSlope: {x: 0.42304066, y: -0.000032524404, z: -0.047294494, w: -0.23876666} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.4932143, y: 0.00012424044, z: -0.05514169, w: 0.8681584} + inSlope: {x: 0.7217641, y: -0.000060210983, z: -0.08069364, w: -0.42662945} + outSlope: {x: 0.7217641, y: -0.000060210983, z: -0.08069364, w: -0.42662945} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.6063457, y: 0.0001133567, z: -0.0677899, w: 0.7923065} + inSlope: {x: 0.9176991, y: -0.00009864999, z: -0.102599874, w: -0.6989739} + outSlope: {x: 0.9176991, y: -0.00009864999, z: -0.102599874, w: -0.6989739} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: 0.63057977, y: 0.00011057911, z: -0.07049931, w: 0.7729159} + inSlope: {x: -0.53087807, y: 0.00005765833, z: 0.05935226, w: 0.4179606} + outSlope: {x: -0.53087807, y: 0.00005765833, z: 0.05935226, w: 0.4179606} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: 0.594552, y: 0.00011450294, z: -0.066471405, w: 0.8013049} + inSlope: {x: -1.8908038, y: 0.00019354286, z: 0.21139222, w: 1.3295398} + outSlope: {x: -1.8908038, y: 0.00019354286, z: 0.21139222, w: 1.3295398} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.5045262, y: 0.00012348196, z: -0.056406494, w: 0.8615519} + inSlope: {x: -3.1566548, y: 0.00026342075, z: 0.3529157, w: 1.8147585} + outSlope: {x: -3.1566548, y: 0.00026342075, z: 0.3529157, w: 1.8147585} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: 0.38410833, y: 0.00013206432, z: -0.042943694, w: 0.9222888} + inSlope: {x: -3.4968243, y: 0.00021228197, z: 0.39094877, w: 1.5065254} + outSlope: {x: -3.4968243, y: 0.00021228197, z: 0.39094877, w: 1.5065254} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.2714046, y: 0.0001376341, z: -0.030343244, w: 0.9619869} + inSlope: {x: -2.718024, y: 0.00012110935, z: 0.3038752, w: 0.8496971} + outSlope: {x: -2.718024, y: 0.00012110935, z: 0.3038752, w: 0.8496971} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.15721434, y: 0.00014123709, z: -0.017576743, w: 0.9874081} + inSlope: {x: -1.1532004, y: 0.000026190159, z: 0.1289306, w: 0.19487312} + outSlope: {x: -1.1532004, y: 0.000026190159, z: 0.1289306, w: 0.19487312} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5666667 + value: {x: 0.096805945, y: 0.00014243262, z: -0.010822889, w: 0.99524444} + inSlope: {x: 0.12490663, y: -0.0000017438292, z: -0.013964244, w: -0.012600131} + outSlope: {x: 0.12490663, y: -0.0000017438292, z: -0.013964244, w: -0.012600131} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6333334 + value: {x: 0.12641808, y: 0.00014182784, z: -0.014133599, w: 0.99187636} + inSlope: {x: 0.8368087, y: -0.000017017885, z: -0.093555555, w: -0.11217448} + outSlope: {x: 0.8368087, y: -0.000017017885, z: -0.093555555, w: -0.11217448} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.21943168, y: 0.00013963136, z: -0.02453264, w: 0.9753194} + inSlope: {x: 0.865898, y: -0.00002372646, z: -0.096807525, w: -0.19773602} + outSlope: {x: 0.865898, y: -0.00002372646, z: -0.096807525, w: -0.19773602} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.86666673 + value: {x: 0.35474005, y: 0.00013360054, z: -0.03966016, w: 0.9341234} + inSlope: {x: 1.3016958, y: -0.000072796836, z: -0.14552891, w: -0.50326383} + outSlope: {x: 1.3016958, y: -0.000072796836, z: -0.14552891, w: -0.50326383} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9666667 + value: {x: 0.46814686, y: 0.0001261845, z: -0.05233922, w: 0.8820993} + inSlope: {x: 0.5944572, y: -0.000042789656, z: -0.06646269, w: -0.3118357} + outSlope: {x: 0.5944572, y: -0.000042789656, z: -0.06646269, w: -0.3118357} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.47911286, y: 0.00012542386, z: -0.053565238, w: 0.87611735} + inSlope: {x: 0.32898042, y: -0.000022819317, z: -0.036780607, w: -0.17945783} + outSlope: {x: 0.32898042, y: -0.000022819317, z: -0.036780607, w: -0.17945783} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.28988287, y: 0.00000005005065, z: -0.03236721, w: 0.95651466} + inSlope: {x: 0.37241575, y: 0.000001481658, z: -0.04158027, w: -0.11695682} + outSlope: {x: 0.37241575, y: 0.000001481658, z: -0.04158027, w: -0.11695682} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: 0.33288732, y: -0.000000029229165, z: -0.037168972, w: 0.9422338} + inSlope: {x: 1.0405422, y: -0.0000018323587, z: -0.116184734, w: -0.3776648} + outSlope: {x: 1.0405422, y: -0.0000018323587, z: -0.116184734, w: -0.3776648} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: 0.4434056, y: -0.000000058583733, z: -0.049508877, w: 0.8949528} + inSlope: {x: -0.2524277, y: -0.0000013530739, z: 0.028184045, w: 0.12098465} + outSlope: {x: -0.2524277, y: -0.0000013530739, z: 0.028184045, w: 0.12098465} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: 0.41894254, y: -0.00000008241354, z: -0.046777505, w: 0.90680707} + inSlope: {x: -1.472266, y: -0.0000007114502, z: 0.16438767, w: 0.64146376} + outSlope: {x: -1.472266, y: -0.0000007114502, z: 0.16438767, w: 0.64146376} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.34525454, y: -0.000000106013744, z: -0.0385497, w: 0.937717} + inSlope: {x: -2.477069, y: 0.0000006782265, z: 0.27658033, w: 0.9004981} + outSlope: {x: -2.477069, y: 0.0000006782265, z: 0.27658033, w: 0.9004981} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: 0.25380462, y: -0.000000037198443, z: -0.028338818, w: 0.96684027} + inSlope: {x: -2.3769326, y: 0.0000018044154, z: 0.26539758, w: 0.66691524} + outSlope: {x: -2.3769326, y: 0.0000018044154, z: 0.26539758, w: 0.66691524} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.18679237, y: 0.000000014280612, z: -0.020856528, w: 0.98217803} + inSlope: {x: -1.161847, y: 0.0000009837859, z: 0.12972927, w: 0.2593598} + outSlope: {x: -1.161847, y: 0.0000009837859, z: 0.12972927, w: 0.2593598} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: 0.17634816, y: 0.000000028387277, z: -0.0196902, w: 0.9841309} + inSlope: {x: -0.15666203, y: 0.00000090952324, z: 0.017493257, w: 0.0292933} + outSlope: {x: -0.15666203, y: 0.00000090952324, z: 0.017493257, w: 0.0292933} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5666667 + value: {x: 0.17634663, y: -0.000000054756228, z: -0.019690206, w: 0.98413116} + inSlope: {x: -0.059452783, y: 0.00000033471954, z: 0.006638418, w: 0.010660897} + outSlope: {x: -0.059452783, y: 0.00000033471954, z: 0.006638418, w: 0.010660897} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6333334 + value: {x: 0.1480311, y: -0.00000002327564, z: -0.016528606, w: 0.9888446} + inSlope: {x: -0.8128165, y: 0.00000021482616, z: 0.09075561, w: 0.1209131} + outSlope: {x: -0.8128165, y: 0.00000021482616, z: 0.09075561, w: 0.1209131} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.70000005 + value: {x: 0.102840774, y: 0.00000007259948, z: -0.01148282, w: 0.9946315} + inSlope: {x: -0.11431154, y: -0.00000040122313, z: 0.012764054, w: 0.013326968} + outSlope: {x: -0.11431154, y: -0.00000040122313, z: 0.012764054, w: 0.013326968} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000001 + value: {x: 0.15537861, y: 0.00000018143992, z: -0.017348936, w: 0.98770267} + inSlope: {x: 0.70337826, y: 0.00000085177635, z: -0.07853884, w: -0.1113251} + outSlope: {x: 0.70337826, y: 0.00000085177635, z: -0.07853884, w: -0.1113251} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9333334 + value: {x: 0.26246265, y: -0.00000007577138, z: -0.02930557, w: 0.9644971} + inSlope: {x: 0.70502216, y: -0.0000012342229, z: -0.07872121, w: -0.19135237} + outSlope: {x: 0.70502216, y: -0.0000012342229, z: -0.07872121, w: -0.19135237} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.28988287, y: 0.000000007999362, z: -0.032367107, w: 0.9565147} + inSlope: {x: 0.22918157, y: 0.0000009524807, z: -0.025586063, w: -0.069310136} + outSlope: {x: 0.22918157, y: 0.0000009524807, z: -0.025586063, w: -0.069310136} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2/mixamorig:RightHandPinky3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.02206837, y: 0.18695126, z: 0.9819091, w: -0.02041489} + inSlope: {x: -3.042746, y: -6.896389, z: 0.30923364, w: 3.187099} + outSlope: {x: -3.042746, y: -6.896389, z: 0.30923364, w: 3.187099} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: -0.07935651, y: -0.042928383, z: 0.9922169, w: 0.08582175} + inSlope: {x: -2.629131, y: -6.668166, z: -0.61127627, w: 2.649117} + outSlope: {x: -2.629131, y: -6.668166, z: -0.61127627, w: 2.649117} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: -0.15320705, y: -0.25759315, z: 0.94115734, w: 0.15619291} + inSlope: {x: -1.5655985, y: -5.1118183, z: -1.5811361, w: 1.4200408} + outSlope: {x: -1.5655985, y: -5.1118183, z: -1.5811361, w: 1.4200408} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: -0.18372975, y: -0.38371632, z: 0.8868078, w: 0.18049115} + inSlope: {x: -0.25932747, y: -3.1814842, z: -1.3322862, w: -0.026859522} + outSlope: {x: -0.25932747, y: -3.1814842, z: -1.3322862, w: -0.026859522} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: -0.17049555, y: -0.4696921, z: 0.85233825, w: 0.15440229} + inSlope: {x: 0.76753783, y: -2.0109806, z: -0.7073084, w: -1.2599496} + outSlope: {x: 0.76753783, y: -2.0109806, z: -0.7073084, w: -1.2599496} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.13256057, y: -0.5177817, z: 0.8396539, w: 0.09649452} + inSlope: {x: 1.004245, y: -1.301851, z: -0.4467433, w: -1.4932868} + outSlope: {x: 1.004245, y: -1.301851, z: -0.4467433, w: -1.4932868} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: -0.103545874, y: -0.5564822, z: 0.82255536, w: 0.054849822} + inSlope: {x: 0.10183859, y: 0.39940983, z: 0.322652, w: -0.89720225} + outSlope: {x: 0.10183859, y: 0.39940983, z: 0.322652, w: -0.89720225} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: -0.12577131, y: -0.49115437, z: 0.86116403, w: 0.036681022} + inSlope: {x: -0.6835563, y: 2.6527405, z: 1.3072981, w: 0.346249} + outSlope: {x: -0.6835563, y: 2.6527405, z: 1.3072981, w: 0.346249} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.1491163, y: -0.37963283, z: 0.90970856, w: 0.07793309} + inSlope: {x: -0.35529906, y: 3.2525818, z: 1.1731759, w: 1.5703921} + outSlope: {x: -0.35529906, y: 3.2525818, z: 1.1731759, w: 1.5703921} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: -0.14945792, y: -0.2743156, z: 0.93937576, w: 0.14137383} + inSlope: {x: 0.39377347, y: 2.7443514, z: 0.57116216, w: 2.1147509} + outSlope: {x: 0.39377347, y: 2.7443514, z: 0.57116216, w: 2.1147509} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.12286473, y: -0.19667609, z: 0.94778603, w: 0.21891648} + inSlope: {x: 0.8587997, y: 1.9395614, z: 0.07612915, w: 2.0815945} + outSlope: {x: 0.8587997, y: 1.9395614, z: 0.07612915, w: 2.0815945} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: -0.09220461, y: -0.14501151, z: 0.94445103, w: 0.28014678} + inSlope: {x: 1.1145356, y: 2.1866298, z: 0.16036105, w: 0.86160564} + outSlope: {x: 1.1145356, y: 2.1866298, z: 0.16036105, w: 0.86160564} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: -0.048562326, y: -0.050900694, z: 0.9584768, w: 0.27635685} + inSlope: {x: 1.4022768, y: 4.2151175, z: 0.32564145, w: -0.9145879} + outSlope: {x: 1.4022768, y: 4.2151175, z: 0.32564145, w: -0.9145879} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: 0.0012805389, y: 0.1359964, z: 0.9661605, w: 0.21917425} + inSlope: {x: 0.84245366, y: 6.3608065, z: -0.6281484, w: -1.995421} + outSlope: {x: 0.84245366, y: 6.3608065, z: -0.6281484, w: -1.995421} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: 0.00760125, y: 0.37315303, z: 0.9166002, w: 0.14332879} + inSlope: {x: -0.108537294, y: 5.6416283, z: -1.6348681, w: -2.4696083} + outSlope: {x: -0.108537294, y: 5.6416283, z: -1.6348681, w: -2.4696083} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.005955267, y: 0.5121048, z: 0.85716933, w: 0.0545338} + inSlope: {x: 0.046956405, y: 3.1833773, z: -1.5910053, w: -2.388668} + outSlope: {x: 0.046956405, y: 3.1833773, z: -1.5910053, w: -2.388668} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: 0.0107317045, y: 0.5853781, z: 0.8105332, w: -0.015915731} + inSlope: {x: 0.6581579, y: 1.5487044, z: -1.0865512, w: -1.7783461} + outSlope: {x: 0.6581579, y: 1.5487044, z: -1.0865512, w: -1.7783461} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.05404012, y: 0.6093746, z: 0.7866769, w: -0.08295624} + inSlope: {x: 0.3118391, y: -0.47614104, z: 0.32501826, w: -0.16932778} + outSlope: {x: 0.3118391, y: -0.47614104, z: 0.32501826, w: -0.16932778} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.06327366, y: 0.54215246, z: 0.8360903, w: -0.05495554} + inSlope: {x: 0.19460809, y: -1.2198553, z: 0.8191074, w: 0.60219026} + outSlope: {x: 0.19460809, y: -1.2198553, z: 0.8191074, w: 0.60219026} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.08825912, y: 0.4930954, z: 0.8646442, w: -0.03817937} + inSlope: {x: 0.43761623, y: 0.32812393, z: -0.2821001, w: -0.6130237} + outSlope: {x: 0.43761623, y: 0.32812393, z: -0.2821001, w: -0.6130237} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7666667 + value: {x: 0.10085951, y: 0.5241604, z: 0.8422009, w: -0.07603345} + inSlope: {x: 0.2120413, y: -0.22935995, z: -0.033064485, w: -1.4068116} + outSlope: {x: 0.2120413, y: -0.22935995, z: -0.033064485, w: -1.4068116} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000001 + value: {x: 0.10239522, y: 0.47780472, z: 0.86243993, w: -0.13196689} + inSlope: {x: 0.12265068, y: -1.4564526, z: 0.6009847, w: -1.3394301} + outSlope: {x: 0.12265068, y: -1.4564526, z: 0.6009847, w: -1.3394301} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.109036215, y: 0.42706355, z: 0.8822665, w: -0.1653288} + inSlope: {x: 0.52375156, y: -0.30971268, z: -0.069259405, w: -0.8781055} + outSlope: {x: 0.52375156, y: -0.30971268, z: -0.069259405, w: -0.8781055} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.86666673 + value: {x: 0.13731201, y: 0.45715728, z: 0.8578226, w: -0.19050725} + inSlope: {x: 0.8814856, y: 0.38600296, z: -0.38427714, w: -0.24377726} + outSlope: {x: 0.8814856, y: 0.38600296, z: -0.38427714, w: -0.24377726} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.90000004 + value: {x: 0.16780192, y: 0.4527971, z: 0.856648, w: -0.18158065} + inSlope: {x: 0.43438667, y: -0.7820829, z: 0.4444738, w: 0.6974433} + outSlope: {x: 0.43438667, y: -0.7820829, z: 0.4444738, w: 0.6974433} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9333334 + value: {x: 0.16627109, y: 0.4050184, z: 0.8874542, w: -0.144011} + inSlope: {x: -0.78274363, y: -2.1197045, z: 1.2444354, w: 1.4920056} + outSlope: {x: -0.78274363, y: -2.1197045, z: 1.2444354, w: 1.4920056} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9666667 + value: {x: 0.115619056, y: 0.31148353, z: 0.93961036, w: -0.08211363} + inSlope: {x: -2.163042, y: -3.2709923, z: 1.416821, w: 1.8539408} + outSlope: {x: -2.163042, y: -3.2709923, z: 1.416821, w: 1.8539408} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.022068419, y: 0.18695244, z: 0.98190886, w: -0.020415068} + inSlope: {x: -2.806522, y: -3.7359362, z: 1.2689561, w: 1.8509587} + outSlope: {x: -2.806522, y: -3.7359362, z: 1.2689561, w: 1.8509587} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:LeftUpLeg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.40407085, y: -0.06445877, z: -0.04126686, w: 0.9115201} + inSlope: {x: 4.6270247, y: 1.5240736, z: -1.3005557, w: 1.5890013} + outSlope: {x: 4.6270247, y: 1.5240736, z: -1.3005557, w: 1.5890013} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: -0.2498367, y: -0.01365632, z: -0.08461872, w: 0.96448684} + inSlope: {x: 5.113057, y: 0.73735, z: -0.68157667, w: 1.2388417} + outSlope: {x: 5.113057, y: 0.73735, z: -0.68157667, w: 1.2388417} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: -0.063200384, y: -0.015302106, z: -0.086705305, w: 0.9941096} + inSlope: {x: 2.7391267, y: -0.034057345, z: 0.057134837, w: 0.44768032} + outSlope: {x: 2.7391267, y: -0.034057345, z: 0.057134837, w: 0.44768032} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: -0.06722825, y: -0.01592681, z: -0.08080973, w: 0.9943322} + inSlope: {x: -0.03590761, y: 0.15814567, z: 0.356175, w: 0.026057662} + outSlope: {x: -0.03590761, y: 0.15814567, z: 0.356175, w: 0.026057662} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: -0.065594226, y: -0.0047590616, z: -0.062960304, w: 0.99584675} + inSlope: {x: -0.019200148, y: 0.4377272, z: 0.31666332, w: 0.021635594} + outSlope: {x: -0.019200148, y: 0.4377272, z: 0.31666332, w: 0.021635594} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.06850826, y: 0.013255003, z: -0.05969884, w: 0.99577457} + inSlope: {x: -0.018230988, y: 0.44744468, z: 0.6251204, w: 0.020653} + outSlope: {x: -0.018230988, y: 0.44744468, z: 0.6251204, w: 0.020653} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: -0.066809624, y: 0.025070587, z: -0.021285597, w: 0.9972236} + inSlope: {x: -3.4163768, y: -0.21711972, z: 0.261628, w: -0.62408036} + outSlope: {x: -3.4163768, y: -0.21711972, z: 0.261628, w: -0.62408036} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: -0.2962667, y: -0.0012196403, z: -0.042256955, w: 0.9541692} + inSlope: {x: -7.2375073, y: -0.8617041, z: -0.17528853, w: -2.4432557} + outSlope: {x: -7.2375073, y: -0.8617041, z: -0.17528853, w: -2.4432557} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.5493101, y: -0.032376353, z: -0.032971498, w: 0.8343399} + inSlope: {x: -5.942624, y: -0.72436523, z: 0.53093916, w: -3.5164325} + outSlope: {x: -5.942624, y: -0.72436523, z: 0.53093916, w: -3.5164325} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: -0.69244164, y: -0.049510654, z: -0.006861013, w: 0.7197404} + inSlope: {x: -3.25404, y: -0.33722255, z: 0.83614653, w: -2.9181576} + outSlope: {x: -3.25404, y: -0.33722255, z: 0.83614653, w: -2.9181576} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.7662461, y: -0.054857854, z: 0.022771602, w: 0.6397961} + inSlope: {x: -1.5440933, y: -0.023257159, z: 0.67300254, w: -1.7547379} + outSlope: {x: -1.5440933, y: -0.023257159, z: 0.67300254, w: -1.7547379} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: -0.7953812, y: -0.05106113, z: 0.03800582, w: 0.6027579} + inSlope: {x: -1.0883299, y: 0.239905, z: 0.16630706, w: -1.4670613} + outSlope: {x: -1.0883299, y: 0.239905, z: 0.16630706, w: -1.4670613} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: -0.83880144, y: -0.038864177, z: 0.033858735, w: 0.54199195} + inSlope: {x: -1.4856849, y: 0.3204133, z: -0.20378539, w: -2.3579936} + outSlope: {x: -1.4856849, y: 0.3204133, z: -0.20378539, w: -2.3579936} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: -0.8944269, y: -0.029700236, z: 0.024420125, w: 0.44555825} + inSlope: {x: -0.7905266, y: 0.13002233, z: -0.4230494, w: -1.3503054} + outSlope: {x: -0.7905266, y: 0.13002233, z: -0.4230494, w: -1.3503054} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: -0.8915032, y: -0.030196022, z: 0.0056554433, w: 0.4519716} + inSlope: {x: 0.83430547, y: 0.10864545, z: -0.8614493, w: 1.4610828} + outSlope: {x: 0.83430547, y: 0.10864545, z: -0.8614493, w: 1.4610828} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.83880657, y: -0.022457214, z: -0.033009794, w: 0.5429637} + inSlope: {x: 1.8939846, y: 0.3369983, z: -0.9432801, w: 2.8377128} + outSlope: {x: 1.8939846, y: 0.3369983, z: -0.9432801, w: 2.8377128} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5666667 + value: {x: -0.6601589, y: 0.012190497, z: -0.075278334, w: 0.74724483} + inSlope: {x: 3.6008224, y: 0.65147054, z: -0.43731475, w: 3.070321} + outSlope: {x: 3.6008224, y: 0.65147054, z: -0.43731475, w: 3.070321} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.5251828, y: 0.0357019, z: -0.0863842, w: 0.8458405} + inSlope: {x: 4.358879, y: 0.6664456, z: -0.2817421, w: 2.6317596} + outSlope: {x: 4.358879, y: 0.6664456, z: -0.2817421, w: 2.6317596} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6333334 + value: {x: -0.36956692, y: 0.056620203, z: -0.094061136, w: 0.92269546} + inSlope: {x: 4.4259014, y: 0.38315976, z: -0.14939585, w: 1.8090236} + outSlope: {x: 4.4259014, y: 0.38315976, z: -0.14939585, w: 1.8090236} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.70000005 + value: {x: -0.12770762, y: 0.044793792, z: -0.08625755, w: 0.98703796} + inSlope: {x: 2.0059774, y: -0.665617, z: 0.28578377, w: 0.386288} + outSlope: {x: 2.0059774, y: -0.665617, z: 0.28578377, w: 0.386288} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.09639083, y: 0.016871449, z: -0.077291675, w: 0.99219465} + inSlope: {x: -0.8468239, y: -0.86629206, z: 0.23682311, w: -0.10135867} + outSlope: {x: -0.8468239, y: -0.86629206, z: 0.23682311, w: -0.10135867} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7666667 + value: {x: -0.18416265, y: -0.012959012, z: -0.07046934, w: 0.9802807} + inSlope: {x: -0.14889216, y: -0.32489523, z: -0.066802375, w: -0.018597528} + outSlope: {x: -0.14889216, y: -0.32489523, z: -0.066802375, w: -0.018597528} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000001 + value: {x: -0.10631698, y: -0.0047882535, z: -0.08174517, w: 0.9909548} + inSlope: {x: 2.0203679, y: 0.5234425, z: -0.13662004, w: 0.22616915} + outSlope: {x: 2.0203679, y: 0.5234425, z: -0.13662004, w: 0.22616915} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.04947145, y: 0.021937137, z: -0.07957736, w: 0.99535865} + inSlope: {x: -1.906213, y: 0.55849546, z: -0.5469106, w: -0.3949575} + outSlope: {x: -1.906213, y: 0.55849546, z: -0.5469106, w: -0.3949575} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.86666673 + value: {x: -0.23339806, y: 0.03244476, z: -0.11820591, w: 0.9646243} + inSlope: {x: -4.6908045, y: 0.11954206, z: -0.7593194, w: -1.0931667} + outSlope: {x: -4.6908045, y: 0.11954206, z: -0.7593194, w: -1.0931667} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.90000004 + value: {x: -0.36219177, y: 0.02990662, z: -0.13019867, w: 0.9224809} + inSlope: {x: -2.9625351, y: -0.10383274, z: 0.009591579, w: -1.0542004} + outSlope: {x: -2.9625351, y: -0.10383274, z: 0.009591579, w: -1.0542004} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9333334 + value: {x: -0.43090034, y: 0.025522577, z: -0.11756645, w: 0.8943443} + inSlope: {x: -1.210955, y: -0.60801053, z: 0.7438073, w: -0.4442307} + outSlope: {x: -1.210955, y: -0.60801053, z: 0.7438073, w: -0.4442307} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9666667 + value: {x: -0.44292215, y: -0.010627389, z: -0.08061154, w: 0.8928655} + inSlope: {x: 0.40242514, y: -1.3497212, z: 1.1444948, w: 0.25763} + outSlope: {x: 0.40242514, y: -1.3497212, z: 1.1444948, w: 0.25763} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.40407202, y: -0.06445875, z: -0.041266877, w: 0.9115196} + inSlope: {x: 1.1655049, y: -1.6149424, z: 1.1803411, w: 0.5596238} + outSlope: {x: 1.1655049, y: -1.6149424, z: 1.1803411, w: 0.5596238} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.79226065, y: 0.038658567, z: 0.016677849, w: 0.6087286} + inSlope: {x: -3.2866018, y: 2.2174578, z: 1.5123185, w: 3.3034692} + outSlope: {x: -3.2866018, y: 2.2174578, z: 1.5123185, w: 3.3034692} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.68270725, y: 0.11257383, z: 0.06708847, w: 0.71884423} + inSlope: {x: -4.2849913, y: 2.3164663, z: 0.5694277, w: 3.4466662} + outSlope: {x: -4.2849913, y: 2.3164663, z: 0.5694277, w: 3.4466662} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: 0.50659454, y: 0.19308966, z: 0.0546397, w: 0.83850634} + inSlope: {x: -3.1870131, y: 2.4663486, z: -0.10633937, w: 1.7542084} + outSlope: {x: -3.1870131, y: 2.4663486, z: -0.10633937, w: 1.7542084} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: 0.4702397, y: 0.2769971, z: 0.05999918, w: 0.83579147} + inSlope: {x: -1.2247087, y: 1.6176333, z: 0.26411203, w: 0.18246177} + outSlope: {x: -1.2247087, y: 1.6176333, z: 0.26411203, w: 0.18246177} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.4249473, y: 0.3009319, z: 0.07224717, w: 0.85067046} + inSlope: {x: -1.656054, y: -0.37359285, z: 0.60340804, w: 0.85370785} + outSlope: {x: -1.656054, y: -0.37359285, z: 0.60340804, w: 0.85370785} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.3598361, y: 0.2520909, z: 0.10022638, w: 0.8927053} + inSlope: {x: -1.8801857, y: -2.2925508, z: 0.3989377, w: 1.2994871} + outSlope: {x: -1.8801857, y: -2.2925508, z: 0.3989377, w: 1.2994871} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: 0.29960155, y: 0.14809515, z: 0.098843016, w: 0.93730295} + inSlope: {x: 0.5141026, y: -2.727793, z: -0.0043854024, w: 0.27307364} + outSlope: {x: 0.5141026, y: -2.727793, z: -0.0043854024, w: 0.27307364} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: 0.39410958, y: 0.070237994, z: 0.09993402, w: 0.91091025} + inSlope: {x: 3.430685, y: -1.9232664, z: -0.7029525, w: -1.3511933} + outSlope: {x: 3.430685, y: -1.9232664, z: -0.7029525, w: -1.3511933} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.5283139, y: 0.019877387, z: 0.05197952, w: 0.8472234} + inSlope: {x: 3.3480563, y: -1.1079221, z: -1.5362942, w: -1.8630768} + outSlope: {x: 3.3480563, y: -1.1079221, z: -1.5362942, w: -1.8630768} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: 0.6173133, y: -0.0036234802, z: -0.0024855905, w: 0.78670514} + inSlope: {x: 2.4694626, y: -0.50905615, z: -1.2088087, w: -1.9040637} + outSlope: {x: 2.4694626, y: -0.50905615, z: -1.2088087, w: -1.9040637} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: 0.7617388, y: -0.016680494, z: -0.028255597, w: 0.6470529} + inSlope: {x: 1.9937005, y: 0.051025555, z: 0.09006714, w: -2.3544269} + outSlope: {x: 1.9937005, y: 0.051025555, z: 0.09006714, w: -2.3544269} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.8258581, y: -0.01065798, z: -0.02260324, w: 0.563324} + inSlope: {x: 1.988445, y: 0.44452173, z: 0.22590353, w: -2.9995625} + outSlope: {x: 1.988445, y: 0.44452173, z: 0.22590353, w: -2.9995625} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: 0.89430183, y: 0.012954292, z: -0.013195357, w: 0.44708198} + inSlope: {x: 0.6088445, y: 0.8326568, z: 0.6053958, w: -0.99588233} + outSlope: {x: 0.6088445, y: 0.8326568, z: 0.6053958, w: -0.99588233} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: 0.86644775, y: 0.04485247, z: 0.017756477, w: 0.49693182} + inSlope: {x: -1.65322, y: 0.74582666, z: 1.1350099, w: 2.5084143} + outSlope: {x: -1.65322, y: 0.74582666, z: 1.1350099, w: 2.5084143} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.78408724, y: 0.06267605, z: 0.062471922, w: 0.6143095} + inSlope: {x: -2.3204625, y: 0.4628228, z: 1.1531205, w: 2.9245157} + outSlope: {x: -2.3204625, y: 0.4628228, z: 1.1531205, w: 2.9245157} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: 0.71175027, y: 0.07570732, z: 0.094631165, w: 0.6918995} + inSlope: {x: -2.4004107, y: 0.48181587, z: 0.43883333, w: 2.337782} + outSlope: {x: -2.4004107, y: 0.48181587, z: 0.43883333, w: 2.337782} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5666667 + value: {x: 0.62405974, y: 0.094797134, z: 0.0917275, w: 0.77016175} + inSlope: {x: -2.9674356, y: 0.54100895, z: -0.53844845, w: 2.3489141} + outSlope: {x: -2.9674356, y: 0.54100895, z: -0.53844845, w: 2.3489141} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.51392126, y: 0.11177458, z: 0.058734633, w: 0.84849375} + inSlope: {x: -3.205784, y: 0.44798732, z: -1.0438538, w: 1.9940736} + outSlope: {x: -3.205784, y: 0.44798732, z: -1.0438538, w: 1.9940736} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6333334 + value: {x: 0.41034082, y: 0.12466295, z: 0.022137256, w: 0.90309995} + inSlope: {x: -2.397255, y: 0.5163207, z: -0.9311029, w: 1.1281269} + outSlope: {x: -2.397255, y: 0.5163207, z: -0.9311029, w: 1.1281269} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.35410422, y: 0.14619595, z: -0.0033388976, w: 0.92370224} + inSlope: {x: -0.9839516, y: 0.6423974, z: -0.49328306, w: 0.30706584} + outSlope: {x: -0.9839516, y: 0.6423974, z: -0.49328306, w: 0.30706584} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.3829551, y: 0.18471909, z: -0.015984695, w: 0.904969} + inSlope: {x: 1.70101, y: 0.006058216, z: -0.42987305, w: -0.77375007} + outSlope: {x: 1.70101, y: 0.006058216, z: -0.42987305, w: -0.77375007} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7666667 + value: {x: 0.45814478, y: 0.16789329, z: -0.039406482, w: 0.87198764} + inSlope: {x: -0.029800296, y: -1.2018952, z: -0.49460834, w: 0.18567842} + outSlope: {x: -0.029800296, y: -1.2018952, z: -0.49460834, w: 0.18567842} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000001 + value: {x: 0.38096842, y: 0.10459267, z: -0.048958614, w: 0.91734755} + inSlope: {x: -1.9478137, y: -1.8851545, z: 0.23426838, w: 1.0701815} + outSlope: {x: -1.9478137, y: -1.8851545, z: 0.23426838, w: 1.0701815} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.32829052, y: 0.04221634, z: -0.023788622, w: 0.9433331} + inSlope: {x: 1.2633932, y: -1.1963767, z: 1.4303793, w: -0.5055738} + outSlope: {x: 1.2633932, y: -1.1963767, z: 1.4303793, w: -0.5055738} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.86666673 + value: {x: 0.4651948, y: 0.024834273, z: 0.046400044, w: 0.88364255} + inSlope: {x: 3.9576764, y: -0.3445142, z: 1.6038429, w: -2.1303852} + outSlope: {x: 3.9576764, y: -0.3445142, z: 1.6038429, w: -2.1303852} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.90000004 + value: {x: 0.5921356, y: 0.019248715, z: 0.083134264, w: 0.80130744} + inSlope: {x: 3.3744588, y: -0.22613649, z: 0.652106, w: -2.4848003} + outSlope: {x: 3.3744588, y: -0.22613649, z: 0.652106, w: -2.4848003} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9333334 + value: {x: 0.69015867, y: 0.009758505, z: 0.089873746, w: 0.7179892} + inSlope: {x: 2.4800863, y: -0.018660873, z: -0.35850015, w: -2.270775} + outSlope: {x: 2.4800863, y: -0.018660873, z: -0.35850015, w: -2.270775} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9666667 + value: {x: 0.7574747, y: 0.018004641, z: 0.059234288, w: 0.64992243} + inSlope: {x: 1.5315294, y: 0.43350196, z: -1.0979394, w: -1.6389091} + outSlope: {x: 1.5315294, y: 0.43350196, z: -1.0979394, w: -1.6389091} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.7922605, y: 0.038658608, z: 0.016677862, w: 0.6087287} + inSlope: {x: 1.0435752, y: 0.6196196, z: -1.276694, w: -1.2358129} + outSlope: {x: 1.0435752, y: 0.6196196, z: -1.276694, w: -1.2358129} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.26200894, y: 0.04295926, z: -0.12343258, w: 0.9561748} + inSlope: {x: 2.3417292, y: 0.726378, z: 0.15683836, w: -0.76959723} + outSlope: {x: 2.3417292, y: 0.726378, z: 0.15683836, w: -0.76959723} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.34006658, y: 0.067171864, z: -0.11820463, w: 0.93052155} + inSlope: {x: -0.73132265, y: -0.051504612, z: 0.027548965, w: 0.18629196} + outSlope: {x: -0.73132265, y: -0.051504612, z: 0.027548965, w: 0.18629196} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: 0.2132541, y: 0.03952562, z: -0.12159598, w: 0.96859425} + inSlope: {x: -3.624496, y: -0.7356349, z: -0.030661337, w: 0.85745746} + outSlope: {x: -3.624496, y: -0.7356349, z: -0.030661337, w: 0.85745746} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: 0.0984335, y: 0.018129531, z: -0.12024872, w: 0.9876854} + inSlope: {x: -1.8721087, y: -0.3437246, z: 0.024735998, w: 0.30148202} + outSlope: {x: -1.8721087, y: -0.3437246, z: 0.024735998, w: 0.30148202} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.08844683, y: 0.016610645, z: -0.11994691, w: 0.98869306} + inSlope: {x: 0.21354161, y: 0.03246624, z: -0.006146841, w: -0.024221245} + outSlope: {x: 0.21354161, y: 0.03246624, z: -0.006146841, w: -0.024221245} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.11266961, y: 0.020293947, z: -0.12065851, w: 0.98607063} + inSlope: {x: -0.22248551, y: -0.03384176, z: 0.0070656007, w: 0.019606922} + outSlope: {x: -0.22248551, y: -0.03384176, z: 0.0070656007, w: 0.019606922} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: 0.07361445, y: 0.014354525, z: -0.11947587, w: 0.9900002} + inSlope: {x: -2.2704399, y: -0.3457122, z: 0.08408815, w: 0.097966775} + outSlope: {x: -2.2704399, y: -0.3457122, z: 0.08408815, w: 0.097966775} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: -0.03869306, y: -0.002753536, z: -0.11505263, w: 0.99260175} + inSlope: {x: -3.6036837, y: -0.5496997, z: 0.16970283, w: -0.15277238} + outSlope: {x: -3.6036837, y: -0.5496997, z: 0.16970283, w: -0.15277238} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.16663112, y: -0.022292122, z: -0.10816235, w: 0.97981536} + inSlope: {x: -2.0196538, y: -0.30846187, z: 0.109603114, w: -0.20892622} + outSlope: {x: -2.0196538, y: -0.30846187, z: 0.109603114, w: -0.20892622} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: -0.17333663, y: -0.02331766, z: -0.10774576, w: 0.97867334} + inSlope: {x: -0.10058374, y: -0.015382693, z: 0.0062491004, w: -0.017130377} + outSlope: {x: -0.10058374, y: -0.015382693, z: 0.0062491004, w: -0.017130377} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: -0.17333677, y: -0.023317687, z: -0.10774577, w: 0.97867334} + inSlope: {x: 0.030781899, y: 0.004707776, z: -0.0019221364, w: 0.005318816} + outSlope: {x: 0.030781899, y: 0.004707776, z: -0.0019221364, w: 0.005318816} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: -0.17128457, y: -0.023003783, z: -0.10787389, w: 0.9790279} + inSlope: {x: 0.6619531, y: 0.101199806, z: -0.039584156, w: 0.09962976} + outSlope: {x: 0.6619531, y: 0.101199806, z: -0.039584156, w: 0.09962976} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: -0.12920657, y: -0.016571034, z: -0.11038471, w: 0.9853153} + inSlope: {x: 1.8615198, y: 0.28433192, z: -0.101743236, w: 0.19871773} + outSlope: {x: 1.8615198, y: 0.28433192, z: -0.101743236, w: 0.19871773} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: -0.04718326, y: -0.004048323, z: -0.11465677, w: 0.9922758} + inSlope: {x: 3.4103584, y: 0.51986367, z: -0.14783776, w: 0.03600055} + outSlope: {x: 3.4103584, y: 0.51986367, z: -0.14783776, w: 0.03600055} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.098150514, y: 0.018086523, z: -0.120240554, w: 0.98771536} + inSlope: {x: 4.291125, y: 0.6525628, z: -0.12799841, w: -0.44825765} + outSlope: {x: 4.291125, y: 0.6525628, z: -0.12799841, w: -0.44825765} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: 0.23889172, y: 0.03945586, z: -0.12318999, w: 0.9623919} + inSlope: {x: 3.3514075, y: 0.5083741, z: -0.05226738, w: -0.7558557} + outSlope: {x: 3.3514075, y: 0.5083741, z: -0.05226738, w: -0.7558557} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5666667 + value: {x: 0.32157788, y: 0.05197816, z: -0.12372505, w: 0.93732494} + inSlope: {x: 1.8719915, y: 0.28335235, z: -0.006605714, w: -0.61437327} + outSlope: {x: 1.8719915, y: 0.28335235, z: -0.006605714, w: -0.61437327} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6333334 + value: {x: 0.3721782, y: 0.059628427, z: -0.123579726, w: 0.9179629} + inSlope: {x: -0.2925182, y: -0.04421959, z: -0.0011381533, w: 0.11446437} + outSlope: {x: -0.2925182, y: -0.04421959, z: -0.0011381533, w: 0.11446437} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.34419, y: 0.055398054, z: -0.12370625, w: 0.92906463} + inSlope: {x: -0.76437783, y: -0.115567684, z: -0.0021747143, w: 0.29231882} + outSlope: {x: -0.76437783, y: -0.115567684, z: -0.0021747143, w: 0.29231882} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.70000005 + value: {x: 0.32121968, y: 0.051923916, z: -0.12372471, w: 0.9374508} + inSlope: {x: -0.47818494, y: -0.07233144, z: -0.00008214223, w: 0.17200196} + outSlope: {x: -0.47818494, y: -0.07233144, z: -0.00008214223, w: 0.17200196} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.312311, y: 0.050575957, z: -0.12371173, w: 0.94053143} + inSlope: {x: -1.0845597, y: -0.16423088, z: 0.0063122385, w: 0.334786} + outSlope: {x: -1.0845597, y: -0.16423088, z: 0.0063122385, w: 0.334786} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7666667 + value: {x: 0.24891566, y: 0.040975183, z: -0.12330389, w: 0.9597699} + inSlope: {x: -1.5415866, y: -0.23357087, z: 0.013957646, w: 0.43346786} + outSlope: {x: -1.5415866, y: -0.23357087, z: 0.013957646, w: 0.43346786} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000001 + value: {x: 0.20953846, y: 0.035004552, z: -0.12278122, w: 0.9694293} + inSlope: {x: -1.2248139, y: -0.18580356, z: 0.019575212, w: 0.27221382} + outSlope: {x: -1.2248139, y: -0.18580356, z: 0.019575212, w: 0.27221382} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.1672614, y: 0.02858828, z: -0.12199888, w: 0.9779175} + inSlope: {x: -0.5778768, y: -0.08769945, z: 0.010557187, w: 0.11718584} + outSlope: {x: -0.5778768, y: -0.08769945, z: 0.010557187, w: 0.11718584} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.86666673 + value: {x: 0.17101339, y: 0.02915793, z: -0.122077405, w: 0.9772417} + inSlope: {x: 0.08015756, y: 0.012170184, z: -0.0016686688, w: -0.014505383} + outSlope: {x: 0.08015756, y: 0.012170184, z: -0.0016686688, w: -0.014505383} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9333334 + value: {x: 0.18645646, y: 0.031502225, z: -0.122381955, w: 0.97430193} + inSlope: {x: 0.7017989, y: 0.10649218, z: -0.012311343, w: -0.14666684} + outSlope: {x: 0.7017989, y: 0.10649218, z: -0.012311343, w: -0.14666684} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.2620088, y: 0.042959232, z: -0.123432525, w: 0.95617485} + inSlope: {x: 1.2785101, y: 0.19380409, z: -0.015049442, w: -0.32993528} + outSlope: {x: 1.2785101, y: 0.19380409, z: -0.015049442, w: -0.32993528} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot/mixamorig:LeftToeBase + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.06342051, y: 0.62667197, z: 0.7632307, w: -0.14401048} + inSlope: {x: -0.1772474, y: 3.2804058, z: -2.9102287, w: 1.1574169} + outSlope: {x: -0.1772474, y: 3.2804058, z: -2.9102287, w: 1.1574169} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.057512265, y: 0.73601884, z: 0.66622305, w: -0.10542992} + inSlope: {x: -0.008619279, y: 2.3598583, z: -2.2289977, w: 1.2564199} + outSlope: {x: -0.008619279, y: 2.3598583, z: -2.2289977, w: 1.2564199} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: 0.06284589, y: 0.78399587, z: 0.6146308, w: -0.060249154} + inSlope: {x: -0.032036625, y: 1.3493869, z: -1.6004909, w: 0.97638446} + outSlope: {x: -0.032036625, y: 1.3493869, z: -1.6004909, w: 0.97638446} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: 0.05537649, y: 0.825978, z: 0.55952364, w: -0.040337615} + inSlope: {x: -0.57714057, y: 1.2611175, z: -1.8207173, w: 0.14409827} + outSlope: {x: -0.57714057, y: 1.2611175, z: -1.8207173, w: 0.14409827} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.023092043, y: 0.8907034, z: 0.45059666, w: -0.055469714} + inSlope: {x: -1.3559537, y: 0.31225118, z: -0.6184732, w: 0.24007502} + outSlope: {x: -1.3559537, y: 0.31225118, z: -0.6184732, w: 0.24007502} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: -0.088323705, y: 0.86177903, z: 0.49953482, w: -0.0009254734} + inSlope: {x: -0.41832617, y: -1.2012855, z: 1.9209049, w: 0.864681} + outSlope: {x: -0.41832617, y: -1.2012855, z: 1.9209049, w: 0.864681} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.093915485, y: 0.8088014, z: 0.5800784, w: 0.023007808} + inSlope: {x: -0.099628314, y: -1.9284297, z: 2.5766003, w: 0.7961353} + outSlope: {x: -0.099628314, y: -1.9284297, z: 2.5766003, w: 0.7961353} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: -0.09496559, y: 0.73321706, z: 0.67130816, w: 0.052150212} + inSlope: {x: 0.06678455, y: -2.3123558, z: 2.49341, w: 0.86094606} + outSlope: {x: 0.06678455, y: -2.3123558, z: 2.49341, w: 0.86094606} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.08946318, y: 0.65464437, z: 0.74630576, w: 0.08040421} + inSlope: {x: 0.17760974, y: -2.1463904, z: 1.9015182, w: 0.5525067} + outSlope: {x: 0.17760974, y: -2.1463904, z: 1.9015182, w: 0.5525067} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: -0.08312494, y: 0.59012437, z: 0.79807603, w: 0.08898399} + inSlope: {x: -0.020923361, y: -1.8647113, z: 1.3854749, w: 0.060166933} + outSlope: {x: -0.020923361, y: -1.8647113, z: 1.3854749, w: 0.060166933} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: -0.09085808, y: 0.53033024, z: 0.8386708, w: 0.08441533} + inSlope: {x: 0.74698037, y: -1.8868953, z: 1.2643696, w: -0.30491078} + outSlope: {x: 0.74698037, y: -1.8868953, z: 1.2643696, w: -0.30491078} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: -0.03332626, y: 0.4643313, z: 0.8823674, w: 0.0686566} + inSlope: {x: 1.9078007, y: -1.8936884, z: 1.1236552, w: -0.8511658} + outSlope: {x: 1.9078007, y: -1.8936884, z: 1.1236552, w: -0.8511658} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: 0.03632862, y: 0.40408435, z: 0.91358113, w: 0.027670948} + inSlope: {x: 1.6587231, y: -1.1185637, z: 0.52403307, w: -1.4192567} + outSlope: {x: 1.6587231, y: -1.1185637, z: 0.52403307, w: -1.4192567} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.07725524, y: 0.3897604, z: 0.9173029, w: -0.025960458} + inSlope: {x: 0.31465632, y: -0.46149418, z: 0.14180031, w: -1.5129393} + outSlope: {x: 0.31465632, y: -0.46149418, z: 0.14180031, w: -1.5129393} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: 0.057305653, y: 0.37331808, z: 0.9230345, w: -0.073191665} + inSlope: {x: -0.40513563, y: -1.4568665, z: 0.4891469, w: -1.0730314} + outSlope: {x: -0.40513563, y: -1.4568665, z: 0.4891469, w: -1.0730314} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5666667 + value: {x: 0.050246175, y: 0.2926359, z: 0.9499127, w: -0.09749595} + inSlope: {x: 0.49045503, y: -3.2866862, z: 0.8630527, w: -0.12073283} + outSlope: {x: 0.49045503, y: -3.2866862, z: 0.8630527, w: -0.12073283} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.09000261, y: 0.15420572, z: 0.9805713, w: -0.08124056} + inSlope: {x: 0.90989137, y: -3.9981003, z: 0.64095974, w: 0.8479625} + outSlope: {x: 0.90989137, y: -3.9981003, z: 0.64095974, w: 0.8479625} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6333334 + value: {x: 0.11090558, y: 0.026095886, z: 0.99264336, w: -0.040965103} + inSlope: {x: 0.20126243, y: -1.7822537, z: 0.19761698, w: 0.8761761} + outSlope: {x: 0.20126243, y: -1.7822537, z: 0.19761698, w: 0.8761761} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.10342013, y: 0.035388697, z: 0.9937458, w: -0.022828804} + inSlope: {x: -0.012121312, y: -0.26926696, z: 0.01484962, w: 0.27739233} + outSlope: {x: -0.012121312, y: -0.26926696, z: 0.01484962, w: 0.27739233} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.12343098, y: -0.0342234, z: 0.99106723, w: -0.03713873} + inSlope: {x: 0.25257272, y: -0.94960797, z: -0.08075863, w: -0.63589734} + outSlope: {x: 0.25257272, y: -0.94960797, z: -0.08075863, w: -0.63589734} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7666667 + value: {x: 0.12693568, y: -0.055162452, z: 0.9882494, w: -0.06486546} + inSlope: {x: 0.074654534, y: -0.31592646, z: -0.080545776, w: -0.85446346} + outSlope: {x: 0.074654534, y: -0.31592646, z: -0.080545776, w: -0.85446346} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000001 + value: {x: 0.12840796, y: -0.05528518, z: 0.9856975, w: -0.09410301} + inSlope: {x: 0.6337755, y: 0.105445564, z: -0.17458509, w: -0.8818704} + outSlope: {x: 0.6337755, y: 0.105445564, z: -0.17458509, w: -0.8818704} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.86666673 + value: {x: 0.22314651, y: -0.025033504, z: 0.964428, w: -0.1394906} + inSlope: {x: 1.0281137, y: 1.1100236, z: -0.2332877, w: -0.22273187} + outSlope: {x: 1.0281137, y: 1.1100236, z: -0.2332877, w: -0.22273187} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.90000004 + value: {x: 0.23772828, y: 0.025868792, z: 0.9610579, w: -0.13850562} + inSlope: {x: -0.48302126, y: 2.29913, z: -0.022840869, w: -0.024047744} + outSlope: {x: -0.48302126, y: 2.29913, z: -0.022840869, w: -0.024047744} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9333334 + value: {x: 0.19094504, y: 0.12824185, z: 0.9629053, w: -0.14109379} + inSlope: {x: -1.9437563, y: 4.429823, z: -0.51625335, w: -0.36322814} + outSlope: {x: -1.9437563, y: 4.429823, z: -0.51625335, w: -0.36322814} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9666667 + value: {x: 0.10814457, y: 0.3211902, z: 0.92664105, w: -0.16272081} + inSlope: {x: -1.9128685, y: 7.4764547, z: -2.9951184, w: -0.043750226} + outSlope: {x: -1.9128685, y: 7.4764547, z: -2.9951184, w: -0.043750226} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.063420594, y: 0.6266717, z: 0.7632309, w: -0.14401047} + inSlope: {x: -1.3417205, y: 9.164453, z: -4.9023085, w: 0.5613109} + outSlope: {x: -1.3417205, y: 9.164453, z: -4.9023085, w: 0.5613109} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:RightUpLeg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.9235922, y: -0.011439534, z: 0.019157914, w: -0.3827265} + inSlope: {x: -1.6807811, y: -1.0065002, z: 1.9360503, w: -3.1630108} + outSlope: {x: -1.6807811, y: -1.0065002, z: 1.9360503, w: -3.1630108} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.86756617, y: -0.04498954, z: 0.08369293, w: -0.4881602} + inSlope: {x: -1.8270714, y: -0.76806045, z: 0.93249, w: -3.0900047} + outSlope: {x: -1.8270714, y: -0.76806045, z: 0.93249, w: -3.0900047} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: 0.80178744, y: -0.062643565, z: 0.08132392, w: -0.5887268} + inSlope: {x: -1.5868438, y: -0.18189189, z: -0.40523863, w: -2.3199487} + outSlope: {x: -1.5868438, y: -0.18189189, z: -0.40523863, w: -2.3199487} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: 0.76177657, y: -0.057115667, z: 0.056677017, w: -0.64282346} + inSlope: {x: -0.7698752, y: 0.4977655, z: -1.0854069, w: -1.0720288} + outSlope: {x: -0.7698752, y: 0.4977655, z: -1.0854069, w: -1.0720288} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.74913204, y: -0.009125929, z: -0.040219773, w: -0.6611356} + inSlope: {x: -0.07013796, y: 0.31714213, z: -1.0856836, w: -0.043685127} + outSlope: {x: -0.07013796, y: 0.31714213, z: -1.0856836, w: -0.043685127} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: 0.74578655, y: -0.00831639, z: -0.063415445, w: -0.66310775} + inSlope: {x: -0.53473055, y: -0.08692486, z: -0.3048902, w: -0.5513442} + outSlope: {x: -0.53473055, y: -0.08692486, z: -0.3048902, w: -0.5513442} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: 0.71348333, y: -0.014920919, z: -0.060545795, w: -0.6978919} + inSlope: {x: -1.5668018, y: -0.07800588, z: 0.06539383, w: -1.526389} + outSlope: {x: -1.5668018, y: -0.07800588, z: 0.06539383, w: -1.526389} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.6413331, y: -0.013516782, z: -0.059055857, w: -0.764867} + inSlope: {x: -2.3060508, y: 0.29713678, z: -0.21846358, w: -1.910197} + outSlope: {x: -2.3060508, y: 0.29713678, z: -0.21846358, w: -1.910197} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.4942271, y: 0.025147103, z: -0.09166555, w: -0.8641207} + inSlope: {x: -1.610115, y: 0.42367873, z: -0.29256633, w: -0.9138242} + outSlope: {x: -1.610115, y: 0.42367873, z: -0.29256633, w: -0.9138242} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: 0.45240563, y: 0.033133443, z: -0.09461445, w: -0.88615996} + inSlope: {x: -0.99036163, y: 0.14149813, z: -0.08895029, w: -0.5041586} + outSlope: {x: -0.99036163, y: 0.14149813, z: -0.08895029, w: -0.5041586} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.428203, y: 0.034580313, z: -0.09759557, w: -0.8977313} + inSlope: {x: -1.0604218, y: -0.29561526, z: -0.040854365, w: -0.4932608} + outSlope: {x: -1.0604218, y: -0.29561526, z: -0.040854365, w: -0.4932608} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: 0.38171083, y: 0.013425764, z: -0.09733808, w: -0.919044} + inSlope: {x: -1.8543109, y: -0.80362475, z: 0.015509539, w: -0.74485666} + outSlope: {x: -1.8543109, y: -0.80362475, z: 0.015509539, w: -0.74485666} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: 0.30458227, y: -0.018994667, z: -0.0965616, w: -0.9473884} + inSlope: {x: -1.0702143, y: -0.59463143, z: -0.012395962, w: -0.39192796} + outSlope: {x: -1.0702143, y: -0.59463143, z: -0.012395962, w: -0.39192796} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.3103632, y: -0.026216323, z: -0.09816448, w: -0.94517255} + inSlope: {x: 0.9561724, y: 0.36077172, z: -0.28659594, w: 0.3739417} + outSlope: {x: 0.9561724, y: 0.36077172, z: -0.28659594, w: 0.3739417} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: 0.36832714, y: 0.0050568143, z: -0.11566801, w: -0.92245895} + inSlope: {x: 0.73744637, y: 1.0730968, z: -0.14352542, w: 0.2907941} + outSlope: {x: 0.73744637, y: 1.0730968, z: -0.14352542, w: 0.2907941} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5666667 + value: {x: 0.35952634, y: 0.045323525, z: -0.10773285, w: -0.92578626} + inSlope: {x: -1.8397174, y: 0.8718149, z: 0.48823217, w: -0.6188013} + outSlope: {x: -1.8397174, y: 0.8718149, z: 0.48823217, w: -0.6188013} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.24567942, y: 0.063177824, z: -0.08311922, w: -0.96371233} + inSlope: {x: -3.1156695, y: -0.1381745, z: 0.72323656, w: -0.90252066} + outSlope: {x: -3.1156695, y: -0.1381745, z: 0.72323656, w: -0.90252066} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6333334 + value: {x: 0.15181507, y: 0.03611185, z: -0.05951708, w: -0.9859543} + inSlope: {x: 2.1013408, y: -0.6636748, z: 0.5257648, w: 0.63846624} + outSlope: {x: 2.1013408, y: -0.6636748, z: 0.5257648, w: 0.63846624} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.3857685, y: 0.018932832, z: -0.048068225, w: -0.921148} + inSlope: {x: 5.408414, y: -0.76271856, z: 0.34829426, w: 1.921305} + outSlope: {x: 5.408414, y: -0.76271856, z: 0.34829426, w: 1.921305} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.70000005 + value: {x: 0.5123759, y: -0.014736067, z: -0.036297467, w: -0.8578673} + inSlope: {x: 2.5709765, y: -0.35444242, z: -0.29381928, w: 1.4028218} + outSlope: {x: 2.5709765, y: -0.35444242, z: -0.29381928, w: 1.4028218} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.557167, y: -0.0046966975, z: -0.06765614, w: -0.8276265} + inSlope: {x: 0.74393094, y: 0.78918135, z: -1.0877924, w: 0.5816222} + outSlope: {x: 0.74393094, y: 0.78918135, z: -1.0877924, w: 0.5816222} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7666667 + value: {x: 0.56197125, y: 0.03787605, z: -0.10881697, w: -0.8190925} + inSlope: {x: 0.2298374, y: 0.9882072, z: -0.61735696, w: 0.25910297} + outSlope: {x: 0.2298374, y: 0.9882072, z: -0.61735696, w: 0.25910297} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000001 + value: {x: 0.5724895, y: 0.061183836, z: -0.1088133, w: -0.810353} + inSlope: {x: 0.9190926, y: -0.21028718, z: 0.54568964, w: 0.6118918} + outSlope: {x: 0.9190926, y: -0.21028718, z: 0.54568964, w: 0.6118918} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.62324405, y: 0.02385696, z: -0.07243769, w: -0.77829975} + inSlope: {x: 2.0380163, y: -0.85940933, z: 0.4634655, w: 1.6323472} + outSlope: {x: 2.0380163, y: -0.85940933, z: 0.4634655, w: 1.6323472} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.86666673 + value: {x: 0.7083573, y: 0.0038899013, z: -0.07791564, w: -0.7015298} + inSlope: {x: 2.4969516, y: -0.6579892, z: 0.12142811, w: 2.5279179} + outSlope: {x: 2.4969516, y: -0.6579892, z: 0.12142811, w: 2.5279179} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.90000004 + value: {x: 0.7897075, y: -0.020008981, z: -0.0643425, w: -0.6097719} + inSlope: {x: 2.2521143, y: -0.48248145, z: 0.8617488, w: 2.8485374} + outSlope: {x: 2.2521143, y: -0.48248145, z: 0.8617488, w: 2.8485374} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9333334 + value: {x: 0.8584982, y: -0.028275512, z: -0.020465694, w: -0.5116273} + inSlope: {x: 1.7783849, y: -0.033047557, z: 1.4505055, w: 2.8983698} + outSlope: {x: 1.7783849, y: -0.033047557, z: 1.4505055, w: 2.8983698} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9666667 + value: {x: 0.9082665, y: -0.022212164, z: 0.03235785, w: -0.41654727} + inSlope: {x: 0.97641176, y: 0.2525401, z: 0.5943527, w: 1.933516} + outSlope: {x: 0.97641176, y: 0.2525401, z: 0.5943527, w: 1.933516} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.92359227, y: -0.011439522, z: 0.01915778, w: -0.38272637} + inSlope: {x: 0.459774, y: 0.3231796, z: -0.39600244, w: 1.0146279} + outSlope: {x: 0.459774, y: 0.3231796, z: -0.39600244, w: 1.0146279} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.6165005, y: 0.06641706, z: 0.104287945, w: 0.77758604} + inSlope: {x: -5.3835793, y: -0.40215912, z: -1.9949242, w: 3.584792} + outSlope: {x: -5.3835793, y: -0.40215912, z: -1.9949242, w: 3.584792} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.43704784, y: 0.053011756, z: 0.037790466, w: 0.8970791} + inSlope: {x: -4.9368296, y: -0.79474354, z: -2.482792, w: 2.672661} + outSlope: {x: -4.9368296, y: -0.79474354, z: -2.482792, w: 2.672661} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: 0.28737852, y: 0.013434154, z: -0.061231516, w: 0.95576346} + inSlope: {x: -4.087595, y: -1.4412146, z: -2.394907, w: 1.2117798} + outSlope: {x: -4.087595, y: -1.4412146, z: -2.394907, w: 1.2117798} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: 0.16454148, y: -0.043069232, z: -0.12187002, w: 0.97786444} + inSlope: {x: -3.0487208, y: -1.3395548, z: -1.0442443, w: 0.43717587} + outSlope: {x: -3.0487208, y: -1.3395548, z: -1.0442443, w: 0.43717587} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.08413046, y: -0.07586951, z: -0.13084781, w: 0.9849085} + inSlope: {x: -1.3196354, y: -0.4898273, z: 0.25014114, w: 0.1610926} + outSlope: {x: -1.3196354, y: -0.4898273, z: 0.25014114, w: 0.1610926} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.076565795, y: -0.075724386, z: -0.10519394, w: 0.98860395} + inSlope: {x: 0.6352464, y: 0.26780552, z: 0.8793882, w: 0.040882237} + outSlope: {x: 0.6352464, y: 0.26780552, z: 0.8793882, w: 0.040882237} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: 0.12648024, y: -0.0580158, z: -0.07222192, w: 0.987634} + inSlope: {x: 1.5417019, y: 0.42980322, z: 0.86415553, w: -0.10646045} + outSlope: {x: 1.5417019, y: 0.42980322, z: 0.86415553, w: -0.10646045} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: 0.17934594, y: -0.04707083, z: -0.04758356, w: 0.9815066} + inSlope: {x: 1.4902358, y: -0.017017841, z: 0.40259844, w: -0.24486247} + outSlope: {x: 1.4902358, y: -0.017017841, z: 0.40259844, w: -0.24486247} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.22582929, y: -0.059150323, z: -0.045382027, w: 0.97130984} + inSlope: {x: 1.8421922, y: -0.62732995, z: -0.04583538, w: -0.50631887} + outSlope: {x: 1.8421922, y: -0.62732995, z: -0.04583538, w: -0.50631887} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: 0.30215874, y: -0.088892825, z: -0.050639253, w: 0.947752} + inSlope: {x: 2.4446154, y: -1.0994908, z: -0.10354702, w: -0.91589665} + outSlope: {x: 2.4446154, y: -1.0994908, z: -0.10354702, w: -0.91589665} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.38880363, y: -0.1324497, z: -0.05228516, w: 0.91025007} + inSlope: {x: 2.1741693, y: -1.426609, z: -0.0070307963, w: -1.1083863} + outSlope: {x: 2.1741693, y: -1.426609, z: -0.0070307963, w: -1.1083863} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: 0.44710335, y: -0.18400009, z: -0.051107973, w: 0.8738596} + inSlope: {x: 1.3226032, y: -1.4997703, z: 0.0060336404, w: -0.96322656} + outSlope: {x: 1.3226032, y: -1.4997703, z: 0.0060336404, w: -0.96322656} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.4769772, y: -0.23243442, z: -0.05188292, w: 0.84603494} + inSlope: {x: 0.55678284, y: -0.53086984, z: -0.11965921, w: -0.43395692} + outSlope: {x: 0.55678284, y: -0.53086984, z: -0.11965921, w: -0.43395692} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: 0.48422223, y: -0.21939145, z: -0.059085254, w: 0.8449291} + inSlope: {x: -0.43366852, y: 0.39442334, z: -0.38367712, w: 0.3062913} + outSlope: {x: -0.43366852, y: 0.39442334, z: -0.38367712, w: 0.3062913} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: 0.44806597, y: -0.20613953, z: -0.07746139, w: 0.86645436} + inSlope: {x: -0.9291096, y: 0.39746246, z: -0.70884454, w: 0.51550555} + outSlope: {x: -0.9291096, y: 0.39746246, z: -0.70884454, w: 0.51550555} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.42228162, y: -0.19289397, z: -0.106341526, w: 0.8792961} + inSlope: {x: -0.30996498, y: 0.36678857, z: -0.77448887, w: 0.14555119} + outSlope: {x: -0.30996498, y: 0.36678857, z: -0.77448887, w: 0.14555119} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: 0.42740166, y: -0.18168697, z: -0.12909397, w: 0.87615776} + inSlope: {x: 0.26913217, y: 0.95026815, z: 0.19049981, w: 0.06374355} + outSlope: {x: 0.26913217, y: 0.95026815, z: 0.19049981, w: 0.06374355} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5666667 + value: {x: 0.44022378, y: -0.12954271, z: -0.09364153, w: 0.8835457} + inSlope: {x: 0.15548255, y: 2.3165855, z: 1.8026114, w: 0.33710015} + outSlope: {x: 0.15548255, y: 2.3165855, z: 1.8026114, w: 0.33710015} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.43776718, y: -0.027247988, z: -0.008919935, w: 0.8986311} + inSlope: {x: 0.43957296, y: 2.2390683, z: 1.9803944, w: -0.025257945} + outSlope: {x: 0.43957296, y: 2.2390683, z: 1.9803944, w: -0.025257945} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6333334 + value: {x: 0.46952868, y: 0.019728454, z: 0.038384717, w: 0.8818618} + inSlope: {x: 4.247878, y: 0.52853507, z: 0.3695108, w: -3.0881631} + outSlope: {x: 4.247878, y: 0.52853507, z: 0.3695108, w: -3.0881631} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.7209588, y: 0.007987736, z: 0.015714178, w: 0.69275373} + inSlope: {x: 5.3989825, y: -0.40761715, z: -0.62307394, w: -4.8503284} + outSlope: {x: 5.3989825, y: -0.40761715, z: -0.62307394, w: -4.8503284} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.70000005 + value: {x: 0.8294607, y: -0.007446025, z: -0.0031535358, w: 0.55850667} + inSlope: {x: 2.16758, y: -0.5648243, z: -1.0513086, w: -2.9344015} + outSlope: {x: 2.16758, y: -0.5648243, z: -1.0513086, w: -2.9344015} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.8654642, y: -0.02966721, z: -0.05437303, w: 0.4971269} + inSlope: {x: 0.07355335, y: -0.9603013, z: -1.8869987, w: -0.41063768} + outSlope: {x: 0.07355335, y: -0.9603013, z: -1.8869987, w: -0.41063768} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7666667 + value: {x: 0.8343642, y: -0.071466126, z: -0.12895346, w: 0.5311309} + inSlope: {x: -1.7320074, y: -1.1393403, z: -1.3823445, w: 2.087593} + outSlope: {x: -1.7320074, y: -1.1393403, z: -1.3823445, w: 2.087593} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000001 + value: {x: 0.74999696, y: -0.10562329, z: -0.1465294, w: 0.6362999} + inSlope: {x: -1.8318017, y: -1.0826527, z: 0.035980552, w: 2.1628575} + outSlope: {x: -1.8318017, y: -1.0826527, z: 0.035980552, w: 2.1628575} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.71224403, y: -0.14364296, z: -0.12655479, w: 0.67532146} + inSlope: {x: -0.2524548, y: -0.5316124, z: -0.11051196, w: 0.16368091} + outSlope: {x: -0.2524548, y: -0.5316124, z: -0.11051196, w: 0.16368091} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.86666673 + value: {x: 0.7331667, y: -0.14106408, z: -0.15389691, w: 0.6472119} + inSlope: {x: 1.0312757, y: 0.77341384, z: -0.16268478, w: -1.096288} + outSlope: {x: 1.0312757, y: 0.77341384, z: -0.16268478, w: -1.096288} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.90000004 + value: {x: 0.7809957, y: -0.09208208, z: -0.13740048, w: 0.6022356} + inSlope: {x: 1.2767165, y: 1.6769795, z: 1.1885604, w: -1.1702204} + outSlope: {x: 1.2767165, y: 1.6769795, z: 1.1885604, w: -1.1702204} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9333334 + value: {x: 0.8182811, y: -0.02926543, z: -0.07465952, w: 0.56919724} + inSlope: {x: 0.1679242, y: 1.6631472, z: 2.213542, w: 0.11495781} + outSlope: {x: 0.1679242, y: 1.6631472, z: 2.213542, w: 0.11495781} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9666667 + value: {x: 0.79219073, y: 0.018794412, z: 0.010168955, w: 0.6098994} + inSlope: {x: -3.0267043, y: 1.4352384, z: 2.6842146, w: 3.1258287} + outSlope: {x: -3.0267043, y: 1.4352384, z: 2.6842146, w: 3.1258287} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.61650103, y: 0.06641704, z: 0.10428795, w: 0.7775856} + inSlope: {x: -5.270696, y: 1.4286802, z: 2.8235726, w: 5.0305915} + outSlope: {x: -5.270696, y: 1.4286802, z: 2.8235726, w: 5.0305915} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.2204688, y: -0.036662415, z: 0.12294646, w: 0.9669196} + inSlope: {x: -3.7596245, y: 0.5709752, z: -0.08386976, w: 0.63325876} + outSlope: {x: -3.7596245, y: 0.5709752, z: -0.08386976, w: 0.63325876} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.09514799, y: -0.017629908, z: 0.120150805, w: 0.9880282} + inSlope: {x: -3.6292374, y: 0.55186856, z: -0.10676767, w: 0.39175984} + outSlope: {x: -3.6292374, y: 0.55186856, z: -0.10676767, w: 0.39175984} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: -0.10030295, y: 0.012155754, z: 0.1119833, w: 0.9885602} + inSlope: {x: -1.4876567, y: 0.22704016, z: -0.07440626, w: -0.100070536} + outSlope: {x: -1.4876567, y: 0.22704016, z: -0.07440626, w: -0.100070536} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.08799583, y: 0.010276582, z: 0.11263306, w: 0.9896792} + inSlope: {x: 1.4448876, y: -0.22052088, z: 0.072515294, w: 0.099302515} + outSlope: {x: 1.4448876, y: -0.22052088, z: 0.072515294, w: 0.099302515} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: 0.048117816, y: -0.010474054, z: 0.11860438, w: 0.9917197} + inSlope: {x: 2.0068474, y: -0.30554044, z: 0.07298582, w: -0.09798736} + outSlope: {x: 2.0068474, y: -0.30554044, z: 0.07298582, w: -0.09798736} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: 0.15457812, y: -0.026662173, z: 0.12172031, w: 0.9800913} + inSlope: {x: 1.4180532, y: -0.21536517, z: 0.03185034, w: -0.23701611} + outSlope: {x: 1.4180532, y: -0.21536517, z: 0.03185034, w: -0.23701611} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.20399506, y: -0.034163598, z: 0.12269163, w: 0.97065216} + inSlope: {x: 1.808602, y: -0.27432123, z: 0.02727628, w: -0.41581398} + outSlope: {x: 1.808602, y: -0.27432123, z: 0.02727628, w: -0.41581398} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: 0.27515158, y: -0.044950254, z: 0.123538725, w: 0.95237035} + inSlope: {x: 2.062253, y: -0.31236786, z: 0.015311054, w: -0.60846066} + outSlope: {x: 2.062253, y: -0.31236786, z: 0.015311054, w: -0.60846066} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.34147865, y: -0.05498813, z: 0.12371237, w: 0.9300881} + inSlope: {x: 1.3073745, y: -0.19780625, z: 0.0014827006, w: -0.45570704} + outSlope: {x: 1.3073745, y: -0.19780625, z: 0.0014827006, w: -0.45570704} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: 0.36230993, y: -0.058137346, z: 0.12363757, w: 0.92198986} + inSlope: {x: -0.011422634, y: 0.0017264485, z: 0.000020898879, w: 0.0042879656} + outSlope: {x: -0.011422634, y: 0.0017264485, z: 0.000020898879, w: 0.0042879656} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.3163447, y: -0.05118627, z: 0.123719074, w: 0.9391483} + inSlope: {x: -0.44800252, y: 0.06777276, z: -0.00007856617, w: 0.15980253} + outSlope: {x: -0.44800252, y: 0.06777276, z: -0.00007856617, w: 0.15980253} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.32682145, y: -0.052771337, z: 0.123727255, w: 0.9354649} + inSlope: {x: -0.14357388, y: 0.021724116, z: -0.00024363367, w: 0.04936416} + outSlope: {x: -0.14357388, y: 0.021724116, z: -0.00024363367, w: 0.04936416} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.29805487, y: -0.048418242, z: 0.12366785, w: 0.94526464} + inSlope: {x: 0.49820748, y: -0.075363755, z: 0.0000063691405, w: -0.17841493} + outSlope: {x: 0.49820748, y: -0.075363755, z: 0.0000063691405, w: -0.17841493} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.70000005 + value: {x: 0.34354746, y: -0.055300947, z: 0.12370775, w: 0.929308} + inSlope: {x: 2.126207, y: -0.3212698, z: -0.013351268, w: -0.8752061} + outSlope: {x: 2.126207, y: -0.3212698, z: -0.013351268, w: -0.8752061} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.43980196, y: -0.06983622, z: 0.12277777, w: 0.8869176} + inSlope: {x: 1.9378867, y: -0.29250056, z: -0.023877252, w: -0.8972986} + outSlope: {x: 1.9378867, y: -0.29250056, z: -0.023877252, w: -0.8972986} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7666667 + value: {x: 0.47273985, y: -0.074800976, z: 0.12211593, w: 0.8694881} + inSlope: {x: 0.82357025, y: -1.3948746, z: -0.48342374, w: -0.5709533} + outSlope: {x: 0.82357025, y: -1.3948746, z: -0.48342374, w: -0.5709533} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000001 + value: {x: 0.4947067, y: -0.16282794, z: 0.09054949, w: 0.848854} + inSlope: {x: -2.1830268, y: -1.69058, z: -0.29289678, w: 0.7646375} + outSlope: {x: -2.1830268, y: -1.69058, z: -0.29289678, w: 0.7646375} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.3272049, y: -0.18750636, z: 0.10258944, w: 0.92046386} + inSlope: {x: -6.506179, y: 2.2559836, z: 0.4275558, w: 2.1312413} + outSlope: {x: -6.506179, y: 2.2559836, z: 0.4275558, w: 2.1312413} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.86666673 + value: {x: 0.06096137, y: -0.012428857, z: 0.119053215, w: 0.99093676} + inSlope: {x: -4.466167, y: 2.698095, z: 0.22991683, w: 1.0813961} + outSlope: {x: -4.466167, y: 2.698095, z: 0.22991683, w: 1.0813961} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.90000004 + value: {x: 0.029460257, y: -0.0076332088, z: 0.11791725, w: 0.992557} + inSlope: {x: 0.633549, y: -0.09637857, z: 0.020032926, w: -0.05652657} + outSlope: {x: 0.633549, y: -0.09637857, z: 0.020032926, w: -0.05652657} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9333334 + value: {x: 0.10319806, y: -0.01885411, z: 0.120388746, w: 0.9871683} + inSlope: {x: 2.4916716, y: -0.37878576, z: 0.06945804, w: -0.30165657} + outSlope: {x: 2.4916716, y: -0.37878576, z: 0.06945804, w: -0.30165657} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9666667 + value: {x: 0.19557166, y: -0.03288559, z: 0.12254778, w: 0.97244656} + inSlope: {x: 1.7590615, y: -0.26712438, z: 0.03836613, w: -0.30373007} + outSlope: {x: 1.7590615, y: -0.26712438, z: 0.03836613, w: -0.30373007} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.22046871, y: -0.036662385, z: 0.122946486, w: 0.96691966} + inSlope: {x: 0.7469123, y: -0.113304, z: 0.011961099, w: -0.16580717} + outSlope: {x: 0.7469123, y: -0.113304, z: 0.011961099, w: -0.16580717} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot/mixamorig:RightToeBase + m_CompressedRotationCurves: [] + m_EulerCurves: [] + m_PositionCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.00014922944, y: 0.015679166, z: -0.0016821623} + inSlope: {x: 0.0065132733, y: 0.05250212, z: 0.09517838} + outSlope: {x: 0.0065132733, y: 0.05250212, z: 0.09517838} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.00006787968, y: 0.017429236, z: 0.0014904503} + inSlope: {x: 0.00508866, y: 0.05843636, z: 0.099007785} + outSlope: {x: 0.005088663, y: 0.058436584, z: 0.099007815} + tangentMode: 0 + weightedMode: 0 + 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.00019001459, y: 0.019574938, z: 0.0049183588} + inSlope: {x: 0.0058072796, y: 0.0700411, z: 0.10449476} + outSlope: {x: 0.0058072773, y: 0.07004133, z: 0.10449484} + tangentMode: 0 + weightedMode: 0 + 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.00045503158, y: 0.022098651, z: 0.008456773} + inSlope: {x: 0.0097560985, y: 0.08000842, z: 0.101915225} + outSlope: {x: 0.009756097, y: 0.08000757, z: 0.10191532} + tangentMode: 0 + weightedMode: 0 + 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.00084042124, y: 0.02490881, z: 0.011712713} + inSlope: {x: 0.01095821, y: 0.087605625, z: 0.09682303} + outSlope: {x: 0.010958247, y: 0.08760605, z: 0.0968235} + tangentMode: 0 + weightedMode: 0 + 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.001185579, y: 0.027939051, z: 0.014911645} + inSlope: {x: 0.00773983, y: 0.09182673, z: 0.10342156} + outSlope: {x: 0.0077398214, y: 0.09182637, z: 0.10342156} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.23333333 + value: {x: 0.0012964278, y: 0.033814315, z: 0.022720115} + inSlope: {x: -0.0061571184, y: 0.07510601, z: 0.12179997} + outSlope: {x: -0.006157087, y: 0.075105935, z: 0.12179962} + tangentMode: 0 + weightedMode: 0 + 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.0009459344, y: 0.03603765, z: 0.026727442} + inSlope: {x: -0.011543887, y: 0.062881194, z: 0.11784971} + outSlope: {x: -0.011543933, y: 0.06288191, z: 0.11785046} + tangentMode: 0 + weightedMode: 0 + 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.0005268311, y: 0.038006417, z: 0.030576816} + inSlope: {x: -0.009222646, y: 0.050378554, z: 0.11163761} + outSlope: {x: -0.009222703, y: 0.050378364, z: 0.1116376} + tangentMode: 0 + weightedMode: 0 + 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.00033108736, y: 0.039396215, z: 0.034169964} + inSlope: {x: -0.003279902, y: 0.028598487, z: 0.10411515} + outSlope: {x: -0.0032799232, y: 0.028598811, z: 0.10411588} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: 0.00030816972, y: 0.03991302, z: 0.037517875} + inSlope: {x: 0.0022105854, y: 0.006275339, z: 0.10461077} + outSlope: {x: 0.00221057, y: 0.006275344, z: 0.10461103} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.4 + value: {x: 0.00047845984, y: 0.0398146, z: 0.04114402} + inSlope: {x: 0.005351309, y: -0.01723375, z: 0.110888936} + outSlope: {x: 0.005351322, y: -0.017233355, z: 0.11088839} + tangentMode: 0 + weightedMode: 0 + 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.000664925, y: 0.038764145, z: 0.044910483} + inSlope: {x: 0.0039480636, y: -0.046310887, z: 0.10758664} + outSlope: {x: 0.003948072, y: -0.046310686, z: 0.10758711} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.46666667 + value: {x: 0.0007416657, y: 0.03672722, z: 0.048316494} + inSlope: {x: 0.00022570878, y: -0.07584836, z: 0.098857574} + outSlope: {x: 0.0002257218, y: -0.07584853, z: 0.09885672} + tangentMode: 0 + weightedMode: 0 + 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.0006799729, y: 0.033707593, z: 0.051500984} + inSlope: {x: -0.001923345, y: -0.09823501, z: 0.0969051} + outSlope: {x: -0.0019233394, y: -0.098233916, z: 0.09690469} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: 0.00061344285, y: 0.030178227, z: 0.054776873} + inSlope: {x: -0.0013025842, y: -0.10866336, z: 0.10015535} + outSlope: {x: -0.0013025994, y: -0.10866531, z: 0.10015679} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.6 + value: {x: 0.0006276857, y: 0.02281344, z: 0.061563943} + inSlope: {x: 0.0017735349, y: -0.10050904, z: 0.099524476} + outSlope: {x: 0.0017735607, y: -0.10051092, z: 0.099526934} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.6333333 + value: {x: 0.0007113689, y: 0.019762559, z: 0.06481319} + inSlope: {x: 0.0013649598, y: -0.081430435, z: 0.09429194} + outSlope: {x: 0.0013649592, y: -0.08143006, z: 0.094292246} + tangentMode: 0 + weightedMode: 0 + 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.0007186829, y: 0.01738474, z: 0.067850076} + inSlope: {x: -0.0017496789, y: -0.06437548, z: 0.08880862} + outSlope: {x: -0.0017496966, y: -0.06437604, z: 0.08880833} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.7 + value: {x: 0.00059472315, y: 0.015470825, z: 0.07073377} + inSlope: {x: -0.005051137, y: -0.045855835, z: 0.08220821} + outSlope: {x: -0.005051074, y: -0.0458552, z: 0.08220741} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.73333335 + value: {x: 0.00038194092, y: 0.014327695, z: 0.07333061} + inSlope: {x: -0.0059239245, y: -0.019369474, z: 0.075775556} + outSlope: {x: -0.0059240004, y: -0.019369818, z: 0.075775474} + tangentMode: 0 + weightedMode: 0 + 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.00019979091, y: 0.014179509, z: 0.07578548} + inSlope: {x: -0.0030126357, y: 0.002588382, z: 0.07918486} + outSlope: {x: -0.0030126157, y: 0.002588253, z: 0.0791832} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.8 + value: {x: 0.00018109937, y: 0.014500256, z: 0.0786096} + inSlope: {x: 0.00041561434, y: 0.008011419, z: 0.086117774} + outSlope: {x: 0.00041561958, y: 0.00801159, z: 0.086118445} + tangentMode: 0 + weightedMode: 0 + 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.00022749866, y: 0.014713618, z: 0.081526764} + inSlope: {x: 0.001093772, y: 0.0062840753, z: 0.08460823} + outSlope: {x: 0.0010937573, y: 0.0062839924, z: 0.084609166} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.8666667 + value: {x: 0.00025401704, y: 0.014919201, z: 0.08425023} + inSlope: {x: 0.00026740087, y: 0.003970312, z: 0.08147022} + outSlope: {x: 0.000267408, y: 0.003970693, z: 0.08147142} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.9 + value: {x: 0.00024532588, y: 0.014978321, z: 0.08695813} + inSlope: {x: -0.0017652693, y: 0.0036571722, z: 0.08291556} + outSlope: {x: -0.0017652343, y: 0.0036569454, z: 0.0829145} + tangentMode: 0 + weightedMode: 0 + 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.00013633264, y: 0.015163001, z: 0.08977783} + inSlope: {x: -0.004466046, y: 0.0076392135, z: 0.08406299} + outSlope: {x: -0.004466082, y: 0.0076389867, z: 0.084063515} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.96666664 + value: {x: -0.000052412448, y: 0.015487607, z: 0.092562355} + inSlope: {x: -0.0042834627, y: 0.007742358, z: 0.07642321} + outSlope: {x: -0.004283402, y: 0.0077423565, z: 0.07642081} + tangentMode: 0 + weightedMode: 0 + 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.00014922975, y: 0.015679164, z: 0.09487265} + inSlope: {x: -0.0029044992, y: 0.005746795, z: 0.06930777} + outSlope: {x: -0.0029044992, y: 0.005746795, z: 0.06930777} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips + m_ScaleCurves: [] + m_FloatCurves: [] + m_PPtrCurves: [] + m_SampleRate: 30 + 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/Jammo-Character/Animations/Jump.anim.meta b/Assets/Jammo-Character/Animations/Jump.anim.meta new file mode 100644 index 0000000..d637510 --- /dev/null +++ b/Assets/Jammo-Character/Animations/Jump.anim.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: e7fa3aa78b48c584fbee583a7c532655 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 7400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Jammo-Character/Animations/Mixamo-Gun.meta b/Assets/Jammo-Character/Animations/Mixamo-Gun.meta new file mode 100644 index 0000000..1d00511 --- /dev/null +++ b/Assets/Jammo-Character/Animations/Mixamo-Gun.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 425b3abd9ae1f324cbb2999f22f6eb41 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Jammo-Character/Animations/Mixamo-Gun/Rifle Aim Idle.anim b/Assets/Jammo-Character/Animations/Mixamo-Gun/Rifle Aim Idle.anim new file mode 100644 index 0000000..0e78ded --- /dev/null +++ b/Assets/Jammo-Character/Animations/Mixamo-Gun/Rifle Aim Idle.anim @@ -0,0 +1,15937 @@ +%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: Rifle Aim 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, 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.033333335 + 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: jammo_mixamo_rig + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.1109397, y: 0.33955735, z: 0.027864782, w: 0.9336042} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.1000001 + value: {x: -0.1109397, y: 0.33955735, z: 0.027864782, w: 0.9336042} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.06970765, y: 0.0011514246, z: 0.0008710233, w: 0.99756646} + inSlope: {x: -0.0016913562, y: 0.00027724192, z: -0.002726982, w: 0.00011980533} + outSlope: {x: -0.0016913562, y: 0.00027724192, z: -0.002726982, w: 0.00011980533} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6333334 + value: {x: 0.054456785, y: 0.0013992622, z: -0.0032011815, w: 0.99851006} + inSlope: {x: 0.00000022351742, y: 0.0005365506, z: 0.0010774179, w: 0.0000026822117} + outSlope: {x: 0.00000022351742, y: 0.0005365506, z: 0.0010774179, w: 0.0000026822117} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.1000001 + value: {x: 0.06965866, y: 0.001117134, z: 0.0007572809, w: 0.99757} + inSlope: {x: 0.0023082665, y: -0.000007107162, z: 0.00054451515, w: -0.0001609327} + outSlope: {x: 0.0023082665, y: -0.000007107162, z: 0.00054451515, w: -0.0001609327} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.14274931, y: 0.00012897942, z: 0.0066036554, w: 0.98973686} + inSlope: {x: 0.018537192, y: -0.00012285644, z: 0.0000025983898, w: -0.0026786325} + outSlope: {x: 0.018537192, y: -0.00012285644, z: 0.0000025983898, w: -0.0026786325} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6333334 + value: {x: 0.13405037, y: -0.000059980626, z: 0.005051672, w: 0.9909617} + inSlope: {x: -0.0034904513, y: 0.0000052212868, z: 0.00016457184, w: 0.00047117518} + outSlope: {x: -0.0034904513, y: 0.0000052212868, z: 0.00016457184, w: 0.00047117518} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.1000001 + value: {x: 0.1420986, y: 0.00015810908, z: 0.006635331, w: 0.98983026} + inSlope: {x: 0.014550998, y: -0.00013502823, z: -0.000059763028, w: -0.0020849726} + outSlope: {x: 0.014550998, y: -0.00013502823, z: -0.000059763028, w: -0.0020849726} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.1303248, y: 0.00066224195, z: 0.0064866426, w: 0.99144995} + inSlope: {x: -0.0025860963, y: 0.00001483946, z: -0.0000023609025, w: 0.00033974645} + outSlope: {x: -0.0025860963, y: 0.00001483946, z: -0.0000023609025, w: 0.00033974645} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6333334 + value: {x: 0.1261565, y: 0.00015661406, z: 0.0049949307, w: 0.9919978} + inSlope: {x: -0.0061022546, y: 0.000039627666, z: 0.0001228858, w: 0.0007760532} + outSlope: {x: -0.0061022546, y: 0.000039627666, z: 0.0001228858, w: 0.0007760532} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.1000001 + value: {x: 0.12986605, y: 0.0006957178, z: 0.006512906, w: 0.9915099} + inSlope: {x: 0.009246477, y: -0.00010478088, z: -0.000047497495, w: -0.0012087834} + outSlope: {x: 0.009246477, y: -0.00010478088, z: -0.000047497495, w: -0.0012087834} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.029168177, y: -0.06521485, z: -0.0074768234, w: 0.99741685} + inSlope: {x: 0.0016202776, y: 0.0022825596, z: 0.00025992282, w: 0.000103712075} + outSlope: {x: 0.0016202776, y: 0.0022825596, z: 0.00025992282, w: 0.000103712075} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6333334 + value: {x: 0.033908598, y: -0.06517805, z: -0.007756423, w: 0.99726725} + inSlope: {x: -0.004068803, y: -0.0000020116586, z: 0.00028508977, w: 0.00014126315} + outSlope: {x: -0.004068803, y: -0.0000020116586, z: 0.00028508977, w: 0.00014126315} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.1000001 + value: {x: 0.02913657, y: -0.0651847, z: -0.0074392254, w: 0.99742} + inSlope: {x: 0.000028554377, y: 0.00000022351763, z: -0.0000013690454, w: 0} + outSlope: {x: 0.000028554377, y: 0.00000022351763, z: -0.0000013690454, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.014938722, y: -0.19895828, z: -0.074035674, w: 0.9770932} + inSlope: {x: 0.0099398745, y: 0.0070850546, z: -0.0013831257, w: 0.0011837481} + outSlope: {x: 0.0099398745, y: 0.0070850546, z: -0.0013831257, w: 0.0011837481} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6333334 + value: {x: 0.025457753, y: -0.19822769, z: -0.07521989, w: 0.97693384} + inSlope: {x: -0.013920873, y: -0.0010507563, z: 0.0022527224, w: 0.0003236535} + outSlope: {x: -0.013920873, y: -0.0010507563, z: 0.0022527224, w: 0.0003236535} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.1000001 + value: {x: 0.01471642, y: -0.19891952, z: -0.073956154, w: 0.9771105} + inSlope: {x: 0.005328381, y: -0.00040814318, z: -0.00050000893, w: -0.00020205993} + outSlope: {x: 0.005328381, y: -0.00040814318, z: -0.00050000893, w: -0.00020205993} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.06928724, y: 0, z: -0, w: 0.99759674} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: -0.06928724, y: 0, z: -0, w: 0.99759674} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head/mixamorig:HeadTop_End + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.40506425, y: -0.45798013, z: 0.59357256, w: 0.5233056} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.40506425, y: -0.45798013, z: 0.59357256, w: 0.5233056} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head/mixamorig:LeftEar + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.40506425, y: 0.45798013, z: -0.59357256, w: 0.5233056} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.40506425, y: 0.45798013, z: -0.59357256, w: 0.5233056} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head/mixamorig:RightEar + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.25386205, y: -0.3295389, z: 0.5977311, w: 0.6853289} + inSlope: {x: 0.0022324917, y: 0.0024086235, z: -0.015910864, w: 0.014196037} + outSlope: {x: 0.0022324917, y: 0.0024086235, z: -0.015910864, w: 0.014196037} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4333334 + value: {x: 0.25038055, y: -0.33366704, z: 0.5983917, w: 0.6840345} + inSlope: {x: -0.0060953256, y: -0.008040823, z: -0.0011846435, w: -0.00065445964} + outSlope: {x: -0.0060953256, y: -0.008040823, z: -0.0011846435, w: -0.00065445964} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.0666668 + value: {x: 0.25367635, y: -0.3297901, z: 0.5972436, w: 0.6857018} + inSlope: {x: 0.0008980938, y: 0.00022619986, z: -0.0020706675, w: 0.0015789286} + outSlope: {x: 0.0008980938, y: 0.00022619986, z: -0.0020706675, w: 0.0015789286} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.1000001 + value: {x: 0.2536449, y: -0.32985577, z: 0.59713113, w: 0.6857797} + inSlope: {x: -0.0009432444, y: -0.0019705314, z: -0.0033742222, w: 0.0023371004} + outSlope: {x: -0.0009432444, y: -0.0019705314, z: -0.0033742222, w: 0.0023371004} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.5294893, y: 0.2789996, z: -0.18537441, w: 0.7793822} + inSlope: {x: -0.010201334, y: 0.009311735, z: 0.024292318, w: 0.009357332} + outSlope: {x: -0.010201334, y: 0.009311735, z: 0.024292318, w: 0.009357332} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000001 + value: {x: 0.53309035, y: 0.27074292, z: -0.1800459, w: 0.7810867} + inSlope: {x: 0.0167048, y: -0.03048331, z: 0.0036511545, w: 0.000006257498} + outSlope: {x: 0.0167048, y: -0.03048331, z: 0.0036511545, w: 0.000006257498} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.3000002 + value: {x: 0.5396714, y: 0.259686, z: -0.18017364, w: 0.7802919} + inSlope: {x: -0.011702489, y: 0.023255222, z: -0.0087918425, w: -0.0016754882} + outSlope: {x: -0.011702489, y: 0.023255222, z: -0.0087918425, w: -0.0016754882} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.1000001 + value: {x: 0.5298054, y: 0.2781824, z: -0.18450862, w: 0.7796649} + inSlope: {x: -0.008364924, y: 0.0155604035, z: -0.0035718118, w: -0.00070631574} + outSlope: {x: -0.008364924, y: 0.0155604035, z: -0.0035718118, w: -0.00070631574} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.043446988, y: 0.009385619, z: -0.53544563, w: 0.8433993} + inSlope: {x: 0.0013735144, y: -0.00012614764, z: -0.01694262, w: -0.0108361235} + outSlope: {x: 0.0013735144, y: -0.00012614764, z: -0.01694262, w: -0.0108361235} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6333334 + value: {x: 0.04286924, y: 0.009435365, z: -0.528325, w: 0.8479068} + inSlope: {x: 0.00088445924, y: -0.00007378876, z: -0.010871003, w: -0.0068163937} + outSlope: {x: 0.00088445924, y: -0.00007378876, z: -0.010871003, w: -0.0068163937} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.1000001 + value: {x: 0.043462165, y: 0.009383952, z: -0.5356335, w: 0.8432792} + inSlope: {x: 0.00028878477, y: -0.000032549757, z: -0.0035941636, w: -0.002295973} + outSlope: {x: 0.00028878477, y: -0.000032549757, z: -0.0035941636, w: -0.002295973} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.11670799, y: 0.80764085, z: 0.25276273, w: 0.51981395} + inSlope: {x: -0.0076038386, y: 0.009169578, z: -0.0017917155, w: -0.01509726} + outSlope: {x: -0.0076038386, y: 0.009169578, z: -0.0017917155, w: -0.01509726} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333334 + value: {x: -0.110236, y: 0.81425005, z: 0.24373747, w: 0.51520574} + inSlope: {x: -0.0017569603, y: -0.0011926901, z: 0.0013556344, w: 0.00086814247} + outSlope: {x: -0.0017569603, y: -0.0011926901, z: 0.0013556344, w: 0.00086814247} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.1000001 + value: {x: -0.116707385, y: 0.8079495, z: 0.25253385, w: 0.51944566} + inSlope: {x: -0.0021104536, y: 0.0057238396, z: -0.0032553107, w: -0.0077873543} + outSlope: {x: -0.0021104536, y: 0.0057238396, z: -0.0032553107, w: -0.0077873543} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.18479048, y: -0.18677497, z: -0.23856452, w: 0.93490887} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.1000001 + value: {x: 0.18479048, y: -0.18677497, z: -0.23856452, w: 0.93490887} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.055343386, y: -0.29720563, z: 0.072479546, w: 0.95044863} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.1000001 + value: {x: 0.055343386, y: -0.29720563, z: 0.072479546, w: 0.95044863} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.07265419, y: -0.056427963, z: -0.058118194, w: 0.9940621} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.1000001 + value: {x: -0.07265419, y: -0.056427963, z: -0.058118194, w: 0.9940621} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2/mixamorig:LeftHandThumb3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.020066822, y: 0.04093228, z: 0.014504543, w: 0.9988551} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.020066822, y: 0.04093228, z: 0.014504543, w: 0.9988551} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2/mixamorig:LeftHandThumb3/mixamorig:LeftHandThumb4 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.310812, y: 0.024990099, z: 0.008165358, w: 0.95010775} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.1000001 + value: {x: 0.310812, y: 0.024990099, z: 0.008165358, w: 0.95010775} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.49735194, y: -0.0045217583, z: 0.0687694, w: 0.8648071} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.1000001 + value: {x: 0.49735194, y: -0.0045217583, z: 0.0687694, w: 0.8648071} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.20831828, y: 0.00000015497835, z: 0.027695121, w: 0.97766894} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.1000001 + value: {x: 0.20831828, y: 0.00000015497835, z: 0.027695121, w: 0.97766894} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2/mixamorig:LeftHandIndex3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.04448854, y: -0.000000085353406, z: 0.000000067373364, w: 0.9990099} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.04448854, y: -0.000000085353406, z: 0.000000067373364, w: 0.9990099} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2/mixamorig:LeftHandIndex3/mixamorig:LeftHandIndex4 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.43684655, y: 0.032657355, z: 0.028203445, w: 0.8985005} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.1000001 + value: {x: 0.43684655, y: 0.032657355, z: 0.028203445, w: 0.8985005} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.5329266, y: -0.011323636, z: 0.07741013, w: 0.84253705} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.1000001 + value: {x: 0.5329266, y: -0.011323636, z: 0.07741013, w: 0.84253705} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.15434292, y: 0.0029593022, z: 0.021273669, w: 0.98778385} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.1000001 + value: {x: 0.15434292, y: 0.0029593022, z: 0.021273669, w: 0.98778385} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2/mixamorig:LeftHandMiddle3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.010558603, y: -0.002861331, z: -0.0028610048, w: 0.9999361} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.010558603, y: -0.002861331, z: -0.0028610048, w: 0.9999361} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2/mixamorig:LeftHandMiddle3/mixamorig:LeftHandMiddle4 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.58956057, y: 0.06578112, z: -0.0195391, w: 0.80480397} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.1000001 + value: {x: 0.58956057, y: 0.06578112, z: -0.0195391, w: 0.80480397} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.5269479, y: -0.00012118645, z: 0.07005823, w: 0.8470051} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.5269479, y: -0.00012118645, z: 0.07005823, w: 0.8470051} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.12174856, y: 0.000000012294486, z: 0.016168807, w: 0.99242926} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.1000001 + value: {x: 0.12174856, y: 0.000000012294486, z: 0.016168807, w: 0.99242926} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2/mixamorig:LeftHandPinky3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.04451911, y: 0.000000025807028, z: 0.000000045059494, w: 0.99900854} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.04451911, y: 0.000000025807028, z: 0.000000045059494, w: 0.99900854} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2/mixamorig:LeftHandPinky3/mixamorig:LeftHandPinky4 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.15439154, y: 0.39938882, z: -0.6456069, w: 0.63233197} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.1000001 + value: {x: 0.15439154, y: 0.39938882, z: -0.6456069, w: 0.63233197} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.5753828, y: 0.09824325, z: 0.5263193, w: 0.61828053} + inSlope: {x: -0.00004470348, y: -0.0067122276, z: -0.010641216, w: 0.010160207} + outSlope: {x: -0.00004470348, y: -0.0067122276, z: -0.010641216, w: 0.010160207} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3000001 + value: {x: 0.5750119, y: 0.115468204, z: 0.5216811, w: 0.6195784} + inSlope: {x: -0.0005632645, y: 0.019097906, z: -0.0062334593, w: 0.0022128245} + outSlope: {x: -0.0005632645, y: 0.019097906, z: -0.0062334593, w: 0.0022128245} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.9333334 + value: {x: 0.57531166, y: 0.102177374, z: 0.52501947, w: 0.6188141} + inSlope: {x: 0.00037908458, y: -0.02062893, z: 0.0049120043, w: -0.0011131123} + outSlope: {x: 0.00037908458, y: -0.02062893, z: 0.0049120043, w: -0.0011131123} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.1000001 + value: {x: 0.57536507, y: 0.09913465, z: 0.52580667, w: 0.6185909} + inSlope: {x: 0.00023603461, y: -0.014072223, z: 0.0038749017, w: -0.0012570631} + outSlope: {x: 0.00023603461, y: -0.014072223, z: 0.0038749017, w: -0.0012570631} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.06124353, y: -0.0072677676, z: 0.75477195, w: 0.6530817} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.1000001 + value: {x: 0.06124353, y: -0.0072677676, z: 0.75477195, w: 0.6530817} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.1553821, y: -0.35191253, z: -0.2587535, w: 0.88603646} + inSlope: {x: 0.01154825, y: 0.01789212, z: -0.02183318, w: 0.002737641} + outSlope: {x: 0.01154825, y: 0.01789212, z: -0.02183318, w: 0.002737641} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6333334 + value: {x: -0.1579811, y: -0.35734063, z: -0.26377752, w: 0.88191336} + inSlope: {x: -0.005537873, y: -0.0055655893, z: 0.0077506974, w: -0.00092804525} + outSlope: {x: -0.005537873, y: -0.0055655893, z: 0.0077506974, w: -0.00092804525} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.1000001 + value: {x: -0.15563646, y: -0.35204965, z: -0.25902867, w: 0.8858569} + inSlope: {x: 0.0103081865, y: 0.009566555, z: -0.006135112, w: 0.0038230456} + outSlope: {x: 0.0103081865, y: 0.009566555, z: -0.006135112, w: 0.0038230456} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.30036038, y: 0.18302149, z: 0.28023317, w: 0.893172} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.1000001 + value: {x: 0.30036038, y: 0.18302149, z: 0.28023317, w: 0.893172} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.034203514, y: 0.3123212, z: -0.26409093, w: 0.911889} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.1000001 + value: {x: 0.034203514, y: 0.3123212, z: -0.26409093, w: 0.911889} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.08895704, y: 0.05616397, z: -0.48215663, w: 0.86974555} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.1000001 + value: {x: 0.08895704, y: 0.05616397, z: -0.48215663, w: 0.86974555} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2/mixamorig:RightHandThumb3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.020066835, y: -0.040932328, z: -0.014504511, w: 0.9988551} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.020066835, y: -0.040932328, z: -0.014504511, w: 0.9988551} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2/mixamorig:RightHandThumb3/mixamorig:RightHandThumb4 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.10447185, y: -0.025879035, z: 0.044140052, w: 0.99321073} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.1000001 + value: {x: 0.10447185, y: -0.025879035, z: 0.044140052, w: 0.99321073} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.2819615, y: 0.005013438, z: -0.033015866, w: 0.95884436} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.2819615, y: 0.005013438, z: -0.033015866, w: 0.95884436} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.25595605, y: 0.000000055305552, z: -0.028614955, w: 0.9662648} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.25595605, y: 0.000000055305552, z: -0.028614955, w: 0.9662648} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2/mixamorig:RightHandIndex3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.044488586, y: 0.000000017384444, z: -0.000000028251991, w: 0.9990099} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.044488586, y: 0.000000017384444, z: -0.000000028251991, w: 0.9990099} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2/mixamorig:RightHandIndex3/mixamorig:RightHandIndex4 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.42732498, y: -0.01563769, z: -0.05261845, w: 0.9024302} + inSlope: {x: 0.0018408893, y: 0.00007499009, z: -0.0001940131, w: -0.0008833408} + outSlope: {x: 0.0018408893, y: 0.00007499009, z: -0.0001940131, w: -0.0008833408} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6333334 + value: {x: 0.4246766, y: -0.015557919, z: -0.05275096, w: 0.9036731} + inSlope: {x: 0.0023536407, y: -0.00038595905, z: 0.0007847145, w: -0.0010666262} + outSlope: {x: 0.0023536407, y: -0.00038595905, z: 0.0007847145, w: -0.0010666262} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.1000001 + value: {x: 0.42724958, y: -0.015618921, z: -0.052656755, w: 0.902464} + inSlope: {x: -0.004146699, y: -0.00014634817, z: 0.00036545133, w: 0.0019848365} + outSlope: {x: -0.004146699, y: -0.00014634817, z: 0.00036545133, w: 0.0019848365} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.8156952, y: 0.0074485345, z: -0.10149895, w: 0.5694593} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.1000001 + value: {x: 0.8156952, y: 0.0074485345, z: -0.10149895, w: 0.5694593} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.16268903, y: -0.0029592607, z: -0.018956764, w: 0.98649085} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.16268903, y: -0.0029592607, z: -0.018956764, w: 0.98649085} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2/mixamorig:RightHandMiddle3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.010558588, y: 0.0028612548, z: 0.0028610802, w: 0.9999361} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.010558588, y: 0.0028612548, z: 0.0028610802, w: 0.9999361} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2/mixamorig:RightHandMiddle3/mixamorig:RightHandMiddle4 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.5320116, y: -0.04360786, z: 0.013805689, w: 0.84550065} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.1000001 + value: {x: 0.5320116, y: -0.04360786, z: 0.013805689, w: 0.84550065} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.6561534, y: 0.00010745697, z: -0.073358454, w: 0.75105345} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.1000001 + value: {x: 0.6561534, y: 0.00010745697, z: -0.073358454, w: 0.75105345} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.49594852, y: -0.0000000296123, z: -0.05537579, w: 0.8665844} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.1000001 + value: {x: 0.49594852, y: -0.0000000296123, z: -0.05537579, w: 0.8665844} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2/mixamorig:RightHandPinky3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.044519115, y: 0.000000086405365, z: -0.000000096039955, w: 0.99900854} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.044519115, y: 0.000000086405365, z: -0.000000096039955, w: 0.99900854} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2/mixamorig:RightHandPinky3/mixamorig:RightHandPinky4 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.39591357, y: 0.03625236, z: 0.9062164, w: 0.1439099} + inSlope: {x: -0.0019696355, y: 0.00015310942, z: -0.0025731323, w: 0.010734647} + outSlope: {x: -0.0019696355, y: 0.00015310942, z: -0.0025731323, w: 0.010734647} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6333334 + value: {x: -0.39727175, y: 0.03131315, z: 0.9061621, w: 0.14165062} + inSlope: {x: -0.0015038267, y: 0.0044856914, z: -0.00164956, w: 0.0053472123} + outSlope: {x: -0.0015038267, y: 0.0044856914, z: -0.00164956, w: 0.0053472123} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.1000001 + value: {x: -0.3960485, y: 0.036134347, z: 0.90607846, w: 0.14443588} + inSlope: {x: 0.0048118876, y: 0.0000887365, z: 0.0028055932, w: -0.004422073} + outSlope: {x: 0.0048118876, y: 0.0000887365, z: 0.0028055932, w: -0.004422073} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.24263364, y: -0.0006987117, z: -0.03741047, w: 0.9693961} + inSlope: {x: -0.004739463, y: 0.010539722, z: 0.021265445, w: -0.00036656854} + outSlope: {x: -0.004739463, y: 0.010539722, z: 0.021265445, w: -0.00036656854} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9666667 + value: {x: -0.23480897, y: 0.0006240127, z: -0.03689338, w: 0.97134095} + inSlope: {x: 0.010115067, y: -0.0058305347, z: 0.0028158193, w: 0.0025570416} + outSlope: {x: 0.010115067, y: -0.0058305347, z: 0.0028158193, w: 0.0025570416} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.3000002 + value: {x: -0.23887818, y: -0.0077657155, z: -0.031560186, w: 0.9705055} + inSlope: {x: -0.008556032, y: 0.0031280385, z: -0.0038118695, w: -0.002204778} + outSlope: {x: -0.008556032, y: 0.0031280385, z: -0.0038118695, w: -0.002204778} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.1000001 + value: {x: -0.24270499, y: -0.0008409805, z: -0.0364058, w: 0.96941644} + inSlope: {x: -0.00076040695, y: 0.009900418, z: -0.007360212, w: -0.00045597597} + outSlope: {x: -0.00076040695, y: 0.009900418, z: -0.007360212, w: -0.00045597597} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.58623624, y: 0.03954314, z: 0.03333692, w: 0.80848753} + inSlope: {x: 0.0010335445, y: -0.019239819, z: -0.0050318236, w: 0.00038981435} + outSlope: {x: 0.0010335445, y: -0.019239819, z: -0.0050318236, w: 0.00038981435} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6333334 + value: {x: 0.58123356, y: 0.040828396, z: 0.030814638, w: 0.8121275} + inSlope: {x: 0.005229418, y: 0.003144502, z: 0.00071891653, w: -0.003927652} + outSlope: {x: 0.005229418, y: 0.003144502, z: 0.00071891653, w: -0.003927652} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.8000002 + value: {x: 0.58613974, y: 0.039215162, z: 0.033291347, w: 0.80857533} + inSlope: {x: 0.0011488807, y: -0.0048643583, z: 0.006149473, w: -0.00084847293} + outSlope: {x: 0.0011488807, y: -0.0048643583, z: 0.006149473, w: -0.00084847293} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.1000001 + value: {x: 0.586317, y: 0.039253477, z: 0.03293143, w: 0.8084597} + inSlope: {x: -0.00039517917, y: -0.0024084025, z: 0.004914594, w: 0.00020384807} + outSlope: {x: -0.00039517917, y: -0.0024084025, z: 0.004914594, w: 0.00020384807} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.16970257, y: 0.02895894, z: -0.12205014, w: 0.9774795} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.1000001 + value: {x: 0.16970257, y: 0.02895894, z: -0.12205014, w: 0.9774795} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot/mixamorig:LeftToeBase + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.04573715, y: 0.039433047, z: 0.0727525, w: 0.99552006} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.04573715, y: 0.039433047, z: 0.0727525, w: 0.99552006} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot/mixamorig:LeftToeBase/mixamorig:LeftToe_End + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.04543358, y: -0.10447777, z: 0.99251777, w: -0.043916892} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.1000001 + value: {x: -0.04543358, y: -0.10447777, z: 0.99251777, w: -0.043916892} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.2600855, y: -0.0044195666, z: 0.03651018, w: 0.964885} + inSlope: {x: -0.0051721926, y: -0.023729753, z: 0.014355629, w: -0.0020599365} + outSlope: {x: -0.0051721926, y: -0.023729753, z: 0.014355629, w: -0.0020599365} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666668 + value: {x: -0.2603923, y: -0.008807165, z: 0.037335146, w: 0.9647406} + inSlope: {x: 0.009317093, y: -0.019663053, z: 0.005457226, w: 0.0021278844} + outSlope: {x: 0.009317093, y: -0.019663053, z: 0.005457226, w: 0.0021278844} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.25434303, y: -0.01051621, z: 0.036917623, w: 0.966352} + inSlope: {x: -0.0042352118, y: 0.011510767, z: -0.0018434059, w: -0.00092178676} + outSlope: {x: -0.0042352118, y: 0.011510767, z: -0.0018434059, w: -0.00092178676} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.1000001 + value: {x: -0.25964773, y: -0.005790023, z: 0.036959756, w: 0.9649785} + inSlope: {x: -0.008222766, y: -0.012275253, z: 0.0035400724, w: -0.0024175667} + outSlope: {x: -0.008222766, y: -0.012275253, z: 0.0035400724, w: -0.0024175667} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.7057629, y: -0.17706896, z: 0.007835218, w: 0.6859183} + inSlope: {x: 0.00081896776, y: 0.019543914, z: -0.023925805, w: 0.0044560432} + outSlope: {x: 0.00081896776, y: 0.019543914, z: -0.023925805, w: 0.0044560432} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.70602983, y: -0.17665501, z: 0.0072120326, w: 0.6857572} + inSlope: {x: 0.0001260638, y: 0.0006189209, z: 0.0010164507, w: 0.000019669897} + outSlope: {x: 0.0001260638, y: 0.0006189209, z: 0.0010164507, w: 0.000019669897} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.3666668 + value: {x: 0.70423734, y: -0.17255774, z: 0.005231008, w: 0.6886554} + inSlope: {x: 0.0012373936, y: -0.0099539105, z: 0.00971437, w: -0.0038337745} + outSlope: {x: 0.0012373936, y: -0.0099539105, z: 0.00971437, w: -0.0038337745} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.1000001 + value: {x: 0.70568764, y: -0.17587939, z: 0.0067205457, w: 0.6863135} + inSlope: {x: 0.0016897933, y: 0.000110417706, z: -0.005650512, w: -0.0016522424} + outSlope: {x: 0.0016897933, y: 0.000110417706, z: -0.005650512, w: -0.0016522424} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.16987668, y: -0.028985409, z: 0.12205376, w: 0.97744805} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.1000001 + value: {x: 0.16987668, y: -0.028985409, z: 0.12205376, w: 0.97744805} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot/mixamorig:RightToeBase + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.04573715, y: -0.039433047, z: -0.0727525, w: 0.99552006} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.04573715, y: -0.039433047, z: -0.0727525, w: 0.99552006} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot/mixamorig:RightToeBase/mixamorig:RightToe_End + m_CompressedRotationCurves: [] + m_EulerCurves: [] + m_PositionCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.00021167571, y: 0.017156765, z: 0.00012220016} + inSlope: {x: -0.00003826841, y: -0.000009254045, z: -0.000057707435} + outSlope: {x: -0.00003826841, y: -0.000009254045, z: -0.000057707435} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.46666667 + value: {x: -0.0002241894, y: 0.01715972, z: 0.00009264933} + inSlope: {x: -0.0000044116214, y: 0.000019737652, z: -0.000043657245} + outSlope: {x: -0.0000044122867, y: 0.000019909652, z: -0.00004365996} + tangentMode: 0 + weightedMode: 0 + 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.00019850455, y: 0.017180106, z: 0.000110092704} + inSlope: {x: 0.000034093697, y: 0.000023504685, z: 0.00004379081} + outSlope: {x: 0.00003409166, y: 0.000023525035, z: 0.00004378931} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.9666667 + value: {x: -0.00018827278, y: 0.017181268, z: 0.0001289927} + inSlope: {x: 0.000004185166, y: -0.000010435893, z: 0.00001521049} + outSlope: {x: 0.0000041864578, y: -0.000010379732, z: 0.000015210134} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.3666666 + value: {x: -0.00018981892, y: 0.017172737, z: 0.00013039456} + inSlope: {x: -0.000017392224, y: -0.000020921247, z: 0.000004193882} + outSlope: {x: -0.000017387682, y: -0.00002055666, z: 0.0000041929206} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.9666667 + value: {x: -0.00020490774, y: 0.017159373, z: 0.00012671384} + inSlope: {x: -0.000036925187, y: -0.000014577604, z: -0.000024230518} + outSlope: {x: -0.000036923353, y: -0.000014598041, z: -0.000024229255} + tangentMode: 0 + weightedMode: 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.1 + value: {x: -0.000212194, y: 0.017157445, z: 0.00012118208} + inSlope: {x: -0.000095002, y: -0.000016394695, z: -0.00008026667} + outSlope: {x: -0.000095002, y: -0.000016394695, z: -0.00008026667} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips + m_ScaleCurves: [] + m_FloatCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 136 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_Weight + path: WalkRig + classID: 114 + script: {fileID: 11500000, guid: 70b342d8ce5c2fd48b8fa3147d48d1d1, type: 3} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 136 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_Weight + path: Idle Aim Rig + classID: 114 + script: {fileID: 11500000, guid: 70b342d8ce5c2fd48b8fa3147d48d1d1, type: 3} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 136 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_Weight + path: Idle Rig + classID: 114 + script: {fileID: 11500000, guid: 70b342d8ce5c2fd48b8fa3147d48d1d1, type: 3} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 136 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_Weight + path: Run Rig + classID: 114 + script: {fileID: 11500000, guid: 70b342d8ce5c2fd48b8fa3147d48d1d1, type: 3} + m_PPtrCurves: [] + m_SampleRate: 30 + 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: 4246725184 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2306959401 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1873754471 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 506438108 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 629695243 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3507322457 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 863042527 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 4130676776 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2755413591 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3610507355 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1546517516 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3305817214 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 951947925 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1738789858 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3939473511 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2888714343 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 132937013 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2908942433 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2476962736 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 4246725184 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 437649083 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2180861050 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 179915474 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1022168924 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3744267370 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 946238039 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2475629556 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1518235680 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 894090943 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3254654169 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1999565813 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 753291581 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3523356279 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2700601040 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3296194372 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2965308236 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 4081307055 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3771663227 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1504511970 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 947492321 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3922524256 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1718806592 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3714807079 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3971764881 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 4190678188 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 14784316 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 343860266 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1088794668 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1174220668 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1513986479 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3680013817 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 484251622 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3928024144 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2803917393 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1872214036 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 4180044095 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 892423909 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2091146011 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2260115849 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3655212101 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2120146506 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 8577085 + attribute: 1257374345 + script: {fileID: 11500000, guid: 70b342d8ce5c2fd48b8fa3147d48d1d1, type: 3} + typeID: 114 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 378343073 + attribute: 1257374345 + script: {fileID: 11500000, guid: 70b342d8ce5c2fd48b8fa3147d48d1d1, type: 3} + typeID: 114 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2853054640 + attribute: 1257374345 + script: {fileID: 11500000, guid: 70b342d8ce5c2fd48b8fa3147d48d1d1, type: 3} + typeID: 114 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 4230480715 + attribute: 1257374345 + script: {fileID: 11500000, guid: 70b342d8ce5c2fd48b8fa3147d48d1d1, type: 3} + typeID: 114 + customType: 0 + isPPtrCurve: 0 + pptrCurveMapping: [] + m_AnimationClipSettings: + serializedVersion: 2 + m_AdditiveReferencePoseClip: {fileID: 0} + m_AdditiveReferencePoseTime: 0 + m_StartTime: 0 + m_StopTime: 3.1000001 + 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: 0.033333335 + value: 0 + inSlope: 0 + 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: jammo_mixamo_rig + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_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.033333335 + value: -0 + inSlope: 0 + 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: jammo_mixamo_rig + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_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.033333335 + value: -0 + inSlope: 0 + 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: jammo_mixamo_rig + 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.033333335 + value: 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: jammo_mixamo_rig + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.1109397 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: -0.1109397 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.33955735 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.33955735 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.027864782 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.027864782 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9336042 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.9336042 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.06970765 + inSlope: -0.0016913562 + outSlope: -0.0016913562 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.054456785 + inSlope: 0.00000022351742 + outSlope: 0.00000022351742 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.06965866 + inSlope: 0.0023082665 + outSlope: 0.0023082665 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0011514246 + inSlope: 0.00027724192 + outSlope: 0.00027724192 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.0013992622 + inSlope: 0.0005365506 + outSlope: 0.0005365506 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.001117134 + inSlope: -0.000007107162 + outSlope: -0.000007107162 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0008710233 + inSlope: -0.002726982 + outSlope: -0.002726982 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: -0.0032011815 + inSlope: 0.0010774179 + outSlope: 0.0010774179 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.0007572809 + inSlope: 0.00054451515 + outSlope: 0.00054451515 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.99756646 + inSlope: 0.00011980533 + outSlope: 0.00011980533 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.99851006 + inSlope: 0.0000026822117 + outSlope: 0.0000026822117 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.99757 + inSlope: -0.0001609327 + outSlope: -0.0001609327 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.14274931 + inSlope: 0.018537192 + outSlope: 0.018537192 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.13405037 + inSlope: -0.0034904513 + outSlope: -0.0034904513 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.1420986 + inSlope: 0.014550998 + outSlope: 0.014550998 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.00012897942 + inSlope: -0.00012285644 + outSlope: -0.00012285644 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: -0.000059980626 + inSlope: 0.0000052212868 + outSlope: 0.0000052212868 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.00015810908 + inSlope: -0.00013502823 + outSlope: -0.00013502823 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0066036554 + inSlope: 0.0000025983898 + outSlope: 0.0000025983898 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.005051672 + inSlope: 0.00016457184 + outSlope: 0.00016457184 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.006635331 + inSlope: -0.000059763028 + outSlope: -0.000059763028 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.98973686 + inSlope: -0.0026786325 + outSlope: -0.0026786325 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.9909617 + inSlope: 0.00047117518 + outSlope: 0.00047117518 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.98983026 + inSlope: -0.0020849726 + outSlope: -0.0020849726 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.1303248 + inSlope: -0.0025860963 + outSlope: -0.0025860963 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.1261565 + inSlope: -0.0061022546 + outSlope: -0.0061022546 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.12986605 + inSlope: 0.009246477 + outSlope: 0.009246477 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.00066224195 + inSlope: 0.00001483946 + outSlope: 0.00001483946 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.00015661406 + inSlope: 0.000039627666 + outSlope: 0.000039627666 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.0006957178 + inSlope: -0.00010478088 + outSlope: -0.00010478088 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0064866426 + inSlope: -0.0000023609025 + outSlope: -0.0000023609025 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.0049949307 + inSlope: 0.0001228858 + outSlope: 0.0001228858 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.006512906 + inSlope: -0.000047497495 + outSlope: -0.000047497495 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.99144995 + inSlope: 0.00033974645 + outSlope: 0.00033974645 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.9919978 + inSlope: 0.0007760532 + outSlope: 0.0007760532 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.9915099 + inSlope: -0.0012087834 + outSlope: -0.0012087834 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.029168177 + inSlope: 0.0016202776 + outSlope: 0.0016202776 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.033908598 + inSlope: -0.004068803 + outSlope: -0.004068803 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.02913657 + inSlope: 0.000028554377 + outSlope: 0.000028554377 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.06521485 + inSlope: 0.0022825596 + outSlope: 0.0022825596 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: -0.06517805 + inSlope: -0.0000020116586 + outSlope: -0.0000020116586 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: -0.0651847 + inSlope: 0.00000022351763 + outSlope: 0.00000022351763 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0074768234 + inSlope: 0.00025992282 + outSlope: 0.00025992282 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: -0.007756423 + inSlope: 0.00028508977 + outSlope: 0.00028508977 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: -0.0074392254 + inSlope: -0.0000013690454 + outSlope: -0.0000013690454 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.99741685 + inSlope: 0.000103712075 + outSlope: 0.000103712075 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.99726725 + inSlope: 0.00014126315 + outSlope: 0.00014126315 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.99742 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.014938722 + inSlope: 0.0099398745 + outSlope: 0.0099398745 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.025457753 + inSlope: -0.013920873 + outSlope: -0.013920873 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.01471642 + inSlope: 0.005328381 + outSlope: 0.005328381 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.19895828 + inSlope: 0.0070850546 + outSlope: 0.0070850546 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: -0.19822769 + inSlope: -0.0010507563 + outSlope: -0.0010507563 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: -0.19891952 + inSlope: -0.00040814318 + outSlope: -0.00040814318 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.074035674 + inSlope: -0.0013831257 + outSlope: -0.0013831257 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: -0.07521989 + inSlope: 0.0022527224 + outSlope: 0.0022527224 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: -0.073956154 + inSlope: -0.00050000893 + outSlope: -0.00050000893 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9770932 + inSlope: 0.0011837481 + outSlope: 0.0011837481 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.97693384 + inSlope: 0.0003236535 + outSlope: 0.0003236535 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.9771105 + inSlope: -0.00020205993 + outSlope: -0.00020205993 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.06928724 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.06928724 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head/mixamorig:HeadTop_End + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_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.033333335 + value: 0 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head/mixamorig:HeadTop_End + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_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.033333335 + value: -0 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head/mixamorig:HeadTop_End + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.99759674 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.99759674 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head/mixamorig:HeadTop_End + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.40506425 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.40506425 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head/mixamorig:LeftEar + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.45798013 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.45798013 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head/mixamorig:LeftEar + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.59357256 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.59357256 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head/mixamorig:LeftEar + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.5233056 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.5233056 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head/mixamorig:LeftEar + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.40506425 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.40506425 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head/mixamorig:RightEar + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.45798013 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.45798013 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head/mixamorig:RightEar + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.59357256 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.59357256 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head/mixamorig:RightEar + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.5233056 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.5233056 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head/mixamorig:RightEar + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.25386205 + inSlope: 0.0022324917 + outSlope: 0.0022324917 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: 0.25038055 + inSlope: -0.0060953256 + outSlope: -0.0060953256 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0666668 + value: 0.25367635 + inSlope: 0.0008980938 + outSlope: 0.0008980938 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.2536449 + inSlope: -0.0009432444 + outSlope: -0.0009432444 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.3295389 + inSlope: 0.0024086235 + outSlope: 0.0024086235 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: -0.33366704 + inSlope: -0.008040823 + outSlope: -0.008040823 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0666668 + value: -0.3297901 + inSlope: 0.00022619986 + outSlope: 0.00022619986 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: -0.32985577 + inSlope: -0.0019705314 + outSlope: -0.0019705314 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.5977311 + inSlope: -0.015910864 + outSlope: -0.015910864 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: 0.5983917 + inSlope: -0.0011846435 + outSlope: -0.0011846435 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0666668 + value: 0.5972436 + inSlope: -0.0020706675 + outSlope: -0.0020706675 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.59713113 + inSlope: -0.0033742222 + outSlope: -0.0033742222 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.6853289 + inSlope: 0.014196037 + outSlope: 0.014196037 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: 0.6840345 + inSlope: -0.00065445964 + outSlope: -0.00065445964 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0666668 + value: 0.6857018 + inSlope: 0.0015789286 + outSlope: 0.0015789286 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.6857797 + inSlope: 0.0023371004 + outSlope: 0.0023371004 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.5294893 + inSlope: -0.010201334 + outSlope: -0.010201334 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.53309035 + inSlope: 0.0167048 + outSlope: 0.0167048 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3000002 + value: 0.5396714 + inSlope: -0.011702489 + outSlope: -0.011702489 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.5298054 + inSlope: -0.008364924 + outSlope: -0.008364924 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.2789996 + inSlope: 0.009311735 + outSlope: 0.009311735 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.27074292 + inSlope: -0.03048331 + outSlope: -0.03048331 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3000002 + value: 0.259686 + inSlope: 0.023255222 + outSlope: 0.023255222 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.2781824 + inSlope: 0.0155604035 + outSlope: 0.0155604035 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.18537441 + inSlope: 0.024292318 + outSlope: 0.024292318 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.1800459 + inSlope: 0.0036511545 + outSlope: 0.0036511545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3000002 + value: -0.18017364 + inSlope: -0.0087918425 + outSlope: -0.0087918425 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: -0.18450862 + inSlope: -0.0035718118 + outSlope: -0.0035718118 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.7793822 + inSlope: 0.009357332 + outSlope: 0.009357332 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.7810867 + inSlope: 0.000006257498 + outSlope: 0.000006257498 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3000002 + value: 0.7802919 + inSlope: -0.0016754882 + outSlope: -0.0016754882 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.7796649 + inSlope: -0.00070631574 + outSlope: -0.00070631574 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.043446988 + inSlope: 0.0013735144 + outSlope: 0.0013735144 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.04286924 + inSlope: 0.00088445924 + outSlope: 0.00088445924 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.043462165 + inSlope: 0.00028878477 + outSlope: 0.00028878477 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.009385619 + inSlope: -0.00012614764 + outSlope: -0.00012614764 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.009435365 + inSlope: -0.00007378876 + outSlope: -0.00007378876 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.009383952 + inSlope: -0.000032549757 + outSlope: -0.000032549757 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.53544563 + inSlope: -0.01694262 + outSlope: -0.01694262 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: -0.528325 + inSlope: -0.010871003 + outSlope: -0.010871003 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: -0.5356335 + inSlope: -0.0035941636 + outSlope: -0.0035941636 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.8433993 + inSlope: -0.0108361235 + outSlope: -0.0108361235 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.8479068 + inSlope: -0.0068163937 + outSlope: -0.0068163937 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.8432792 + inSlope: -0.002295973 + outSlope: -0.002295973 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.11670799 + inSlope: -0.0076038386 + outSlope: -0.0076038386 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: -0.110236 + inSlope: -0.0017569603 + outSlope: -0.0017569603 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: -0.116707385 + inSlope: -0.0021104536 + outSlope: -0.0021104536 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.80764085 + inSlope: 0.009169578 + outSlope: 0.009169578 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 0.81425005 + inSlope: -0.0011926901 + outSlope: -0.0011926901 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.8079495 + inSlope: 0.0057238396 + outSlope: 0.0057238396 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.25276273 + inSlope: -0.0017917155 + outSlope: -0.0017917155 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 0.24373747 + inSlope: 0.0013556344 + outSlope: 0.0013556344 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.25253385 + inSlope: -0.0032553107 + outSlope: -0.0032553107 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.51981395 + inSlope: -0.01509726 + outSlope: -0.01509726 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 0.51520574 + inSlope: 0.00086814247 + outSlope: 0.00086814247 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.51944566 + inSlope: -0.0077873543 + outSlope: -0.0077873543 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.18479048 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.18479048 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.18677497 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: -0.18677497 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.23856452 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: -0.23856452 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.93490887 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.93490887 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.055343386 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.055343386 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.29720563 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: -0.29720563 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.072479546 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.072479546 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.95044863 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.95044863 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.07265419 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: -0.07265419 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2/mixamorig:LeftHandThumb3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.056427963 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: -0.056427963 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2/mixamorig:LeftHandThumb3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.058118194 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: -0.058118194 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2/mixamorig:LeftHandThumb3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9940621 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.9940621 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2/mixamorig:LeftHandThumb3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.020066822 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.020066822 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2/mixamorig:LeftHandThumb3/mixamorig:LeftHandThumb4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.04093228 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.04093228 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2/mixamorig:LeftHandThumb3/mixamorig:LeftHandThumb4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.014504543 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.014504543 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2/mixamorig:LeftHandThumb3/mixamorig:LeftHandThumb4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9988551 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.9988551 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2/mixamorig:LeftHandThumb3/mixamorig:LeftHandThumb4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.310812 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.310812 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.024990099 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.024990099 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.008165358 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.008165358 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.95010775 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.95010775 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.49735194 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.49735194 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0045217583 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: -0.0045217583 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0687694 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.0687694 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.8648071 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.8648071 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.20831828 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.20831828 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2/mixamorig:LeftHandIndex3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.00000015497835 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.00000015497835 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2/mixamorig:LeftHandIndex3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.027695121 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.027695121 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2/mixamorig:LeftHandIndex3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.97766894 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.97766894 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2/mixamorig:LeftHandIndex3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.04448854 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.04448854 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2/mixamorig:LeftHandIndex3/mixamorig:LeftHandIndex4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.000000085353406 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.000000085353406 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2/mixamorig:LeftHandIndex3/mixamorig:LeftHandIndex4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.000000067373364 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.000000067373364 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2/mixamorig:LeftHandIndex3/mixamorig:LeftHandIndex4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9990099 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.9990099 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2/mixamorig:LeftHandIndex3/mixamorig:LeftHandIndex4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.43684655 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.43684655 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.032657355 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.032657355 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.028203445 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.028203445 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.8985005 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.8985005 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.5329266 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.5329266 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.011323636 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: -0.011323636 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.07741013 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.07741013 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.84253705 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.84253705 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.15434292 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.15434292 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2/mixamorig:LeftHandMiddle3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0029593022 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.0029593022 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2/mixamorig:LeftHandMiddle3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.021273669 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.021273669 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2/mixamorig:LeftHandMiddle3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.98778385 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.98778385 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2/mixamorig:LeftHandMiddle3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.010558603 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.010558603 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2/mixamorig:LeftHandMiddle3/mixamorig:LeftHandMiddle4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.002861331 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.002861331 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2/mixamorig:LeftHandMiddle3/mixamorig:LeftHandMiddle4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0028610048 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.0028610048 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2/mixamorig:LeftHandMiddle3/mixamorig:LeftHandMiddle4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9999361 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.9999361 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2/mixamorig:LeftHandMiddle3/mixamorig:LeftHandMiddle4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.58956057 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.58956057 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.06578112 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.06578112 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0195391 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: -0.0195391 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.80480397 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.80480397 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.5269479 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.5269479 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.00012118645 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.00012118645 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.07005823 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.07005823 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.8470051 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.8470051 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.12174856 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.12174856 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2/mixamorig:LeftHandPinky3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.000000012294486 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.000000012294486 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2/mixamorig:LeftHandPinky3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.016168807 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.016168807 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2/mixamorig:LeftHandPinky3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.99242926 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.99242926 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2/mixamorig:LeftHandPinky3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.04451911 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.04451911 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2/mixamorig:LeftHandPinky3/mixamorig:LeftHandPinky4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.000000025807028 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.000000025807028 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2/mixamorig:LeftHandPinky3/mixamorig:LeftHandPinky4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.000000045059494 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.000000045059494 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2/mixamorig:LeftHandPinky3/mixamorig:LeftHandPinky4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.99900854 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.99900854 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2/mixamorig:LeftHandPinky3/mixamorig:LeftHandPinky4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.15439154 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.15439154 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.39938882 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.39938882 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.6456069 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: -0.6456069 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.63233197 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.63233197 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.5753828 + inSlope: -0.00004470348 + outSlope: -0.00004470348 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: 0.5750119 + inSlope: -0.0005632645 + outSlope: -0.0005632645 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9333334 + value: 0.57531166 + inSlope: 0.00037908458 + outSlope: 0.00037908458 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.57536507 + inSlope: 0.00023603461 + outSlope: 0.00023603461 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.09824325 + inSlope: -0.0067122276 + outSlope: -0.0067122276 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: 0.115468204 + inSlope: 0.019097906 + outSlope: 0.019097906 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9333334 + value: 0.102177374 + inSlope: -0.02062893 + outSlope: -0.02062893 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.09913465 + inSlope: -0.014072223 + outSlope: -0.014072223 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.5263193 + inSlope: -0.010641216 + outSlope: -0.010641216 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: 0.5216811 + inSlope: -0.0062334593 + outSlope: -0.0062334593 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9333334 + value: 0.52501947 + inSlope: 0.0049120043 + outSlope: 0.0049120043 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.52580667 + inSlope: 0.0038749017 + outSlope: 0.0038749017 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.61828053 + inSlope: 0.010160207 + outSlope: 0.010160207 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: 0.6195784 + inSlope: 0.0022128245 + outSlope: 0.0022128245 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9333334 + value: 0.6188141 + inSlope: -0.0011131123 + outSlope: -0.0011131123 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.6185909 + inSlope: -0.0012570631 + outSlope: -0.0012570631 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.06124353 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.06124353 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0072677676 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: -0.0072677676 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.75477195 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.75477195 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.6530817 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.6530817 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.1553821 + inSlope: 0.01154825 + outSlope: 0.01154825 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: -0.1579811 + inSlope: -0.005537873 + outSlope: -0.005537873 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: -0.15563646 + inSlope: 0.0103081865 + outSlope: 0.0103081865 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.35191253 + inSlope: 0.01789212 + outSlope: 0.01789212 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: -0.35734063 + inSlope: -0.0055655893 + outSlope: -0.0055655893 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: -0.35204965 + inSlope: 0.009566555 + outSlope: 0.009566555 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.2587535 + inSlope: -0.02183318 + outSlope: -0.02183318 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: -0.26377752 + inSlope: 0.0077506974 + outSlope: 0.0077506974 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: -0.25902867 + inSlope: -0.006135112 + outSlope: -0.006135112 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.88603646 + inSlope: 0.002737641 + outSlope: 0.002737641 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.88191336 + inSlope: -0.00092804525 + outSlope: -0.00092804525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.8858569 + inSlope: 0.0038230456 + outSlope: 0.0038230456 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.30036038 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.30036038 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.18302149 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.18302149 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.28023317 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.28023317 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.893172 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.893172 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.034203514 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.034203514 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.3123212 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.3123212 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.26409093 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: -0.26409093 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.911889 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.911889 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.08895704 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.08895704 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2/mixamorig:RightHandThumb3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.05616397 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.05616397 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2/mixamorig:RightHandThumb3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.48215663 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: -0.48215663 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2/mixamorig:RightHandThumb3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.86974555 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.86974555 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2/mixamorig:RightHandThumb3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.020066835 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.020066835 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2/mixamorig:RightHandThumb3/mixamorig:RightHandThumb4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.040932328 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.040932328 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2/mixamorig:RightHandThumb3/mixamorig:RightHandThumb4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.014504511 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.014504511 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2/mixamorig:RightHandThumb3/mixamorig:RightHandThumb4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9988551 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.9988551 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2/mixamorig:RightHandThumb3/mixamorig:RightHandThumb4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.10447185 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.10447185 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.025879035 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: -0.025879035 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.044140052 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.044140052 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.99321073 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.99321073 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.2819615 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.2819615 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.005013438 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.005013438 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.033015866 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.033015866 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.95884436 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.95884436 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.25595605 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.25595605 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2/mixamorig:RightHandIndex3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.000000055305552 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.000000055305552 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2/mixamorig:RightHandIndex3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.028614955 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.028614955 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2/mixamorig:RightHandIndex3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9662648 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.9662648 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2/mixamorig:RightHandIndex3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.044488586 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.044488586 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2/mixamorig:RightHandIndex3/mixamorig:RightHandIndex4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.000000017384444 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.000000017384444 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2/mixamorig:RightHandIndex3/mixamorig:RightHandIndex4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.000000028251991 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.000000028251991 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2/mixamorig:RightHandIndex3/mixamorig:RightHandIndex4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9990099 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.9990099 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2/mixamorig:RightHandIndex3/mixamorig:RightHandIndex4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.42732498 + inSlope: 0.0018408893 + outSlope: 0.0018408893 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.4246766 + inSlope: 0.0023536407 + outSlope: 0.0023536407 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.42724958 + inSlope: -0.004146699 + outSlope: -0.004146699 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.01563769 + inSlope: 0.00007499009 + outSlope: 0.00007499009 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: -0.015557919 + inSlope: -0.00038595905 + outSlope: -0.00038595905 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: -0.015618921 + inSlope: -0.00014634817 + outSlope: -0.00014634817 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.05261845 + inSlope: -0.0001940131 + outSlope: -0.0001940131 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: -0.05275096 + inSlope: 0.0007847145 + outSlope: 0.0007847145 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: -0.052656755 + inSlope: 0.00036545133 + outSlope: 0.00036545133 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9024302 + inSlope: -0.0008833408 + outSlope: -0.0008833408 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.9036731 + inSlope: -0.0010666262 + outSlope: -0.0010666262 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.902464 + inSlope: 0.0019848365 + outSlope: 0.0019848365 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.8156952 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.8156952 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0074485345 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.0074485345 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.10149895 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: -0.10149895 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.5694593 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.5694593 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.16268903 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.16268903 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2/mixamorig:RightHandMiddle3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0029592607 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.0029592607 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2/mixamorig:RightHandMiddle3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.018956764 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.018956764 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2/mixamorig:RightHandMiddle3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.98649085 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.98649085 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2/mixamorig:RightHandMiddle3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.010558588 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.010558588 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2/mixamorig:RightHandMiddle3/mixamorig:RightHandMiddle4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0028612548 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.0028612548 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2/mixamorig:RightHandMiddle3/mixamorig:RightHandMiddle4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0028610802 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.0028610802 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2/mixamorig:RightHandMiddle3/mixamorig:RightHandMiddle4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9999361 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.9999361 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2/mixamorig:RightHandMiddle3/mixamorig:RightHandMiddle4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.5320116 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.5320116 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.04360786 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: -0.04360786 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.013805689 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.013805689 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.84550065 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.84550065 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.6561534 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.6561534 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.00010745697 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.00010745697 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.073358454 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: -0.073358454 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.75105345 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.75105345 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.49594852 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.49594852 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2/mixamorig:RightHandPinky3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0000000296123 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: -0.0000000296123 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2/mixamorig:RightHandPinky3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.05537579 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: -0.05537579 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2/mixamorig:RightHandPinky3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.8665844 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.8665844 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2/mixamorig:RightHandPinky3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.044519115 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.044519115 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2/mixamorig:RightHandPinky3/mixamorig:RightHandPinky4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.000000086405365 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.000000086405365 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2/mixamorig:RightHandPinky3/mixamorig:RightHandPinky4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.000000096039955 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.000000096039955 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2/mixamorig:RightHandPinky3/mixamorig:RightHandPinky4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.99900854 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.99900854 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2/mixamorig:RightHandPinky3/mixamorig:RightHandPinky4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.39591357 + inSlope: -0.0019696355 + outSlope: -0.0019696355 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: -0.39727175 + inSlope: -0.0015038267 + outSlope: -0.0015038267 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: -0.3960485 + inSlope: 0.0048118876 + outSlope: 0.0048118876 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.03625236 + inSlope: 0.00015310942 + outSlope: 0.00015310942 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.03131315 + inSlope: 0.0044856914 + outSlope: 0.0044856914 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.036134347 + inSlope: 0.0000887365 + outSlope: 0.0000887365 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9062164 + inSlope: -0.0025731323 + outSlope: -0.0025731323 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.9061621 + inSlope: -0.00164956 + outSlope: -0.00164956 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.90607846 + inSlope: 0.0028055932 + outSlope: 0.0028055932 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.1439099 + inSlope: 0.010734647 + outSlope: 0.010734647 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.14165062 + inSlope: 0.0053472123 + outSlope: 0.0053472123 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.14443588 + inSlope: -0.004422073 + outSlope: -0.004422073 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.24263364 + inSlope: -0.004739463 + outSlope: -0.004739463 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.23480897 + inSlope: 0.010115067 + outSlope: 0.010115067 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3000002 + value: -0.23887818 + inSlope: -0.008556032 + outSlope: -0.008556032 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: -0.24270499 + inSlope: -0.00076040695 + outSlope: -0.00076040695 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0006987117 + inSlope: 0.010539722 + outSlope: 0.010539722 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.0006240127 + inSlope: -0.0058305347 + outSlope: -0.0058305347 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3000002 + value: -0.0077657155 + inSlope: 0.0031280385 + outSlope: 0.0031280385 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: -0.0008409805 + inSlope: 0.009900418 + outSlope: 0.009900418 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.03741047 + inSlope: 0.021265445 + outSlope: 0.021265445 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.03689338 + inSlope: 0.0028158193 + outSlope: 0.0028158193 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3000002 + value: -0.031560186 + inSlope: -0.0038118695 + outSlope: -0.0038118695 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: -0.0364058 + inSlope: -0.007360212 + outSlope: -0.007360212 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9693961 + inSlope: -0.00036656854 + outSlope: -0.00036656854 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.97134095 + inSlope: 0.0025570416 + outSlope: 0.0025570416 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3000002 + value: 0.9705055 + inSlope: -0.002204778 + outSlope: -0.002204778 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.96941644 + inSlope: -0.00045597597 + outSlope: -0.00045597597 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.58623624 + inSlope: 0.0010335445 + outSlope: 0.0010335445 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.58123356 + inSlope: 0.005229418 + outSlope: 0.005229418 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: 0.58613974 + inSlope: 0.0011488807 + outSlope: 0.0011488807 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.586317 + inSlope: -0.00039517917 + outSlope: -0.00039517917 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.03954314 + inSlope: -0.019239819 + outSlope: -0.019239819 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.040828396 + inSlope: 0.003144502 + outSlope: 0.003144502 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: 0.039215162 + inSlope: -0.0048643583 + outSlope: -0.0048643583 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.039253477 + inSlope: -0.0024084025 + outSlope: -0.0024084025 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.03333692 + inSlope: -0.0050318236 + outSlope: -0.0050318236 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.030814638 + inSlope: 0.00071891653 + outSlope: 0.00071891653 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: 0.033291347 + inSlope: 0.006149473 + outSlope: 0.006149473 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.03293143 + inSlope: 0.004914594 + outSlope: 0.004914594 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.80848753 + inSlope: 0.00038981435 + outSlope: 0.00038981435 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.8121275 + inSlope: -0.003927652 + outSlope: -0.003927652 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: 0.80857533 + inSlope: -0.00084847293 + outSlope: -0.00084847293 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.8084597 + inSlope: 0.00020384807 + outSlope: 0.00020384807 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.16970257 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.16970257 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot/mixamorig:LeftToeBase + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.02895894 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.02895894 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot/mixamorig:LeftToeBase + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.12205014 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: -0.12205014 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot/mixamorig:LeftToeBase + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9774795 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.9774795 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot/mixamorig:LeftToeBase + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.04573715 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.04573715 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot/mixamorig:LeftToeBase/mixamorig:LeftToe_End + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.039433047 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.039433047 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot/mixamorig:LeftToeBase/mixamorig:LeftToe_End + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0727525 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.0727525 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot/mixamorig:LeftToeBase/mixamorig:LeftToe_End + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.99552006 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.99552006 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot/mixamorig:LeftToeBase/mixamorig:LeftToe_End + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.04543358 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: -0.04543358 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.10447777 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: -0.10447777 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.99251777 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.99251777 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.043916892 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: -0.043916892 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.2600855 + inSlope: -0.0051721926 + outSlope: -0.0051721926 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: -0.2603923 + inSlope: 0.009317093 + outSlope: 0.009317093 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: -0.25434303 + inSlope: -0.0042352118 + outSlope: -0.0042352118 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: -0.25964773 + inSlope: -0.008222766 + outSlope: -0.008222766 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0044195666 + inSlope: -0.023729753 + outSlope: -0.023729753 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: -0.008807165 + inSlope: -0.019663053 + outSlope: -0.019663053 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: -0.01051621 + inSlope: 0.011510767 + outSlope: 0.011510767 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: -0.005790023 + inSlope: -0.012275253 + outSlope: -0.012275253 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.03651018 + inSlope: 0.014355629 + outSlope: 0.014355629 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: 0.037335146 + inSlope: 0.005457226 + outSlope: 0.005457226 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: 0.036917623 + inSlope: -0.0018434059 + outSlope: -0.0018434059 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.036959756 + inSlope: 0.0035400724 + outSlope: 0.0035400724 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.964885 + inSlope: -0.0020599365 + outSlope: -0.0020599365 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: 0.9647406 + inSlope: 0.0021278844 + outSlope: 0.0021278844 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: 0.966352 + inSlope: -0.00092178676 + outSlope: -0.00092178676 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.9649785 + inSlope: -0.0024175667 + outSlope: -0.0024175667 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.7057629 + inSlope: 0.00081896776 + outSlope: 0.00081896776 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.70602983 + inSlope: 0.0001260638 + outSlope: 0.0001260638 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3666668 + value: 0.70423734 + inSlope: 0.0012373936 + outSlope: 0.0012373936 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.70568764 + inSlope: 0.0016897933 + outSlope: 0.0016897933 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.17706896 + inSlope: 0.019543914 + outSlope: 0.019543914 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.17665501 + inSlope: 0.0006189209 + outSlope: 0.0006189209 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3666668 + value: -0.17255774 + inSlope: -0.0099539105 + outSlope: -0.0099539105 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: -0.17587939 + inSlope: 0.000110417706 + outSlope: 0.000110417706 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.007835218 + inSlope: -0.023925805 + outSlope: -0.023925805 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.0072120326 + inSlope: 0.0010164507 + outSlope: 0.0010164507 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3666668 + value: 0.005231008 + inSlope: 0.00971437 + outSlope: 0.00971437 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.0067205457 + inSlope: -0.005650512 + outSlope: -0.005650512 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.6859183 + inSlope: 0.0044560432 + outSlope: 0.0044560432 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.6857572 + inSlope: 0.000019669897 + outSlope: 0.000019669897 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3666668 + value: 0.6886554 + inSlope: -0.0038337745 + outSlope: -0.0038337745 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.6863135 + inSlope: -0.0016522424 + outSlope: -0.0016522424 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.16987668 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.16987668 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot/mixamorig:RightToeBase + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.028985409 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: -0.028985409 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot/mixamorig:RightToeBase + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.12205376 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.12205376 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot/mixamorig:RightToeBase + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.97744805 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.97744805 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot/mixamorig:RightToeBase + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.04573715 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.04573715 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot/mixamorig:RightToeBase/mixamorig:RightToe_End + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.039433047 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.039433047 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot/mixamorig:RightToeBase/mixamorig:RightToe_End + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0727525 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.0727525 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot/mixamorig:RightToeBase/mixamorig:RightToe_End + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.99552006 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.99552006 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot/mixamorig:RightToeBase/mixamorig:RightToe_End + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.00021167571 + inSlope: -0.00003826841 + outSlope: -0.00003826841 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -0.0002241894 + inSlope: -0.0000044116214 + outSlope: -0.0000044122867 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333333 + value: -0.00019850455 + inSlope: 0.000034093697 + outSlope: 0.00003409166 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666667 + value: -0.00018827278 + inSlope: 0.000004185166 + outSlope: 0.0000041864578 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3666666 + value: -0.00018981892 + inSlope: -0.000017392224 + outSlope: -0.000017387682 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9666667 + value: -0.00020490774 + inSlope: -0.000036925187 + outSlope: -0.000036923353 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1 + value: -0.000212194 + inSlope: -0.000095002 + outSlope: -0.000095002 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: jammo_mixamo_rig/mixamorig:Hips + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.017156765 + inSlope: -0.000009254045 + outSlope: -0.000009254045 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.01715972 + inSlope: 0.000019737652 + outSlope: 0.000019909652 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333333 + value: 0.017180106 + inSlope: 0.000023504685 + outSlope: 0.000023525035 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666667 + value: 0.017181268 + inSlope: -0.000010435893 + outSlope: -0.000010379732 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3666666 + value: 0.017172737 + inSlope: -0.000020921247 + outSlope: -0.00002055666 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9666667 + value: 0.017159373 + inSlope: -0.000014577604 + outSlope: -0.000014598041 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1 + value: 0.017157445 + inSlope: -0.000016394695 + outSlope: -0.000016394695 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: jammo_mixamo_rig/mixamorig:Hips + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.00012220016 + inSlope: -0.000057707435 + outSlope: -0.000057707435 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.00009264933 + inSlope: -0.000043657245 + outSlope: -0.00004365996 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333333 + value: 0.000110092704 + inSlope: 0.00004379081 + outSlope: 0.00004378931 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666667 + value: 0.0001289927 + inSlope: 0.00001521049 + outSlope: 0.000015210134 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3666666 + value: 0.00013039456 + inSlope: 0.000004193882 + outSlope: 0.0000041929206 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9666667 + value: 0.00012671384 + inSlope: -0.000024230518 + outSlope: -0.000024229255 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1 + value: 0.00012118208 + inSlope: -0.00008026667 + outSlope: -0.00008026667 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: jammo_mixamo_rig/mixamorig:Hips + 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 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_Weight + path: WalkRig + classID: 114 + script: {fileID: 11500000, guid: 70b342d8ce5c2fd48b8fa3147d48d1d1, type: 3} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 136 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_Weight + path: Idle Aim Rig + classID: 114 + script: {fileID: 11500000, guid: 70b342d8ce5c2fd48b8fa3147d48d1d1, type: 3} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 136 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_Weight + path: Idle Rig + classID: 114 + script: {fileID: 11500000, guid: 70b342d8ce5c2fd48b8fa3147d48d1d1, type: 3} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 136 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_Weight + path: Run Rig + classID: 114 + script: {fileID: 11500000, guid: 70b342d8ce5c2fd48b8fa3147d48d1d1, type: 3} + m_EulerEditorCurves: + - curve: + serializedVersion: 2 + m_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.033333335 + value: -0 + 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: jammo_mixamo_rig + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_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.033333335 + value: -0 + 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: jammo_mixamo_rig + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_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.033333335 + value: -0 + 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: jammo_mixamo_rig + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -13.065859 + inSlope: 0.0000018458212 + outSlope: 0.0000018458212 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: -13.065859 + inSlope: 0.0000018458212 + outSlope: 0.0000018458212 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 40.13029 + inSlope: 0.0000036916424 + outSlope: 0.0000036916424 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 40.13029 + inSlope: 0.0000036916424 + outSlope: 0.0000036916424 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -1.3712748 + inSlope: -0.000001961185 + outSlope: -0.000001961185 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: -1.3712748 + inSlope: -0.000001961185 + outSlope: -0.000001961185 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 7.9942665 + inSlope: -0.19392128 + outSlope: -0.19392128 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 6.243854 + inSlope: 0.000021895583 + outSlope: 0.000024383718 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 7.988658 + inSlope: 0.2650861 + outSlope: 0.2650861 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.13994017 + inSlope: 0.010058119 + outSlope: 0.010058119 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.14096478 + inSlope: 0.06851692 + outSlope: 0.06850014 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.13505866 + inSlope: 0.0038950245 + outSlope: 0.0038950245 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.10983392 + inSlope: -0.31277612 + outSlope: -0.31277612 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: -0.359686 + inSlope: 0.12739041 + outSlope: 0.12738463 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.096420154 + inSlope: 0.06317166 + outSlope: 0.06317166 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 16.41346 + inSlope: 2.1462436 + outSlope: 2.1462436 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 15.407251 + inSlope: -0.40362492 + outSlope: -0.403611 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 16.338102 + inSlope: 1.6845014 + outSlope: 1.6845014 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.1278607 + inSlope: 0.0015560644 + outSlope: 0.0015560644 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.07342662 + inSlope: 0.00095045986 + outSlope: 0.00096483325 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.13128021 + inSlope: -0.004387667 + outSlope: -0.004387667 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.7829991 + inSlope: 0.005083169 + outSlope: 0.005083169 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.5940861 + inSlope: 0.018608727 + outSlope: 0.018600997 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.78699887 + inSlope: -0.0039874692 + outSlope: -0.0039874692 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 14.975883 + inSlope: -0.29891324 + outSlope: -0.29891324 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 14.494813 + inSlope: -0.7049204 + outSlope: -0.70493716 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 14.922833 + inSlope: 1.0686448 + outSlope: 1.0686448 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.17816243 + inSlope: -0.00050595216 + outSlope: -0.00050595216 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.092971385 + inSlope: 0.0025511638 + outSlope: 0.0025601685 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.18211092 + inSlope: -0.005113052 + outSlope: -0.005113052 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.7731313 + inSlope: -0.00106314 + outSlope: -0.00106314 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.5888124 + inSlope: 0.013469177 + outSlope: 0.013470419 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.7765544 + inSlope: -0.0035352733 + outSlope: -0.0035352733 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 3.2797086 + inSlope: 0.18971077 + outSlope: 0.18971077 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 3.8199184 + inSlope: -0.46333635 + outSlope: -0.463335 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 3.276408 + inSlope: 0.0032562017 + outSlope: 0.0032562017 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -7.512534 + inSlope: 0.26088148 + outSlope: 0.26088148 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: -7.516778 + inSlope: 0.00741472 + outSlope: 0.007445812 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: -7.508897 + inSlope: 0.0000019506974 + outSlope: 0.0000019506974 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -1.074366 + inSlope: 0.025213858 + outSlope: 0.025213858 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: -1.1422632 + inSlope: 0.06360185 + outSlope: 0.06358834 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: -1.0697225 + inSlope: -0.0003640489 + outSlope: -0.0003640489 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.015296315 + inSlope: 1.1448611 + outSlope: 1.1448611 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 1.1413931 + inSlope: -1.5156741 + outSlope: -1.5156868 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: -0.03801609 + inSlope: 0.58135223 + outSlope: 0.58135223 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -23.01758 + inSlope: 0.7363677 + outSlope: 0.7363677 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: -23.030317 + inSlope: 0.010450323 + outSlope: 0.010857582 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: -23.011105 + inSlope: -0.09495215 + outSlope: -0.09495215 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -8.663084 + inSlope: -0.37976047 + outSlope: -0.37976047 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: -9.038247 + inSlope: 0.57438767 + outSlope: 0.5743965 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: -8.649034 + inSlope: -0.17865072 + outSlope: -0.17865072 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -7.9460993 + inSlope: -0.00060081476 + outSlope: -0.00060081476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -7.9460993 + inSlope: -0.00060081476 + outSlope: -0.00060081476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head/mixamorig:HeadTop_End + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_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.033333335 + value: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head/mixamorig:HeadTop_End + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_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.033333335 + value: -0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head/mixamorig:HeadTop_End + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 75.38284 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 75.38284 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head/mixamorig:LeftEar + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.3503092 + inSlope: 0.00018775462 + outSlope: 0.00018775462 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.3503092 + inSlope: 0.00018775462 + outSlope: 0.00018775462 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head/mixamorig:LeftEar + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 97.47056 + inSlope: -0.00068664545 + outSlope: -0.00068664545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 97.47056 + inSlope: -0.00068664545 + outSlope: -0.00068664545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head/mixamorig:LeftEar + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 75.38284 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 75.38284 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head/mixamorig:RightEar + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.3503092 + inSlope: -0.00018775462 + outSlope: -0.00018775462 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.3503092 + inSlope: -0.00018775462 + outSlope: -0.00018775462 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head/mixamorig:RightEar + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -97.47056 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -97.47056 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head/mixamorig:RightEar + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 47.89431 + inSlope: -0.27170402 + outSlope: -0.27170402 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: 47.89053 + inSlope: 0.010579131 + outSlope: 0.010068465 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0666668 + value: 47.88691 + inSlope: 0.033897866 + outSlope: 0.035018954 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 47.88697 + inSlope: 0.0020599384 + outSlope: 0.0020599384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -12.769702 + inSlope: -0.93226695 + outSlope: -0.93226695 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: -13.525629 + inSlope: -1.6255094 + outSlope: -1.6255105 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0666668 + value: -12.860687 + inSlope: -0.0708506 + outSlope: -0.0714112 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: -12.881395 + inSlope: -0.62192976 + outSlope: -0.62192976 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 76.49841 + inSlope: -3.0671656 + outSlope: -3.0671656 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: 76.3297 + inSlope: -0.7901852 + outSlope: -0.7901748 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0666668 + value: 76.38141 + inSlope: -0.36383802 + outSlope: -0.3625492 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 76.35497 + inSlope: -0.79307634 + outSlope: -0.79307634 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 68.24664 + inSlope: -2.507343 + outSlope: -2.507343 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 68.477234 + inSlope: 2.0400236 + outSlope: 2.027191 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3000002 + value: 69.35446 + inSlope: -1.1632689 + outSlope: -1.1608888 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 68.24782 + inSlope: -0.9409333 + outSlope: -0.9409333 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 40.073177 + inSlope: 4.5563645 + outSlope: 4.5563645 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 39.021423 + inSlope: -5.88541 + outSlope: -5.982513 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3000002 + value: 36.71593 + inSlope: 3.7561567 + outSlope: 3.7854626 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 40.011776 + inSlope: 2.6816514 + outSlope: 2.6816514 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1.0048689 + inSlope: 5.6992097 + outSlope: 5.6992097 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 1.155452 + inSlope: -2.777979 + outSlope: -2.8777375 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3000002 + value: -0.14395137 + inSlope: 0.9012449 + outSlope: 0.9317206 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 1.090858 + inSlope: 0.94313806 + outSlope: 0.94313806 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 4.7804193 + inSlope: 0.08756656 + outSlope: 0.08756656 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 4.741946 + inSlope: 0.059074283 + outSlope: 0.059170503 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 4.781391 + inSlope: 0.018281937 + outSlope: 0.018281937 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -1.765132 + inSlope: -0.19448356 + outSlope: -0.19448356 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: -1.6846114 + inSlope: -0.12253972 + outSlope: -0.1224821 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: -1.7673006 + inSlope: -0.04148548 + outSlope: -0.04148548 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -64.893845 + inSlope: -2.3164055 + outSlope: -2.3164055 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: -63.923267 + inSlope: -1.4777381 + outSlope: -1.477747 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: -64.919525 + inSlope: -0.49123242 + outSlope: -0.49123242 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -31.979504 + inSlope: -0.3986201 + outSlope: -0.3986201 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: -30.698133 + inSlope: -0.24176264 + outSlope: -0.2417613 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: -31.959215 + inSlope: 0.13940729 + outSlope: 0.13940729 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 113.027596 + inSlope: 2.5522761 + outSlope: 2.5522761 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 114.04157 + inSlope: -0.16295888 + outSlope: -0.16299795 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 113.09538 + inSlope: 1.3926047 + outSlope: 1.3926047 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 5.0226564 + inSlope: -1.6061478 + outSlope: -1.6061478 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 4.778508 + inSlope: -0.039864622 + outSlope: -0.039863788 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 4.987985 + inSlope: -0.8236121 + outSlope: -0.8236121 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 14.857077 + inSlope: -0.0000055374635 + outSlope: -0.0000055374635 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 14.857077 + inSlope: -0.0000055374635 + outSlope: -0.0000055374635 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -26.906305 + inSlope: -0.0000055374635 + outSlope: -0.0000055374635 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: -26.906305 + inSlope: -0.0000055374635 + outSlope: -0.0000055374635 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -32.202744 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: -32.202744 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 8.527537 + inSlope: 0.000004614553 + outSlope: 0.000004614553 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 8.527537 + inSlope: 0.000004614553 + outSlope: 0.000004614553 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -34.274666 + inSlope: 0.000007383285 + outSlope: 0.000007383285 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: -34.274666 + inSlope: 0.000007383285 + outSlope: 0.000007383285 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 6.087773 + inSlope: -0.0000041530975 + outSlope: -0.0000041530975 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 6.087773 + inSlope: -0.0000041530975 + outSlope: -0.0000041530975 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -8.685145 + inSlope: -0.000004614553 + outSlope: -0.000004614553 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: -8.685145 + inSlope: -0.000004614553 + outSlope: -0.000004614553 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2/mixamorig:LeftHandThumb3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -6.023947 + inSlope: 0.0000055374635 + outSlope: 0.0000055374635 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: -6.023947 + inSlope: 0.0000055374635 + outSlope: 0.0000055374635 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2/mixamorig:LeftHandThumb3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -6.2341537 + inSlope: -0.000007383285 + outSlope: -0.000007383285 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: -6.2341537 + inSlope: -0.000007383285 + outSlope: -0.000007383285 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2/mixamorig:LeftHandThumb3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 2.2293847 + inSlope: 0.000064373016 + outSlope: 0.000064373016 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 2.2293847 + inSlope: 0.000064373016 + outSlope: 0.000064373016 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2/mixamorig:LeftHandThumb3/mixamorig:LeftHandThumb4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 4.727412 + inSlope: 0.0004291534 + outSlope: 0.0004291534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 4.727412 + inSlope: 0.0004291534 + outSlope: 0.0004291534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2/mixamorig:LeftHandThumb3/mixamorig:LeftHandThumb4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1.755922 + inSlope: -0.00013947487 + outSlope: -0.00013947487 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 1.755922 + inSlope: -0.00013947487 + outSlope: -0.00013947487 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2/mixamorig:LeftHandThumb3/mixamorig:LeftHandThumb4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 36.17132 + inSlope: 0.0000036916424 + outSlope: 0.0000036916424 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 36.17132 + inSlope: 0.0000036916424 + outSlope: 0.0000036916424 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 3.7333062 + inSlope: 0.00000069218294 + outSlope: 0.00000069218294 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 3.7333062 + inSlope: 0.00000069218294 + outSlope: 0.00000069218294 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 2.2043753 + inSlope: 0.0000009229106 + outSlope: 0.0000009229106 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 2.2043753 + inSlope: 0.0000009229106 + outSlope: 0.0000009229106 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 59.41203 + inSlope: 0.0000036916424 + outSlope: 0.0000036916424 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 59.41203 + inSlope: 0.0000036916424 + outSlope: 0.0000036916424 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 6.837783 + inSlope: 0.0000009229106 + outSlope: 0.0000009229106 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 6.837783 + inSlope: 0.0000009229106 + outSlope: 0.0000009229106 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 12.997457 + inSlope: -0.000004614553 + outSlope: -0.000004614553 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 12.997457 + inSlope: -0.000004614553 + outSlope: -0.000004614553 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 24.037382 + inSlope: 0.0000018458212 + outSlope: 0.0000018458212 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 24.037382 + inSlope: 0.0000018458212 + outSlope: 0.0000018458212 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2/mixamorig:LeftHandIndex3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.7239395 + inSlope: -0.0000014420478 + outSlope: -0.0000014420478 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.7239395 + inSlope: -0.0000014420478 + outSlope: -0.0000014420478 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2/mixamorig:LeftHandIndex3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 3.3993752 + inSlope: -0.0000066911016 + outSlope: -0.0000066911016 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 3.3993752 + inSlope: -0.0000066911016 + outSlope: -0.0000066911016 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2/mixamorig:LeftHandIndex3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 5.0996943 + inSlope: 0.00060081476 + outSlope: 0.00060081476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 5.0996943 + inSlope: 0.00060081476 + outSlope: 0.00060081476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2/mixamorig:LeftHandIndex3/mixamorig:LeftHandIndex4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.000009465092 + inSlope: -0.0005214327 + outSlope: -0.0005214327 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.000009465092 + inSlope: -0.0005214327 + outSlope: -0.0005214327 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2/mixamorig:LeftHandIndex3/mixamorig:LeftHandIndex4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.000007306565 + inSlope: -0.0006575908 + outSlope: -0.0006575908 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.000007306565 + inSlope: -0.0006575908 + outSlope: -0.0006575908 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2/mixamorig:LeftHandIndex3/mixamorig:LeftHandIndex4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 51.551884 + inSlope: -0.0000036916424 + outSlope: -0.0000036916424 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 51.551884 + inSlope: -0.0000036916424 + outSlope: -0.0000036916424 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 7.701216 + inSlope: 0.0000013843659 + outSlope: 0.0000013843659 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 7.701216 + inSlope: 0.0000013843659 + outSlope: 0.0000013843659 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 7.3190107 + inSlope: 0.000004614553 + outSlope: 0.000004614553 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 7.3190107 + inSlope: 0.000004614553 + outSlope: 0.000004614553 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 64.12838 + inSlope: 0.000007383285 + outSlope: 0.000007383285 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 64.12838 + inSlope: 0.000007383285 + outSlope: 0.000007383285 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 8.35785 + inSlope: -0.0000009229106 + outSlope: -0.0000009229106 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 8.35785 + inSlope: -0.0000009229106 + outSlope: -0.0000009229106 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 15.740139 + inSlope: 0.0000036916424 + outSlope: 0.0000036916424 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 15.740139 + inSlope: 0.0000036916424 + outSlope: 0.0000036916424 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 17.745468 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 17.745468 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2/mixamorig:LeftHandMiddle3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.7467746 + inSlope: 0.0000055951455 + outSlope: 0.0000055951455 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.7467746 + inSlope: 0.0000055951455 + outSlope: 0.0000055951455 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2/mixamorig:LeftHandMiddle3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 2.584129 + inSlope: -0.000007152557 + outSlope: -0.000007152557 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 2.584129 + inSlope: -0.000007152557 + outSlope: -0.000007152557 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2/mixamorig:LeftHandMiddle3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1.2090012 + inSlope: -0.00013947487 + outSlope: -0.00013947487 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 1.2090012 + inSlope: -0.00013947487 + outSlope: -0.00013947487 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2/mixamorig:LeftHandMiddle3/mixamorig:LeftHandMiddle4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.3314006 + inSlope: -0.0004532933 + outSlope: -0.0004532933 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.3314006 + inSlope: -0.0004532933 + outSlope: -0.0004532933 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2/mixamorig:LeftHandMiddle3/mixamorig:LeftHandMiddle4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.33136362 + inSlope: 0.0003379583 + outSlope: 0.0003379583 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.33136362 + inSlope: 0.0003379583 + outSlope: 0.0003379583 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2/mixamorig:LeftHandMiddle3/mixamorig:LeftHandMiddle4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 72.08836 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 72.08836 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 15.626418 + inSlope: 0.0000009229106 + outSlope: 0.0000009229106 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 15.626418 + inSlope: 0.0000009229106 + outSlope: 0.0000009229106 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 8.623369 + inSlope: -0.0000018458212 + outSlope: -0.0000018458212 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 8.623369 + inSlope: -0.0000018458212 + outSlope: -0.0000018458212 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 63.21097 + inSlope: -0.00034332272 + outSlope: -0.00034332272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 63.21097 + inSlope: -0.00034332272 + outSlope: -0.00034332272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 9.402152 + inSlope: -0.00060081476 + outSlope: -0.00060081476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 9.402152 + inSlope: -0.00060081476 + outSlope: -0.00060081476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 15.250231 + inSlope: -0.00017166136 + outSlope: -0.00017166136 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 15.250231 + inSlope: -0.00017166136 + outSlope: -0.00017166136 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 13.984161 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 13.984161 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2/mixamorig:LeftHandPinky3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.23246858 + inSlope: -0.0000008940696 + outSlope: -0.0000008940696 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.23246858 + inSlope: -0.0000008940696 + outSlope: -0.0000008940696 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2/mixamorig:LeftHandPinky3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1.8952888 + inSlope: 0.000005191372 + outSlope: 0.000005191372 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 1.8952888 + inSlope: 0.000005191372 + outSlope: 0.000005191372 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2/mixamorig:LeftHandPinky3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 5.1032014 + inSlope: -0.0005578995 + outSlope: -0.0005578995 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 5.1032014 + inSlope: -0.0005578995 + outSlope: -0.0005578995 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2/mixamorig:LeftHandPinky3/mixamorig:LeftHandPinky4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0000031968796 + inSlope: -0.00028771916 + outSlope: -0.00028771916 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.0000031968796 + inSlope: -0.00028771916 + outSlope: -0.00028771916 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2/mixamorig:LeftHandPinky3/mixamorig:LeftHandPinky4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0000053110252 + inSlope: -0.00047799226 + outSlope: -0.00047799226 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.0000053110252 + inSlope: -0.00047799226 + outSlope: -0.00047799226 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2/mixamorig:LeftHandPinky3/mixamorig:LeftHandPinky4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 45.31224 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 45.31224 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 25.76986 + inSlope: 0.000007383285 + outSlope: 0.000007383285 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 25.76986 + inSlope: 0.000007383285 + outSlope: 0.000007383285 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -80.28171 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: -80.28171 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 37.450897 + inSlope: 1.4980491 + outSlope: 1.4980491 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: 36.302956 + inSlope: -1.1792872 + outSlope: -1.1783538 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9333334 + value: 37.209538 + inSlope: 1.4321394 + outSlope: 1.4281533 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 37.41471 + inSlope: 0.9287563 + outSlope: 0.9287563 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 66.341805 + inSlope: -0.73222816 + outSlope: -0.73222816 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: 67.21858 + inSlope: 0.9492257 + outSlope: 0.9502333 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9333334 + value: 66.533165 + inSlope: -1.0592138 + outSlope: -1.0633388 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 66.37842 + inSlope: -0.70696986 + outSlope: -0.70696986 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 105.79987 + inSlope: -1.3731678 + outSlope: -1.3731678 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: 104.77913 + inSlope: -1.2820551 + outSlope: -1.2823455 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9333334 + value: 105.53145 + inSlope: 1.1333574 + outSlope: 1.1357111 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 105.70813 + inSlope: 0.8508907 + outSlope: 0.8508907 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 5.2191296 + inSlope: 0.0000018458212 + outSlope: 0.0000018458212 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 5.2191296 + inSlope: 0.0000018458212 + outSlope: 0.0000018458212 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 4.7784057 + inSlope: 0.000005998919 + outSlope: 0.000005998919 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 4.7784057 + inSlope: 0.000005998919 + outSlope: 0.000005998919 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 98.480576 + inSlope: 0.00001476657 + outSlope: 0.00001476657 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 98.480576 + inSlope: 0.00001476657 + outSlope: 0.00001476657 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -27.223686 + inSlope: 0.91173905 + outSlope: 0.91173905 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: -27.850632 + inSlope: -0.44029388 + outSlope: -0.44079518 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: -27.266191 + inSlope: 1.1485434 + outSlope: 1.1485434 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -37.65252 + inSlope: 2.809571 + outSlope: 2.809571 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: -38.21368 + inSlope: -0.9052019 + outSlope: -0.9047881 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: -37.661213 + inSlope: 1.3252336 + outSlope: 1.3252336 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -23.120409 + inSlope: -3.5571563 + outSlope: -3.5571563 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: -23.485182 + inSlope: 1.3058 + outSlope: 1.305434 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: -23.141878 + inSlope: -1.3558712 + outSlope: -1.3558712 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 25.719746 + inSlope: -0.0000036916424 + outSlope: -0.0000036916424 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 25.719746 + inSlope: -0.0000036916424 + outSlope: -0.0000036916424 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 33.349575 + inSlope: 0.0000036916424 + outSlope: 0.0000036916424 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 33.349575 + inSlope: 0.0000036916424 + outSlope: 0.0000036916424 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 42.66236 + inSlope: -0.000007383285 + outSlope: -0.000007383285 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 42.66236 + inSlope: -0.000007383285 + outSlope: -0.000007383285 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 13.140634 + inSlope: 0.000006460374 + outSlope: 0.000006460374 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 13.140634 + inSlope: 0.000006460374 + outSlope: 0.000006460374 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 34.497425 + inSlope: -0.0000036916424 + outSlope: -0.0000036916424 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 34.497425 + inSlope: -0.0000036916424 + outSlope: -0.0000036916424 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -28.206757 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: -28.206757 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 12.057877 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 12.057877 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2/mixamorig:RightHandThumb3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.69805557 + inSlope: 0.0000034032328 + outSlope: 0.0000034032328 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.69805557 + inSlope: 0.0000034032328 + outSlope: 0.0000034032328 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2/mixamorig:RightHandThumb3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -57.93119 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: -57.93119 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2/mixamorig:RightHandThumb3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 2.2293863 + inSlope: -0.00008583068 + outSlope: -0.00008583068 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 2.2293863 + inSlope: -0.00008583068 + outSlope: -0.00008583068 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2/mixamorig:RightHandThumb3/mixamorig:RightHandThumb4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -4.727418 + inSlope: 0.00008583068 + outSlope: 0.00008583068 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -4.727418 + inSlope: 0.00008583068 + outSlope: 0.00008583068 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2/mixamorig:RightHandThumb3/mixamorig:RightHandThumb4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -1.7559186 + inSlope: -0.00016093253 + outSlope: -0.00016093253 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -1.7559186 + inSlope: -0.00016093253 + outSlope: -0.00016093253 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2/mixamorig:RightHandThumb3/mixamorig:RightHandThumb4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 12.111201 + inSlope: 0.000004614553 + outSlope: 0.000004614553 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 12.111201 + inSlope: 0.000004614553 + outSlope: 0.000004614553 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -2.4727466 + inSlope: -0.0000011536382 + outSlope: -0.0000011536382 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: -2.4727466 + inSlope: -0.0000011536382 + outSlope: -0.0000011536382 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 4.8269415 + inSlope: -0.000006460374 + outSlope: -0.000006460374 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 4.8269415 + inSlope: -0.000006460374 + outSlope: -0.000006460374 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 32.754833 + inSlope: 0.00034332272 + outSlope: 0.00034332272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 32.754833 + inSlope: 0.00034332272 + outSlope: 0.00034332272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.61345565 + inSlope: 0.0005900859 + outSlope: 0.0005900859 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.61345565 + inSlope: 0.0005900859 + outSlope: 0.0005900859 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -4.124459 + inSlope: -0.0006437301 + outSlope: -0.0006437301 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -4.124459 + inSlope: -0.0006437301 + outSlope: -0.0006437301 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 29.646189 + inSlope: 0.00051498413 + outSlope: 0.00051498413 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 29.646189 + inSlope: 0.00051498413 + outSlope: 0.00051498413 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2/mixamorig:RightHandIndex3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.9657407 + inSlope: -0.00030040738 + outSlope: -0.00030040738 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.9657407 + inSlope: -0.00030040738 + outSlope: -0.00030040738 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2/mixamorig:RightHandIndex3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -3.6481032 + inSlope: 0.00012874603 + outSlope: 0.00012874603 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -3.6481032 + inSlope: 0.00012874603 + outSlope: 0.00012874603 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2/mixamorig:RightHandIndex3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 5.0996995 + inSlope: 0.00012874603 + outSlope: 0.00012874603 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 5.0996995 + inSlope: 0.00012874603 + outSlope: 0.00012874603 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2/mixamorig:RightHandIndex3/mixamorig:RightHandIndex4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0000018534456 + inSlope: -0.0001668101 + outSlope: -0.0001668101 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.0000018534456 + inSlope: -0.0001668101 + outSlope: -0.0001668101 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2/mixamorig:RightHandIndex3/mixamorig:RightHandIndex4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0000031581092 + inSlope: 0.0002842298 + outSlope: 0.0002842298 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.0000031581092 + inSlope: 0.0002842298 + outSlope: 0.0002842298 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2/mixamorig:RightHandIndex3/mixamorig:RightHandIndex4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 50.31944 + inSlope: 0.23074791 + outSlope: 0.23074791 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 49.98679 + inSlope: 0.29687607 + outSlope: 0.29687274 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 50.309887 + inSlope: -0.52006376 + outSlope: -0.52006376 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -6.5824795 + inSlope: -0.050044544 + outSlope: -0.050044544 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: -6.5122986 + inSlope: -0.062442698 + outSlope: -0.062453527 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: -6.580427 + inSlope: 0.109703325 + outSlope: 0.109703325 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -9.768472 + inSlope: -0.07094694 + outSlope: -0.07094694 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: -9.719959 + inSlope: 0.041514024 + outSlope: 0.041518643 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: -9.771435 + inSlope: 0.14861974 + outSlope: 0.14861974 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 68.51642 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 68.51642 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -154.59825 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: -154.59825 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -163.59277 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: -163.59277 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 18.715563 + inSlope: -0.00017166136 + outSlope: -0.00017166136 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 18.715563 + inSlope: -0.00017166136 + outSlope: -0.00017166136 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2/mixamorig:RightHandMiddle3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.7263581 + inSlope: -0.0005418062 + outSlope: -0.0005418062 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.7263581 + inSlope: -0.0005418062 + outSlope: -0.0005418062 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2/mixamorig:RightHandMiddle3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -2.3214612 + inSlope: 0.00038623807 + outSlope: 0.00038623807 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -2.3214612 + inSlope: 0.00038623807 + outSlope: 0.00038623807 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2/mixamorig:RightHandMiddle3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1.2089994 + inSlope: 0.00002145767 + outSlope: 0.00002145767 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 1.2089994 + inSlope: 0.00002145767 + outSlope: 0.00002145767 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2/mixamorig:RightHandMiddle3/mixamorig:RightHandMiddle4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.331392 + inSlope: -0.00014483927 + outSlope: -0.00014483927 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.331392 + inSlope: -0.00014483927 + outSlope: -0.00014483927 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2/mixamorig:RightHandMiddle3/mixamorig:RightHandMiddle4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.33137217 + inSlope: 0.0002655387 + outSlope: 0.0002655387 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.33137217 + inSlope: 0.0002655387 + outSlope: 0.0002655387 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2/mixamorig:RightHandMiddle3/mixamorig:RightHandMiddle4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 64.26823 + inSlope: -0.000007383285 + outSlope: -0.000007383285 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 64.26823 + inSlope: -0.000007383285 + outSlope: -0.000007383285 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -7.8172235 + inSlope: -0.000006460374 + outSlope: -0.000006460374 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: -7.8172235 + inSlope: -0.000006460374 + outSlope: -0.000006460374 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -3.0439062 + inSlope: 0.000006460374 + outSlope: 0.000006460374 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: -3.0439062 + inSlope: 0.000006460374 + outSlope: 0.000006460374 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 80.27447 + inSlope: 0.000007383285 + outSlope: 0.000007383285 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 80.27447 + inSlope: 0.000007383285 + outSlope: 0.000007383285 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -34.675125 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: -34.675125 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -40.652172 + inSlope: -0.0000036916424 + outSlope: -0.0000036916424 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: -40.652172 + inSlope: -0.0000036916424 + outSlope: -0.0000036916424 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 59.267494 + inSlope: -0.000007383285 + outSlope: -0.000007383285 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 59.267494 + inSlope: -0.000007383285 + outSlope: -0.000007383285 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2/mixamorig:RightHandPinky3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -6.170245 + inSlope: 0.0000027687317 + outSlope: 0.0000027687317 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: -6.170245 + inSlope: 0.0000027687317 + outSlope: 0.0000027687317 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2/mixamorig:RightHandPinky3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -10.824888 + inSlope: -0.0000018458212 + outSlope: -0.0000018458212 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: -10.824888 + inSlope: -0.0000018458212 + outSlope: -0.0000018458212 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2/mixamorig:RightHandPinky3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 5.1032014 + inSlope: -0.0005578995 + outSlope: -0.0005578995 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 5.1032014 + inSlope: -0.0005578995 + outSlope: -0.0005578995 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2/mixamorig:RightHandPinky3/mixamorig:RightHandPinky4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.000009438974 + inSlope: 0.0005237833 + outSlope: 0.0005237833 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.000009438974 + inSlope: 0.0005237833 + outSlope: 0.0005237833 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2/mixamorig:RightHandPinky3/mixamorig:RightHandPinky4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.000010595659 + inSlope: -0.00041968172 + outSlope: -0.00041968172 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.000010595659 + inSlope: -0.00041968172 + outSlope: -0.00041968172 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2/mixamorig:RightHandPinky3/mixamorig:RightHandPinky4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -10.349766 + inSlope: -0.5342312 + outSlope: -0.5342312 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: -9.746956 + inSlope: -0.73853624 + outSlope: -0.73850286 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: -10.3632555 + inSlope: 0.2628077 + outSlope: 0.2628077 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -45.957832 + inSlope: -0.1575501 + outSlope: -0.1575501 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: -46.180885 + inSlope: -0.11483795 + outSlope: -0.1149663 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: -45.97138 + inSlope: 0.5702981 + outSlope: 0.5702981 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 166.35173 + inSlope: -1.1296579 + outSlope: -1.1296579 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 166.39464 + inSlope: -0.36336157 + outSlope: -0.36339152 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 166.29135 + inSlope: 0.42753047 + outSlope: 0.42753047 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -28.064709 + inSlope: -0.5364477 + outSlope: -0.5364477 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -27.136574 + inSlope: 1.1611649 + outSlope: 1.1616839 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3000002 + value: -27.65557 + inSlope: -0.996035 + outSlope: -0.9964729 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: -28.074913 + inSlope: -0.031499866 + outSlope: -0.031499866 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1.090861 + inSlope: 0.6819259 + outSlope: 0.6819259 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 1.1936203 + inSlope: -0.87128687 + outSlope: -0.86998326 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3000002 + value: 0.0003066993 + inSlope: 0.5514072 + outSlope: 0.54994017 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 1.0417209 + inSlope: 1.4828558 + outSlope: 1.4828558 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -4.6927133 + inSlope: 2.3323054 + outSlope: 2.3323054 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -4.6383915 + inSlope: 0.56293684 + outSlope: 0.56138843 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3000002 + value: -3.7252028 + inSlope: -0.59649265 + outSlope: -0.5950419 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: -4.56185 + inSlope: -1.2420614 + outSlope: -1.2420614 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 70.96032 + inSlope: 0.62247914 + outSlope: 0.62247914 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 70.3144 + inSlope: 0.6213861 + outSlope: 0.62251276 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: 70.95546 + inSlope: 0.12328229 + outSlope: 0.12329104 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 70.98652 + inSlope: -0.110244766 + outSlope: -0.110244766 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 18.41017 + inSlope: -6.2871747 + outSlope: -6.2871747 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 17.650124 + inSlope: 1.6432828 + outSlope: 1.6356876 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: 18.297577 + inSlope: -0.0005100795 + outSlope: -0.0013732912 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 18.261185 + inSlope: 0.23818974 + outSlope: 0.23818974 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 17.900265 + inSlope: -5.119958 + outSlope: -5.119958 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 16.826595 + inSlope: 1.444681 + outSlope: 1.4370607 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: 17.810871 + inSlope: 0.90440035 + outSlope: 0.90358746 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 17.741785 + inSlope: 0.8397485 + outSlope: 0.8397485 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 19.805634 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 19.805634 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot/mixamorig:LeftToeBase + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.92502654 + inSlope: 0.0000068064655 + outSlope: 0.0000068064655 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.92502654 + inSlope: 0.0000068064655 + outSlope: 0.0000068064655 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot/mixamorig:LeftToeBase + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -14.072977 + inSlope: -0.0000055374635 + outSlope: -0.0000055374635 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: -14.072977 + inSlope: -0.0000055374635 + outSlope: -0.0000055374635 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot/mixamorig:LeftToeBase + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 4.8948174 + inSlope: 0.00034332272 + outSlope: 0.00034332272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 4.8948174 + inSlope: 0.00034332272 + outSlope: 0.00034332272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot/mixamorig:LeftToeBase/mixamorig:LeftToe_End + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 4.903599 + inSlope: -0.00034332272 + outSlope: -0.00034332272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 4.903599 + inSlope: -0.00034332272 + outSlope: -0.00034332272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot/mixamorig:LeftToeBase/mixamorig:LeftToe_End + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 8.569193 + inSlope: 0.00051498413 + outSlope: 0.00051498413 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 8.569193 + inSlope: 0.00051498413 + outSlope: 0.00051498413 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot/mixamorig:LeftToeBase/mixamorig:LeftToe_End + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 12.203392 + inSlope: 0.000007383285 + outSlope: 0.000007383285 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 12.203392 + inSlope: 0.000007383285 + outSlope: 0.000007383285 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -4.7543273 + inSlope: -0.000005998919 + outSlope: -0.000005998919 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: -4.7543273 + inSlope: -0.000005998919 + outSlope: -0.000005998919 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -175.44138 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: -175.44138 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -30.104753 + inSlope: -0.4372802 + outSlope: -0.4372802 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: -30.116802 + inSlope: 1.2321221 + outSlope: 1.230415 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: -29.392735 + inSlope: -0.5636394 + outSlope: -0.564348 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: -30.045057 + inSlope: -0.9011252 + outSlope: -0.9011252 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -1.8229616 + inSlope: -3.5701008 + outSlope: -3.5701008 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: -2.4142008 + inSlope: -2.616406 + outSlope: -2.6185627 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: -2.572386 + inSlope: 1.4952087 + outSlope: 1.4944327 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: -2.0104253 + inSlope: -1.7517083 + outSlope: -1.7517083 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 4.824236 + inSlope: 2.6870198 + outSlope: 2.6870198 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: 5.0820546 + inSlope: 1.300668 + outSlope: 1.303359 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: 5.0504065 + inSlope: -0.5957695 + outSlope: -0.59478056 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 4.926431 + inSlope: 0.9220399 + outSlope: 0.9220399 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 76.159676 + inSlope: -0.32013285 + outSlope: -0.32013285 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 76.13861 + inSlope: 0.1314614 + outSlope: 0.13149962 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3666668 + value: 76.35085 + inSlope: -0.060354736 + outSlope: -0.058770612 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 76.170166 + inSlope: -0.48065186 + outSlope: -0.48065186 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -104.25627 + inSlope: 3.1655605 + outSlope: 3.1655605 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -104.348274 + inSlope: -0.11623035 + outSlope: -0.11644947 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3666668 + value: -102.59409 + inSlope: -2.5194564 + outSlope: -2.5217369 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: -104.00701 + inSlope: -0.6641735 + outSlope: -0.6641735 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -89.11984 + inSlope: -0.40861648 + outSlope: -0.40861648 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -89.29689 + inSlope: -0.08564342 + outSlope: -0.085872725 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3666668 + value: -88.0463 + inSlope: -0.90043044 + outSlope: -0.90275156 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: -89.060455 + inSlope: -1.1309052 + outSlope: -1.1309052 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 19.826118 + inSlope: -0.000007383285 + outSlope: -0.000007383285 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 19.826118 + inSlope: -0.000007383285 + outSlope: -0.000007383285 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot/mixamorig:RightToeBase + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.92552304 + inSlope: 0.0000011536382 + outSlope: 0.0000011536382 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: -0.92552304 + inSlope: 0.0000011536382 + outSlope: 0.0000011536382 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot/mixamorig:RightToeBase + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 14.073592 + inSlope: 0.0000009229106 + outSlope: 0.0000009229106 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 14.073592 + inSlope: 0.0000009229106 + outSlope: 0.0000009229106 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot/mixamorig:RightToeBase + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 4.8948174 + inSlope: 0.00034332272 + outSlope: 0.00034332272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 4.8948174 + inSlope: 0.00034332272 + outSlope: 0.00034332272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot/mixamorig:RightToeBase/mixamorig:RightToe_End + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -4.903599 + inSlope: 0.00034332272 + outSlope: 0.00034332272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -4.903599 + inSlope: 0.00034332272 + outSlope: 0.00034332272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot/mixamorig:RightToeBase/mixamorig:RightToe_End + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -8.569193 + inSlope: -0.00051498413 + outSlope: -0.00051498413 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -8.569193 + inSlope: -0.00051498413 + outSlope: -0.00051498413 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot/mixamorig:RightToeBase/mixamorig:RightToe_End + classID: 4 + script: {fileID: 0} + m_HasGenericRootTransform: 0 + m_HasMotionFloatCurves: 0 + m_Events: [] diff --git a/Assets/Jammo-Character/Animations/Mixamo-Gun/Rifle Aim Idle.anim.meta b/Assets/Jammo-Character/Animations/Mixamo-Gun/Rifle Aim Idle.anim.meta new file mode 100644 index 0000000..c0bcebf --- /dev/null +++ b/Assets/Jammo-Character/Animations/Mixamo-Gun/Rifle Aim Idle.anim.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 8086bf483fcb5224191109120cd0dc03 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 7400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Jammo-Character/Animations/Mixamo-Gun/Rifle Idle.anim b/Assets/Jammo-Character/Animations/Mixamo-Gun/Rifle Idle.anim new file mode 100644 index 0000000..9180cc8 --- /dev/null +++ b/Assets/Jammo-Character/Animations/Mixamo-Gun/Rifle Idle.anim @@ -0,0 +1,24352 @@ +%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: Rifle 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, 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.033333335 + 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: jammo_mixamo_rig + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.06340559, y: 0.03417327, z: -0.025698494, w: 0.9970715} + inSlope: {x: 0.0006721168, y: 0.009839236, z: 0.00045206395, w: -0.00028610227} + outSlope: {x: 0.0006721168, y: 0.009839236, z: 0.00045206395, w: -0.00028610227} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6333334 + value: {x: -0.060520772, y: 0.05051191, z: -0.02248226, w: 0.99663454} + inSlope: {x: 0.005109501, y: 0.009352593, z: 0.00014894656, w: -0.00016093269} + outSlope: {x: 0.005109501, y: 0.009352593, z: 0.00014894656, w: -0.00016093269} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.966667 + value: {x: -0.056677412, y: 0.06876208, z: -0.024031354, w: 0.9957319} + inSlope: {x: -0.00011645123, y: 0.0069824364, z: -0.0010303842, w: -0.0005131942} + outSlope: {x: -0.00011645123, y: 0.0069824364, z: -0.0010303842, w: -0.0005131942} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.6000004 + value: {x: -0.06118155, y: 0.050302275, z: -0.024724016, w: 0.9965517} + inSlope: {x: -0.0075686984, y: -0.041212626, z: 0.0005538208, w: 0.0016298906} + outSlope: {x: -0.0075686984, y: -0.041212626, z: 0.0005538208, w: 0.0016298906} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.266667 + value: {x: -0.064151086, y: 0.034513578, z: -0.024997862, w: 0.9970299} + inSlope: {x: -0.00008907178, y: -0.00048391568, z: 0.00016685591, w: 0.000015199199} + outSlope: {x: -0.00008907178, y: -0.00048391568, z: 0.00016685591, w: 0.000015199199} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.9000006 + value: {x: -0.06379818, y: 0.034305315, z: -0.024983384, w: 0.99706006} + inSlope: {x: 0.0005039205, y: -0.00007666655, z: -0.0005833531, w: 0.000019669551} + outSlope: {x: 0.0005039205, y: -0.00007666655, z: -0.0005833531, w: 0.000019669551} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.566668 + value: {x: -0.063501105, y: 0.034241114, z: -0.02572165, w: 0.99706244} + inSlope: {x: -0.00003017445, y: -0.00006839541, z: -0.000861704, w: -0.0000232455} + outSlope: {x: -0.00003017445, y: -0.00006839541, z: -0.000861704, w: -0.0000232455} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.046271633, y: -0.017858451, z: 0.014733096, w: 0.9986606} + inSlope: {x: -0.0033003462, y: 0.000010840594, z: 0.00019560567, w: 0.00014841555} + outSlope: {x: -0.0033003462, y: 0.000010840594, z: 0.00019560567, w: 0.00014841555} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6333334 + value: {x: 0.04202458, y: -0.021896781, z: 0.020193039, w: 0.9986725} + inSlope: {x: 0.000008158393, y: -0.00008161187, z: 0.0038944315, w: -0.00008136042} + outSlope: {x: 0.000008158393, y: -0.00008161187, z: 0.0038944315, w: -0.00008136042} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.266667 + value: {x: 0.043534704, y: -0.033532977, z: 0.02296342, w: 0.9982249} + inSlope: {x: -0.00011891138, y: -0.00010125349, z: 0.00024405331, w: -0.000003576282} + outSlope: {x: -0.00011891138, y: -0.00010125349, z: 0.00024405331, w: -0.000003576282} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.9333334 + value: {x: 0.04780202, y: -0.03480585, z: 0.019426275, w: 0.9980612} + inSlope: {x: -0.000034533474, y: 0.031182218, z: -0.00097056944, w: 0.0011077534} + outSlope: {x: -0.000034533474, y: 0.031182218, z: -0.00097056944, w: 0.0011077534} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.566667 + value: {x: 0.047448676, y: -0.011558708, z: 0.01799252, w: 0.9986447} + inSlope: {x: -0.00004280363, y: 0.0015987238, z: -0.0011382077, w: 0.000041127245} + outSlope: {x: -0.00004280363, y: 0.0015987238, z: -0.0011382077, w: 0.000041127245} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.233334 + value: {x: 0.046751723, y: -0.018161627, z: 0.015087978, w: 0.9986274} + inSlope: {x: -0.0014811954, y: 0.0014890465, z: -0.0015862356, w: 0.00012069951} + outSlope: {x: -0.0014811954, y: 0.0014890465, z: -0.0015862356, w: 0.00012069951} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.566668 + value: {x: 0.046361145, y: -0.017790252, z: 0.014652059, w: 0.99865884} + inSlope: {x: -0.0000017881155, y: 0.000008493548, z: -0.00009781551, w: 0.0000017881155} + outSlope: {x: -0.0000017881155, y: 0.000008493548, z: -0.00009781551, w: 0.0000017881155} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.012955024, y: -0.0064883763, z: 0.006067019, w: 0.9998766} + inSlope: {x: 0.000000083819025, y: -0.000000041909512, z: 0.000000027939675, w: 0} + outSlope: {x: 0.000000083819025, y: -0.000000041909512, z: 0.000000027939675, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6333334 + value: {x: 0.012955021, y: -0.0064883777, z: 0.0060670185, w: 0.9998766} + inSlope: {x: 0.000000013969851, y: -0.00000006286433, z: -0.000000006984926, w: 0} + outSlope: {x: 0.000000013969851, y: -0.00000006286433, z: -0.000000006984926, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.266667 + value: {x: 0.012933757, y: -0.0062200553, z: 0.009821767, w: 0.9998488} + inSlope: {x: -0.00003200493, y: 0.0004775524, z: 0.0060396, w: -0.00005543237} + outSlope: {x: -0.00003200493, y: 0.0004775524, z: 0.0060396, w: -0.00005543237} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.9333334 + value: {x: 0.012958703, y: -0.0064932904, z: 0.005489066, w: 0.9998799} + inSlope: {x: 0.000009681107, y: 0.000009003569, z: -0.0015002433, w: 0.000008940705} + outSlope: {x: 0.000009681107, y: 0.000009003569, z: -0.0015002433, w: 0.000008940705} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.566667 + value: {x: 0.012967584, y: -0.0054911287, z: 0.0049085817, w: 0.99988884} + inSlope: {x: 0.0000024307542, y: 0.0009144665, z: 0.00042186858, w: 0.0000026822115} + outSlope: {x: 0.0000024307542, y: 0.0009144665, z: 0.00042186858, w: 0.0000026822115} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.233334 + value: {x: 0.012959629, y: -0.00588031, z: 0.0059342016, w: 0.99988115} + inSlope: {x: -0.000013466936, y: -0.0022224775, z: -0.000028896637, w: -0.000012516987} + outSlope: {x: -0.000013466936, y: -0.0022224775, z: -0.000028896637, w: -0.000012516987} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.566668 + value: {x: 0.0129556805, y: -0.0065285624, z: 0.0059257536, w: 0.9998772} + inSlope: {x: 0.00000013969652, y: -0.00000030733236, z: 0.000000083817916, w: 0} + outSlope: {x: 0.00000013969652, y: -0.00000030733236, z: 0.000000083817916, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.0003612959, y: -0.006585055, z: 0.0058790785, w: 0.99996096} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.566668 + value: {x: 0.0003612959, y: -0.006585055, z: 0.0058790785, w: 0.99996096} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.046347793, y: -0.046448395, z: -0.0151789095, w: 0.9977295} + inSlope: {x: -0.000046044584, y: 0.0037943197, z: 0.000072559335, w: 0.00017881392} + outSlope: {x: -0.000046044584, y: 0.0037943197, z: 0.000072559335, 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: 1.6333334 + value: {x: 0.04401933, y: -0.04684378, z: -0.015104167, w: 0.9978175} + inSlope: {x: -0.0018609519, y: -0.00040439927, z: -0.00187203, w: 0.000033974677} + outSlope: {x: -0.0018609519, y: -0.00040439927, z: -0.00187203, w: 0.000033974677} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.266667 + value: {x: 0.042691506, y: -0.046286717, z: -0.016439047, w: 0.99788016} + inSlope: {x: 0.00039679967, y: -0.00016300022, z: -0.00022589251, w: -0.000027716185} + outSlope: {x: 0.00039679967, y: -0.00016300022, z: -0.00022589251, w: -0.000027716185} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.05071344, y: -0.07021707, z: -0.024431081, w: 0.99594223} + inSlope: {x: 0.0017640011, y: 0.0037415735, z: 0.0022654631, w: 0.00022888205} + outSlope: {x: 0.0017640011, y: 0.0037415735, z: 0.0022654631, w: 0.00022888205} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.047204934, y: -0.053249788, z: -0.017206522, w: 0.9973165} + inSlope: {x: -0.0015058941, y: 0.004037846, z: 0.0015949659, w: 0.00031381875} + outSlope: {x: -0.0015058941, y: 0.004037846, z: 0.0015949659, w: 0.00031381875} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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 + value: {x: 0.046472915, y: -0.047280926, z: -0.015556109, w: 0.99767876} + inSlope: {x: -0.000032018906, y: 0.0013917886, z: 0.0003413394, w: 0.000073313815} + outSlope: {x: -0.000032018906, y: 0.0013917886, z: 0.0003413394, w: 0.000073313815} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.566668 + value: {x: 0.046457786, y: -0.046484802, z: -0.015428427, w: 0.9977188} + inSlope: {x: -0.00000011175722, y: 0.00000033527166, z: 0.00000030733236, w: 0} + outSlope: {x: -0.00000011175722, y: 0.00000033527166, z: 0.00000030733236, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.08275084, y: 0.091512166, z: -0.026570043, w: 0.992004} + inSlope: {x: 0.014913081, y: 0.0446324, z: -0.0153738065, w: -0.0058150287} + outSlope: {x: 0.014913081, y: 0.0446324, z: -0.0153738065, w: -0.0058150287} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6333334 + value: {x: 0.07714533, y: 0.08537502, z: -0.021728022, w: 0.99312013} + inSlope: {x: -0.014190128, y: -0.023738801, z: 0.005143755, w: 0.003256205} + outSlope: {x: -0.014190128, y: -0.023738801, z: 0.005143755, w: 0.003256205} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.266667 + value: {x: 0.06353329, y: 0.08521758, z: -0.029490352, w: 0.9938973} + inSlope: {x: 0.0013298182, y: -0.0011717912, z: -0.009552669, w: -0.00026822113} + outSlope: {x: 0.0013298182, y: -0.0011717912, z: -0.009552669, w: -0.00026822113} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.5666668 + value: {x: 0.075671084, y: 0.057493214, z: -0.024595566, w: 0.9951701} + inSlope: {x: 0.15734601, y: -0.37377754, z: 0.075546086, w: 0.01100422} + outSlope: {x: 0.15734601, y: -0.37377754, z: 0.075546086, w: 0.01100422} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.9 + value: {x: 0.124956846, y: -0.09878343, z: 0.0027940595, w: 0.98722833} + inSlope: {x: 0.0319143, y: -0.36102226, z: 0.07487096, w: -0.040387698} + outSlope: {x: 0.0319143, y: -0.36102226, z: 0.07487096, w: -0.040387698} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.3 + value: {x: 0.13698058, y: -0.20942008, z: 0.033148017, w: 0.967616} + inSlope: {x: 0.024103917, y: -0.12135957, z: 0.050694916, w: -0.03140959} + outSlope: {x: 0.024103917, y: -0.12135957, z: 0.050694916, w: -0.03140959} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.9666667 + value: {x: 0.14703998, y: -0.25699997, z: 0.05199905, w: 0.95374334} + inSlope: {x: -0.0017431746, y: 0.021191431, z: 0.0010290884, w: 0.0059088315} + outSlope: {x: -0.0017431746, y: 0.021191431, z: 0.0010290884, w: 0.0059088315} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.5000005 + value: {x: 0.11667052, y: -0.102698036, z: 0.026476476, w: 0.98749185} + inSlope: {x: -0.060068242, y: 0.36838412, z: -0.07350117, w: 0.047490343} + outSlope: {x: -0.060068242, y: 0.36838412, z: -0.07350117, w: 0.047490343} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.8 + value: {x: 0.10645567, y: 0.0015965143, z: 0.0039691865, w: 0.99430823} + inSlope: {x: -0.016177088, y: 0.33394438, z: -0.07654674, w: 0.0016683355} + outSlope: {x: -0.016177088, y: 0.33394438, z: -0.07654674, w: 0.0016683355} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.3 + value: {x: 0.101649895, y: 0.063264236, z: -0.010362068, w: 0.99275255} + inSlope: {x: -0.0061153304, y: 0.060060196, z: -0.008392543, w: -0.0032857093} + outSlope: {x: -0.0061153304, y: 0.060060196, z: -0.008392543, w: -0.0032857093} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.933334 + value: {x: 0.086150326, y: 0.09090229, z: -0.021110862, w: 0.9919019} + inSlope: {x: -0.0045741764, y: 0.0007279969, z: -0.011724925, w: 0.00008046634} + outSlope: {x: -0.0045741764, y: 0.0007279969, z: -0.011724925, w: 0.00008046634} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.566668 + value: {x: 0.083003506, y: 0.09142875, z: -0.026452634, w: 0.9919937} + inSlope: {x: -0.0060527707, y: -0.0003283427, z: -0.0041263, w: 0.0004273596} + outSlope: {x: -0.0060527707, y: -0.0003283427, z: -0.0041263, w: 0.0004273596} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.06928724, y: 0, z: -0, w: 0.99759674} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: -0.06928724, y: 0, z: -0, w: 0.99759674} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head/mixamorig:HeadTop_End + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.40506425, y: -0.45798013, z: 0.59357256, w: 0.5233056} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.40506425, y: -0.45798013, z: 0.59357256, w: 0.5233056} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head/mixamorig:LeftEar + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.40506425, y: 0.45798013, z: -0.59357256, w: 0.5233056} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.40506425, y: 0.45798013, z: -0.59357256, w: 0.5233056} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head/mixamorig:RightEar + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.60471714, y: -0.3670752, z: 0.4964271, w: 0.5031234} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.566668 + value: {x: 0.60471714, y: -0.3670752, z: 0.4964271, w: 0.5031234} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.36882776, y: -0.06225089, z: -0.06822434, w: 0.924898} + inSlope: {x: 0.008382797, y: -0.0012808664, z: -0.010689049, w: -0.004221797} + outSlope: {x: 0.008382797, y: -0.0012808664, z: -0.010689049, w: -0.004221797} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6333334 + value: {x: 0.37688676, y: -0.06036733, z: -0.08519533, w: 0.9203554} + inSlope: {x: 0.004104231, y: -0.00025056326, z: -0.010544109, w: -0.0026750593} + outSlope: {x: 0.004104231, y: -0.00025056326, z: -0.010544109, w: -0.0026750593} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.266667 + value: {x: 0.38547936, y: -0.060233444, z: -0.107138894, w: 0.9144938} + inSlope: {x: 0.003991578, y: -0.0000021792948, z: -0.0070340997, w: -0.0025069737} + outSlope: {x: 0.003991578, y: -0.0000021792948, z: -0.0070340997, w: -0.0025069737} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.2000003 + value: {x: 0.37847522, y: -0.066512935, z: -0.079807036, w: 0.91976273} + inSlope: {x: 0.009624669, y: -0.023774005, z: 0.021972677, w: -0.0037729775} + outSlope: {x: 0.009624669, y: -0.023774005, z: 0.021972677, w: -0.0037729775} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.866667 + value: {x: 0.37840837, y: -0.08680161, z: -0.04284097, w: 0.9205635} + inSlope: {x: -0.0034274193, y: -0.0030952722, z: 0.005215504, w: 0.0013589872} + outSlope: {x: -0.0034274193, y: -0.0030952722, z: 0.005215504, w: 0.0013589872} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.5000005 + value: {x: 0.37301266, y: -0.07509202, z: -0.055237208, w: 0.9231314} + inSlope: {x: -0.003043416, y: 0.0140611585, z: -0.015204451, w: 0.0014635934} + outSlope: {x: -0.003043416, y: 0.0140611585, z: -0.015204451, w: 0.0014635934} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.566668 + value: {x: 0.3677358, y: -0.062235024, z: -0.06743973, w: 0.9253913} + inSlope: {x: -0.012034017, y: 0.008994556, z: -0.0020954479, w: 0.0052391784} + outSlope: {x: -0.012034017, y: 0.008994556, z: -0.0020954479, w: 0.0052391784} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.050364424, y: 0.008706336, z: -0.6206985, w: 0.7823816} + inSlope: {x: -0.0010028109, y: 0.000113965936, z: 0.01238644, w: 0.009884833} + outSlope: {x: -0.0010028109, y: 0.000113965936, z: 0.01238644, w: 0.009884833} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6333334 + value: {x: 0.048714567, y: 0.0088823065, z: -0.60036385, w: 0.7981925} + inSlope: {x: -0.0010038735, y: 0.00010408936, z: 0.012376618, w: 0.009367177} + outSlope: {x: -0.0010038735, y: 0.00010408936, z: 0.012376618, w: 0.009367177} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.266667 + value: {x: 0.047258697, y: 0.009030043, z: -0.5824203, w: 0.8114627} + inSlope: {x: -0.00017294678, y: 0.000016861612, z: 0.0021448752, w: 0.0015494243} + outSlope: {x: -0.00017294678, y: 0.000016861612, z: 0.0021448752, w: 0.0015494243} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.066667 + value: {x: 0.049764324, y: 0.008771523, z: -0.6133024, w: 0.7882301} + inSlope: {x: -0.00022564105, y: 0.00002549498, z: 0.0027930764, w: 0.0021868965} + outSlope: {x: -0.00022564105, y: 0.00002549498, z: 0.0027930764, w: 0.0021868965} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.1333337 + value: {x: 0.050374303, y: 0.008705307, z: -0.6208202, w: 0.78228444} + inSlope: {x: 0.0021136384, y: -0.00023290538, z: -0.026043382, w: -0.02080055} + outSlope: {x: 0.0021136384, y: -0.00023290538, z: -0.026043382, w: -0.02080055} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.8 + value: {x: 0.051397167, y: 0.008591491, z: -0.6334255, w: 0.77204716} + inSlope: {x: -0.00043507706, y: 0.000049383427, z: 0.005365317, w: 0.0044310135} + outSlope: {x: -0.00043507706, y: 0.000049383427, z: 0.005365317, w: 0.0044310135} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.433333 + value: {x: 0.050438464, y: 0.008698313, z: -0.6216111, w: 0.78165203} + inSlope: {x: -0.00019329047, y: 0.000022743272, z: 0.0024131404, w: 0.0019321216} + outSlope: {x: -0.00019329047, y: 0.000022743272, z: 0.0024131404, w: 0.0019321216} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.566668 + value: {x: 0.05040751, y: 0.008701671, z: -0.6212276, w: 0.7819588} + inSlope: {x: -0.00012896783, y: 0.000007767127, z: 0.0015860584, w: 0.0012677739} + outSlope: {x: -0.00012896783, y: 0.000007767127, z: 0.0015860584, w: 0.0012677739} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.043189414, y: 0.8532387, z: 0.072961375, w: 0.5145824} + inSlope: {x: 0.0057052816, y: -0.0006258487, z: -0.0018795579, w: 0.0017809867} + outSlope: {x: 0.0057052816, y: -0.0006258487, z: -0.0018795579, w: 0.0017809867} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6333334 + value: {x: -0.03292756, y: 0.8500348, z: 0.07742035, w: 0.5199642} + inSlope: {x: 0.0066334447, y: 0.0005713111, z: -0.003618974, w: 0.000024139998} + outSlope: {x: 0.0066334447, y: 0.0005713111, z: -0.003618974, w: 0.000024139998} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.266667 + value: {x: -0.024909679, y: 0.8504735, z: 0.07110126, w: 0.5205949} + inSlope: {x: -0.0011323123, y: -0.0014179959, z: 0.0018672664, w: 0.0020080823} + outSlope: {x: -0.0011323123, y: -0.0014179959, z: 0.0018672664, w: 0.0020080823} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.066667 + value: {x: -0.052487537, y: 0.84675324, z: 0.081799515, w: 0.52303237} + inSlope: {x: 0.009214737, y: 0.020595808, z: -0.026814964, w: -0.028232064} + outSlope: {x: 0.009214737, y: 0.020595808, z: -0.026814964, w: -0.028232064} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.0000005 + value: {x: -0.05274428, y: 0.85925716, z: 0.06374353, w: 0.5048088} + inSlope: {x: -0.022785107, y: 0.0014412287, z: -0.0023697163, w: -0.004533794} + outSlope: {x: -0.022785107, y: 0.0014412287, z: -0.0023697163, w: -0.004533794} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.06732611, y: 0.86046404, z: 0.061275817, w: 0.5013124} + inSlope: {x: 0.008526751, y: 0.00038713246, z: -0.0010444978, w: 0.0006070739} + outSlope: {x: 0.008526751, y: 0.00038713246, z: -0.0010444978, w: 0.0006070739} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.266667 + value: {x: -0.046508197, y: 0.85412836, z: 0.07175366, w: 0.5129846} + inSlope: {x: 0.012896578, y: -0.006284427, z: 0.010277328, w: 0.010195991} + outSlope: {x: 0.012896578, y: -0.006284427, z: 0.010277328, w: 0.010195991} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.566668 + value: {x: -0.043402556, y: 0.85325927, z: 0.07327469, w: 0.5144858} + inSlope: {x: 0.008312725, y: -0.0018775213, z: 0.005413296, w: 0.0030469487} + outSlope: {x: 0.008312725, y: -0.0018775213, z: 0.005413296, w: 0.0030469487} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.08230903, y: -0.08876322, z: -0.47181278, w: 0.87334937} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.08230903, y: -0.08876322, z: -0.47181278, w: 0.87334937} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.020216925, y: -0.13095498, z: 0.029759824, w: 0.9907353} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.020216925, y: -0.13095498, z: 0.029759824, w: 0.9907353} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.11187962, y: -0.043157835, z: 0.06851633, w: 0.990417} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: -0.11187962, y: -0.043157835, z: 0.06851633, w: 0.990417} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2/mixamorig:LeftHandThumb3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.020066764, y: 0.040932342, z: 0.014504475, w: 0.9988551} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.020066764, y: 0.040932342, z: 0.014504475, w: 0.9988551} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2/mixamorig:LeftHandThumb3/mixamorig:LeftHandThumb4 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.52725667, y: 0.049131036, z: -0.0017949231, w: 0.84828264} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.52725667, y: 0.049131036, z: -0.0017949231, w: 0.84828264} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.5346588, y: -0.0044015083, z: 0.07392787, w: 0.84181666} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.5346588, y: -0.0044015083, z: 0.07392787, w: 0.84181666} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.29552224, y: 0.00000004259299, z: 0.039288804, w: 0.9545276} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.29552224, y: 0.00000004259299, z: 0.039288804, w: 0.9545276} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2/mixamorig:LeftHandIndex3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.044488665, y: 0.000000011914793, z: -0.0000000082773415, w: 0.9990099} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.044488665, y: 0.000000011914793, z: -0.0000000082773415, w: 0.9990099} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2/mixamorig:LeftHandIndex3/mixamorig:LeftHandIndex4 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.5619301, y: 0.027315538, z: 0.053429592, w: 0.82500523} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.5619301, y: 0.027315538, z: 0.053429592, w: 0.82500523} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.525876, y: -0.011388979, z: 0.0763789, w: 0.8470484} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.525876, y: -0.011388979, z: 0.0763789, w: 0.8470484} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.25774014, y: 0.0029408918, z: 0.035217702, w: 0.96556777} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.25774014, y: 0.0029408918, z: 0.035217702, w: 0.96556777} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2/mixamorig:LeftHandMiddle3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.010558693, y: -0.0028613093, z: -0.0028610115, w: 0.9999361} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.010558693, y: -0.0028613093, z: -0.0028610115, w: 0.9999361} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2/mixamorig:LeftHandMiddle3/mixamorig:LeftHandMiddle4 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.6351033, y: -0.001025416, z: 0.075982384, w: 0.76868033} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.6351033, y: -0.001025416, z: 0.075982384, w: 0.76868033} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.38113517, y: -0.00013206946, z: 0.050672367, w: 0.9231296} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.38113517, y: -0.00013206946, z: 0.050672367, w: 0.9231296} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.23182775, y: -0.000000016311873, z: 0.030787997, w: 0.97226954} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.23182775, y: -0.000000016311873, z: 0.030787997, w: 0.97226954} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2/mixamorig:LeftHandPinky3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.04451906, y: -0.000000010890761, z: 0.000000012911383, w: 0.99900854} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.04451906, y: -0.000000010890761, z: 0.000000012911383, w: 0.99900854} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2/mixamorig:LeftHandPinky3/mixamorig:LeftHandPinky4 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.5820841, y: 0.39321658, z: -0.45136157, w: 0.5503013} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.5820841, y: 0.39321658, z: -0.45136157, w: 0.5503013} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.40621585, y: 0.15145828, z: 0.15426609, w: 0.887835} + inSlope: {x: -0.0011399387, y: 0.002118498, z: -0.0046987827, w: 0.000976324} + outSlope: {x: -0.0011399387, y: 0.002118498, z: -0.0046987827, w: 0.000976324} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6333334 + value: {x: 0.4044372, y: 0.15491089, z: 0.14679222, w: 0.8893173} + inSlope: {x: -0.002613815, y: 0.0005692994, z: -0.0061713215, w: 0.0021082181} + outSlope: {x: -0.002613815, y: 0.0005692994, z: -0.0061713215, w: 0.0021082181} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.266667 + value: {x: 0.39847922, y: 0.15389824, z: 0.13521473, w: 0.89400595} + inSlope: {x: -0.0013165189, y: -0.00037506258, z: -0.003282133, w: 0.0011488807} + outSlope: {x: -0.0013165189, y: -0.00037506258, z: -0.003282133, w: 0.0011488807} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.9333334 + value: {x: 0.4050796, y: 0.15483092, z: 0.14798954, w: 0.8888403} + inSlope: {x: 0.002662095, y: 0.0006021565, z: 0.0050624507, w: -0.0021609685} + outSlope: {x: 0.002662095, y: 0.0006021565, z: 0.0050624507, w: -0.0021609685} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.566667 + value: {x: 0.40676484, y: 0.15436053, z: 0.15225327, w: 0.88743126} + inSlope: {x: 0.00009655961, y: -0.0011647504, z: 0.0015058382, w: -0.00009924183} + outSlope: {x: 0.00009655961, y: -0.0011647504, z: 0.0015058382, w: -0.00009924183} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.233334 + value: {x: 0.40628666, y: 0.15187909, z: 0.15386254, w: 0.88780075} + inSlope: {x: -0.00028789084, y: -0.0014841572, z: 0.0009794541, w: 0.00021547108} + outSlope: {x: -0.00028789084, y: -0.0014841572, z: 0.0009794541, w: 0.00021547108} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.566668 + value: {x: 0.40633622, y: 0.15149507, z: 0.15421347, w: 0.8877828} + inSlope: {x: 0.0000053643466, y: -0.00000402326, z: 0, w: -0.0000017881155} + outSlope: {x: 0.0000053643466, y: -0.00000402326, z: 0, w: -0.0000017881155} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.060959674, y: -0.0073125577, z: 0.751275, w: 0.6571274} + inSlope: {x: -0.00023715197, y: -0.000038975846, z: -0.0029450653, w: 0.0033867357} + outSlope: {x: -0.00023715197, y: -0.000038975846, z: -0.0029450653, w: 0.0033867357} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6333334 + value: {x: 0.0605845, y: -0.0073715174, z: 0.7466503, w: 0.66241115} + inSlope: {x: -0.000051688454, y: -0.000007662464, z: -0.0006276375, w: 0.0007107861} + outSlope: {x: -0.000051688454, y: -0.000007662464, z: -0.0006276375, w: 0.0007107861} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.266667 + value: {x: 0.0607371, y: -0.0073475405, z: 0.7485334, w: 0.6602687} + inSlope: {x: 0.00012813148, y: 0.000022093322, z: 0.0015923396, w: -0.0018167513} + outSlope: {x: 0.00012813148, y: 0.000022093322, z: 0.0015923396, w: -0.0018167513} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.9333334 + value: {x: 0.06060715, y: -0.007367945, z: 0.746931, w: 0.66209257} + inSlope: {x: -0.00011634093, y: -0.000017343571, z: -0.0014260425, w: 0.0016173737} + outSlope: {x: -0.00011634093, y: -0.000017343571, z: -0.0014260425, w: 0.0016173737} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.566667 + value: {x: 0.06062643, y: -0.0073648826, z: 0.7471677, w: 0.66182375} + inSlope: {x: 0.00012556103, y: 0.00001980925, z: 0.0015807167, w: -0.0017961877} + outSlope: {x: 0.00012556103, y: 0.00001980925, z: 0.0015807167, w: -0.0017961877} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.233334 + value: {x: 0.06090736, y: -0.0073207864, z: 0.7506299, w: 0.65786886} + inSlope: {x: 0.00016646477, y: 0.00002529941, z: 0.002063515, w: -0.002368393} + outSlope: {x: 0.00016646477, y: 0.00002529941, z: 0.002063515, w: -0.002368393} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.566668 + value: {x: 0.06095969, y: -0.007312517, z: 0.751275, w: 0.6571273} + inSlope: {x: 0.00014751953, y: 0.000030803083, z: 0.0018042085, w: -0.002076002} + outSlope: {x: 0.00014751953, y: 0.000030803083, z: 0.0018042085, w: -0.002076002} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.23975046, y: -0.26762944, z: -0.14488174, w: 0.9219021} + inSlope: {x: -0.0010348856, y: -0.0015377997, z: 0.004635751, w: 0.0005507469} + outSlope: {x: -0.0010348856, y: -0.0015377997, z: 0.004635751, w: 0.0005507469} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6333334 + value: {x: 0.23780231, y: -0.27286264, z: -0.13857594, w: 0.9218421} + inSlope: {x: -0.000035539302, y: -0.00011980545, z: 0.00016719119, w: -0.000001788141} + outSlope: {x: -0.000035539302, y: -0.00011980545, z: 0.00016719119, w: -0.000001788141} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.266667 + value: {x: 0.2378255, y: -0.27281484, z: -0.13864495, w: 0.92183983} + inSlope: {x: -0.00032275947, y: -0.0011569273, z: 0.0010384629, w: -0.000102818114} + outSlope: {x: -0.00032275947, y: -0.0011569273, z: 0.0010384629, w: -0.000102818114} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.1333337 + value: {x: 0.24801613, y: -0.27784342, z: -0.13168015, w: 0.91866827} + inSlope: {x: 0.021161085, y: 0.0123363845, z: -0.047138974, w: -0.008741328} + outSlope: {x: 0.021161085, y: 0.0123363845, z: -0.047138974, w: -0.008741328} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.8 + value: {x: 0.27537504, y: -0.2723533, z: -0.15180318, w: 0.9093669} + inSlope: {x: 0.002940598, y: 0.00039473214, z: 0.0017617659, w: -0.0004792218} + outSlope: {x: 0.002940598, y: 0.00039473214, z: 0.0017617659, w: -0.0004792218} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.433334 + value: {x: 0.25865322, y: -0.26968446, z: -0.14824124, w: 0.91563827} + inSlope: {x: -0.017527806, y: 0.0020228345, z: 0.003202784, w: 0.00606448} + outSlope: {x: -0.017527806, y: 0.0020228345, z: 0.003202784, w: 0.00606448} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.566668 + value: {x: 0.23977275, y: -0.26745734, z: -0.14483225, w: 0.92195404} + inSlope: {x: -0.01349893, y: 0.0017925857, z: 0.0024827984, w: 0.0044255857} + outSlope: {x: -0.01349893, y: 0.0017925857, z: 0.0024827984, w: 0.0044255857} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.38833296, y: 0.28283358, z: 0.33572036, w: 0.8102435} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.38833296, y: 0.28283358, z: 0.33572036, w: 0.8102435} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.14302097, y: 0.27054727, z: -0.26273102, w: 0.9150528} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: -0.14302097, y: 0.27054727, z: -0.26273102, w: 0.9150528} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.021491483, y: 0.050826315, z: -0.452259, w: 0.8901779} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.021491483, y: 0.050826315, z: -0.452259, w: 0.8901779} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2/mixamorig:RightHandThumb3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.02006682, y: -0.040932275, z: -0.014504491, w: 0.9988551} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.02006682, y: -0.040932275, z: -0.014504491, w: 0.9988551} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2/mixamorig:RightHandThumb3/mixamorig:RightHandThumb4 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.10662278, y: -0.025746547, z: 0.041861746, w: 0.99308425} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.10662278, y: -0.025746547, z: 0.041861746, w: 0.99308425} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.4510986, y: 0.004658248, z: -0.052820675, w: 0.8908975} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.4510986, y: 0.004658248, z: -0.052820675, w: 0.8908975} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.5697259, y: -0.00000015485489, z: -0.06369333, w: 0.81936294} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.5697259, y: -0.00000015485489, z: -0.06369333, w: 0.81936294} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2/mixamorig:RightHandIndex3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.04448856, y: 0.0000000036744985, z: -0.000000021536104, w: 0.9990099} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.04448856, y: 0.0000000036744985, z: -0.000000021536104, w: 0.9990099} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2/mixamorig:RightHandIndex3/mixamorig:RightHandIndex4 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.45358685, y: -0.028650686, z: -0.027662467, w: 0.89032185} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.45358685, y: -0.028650686, z: -0.027662467, w: 0.89032185} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.76680744, y: 0.008365928, z: -0.09537103, w: 0.6346974} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.76680744, y: 0.008365928, z: -0.09537103, w: 0.6346974} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.711122, y: -0.0023630888, z: -0.081236094, w: 0.6983557} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.711122, y: -0.0023630888, z: -0.081236094, w: 0.6983557} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2/mixamorig:RightHandMiddle3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.010558617, y: 0.0028613375, z: 0.0028610392, w: 0.9999361} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.010558617, y: 0.0028613375, z: 0.0028610392, w: 0.9999361} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2/mixamorig:RightHandMiddle3/mixamorig:RightHandMiddle4 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.5890058, y: 0.018781543, z: -0.0834176, w: 0.8035925} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.5890058, y: 0.018781543, z: -0.0834176, w: 0.8035925} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.48052412, y: 0.00012533626, z: -0.053722907, w: 0.8753345} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.48052412, y: 0.00012533626, z: -0.053722907, w: 0.8753345} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.3329109, y: -0.000000026206775, z: -0.03717147, w: 0.9422254} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.3329109, y: -0.000000026206775, z: -0.03717147, w: 0.9422254} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2/mixamorig:RightHandPinky3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.04451908, y: -0.00000004775173, z: 3.8282805e-10, w: 0.99900854} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.04451908, y: -0.00000004775173, z: 3.8282805e-10, w: 0.99900854} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2/mixamorig:RightHandPinky3/mixamorig:RightHandPinky4 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.10330437, y: 0.068327546, z: 0.99215096, w: 0.017203951} + inSlope: {x: 0.000106394284, y: -0.008718297, z: 0.00077247614, w: -0.009383651} + outSlope: {x: 0.000106394284, y: -0.008718297, z: 0.00077247614, w: -0.009383651} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6333334 + value: {x: -0.09984594, y: 0.072891854, z: 0.9923284, w: -0.0013933952} + inSlope: {x: 0.0030018417, y: 0.0076621845, z: -0.00028073814, w: -0.013411798} + outSlope: {x: 0.0030018417, y: 0.0076621845, z: -0.00028073814, w: -0.013411798} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.9333334 + value: {x: -0.09779217, y: 0.06760048, z: 0.99277395, w: -0.016331797} + inSlope: {x: 0.0029913178, y: -0.0116736125, z: 0.00096201565, w: -0.0077172783} + outSlope: {x: 0.0029913178, y: -0.0116736125, z: 0.00096201565, w: -0.0077172783} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.566667 + value: {x: -0.09561089, y: 0.06951525, z: 0.9928286, w: -0.017819237} + inSlope: {x: 0.0011968252, y: 0.016292311, z: -0.0010031471, w: 0.0011642195} + outSlope: {x: 0.0011968252, y: 0.016292311, z: -0.0010031471, w: 0.0011642195} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.2333336 + value: {x: -0.09898961, y: 0.07426565, z: 0.9923121, w: -0.0015418116} + inSlope: {x: -0.0051941024, y: -0.0019817073, z: -0.00034242903, w: 0.017007768} + outSlope: {x: -0.0051941024, y: -0.0019817073, z: -0.00034242903, w: 0.017007768} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.8666673 + value: {x: -0.103969134, y: 0.07069425, z: 0.99190557, w: 0.01777904} + inSlope: {x: -0.00047989233, y: -0.0031416519, z: 0.000046491667, w: 0.007098836} + outSlope: {x: -0.00047989233, y: -0.0031416519, z: 0.000046491667, w: 0.007098836} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.566668 + value: {x: -0.103320844, y: 0.0681498, z: 0.9921629, w: 0.017125161} + inSlope: {x: 0.0025433707, y: -0.0003810921, z: 0.00041841902, w: -0.007304508} + outSlope: {x: 0.0025433707, y: -0.0003810921, z: 0.00041841902, w: -0.007304508} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.13609383, y: 0.061272964, z: -0.071809866, w: 0.98618835} + inSlope: {x: 0.008376539, y: 0.012345425, z: -0.0020789355, w: 0.00023424624} + outSlope: {x: 0.008376539, y: 0.012345425, z: -0.0020789355, w: 0.00023424624} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6333334 + value: {x: -0.17053609, y: 0.080763705, z: -0.07532407, w: 0.97914296} + inSlope: {x: -0.025282973, y: 0.0020612795, z: -0.004332554, w: -0.004905765} + outSlope: {x: -0.025282973, y: 0.0020612795, z: -0.004332554, w: -0.004905765} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.266667 + value: {x: -0.19070515, y: 0.082902096, z: -0.07566989, w: 0.9752092} + inSlope: {x: 0.00032477113, y: 0.0023650401, z: -0.00066921185, w: -0.00018864888} + outSlope: {x: 0.00032477113, y: 0.0023650401, z: -0.00066921185, w: -0.00018864888} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.866667 + value: {x: -0.17236227, y: 0.06286742, z: -0.06678396, w: 0.98075426} + inSlope: {x: -0.0020411632, y: -0.029842734, z: 0.011326868, w: 0.002331736} + outSlope: {x: -0.0020411632, y: -0.029842734, z: 0.011326868, w: 0.002331736} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.266667 + value: {x: -0.15779607, y: 0.06775779, z: -0.070500426, w: 0.98261845} + inSlope: {x: 0.012430262, y: 0.017927231, z: -0.0058739316, w: 0.00034153493} + outSlope: {x: 0.012430262, y: 0.017927231, z: -0.0058739316, w: 0.00034153493} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.433334 + value: {x: -0.14762418, y: 0.06228454, z: -0.070731, w: 0.984543} + inSlope: {x: 0.007857092, y: -0.012626735, z: 0.003144781, w: 0.0022003076} + outSlope: {x: 0.007857092, y: -0.012626735, z: 0.003144781, w: 0.0022003076} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.566668 + value: {x: -0.13563596, y: 0.06122194, z: -0.071868025, w: 0.98625034} + inSlope: {x: 0.003527952, y: 0.01145478, z: -0.002686867, w: -0.00042020713} + outSlope: {x: 0.003527952, y: 0.01145478, z: -0.002686867, w: -0.00042020713} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.52444685, y: 0.038447037, z: 0.04562292, w: 0.8493503} + inSlope: {x: 0.0020813942, y: -0.004690289, z: -0.004830546, w: -0.0008153915} + outSlope: {x: 0.0020813942, y: -0.004690289, z: -0.004830546, w: -0.0008153915} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6333334 + value: {x: 0.55620855, y: 0.032515254, z: 0.031802982, w: 0.8297972} + inSlope: {x: 0.020798761, y: 0.008967304, z: -0.011489309, w: -0.013853623} + outSlope: {x: 0.020798761, y: 0.008967304, z: -0.011489309, w: -0.013853623} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.966667 + value: {x: 0.5813931, y: 0.049543235, z: 0.01517949, w: 0.8119712} + inSlope: {x: 0.008482913, y: 0.014751861, z: -0.010512322, w: -0.0067725596} + outSlope: {x: 0.008482913, y: 0.014751861, z: -0.010512322, w: -0.0067725596} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.166667 + value: {x: 0.57548857, y: 0.049568053, z: 0.012147757, w: 0.8162159} + inSlope: {x: -0.032654136, y: -0.018859189, z: -0.0070998278, w: 0.024270438} + outSlope: {x: -0.032654136, y: -0.018859189, z: -0.0070998278, w: 0.024270438} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.55294526, y: 0.035700627, z: 0.0073307846, w: 0.8324201} + inSlope: {x: -0.011986803, y: 0.005142917, z: 0.010227986, w: 0.007654138} + outSlope: {x: -0.011986803, y: 0.005142917, z: 0.010227986, w: 0.007654138} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.866667 + value: {x: 0.5358082, y: 0.03245288, z: 0.036245383, w: 0.842937} + inSlope: {x: -0.010197723, y: 0.0068688616, z: 0.009666885, w: 0.005802495} + outSlope: {x: -0.010197723, y: 0.0068688616, z: 0.009666885, w: 0.005802495} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.5 + value: {x: 0.5244036, y: 0.038651653, z: 0.045888323, w: 0.8493534} + inSlope: {x: -0.005248186, y: -0.0030805126, z: -0.003680769, w: 0.0035789586} + outSlope: {x: -0.005248186, y: -0.0030805126, z: -0.003680769, w: 0.0035789586} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.566668 + value: {x: 0.52413726, y: 0.03842836, z: 0.045624316, w: 0.8495422} + inSlope: {x: -0.0022047465, y: -0.0030995863, z: -0.0037082161, w: 0.001702286} + outSlope: {x: -0.0022047465, y: -0.0030995863, z: -0.0037082161, w: 0.001702286} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.1697029, y: 0.028958991, z: -0.1220501, w: 0.97747946} + inSlope: {x: 0.003094375, y: 0.00047056001, z: -0.000065267086, w: -0.00055968756} + outSlope: {x: 0.003094375, y: 0.00047056001, z: -0.000065267086, w: -0.00055968756} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6333334 + value: {x: 0.17373471, y: 0.029571114, z: -0.122133315, w: 0.9767422} + inSlope: {x: -0.002588334, y: -0.00039313958, z: 0.00005330895, w: 0.0004792218} + outSlope: {x: -0.002588334, y: -0.00039313958, z: 0.00005330895, w: 0.0004792218} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.266667 + value: {x: 0.17498669, y: 0.029761156, z: -0.12215853, w: 0.9765097} + inSlope: {x: 0.0002702328, y: 0.000040819905, z: -0.0000062584936, w: -0.00005006795} + outSlope: {x: 0.0002702328, y: 0.000040819905, z: -0.0000062584936, w: -0.00005006795} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.9333334 + value: {x: 0.17292629, y: 0.02944835, z: -0.12211671, w: 0.9768914} + inSlope: {x: 0.002948868, y: 0.00044776167, z: -0.000060014485, w: -0.00054270076} + outSlope: {x: 0.002948868, y: 0.00044776167, z: -0.000060014485, w: -0.00054270076} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.566667 + value: {x: 0.1708278, y: 0.029129785, z: -0.12207353, w: 0.9772755} + inSlope: {x: 0.0021030772, y: 0.00031957435, z: -0.000044144734, w: -0.00038266217} + outSlope: {x: 0.0021030772, y: 0.00031957435, z: -0.000044144734, w: -0.00038266217} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.233334 + value: {x: 0.16975147, y: 0.028966373, z: -0.12205115, w: 0.9774707} + inSlope: {x: -0.0017228776, y: -0.0002610412, z: 0.000036098165, w: 0.0003120313} + outSlope: {x: -0.0017228776, y: -0.0002610412, z: 0.000036098165, w: 0.0003120313} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.566668 + value: {x: 0.16970254, y: 0.028958919, z: -0.12205009, w: 0.9774795} + inSlope: {x: -0.0035587968, y: -0.00054062554, z: 0.00007465382, w: 0.00064372155} + outSlope: {x: -0.0035587968, y: -0.00054062554, z: 0.00007465382, w: 0.00064372155} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot/mixamorig:LeftToeBase + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.04573715, y: 0.039433047, z: 0.0727525, w: 0.99552006} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.04573715, y: 0.039433047, z: 0.0727525, w: 0.99552006} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot/mixamorig:LeftToeBase/mixamorig:LeftToe_End + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.1422966, y: -0.10651207, z: 0.9835715, w: -0.031527035} + inSlope: {x: -0.0011448561, y: -0.003978163, z: -0.00061869615, w: -0.010974704} + outSlope: {x: -0.0011448561, y: -0.003978163, z: -0.00061869615, w: -0.010974704} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333334 + value: {x: 0.15297547, y: -0.11661403, z: 0.9795744, w: -0.058598567} + inSlope: {x: 0.0060298354, y: -0.0021113476, z: -0.0021994135, w: -0.016921012} + outSlope: {x: 0.0060298354, y: -0.0021113476, z: -0.0021994135, w: -0.016921012} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.8666668 + value: {x: 0.16039096, y: -0.12340152, z: 0.9757573, w: -0.083334155} + inSlope: {x: 0.0066371327, y: -0.00908141, z: -0.0036236676, w: -0.01625789} + outSlope: {x: 0.0066371327, y: -0.00908141, z: -0.0036236676, w: -0.01625789} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.066667 + value: {x: 0.16288458, y: -0.12725063, z: 0.9747173, w: -0.08486491} + inSlope: {x: -0.0014732047, y: 0.026353177, z: 0.0040268935, w: 0.0038671903} + outSlope: {x: -0.0014732047, y: 0.026353177, z: 0.0040268935, w: 0.0038671903} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.9333334 + value: {x: 0.16468748, y: -0.12777656, z: 0.97524667, w: -0.0737912} + inSlope: {x: -0.00054717116, y: -0.005683383, z: -0.00005185609, w: 0.0079155415} + outSlope: {x: -0.00054717116, y: -0.005683383, z: -0.00005185609, w: 0.0079155415} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.933334 + value: {x: 0.1577749, y: -0.118269, z: 0.9785112, w: -0.06029369} + inSlope: {x: -0.015762586, y: 0.0080166375, z: 0.0046768533, w: 0.018971547} + outSlope: {x: -0.015762586, y: 0.0080166375, z: 0.0046768533, w: 0.018971547} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.6000004 + value: {x: 0.1427515, y: -0.10917243, z: 0.983098, w: -0.0349543} + inSlope: {x: -0.008405157, y: 0.0022336117, z: 0.0018981118, w: 0.012045365} + outSlope: {x: -0.008405157, y: 0.0022336117, z: 0.0018981118, w: 0.012045365} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.566668 + value: {x: 0.14229013, y: -0.10644124, z: 0.9835802, w: -0.031524945} + inSlope: {x: 0.005974094, y: -0.0030936634, z: -0.0013965182, w: -0.0061888914} + outSlope: {x: 0.005974094, y: -0.0030936634, z: -0.0013965182, w: -0.0061888914} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.18203177, y: -0.0742741, z: 0.09931211, w: 0.9754409} + inSlope: {x: 0.017016828, y: 0.012275129, z: -0.0036265699, w: 0.004470348} + outSlope: {x: 0.017016828, y: 0.012275129, z: -0.0036265699, w: 0.004470348} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.15255621, y: -0.074679375, z: 0.09696071, w: 0.9806876} + inSlope: {x: 0.027368795, y: 0.003941839, z: 0.00042792258, w: 0.004516837} + outSlope: {x: 0.027368795, y: 0.003941839, z: 0.00042792258, w: 0.004516837} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.6333334 + value: {x: -0.12050734, y: -0.052903127, z: 0.09294446, w: 0.98693496} + inSlope: {x: 0.034969445, y: 0.024950825, z: -0.0024111965, w: 0.0058391746} + outSlope: {x: 0.034969445, y: 0.024950825, z: -0.0024111965, w: 0.0058391746} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.4333334 + value: {x: -0.09663582, y: -0.046334963, z: 0.0914259, w: 0.99002826} + inSlope: {x: 0.018760115, y: -0.008778756, z: 0.0022788695, w: 0.0012132493} + outSlope: {x: 0.018760115, y: -0.008778756, z: 0.0022788695, w: 0.0012132493} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.2333336 + value: {x: -0.11419897, y: -0.049188327, z: 0.09384133, w: 0.98779196} + inSlope: {x: -0.064627774, y: -0.019363947, z: 0.006752691, w: -0.009092698} + outSlope: {x: -0.064627774, y: -0.019363947, z: 0.006752691, w: -0.009092698} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.8 + value: {x: -0.11759914, y: -0.067670375, z: 0.09879506, w: 0.98581475} + inSlope: {x: 0.011932489, y: -0.02573012, z: 0.0011409456, w: -0.0004345183} + outSlope: {x: 0.011932489, y: -0.02573012, z: 0.0011409456, w: -0.0004345183} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.066667 + value: {x: -0.1494048, y: -0.07749966, z: 0.10103764, w: 0.9805424} + inSlope: {x: -0.02036469, y: -0.0022338352, z: 0.00016931462, w: -0.0033035907} + outSlope: {x: -0.02036469, y: -0.0022338352, z: 0.00016931462, w: -0.0033035907} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.7333336 + value: {x: -0.17852356, y: -0.073901646, z: 0.09859045, w: 0.97619045} + inSlope: {x: -0.008269258, y: 0.0022424408, z: -0.00014975679, w: -0.0013276946} + outSlope: {x: -0.008269258, y: 0.0022424408, z: -0.00014975679, w: -0.0013276946} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.566668 + value: {x: -0.18225764, y: -0.074278906, z: 0.09936113, w: 0.97539335} + inSlope: {x: 0.0085726725, y: -0.010316309, z: 0.0046980497, w: 0.00034153005} + outSlope: {x: 0.0085726725, y: -0.010316309, z: 0.0046980497, w: 0.00034153005} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.69759643, y: -0.099760756, z: -0.061202407, w: 0.7068672} + inSlope: {x: -0.010569691, y: -0.0037206707, z: -0.0019715354, w: 0.009729265} + outSlope: {x: -0.010569691, y: -0.0037206707, z: -0.0019715354, w: 0.009729265} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4666667 + value: {x: 0.67366457, y: -0.084464975, z: -0.09210086, w: 0.7283949} + inSlope: {x: -0.011536172, y: 0.0085146595, z: -0.019466002, w: 0.009192817} + outSlope: {x: -0.011536172, y: 0.0085146595, z: -0.019466002, w: 0.009192817} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.1000001 + value: {x: 0.65712893, y: -0.09205067, z: -0.10463855, w: 0.7407827} + inSlope: {x: -0.01735838, y: -0.0040663444, z: -0.0054032034, w: 0.014140619} + outSlope: {x: -0.01735838, y: -0.0040663444, z: -0.0054032034, w: 0.014140619} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.2333336 + value: {x: 0.6583123, y: -0.09188757, z: -0.10313082, w: 0.73996323} + inSlope: {x: 0.020272154, y: 0.005078544, z: 0.009031565, w: -0.01615049} + outSlope: {x: 0.020272154, y: 0.005078544, z: 0.009031565, w: -0.01615049} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.3 + value: {x: 0.66206443, y: -0.0939005, z: -0.103416935, w: 0.736314} + inSlope: {x: 0.019547958, y: 0.002322013, z: 0.008009531, w: -0.016161218} + outSlope: {x: 0.019547958, y: 0.002322013, z: 0.008009531, w: -0.016161218} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.933334 + value: {x: 0.6875262, y: -0.09662456, z: -0.07645479, w: 0.7156298} + inSlope: {x: 0.011974286, y: -0.011773903, z: 0.02293995, w: -0.010646592} + outSlope: {x: 0.011974286, y: -0.011773903, z: 0.02293995, w: -0.010646592} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.566668 + value: {x: 0.69765896, y: -0.099752404, z: -0.061188962, w: 0.70680785} + inSlope: {x: -0.004105513, y: 0.012997141, z: -0.017628472, w: 0.0043719425} + outSlope: {x: -0.004105513, y: 0.012997141, z: -0.017628472, w: 0.0043719425} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.18977803, y: -0.03200634, z: 0.12244377, w: 0.9736362} + inSlope: {x: -0.0002235174, y: 0.00003375113, z: -0.0000058114524, w: 0.00004470348} + outSlope: {x: -0.0002235174, y: 0.00003375113, z: -0.0000058114524, w: 0.00004470348} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6333334 + value: {x: 0.18840021, y: -0.03179726, z: 0.12241829, w: 0.9739138} + inSlope: {x: -0.006308114, y: 0.00095548196, z: -0.000115446855, w: 0.001266898} + outSlope: {x: -0.006308114, y: 0.00095548196, z: -0.000115446855, w: 0.001266898} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.266667 + value: {x: 0.18598105, y: -0.03143005, z: 0.122373, w: 0.9743963} + inSlope: {x: -0.001116247, y: 0.00017026455, z: -0.00002268704, w: 0.0002217295} + outSlope: {x: -0.001116247, y: 0.00017026455, z: -0.00002268704, w: 0.0002217295} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.9333334 + value: {x: 0.18428864, y: -0.031173196, z: 0.12234122, w: 0.97473} + inSlope: {x: -0.00237711, y: 0.00036039425, z: -0.00004425649, w: 0.0004667048} + outSlope: {x: -0.00237711, y: 0.00036039425, z: -0.00004425649, w: 0.0004667048} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.566667 + value: {x: 0.18697678, y: -0.031581193, z: 0.12239184, w: 0.9741984} + inSlope: {x: 0.001710804, y: -0.00026084506, z: 0.00003475699, w: -0.00034153493} + outSlope: {x: 0.001710804, y: -0.00026084506, z: 0.00003475699, w: -0.00034153493} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.233334 + value: {x: 0.18758929, y: -0.03167411, z: 0.12240322, w: 0.9740762} + inSlope: {x: 0.0027186153, y: -0.0004115473, z: 0.000048167458, w: -0.00054358895} + outSlope: {x: 0.0027186153, y: -0.0004115473, z: 0.000048167458, w: -0.00054358895} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.566668 + value: {x: 0.18760386, y: -0.031676386, z: 0.12240357, w: 0.9740733} + inSlope: {x: 0.005437659, y: -0.0008264446, z: 0.00010326367, w: -0.0010871742} + outSlope: {x: 0.005437659, y: -0.0008264446, z: 0.00010326367, w: -0.0010871742} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot/mixamorig:RightToeBase + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.04573715, y: -0.039433047, z: -0.0727525, w: 0.99552006} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.04573715, y: -0.039433047, z: -0.0727525, w: 0.99552006} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot/mixamorig:RightToeBase/mixamorig:RightToe_End + m_CompressedRotationCurves: [] + m_EulerCurves: [] + m_PositionCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.0003571545, y: 0.017262194, z: -0.000043863536} + inSlope: {x: -0.0003553033, y: 0.00006645576, z: 0.000109945875} + outSlope: {x: -0.0003553033, y: 0.00006645576, z: 0.000109945875} + tangentMode: 0 + weightedMode: 0 + 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.00044218823, y: 0.01728089, z: -0.000009879601} + inSlope: {x: -0.00030960335, y: 0.00007108446, z: 0.00012954079} + outSlope: {x: -0.00030960495, y: 0.00007081201, z: 0.0001295416} + tangentMode: 0 + weightedMode: 0 + 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.0004527182, y: 0.017283378, z: -0.000005601287} + inSlope: {x: -0.00030069088, y: 0.00006280796, z: 0.00013043001} + outSlope: {x: -0.0003006873, y: 0.00006294591, z: 0.00013043043} + tangentMode: 0 + weightedMode: 0 + 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.0004622339, y: 0.017285073, z: -0.000001184231} + inSlope: {x: -0.0003050193, y: 0.000059539925, z: 0.00013132054} + outSlope: {x: -0.00030502913, y: 0.000059369624, z: 0.00013132076} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: -0.00047305287, y: 0.017287334, z: 0.0000031534432} + inSlope: {x: -0.00033025997, y: 0.000068565765, z: 0.00013231102} + outSlope: {x: -0.00033024905, y: 0.000068419315, z: 0.00013231109} + tangentMode: 0 + weightedMode: 0 + 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.0004962201, y: 0.0172923, z: 0.000012107241} + inSlope: {x: -0.00036097283, y: 0.0000754169, z: 0.00013424222} + outSlope: {x: -0.00036097053, y: 0.000075347074, z: 0.00013424242} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.56666666 + value: {x: -0.00054917095, y: 0.017300827, z: 0.000029897774} + inSlope: {x: -0.00044240753, y: 0.0000639371, z: 0.00012970051} + outSlope: {x: -0.0004424069, y: 0.00006345675, z: 0.00012969835} + tangentMode: 0 + weightedMode: 0 + 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.00059740135, y: 0.017306764, z: 0.00004305122} + inSlope: {x: -0.0005184338, y: 0.00005605556, z: 0.00013567475} + outSlope: {x: -0.0005184448, y: 0.00005582916, z: 0.00013567609} + tangentMode: 0 + weightedMode: 0 + 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.0007557467, y: 0.017316025, z: 0.00007912039} + inSlope: {x: -0.00063771574, y: 0.000025795161, z: 0.0001434607} + outSlope: {x: -0.0006377109, y: 0.000025829268, z: 0.00014346156} + tangentMode: 0 + weightedMode: 0 + 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.00086090836, y: 0.01731949, z: 0.00010289694} + inSlope: {x: -0.00060304574, y: 0.000013804447, z: 0.0001573104} + outSlope: {x: -0.0006030534, y: 0.000013753356, z: 0.00015731025} + tangentMode: 0 + weightedMode: 0 + 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.0009862146, y: 0.0173209, z: 0.0001391782} + inSlope: {x: -0.00047327104, y: -0.0000052622227, z: 0.0001662744} + outSlope: {x: -0.00047328498, y: -0.000004965924, z: 0.00016627775} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.7333333 + value: {x: -0.0011697084, y: 0.017319579, z: 0.00020730305} + inSlope: {x: -0.0004343773, y: -0.0000045861557, z: 0.00018032569} + outSlope: {x: -0.0004343894, y: -0.0000044822723, z: 0.00018032796} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.2 + value: {x: -0.001354552, y: 0.01731563, z: 0.00029616556} + inSlope: {x: -0.00036339727, y: -0.000006341941, z: 0.0002160461} + outSlope: {x: -0.0003633945, y: -0.000006323205, z: 0.00021604929} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.5666666 + value: {x: -0.001481447, y: 0.017313397, z: 0.00040686576} + inSlope: {x: -0.0003373553, y: 0.0000032714456, z: 0.00040311174} + outSlope: {x: -0.0003373962, y: 0.0000029087091, z: 0.00040310784} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.9333334 + value: {x: -0.0015787395, y: 0.017313564, z: 0.0005484496} + inSlope: {x: -0.00018666657, y: 0.000011684223, z: 0.00022257473} + outSlope: {x: -0.00018663102, y: 0.00001156842, z: 0.00022258553} + tangentMode: 0 + weightedMode: 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.0015786141, y: 0.01732177, z: 0.0006783314} + inSlope: {x: -0.00008322901, y: 0.000024000257, z: 0.0000099324825} + outSlope: {x: -0.00008324412, y: 0.00002398663, z: 0.00000992482} + tangentMode: 0 + weightedMode: 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.1 + value: {x: -0.0015927438, y: 0.017334113, z: 0.0005681727} + inSlope: {x: 0.0000370424, y: 0.00002121416, z: -0.0005883774} + outSlope: {x: 0.000037066027, y: 0.000021091546, z: -0.0005883761} + tangentMode: 0 + weightedMode: 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.7 + value: {x: -0.0015735734, y: 0.017331876, z: 0.00020830228} + inSlope: {x: 0.0000487362, y: -0.000030924617, z: -0.00026326746} + outSlope: {x: 0.00004875536, y: -0.000030628296, z: -0.00026325986} + tangentMode: 0 + weightedMode: 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.0015638334, y: 0.017325956, z: 0.00018265551} + inSlope: {x: 0.00007928254, y: -0.000047673537, z: -0.00017745027} + outSlope: {x: 0.0000793183, y: -0.000048005622, z: -0.0001774618} + tangentMode: 0 + weightedMode: 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.1666665 + value: {x: -0.0015183863, y: 0.017317617, z: 0.00012985762} + inSlope: {x: 0.00023647587, y: -0.000009936951, z: -0.00012283721} + outSlope: {x: 0.00023646097, y: -0.000010204325, z: -0.00012283059} + tangentMode: 0 + weightedMode: 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.633333 + value: {x: -0.0013303737, y: 0.01731307, z: 0.00008147275} + inSlope: {x: 0.0004955498, y: -0.000021181806, z: -0.00008630029} + outSlope: {x: 0.0004955208, y: -0.00002131123, z: -0.00008629885} + tangentMode: 0 + weightedMode: 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.7 + value: {x: -0.0012969221, y: 0.017311633, z: 0.00007615345} + inSlope: {x: 0.0005015305, y: -0.000009138252, z: -0.00009139016} + outSlope: {x: 0.0005015128, y: -0.000008947516, z: -0.00009138546} + tangentMode: 0 + weightedMode: 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.733333 + value: {x: -0.0012800778, y: 0.017311307, z: 0.00007286614} + inSlope: {x: 0.00051409367, y: -0.00001984666, z: -0.0000825718} + outSlope: {x: 0.0005140931, y: -0.000020100115, z: -0.00008257088} + tangentMode: 0 + weightedMode: 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.766667 + value: {x: -0.0012626499, y: 0.017310303, z: 0.00007064868} + inSlope: {x: 0.00052607775, y: -0.000023676348, z: -0.00007912171} + outSlope: {x: 0.00052610645, y: -0.000023414426, z: -0.00007912325} + tangentMode: 0 + weightedMode: 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.0012271901, y: 0.01730885, z: 0.00006526892} + inSlope: {x: 0.0005312379, y: -0.000022273422, z: -0.000071396025} + outSlope: {x: 0.0005312626, y: -0.000021958369, z: -0.00007139814} + tangentMode: 0 + weightedMode: 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.9666667 + value: {x: -0.0011561336, y: 0.01730562, z: 0.000055240354} + inSlope: {x: 0.0005429372, y: -0.000030069716, z: -0.0000704183} + outSlope: {x: 0.0005429461, y: -0.000030233203, z: -0.000070419774} + tangentMode: 0 + weightedMode: 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.0333333 + value: {x: -0.0011197614, y: 0.01730364, z: 0.000050128398} + inSlope: {x: 0.00052948657, y: -0.000023463812, z: -0.000084176165} + outSlope: {x: 0.00052947603, y: -0.000023363336, z: -0.000084175495} + tangentMode: 0 + weightedMode: 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.1 + value: {x: -0.0010845211, y: 0.01730204, z: 0.00004499699} + inSlope: {x: 0.00053968024, y: -0.0000245946, z: -0.00008214655} + outSlope: {x: 0.00053967134, y: -0.000024851752, z: -0.00008214295} + tangentMode: 0 + weightedMode: 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.133333 + value: {x: -0.0010665668, y: 0.017301405, z: 0.00004193091} + inSlope: {x: 0.0005391604, y: -0.00003081222, z: -0.00007516268} + outSlope: {x: 0.0005391417, y: -0.000030897365, z: -0.000075158} + tangentMode: 0 + weightedMode: 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.2 + value: {x: -0.0010314676, y: 0.017299399, z: 0.00003785957} + inSlope: {x: 0.0005139831, y: -0.000021415115, z: -0.00007508171} + outSlope: {x: 0.0005139656, y: -0.000021665453, z: -0.000075078024} + tangentMode: 0 + weightedMode: 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.233333 + value: {x: -0.0010143154, y: 0.017298557, z: 0.000034981356} + inSlope: {x: 0.0005137208, y: -0.000025412035, z: -0.00007357859} + outSlope: {x: 0.0005136946, y: -0.000025398049, z: -0.00007357775} + tangentMode: 0 + weightedMode: 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.266667 + value: {x: -0.00099722, y: 0.017297711, z: 0.00003295432} + inSlope: {x: 0.0005073298, y: -0.000026419828, z: -0.000067679226} + outSlope: {x: 0.0005073377, y: -0.00002611537, z: -0.00006768006} + tangentMode: 0 + weightedMode: 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.3 + value: {x: -0.0009804927, y: 0.017296804, z: 0.000030469344} + inSlope: {x: 0.00049777963, y: -0.000020154901, z: -0.000059910162} + outSlope: {x: 0.00049779966, y: -0.000019950543, z: -0.000059912563} + tangentMode: 0 + weightedMode: 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.0009640352, y: 0.01729637, z: 0.000028960345} + inSlope: {x: 0.00049137085, y: -0.000018077253, z: -0.00005702879} + outSlope: {x: 0.00049138436, y: -0.000018165807, z: -0.00005703032} + tangentMode: 0 + weightedMode: 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.366667 + value: {x: -0.0009477333, y: 0.017295593, z: 0.000026667296} + inSlope: {x: 0.0004826459, y: -0.000024126277, z: -0.0000639434} + outSlope: {x: 0.0004826705, y: -0.000024310199, z: -0.00006394496} + tangentMode: 0 + weightedMode: 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.4 + value: {x: -0.0009318589, y: 0.017294759, z: 0.00002469756} + inSlope: {x: 0.00047162233, y: -0.000026183488, z: -0.000062391315} + outSlope: {x: 0.00047163386, y: -0.000026374224, z: -0.00006239265} + tangentMode: 0 + weightedMode: 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.4666667 + value: {x: -0.0009008596, y: 0.01729347, z: 0.00002054255} + inSlope: {x: 0.00045160676, y: -0.000021999243, z: -0.00005826751} + outSlope: {x: 0.00045161828, y: -0.000022189974, z: -0.000058267742} + tangentMode: 0 + weightedMode: 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.5333333 + value: {x: -0.00087146496, y: 0.017291665, z: 0.000016666245} + inSlope: {x: 0.00042939367, y: -0.00002432723, z: -0.000061441475} + outSlope: {x: 0.00042938135, y: -0.00002464739, z: -0.00006144039} + tangentMode: 0 + weightedMode: 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.5666666 + value: {x: -0.0008575545, y: 0.017290724, z: 0.00001452688} + inSlope: {x: 0.0004185035, y: -0.000025839487, z: -0.000058729904} + outSlope: {x: 0.00041849338, y: -0.000025687921, z: -0.00005872832} + tangentMode: 0 + weightedMode: 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.6 + value: {x: -0.00084356545, y: 0.017289946, z: 0.000012751114} + inSlope: {x: 0.0004160134, y: -0.000020919544, z: -0.000054224874} + outSlope: {x: 0.0004159985, y: -0.000020905922, z: -0.000054222815} + tangentMode: 0 + weightedMode: 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.633333 + value: {x: -0.00082981965, y: 0.017289342, z: 0.000010911834} + inSlope: {x: 0.00042171418, y: -0.000023971304, z: -0.00005096568} + outSlope: {x: 0.00042171087, y: -0.00002377035, z: -0.000050963943} + tangentMode: 0 + weightedMode: 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.00081545254, y: 0.01728836, z: 0.000009353578} + inSlope: {x: 0.00041500534, y: -0.000029219924, z: -0.00005003054} + outSlope: {x: 0.0004149882, y: -0.000029693354, z: -0.000050027807} + tangentMode: 0 + weightedMode: 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.733333 + value: {x: -0.0007885706, y: 0.01728664, z: 0.000005893284} + inSlope: {x: 0.000401515, y: -0.000027227425, z: -0.000046371442} + outSlope: {x: 0.00040152576, y: -0.000027303668, z: -0.000046370755} + tangentMode: 0 + weightedMode: 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.766667 + value: {x: -0.00077538367, y: 0.017285569, z: 0.0000044850167} + inSlope: {x: 0.00039571436, y: -0.000028495744, z: -0.000045099147} + outSlope: {x: 0.00039571276, y: -0.000028337772, z: -0.000045099503} + tangentMode: 0 + weightedMode: 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.8 + value: {x: -0.0007621899, y: 0.017284747, z: 0.000002886641} + inSlope: {x: 0.0003971816, y: -0.000018460425, z: -0.00004124337} + outSlope: {x: 0.00039721004, y: -0.000018569417, z: -0.00004124529} + tangentMode: 0 + weightedMode: 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.0007489047, y: 0.017284332, z: 0.0000017354845} + inSlope: {x: 0.00039560284, y: -0.000018569417, z: -0.00003442744} + outSlope: {x: 0.0003956252, y: -0.000018552386, z: -0.000034428824} + tangentMode: 0 + weightedMode: 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.866667 + value: {x: -0.00073581433, y: 0.01728351, z: 0.0000005913675} + inSlope: {x: 0.0003901011, y: -0.00002161777, z: -0.00004493993} + outSlope: {x: 0.00039011176, y: -0.00002130442, z: -0.00004494216} + tangentMode: 0 + weightedMode: 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.9 + value: {x: -0.00072289904, y: 0.017282901, z: -0.0000012604653} + inSlope: {x: 0.00038250152, y: -0.000023688608, z: -0.00005023668} + outSlope: {x: 0.0003825064, y: -0.000023755023, z: -0.000050238494} + tangentMode: 0 + weightedMode: 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.9333334 + value: {x: -0.0007103134, y: 0.017281925, z: -0.0000027579308} + inSlope: {x: 0.00037981357, y: -0.00003039669, z: -0.000042337342} + outSlope: {x: 0.00037980778, y: -0.00003055677, z: -0.00004233819} + tangentMode: 0 + weightedMode: 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.9666667 + value: {x: -0.0006975786, y: 0.017280873, z: -0.0000040828822} + inSlope: {x: 0.0003795204, y: -0.000029705276, z: -0.000036141228} + outSlope: {x: 0.0003795448, y: -0.000029494106, z: -0.00003614176} + tangentMode: 0 + weightedMode: 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.0006850097, y: 0.017279962, z: -0.000005167436} + inSlope: {x: 0.0003754363, y: -0.000022852439, z: -0.00004054746} + outSlope: {x: 0.00037543091, y: -0.00002282349, z: -0.000040547762} + tangentMode: 0 + weightedMode: 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.0333333 + value: {x: -0.00067255116, y: 0.017279351, z: -0.0000067859646} + inSlope: {x: 0.00037020486, y: -0.000023504686, z: -0.00004843333} + outSlope: {x: 0.00037019516, y: -0.000023680092, z: -0.00004843297} + tangentMode: 0 + weightedMode: 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.133333 + value: {x: -0.0006361048, y: 0.017276961, z: -0.000010972124} + inSlope: {x: 0.00036279057, y: -0.00002597913, z: -0.00003082741} + outSlope: {x: 0.0003627832, y: -0.000025849702, z: -0.000030825817} + tangentMode: 0 + weightedMode: 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.00062385056, y: 0.01727589, z: -0.000011871546} + inSlope: {x: 0.00036004776, y: -0.000024657607, z: -0.00003621352} + outSlope: {x: 0.00036003272, y: -0.000024574163, z: -0.000036211477} + tangentMode: 0 + weightedMode: 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.2 + value: {x: -0.0006121011, y: 0.017275317, z: -0.000013386392} + inSlope: {x: 0.00035773902, y: -0.00001912459, z: -0.000039815695} + outSlope: {x: 0.00035773395, y: -0.000019165462, z: -0.00003981301} + tangentMode: 0 + weightedMode: 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.3 + value: {x: -0.00057655916, y: 0.017272817, z: -0.000016467768} + inSlope: {x: 0.00035031783, y: -0.000024216535, z: -0.000023876408} + outSlope: {x: 0.000350337, y: -0.00002430509, z: -0.000023877406} + tangentMode: 0 + weightedMode: 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.4 + value: {x: -0.00054170506, y: 0.01727045, z: -0.000018980818} + inSlope: {x: 0.00034691292, y: -0.00002469337, z: -0.000032600194} + outSlope: {x: 0.0003469362, y: -0.000024766603, z: -0.000032600972} + tangentMode: 0 + weightedMode: 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.4666667 + value: {x: -0.0005189277, y: 0.017268756, z: -0.000021431242} + inSlope: {x: 0.00033465697, y: -0.000030657247, z: -0.000024346871} + outSlope: {x: 0.00033466757, y: -0.000030376254, z: -0.000024347873} + tangentMode: 0 + weightedMode: 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.00050782785, y: 0.017267806, z: -0.00002187637} + inSlope: {x: 0.00033941466, y: -0.00001930681, z: -0.000033029803} + outSlope: {x: 0.0003394119, y: -0.000019347684, z: -0.000033030952} + tangentMode: 0 + weightedMode: 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.5333333 + value: {x: -0.0004963009, y: 0.01726746, z: -0.00002363318} + inSlope: {x: 0.00034055076, y: -0.000012706018, z: -0.000030537667} + outSlope: {x: 0.00034054162, y: -0.000012688987, z: -0.000030539413} + tangentMode: 0 + weightedMode: 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.5666666 + value: {x: -0.00048512354, y: 0.017266946, z: -0.000023912347} + inSlope: {x: 0.00033363386, y: -0.000023417833, z: -0.000017264727} + outSlope: {x: 0.00033363173, y: -0.000023610268, z: -0.000017265722} + tangentMode: 0 + weightedMode: 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.633333 + value: {x: -0.00046282346, y: 0.017265286, z: -0.000025743546} + inSlope: {x: 0.00033307722, y: -0.000023106184, z: -0.00001751055} + outSlope: {x: 0.00033307486, y: -0.000023169194, z: -0.000017509396} + tangentMode: 0 + weightedMode: 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.00045185463, y: 0.017264357, z: -0.000025951475} + inSlope: {x: 0.00033158474, y: -0.000027086075, z: -0.0000195766} + outSlope: {x: 0.00033156548, y: -0.000026750586, z: -0.00001957501} + tangentMode: 0 + weightedMode: 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.7 + value: {x: -0.00044071808, y: 0.017263494, z: -0.000027048673} + inSlope: {x: 0.0003302563, y: -0.000025047593, z: -0.000024751838} + outSlope: {x: 0.0003302284, y: -0.000025234922, z: -0.000024749581} + tangentMode: 0 + weightedMode: 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.733333 + value: {x: -0.00042983925, y: 0.01726268, z: -0.000027601443} + inSlope: {x: 0.0003276952, y: -0.000019444753, z: -0.000022283568} + outSlope: {x: 0.00032769665, y: -0.000019226496, z: -0.0000222838} + tangentMode: 0 + weightedMode: 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.766667 + value: {x: -0.0004188714, y: 0.017262215, z: -0.000028534256} + inSlope: {x: 0.00032133714, y: -0.000020588872, z: -0.000017481902} + outSlope: {x: 0.00032134264, y: -0.000020611302, z: -0.000017482012} + tangentMode: 0 + weightedMode: 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.00039835984, y: 0.017260823, z: -0.000028952467} + inSlope: {x: 0.00029152734, y: -0.000016312953, z: -0.000013605464} + outSlope: {x: 0.00029153074, y: -0.000016609272, z: -0.000013606492} + tangentMode: 0 + weightedMode: 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.866667 + value: {x: -0.00038898073, y: 0.017260207, z: -0.000029673945} + inSlope: {x: 0.00026857763, y: -0.000020526153, z: -0.000017764853} + outSlope: {x: 0.0002685889, y: -0.00002034223, z: -0.000017764956} + tangentMode: 0 + weightedMode: 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.9666667 + value: {x: -0.0003663726, y: 0.017257715, z: -0.000031310425} + inSlope: {x: 0.00019624674, y: -0.000023841874, z: -0.000017221899} + outSlope: {x: 0.00019624514, y: -0.000023543855, z: -0.000017222526} + tangentMode: 0 + weightedMode: 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.00035986069, y: 0.017257387, z: -0.00003196061} + inSlope: {x: 0.00019120003, y: -0.000006343642, z: -0.000030931275} + outSlope: {x: 0.00019119374, y: -0.0000062277504, z: -0.000030931038} + tangentMode: 0 + weightedMode: 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.033334 + value: {x: -0.00035362638, y: 0.017257277, z: -0.0000333724} + inSlope: {x: 0.00017568078, y: -0.0000036732997, z: -0.00002544296} + outSlope: {x: 0.00017572088, y: -0.000004116189, z: -0.000025446414} + tangentMode: 0 + weightedMode: 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.066667 + value: {x: -0.00034814814, y: 0.017257124, z: -0.000033656892} + inSlope: {x: 0.00015828625, y: -0.000008714331, z: -0.000015562271} + outSlope: {x: 0.00015826119, y: -0.000008693645, z: -0.000015561021} + tangentMode: 0 + weightedMode: 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.133333 + value: {x: -0.00033885788, y: 0.017256482, z: -0.000034937046} + inSlope: {x: 0.00011606822, y: -0.000004104267, z: -0.000007652066} + outSlope: {x: 0.00011604772, y: -0.0000044634767, z: -0.00000764916} + tangentMode: 0 + weightedMode: 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.166667 + value: {x: -0.00033533908, y: 0.01725642, z: -0.000034919754} + inSlope: {x: 0.000099092555, y: -0.0000019090257, z: -0.000012644641} + outSlope: {x: 0.00009911934, y: -0.0000017234516, z: -0.000012649911} + tangentMode: 0 + weightedMode: 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.233334 + value: {x: -0.0003303685, y: 0.01725661, z: -0.00003640456} + inSlope: {x: 0.000051588773, y: 0.000011581878, z: -0.000017955108} + outSlope: {x: 0.000051605093, y: 0.00001203521, z: -0.000017958526} + tangentMode: 0 + weightedMode: 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.4 + value: {x: -0.0003358405, y: 0.01725901, z: -0.00003927877} + inSlope: {x: -0.00011942673, y: 0.000019652798, z: -0.000021921156} + outSlope: {x: -0.00011939649, y: 0.000019815721, z: -0.000021914995} + tangentMode: 0 + weightedMode: 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.00034950912, y: 0.017261151, z: -0.000041127343} + inSlope: {x: -0.00013722343, y: 0.000020873264, z: -0.000012163307} + outSlope: {x: -0.00013722044, y: 0.000020507126, z: -0.000012162942} + tangentMode: 0 + weightedMode: 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.566667 + value: {x: -0.00035743482, y: 0.017262248, z: -0.000042253156} + inSlope: {x: -0.00010526291, y: 0.0000123945465, z: -0.00002594159} + outSlope: {x: -0.00010526291, y: 0.0000123945465, z: -0.00002594159} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips + m_ScaleCurves: [] + m_FloatCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 136 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_Weight + path: Idle Rig + classID: 114 + script: {fileID: 11500000, guid: 70b342d8ce5c2fd48b8fa3147d48d1d1, type: 3} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 136 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_Weight + path: WalkRig + classID: 114 + script: {fileID: 11500000, guid: 70b342d8ce5c2fd48b8fa3147d48d1d1, type: 3} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 136 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_Weight + path: Run Rig + classID: 114 + script: {fileID: 11500000, guid: 70b342d8ce5c2fd48b8fa3147d48d1d1, type: 3} + m_PPtrCurves: [] + m_SampleRate: 30 + 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: 4246725184 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 4246725184 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2306959401 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1873754471 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 629695243 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3507322457 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 4130676776 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2755413591 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3610507355 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1546517516 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3922524256 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3305817214 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1738789858 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3939473511 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2888714343 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 892423909 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2260115849 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 132937013 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2908942433 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3655212101 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2476962736 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 506438108 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 437649083 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2180861050 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 179915474 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 863042527 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1022168924 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3744267370 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 946238039 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2475629556 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1518235680 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 894090943 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3254654169 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1999565813 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 753291581 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3523356279 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2700601040 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3296194372 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2965308236 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 4081307055 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3771663227 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1504511970 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 947492321 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1718806592 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3714807079 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3971764881 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 4190678188 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 14784316 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 343860266 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1088794668 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1174220668 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 951947925 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1513986479 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3680013817 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 484251622 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3928024144 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2803917393 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1872214036 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 4180044095 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2091146011 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2120146506 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2853054640 + attribute: 1257374345 + script: {fileID: 11500000, guid: 70b342d8ce5c2fd48b8fa3147d48d1d1, type: 3} + typeID: 114 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 8577085 + attribute: 1257374345 + script: {fileID: 11500000, guid: 70b342d8ce5c2fd48b8fa3147d48d1d1, type: 3} + typeID: 114 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 4230480715 + attribute: 1257374345 + script: {fileID: 11500000, guid: 70b342d8ce5c2fd48b8fa3147d48d1d1, type: 3} + typeID: 114 + customType: 0 + isPPtrCurve: 0 + pptrCurveMapping: [] + m_AnimationClipSettings: + serializedVersion: 2 + m_AdditiveReferencePoseClip: {fileID: 0} + m_AdditiveReferencePoseTime: 0 + m_StartTime: 0 + m_StopTime: 8.566668 + 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: 0.033333335 + value: 0 + inSlope: 0 + 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: jammo_mixamo_rig + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_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.033333335 + value: -0 + inSlope: 0 + 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: jammo_mixamo_rig + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_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.033333335 + value: -0 + inSlope: 0 + 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: jammo_mixamo_rig + 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.033333335 + value: 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: jammo_mixamo_rig + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.06340559 + inSlope: 0.0006721168 + outSlope: 0.0006721168 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: -0.060520772 + inSlope: 0.005109501 + outSlope: 0.005109501 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.966667 + value: -0.056677412 + inSlope: -0.00011645123 + outSlope: -0.00011645123 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.6000004 + value: -0.06118155 + inSlope: -0.0075686984 + outSlope: -0.0075686984 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.266667 + value: -0.064151086 + inSlope: -0.00008907178 + outSlope: -0.00008907178 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.9000006 + value: -0.06379818 + inSlope: 0.0005039205 + outSlope: 0.0005039205 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566668 + value: -0.063501105 + inSlope: -0.00003017445 + outSlope: -0.00003017445 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: jammo_mixamo_rig/mixamorig:Hips + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.03417327 + inSlope: 0.009839236 + outSlope: 0.009839236 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.05051191 + inSlope: 0.009352593 + outSlope: 0.009352593 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.966667 + value: 0.06876208 + inSlope: 0.0069824364 + outSlope: 0.0069824364 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.6000004 + value: 0.050302275 + inSlope: -0.041212626 + outSlope: -0.041212626 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.266667 + value: 0.034513578 + inSlope: -0.00048391568 + outSlope: -0.00048391568 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.9000006 + value: 0.034305315 + inSlope: -0.00007666655 + outSlope: -0.00007666655 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566668 + value: 0.034241114 + inSlope: -0.00006839541 + outSlope: -0.00006839541 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: jammo_mixamo_rig/mixamorig:Hips + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.025698494 + inSlope: 0.00045206395 + outSlope: 0.00045206395 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: -0.02248226 + inSlope: 0.00014894656 + outSlope: 0.00014894656 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.966667 + value: -0.024031354 + inSlope: -0.0010303842 + outSlope: -0.0010303842 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.6000004 + value: -0.024724016 + inSlope: 0.0005538208 + outSlope: 0.0005538208 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.266667 + value: -0.024997862 + inSlope: 0.00016685591 + outSlope: 0.00016685591 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.9000006 + value: -0.024983384 + inSlope: -0.0005833531 + outSlope: -0.0005833531 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566668 + value: -0.02572165 + inSlope: -0.000861704 + outSlope: -0.000861704 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: jammo_mixamo_rig/mixamorig:Hips + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9970715 + inSlope: -0.00028610227 + outSlope: -0.00028610227 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.99663454 + inSlope: -0.00016093269 + outSlope: -0.00016093269 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.966667 + value: 0.9957319 + inSlope: -0.0005131942 + outSlope: -0.0005131942 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.6000004 + value: 0.9965517 + inSlope: 0.0016298906 + outSlope: 0.0016298906 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.266667 + value: 0.9970299 + inSlope: 0.000015199199 + outSlope: 0.000015199199 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.9000006 + value: 0.99706006 + inSlope: 0.000019669551 + outSlope: 0.000019669551 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566668 + value: 0.99706244 + inSlope: -0.0000232455 + outSlope: -0.0000232455 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: jammo_mixamo_rig/mixamorig:Hips + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.046271633 + inSlope: -0.0033003462 + outSlope: -0.0033003462 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.04202458 + inSlope: 0.000008158393 + outSlope: 0.000008158393 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: 0.043534704 + inSlope: -0.00011891138 + outSlope: -0.00011891138 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9333334 + value: 0.04780202 + inSlope: -0.000034533474 + outSlope: -0.000034533474 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.566667 + value: 0.047448676 + inSlope: -0.00004280363 + outSlope: -0.00004280363 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.233334 + value: 0.046751723 + inSlope: -0.0014811954 + outSlope: -0.0014811954 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566668 + value: 0.046361145 + inSlope: -0.0000017881155 + outSlope: -0.0000017881155 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.017858451 + inSlope: 0.000010840594 + outSlope: 0.000010840594 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: -0.021896781 + inSlope: -0.00008161187 + outSlope: -0.00008161187 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: -0.033532977 + inSlope: -0.00010125349 + outSlope: -0.00010125349 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9333334 + value: -0.03480585 + inSlope: 0.031182218 + outSlope: 0.031182218 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.566667 + value: -0.011558708 + inSlope: 0.0015987238 + outSlope: 0.0015987238 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.233334 + value: -0.018161627 + inSlope: 0.0014890465 + outSlope: 0.0014890465 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566668 + value: -0.017790252 + inSlope: 0.000008493548 + outSlope: 0.000008493548 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.014733096 + inSlope: 0.00019560567 + outSlope: 0.00019560567 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.020193039 + inSlope: 0.0038944315 + outSlope: 0.0038944315 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: 0.02296342 + inSlope: 0.00024405331 + outSlope: 0.00024405331 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9333334 + value: 0.019426275 + inSlope: -0.00097056944 + outSlope: -0.00097056944 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.566667 + value: 0.01799252 + inSlope: -0.0011382077 + outSlope: -0.0011382077 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.233334 + value: 0.015087978 + inSlope: -0.0015862356 + outSlope: -0.0015862356 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566668 + value: 0.014652059 + inSlope: -0.00009781551 + outSlope: -0.00009781551 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9986606 + inSlope: 0.00014841555 + outSlope: 0.00014841555 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.9986725 + inSlope: -0.00008136042 + outSlope: -0.00008136042 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: 0.9982249 + inSlope: -0.000003576282 + outSlope: -0.000003576282 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9333334 + value: 0.9980612 + inSlope: 0.0011077534 + outSlope: 0.0011077534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.566667 + value: 0.9986447 + inSlope: 0.000041127245 + outSlope: 0.000041127245 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.233334 + value: 0.9986274 + inSlope: 0.00012069951 + outSlope: 0.00012069951 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566668 + value: 0.99865884 + inSlope: 0.0000017881155 + outSlope: 0.0000017881155 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.012955024 + inSlope: 0.000000083819025 + outSlope: 0.000000083819025 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.012955021 + inSlope: 0.000000013969851 + outSlope: 0.000000013969851 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: 0.012933757 + inSlope: -0.00003200493 + outSlope: -0.00003200493 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9333334 + value: 0.012958703 + inSlope: 0.000009681107 + outSlope: 0.000009681107 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.566667 + value: 0.012967584 + inSlope: 0.0000024307542 + outSlope: 0.0000024307542 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.233334 + value: 0.012959629 + inSlope: -0.000013466936 + outSlope: -0.000013466936 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566668 + value: 0.0129556805 + inSlope: 0.00000013969652 + outSlope: 0.00000013969652 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0064883763 + inSlope: -0.000000041909512 + outSlope: -0.000000041909512 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: -0.0064883777 + inSlope: -0.00000006286433 + outSlope: -0.00000006286433 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: -0.0062200553 + inSlope: 0.0004775524 + outSlope: 0.0004775524 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9333334 + value: -0.0064932904 + inSlope: 0.000009003569 + outSlope: 0.000009003569 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.566667 + value: -0.0054911287 + inSlope: 0.0009144665 + outSlope: 0.0009144665 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.233334 + value: -0.00588031 + inSlope: -0.0022224775 + outSlope: -0.0022224775 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566668 + value: -0.0065285624 + inSlope: -0.00000030733236 + outSlope: -0.00000030733236 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.006067019 + inSlope: 0.000000027939675 + outSlope: 0.000000027939675 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.0060670185 + inSlope: -0.000000006984926 + outSlope: -0.000000006984926 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: 0.009821767 + inSlope: 0.0060396 + outSlope: 0.0060396 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9333334 + value: 0.005489066 + inSlope: -0.0015002433 + outSlope: -0.0015002433 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.566667 + value: 0.0049085817 + inSlope: 0.00042186858 + outSlope: 0.00042186858 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.233334 + value: 0.0059342016 + inSlope: -0.000028896637 + outSlope: -0.000028896637 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566668 + value: 0.0059257536 + inSlope: 0.000000083817916 + outSlope: 0.000000083817916 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9998766 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.9998766 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: 0.9998488 + inSlope: -0.00005543237 + outSlope: -0.00005543237 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9333334 + value: 0.9998799 + inSlope: 0.000008940705 + outSlope: 0.000008940705 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.566667 + value: 0.99988884 + inSlope: 0.0000026822115 + outSlope: 0.0000026822115 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.233334 + value: 0.99988115 + inSlope: -0.000012516987 + outSlope: -0.000012516987 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566668 + value: 0.9998772 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0003612959 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566668 + value: 0.0003612959 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.006585055 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566668 + value: -0.006585055 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0058790785 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566668 + value: 0.0058790785 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.99996096 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566668 + value: 0.99996096 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.046347793 + inSlope: -0.000046044584 + outSlope: -0.000046044584 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.04401933 + inSlope: -0.0018609519 + outSlope: -0.0018609519 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: 0.042691506 + inSlope: 0.00039679967 + outSlope: 0.00039679967 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.666667 + value: 0.05071344 + inSlope: 0.0017640011 + outSlope: 0.0017640011 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.3333335 + value: 0.047204934 + inSlope: -0.0015058941 + outSlope: -0.0015058941 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8 + value: 0.046472915 + inSlope: -0.000032018906 + outSlope: -0.000032018906 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566668 + value: 0.046457786 + inSlope: -0.00000011175722 + outSlope: -0.00000011175722 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.046448395 + inSlope: 0.0037943197 + outSlope: 0.0037943197 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: -0.04684378 + inSlope: -0.00040439927 + outSlope: -0.00040439927 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: -0.046286717 + inSlope: -0.00016300022 + outSlope: -0.00016300022 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.666667 + value: -0.07021707 + inSlope: 0.0037415735 + outSlope: 0.0037415735 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.3333335 + value: -0.053249788 + inSlope: 0.004037846 + outSlope: 0.004037846 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8 + value: -0.047280926 + inSlope: 0.0013917886 + outSlope: 0.0013917886 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566668 + value: -0.046484802 + inSlope: 0.00000033527166 + outSlope: 0.00000033527166 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0151789095 + inSlope: 0.000072559335 + outSlope: 0.000072559335 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: -0.015104167 + inSlope: -0.00187203 + outSlope: -0.00187203 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: -0.016439047 + inSlope: -0.00022589251 + outSlope: -0.00022589251 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.666667 + value: -0.024431081 + inSlope: 0.0022654631 + outSlope: 0.0022654631 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.3333335 + value: -0.017206522 + inSlope: 0.0015949659 + outSlope: 0.0015949659 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8 + value: -0.015556109 + inSlope: 0.0003413394 + outSlope: 0.0003413394 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566668 + value: -0.015428427 + inSlope: 0.00000030733236 + outSlope: 0.00000030733236 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9977295 + inSlope: 0.00017881392 + outSlope: 0.00017881392 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.9978175 + inSlope: 0.000033974677 + outSlope: 0.000033974677 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: 0.99788016 + inSlope: -0.000027716185 + outSlope: -0.000027716185 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.666667 + value: 0.99594223 + inSlope: 0.00022888205 + outSlope: 0.00022888205 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.3333335 + value: 0.9973165 + inSlope: 0.00031381875 + outSlope: 0.00031381875 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8 + value: 0.99767876 + inSlope: 0.000073313815 + outSlope: 0.000073313815 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566668 + value: 0.9977188 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.08275084 + inSlope: 0.014913081 + outSlope: 0.014913081 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.07714533 + inSlope: -0.014190128 + outSlope: -0.014190128 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: 0.06353329 + inSlope: 0.0013298182 + outSlope: 0.0013298182 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5666668 + value: 0.075671084 + inSlope: 0.15734601 + outSlope: 0.15734601 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.9 + value: 0.124956846 + inSlope: 0.0319143 + outSlope: 0.0319143 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.3 + value: 0.13698058 + inSlope: 0.024103917 + outSlope: 0.024103917 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9666667 + value: 0.14703998 + inSlope: -0.0017431746 + outSlope: -0.0017431746 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.5000005 + value: 0.11667052 + inSlope: -0.060068242 + outSlope: -0.060068242 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8 + value: 0.10645567 + inSlope: -0.016177088 + outSlope: -0.016177088 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.3 + value: 0.101649895 + inSlope: -0.0061153304 + outSlope: -0.0061153304 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.933334 + value: 0.086150326 + inSlope: -0.0045741764 + outSlope: -0.0045741764 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566668 + value: 0.083003506 + inSlope: -0.0060527707 + outSlope: -0.0060527707 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.091512166 + inSlope: 0.0446324 + outSlope: 0.0446324 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.08537502 + inSlope: -0.023738801 + outSlope: -0.023738801 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: 0.08521758 + inSlope: -0.0011717912 + outSlope: -0.0011717912 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5666668 + value: 0.057493214 + inSlope: -0.37377754 + outSlope: -0.37377754 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.9 + value: -0.09878343 + inSlope: -0.36102226 + outSlope: -0.36102226 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.3 + value: -0.20942008 + inSlope: -0.12135957 + outSlope: -0.12135957 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9666667 + value: -0.25699997 + inSlope: 0.021191431 + outSlope: 0.021191431 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.5000005 + value: -0.102698036 + inSlope: 0.36838412 + outSlope: 0.36838412 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8 + value: 0.0015965143 + inSlope: 0.33394438 + outSlope: 0.33394438 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.3 + value: 0.063264236 + inSlope: 0.060060196 + outSlope: 0.060060196 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.933334 + value: 0.09090229 + inSlope: 0.0007279969 + outSlope: 0.0007279969 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566668 + value: 0.09142875 + inSlope: -0.0003283427 + outSlope: -0.0003283427 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.026570043 + inSlope: -0.0153738065 + outSlope: -0.0153738065 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: -0.021728022 + inSlope: 0.005143755 + outSlope: 0.005143755 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: -0.029490352 + inSlope: -0.009552669 + outSlope: -0.009552669 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5666668 + value: -0.024595566 + inSlope: 0.075546086 + outSlope: 0.075546086 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.9 + value: 0.0027940595 + inSlope: 0.07487096 + outSlope: 0.07487096 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.3 + value: 0.033148017 + inSlope: 0.050694916 + outSlope: 0.050694916 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9666667 + value: 0.05199905 + inSlope: 0.0010290884 + outSlope: 0.0010290884 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.5000005 + value: 0.026476476 + inSlope: -0.07350117 + outSlope: -0.07350117 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8 + value: 0.0039691865 + inSlope: -0.07654674 + outSlope: -0.07654674 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.3 + value: -0.010362068 + inSlope: -0.008392543 + outSlope: -0.008392543 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.933334 + value: -0.021110862 + inSlope: -0.011724925 + outSlope: -0.011724925 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566668 + value: -0.026452634 + inSlope: -0.0041263 + outSlope: -0.0041263 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.992004 + inSlope: -0.0058150287 + outSlope: -0.0058150287 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.99312013 + inSlope: 0.003256205 + outSlope: 0.003256205 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: 0.9938973 + inSlope: -0.00026822113 + outSlope: -0.00026822113 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5666668 + value: 0.9951701 + inSlope: 0.01100422 + outSlope: 0.01100422 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.9 + value: 0.98722833 + inSlope: -0.040387698 + outSlope: -0.040387698 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.3 + value: 0.967616 + inSlope: -0.03140959 + outSlope: -0.03140959 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9666667 + value: 0.95374334 + inSlope: 0.0059088315 + outSlope: 0.0059088315 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.5000005 + value: 0.98749185 + inSlope: 0.047490343 + outSlope: 0.047490343 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8 + value: 0.99430823 + inSlope: 0.0016683355 + outSlope: 0.0016683355 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.3 + value: 0.99275255 + inSlope: -0.0032857093 + outSlope: -0.0032857093 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.933334 + value: 0.9919019 + inSlope: 0.00008046634 + outSlope: 0.00008046634 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566668 + value: 0.9919937 + inSlope: 0.0004273596 + outSlope: 0.0004273596 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.06928724 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.06928724 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head/mixamorig:HeadTop_End + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_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.033333335 + value: 0 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head/mixamorig:HeadTop_End + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_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.033333335 + value: -0 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head/mixamorig:HeadTop_End + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.99759674 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.99759674 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head/mixamorig:HeadTop_End + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.40506425 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.40506425 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head/mixamorig:LeftEar + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.45798013 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.45798013 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head/mixamorig:LeftEar + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.59357256 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.59357256 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head/mixamorig:LeftEar + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.5233056 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.5233056 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head/mixamorig:LeftEar + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.40506425 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.40506425 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head/mixamorig:RightEar + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.45798013 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.45798013 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head/mixamorig:RightEar + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.59357256 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.59357256 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head/mixamorig:RightEar + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.5233056 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.5233056 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head/mixamorig:RightEar + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.60471714 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566668 + value: 0.60471714 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.3670752 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566668 + value: -0.3670752 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.4964271 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566668 + value: 0.4964271 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.5031234 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566668 + value: 0.5031234 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.36882776 + inSlope: 0.008382797 + outSlope: 0.008382797 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.37688676 + inSlope: 0.004104231 + outSlope: 0.004104231 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: 0.38547936 + inSlope: 0.003991578 + outSlope: 0.003991578 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.2000003 + value: 0.37847522 + inSlope: 0.009624669 + outSlope: 0.009624669 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.866667 + value: 0.37840837 + inSlope: -0.0034274193 + outSlope: -0.0034274193 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5000005 + value: 0.37301266 + inSlope: -0.003043416 + outSlope: -0.003043416 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566668 + value: 0.3677358 + inSlope: -0.012034017 + outSlope: -0.012034017 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.06225089 + inSlope: -0.0012808664 + outSlope: -0.0012808664 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: -0.06036733 + inSlope: -0.00025056326 + outSlope: -0.00025056326 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: -0.060233444 + inSlope: -0.0000021792948 + outSlope: -0.0000021792948 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.2000003 + value: -0.066512935 + inSlope: -0.023774005 + outSlope: -0.023774005 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.866667 + value: -0.08680161 + inSlope: -0.0030952722 + outSlope: -0.0030952722 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5000005 + value: -0.07509202 + inSlope: 0.0140611585 + outSlope: 0.0140611585 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566668 + value: -0.062235024 + inSlope: 0.008994556 + outSlope: 0.008994556 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.06822434 + inSlope: -0.010689049 + outSlope: -0.010689049 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: -0.08519533 + inSlope: -0.010544109 + outSlope: -0.010544109 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: -0.107138894 + inSlope: -0.0070340997 + outSlope: -0.0070340997 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.2000003 + value: -0.079807036 + inSlope: 0.021972677 + outSlope: 0.021972677 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.866667 + value: -0.04284097 + inSlope: 0.005215504 + outSlope: 0.005215504 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5000005 + value: -0.055237208 + inSlope: -0.015204451 + outSlope: -0.015204451 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566668 + value: -0.06743973 + inSlope: -0.0020954479 + outSlope: -0.0020954479 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.924898 + inSlope: -0.004221797 + outSlope: -0.004221797 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.9203554 + inSlope: -0.0026750593 + outSlope: -0.0026750593 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: 0.9144938 + inSlope: -0.0025069737 + outSlope: -0.0025069737 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.2000003 + value: 0.91976273 + inSlope: -0.0037729775 + outSlope: -0.0037729775 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.866667 + value: 0.9205635 + inSlope: 0.0013589872 + outSlope: 0.0013589872 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5000005 + value: 0.9231314 + inSlope: 0.0014635934 + outSlope: 0.0014635934 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566668 + value: 0.9253913 + inSlope: 0.0052391784 + outSlope: 0.0052391784 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.050364424 + inSlope: -0.0010028109 + outSlope: -0.0010028109 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.048714567 + inSlope: -0.0010038735 + outSlope: -0.0010038735 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: 0.047258697 + inSlope: -0.00017294678 + outSlope: -0.00017294678 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.066667 + value: 0.049764324 + inSlope: -0.00022564105 + outSlope: -0.00022564105 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.1333337 + value: 0.050374303 + inSlope: 0.0021136384 + outSlope: 0.0021136384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.8 + value: 0.051397167 + inSlope: -0.00043507706 + outSlope: -0.00043507706 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.433333 + value: 0.050438464 + inSlope: -0.00019329047 + outSlope: -0.00019329047 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566668 + value: 0.05040751 + inSlope: -0.00012896783 + outSlope: -0.00012896783 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.008706336 + inSlope: 0.000113965936 + outSlope: 0.000113965936 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.0088823065 + inSlope: 0.00010408936 + outSlope: 0.00010408936 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: 0.009030043 + inSlope: 0.000016861612 + outSlope: 0.000016861612 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.066667 + value: 0.008771523 + inSlope: 0.00002549498 + outSlope: 0.00002549498 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.1333337 + value: 0.008705307 + inSlope: -0.00023290538 + outSlope: -0.00023290538 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.8 + value: 0.008591491 + inSlope: 0.000049383427 + outSlope: 0.000049383427 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.433333 + value: 0.008698313 + inSlope: 0.000022743272 + outSlope: 0.000022743272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566668 + value: 0.008701671 + inSlope: 0.000007767127 + outSlope: 0.000007767127 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.6206985 + inSlope: 0.01238644 + outSlope: 0.01238644 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: -0.60036385 + inSlope: 0.012376618 + outSlope: 0.012376618 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: -0.5824203 + inSlope: 0.0021448752 + outSlope: 0.0021448752 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.066667 + value: -0.6133024 + inSlope: 0.0027930764 + outSlope: 0.0027930764 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.1333337 + value: -0.6208202 + inSlope: -0.026043382 + outSlope: -0.026043382 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.8 + value: -0.6334255 + inSlope: 0.005365317 + outSlope: 0.005365317 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.433333 + value: -0.6216111 + inSlope: 0.0024131404 + outSlope: 0.0024131404 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566668 + value: -0.6212276 + inSlope: 0.0015860584 + outSlope: 0.0015860584 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.7823816 + inSlope: 0.009884833 + outSlope: 0.009884833 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.7981925 + inSlope: 0.009367177 + outSlope: 0.009367177 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: 0.8114627 + inSlope: 0.0015494243 + outSlope: 0.0015494243 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.066667 + value: 0.7882301 + inSlope: 0.0021868965 + outSlope: 0.0021868965 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.1333337 + value: 0.78228444 + inSlope: -0.02080055 + outSlope: -0.02080055 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.8 + value: 0.77204716 + inSlope: 0.0044310135 + outSlope: 0.0044310135 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.433333 + value: 0.78165203 + inSlope: 0.0019321216 + outSlope: 0.0019321216 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566668 + value: 0.7819588 + inSlope: 0.0012677739 + outSlope: 0.0012677739 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.043189414 + inSlope: 0.0057052816 + outSlope: 0.0057052816 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: -0.03292756 + inSlope: 0.0066334447 + outSlope: 0.0066334447 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: -0.024909679 + inSlope: -0.0011323123 + outSlope: -0.0011323123 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.066667 + value: -0.052487537 + inSlope: 0.009214737 + outSlope: 0.009214737 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.0000005 + value: -0.05274428 + inSlope: -0.022785107 + outSlope: -0.022785107 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.666667 + value: -0.06732611 + inSlope: 0.008526751 + outSlope: 0.008526751 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.266667 + value: -0.046508197 + inSlope: 0.012896578 + outSlope: 0.012896578 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566668 + value: -0.043402556 + inSlope: 0.008312725 + outSlope: 0.008312725 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.8532387 + inSlope: -0.0006258487 + outSlope: -0.0006258487 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.8500348 + inSlope: 0.0005713111 + outSlope: 0.0005713111 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: 0.8504735 + inSlope: -0.0014179959 + outSlope: -0.0014179959 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.066667 + value: 0.84675324 + inSlope: 0.020595808 + outSlope: 0.020595808 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.0000005 + value: 0.85925716 + inSlope: 0.0014412287 + outSlope: 0.0014412287 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.666667 + value: 0.86046404 + inSlope: 0.00038713246 + outSlope: 0.00038713246 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.266667 + value: 0.85412836 + inSlope: -0.006284427 + outSlope: -0.006284427 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566668 + value: 0.85325927 + inSlope: -0.0018775213 + outSlope: -0.0018775213 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.072961375 + inSlope: -0.0018795579 + outSlope: -0.0018795579 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.07742035 + inSlope: -0.003618974 + outSlope: -0.003618974 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: 0.07110126 + inSlope: 0.0018672664 + outSlope: 0.0018672664 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.066667 + value: 0.081799515 + inSlope: -0.026814964 + outSlope: -0.026814964 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.0000005 + value: 0.06374353 + inSlope: -0.0023697163 + outSlope: -0.0023697163 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.666667 + value: 0.061275817 + inSlope: -0.0010444978 + outSlope: -0.0010444978 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.266667 + value: 0.07175366 + inSlope: 0.010277328 + outSlope: 0.010277328 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566668 + value: 0.07327469 + inSlope: 0.005413296 + outSlope: 0.005413296 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.5145824 + inSlope: 0.0017809867 + outSlope: 0.0017809867 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.5199642 + inSlope: 0.000024139998 + outSlope: 0.000024139998 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: 0.5205949 + inSlope: 0.0020080823 + outSlope: 0.0020080823 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.066667 + value: 0.52303237 + inSlope: -0.028232064 + outSlope: -0.028232064 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.0000005 + value: 0.5048088 + inSlope: -0.004533794 + outSlope: -0.004533794 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.666667 + value: 0.5013124 + inSlope: 0.0006070739 + outSlope: 0.0006070739 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.266667 + value: 0.5129846 + inSlope: 0.010195991 + outSlope: 0.010195991 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566668 + value: 0.5144858 + inSlope: 0.0030469487 + outSlope: 0.0030469487 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.08230903 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.08230903 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.08876322 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.08876322 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.47181278 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.47181278 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.87334937 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.87334937 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.020216925 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.020216925 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.13095498 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.13095498 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.029759824 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.029759824 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9907353 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.9907353 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.11187962 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.11187962 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2/mixamorig:LeftHandThumb3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.043157835 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.043157835 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2/mixamorig:LeftHandThumb3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.06851633 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.06851633 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2/mixamorig:LeftHandThumb3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.990417 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.990417 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2/mixamorig:LeftHandThumb3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.020066764 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.020066764 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2/mixamorig:LeftHandThumb3/mixamorig:LeftHandThumb4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.040932342 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.040932342 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2/mixamorig:LeftHandThumb3/mixamorig:LeftHandThumb4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.014504475 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.014504475 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2/mixamorig:LeftHandThumb3/mixamorig:LeftHandThumb4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9988551 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.9988551 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2/mixamorig:LeftHandThumb3/mixamorig:LeftHandThumb4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.52725667 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.52725667 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.049131036 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.049131036 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0017949231 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.0017949231 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.84828264 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.84828264 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.5346588 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.5346588 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0044015083 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.0044015083 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.07392787 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.07392787 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.84181666 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.84181666 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.29552224 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.29552224 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2/mixamorig:LeftHandIndex3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.00000004259299 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.00000004259299 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2/mixamorig:LeftHandIndex3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.039288804 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.039288804 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2/mixamorig:LeftHandIndex3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9545276 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.9545276 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2/mixamorig:LeftHandIndex3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.044488665 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.044488665 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2/mixamorig:LeftHandIndex3/mixamorig:LeftHandIndex4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.000000011914793 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.000000011914793 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2/mixamorig:LeftHandIndex3/mixamorig:LeftHandIndex4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0000000082773415 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.0000000082773415 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2/mixamorig:LeftHandIndex3/mixamorig:LeftHandIndex4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9990099 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.9990099 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2/mixamorig:LeftHandIndex3/mixamorig:LeftHandIndex4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.5619301 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.5619301 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.027315538 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.027315538 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.053429592 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.053429592 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.82500523 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.82500523 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.525876 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.525876 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.011388979 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.011388979 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0763789 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.0763789 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.8470484 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.8470484 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.25774014 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.25774014 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2/mixamorig:LeftHandMiddle3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0029408918 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.0029408918 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2/mixamorig:LeftHandMiddle3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.035217702 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.035217702 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2/mixamorig:LeftHandMiddle3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.96556777 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.96556777 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2/mixamorig:LeftHandMiddle3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.010558693 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.010558693 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2/mixamorig:LeftHandMiddle3/mixamorig:LeftHandMiddle4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0028613093 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.0028613093 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2/mixamorig:LeftHandMiddle3/mixamorig:LeftHandMiddle4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0028610115 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.0028610115 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2/mixamorig:LeftHandMiddle3/mixamorig:LeftHandMiddle4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9999361 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.9999361 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2/mixamorig:LeftHandMiddle3/mixamorig:LeftHandMiddle4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.6351033 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.6351033 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.001025416 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.001025416 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.075982384 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.075982384 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.76868033 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.76868033 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.38113517 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.38113517 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.00013206946 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.00013206946 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.050672367 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.050672367 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9231296 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.9231296 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.23182775 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.23182775 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2/mixamorig:LeftHandPinky3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.000000016311873 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.000000016311873 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2/mixamorig:LeftHandPinky3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.030787997 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.030787997 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2/mixamorig:LeftHandPinky3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.97226954 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.97226954 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2/mixamorig:LeftHandPinky3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.04451906 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.04451906 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2/mixamorig:LeftHandPinky3/mixamorig:LeftHandPinky4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.000000010890761 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.000000010890761 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2/mixamorig:LeftHandPinky3/mixamorig:LeftHandPinky4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.000000012911383 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.000000012911383 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2/mixamorig:LeftHandPinky3/mixamorig:LeftHandPinky4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.99900854 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.99900854 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2/mixamorig:LeftHandPinky3/mixamorig:LeftHandPinky4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.5820841 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.5820841 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.39321658 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.39321658 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.45136157 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.45136157 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.5503013 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.5503013 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.40621585 + inSlope: -0.0011399387 + outSlope: -0.0011399387 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.4044372 + inSlope: -0.002613815 + outSlope: -0.002613815 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: 0.39847922 + inSlope: -0.0013165189 + outSlope: -0.0013165189 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9333334 + value: 0.4050796 + inSlope: 0.002662095 + outSlope: 0.002662095 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.566667 + value: 0.40676484 + inSlope: 0.00009655961 + outSlope: 0.00009655961 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.233334 + value: 0.40628666 + inSlope: -0.00028789084 + outSlope: -0.00028789084 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566668 + value: 0.40633622 + inSlope: 0.0000053643466 + outSlope: 0.0000053643466 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.15145828 + inSlope: 0.002118498 + outSlope: 0.002118498 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.15491089 + inSlope: 0.0005692994 + outSlope: 0.0005692994 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: 0.15389824 + inSlope: -0.00037506258 + outSlope: -0.00037506258 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9333334 + value: 0.15483092 + inSlope: 0.0006021565 + outSlope: 0.0006021565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.566667 + value: 0.15436053 + inSlope: -0.0011647504 + outSlope: -0.0011647504 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.233334 + value: 0.15187909 + inSlope: -0.0014841572 + outSlope: -0.0014841572 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566668 + value: 0.15149507 + inSlope: -0.00000402326 + outSlope: -0.00000402326 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.15426609 + inSlope: -0.0046987827 + outSlope: -0.0046987827 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.14679222 + inSlope: -0.0061713215 + outSlope: -0.0061713215 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: 0.13521473 + inSlope: -0.003282133 + outSlope: -0.003282133 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9333334 + value: 0.14798954 + inSlope: 0.0050624507 + outSlope: 0.0050624507 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.566667 + value: 0.15225327 + inSlope: 0.0015058382 + outSlope: 0.0015058382 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.233334 + value: 0.15386254 + inSlope: 0.0009794541 + outSlope: 0.0009794541 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566668 + value: 0.15421347 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.887835 + inSlope: 0.000976324 + outSlope: 0.000976324 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.8893173 + inSlope: 0.0021082181 + outSlope: 0.0021082181 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: 0.89400595 + inSlope: 0.0011488807 + outSlope: 0.0011488807 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9333334 + value: 0.8888403 + inSlope: -0.0021609685 + outSlope: -0.0021609685 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.566667 + value: 0.88743126 + inSlope: -0.00009924183 + outSlope: -0.00009924183 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.233334 + value: 0.88780075 + inSlope: 0.00021547108 + outSlope: 0.00021547108 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566668 + value: 0.8877828 + inSlope: -0.0000017881155 + outSlope: -0.0000017881155 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.060959674 + inSlope: -0.00023715197 + outSlope: -0.00023715197 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.0605845 + inSlope: -0.000051688454 + outSlope: -0.000051688454 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: 0.0607371 + inSlope: 0.00012813148 + outSlope: 0.00012813148 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9333334 + value: 0.06060715 + inSlope: -0.00011634093 + outSlope: -0.00011634093 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.566667 + value: 0.06062643 + inSlope: 0.00012556103 + outSlope: 0.00012556103 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.233334 + value: 0.06090736 + inSlope: 0.00016646477 + outSlope: 0.00016646477 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566668 + value: 0.06095969 + inSlope: 0.00014751953 + outSlope: 0.00014751953 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0073125577 + inSlope: -0.000038975846 + outSlope: -0.000038975846 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: -0.0073715174 + inSlope: -0.000007662464 + outSlope: -0.000007662464 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: -0.0073475405 + inSlope: 0.000022093322 + outSlope: 0.000022093322 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9333334 + value: -0.007367945 + inSlope: -0.000017343571 + outSlope: -0.000017343571 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.566667 + value: -0.0073648826 + inSlope: 0.00001980925 + outSlope: 0.00001980925 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.233334 + value: -0.0073207864 + inSlope: 0.00002529941 + outSlope: 0.00002529941 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566668 + value: -0.007312517 + inSlope: 0.000030803083 + outSlope: 0.000030803083 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.751275 + inSlope: -0.0029450653 + outSlope: -0.0029450653 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.7466503 + inSlope: -0.0006276375 + outSlope: -0.0006276375 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: 0.7485334 + inSlope: 0.0015923396 + outSlope: 0.0015923396 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9333334 + value: 0.746931 + inSlope: -0.0014260425 + outSlope: -0.0014260425 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.566667 + value: 0.7471677 + inSlope: 0.0015807167 + outSlope: 0.0015807167 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.233334 + value: 0.7506299 + inSlope: 0.002063515 + outSlope: 0.002063515 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566668 + value: 0.751275 + inSlope: 0.0018042085 + outSlope: 0.0018042085 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.6571274 + inSlope: 0.0033867357 + outSlope: 0.0033867357 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.66241115 + inSlope: 0.0007107861 + outSlope: 0.0007107861 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: 0.6602687 + inSlope: -0.0018167513 + outSlope: -0.0018167513 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9333334 + value: 0.66209257 + inSlope: 0.0016173737 + outSlope: 0.0016173737 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.566667 + value: 0.66182375 + inSlope: -0.0017961877 + outSlope: -0.0017961877 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.233334 + value: 0.65786886 + inSlope: -0.002368393 + outSlope: -0.002368393 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566668 + value: 0.6571273 + inSlope: -0.002076002 + outSlope: -0.002076002 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.23975046 + inSlope: -0.0010348856 + outSlope: -0.0010348856 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.23780231 + inSlope: -0.000035539302 + outSlope: -0.000035539302 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: 0.2378255 + inSlope: -0.00032275947 + outSlope: -0.00032275947 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.1333337 + value: 0.24801613 + inSlope: 0.021161085 + outSlope: 0.021161085 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8 + value: 0.27537504 + inSlope: 0.002940598 + outSlope: 0.002940598 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.433334 + value: 0.25865322 + inSlope: -0.017527806 + outSlope: -0.017527806 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566668 + value: 0.23977275 + inSlope: -0.01349893 + outSlope: -0.01349893 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.26762944 + inSlope: -0.0015377997 + outSlope: -0.0015377997 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: -0.27286264 + inSlope: -0.00011980545 + outSlope: -0.00011980545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: -0.27281484 + inSlope: -0.0011569273 + outSlope: -0.0011569273 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.1333337 + value: -0.27784342 + inSlope: 0.0123363845 + outSlope: 0.0123363845 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8 + value: -0.2723533 + inSlope: 0.00039473214 + outSlope: 0.00039473214 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.433334 + value: -0.26968446 + inSlope: 0.0020228345 + outSlope: 0.0020228345 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566668 + value: -0.26745734 + inSlope: 0.0017925857 + outSlope: 0.0017925857 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.14488174 + inSlope: 0.004635751 + outSlope: 0.004635751 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: -0.13857594 + inSlope: 0.00016719119 + outSlope: 0.00016719119 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: -0.13864495 + inSlope: 0.0010384629 + outSlope: 0.0010384629 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.1333337 + value: -0.13168015 + inSlope: -0.047138974 + outSlope: -0.047138974 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8 + value: -0.15180318 + inSlope: 0.0017617659 + outSlope: 0.0017617659 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.433334 + value: -0.14824124 + inSlope: 0.003202784 + outSlope: 0.003202784 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566668 + value: -0.14483225 + inSlope: 0.0024827984 + outSlope: 0.0024827984 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9219021 + inSlope: 0.0005507469 + outSlope: 0.0005507469 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.9218421 + inSlope: -0.000001788141 + outSlope: -0.000001788141 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: 0.92183983 + inSlope: -0.000102818114 + outSlope: -0.000102818114 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.1333337 + value: 0.91866827 + inSlope: -0.008741328 + outSlope: -0.008741328 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8 + value: 0.9093669 + inSlope: -0.0004792218 + outSlope: -0.0004792218 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.433334 + value: 0.91563827 + inSlope: 0.00606448 + outSlope: 0.00606448 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566668 + value: 0.92195404 + inSlope: 0.0044255857 + outSlope: 0.0044255857 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.38833296 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.38833296 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.28283358 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.28283358 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.33572036 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.33572036 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.8102435 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.8102435 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.14302097 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.14302097 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.27054727 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.27054727 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.26273102 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.26273102 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9150528 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.9150528 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.021491483 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.021491483 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2/mixamorig:RightHandThumb3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.050826315 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.050826315 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2/mixamorig:RightHandThumb3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.452259 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.452259 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2/mixamorig:RightHandThumb3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.8901779 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.8901779 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2/mixamorig:RightHandThumb3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.02006682 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.02006682 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2/mixamorig:RightHandThumb3/mixamorig:RightHandThumb4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.040932275 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.040932275 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2/mixamorig:RightHandThumb3/mixamorig:RightHandThumb4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.014504491 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.014504491 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2/mixamorig:RightHandThumb3/mixamorig:RightHandThumb4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9988551 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.9988551 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2/mixamorig:RightHandThumb3/mixamorig:RightHandThumb4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.10662278 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.10662278 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.025746547 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.025746547 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.041861746 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.041861746 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.99308425 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.99308425 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.4510986 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.4510986 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.004658248 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.004658248 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.052820675 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.052820675 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.8908975 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.8908975 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.5697259 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.5697259 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2/mixamorig:RightHandIndex3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.00000015485489 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.00000015485489 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2/mixamorig:RightHandIndex3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.06369333 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.06369333 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2/mixamorig:RightHandIndex3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.81936294 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.81936294 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2/mixamorig:RightHandIndex3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.04448856 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.04448856 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2/mixamorig:RightHandIndex3/mixamorig:RightHandIndex4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0000000036744985 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.0000000036744985 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2/mixamorig:RightHandIndex3/mixamorig:RightHandIndex4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.000000021536104 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.000000021536104 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2/mixamorig:RightHandIndex3/mixamorig:RightHandIndex4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9990099 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.9990099 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2/mixamorig:RightHandIndex3/mixamorig:RightHandIndex4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.45358685 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.45358685 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.028650686 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.028650686 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.027662467 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.027662467 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.89032185 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.89032185 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.76680744 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.76680744 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.008365928 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.008365928 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.09537103 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.09537103 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.6346974 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.6346974 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.711122 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.711122 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2/mixamorig:RightHandMiddle3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0023630888 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.0023630888 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2/mixamorig:RightHandMiddle3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.081236094 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.081236094 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2/mixamorig:RightHandMiddle3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.6983557 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.6983557 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2/mixamorig:RightHandMiddle3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.010558617 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.010558617 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2/mixamorig:RightHandMiddle3/mixamorig:RightHandMiddle4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0028613375 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.0028613375 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2/mixamorig:RightHandMiddle3/mixamorig:RightHandMiddle4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0028610392 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.0028610392 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2/mixamorig:RightHandMiddle3/mixamorig:RightHandMiddle4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9999361 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.9999361 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2/mixamorig:RightHandMiddle3/mixamorig:RightHandMiddle4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.5890058 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.5890058 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.018781543 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.018781543 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0834176 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.0834176 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.8035925 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.8035925 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.48052412 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.48052412 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.00012533626 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.00012533626 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.053722907 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.053722907 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.8753345 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.8753345 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.3329109 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.3329109 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2/mixamorig:RightHandPinky3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.000000026206775 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.000000026206775 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2/mixamorig:RightHandPinky3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.03717147 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.03717147 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2/mixamorig:RightHandPinky3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9422254 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.9422254 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2/mixamorig:RightHandPinky3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.04451908 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.04451908 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2/mixamorig:RightHandPinky3/mixamorig:RightHandPinky4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.00000004775173 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.00000004775173 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2/mixamorig:RightHandPinky3/mixamorig:RightHandPinky4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 3.8282805e-10 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 3.8282805e-10 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2/mixamorig:RightHandPinky3/mixamorig:RightHandPinky4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.99900854 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.99900854 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2/mixamorig:RightHandPinky3/mixamorig:RightHandPinky4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.10330437 + inSlope: 0.000106394284 + outSlope: 0.000106394284 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: -0.09984594 + inSlope: 0.0030018417 + outSlope: 0.0030018417 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9333334 + value: -0.09779217 + inSlope: 0.0029913178 + outSlope: 0.0029913178 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.566667 + value: -0.09561089 + inSlope: 0.0011968252 + outSlope: 0.0011968252 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.2333336 + value: -0.09898961 + inSlope: -0.0051941024 + outSlope: -0.0051941024 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.8666673 + value: -0.103969134 + inSlope: -0.00047989233 + outSlope: -0.00047989233 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566668 + value: -0.103320844 + inSlope: 0.0025433707 + outSlope: 0.0025433707 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.068327546 + inSlope: -0.008718297 + outSlope: -0.008718297 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.072891854 + inSlope: 0.0076621845 + outSlope: 0.0076621845 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9333334 + value: 0.06760048 + inSlope: -0.0116736125 + outSlope: -0.0116736125 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.566667 + value: 0.06951525 + inSlope: 0.016292311 + outSlope: 0.016292311 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.2333336 + value: 0.07426565 + inSlope: -0.0019817073 + outSlope: -0.0019817073 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.8666673 + value: 0.07069425 + inSlope: -0.0031416519 + outSlope: -0.0031416519 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566668 + value: 0.0681498 + inSlope: -0.0003810921 + outSlope: -0.0003810921 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.99215096 + inSlope: 0.00077247614 + outSlope: 0.00077247614 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.9923284 + inSlope: -0.00028073814 + outSlope: -0.00028073814 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9333334 + value: 0.99277395 + inSlope: 0.00096201565 + outSlope: 0.00096201565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.566667 + value: 0.9928286 + inSlope: -0.0010031471 + outSlope: -0.0010031471 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.2333336 + value: 0.9923121 + inSlope: -0.00034242903 + outSlope: -0.00034242903 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.8666673 + value: 0.99190557 + inSlope: 0.000046491667 + outSlope: 0.000046491667 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566668 + value: 0.9921629 + inSlope: 0.00041841902 + outSlope: 0.00041841902 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.017203951 + inSlope: -0.009383651 + outSlope: -0.009383651 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: -0.0013933952 + inSlope: -0.013411798 + outSlope: -0.013411798 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9333334 + value: -0.016331797 + inSlope: -0.0077172783 + outSlope: -0.0077172783 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.566667 + value: -0.017819237 + inSlope: 0.0011642195 + outSlope: 0.0011642195 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.2333336 + value: -0.0015418116 + inSlope: 0.017007768 + outSlope: 0.017007768 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.8666673 + value: 0.01777904 + inSlope: 0.007098836 + outSlope: 0.007098836 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566668 + value: 0.017125161 + inSlope: -0.007304508 + outSlope: -0.007304508 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.13609383 + inSlope: 0.008376539 + outSlope: 0.008376539 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: -0.17053609 + inSlope: -0.025282973 + outSlope: -0.025282973 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: -0.19070515 + inSlope: 0.00032477113 + outSlope: 0.00032477113 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.866667 + value: -0.17236227 + inSlope: -0.0020411632 + outSlope: -0.0020411632 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.266667 + value: -0.15779607 + inSlope: 0.012430262 + outSlope: 0.012430262 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.433334 + value: -0.14762418 + inSlope: 0.007857092 + outSlope: 0.007857092 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566668 + value: -0.13563596 + inSlope: 0.003527952 + outSlope: 0.003527952 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.061272964 + inSlope: 0.012345425 + outSlope: 0.012345425 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.080763705 + inSlope: 0.0020612795 + outSlope: 0.0020612795 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: 0.082902096 + inSlope: 0.0023650401 + outSlope: 0.0023650401 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.866667 + value: 0.06286742 + inSlope: -0.029842734 + outSlope: -0.029842734 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.266667 + value: 0.06775779 + inSlope: 0.017927231 + outSlope: 0.017927231 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.433334 + value: 0.06228454 + inSlope: -0.012626735 + outSlope: -0.012626735 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566668 + value: 0.06122194 + inSlope: 0.01145478 + outSlope: 0.01145478 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.071809866 + inSlope: -0.0020789355 + outSlope: -0.0020789355 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: -0.07532407 + inSlope: -0.004332554 + outSlope: -0.004332554 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: -0.07566989 + inSlope: -0.00066921185 + outSlope: -0.00066921185 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.866667 + value: -0.06678396 + inSlope: 0.011326868 + outSlope: 0.011326868 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.266667 + value: -0.070500426 + inSlope: -0.0058739316 + outSlope: -0.0058739316 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.433334 + value: -0.070731 + inSlope: 0.003144781 + outSlope: 0.003144781 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566668 + value: -0.071868025 + inSlope: -0.002686867 + outSlope: -0.002686867 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.98618835 + inSlope: 0.00023424624 + outSlope: 0.00023424624 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.97914296 + inSlope: -0.004905765 + outSlope: -0.004905765 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: 0.9752092 + inSlope: -0.00018864888 + outSlope: -0.00018864888 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.866667 + value: 0.98075426 + inSlope: 0.002331736 + outSlope: 0.002331736 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.266667 + value: 0.98261845 + inSlope: 0.00034153493 + outSlope: 0.00034153493 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.433334 + value: 0.984543 + inSlope: 0.0022003076 + outSlope: 0.0022003076 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566668 + value: 0.98625034 + inSlope: -0.00042020713 + outSlope: -0.00042020713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.52444685 + inSlope: 0.0020813942 + outSlope: 0.0020813942 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.55620855 + inSlope: 0.020798761 + outSlope: 0.020798761 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.966667 + value: 0.5813931 + inSlope: 0.008482913 + outSlope: 0.008482913 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.166667 + value: 0.57548857 + inSlope: -0.032654136 + outSlope: -0.032654136 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.3333335 + value: 0.55294526 + inSlope: -0.011986803 + outSlope: -0.011986803 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.866667 + value: 0.5358082 + inSlope: -0.010197723 + outSlope: -0.010197723 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.5 + value: 0.5244036 + inSlope: -0.005248186 + outSlope: -0.005248186 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566668 + value: 0.52413726 + inSlope: -0.0022047465 + outSlope: -0.0022047465 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.038447037 + inSlope: -0.004690289 + outSlope: -0.004690289 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.032515254 + inSlope: 0.008967304 + outSlope: 0.008967304 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.966667 + value: 0.049543235 + inSlope: 0.014751861 + outSlope: 0.014751861 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.166667 + value: 0.049568053 + inSlope: -0.018859189 + outSlope: -0.018859189 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.3333335 + value: 0.035700627 + inSlope: 0.005142917 + outSlope: 0.005142917 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.866667 + value: 0.03245288 + inSlope: 0.0068688616 + outSlope: 0.0068688616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.5 + value: 0.038651653 + inSlope: -0.0030805126 + outSlope: -0.0030805126 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566668 + value: 0.03842836 + inSlope: -0.0030995863 + outSlope: -0.0030995863 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.04562292 + inSlope: -0.004830546 + outSlope: -0.004830546 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.031802982 + inSlope: -0.011489309 + outSlope: -0.011489309 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.966667 + value: 0.01517949 + inSlope: -0.010512322 + outSlope: -0.010512322 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.166667 + value: 0.012147757 + inSlope: -0.0070998278 + outSlope: -0.0070998278 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.3333335 + value: 0.0073307846 + inSlope: 0.010227986 + outSlope: 0.010227986 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.866667 + value: 0.036245383 + inSlope: 0.009666885 + outSlope: 0.009666885 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.5 + value: 0.045888323 + inSlope: -0.003680769 + outSlope: -0.003680769 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566668 + value: 0.045624316 + inSlope: -0.0037082161 + outSlope: -0.0037082161 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.8493503 + inSlope: -0.0008153915 + outSlope: -0.0008153915 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.8297972 + inSlope: -0.013853623 + outSlope: -0.013853623 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.966667 + value: 0.8119712 + inSlope: -0.0067725596 + outSlope: -0.0067725596 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.166667 + value: 0.8162159 + inSlope: 0.024270438 + outSlope: 0.024270438 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.3333335 + value: 0.8324201 + inSlope: 0.007654138 + outSlope: 0.007654138 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.866667 + value: 0.842937 + inSlope: 0.005802495 + outSlope: 0.005802495 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.5 + value: 0.8493534 + inSlope: 0.0035789586 + outSlope: 0.0035789586 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566668 + value: 0.8495422 + inSlope: 0.001702286 + outSlope: 0.001702286 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.1697029 + inSlope: 0.003094375 + outSlope: 0.003094375 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.17373471 + inSlope: -0.002588334 + outSlope: -0.002588334 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: 0.17498669 + inSlope: 0.0002702328 + outSlope: 0.0002702328 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9333334 + value: 0.17292629 + inSlope: 0.002948868 + outSlope: 0.002948868 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.566667 + value: 0.1708278 + inSlope: 0.0021030772 + outSlope: 0.0021030772 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.233334 + value: 0.16975147 + inSlope: -0.0017228776 + outSlope: -0.0017228776 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566668 + value: 0.16970254 + inSlope: -0.0035587968 + outSlope: -0.0035587968 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot/mixamorig:LeftToeBase + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.028958991 + inSlope: 0.00047056001 + outSlope: 0.00047056001 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.029571114 + inSlope: -0.00039313958 + outSlope: -0.00039313958 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: 0.029761156 + inSlope: 0.000040819905 + outSlope: 0.000040819905 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9333334 + value: 0.02944835 + inSlope: 0.00044776167 + outSlope: 0.00044776167 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.566667 + value: 0.029129785 + inSlope: 0.00031957435 + outSlope: 0.00031957435 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.233334 + value: 0.028966373 + inSlope: -0.0002610412 + outSlope: -0.0002610412 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566668 + value: 0.028958919 + inSlope: -0.00054062554 + outSlope: -0.00054062554 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot/mixamorig:LeftToeBase + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.1220501 + inSlope: -0.000065267086 + outSlope: -0.000065267086 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: -0.122133315 + inSlope: 0.00005330895 + outSlope: 0.00005330895 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: -0.12215853 + inSlope: -0.0000062584936 + outSlope: -0.0000062584936 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9333334 + value: -0.12211671 + inSlope: -0.000060014485 + outSlope: -0.000060014485 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.566667 + value: -0.12207353 + inSlope: -0.000044144734 + outSlope: -0.000044144734 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.233334 + value: -0.12205115 + inSlope: 0.000036098165 + outSlope: 0.000036098165 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566668 + value: -0.12205009 + inSlope: 0.00007465382 + outSlope: 0.00007465382 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot/mixamorig:LeftToeBase + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.97747946 + inSlope: -0.00055968756 + outSlope: -0.00055968756 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.9767422 + inSlope: 0.0004792218 + outSlope: 0.0004792218 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: 0.9765097 + inSlope: -0.00005006795 + outSlope: -0.00005006795 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9333334 + value: 0.9768914 + inSlope: -0.00054270076 + outSlope: -0.00054270076 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.566667 + value: 0.9772755 + inSlope: -0.00038266217 + outSlope: -0.00038266217 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.233334 + value: 0.9774707 + inSlope: 0.0003120313 + outSlope: 0.0003120313 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566668 + value: 0.9774795 + inSlope: 0.00064372155 + outSlope: 0.00064372155 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot/mixamorig:LeftToeBase + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.04573715 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.04573715 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot/mixamorig:LeftToeBase/mixamorig:LeftToe_End + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.039433047 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.039433047 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot/mixamorig:LeftToeBase/mixamorig:LeftToe_End + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0727525 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.0727525 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot/mixamorig:LeftToeBase/mixamorig:LeftToe_End + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.99552006 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.99552006 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot/mixamorig:LeftToeBase/mixamorig:LeftToe_End + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.1422966 + inSlope: -0.0011448561 + outSlope: -0.0011448561 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 0.15297547 + inSlope: 0.0060298354 + outSlope: 0.0060298354 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8666668 + value: 0.16039096 + inSlope: 0.0066371327 + outSlope: 0.0066371327 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.066667 + value: 0.16288458 + inSlope: -0.0014732047 + outSlope: -0.0014732047 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9333334 + value: 0.16468748 + inSlope: -0.00054717116 + outSlope: -0.00054717116 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.933334 + value: 0.1577749 + inSlope: -0.015762586 + outSlope: -0.015762586 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.6000004 + value: 0.1427515 + inSlope: -0.008405157 + outSlope: -0.008405157 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566668 + value: 0.14229013 + inSlope: 0.005974094 + outSlope: 0.005974094 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.10651207 + inSlope: -0.003978163 + outSlope: -0.003978163 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: -0.11661403 + inSlope: -0.0021113476 + outSlope: -0.0021113476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8666668 + value: -0.12340152 + inSlope: -0.00908141 + outSlope: -0.00908141 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.066667 + value: -0.12725063 + inSlope: 0.026353177 + outSlope: 0.026353177 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9333334 + value: -0.12777656 + inSlope: -0.005683383 + outSlope: -0.005683383 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.933334 + value: -0.118269 + inSlope: 0.0080166375 + outSlope: 0.0080166375 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.6000004 + value: -0.10917243 + inSlope: 0.0022336117 + outSlope: 0.0022336117 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566668 + value: -0.10644124 + inSlope: -0.0030936634 + outSlope: -0.0030936634 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9835715 + inSlope: -0.00061869615 + outSlope: -0.00061869615 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 0.9795744 + inSlope: -0.0021994135 + outSlope: -0.0021994135 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8666668 + value: 0.9757573 + inSlope: -0.0036236676 + outSlope: -0.0036236676 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.066667 + value: 0.9747173 + inSlope: 0.0040268935 + outSlope: 0.0040268935 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9333334 + value: 0.97524667 + inSlope: -0.00005185609 + outSlope: -0.00005185609 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.933334 + value: 0.9785112 + inSlope: 0.0046768533 + outSlope: 0.0046768533 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.6000004 + value: 0.983098 + inSlope: 0.0018981118 + outSlope: 0.0018981118 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566668 + value: 0.9835802 + inSlope: -0.0013965182 + outSlope: -0.0013965182 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.031527035 + inSlope: -0.010974704 + outSlope: -0.010974704 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: -0.058598567 + inSlope: -0.016921012 + outSlope: -0.016921012 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8666668 + value: -0.083334155 + inSlope: -0.01625789 + outSlope: -0.01625789 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.066667 + value: -0.08486491 + inSlope: 0.0038671903 + outSlope: 0.0038671903 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9333334 + value: -0.0737912 + inSlope: 0.0079155415 + outSlope: 0.0079155415 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.933334 + value: -0.06029369 + inSlope: 0.018971547 + outSlope: 0.018971547 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.6000004 + value: -0.0349543 + inSlope: 0.012045365 + outSlope: 0.012045365 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566668 + value: -0.031524945 + inSlope: -0.0061888914 + outSlope: -0.0061888914 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.18203177 + inSlope: 0.017016828 + outSlope: 0.017016828 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.15255621 + inSlope: 0.027368795 + outSlope: 0.027368795 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6333334 + value: -0.12050734 + inSlope: 0.034969445 + outSlope: 0.034969445 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4333334 + value: -0.09663582 + inSlope: 0.018760115 + outSlope: 0.018760115 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.2333336 + value: -0.11419897 + inSlope: -0.064627774 + outSlope: -0.064627774 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.8 + value: -0.11759914 + inSlope: 0.011932489 + outSlope: 0.011932489 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.066667 + value: -0.1494048 + inSlope: -0.02036469 + outSlope: -0.02036469 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.7333336 + value: -0.17852356 + inSlope: -0.008269258 + outSlope: -0.008269258 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566668 + value: -0.18225764 + inSlope: 0.0085726725 + outSlope: 0.0085726725 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0742741 + inSlope: 0.012275129 + outSlope: 0.012275129 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.074679375 + inSlope: 0.003941839 + outSlope: 0.003941839 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6333334 + value: -0.052903127 + inSlope: 0.024950825 + outSlope: 0.024950825 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4333334 + value: -0.046334963 + inSlope: -0.008778756 + outSlope: -0.008778756 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.2333336 + value: -0.049188327 + inSlope: -0.019363947 + outSlope: -0.019363947 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.8 + value: -0.067670375 + inSlope: -0.02573012 + outSlope: -0.02573012 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.066667 + value: -0.07749966 + inSlope: -0.0022338352 + outSlope: -0.0022338352 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.7333336 + value: -0.073901646 + inSlope: 0.0022424408 + outSlope: 0.0022424408 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566668 + value: -0.074278906 + inSlope: -0.010316309 + outSlope: -0.010316309 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.09931211 + inSlope: -0.0036265699 + outSlope: -0.0036265699 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.09696071 + inSlope: 0.00042792258 + outSlope: 0.00042792258 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6333334 + value: 0.09294446 + inSlope: -0.0024111965 + outSlope: -0.0024111965 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4333334 + value: 0.0914259 + inSlope: 0.0022788695 + outSlope: 0.0022788695 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.2333336 + value: 0.09384133 + inSlope: 0.006752691 + outSlope: 0.006752691 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.8 + value: 0.09879506 + inSlope: 0.0011409456 + outSlope: 0.0011409456 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.066667 + value: 0.10103764 + inSlope: 0.00016931462 + outSlope: 0.00016931462 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.7333336 + value: 0.09859045 + inSlope: -0.00014975679 + outSlope: -0.00014975679 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566668 + value: 0.09936113 + inSlope: 0.0046980497 + outSlope: 0.0046980497 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9754409 + inSlope: 0.004470348 + outSlope: 0.004470348 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.9806876 + inSlope: 0.004516837 + outSlope: 0.004516837 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6333334 + value: 0.98693496 + inSlope: 0.0058391746 + outSlope: 0.0058391746 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4333334 + value: 0.99002826 + inSlope: 0.0012132493 + outSlope: 0.0012132493 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.2333336 + value: 0.98779196 + inSlope: -0.009092698 + outSlope: -0.009092698 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.8 + value: 0.98581475 + inSlope: -0.0004345183 + outSlope: -0.0004345183 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.066667 + value: 0.9805424 + inSlope: -0.0033035907 + outSlope: -0.0033035907 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.7333336 + value: 0.97619045 + inSlope: -0.0013276946 + outSlope: -0.0013276946 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566668 + value: 0.97539335 + inSlope: 0.00034153005 + outSlope: 0.00034153005 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.69759643 + inSlope: -0.010569691 + outSlope: -0.010569691 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.67366457 + inSlope: -0.011536172 + outSlope: -0.011536172 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.65712893 + inSlope: -0.01735838 + outSlope: -0.01735838 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.2333336 + value: 0.6583123 + inSlope: 0.020272154 + outSlope: 0.020272154 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.3 + value: 0.66206443 + inSlope: 0.019547958 + outSlope: 0.019547958 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.933334 + value: 0.6875262 + inSlope: 0.011974286 + outSlope: 0.011974286 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566668 + value: 0.69765896 + inSlope: -0.004105513 + outSlope: -0.004105513 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.099760756 + inSlope: -0.0037206707 + outSlope: -0.0037206707 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.084464975 + inSlope: 0.0085146595 + outSlope: 0.0085146595 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: -0.09205067 + inSlope: -0.0040663444 + outSlope: -0.0040663444 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.2333336 + value: -0.09188757 + inSlope: 0.005078544 + outSlope: 0.005078544 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.3 + value: -0.0939005 + inSlope: 0.002322013 + outSlope: 0.002322013 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.933334 + value: -0.09662456 + inSlope: -0.011773903 + outSlope: -0.011773903 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566668 + value: -0.099752404 + inSlope: 0.012997141 + outSlope: 0.012997141 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.061202407 + inSlope: -0.0019715354 + outSlope: -0.0019715354 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.09210086 + inSlope: -0.019466002 + outSlope: -0.019466002 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: -0.10463855 + inSlope: -0.0054032034 + outSlope: -0.0054032034 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.2333336 + value: -0.10313082 + inSlope: 0.009031565 + outSlope: 0.009031565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.3 + value: -0.103416935 + inSlope: 0.008009531 + outSlope: 0.008009531 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.933334 + value: -0.07645479 + inSlope: 0.02293995 + outSlope: 0.02293995 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566668 + value: -0.061188962 + inSlope: -0.017628472 + outSlope: -0.017628472 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.7068672 + inSlope: 0.009729265 + outSlope: 0.009729265 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.7283949 + inSlope: 0.009192817 + outSlope: 0.009192817 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.7407827 + inSlope: 0.014140619 + outSlope: 0.014140619 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.2333336 + value: 0.73996323 + inSlope: -0.01615049 + outSlope: -0.01615049 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.3 + value: 0.736314 + inSlope: -0.016161218 + outSlope: -0.016161218 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.933334 + value: 0.7156298 + inSlope: -0.010646592 + outSlope: -0.010646592 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566668 + value: 0.70680785 + inSlope: 0.0043719425 + outSlope: 0.0043719425 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.18977803 + inSlope: -0.0002235174 + outSlope: -0.0002235174 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.18840021 + inSlope: -0.006308114 + outSlope: -0.006308114 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: 0.18598105 + inSlope: -0.001116247 + outSlope: -0.001116247 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9333334 + value: 0.18428864 + inSlope: -0.00237711 + outSlope: -0.00237711 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.566667 + value: 0.18697678 + inSlope: 0.001710804 + outSlope: 0.001710804 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.233334 + value: 0.18758929 + inSlope: 0.0027186153 + outSlope: 0.0027186153 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566668 + value: 0.18760386 + inSlope: 0.005437659 + outSlope: 0.005437659 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot/mixamorig:RightToeBase + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.03200634 + inSlope: 0.00003375113 + outSlope: 0.00003375113 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: -0.03179726 + inSlope: 0.00095548196 + outSlope: 0.00095548196 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: -0.03143005 + inSlope: 0.00017026455 + outSlope: 0.00017026455 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9333334 + value: -0.031173196 + inSlope: 0.00036039425 + outSlope: 0.00036039425 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.566667 + value: -0.031581193 + inSlope: -0.00026084506 + outSlope: -0.00026084506 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.233334 + value: -0.03167411 + inSlope: -0.0004115473 + outSlope: -0.0004115473 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566668 + value: -0.031676386 + inSlope: -0.0008264446 + outSlope: -0.0008264446 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot/mixamorig:RightToeBase + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.12244377 + inSlope: -0.0000058114524 + outSlope: -0.0000058114524 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.12241829 + inSlope: -0.000115446855 + outSlope: -0.000115446855 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: 0.122373 + inSlope: -0.00002268704 + outSlope: -0.00002268704 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9333334 + value: 0.12234122 + inSlope: -0.00004425649 + outSlope: -0.00004425649 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.566667 + value: 0.12239184 + inSlope: 0.00003475699 + outSlope: 0.00003475699 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.233334 + value: 0.12240322 + inSlope: 0.000048167458 + outSlope: 0.000048167458 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566668 + value: 0.12240357 + inSlope: 0.00010326367 + outSlope: 0.00010326367 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot/mixamorig:RightToeBase + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9736362 + inSlope: 0.00004470348 + outSlope: 0.00004470348 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.9739138 + inSlope: 0.001266898 + outSlope: 0.001266898 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: 0.9743963 + inSlope: 0.0002217295 + outSlope: 0.0002217295 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9333334 + value: 0.97473 + inSlope: 0.0004667048 + outSlope: 0.0004667048 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.566667 + value: 0.9741984 + inSlope: -0.00034153493 + outSlope: -0.00034153493 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.233334 + value: 0.9740762 + inSlope: -0.00054358895 + outSlope: -0.00054358895 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566668 + value: 0.9740733 + inSlope: -0.0010871742 + outSlope: -0.0010871742 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot/mixamorig:RightToeBase + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.04573715 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.04573715 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot/mixamorig:RightToeBase/mixamorig:RightToe_End + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.039433047 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.039433047 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot/mixamorig:RightToeBase/mixamorig:RightToe_End + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0727525 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.0727525 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot/mixamorig:RightToeBase/mixamorig:RightToe_End + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.99552006 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.99552006 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot/mixamorig:RightToeBase/mixamorig:RightToe_End + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0003571545 + inSlope: -0.0003553033 + outSlope: -0.0003553033 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.00044218823 + inSlope: -0.00030960335 + outSlope: -0.00030960495 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.0004527182 + inSlope: -0.00030069088 + outSlope: -0.0003006873 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.0004622339 + inSlope: -0.0003050193 + outSlope: -0.00030502913 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.00047305287 + inSlope: -0.00033025997 + outSlope: -0.00033024905 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333334 + value: -0.0004962201 + inSlope: -0.00036097283 + outSlope: -0.00036097053 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.56666666 + value: -0.00054917095 + inSlope: -0.00044240753 + outSlope: -0.0004424069 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.00059740135 + inSlope: -0.0005184338 + outSlope: -0.0005184448 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -0.0007557467 + inSlope: -0.00063771574 + outSlope: -0.0006377109 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: -0.00086090836 + inSlope: -0.00060304574 + outSlope: -0.0006030534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.0009862146 + inSlope: -0.00047327104 + outSlope: -0.00047328498 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333333 + value: -0.0011697084 + inSlope: -0.0004343773 + outSlope: -0.0004343894 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: -0.001354552 + inSlope: -0.00036339727 + outSlope: -0.0003633945 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5666666 + value: -0.001481447 + inSlope: -0.0003373553 + outSlope: -0.0003373962 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9333334 + value: -0.0015787395 + inSlope: -0.00018666657 + outSlope: -0.00018663102 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6666667 + value: -0.0015786141 + inSlope: -0.00008322901 + outSlope: -0.00008324412 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.1 + value: -0.0015927438 + inSlope: 0.0000370424 + outSlope: 0.000037066027 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.7 + value: -0.0015735734 + inSlope: 0.0000487362 + outSlope: 0.00004875536 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.8333335 + value: -0.0015638334 + inSlope: 0.00007928254 + outSlope: 0.0000793183 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.1666665 + value: -0.0015183863 + inSlope: 0.00023647587 + outSlope: 0.00023646097 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.633333 + value: -0.0013303737 + inSlope: 0.0004955498 + outSlope: 0.0004955208 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.7 + value: -0.0012969221 + inSlope: 0.0005015305 + outSlope: 0.0005015128 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.733333 + value: -0.0012800778 + inSlope: 0.00051409367 + outSlope: 0.0005140931 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.766667 + value: -0.0012626499 + inSlope: 0.00052607775 + outSlope: 0.00052610645 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8333335 + value: -0.0012271901 + inSlope: 0.0005312379 + outSlope: 0.0005312626 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.9666667 + value: -0.0011561336 + inSlope: 0.0005429372 + outSlope: 0.0005429461 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.0333333 + value: -0.0011197614 + inSlope: 0.00052948657 + outSlope: 0.00052947603 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.1 + value: -0.0010845211 + inSlope: 0.00053968024 + outSlope: 0.00053967134 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.133333 + value: -0.0010665668 + inSlope: 0.0005391604 + outSlope: 0.0005391417 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.2 + value: -0.0010314676 + inSlope: 0.0005139831 + outSlope: 0.0005139656 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.233333 + value: -0.0010143154 + inSlope: 0.0005137208 + outSlope: 0.0005136946 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.266667 + value: -0.00099722 + inSlope: 0.0005073298 + outSlope: 0.0005073377 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.3 + value: -0.0009804927 + inSlope: 0.00049777963 + outSlope: 0.00049779966 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.3333335 + value: -0.0009640352 + inSlope: 0.00049137085 + outSlope: 0.00049138436 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.366667 + value: -0.0009477333 + inSlope: 0.0004826459 + outSlope: 0.0004826705 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.4 + value: -0.0009318589 + inSlope: 0.00047162233 + outSlope: 0.00047163386 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.4666667 + value: -0.0009008596 + inSlope: 0.00045160676 + outSlope: 0.00045161828 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.5333333 + value: -0.00087146496 + inSlope: 0.00042939367 + outSlope: 0.00042938135 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.5666666 + value: -0.0008575545 + inSlope: 0.0004185035 + outSlope: 0.00041849338 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.6 + value: -0.00084356545 + inSlope: 0.0004160134 + outSlope: 0.0004159985 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.633333 + value: -0.00082981965 + inSlope: 0.00042171418 + outSlope: 0.00042171087 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.6666665 + value: -0.00081545254 + inSlope: 0.00041500534 + outSlope: 0.0004149882 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.733333 + value: -0.0007885706 + inSlope: 0.000401515 + outSlope: 0.00040152576 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.766667 + value: -0.00077538367 + inSlope: 0.00039571436 + outSlope: 0.00039571276 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.8 + value: -0.0007621899 + inSlope: 0.0003971816 + outSlope: 0.00039721004 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.8333335 + value: -0.0007489047 + inSlope: 0.00039560284 + outSlope: 0.0003956252 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.866667 + value: -0.00073581433 + inSlope: 0.0003901011 + outSlope: 0.00039011176 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.9 + value: -0.00072289904 + inSlope: 0.00038250152 + outSlope: 0.0003825064 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.9333334 + value: -0.0007103134 + inSlope: 0.00037981357 + outSlope: 0.00037980778 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.9666667 + value: -0.0006975786 + inSlope: 0.0003795204 + outSlope: 0.0003795448 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7 + value: -0.0006850097 + inSlope: 0.0003754363 + outSlope: 0.00037543091 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.0333333 + value: -0.00067255116 + inSlope: 0.00037020486 + outSlope: 0.00037019516 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.133333 + value: -0.0006361048 + inSlope: 0.00036279057 + outSlope: 0.0003627832 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.1666665 + value: -0.00062385056 + inSlope: 0.00036004776 + outSlope: 0.00036003272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.2 + value: -0.0006121011 + inSlope: 0.00035773902 + outSlope: 0.00035773395 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.3 + value: -0.00057655916 + inSlope: 0.00035031783 + outSlope: 0.000350337 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.4 + value: -0.00054170506 + inSlope: 0.00034691292 + outSlope: 0.0003469362 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.4666667 + value: -0.0005189277 + inSlope: 0.00033465697 + outSlope: 0.00033466757 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5 + value: -0.00050782785 + inSlope: 0.00033941466 + outSlope: 0.0003394119 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5333333 + value: -0.0004963009 + inSlope: 0.00034055076 + outSlope: 0.00034054162 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5666666 + value: -0.00048512354 + inSlope: 0.00033363386 + outSlope: 0.00033363173 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.633333 + value: -0.00046282346 + inSlope: 0.00033307722 + outSlope: 0.00033307486 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.6666665 + value: -0.00045185463 + inSlope: 0.00033158474 + outSlope: 0.00033156548 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.7 + value: -0.00044071808 + inSlope: 0.0003302563 + outSlope: 0.0003302284 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.733333 + value: -0.00042983925 + inSlope: 0.0003276952 + outSlope: 0.00032769665 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.766667 + value: -0.0004188714 + inSlope: 0.00032133714 + outSlope: 0.00032134264 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.8333335 + value: -0.00039835984 + inSlope: 0.00029152734 + outSlope: 0.00029153074 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.866667 + value: -0.00038898073 + inSlope: 0.00026857763 + outSlope: 0.0002685889 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.9666667 + value: -0.0003663726 + inSlope: 0.00019624674 + outSlope: 0.00019624514 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8 + value: -0.00035986069 + inSlope: 0.00019120003 + outSlope: 0.00019119374 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.033334 + value: -0.00035362638 + inSlope: 0.00017568078 + outSlope: 0.00017572088 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.066667 + value: -0.00034814814 + inSlope: 0.00015828625 + outSlope: 0.00015826119 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.133333 + value: -0.00033885788 + inSlope: 0.00011606822 + outSlope: 0.00011604772 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.166667 + value: -0.00033533908 + inSlope: 0.000099092555 + outSlope: 0.00009911934 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.233334 + value: -0.0003303685 + inSlope: 0.000051588773 + outSlope: 0.000051605093 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.4 + value: -0.0003358405 + inSlope: -0.00011942673 + outSlope: -0.00011939649 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.5 + value: -0.00034950912 + inSlope: -0.00013722343 + outSlope: -0.00013722044 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566667 + value: -0.00035743482 + inSlope: -0.00010526291 + outSlope: -0.00010526291 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: jammo_mixamo_rig/mixamorig:Hips + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.017262194 + inSlope: 0.00006645576 + outSlope: 0.00006645576 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.01728089 + inSlope: 0.00007108446 + outSlope: 0.00007081201 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.017283378 + inSlope: 0.00006280796 + outSlope: 0.00006294591 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.017285073 + inSlope: 0.000059539925 + outSlope: 0.000059369624 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.017287334 + inSlope: 0.000068565765 + outSlope: 0.000068419315 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333334 + value: 0.0172923 + inSlope: 0.0000754169 + outSlope: 0.000075347074 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.56666666 + value: 0.017300827 + inSlope: 0.0000639371 + outSlope: 0.00006345675 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.017306764 + inSlope: 0.00005605556 + outSlope: 0.00005582916 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.017316025 + inSlope: 0.000025795161 + outSlope: 0.000025829268 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: 0.01731949 + inSlope: 0.000013804447 + outSlope: 0.000013753356 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.0173209 + inSlope: -0.0000052622227 + outSlope: -0.000004965924 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333333 + value: 0.017319579 + inSlope: -0.0000045861557 + outSlope: -0.0000044822723 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: 0.01731563 + inSlope: -0.000006341941 + outSlope: -0.000006323205 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5666666 + value: 0.017313397 + inSlope: 0.0000032714456 + outSlope: 0.0000029087091 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9333334 + value: 0.017313564 + inSlope: 0.000011684223 + outSlope: 0.00001156842 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6666667 + value: 0.01732177 + inSlope: 0.000024000257 + outSlope: 0.00002398663 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.1 + value: 0.017334113 + inSlope: 0.00002121416 + outSlope: 0.000021091546 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.7 + value: 0.017331876 + inSlope: -0.000030924617 + outSlope: -0.000030628296 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.8333335 + value: 0.017325956 + inSlope: -0.000047673537 + outSlope: -0.000048005622 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.1666665 + value: 0.017317617 + inSlope: -0.000009936951 + outSlope: -0.000010204325 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.633333 + value: 0.01731307 + inSlope: -0.000021181806 + outSlope: -0.00002131123 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.7 + value: 0.017311633 + inSlope: -0.000009138252 + outSlope: -0.000008947516 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.733333 + value: 0.017311307 + inSlope: -0.00001984666 + outSlope: -0.000020100115 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.766667 + value: 0.017310303 + inSlope: -0.000023676348 + outSlope: -0.000023414426 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8333335 + value: 0.01730885 + inSlope: -0.000022273422 + outSlope: -0.000021958369 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.9666667 + value: 0.01730562 + inSlope: -0.000030069716 + outSlope: -0.000030233203 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.0333333 + value: 0.01730364 + inSlope: -0.000023463812 + outSlope: -0.000023363336 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.1 + value: 0.01730204 + inSlope: -0.0000245946 + outSlope: -0.000024851752 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.133333 + value: 0.017301405 + inSlope: -0.00003081222 + outSlope: -0.000030897365 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.2 + value: 0.017299399 + inSlope: -0.000021415115 + outSlope: -0.000021665453 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.233333 + value: 0.017298557 + inSlope: -0.000025412035 + outSlope: -0.000025398049 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.266667 + value: 0.017297711 + inSlope: -0.000026419828 + outSlope: -0.00002611537 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.3 + value: 0.017296804 + inSlope: -0.000020154901 + outSlope: -0.000019950543 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.3333335 + value: 0.01729637 + inSlope: -0.000018077253 + outSlope: -0.000018165807 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.366667 + value: 0.017295593 + inSlope: -0.000024126277 + outSlope: -0.000024310199 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.4 + value: 0.017294759 + inSlope: -0.000026183488 + outSlope: -0.000026374224 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.4666667 + value: 0.01729347 + inSlope: -0.000021999243 + outSlope: -0.000022189974 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.5333333 + value: 0.017291665 + inSlope: -0.00002432723 + outSlope: -0.00002464739 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.5666666 + value: 0.017290724 + inSlope: -0.000025839487 + outSlope: -0.000025687921 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.6 + value: 0.017289946 + inSlope: -0.000020919544 + outSlope: -0.000020905922 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.633333 + value: 0.017289342 + inSlope: -0.000023971304 + outSlope: -0.00002377035 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.6666665 + value: 0.01728836 + inSlope: -0.000029219924 + outSlope: -0.000029693354 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.733333 + value: 0.01728664 + inSlope: -0.000027227425 + outSlope: -0.000027303668 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.766667 + value: 0.017285569 + inSlope: -0.000028495744 + outSlope: -0.000028337772 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.8 + value: 0.017284747 + inSlope: -0.000018460425 + outSlope: -0.000018569417 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.8333335 + value: 0.017284332 + inSlope: -0.000018569417 + outSlope: -0.000018552386 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.866667 + value: 0.01728351 + inSlope: -0.00002161777 + outSlope: -0.00002130442 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.9 + value: 0.017282901 + inSlope: -0.000023688608 + outSlope: -0.000023755023 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.9333334 + value: 0.017281925 + inSlope: -0.00003039669 + outSlope: -0.00003055677 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.9666667 + value: 0.017280873 + inSlope: -0.000029705276 + outSlope: -0.000029494106 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7 + value: 0.017279962 + inSlope: -0.000022852439 + outSlope: -0.00002282349 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.0333333 + value: 0.017279351 + inSlope: -0.000023504686 + outSlope: -0.000023680092 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.133333 + value: 0.017276961 + inSlope: -0.00002597913 + outSlope: -0.000025849702 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.1666665 + value: 0.01727589 + inSlope: -0.000024657607 + outSlope: -0.000024574163 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.2 + value: 0.017275317 + inSlope: -0.00001912459 + outSlope: -0.000019165462 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.3 + value: 0.017272817 + inSlope: -0.000024216535 + outSlope: -0.00002430509 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.4 + value: 0.01727045 + inSlope: -0.00002469337 + outSlope: -0.000024766603 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.4666667 + value: 0.017268756 + inSlope: -0.000030657247 + outSlope: -0.000030376254 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5 + value: 0.017267806 + inSlope: -0.00001930681 + outSlope: -0.000019347684 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5333333 + value: 0.01726746 + inSlope: -0.000012706018 + outSlope: -0.000012688987 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5666666 + value: 0.017266946 + inSlope: -0.000023417833 + outSlope: -0.000023610268 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.633333 + value: 0.017265286 + inSlope: -0.000023106184 + outSlope: -0.000023169194 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.6666665 + value: 0.017264357 + inSlope: -0.000027086075 + outSlope: -0.000026750586 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.7 + value: 0.017263494 + inSlope: -0.000025047593 + outSlope: -0.000025234922 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.733333 + value: 0.01726268 + inSlope: -0.000019444753 + outSlope: -0.000019226496 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.766667 + value: 0.017262215 + inSlope: -0.000020588872 + outSlope: -0.000020611302 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.8333335 + value: 0.017260823 + inSlope: -0.000016312953 + outSlope: -0.000016609272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.866667 + value: 0.017260207 + inSlope: -0.000020526153 + outSlope: -0.00002034223 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.9666667 + value: 0.017257715 + inSlope: -0.000023841874 + outSlope: -0.000023543855 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8 + value: 0.017257387 + inSlope: -0.000006343642 + outSlope: -0.0000062277504 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.033334 + value: 0.017257277 + inSlope: -0.0000036732997 + outSlope: -0.000004116189 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.066667 + value: 0.017257124 + inSlope: -0.000008714331 + outSlope: -0.000008693645 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.133333 + value: 0.017256482 + inSlope: -0.000004104267 + outSlope: -0.0000044634767 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.166667 + value: 0.01725642 + inSlope: -0.0000019090257 + outSlope: -0.0000017234516 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.233334 + value: 0.01725661 + inSlope: 0.000011581878 + outSlope: 0.00001203521 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.4 + value: 0.01725901 + inSlope: 0.000019652798 + outSlope: 0.000019815721 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.5 + value: 0.017261151 + inSlope: 0.000020873264 + outSlope: 0.000020507126 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566667 + value: 0.017262248 + inSlope: 0.0000123945465 + outSlope: 0.0000123945465 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: jammo_mixamo_rig/mixamorig:Hips + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.000043863536 + inSlope: 0.000109945875 + outSlope: 0.000109945875 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.000009879601 + inSlope: 0.00012954079 + outSlope: 0.0001295416 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.000005601287 + inSlope: 0.00013043001 + outSlope: 0.00013043043 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.000001184231 + inSlope: 0.00013132054 + outSlope: 0.00013132076 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.0000031534432 + inSlope: 0.00013231102 + outSlope: 0.00013231109 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333334 + value: 0.000012107241 + inSlope: 0.00013424222 + outSlope: 0.00013424242 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.56666666 + value: 0.000029897774 + inSlope: 0.00012970051 + outSlope: 0.00012969835 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.00004305122 + inSlope: 0.00013567475 + outSlope: 0.00013567609 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.00007912039 + inSlope: 0.0001434607 + outSlope: 0.00014346156 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: 0.00010289694 + inSlope: 0.0001573104 + outSlope: 0.00015731025 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.0001391782 + inSlope: 0.0001662744 + outSlope: 0.00016627775 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333333 + value: 0.00020730305 + inSlope: 0.00018032569 + outSlope: 0.00018032796 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: 0.00029616556 + inSlope: 0.0002160461 + outSlope: 0.00021604929 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5666666 + value: 0.00040686576 + inSlope: 0.00040311174 + outSlope: 0.00040310784 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9333334 + value: 0.0005484496 + inSlope: 0.00022257473 + outSlope: 0.00022258553 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.6666667 + value: 0.0006783314 + inSlope: 0.0000099324825 + outSlope: 0.00000992482 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.1 + value: 0.0005681727 + inSlope: -0.0005883774 + outSlope: -0.0005883761 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.7 + value: 0.00020830228 + inSlope: -0.00026326746 + outSlope: -0.00026325986 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.8333335 + value: 0.00018265551 + inSlope: -0.00017745027 + outSlope: -0.0001774618 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.1666665 + value: 0.00012985762 + inSlope: -0.00012283721 + outSlope: -0.00012283059 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.633333 + value: 0.00008147275 + inSlope: -0.00008630029 + outSlope: -0.00008629885 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.7 + value: 0.00007615345 + inSlope: -0.00009139016 + outSlope: -0.00009138546 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.733333 + value: 0.00007286614 + inSlope: -0.0000825718 + outSlope: -0.00008257088 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.766667 + value: 0.00007064868 + inSlope: -0.00007912171 + outSlope: -0.00007912325 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8333335 + value: 0.00006526892 + inSlope: -0.000071396025 + outSlope: -0.00007139814 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.9666667 + value: 0.000055240354 + inSlope: -0.0000704183 + outSlope: -0.000070419774 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.0333333 + value: 0.000050128398 + inSlope: -0.000084176165 + outSlope: -0.000084175495 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.1 + value: 0.00004499699 + inSlope: -0.00008214655 + outSlope: -0.00008214295 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.133333 + value: 0.00004193091 + inSlope: -0.00007516268 + outSlope: -0.000075158 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.2 + value: 0.00003785957 + inSlope: -0.00007508171 + outSlope: -0.000075078024 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.233333 + value: 0.000034981356 + inSlope: -0.00007357859 + outSlope: -0.00007357775 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.266667 + value: 0.00003295432 + inSlope: -0.000067679226 + outSlope: -0.00006768006 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.3 + value: 0.000030469344 + inSlope: -0.000059910162 + outSlope: -0.000059912563 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.3333335 + value: 0.000028960345 + inSlope: -0.00005702879 + outSlope: -0.00005703032 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.366667 + value: 0.000026667296 + inSlope: -0.0000639434 + outSlope: -0.00006394496 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.4 + value: 0.00002469756 + inSlope: -0.000062391315 + outSlope: -0.00006239265 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.4666667 + value: 0.00002054255 + inSlope: -0.00005826751 + outSlope: -0.000058267742 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.5333333 + value: 0.000016666245 + inSlope: -0.000061441475 + outSlope: -0.00006144039 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.5666666 + value: 0.00001452688 + inSlope: -0.000058729904 + outSlope: -0.00005872832 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.6 + value: 0.000012751114 + inSlope: -0.000054224874 + outSlope: -0.000054222815 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.633333 + value: 0.000010911834 + inSlope: -0.00005096568 + outSlope: -0.000050963943 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.6666665 + value: 0.000009353578 + inSlope: -0.00005003054 + outSlope: -0.000050027807 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.733333 + value: 0.000005893284 + inSlope: -0.000046371442 + outSlope: -0.000046370755 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.766667 + value: 0.0000044850167 + inSlope: -0.000045099147 + outSlope: -0.000045099503 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.8 + value: 0.000002886641 + inSlope: -0.00004124337 + outSlope: -0.00004124529 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.8333335 + value: 0.0000017354845 + inSlope: -0.00003442744 + outSlope: -0.000034428824 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.866667 + value: 0.0000005913675 + inSlope: -0.00004493993 + outSlope: -0.00004494216 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.9 + value: -0.0000012604653 + inSlope: -0.00005023668 + outSlope: -0.000050238494 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.9333334 + value: -0.0000027579308 + inSlope: -0.000042337342 + outSlope: -0.00004233819 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.9666667 + value: -0.0000040828822 + inSlope: -0.000036141228 + outSlope: -0.00003614176 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7 + value: -0.000005167436 + inSlope: -0.00004054746 + outSlope: -0.000040547762 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.0333333 + value: -0.0000067859646 + inSlope: -0.00004843333 + outSlope: -0.00004843297 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.133333 + value: -0.000010972124 + inSlope: -0.00003082741 + outSlope: -0.000030825817 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.1666665 + value: -0.000011871546 + inSlope: -0.00003621352 + outSlope: -0.000036211477 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.2 + value: -0.000013386392 + inSlope: -0.000039815695 + outSlope: -0.00003981301 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.3 + value: -0.000016467768 + inSlope: -0.000023876408 + outSlope: -0.000023877406 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.4 + value: -0.000018980818 + inSlope: -0.000032600194 + outSlope: -0.000032600972 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.4666667 + value: -0.000021431242 + inSlope: -0.000024346871 + outSlope: -0.000024347873 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5 + value: -0.00002187637 + inSlope: -0.000033029803 + outSlope: -0.000033030952 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5333333 + value: -0.00002363318 + inSlope: -0.000030537667 + outSlope: -0.000030539413 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5666666 + value: -0.000023912347 + inSlope: -0.000017264727 + outSlope: -0.000017265722 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.633333 + value: -0.000025743546 + inSlope: -0.00001751055 + outSlope: -0.000017509396 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.6666665 + value: -0.000025951475 + inSlope: -0.0000195766 + outSlope: -0.00001957501 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.7 + value: -0.000027048673 + inSlope: -0.000024751838 + outSlope: -0.000024749581 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.733333 + value: -0.000027601443 + inSlope: -0.000022283568 + outSlope: -0.0000222838 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.766667 + value: -0.000028534256 + inSlope: -0.000017481902 + outSlope: -0.000017482012 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.8333335 + value: -0.000028952467 + inSlope: -0.000013605464 + outSlope: -0.000013606492 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.866667 + value: -0.000029673945 + inSlope: -0.000017764853 + outSlope: -0.000017764956 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.9666667 + value: -0.000031310425 + inSlope: -0.000017221899 + outSlope: -0.000017222526 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8 + value: -0.00003196061 + inSlope: -0.000030931275 + outSlope: -0.000030931038 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.033334 + value: -0.0000333724 + inSlope: -0.00002544296 + outSlope: -0.000025446414 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.066667 + value: -0.000033656892 + inSlope: -0.000015562271 + outSlope: -0.000015561021 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.133333 + value: -0.000034937046 + inSlope: -0.000007652066 + outSlope: -0.00000764916 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.166667 + value: -0.000034919754 + inSlope: -0.000012644641 + outSlope: -0.000012649911 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.233334 + value: -0.00003640456 + inSlope: -0.000017955108 + outSlope: -0.000017958526 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.4 + value: -0.00003927877 + inSlope: -0.000021921156 + outSlope: -0.000021914995 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.5 + value: -0.000041127343 + inSlope: -0.000012163307 + outSlope: -0.000012162942 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566667 + value: -0.000042253156 + inSlope: -0.00002594159 + outSlope: -0.00002594159 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: jammo_mixamo_rig/mixamorig:Hips + 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 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_Weight + path: Idle Rig + classID: 114 + script: {fileID: 11500000, guid: 70b342d8ce5c2fd48b8fa3147d48d1d1, type: 3} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 136 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_Weight + path: WalkRig + classID: 114 + script: {fileID: 11500000, guid: 70b342d8ce5c2fd48b8fa3147d48d1d1, type: 3} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 136 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_Weight + path: Run Rig + classID: 114 + script: {fileID: 11500000, guid: 70b342d8ce5c2fd48b8fa3147d48d1d1, type: 3} + m_EulerEditorCurves: + - curve: + serializedVersion: 2 + m_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.033333335 + value: -0 + 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: jammo_mixamo_rig + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_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.033333335 + value: -0 + 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: jammo_mixamo_rig + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_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.033333335 + value: -0 + 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: jammo_mixamo_rig + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -7.162473 + inSlope: 0.10694415 + outSlope: 0.10694415 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: -6.797632 + inSlope: 0.612225 + outSlope: 0.6122002 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.966667 + value: -6.2903047 + inSlope: 0.01803839 + outSlope: 0.01814443 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.6000004 + value: -6.8605804 + inSlope: -0.99566394 + outSlope: -0.9955262 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.266667 + value: -7.249804 + inSlope: -0.012437726 + outSlope: -0.01241129 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.9000006 + value: -7.210042 + inSlope: 0.059985127 + outSlope: 0.05996558 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566668 + value: -7.173113 + inSlope: -0.00012874597 + outSlope: -0.00012874597 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 4.1269627 + inSlope: 1.1285193 + outSlope: 1.1285193 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 5.977456 + inSlope: 1.058203 + outSlope: 1.0583073 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.966667 + value: 8.077194 + inSlope: 0.8123015 + outSlope: 0.81228757 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.6000004 + value: 5.9711566 + inSlope: -4.729662 + outSlope: -4.729717 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.266667 + value: 4.163905 + inSlope: -0.056680877 + outSlope: -0.05668853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.9000006 + value: 4.138482 + inSlope: -0.0064618234 + outSlope: -0.006424424 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566668 + value: 4.135311 + inSlope: -0.0015621178 + outSlope: -0.0015621178 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -3.2112267 + inSlope: -0.0152196195 + outSlope: -0.0152196195 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: -2.939862 + inSlope: -0.011160178 + outSlope: -0.01174861 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.966667 + value: -3.209621 + inSlope: -0.16349994 + outSlope: -0.16348556 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.6000004 + value: -3.200627 + inSlope: 0.32259154 + outSlope: 0.32306117 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.266667 + value: -3.1363785 + inSlope: 0.022349026 + outSlope: 0.0223567 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.9000006 + value: -3.131574 + inSlope: -0.064353295 + outSlope: -0.064350456 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566668 + value: -3.214822 + inSlope: -0.09897454 + outSlope: -0.09897454 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 5.3330846 + inSlope: -0.3781323 + outSlope: -0.3781323 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 4.865783 + inSlope: 0.010538782 + outSlope: 0.010538782 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: 5.0747256 + inSlope: -0.012477854 + outSlope: -0.0124754915 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9333334 + value: 5.553259 + inSlope: -0.072575 + outSlope: -0.07254268 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.566667 + value: 5.4619493 + inSlope: -0.009425608 + outSlope: -0.009429361 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.233334 + value: 5.389343 + inSlope: -0.17536843 + outSlope: -0.17550197 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566668 + value: 5.343081 + inSlope: -0.00043344416 + outSlope: -0.00043344416 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -1.974503 + inSlope: -0.0024654425 + outSlope: -0.0024654425 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: -2.4180415 + inSlope: 0.00966252 + outSlope: 0.00966252 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: -3.7385137 + inSlope: -0.010643442 + outSlope: -0.010650302 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9333334 + value: -3.895582 + inSlope: 3.5814843 + outSlope: 3.58151 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.566667 + value: -1.2305875 + inSlope: 0.17748469 + outSlope: 0.17747813 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.233334 + value: -2.0067604 + inSlope: 0.16062142 + outSlope: 0.16054384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566668 + value: -1.9669691 + inSlope: 0.00045168312 + outSlope: 0.00045168312 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1.5984613 + inSlope: 0.028621687 + outSlope: 0.028621687 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 2.21396 + inSlope: 0.44704604 + outSlope: 0.44704604 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: 2.4699 + inSlope: 0.027932195 + outSlope: 0.027950337 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9333334 + value: 2.0411243 + inSlope: 0.061217885 + outSlope: 0.06126208 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.566667 + value: 2.0056636 + inSlope: -0.12208756 + outSlope: -0.1220903 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.233334 + value: 1.6367403 + inSlope: -0.17167276 + outSlope: -0.17158058 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566668 + value: 1.5893468 + inSlope: -0.0113199735 + outSlope: -0.0113199735 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1.4890318 + inSlope: -0.00000525494 + outSlope: -0.00000525494 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 1.4890314 + inSlope: -0.0000045980723 + outSlope: -0.0000045980723 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: 1.4890435 + inSlope: -0.00019487068 + outSlope: -0.0001909733 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9333334 + value: 1.4890314 + inSlope: -0.0000045061115 + outSlope: -0.0000045980714 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.566667 + value: 1.4890666 + inSlope: -0.000013137347 + outSlope: -0.000012874604 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.233334 + value: 1.4890538 + inSlope: -0.00007231236 + outSlope: -0.000086903405 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566668 + value: 1.48903 + inSlope: -0.000009655934 + outSlope: -0.000009655934 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.7346829 + inSlope: 0.000005035984 + outSlope: 0.000005035984 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: -0.7346831 + inSlope: 0.0000053644176 + outSlope: 0.0000053644176 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: -0.69835424 + inSlope: 0.06371351 + outSlope: 0.06370269 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9333334 + value: -0.7361046 + inSlope: -0.0011988402 + outSlope: -0.0011952796 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.566667 + value: -0.62209517 + inSlope: 0.105424695 + outSlope: 0.1054311 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.233334 + value: -0.6651807 + inSlope: -0.25479272 + outSlope: -0.25470638 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566668 + value: -0.73949903 + inSlope: -0.000026285597 + outSlope: -0.000026285597 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.68575907 + inSlope: 0.00000262747 + outSlope: 0.00000262747 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.685759 + inSlope: 0.0000027369479 + outSlope: 0.0000027369479 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: 1.1165503 + inSlope: 0.6930007 + outSlope: 0.693011 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9333334 + value: 0.619504 + inSlope: -0.17195837 + outSlope: -0.17193635 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.566667 + value: 0.55445564 + inSlope: 0.049724203 + outSlope: 0.049718503 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.233334 + value: 0.6714379 + inSlope: -0.0066290265 + outSlope: -0.0066406005 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566668 + value: 0.66950685 + inSlope: 0.00002735848 + outSlope: 0.00002735848 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.04583615 + inSlope: 0.00000043833762 + outSlope: 0.00000043833762 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566668 + value: 0.04583615 + inSlope: 0.00000043833762 + outSlope: 0.00000043833762 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.7543409 + inSlope: 0.0000025882794 + outSlope: 0.0000025882794 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566668 + value: -0.7543409 + inSlope: 0.0000025882794 + outSlope: 0.0000025882794 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.6734095 + inSlope: 0.0000023169273 + outSlope: 0.0000023169273 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566668 + value: 0.6734095 + inSlope: 0.0000023169273 + outSlope: 0.0000023169273 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 5.225456 + inSlope: 0.0026484895 + outSlope: 0.0026484895 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 4.958343 + inSlope: -0.22423792 + outSlope: -0.22423792 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: 4.800135 + inSlope: 0.04389889 + outSlope: 0.043891154 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.666667 + value: 5.6000834 + inSlope: 0.23198603 + outSlope: 0.23191969 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.3333335 + value: 5.2973213 + inSlope: -0.1538704 + outSlope: -0.1538704 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8 + value: 5.2360444 + inSlope: 0.0010050775 + outSlope: 0.0010173445 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566668 + value: 5.236629 + inSlope: 0.000022719852 + outSlope: 0.000022719852 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -5.421711 + inSlope: 0.43704984 + outSlope: 0.43704984 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: -5.4610453 + inSlope: -0.051006198 + outSlope: -0.051006198 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: -5.4001474 + inSlope: -0.02084985 + outSlope: -0.020858899 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.666667 + value: -8.22292 + inSlope: 0.437011 + outSlope: 0.43704477 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.3333335 + value: -6.2173724 + inSlope: 0.47729334 + outSlope: 0.47729334 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8 + value: -5.519792 + inSlope: 0.16202347 + outSlope: 0.16205566 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566668 + value: -5.4274826 + inSlope: -0.00004039085 + outSlope: -0.00004039085 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -1.9907885 + inSlope: 0.028511552 + outSlope: 0.028511552 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: -1.9710875 + inSlope: -0.2063247 + outSlope: -0.2063247 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: -2.114114 + inSlope: -0.028963039 + outSlope: -0.028950997 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.666667 + value: -3.2133021 + inSlope: 0.26631933 + outSlope: 0.26639014 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.3333335 + value: -2.2647338 + inSlope: 0.21394761 + outSlope: 0.21394761 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8 + value: -2.0391886 + inSlope: 0.046699196 + outSlope: 0.046713278 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566668 + value: -2.0202527 + inSlope: 0.000022719852 + outSlope: 0.000022719852 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 9.732081 + inSlope: 1.9929621 + outSlope: 1.9929621 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 9.029282 + inSlope: -1.7134466 + outSlope: -1.7134466 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: 7.545722 + inSlope: 0.23980917 + outSlope: 0.24071698 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5666668 + value: 8.826295 + inSlope: 16.904137 + outSlope: 16.924297 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.9 + value: 14.316253 + inSlope: 4.234003 + outSlope: 4.254233 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.3 + value: 16.198915 + inSlope: 4.0646973 + outSlope: 4.095558 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9666667 + value: 17.89083 + inSlope: -0.198741 + outSlope: -0.19821508 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.5000005 + value: 13.642354 + inSlope: -8.177281 + outSlope: -8.276728 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8 + value: 12.221222 + inSlope: -1.8540972 + outSlope: -1.7479248 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.3 + value: 11.7204895 + inSlope: -0.6116638 + outSlope: -0.60438806 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.933334 + value: 10.0637245 + inSlope: -0.40159646 + outSlope: -0.40152478 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566668 + value: 9.75962 + inSlope: -0.6512603 + outSlope: -0.6512603 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 10.355212 + inSlope: 5.0316205 + outSlope: 5.0316205 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 9.689486 + inSlope: -2.7044058 + outSlope: -2.7044058 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: 9.618944 + inSlope: -0.2108457 + outSlope: -0.20982745 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5666668 + value: 6.4326615 + inSlope: -42.814476 + outSlope: -42.812347 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.9 + value: -11.570529 + inSlope: -41.626907 + outSlope: -41.62316 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.3 + value: -24.366682 + inSlope: -14.037791 + outSlope: -14.038342 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9666667 + value: -29.938166 + inSlope: 2.6408136 + outSlope: 2.640976 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.5000005 + value: -11.674884 + inSlope: 42.261036 + outSlope: 42.341225 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8 + value: 0.23566696 + inSlope: 37.94656 + outSlope: 37.916595 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.3 + value: 7.2462897 + inSlope: 6.8989706 + outSlope: 6.8945127 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.933334 + value: 10.338073 + inSlope: -0.03206038 + outSlope: -0.03367723 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566668 + value: 10.346543 + inSlope: -0.07524637 + outSlope: -0.07524637 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -2.1845477 + inSlope: -1.134492 + outSlope: -1.134492 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: -1.7398088 + inSlope: 0.26179716 + outSlope: 0.26179716 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: -2.7632966 + inSlope: -1.0952582 + outSlope: -1.0949088 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.5666668 + value: -2.3345761 + inSlope: 5.727049 + outSlope: 5.6564198 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.9 + value: -1.1336706 + inSlope: 2.8262658 + outSlope: 2.7904391 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.3 + value: 0.4042982 + inSlope: 3.086461 + outSlope: 3.042178 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9666667 + value: 1.4215747 + inSlope: 0.5818415 + outSlope: 0.5820758 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.5000005 + value: 1.6703702 + inSlope: -3.218166 + outSlope: -2.9852908 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8 + value: 0.48266616 + inSlope: -4.8228517 + outSlope: -4.857423 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.3 + value: -0.4512982 + inSlope: -0.3070423 + outSlope: -0.3208938 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.933334 + value: -1.5257928 + inSlope: -1.392843 + outSlope: -1.3931408 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566668 + value: -2.1692598 + inSlope: -0.54074323 + outSlope: -0.54074323 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -7.9460993 + inSlope: -0.00060081476 + outSlope: -0.00060081476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -7.9460993 + inSlope: -0.00060081476 + outSlope: -0.00060081476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head/mixamorig:HeadTop_End + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_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.033333335 + value: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head/mixamorig:HeadTop_End + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_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.033333335 + value: -0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head/mixamorig:HeadTop_End + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 75.38284 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 75.38284 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head/mixamorig:LeftEar + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.3503092 + inSlope: 0.00018775462 + outSlope: 0.00018775462 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.3503092 + inSlope: 0.00018775462 + outSlope: 0.00018775462 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head/mixamorig:LeftEar + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 97.47056 + inSlope: -0.00068664545 + outSlope: -0.00068664545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 97.47056 + inSlope: -0.00068664545 + outSlope: -0.00068664545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head/mixamorig:LeftEar + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 75.38284 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 75.38284 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head/mixamorig:RightEar + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.3503092 + inSlope: -0.00018775462 + outSlope: -0.00018775462 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.3503092 + inSlope: -0.00018775462 + outSlope: -0.00018775462 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head/mixamorig:RightEar + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -97.47056 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -97.47056 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head/mixamorig:RightEar + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 76.64234 + inSlope: -0.000002671772 + outSlope: -0.000002671772 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566668 + value: 76.64234 + inSlope: -0.000002671772 + outSlope: -0.000002671772 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 90.21179 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566668 + value: 90.21179 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 166.0808 + inSlope: 0.000005343544 + outSlope: 0.000005343544 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566668 + value: 166.0808 + inSlope: 0.000005343544 + outSlope: 0.000005343544 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 42.358093 + inSlope: 0.83759534 + outSlope: 0.83759534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 43.1141 + inSlope: 0.32696235 + outSlope: 0.32696235 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: 43.798977 + inSlope: 0.356362 + outSlope: 0.35746026 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.2000003 + value: 43.28268 + inSlope: 1.1074733 + outSlope: 1.1132516 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.866667 + value: 43.5716 + inSlope: -0.3669022 + outSlope: -0.3668788 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5000005 + value: 42.873623 + inSlope: -0.40511376 + outSlope: -0.4071699 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566668 + value: 42.237457 + inSlope: -1.3541503 + outSlope: -1.3541503 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -12.940349 + inSlope: -1.0560415 + outSlope: -1.0560415 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: -13.897711 + inSlope: -0.791986 + outSlope: -0.791986 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: -15.49016 + inSlope: -0.5917728 + outSlope: -0.5901166 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.2000003 + value: -14.539881 + inSlope: -2.5573804 + outSlope: -2.5581222 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.866667 + value: -15.386595 + inSlope: -0.044498067 + outSlope: -0.044481307 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5000005 + value: -14.205881 + inSlope: 1.285922 + outSlope: 1.2855555 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566668 + value: -12.860057 + inSlope: 1.5474703 + outSlope: 1.5474703 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -13.469443 + inSlope: -1.8861327 + outSlope: -1.8861327 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: -16.090618 + inSlope: -1.6978991 + outSlope: -1.6978991 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: -19.623041 + inSlope: -1.2056758 + outSlope: -1.2042474 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.2000003 + value: -15.713271 + inSlope: 1.4800612 + outSlope: 1.474858 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.866667 + value: -11.509992 + inSlope: 0.6945231 + outSlope: 0.69454354 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.5000005 + value: -12.450664 + inSlope: -1.3007673 + outSlope: -1.3004336 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566668 + value: -13.321275 + inSlope: 0.56047684 + outSlope: 0.56047684 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 5.14154 + inSlope: -0.03861943 + outSlope: -0.03861943 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 5.0734324 + inSlope: -0.04648082 + outSlope: -0.04648082 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: 5.0034595 + inSlope: -0.008848443 + outSlope: -0.008795856 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.066667 + value: 5.1181984 + inSlope: -0.008997915 + outSlope: -0.009022952 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.1333337 + value: 5.141915 + inSlope: 0.075036146 + outSlope: 0.07271491 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.8 + value: 5.177771 + inSlope: -0.01445818 + outSlope: -0.014444956 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.433333 + value: 5.1443114 + inSlope: -0.0069952016 + outSlope: -0.0067269383 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566668 + value: 5.1431627 + inSlope: -0.005257097 + outSlope: -0.005257097 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -2.8141499 + inSlope: 0.16356525 + outSlope: 0.16356525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: -2.5497954 + inSlope: 0.15777124 + outSlope: 0.15777124 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: -2.3238819 + inSlope: 0.02645468 + outSlope: 0.026488597 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.066667 + value: -2.7169645 + inSlope: 0.03650575 + outSlope: 0.036477376 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.1333337 + value: -2.8157544 + inSlope: -0.34537065 + outSlope: -0.3458419 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.8 + value: -2.9841042 + inSlope: 0.07232438 + outSlope: 0.072314985 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.433333 + value: -2.8262126 + inSlope: 0.031856764 + outSlope: 0.031816166 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566668 + value: -2.821154 + inSlope: 0.02030956 + outSlope: 0.02030956 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -76.97947 + inSlope: 1.8264769 + outSlope: 1.8264769 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: -74.0106 + inSlope: 1.7887535 + outSlope: 1.7887535 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: -71.438675 + inSlope: 0.30487058 + outSlope: 0.30487055 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.066667 + value: -75.89266 + inSlope: 0.4088973 + outSlope: 0.4088545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.1333337 + value: -76.99742 + inSlope: -3.8417819 + outSlope: -3.841617 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.8 + value: -78.869225 + inSlope: 0.80205697 + outSlope: 0.80205804 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.433333 + value: -77.11414 + inSlope: 0.356327 + outSlope: 0.3563668 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566668 + value: -77.05753 + inSlope: 0.23380135 + outSlope: 0.23380135 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -9.727121 + inSlope: 0.5246707 + outSlope: 0.5246707 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: -9.547329 + inSlope: 0.75300485 + outSlope: 0.75300485 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: -8.445882 + inSlope: -0.24634282 + outSlope: -0.24631613 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.066667 + value: -11.153219 + inSlope: 3.2012765 + outSlope: 3.202876 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.0000005 + value: -9.369206 + inSlope: -1.0772823 + outSlope: -1.0732734 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.666667 + value: -9.95962 + inSlope: 0.5948188 + outSlope: 0.5947976 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.266667 + value: -9.804659 + inSlope: -0.23983592 + outSlope: -0.25144562 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566668 + value: -9.770645 + inSlope: -0.03860471 + outSlope: -0.03860471 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 117.80535 + inSlope: -0.251046 + outSlope: -0.251046 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 116.9729 + inSlope: 0.0068384283 + outSlope: 0.0068384283 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: 116.92099 + inSlope: -0.28760636 + outSlope: -0.28758997 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.066667 + value: 116.61237 + inSlope: 4.1011896 + outSlope: 4.0988564 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.0000005 + value: 119.2571 + inSlope: 0.7572964 + outSlope: 0.763289 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.666667 + value: 119.825325 + inSlope: -0.12196199 + outSlope: -0.122008294 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.266667 + value: 118.051506 + inSlope: -1.5519186 + outSlope: -1.5499105 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566668 + value: 117.816345 + inSlope: -0.5130002 + outSlope: -0.5130002 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0806583 + inSlope: 0.47081393 + outSlope: 0.47081393 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 1.425497 + inSlope: 0.43131495 + outSlope: 0.43131495 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: 1.8341776 + inSlope: 0.023215229 + outSlope: 0.023079062 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.066667 + value: -0.19390728 + inSlope: -1.0878805 + outSlope: -1.0824522 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.0000005 + value: -1.5265751 + inSlope: -2.4641929 + outSlope: -2.4668531 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.666667 + value: -3.1677506 + inSlope: 0.80020857 + outSlope: 0.800248 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.266667 + value: -0.33903983 + inSlope: 2.0150268 + outSlope: 2.013444 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566668 + value: 0.077342525 + inSlope: 1.184124 + outSlope: 1.184124 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 3.4403772 + inSlope: 0.00060081476 + outSlope: 0.00060081476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 3.4403772 + inSlope: 0.00060081476 + outSlope: 0.00060081476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -13.481514 + inSlope: 0.00068664545 + outSlope: 0.00068664545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -13.481514 + inSlope: 0.00068664545 + outSlope: 0.00068664545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -57.16558 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -57.16558 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 2.742859 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 2.742859 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -14.985607 + inSlope: -0.00034332272 + outSlope: -0.00034332272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -14.985607 + inSlope: -0.00034332272 + outSlope: -0.00034332272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 3.0802584 + inSlope: 0.00025749207 + outSlope: 0.00025749207 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 3.0802584 + inSlope: 0.00025749207 + outSlope: 0.00025749207 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -12.456652 + inSlope: 0.00017166136 + outSlope: 0.00017166136 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -12.456652 + inSlope: 0.00017166136 + outSlope: 0.00017166136 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2/mixamorig:LeftHandThumb3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -5.926364 + inSlope: 0.00025749207 + outSlope: 0.00025749207 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -5.926364 + inSlope: 0.00025749207 + outSlope: 0.00025749207 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2/mixamorig:LeftHandThumb3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 8.562094 + inSlope: -0.00051498413 + outSlope: -0.00051498413 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 8.562094 + inSlope: -0.00051498413 + outSlope: -0.00051498413 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2/mixamorig:LeftHandThumb3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 2.2293782 + inSlope: 0.0006437301 + outSlope: 0.0006437301 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 2.2293782 + inSlope: 0.0006437301 + outSlope: 0.0006437301 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2/mixamorig:LeftHandThumb3/mixamorig:LeftHandThumb4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 4.727419 + inSlope: -0.00017166136 + outSlope: -0.00017166136 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 4.727419 + inSlope: -0.00017166136 + outSlope: -0.00017166136 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2/mixamorig:LeftHandThumb3/mixamorig:LeftHandThumb4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1.7559141 + inSlope: 0.00056862825 + outSlope: 0.00056862825 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 1.7559141 + inSlope: 0.00056862825 + outSlope: 0.00056862825 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2/mixamorig:LeftHandThumb3/mixamorig:LeftHandThumb4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 63.47014 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 63.47014 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 10.508235 + inSlope: 0.0004291534 + outSlope: 0.0004291534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 10.508235 + inSlope: 0.0004291534 + outSlope: 0.0004291534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 6.267701 + inSlope: -0.00008583068 + outSlope: -0.00008583068 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 6.267701 + inSlope: -0.00008583068 + outSlope: -0.00008583068 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 64.26608 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 64.26608 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 9.497246 + inSlope: 0.00068664545 + outSlope: 0.00068664545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 9.497246 + inSlope: 0.00068664545 + outSlope: 0.00068664545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 16.01114 + inSlope: -0.00017166136 + outSlope: -0.00017166136 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 16.01114 + inSlope: -0.00017166136 + outSlope: -0.00017166136 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 34.34455 + inSlope: -0.00068664545 + outSlope: -0.00068664545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 34.34455 + inSlope: -0.00068664545 + outSlope: -0.00068664545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2/mixamorig:LeftHandIndex3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1.6116445 + inSlope: 0.0003647804 + outSlope: 0.0003647804 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 1.6116445 + inSlope: 0.0003647804 + outSlope: 0.0003647804 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2/mixamorig:LeftHandIndex3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 5.212044 + inSlope: -0.00068664545 + outSlope: -0.00068664545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 5.212044 + inSlope: -0.00068664545 + outSlope: -0.00068664545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2/mixamorig:LeftHandIndex3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 5.0997086 + inSlope: -0.00068664545 + outSlope: -0.00068664545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 5.0997086 + inSlope: -0.00068664545 + outSlope: -0.00068664545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2/mixamorig:LeftHandIndex3/mixamorig:LeftHandIndex4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0000013270378 + inSlope: -0.000119433396 + outSlope: -0.000119433396 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.0000013270378 + inSlope: -0.000119433396 + outSlope: -0.000119433396 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2/mixamorig:LeftHandIndex3/mixamorig:LeftHandIndex4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0000008903569 + inSlope: 0.000080132115 + outSlope: 0.000080132115 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.0000008903569 + inSlope: 0.000080132115 + outSlope: 0.000080132115 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2/mixamorig:LeftHandIndex3/mixamorig:LeftHandIndex4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 67.558784 + inSlope: -0.00068664545 + outSlope: -0.00068664545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 67.558784 + inSlope: -0.00068664545 + outSlope: -0.00068664545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 15.984044 + inSlope: -0.0004291534 + outSlope: -0.0004291534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 15.984044 + inSlope: -0.0004291534 + outSlope: -0.0004291534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 18.141388 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 18.141388 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 63.20492 + inSlope: 0.00034332272 + outSlope: 0.00034332272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 63.20492 + inSlope: 0.00034332272 + outSlope: 0.00034332272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 7.7816467 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 7.7816467 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 15.097266 + inSlope: -0.00060081476 + outSlope: -0.00060081476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 15.097266 + inSlope: -0.00060081476 + outSlope: -0.00060081476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 29.83632 + inSlope: -0.00017166136 + outSlope: -0.00017166136 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 29.83632 + inSlope: -0.00017166136 + outSlope: -0.00017166136 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2/mixamorig:LeftHandMiddle3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1.5744059 + inSlope: -0.0003647804 + outSlope: -0.0003647804 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 1.5744059 + inSlope: -0.0003647804 + outSlope: -0.0003647804 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2/mixamorig:LeftHandMiddle3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 4.597187 + inSlope: -0.00034332272 + outSlope: -0.00034332272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 4.597187 + inSlope: -0.00034332272 + outSlope: -0.00034332272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2/mixamorig:LeftHandMiddle3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1.2090114 + inSlope: 0.00031113622 + outSlope: 0.00031113622 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 1.2090114 + inSlope: 0.00031113622 + outSlope: 0.00031113622 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2/mixamorig:LeftHandMiddle3/mixamorig:LeftHandMiddle4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.33139816 + inSlope: -0.0006732344 + outSlope: -0.0006732344 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.33139816 + inSlope: -0.0006732344 + outSlope: -0.0006732344 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2/mixamorig:LeftHandMiddle3/mixamorig:LeftHandMiddle4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.3313644 + inSlope: 0.00040769574 + outSlope: 0.00040769574 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.3313644 + inSlope: 0.00040769574 + outSlope: 0.00040769574 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2/mixamorig:LeftHandMiddle3/mixamorig:LeftHandMiddle4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 77.56438 + inSlope: 0.0013732909 + outSlope: 0.0013732909 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 77.56438 + inSlope: 0.0013732909 + outSlope: 0.0013732909 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 26.159084 + inSlope: 0.00034332272 + outSlope: 0.00034332272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 26.159084 + inSlope: 0.00034332272 + outSlope: 0.00034332272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 32.438976 + inSlope: 0.00034332272 + outSlope: 0.00034332272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 32.438976 + inSlope: 0.00034332272 + outSlope: 0.00034332272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 44.72362 + inSlope: -0.00034332272 + outSlope: -0.00034332272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 44.72362 + inSlope: -0.00034332272 + outSlope: -0.00034332272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 3.0966644 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 3.0966644 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 7.558042 + inSlope: 0.0002145767 + outSlope: 0.0002145767 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 7.558042 + inSlope: 0.0002145767 + outSlope: 0.0002145767 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 26.7949 + inSlope: 0.00051498413 + outSlope: 0.00051498413 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 26.7949 + inSlope: 0.00051498413 + outSlope: 0.00051498413 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2/mixamorig:LeftHandPinky3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9163206 + inSlope: 0.000016093254 + outSlope: 0.000016093254 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.9163206 + inSlope: 0.000016093254 + outSlope: 0.000016093254 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2/mixamorig:LeftHandPinky3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 3.845717 + inSlope: 0.00012874603 + outSlope: 0.00012874603 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 3.845717 + inSlope: 0.00012874603 + outSlope: 0.00012874603 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2/mixamorig:LeftHandPinky3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 5.103195 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 5.103195 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2/mixamorig:LeftHandPinky3/mixamorig:LeftHandPinky4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.000001185584 + inSlope: 0.00010670255 + outSlope: 0.00010670255 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.000001185584 + inSlope: 0.00010670255 + outSlope: 0.00010670255 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2/mixamorig:LeftHandPinky3/mixamorig:LeftHandPinky4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0000014281703 + inSlope: -0.00012853532 + outSlope: -0.00012853532 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.0000014281703 + inSlope: -0.00012853532 + outSlope: -0.00012853532 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2/mixamorig:LeftHandPinky3/mixamorig:LeftHandPinky4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 84.62874 + inSlope: -0.0013732909 + outSlope: -0.0013732909 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 84.62874 + inSlope: -0.0013732909 + outSlope: -0.0013732909 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -81.944534 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -81.944534 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -155.37863 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -155.37863 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 42.421196 + inSlope: -0.035803657 + outSlope: -0.035803657 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 42.36619 + inSlope: -0.09449783 + outSlope: -0.09449783 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: 42.13401 + inSlope: -0.02596641 + outSlope: -0.02594147 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9333334 + value: 42.397907 + inSlope: 0.09403611 + outSlope: 0.094105445 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.566667 + value: 42.4501 + inSlope: -0.0015344422 + outSlope: -0.0015312196 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.233334 + value: 42.428226 + inSlope: -0.013657381 + outSlope: -0.013629887 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566668 + value: 42.43485 + inSlope: 0.000652312 + outSlope: 0.000652312 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 32.282425 + inSlope: -0.030716874 + outSlope: -0.030716874 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 32.25033 + inSlope: -0.4280674 + outSlope: -0.4280674 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: 31.08942 + inSlope: -0.31048286 + outSlope: -0.31048054 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9333334 + value: 32.34833 + inSlope: 0.54211354 + outSlope: 0.5421065 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.566667 + value: 32.626812 + inSlope: -0.07874701 + outSlope: -0.07873765 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.233334 + value: 32.326042 + inSlope: -0.17895357 + outSlope: -0.17900814 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566668 + value: 32.294342 + inSlope: -0.00013732884 + outSlope: -0.00013732884 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 32.53106 + inSlope: -0.63439035 + outSlope: -0.63439035 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 31.531246 + inSlope: -1.0254489 + outSlope: -1.0254489 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: 29.43306 + inSlope: -0.5683743 + outSlope: -0.56837773 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9333334 + value: 31.742455 + inSlope: 0.9373124 + outSlope: 0.93727094 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.566667 + value: 32.440228 + inSlope: 0.15771122 + outSlope: 0.15771562 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.233334 + value: 32.501682 + inSlope: 0.03918686 + outSlope: 0.039104387 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566668 + value: 32.53505 + inSlope: 0.00027465768 + outSlope: 0.00027465768 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 5.2271233 + inSlope: 0.006621224 + outSlope: 0.006621224 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 5.2367644 + inSlope: 0.0011604659 + outSlope: 0.0011604659 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: 5.2329545 + inSlope: -0.0035567184 + outSlope: -0.0035405161 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9333334 + value: 5.2362 + inSlope: 0.0027028087 + outSlope: 0.0027019144 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.566667 + value: 5.2357306 + inSlope: -0.0033587818 + outSlope: -0.0033465389 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.233334 + value: 5.228533 + inSlope: -0.004507828 + outSlope: -0.0045490176 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566668 + value: 5.227121 + inSlope: -0.004476062 + outSlope: -0.004476062 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 4.72232 + inSlope: -0.047083385 + outSlope: -0.047083385 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 4.64853 + inSlope: -0.010035183 + outSlope: -0.010035183 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: 4.6785126 + inSlope: 0.025447922 + outSlope: 0.025433352 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9333334 + value: 4.652987 + inSlope: -0.022691062 + outSlope: -0.02267769 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.566667 + value: 4.656765 + inSlope: 0.024922423 + outSlope: 0.024918368 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.233334 + value: 4.7120056 + inSlope: 0.03282166 + outSlope: 0.032821592 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566668 + value: 4.722325 + inSlope: 0.029487077 + outSlope: 0.029487077 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 97.86441 + inSlope: -0.5171421 + outSlope: -0.5171421 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 97.055275 + inSlope: -0.10926071 + outSlope: -0.10926071 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: 97.383965 + inSlope: 0.27837166 + outSlope: 0.27835238 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9333334 + value: 97.10421 + inSlope: -0.24849704 + outSlope: -0.24846753 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.566667 + value: 97.145485 + inSlope: 0.27570912 + outSlope: 0.2756882 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.233334 + value: 97.75116 + inSlope: 0.36194462 + outSlope: 0.36199883 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566668 + value: 97.86442 + inSlope: 0.3168863 + outSlope: 0.3168863 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 21.377037 + inSlope: 0.024228776 + outSlope: 0.024228776 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 21.272743 + inSlope: -0.0005184874 + outSlope: -0.0005184874 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: 21.273804 + inSlope: -0.024438974 + outSlope: -0.02445514 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.1333337 + value: 22.489626 + inSlope: 0.7140518 + outSlope: 0.708862 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8 + value: 24.717571 + inSlope: 0.38884053 + outSlope: 0.38884446 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.433334 + value: 23.185472 + inSlope: -1.66673 + outSlope: -1.664716 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566668 + value: 21.3858 + inSlope: -1.2901156 + outSlope: -1.2901156 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -37.194077 + inSlope: -0.05406282 + outSlope: -0.05406282 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: -37.631634 + inSlope: -0.010040438 + outSlope: -0.010040438 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: -37.628067 + inSlope: -0.10860209 + outSlope: -0.10859561 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.1333337 + value: -38.550552 + inSlope: -0.36355233 + outSlope: -0.37490848 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8 + value: -39.593487 + inSlope: -0.061640173 + outSlope: -0.061608903 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.433334 + value: -38.365967 + inSlope: 1.1265188 + outSlope: 1.1312683 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566668 + value: -37.17298 + inSlope: 0.84305906 + outSlope: 0.84305906 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -25.130358 + inSlope: 0.5531595 + outSlope: 0.5531595 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: -24.420784 + inSlope: 0.018343244 + outSlope: 0.018343244 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: -24.428844 + inSlope: 0.11030469 + outSlope: 0.11027261 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.1333337 + value: -24.268827 + inSlope: -6.2578287 + outSlope: -6.2614694 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.8 + value: -27.97354 + inSlope: 0.04515038 + outSlope: 0.04514693 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.433334 + value: -26.557085 + inSlope: 1.356114 + outSlope: 1.3604513 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566668 + value: -25.12199 + inSlope: 1.0043097 + outSlope: 1.0043097 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 26.064487 + inSlope: -0.00034332272 + outSlope: -0.00034332272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 26.064487 + inSlope: -0.00034332272 + outSlope: -0.00034332272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 53.175907 + inSlope: -0.00034332272 + outSlope: -0.00034332272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 53.175907 + inSlope: -0.00034332272 + outSlope: -0.00034332272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 58.228943 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 58.228943 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -6.867931 + inSlope: -0.00038623807 + outSlope: -0.00038623807 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -6.867931 + inSlope: -0.00038623807 + outSlope: -0.00038623807 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 35.05789 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 35.05789 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -34.21139 + inSlope: -0.00034332272 + outSlope: -0.00034332272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -34.21139 + inSlope: -0.00034332272 + outSlope: -0.00034332272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 4.8320813 + inSlope: -0.00038623807 + outSlope: -0.00038623807 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 4.8320813 + inSlope: -0.00038623807 + outSlope: -0.00038623807 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2/mixamorig:RightHandThumb3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 4.088825 + inSlope: -0.00034332272 + outSlope: -0.00034332272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 4.088825 + inSlope: -0.00034332272 + outSlope: -0.00034332272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2/mixamorig:RightHandThumb3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -53.69352 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -53.69352 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2/mixamorig:RightHandThumb3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 2.2293847 + inSlope: 0.000064373016 + outSlope: 0.000064373016 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 2.2293847 + inSlope: 0.000064373016 + outSlope: 0.000064373016 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2/mixamorig:RightHandThumb3/mixamorig:RightHandThumb4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -4.7274117 + inSlope: -0.00047206876 + outSlope: -0.00047206876 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -4.7274117 + inSlope: -0.00047206876 + outSlope: -0.00047206876 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2/mixamorig:RightHandThumb3/mixamorig:RightHandThumb4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -1.7559161 + inSlope: -0.00038623807 + outSlope: -0.00038623807 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -1.7559161 + inSlope: -0.00038623807 + outSlope: -0.00038623807 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2/mixamorig:RightHandThumb3/mixamorig:RightHandThumb4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 12.352548 + inSlope: 0.00060081476 + outSlope: 0.00060081476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 12.352548 + inSlope: 0.00060081476 + outSlope: 0.00060081476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -2.4765491 + inSlope: 0.00017166136 + outSlope: 0.00017166136 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -2.4765491 + inSlope: 0.00017166136 + outSlope: 0.00017166136 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 4.5595083 + inSlope: 0.00008583068 + outSlope: 0.00008583068 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 4.5595083 + inSlope: 0.00008583068 + outSlope: 0.00008583068 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 53.538593 + inSlope: -0.00034332272 + outSlope: -0.00034332272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 53.538593 + inSlope: -0.00034332272 + outSlope: -0.00034332272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -3.797032 + inSlope: 0.00040769574 + outSlope: 0.00040769574 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -3.797032 + inSlope: 0.00040769574 + outSlope: 0.00040769574 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -8.702095 + inSlope: 0.00068664545 + outSlope: 0.00068664545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -8.702095 + inSlope: 0.00068664545 + outSlope: 0.00068664545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 69.00704 + inSlope: 0.00068664545 + outSlope: 0.00068664545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 69.00704 + inSlope: 0.00068664545 + outSlope: 0.00068664545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2/mixamorig:RightHandIndex3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -11.688001 + inSlope: -0.00025749207 + outSlope: -0.00025749207 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -11.688001 + inSlope: -0.00025749207 + outSlope: -0.00025749207 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2/mixamorig:RightHandIndex3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -16.938631 + inSlope: 0.00017166136 + outSlope: 0.00017166136 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -16.938631 + inSlope: 0.00017166136 + outSlope: 0.00017166136 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2/mixamorig:RightHandIndex3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 5.0996966 + inSlope: 0.00038623807 + outSlope: 0.00038623807 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 5.0996966 + inSlope: 0.00038623807 + outSlope: 0.00038623807 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2/mixamorig:RightHandIndex3/mixamorig:RightHandIndex4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.00000031209365 + inSlope: -0.000028088425 + outSlope: -0.000028088425 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.00000031209365 + inSlope: -0.000028088425 + outSlope: -0.000028088425 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2/mixamorig:RightHandIndex3/mixamorig:RightHandIndex4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0000024564033 + inSlope: 0.00022107629 + outSlope: 0.00022107629 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.0000024564033 + inSlope: 0.00022107629 + outSlope: 0.00022107629 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2/mixamorig:RightHandIndex3/mixamorig:RightHandIndex4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 53.715786 + inSlope: 0.00034332272 + outSlope: 0.00034332272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 53.715786 + inSlope: 0.00034332272 + outSlope: 0.00034332272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -7.3893805 + inSlope: 0.00060081476 + outSlope: 0.00060081476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -7.3893805 + inSlope: 0.00060081476 + outSlope: 0.00060081476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -7.305118 + inSlope: 0.00030040738 + outSlope: 0.00030040738 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -7.305118 + inSlope: 0.00030040738 + outSlope: 0.00030040738 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 77.15552 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 77.15552 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -142.39865 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -142.39865 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -150.86508 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -150.86508 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 83.14347 + inSlope: -0.00068664545 + outSlope: -0.00068664545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 83.14347 + inSlope: -0.00068664545 + outSlope: -0.00068664545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2/mixamorig:RightHandMiddle3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -95.479576 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -95.479576 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2/mixamorig:RightHandMiddle3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -101.88533 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -101.88533 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2/mixamorig:RightHandMiddle3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1.2090027 + inSlope: -0.00027894974 + outSlope: -0.00027894974 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 1.2090027 + inSlope: -0.00027894974 + outSlope: -0.00027894974 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2/mixamorig:RightHandMiddle3/mixamorig:RightHandMiddle4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.3314014 + inSlope: 0.00038087365 + outSlope: 0.00038087365 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.3314014 + inSlope: 0.00038087365 + outSlope: 0.00038087365 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2/mixamorig:RightHandMiddle3/mixamorig:RightHandMiddle4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.33136758 + inSlope: 0.0006785988 + outSlope: 0.0006785988 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.33136758 + inSlope: 0.0006785988 + outSlope: 0.0006785988 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2/mixamorig:RightHandMiddle3/mixamorig:RightHandMiddle4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 71.76384 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 71.76384 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -12.565662 + inSlope: 0.00034332272 + outSlope: 0.00034332272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -12.565662 + inSlope: 0.00034332272 + outSlope: 0.00034332272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -20.960188 + inSlope: -0.00017166136 + outSlope: -0.00017166136 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -20.960188 + inSlope: -0.00017166136 + outSlope: -0.00017166136 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 57.27258 + inSlope: 0.00034332272 + outSlope: 0.00034332272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 57.27258 + inSlope: 0.00034332272 + outSlope: 0.00034332272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -5.4566193 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -5.4566193 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -10.0052595 + inSlope: -0.0004291534 + outSlope: -0.0004291534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -10.0052595 + inSlope: -0.0004291534 + outSlope: -0.0004291534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 38.85519 + inSlope: 0.00034332272 + outSlope: 0.00034332272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 38.85519 + inSlope: 0.00034332272 + outSlope: 0.00034332272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2/mixamorig:RightHandPinky3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -1.8212732 + inSlope: -0.000053644177 + outSlope: -0.000053644177 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -1.8212732 + inSlope: -0.000053644177 + outSlope: -0.000053644177 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2/mixamorig:RightHandPinky3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -5.160781 + inSlope: -0.00008583068 + outSlope: -0.00008583068 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -5.160781 + inSlope: -0.00008583068 + outSlope: -0.00008583068 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2/mixamorig:RightHandPinky3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 5.1031976 + inSlope: -0.0002145767 + outSlope: -0.0002145767 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 5.1031976 + inSlope: -0.0002145767 + outSlope: -0.0002145767 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2/mixamorig:RightHandPinky3/mixamorig:RightHandPinky4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0000054863144 + inSlope: 0.0004937683 + outSlope: 0.0004937683 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.0000054863144 + inSlope: 0.0004937683 + outSlope: 0.0004937683 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2/mixamorig:RightHandPinky3/mixamorig:RightHandPinky4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.00000020057568 + inSlope: 0.000018051811 + outSlope: 0.000018051811 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.00000020057568 + inSlope: 0.000018051811 + outSlope: 0.000018051811 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2/mixamorig:RightHandPinky3/mixamorig:RightHandPinky4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -7.9979095 + inSlope: 1.107433 + outSlope: 1.107433 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: -8.301787 + inSlope: -0.7251554 + outSlope: -0.7248534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9333334 + value: -7.5291014 + inSlope: 1.4127005 + outSlope: 1.4124488 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.566667 + value: -7.736995 + inSlope: -1.8778288 + outSlope: -1.8778186 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.2333336 + value: -8.457987 + inSlope: 0.032426838 + outSlope: 0.032528073 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.8666673 + value: -8.27596 + inSlope: 0.27405033 + outSlope: 0.27402458 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566668 + value: -7.9766874 + inSlope: 0.1324367 + outSlope: 0.1324367 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -11.807631 + inSlope: -0.052805137 + outSlope: -0.052805137 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: -11.564073 + inSlope: 0.21148856 + outSlope: 0.21261583 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9333334 + value: -11.425111 + inSlope: 0.3414939 + outSlope: 0.34242758 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.566667 + value: -11.19185 + inSlope: 0.07592511 + outSlope: 0.07591725 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.2333336 + value: -11.469652 + inSlope: -0.45477566 + outSlope: -0.4547519 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.8666673 + value: -11.881334 + inSlope: 0.0031424535 + outSlope: 0.0038010718 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566668 + value: -11.810082 + inSlope: 0.23768143 + outSlope: 0.23768143 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 178.84154 + inSlope: 0.97310275 + outSlope: 0.97310275 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: -178.997 + inSlope: 1.6065822 + outSlope: 1.6065745 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9333334 + value: -177.36081 + inSlope: 0.7255554 + outSlope: 0.72591025 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.566667 + value: -177.18431 + inSlope: 0.046719912 + outSlope: 0.0466919 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.2333336 + value: -178.971 + inSlope: -1.9338137 + outSlope: -1.9338175 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.8666673 + value: 178.80891 + inSlope: -0.84855354 + outSlope: -0.8486281 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566668 + value: 178.84863 + inSlope: 0.8137727 + outSlope: 0.8137727 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -15.048007 + inSlope: 1.0987781 + outSlope: 1.0987781 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: -18.771301 + inSlope: -2.8303807 + outSlope: -2.8303807 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: -21.06387 + inSlope: 0.07230096 + outSlope: 0.072290905 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.866667 + value: -19.250141 + inSlope: -0.58770424 + outSlope: -0.5917494 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.266667 + value: -17.490805 + inSlope: 1.6675471 + outSlope: 1.6664441 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.433334 + value: -16.37207 + inSlope: 0.7585665 + outSlope: 0.75846034 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566668 + value: -14.995442 + inSlope: 0.53866565 + outSlope: 0.53866565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 8.359549 + inSlope: 1.3766996 + outSlope: 1.3766996 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 11.196682 + inSlope: 0.7339609 + outSlope: 0.7339609 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: 11.782645 + inSlope: 0.29437646 + outSlope: 0.29435816 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.866667 + value: 8.917003 + inSlope: -3.776284 + outSlope: -3.7752318 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.266667 + value: 9.377768 + inSlope: 2.0571449 + outSlope: 2.058901 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.433334 + value: 8.603316 + inSlope: -1.6387649 + outSlope: -1.6388582 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566668 + value: 8.348901 + inSlope: 1.3422073 + outSlope: 1.3422073 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -9.435395 + inSlope: -0.3321665 + outSlope: -0.3321665 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: -10.654505 + inSlope: -0.9677042 + outSlope: -0.9677042 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: -11.07184 + inSlope: -0.12734821 + outSlope: -0.12736918 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.866667 + value: -9.306209 + inSlope: 1.9415672 + outSlope: 1.9400247 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.266667 + value: -9.653353 + inSlope: -0.84293497 + outSlope: -0.8456675 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.433334 + value: -9.458202 + inSlope: 0.6729811 + outSlope: 0.6731042 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566668 + value: -9.436279 + inSlope: -0.44930837 + outSlope: -0.44930837 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 62.544598 + inSlope: 0.4281655 + outSlope: 0.4281655 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 67.07455 + inSlope: 2.835215 + outSlope: 2.8355196 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.966667 + value: 70.50058 + inSlope: 1.109619 + outSlope: 1.1100388 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.166667 + value: 69.75831 + inSlope: -4.09914 + outSlope: -4.0967436 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.3333335 + value: 66.93222 + inSlope: -1.8065057 + outSlope: -1.8088332 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.866667 + value: 64.28356 + inSlope: -1.6076312 + outSlope: -1.60825 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.5 + value: 62.531 + inSlope: -0.5753669 + outSlope: -0.5695648 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566668 + value: 62.50447 + inSlope: -0.17371899 + outSlope: -0.17371899 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 14.208031 + inSlope: -1.4558425 + outSlope: -1.4558425 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 13.258937 + inSlope: 2.0388134 + outSlope: 2.0238295 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.966667 + value: 17.092072 + inSlope: 3.049049 + outSlope: 3.0439756 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.166667 + value: 15.919557 + inSlope: -8.864595 + outSlope: -8.882057 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.3333335 + value: 9.92638 + inSlope: 2.193764 + outSlope: 2.1718225 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.866667 + value: 12.45072 + inSlope: 2.1150062 + outSlope: 2.1105418 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.5 + value: 14.281154 + inSlope: -1.4546429 + outSlope: -1.4705604 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566668 + value: 14.1828985 + inSlope: -1.2650845 + outSlope: -1.2650845 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 14.806584 + inSlope: -1.4680848 + outSlope: -1.4680848 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 13.2000475 + inSlope: 0.35242254 + outSlope: 0.33658287 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.966667 + value: 14.266539 + inSlope: 0.9776157 + outSlope: 0.9724092 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.166667 + value: 12.83915 + inSlope: -7.913191 + outSlope: -7.9307003 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.3333335 + value: 7.5800743 + inSlope: 2.607419 + outSlope: 2.5856159 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.866667 + value: 12.765924 + inSlope: 2.348936 + outSlope: 2.3445268 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.5 + value: 14.884793 + inSlope: -1.5040008 + outSlope: -1.5193975 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566668 + value: 14.783177 + inSlope: -1.3158098 + outSlope: -1.3158098 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 19.805672 + inSlope: 0.3640482 + outSlope: 0.3640482 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 20.280184 + inSlope: -0.30476198 + outSlope: -0.30476198 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: 20.427605 + inSlope: 0.03179589 + outSlope: 0.031819157 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9333334 + value: 20.18501 + inSlope: 0.34714398 + outSlope: 0.34713778 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.566667 + value: 19.93803 + inSlope: 0.2474796 + outSlope: 0.24747393 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.233334 + value: 19.811386 + inSlope: -0.20269777 + outSlope: -0.20269737 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566668 + value: 19.80563 + inSlope: -0.4186813 + outSlope: -0.4186813 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot/mixamorig:LeftToeBase + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.92502856 + inSlope: 0.008809469 + outSlope: 0.008809469 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.93638 + inSlope: -0.007275683 + outSlope: -0.007275683 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: 0.9398894 + inSlope: 0.00074018014 + outSlope: 0.00072537665 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9333334 + value: 0.9341087 + inSlope: 0.008301652 + outSlope: 0.008302913 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.566667 + value: 0.92820406 + inSlope: 0.005947715 + outSlope: 0.005938626 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.233334 + value: 0.92516583 + inSlope: -0.0047973995 + outSlope: -0.0047609117 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566668 + value: 0.9250254 + inSlope: -0.010088841 + outSlope: -0.010088841 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot/mixamorig:LeftToeBase + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -14.072975 + inSlope: -0.011028367 + outSlope: -0.011028367 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: -14.087241 + inSlope: 0.009232929 + outSlope: 0.009232929 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: -14.091638 + inSlope: -0.0010492363 + outSlope: -0.0010557176 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9333334 + value: -14.084374 + inSlope: -0.010366632 + outSlope: -0.010382008 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.566667 + value: -14.0769615 + inSlope: -0.00749004 + outSlope: -0.007505036 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.233334 + value: -14.07315 + inSlope: 0.0061506275 + outSlope: 0.006171215 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566668 + value: -14.072974 + inSlope: 0.012694335 + outSlope: 0.012694335 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot/mixamorig:LeftToeBase + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 4.8948174 + inSlope: 0.00034332272 + outSlope: 0.00034332272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 4.8948174 + inSlope: 0.00034332272 + outSlope: 0.00034332272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot/mixamorig:LeftToeBase/mixamorig:LeftToe_End + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 4.903599 + inSlope: -0.00034332272 + outSlope: -0.00034332272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 4.903599 + inSlope: -0.00034332272 + outSlope: -0.00034332272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot/mixamorig:LeftToeBase/mixamorig:LeftToe_End + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 8.569193 + inSlope: 0.00051498413 + outSlope: 0.00051498413 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 8.569193 + inSlope: 0.00051498413 + outSlope: 0.00051498413 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot/mixamorig:LeftToeBase/mixamorig:LeftToe_End + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 11.569246 + inSlope: 0.27140036 + outSlope: 0.27140036 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 12.153761 + inSlope: -0.14105713 + outSlope: -0.1399684 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8666668 + value: 12.362014 + inSlope: 0.60685945 + outSlope: 0.607798 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.066667 + value: 12.7337265 + inSlope: -2.8713028 + outSlope: -2.870681 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9333334 + value: 12.998312 + inSlope: 0.80895454 + outSlope: 0.80889666 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.933334 + value: 12.264759 + inSlope: -0.40842798 + outSlope: -0.41897053 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.6000004 + value: 11.810465 + inSlope: -0.005482865 + outSlope: -0.0019711452 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566668 + value: 11.561262 + inSlope: 0.2116347 + outSlope: 0.2116347 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 17.012363 + inSlope: 0.028533105 + outSlope: 0.028533105 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 18.696392 + inSlope: 0.9374577 + outSlope: 0.93765736 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8666668 + value: 19.96768 + inSlope: 1.1353726 + outSlope: 1.1348007 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.066667 + value: 20.345621 + inSlope: -0.66755754 + outSlope: -0.6709916 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9333334 + value: 20.427538 + inSlope: -0.07453408 + outSlope: -0.07480427 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.933334 + value: 19.30372 + inSlope: -2.1897402 + outSlope: -2.1871207 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.6000004 + value: 17.130255 + inSlope: -1.1495649 + outSlope: -1.1496038 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566668 + value: 17.010935 + inSlope: 0.80088276 + outSlope: 0.80088276 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -174.59209 + inSlope: 1.3237629 + outSlope: 1.3237629 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: -171.14514 + inSlope: 2.0673401 + outSlope: 2.0674553 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8666668 + value: -168.05266 + inSlope: 2.1711388 + outSlope: 2.1707911 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.066667 + value: -167.75397 + inSlope: -1.0821149 + outSlope: -1.084689 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9333334 + value: -168.99425 + inSlope: -0.7858397 + outSlope: -0.7858883 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.933334 + value: -170.85442 + inSlope: -2.5534961 + outSlope: -2.5511081 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.6000004 + value: -174.14238 + inSlope: -1.5311922 + outSlope: -1.531266 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566668 + value: -174.59372 + inSlope: 0.8411166 + outSlope: 0.8411166 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -19.899408 + inSlope: 1.7468548 + outSlope: 1.7468548 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -16.543188 + inSlope: 3.0852985 + outSlope: 3.0857673 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6333334 + value: -13.181216 + inSlope: 3.7053404 + outSlope: 3.6985126 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4333334 + value: -10.537087 + inSlope: 2.2573795 + outSlope: 2.2573788 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.2333336 + value: -12.496375 + inSlope: -7.1057816 + outSlope: -7.109897 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.8 + value: -12.620414 + inSlope: 1.6969385 + outSlope: 1.6984513 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.066667 + value: -16.101194 + inSlope: -2.293617 + outSlope: -2.2933447 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.7333336 + value: -19.510159 + inSlope: -0.9808389 + outSlope: -0.98081744 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566668 + value: -19.9247 + inSlope: 1.1808715 + outSlope: 1.1808715 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -11.101805 + inSlope: 1.8525639 + outSlope: 1.8525639 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -10.583061 + inSlope: 0.90872955 + outSlope: 0.9047885 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6333334 + value: -7.4844227 + inSlope: 3.3895378 + outSlope: 3.4050252 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4333334 + value: -6.3898354 + inSlope: -0.8017588 + outSlope: -0.8017586 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.2333336 + value: -6.9779224 + inSlope: -3.2517164 + outSlope: -3.239503 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.8 + value: -9.238011 + inSlope: -2.825077 + outSlope: -2.8218122 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.066667 + value: -10.930158 + inSlope: -0.62087876 + outSlope: -0.6224356 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.7333336 + value: -10.977238 + inSlope: 0.118000045 + outSlope: 0.11811667 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566668 + value: -11.107646 + inSlope: -1.1664897 + outSlope: -1.1664897 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 13.580222 + inSlope: -0.9667711 + outSlope: -0.9667711 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 12.835819 + inSlope: -0.41836166 + outSlope: -0.4123306 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6333334 + value: 11.625857 + inSlope: -0.91719544 + outSlope: -0.95027095 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.4333334 + value: 11.142067 + inSlope: 0.19143106 + outSlope: 0.191431 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.2333336 + value: 11.618669 + inSlope: 1.7291411 + outSlope: 1.711035 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.8 + value: 12.469509 + inSlope: 0.30408302 + outSlope: 0.29389325 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.066667 + value: 13.316873 + inSlope: 0.3771287 + outSlope: 0.3791777 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 7.7333336 + value: 13.426933 + inSlope: 0.07422639 + outSlope: 0.07440485 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566668 + value: 13.590052 + inSlope: 0.6271747 + outSlope: 0.6271747 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 76.9073 + inSlope: -0.60615194 + outSlope: -0.60615194 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 74.9786 + inSlope: -1.3828884 + outSlope: -1.3857766 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 72.61438 + inSlope: -1.7863992 + outSlope: -1.7681524 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.2333336 + value: 72.80437 + inSlope: 2.1597018 + outSlope: 2.1633198 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.3 + value: 72.85326 + inSlope: 1.7605592 + outSlope: 1.7256379 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.933334 + value: 75.7553 + inSlope: 1.1430963 + outSlope: 1.1430963 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566668 + value: 76.90965 + inSlope: -0.42350605 + outSlope: -0.42350605 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -88.27625 + inSlope: 6.8607745 + outSlope: 6.8607745 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -72.46601 + inSlope: 6.0579925 + outSlope: 6.034072 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: -66.44357 + inSlope: 6.4799714 + outSlope: 6.585576 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.2333336 + value: -66.82106 + inSlope: -8.171646 + outSlope: -8.148681 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.3 + value: -68.98902 + inSlope: -8.635641 + outSlope: -8.802037 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.933334 + value: -81.600685 + inSlope: -8.435873 + outSlope: -8.435873 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566668 + value: -88.31927 + inSlope: 4.1137342 + outSlope: 4.1137342 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -85.13103 + inSlope: 7.005282 + outSlope: 7.005282 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -73.09009 + inSlope: 3.7684352 + outSlope: 3.7443197 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: -67.47542 + inSlope: 6.367894 + outSlope: 6.4735317 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.2333336 + value: -67.74245 + inSlope: -7.8453684 + outSlope: -7.822352 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 5.3 + value: -69.768845 + inSlope: -8.168078 + outSlope: -8.334698 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.933334 + value: -79.9536 + inSlope: -5.605212 + outSlope: -5.605212 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566668 + value: -85.17364 + inSlope: 1.6158026 + outSlope: 1.6158026 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 22.17195 + inSlope: -0.026369289 + outSlope: -0.026369289 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 22.009249 + inSlope: -0.7447756 + outSlope: -0.7447756 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: 21.723686 + inSlope: -0.13176586 + outSlope: -0.13176729 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9333334 + value: 21.523996 + inSlope: -0.28041574 + outSlope: -0.28042105 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.566667 + value: 21.841208 + inSlope: 0.2019473 + outSlope: 0.2019459 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.233334 + value: 21.91351 + inSlope: 0.320945 + outSlope: 0.32097182 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566668 + value: 21.91523 + inSlope: 0.64208096 + outSlope: 0.64208096 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot/mixamorig:RightToeBase + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.9807484 + inSlope: 0.000569723 + outSlope: 0.000569723 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: -0.97699374 + inSlope: 0.017103406 + outSlope: 0.017103406 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: -0.9703663 + inSlope: 0.0031368707 + outSlope: 0.0031290653 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9333334 + value: -0.9657109 + inSlope: 0.006532145 + outSlope: 0.0065253205 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.566667 + value: -0.9730945 + inSlope: -0.004772251 + outSlope: -0.004759205 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.233334 + value: -0.9747672 + inSlope: -0.0073513994 + outSlope: -0.0073685506 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566668 + value: -0.9748131 + inSlope: -0.014920563 + outSlope: -0.014920563 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot/mixamorig:RightToeBase + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 14.14352 + inSlope: -0.0009739155 + outSlope: -0.0009739155 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 14.1387005 + inSlope: -0.021941125 + outSlope: -0.021941125 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: 14.130234 + inSlope: -0.0040918463 + outSlope: -0.0040924074 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 4.9333334 + value: 14.124342 + inSlope: -0.008208848 + outSlope: -0.008208214 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 6.566667 + value: 14.133734 + inSlope: 0.006295417 + outSlope: 0.0062793735 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.233334 + value: 14.135869 + inSlope: 0.009219933 + outSlope: 0.009158117 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 8.566668 + value: 14.135927 + inSlope: 0.01920887 + outSlope: 0.01920887 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot/mixamorig:RightToeBase + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 4.8948174 + inSlope: 0.00034332272 + outSlope: 0.00034332272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 4.8948174 + inSlope: 0.00034332272 + outSlope: 0.00034332272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot/mixamorig:RightToeBase/mixamorig:RightToe_End + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -4.903599 + inSlope: 0.00034332272 + outSlope: 0.00034332272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -4.903599 + inSlope: 0.00034332272 + outSlope: 0.00034332272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot/mixamorig:RightToeBase/mixamorig:RightToe_End + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -8.569193 + inSlope: -0.00051498413 + outSlope: -0.00051498413 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -8.569193 + inSlope: -0.00051498413 + outSlope: -0.00051498413 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot/mixamorig:RightToeBase/mixamorig:RightToe_End + classID: 4 + script: {fileID: 0} + m_HasGenericRootTransform: 0 + m_HasMotionFloatCurves: 0 + m_Events: [] diff --git a/Assets/Jammo-Character/Animations/Mixamo-Gun/Rifle Idle.anim.meta b/Assets/Jammo-Character/Animations/Mixamo-Gun/Rifle Idle.anim.meta new file mode 100644 index 0000000..0281887 --- /dev/null +++ b/Assets/Jammo-Character/Animations/Mixamo-Gun/Rifle Idle.anim.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d5fee5ac347826e4798c8eb83aed2291 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 7400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Jammo-Character/Animations/Mixamo-Gun/Rifle Run Backwards.anim b/Assets/Jammo-Character/Animations/Mixamo-Gun/Rifle Run Backwards.anim new file mode 100644 index 0000000..c0b3754 --- /dev/null +++ b/Assets/Jammo-Character/Animations/Mixamo-Gun/Rifle Run Backwards.anim @@ -0,0 +1,3666 @@ +%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: Rifle Run Backwards + 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, 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.033333335 + 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: jammo_mixamo_rig + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.10440886, y: 0.17368299, z: -0.014436616, w: 0.9791449} + inSlope: {x: -0.48138988, y: 0.026770232, z: 0.42542818, w: -0.056902166} + outSlope: {x: -0.48138988, y: 0.026770232, z: 0.42542818, w: -0.056902166} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: -0.12045519, y: 0.17457533, z: -0.00025567593, w: 0.97724813} + inSlope: {x: -0.15594116, y: 0.061191242, z: 0.14744231, w: -0.027029512} + outSlope: {x: -0.15594116, y: 0.061191242, z: 0.14744231, w: -0.027029512} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: -0.11480494, y: 0.1777624, z: -0.0046071284, w: 0.9773429} + inSlope: {x: 0.5121361, y: 0.5685878, z: -0.1967126, w: -0.059913386} + outSlope: {x: 0.5121361, y: 0.5685878, z: -0.1967126, w: -0.059913386} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: -0.059040576, y: 0.2627918, z: -0.017072381, w: 0.9628932} + inSlope: {x: 0.24124986, y: 1.274101, z: 0.08631011, w: -0.31686726} + outSlope: {x: 0.24124986, y: 1.274101, z: 0.08631011, w: -0.31686726} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.070229456, y: 0.29742125, z: -0.0076158433, w: 0.9521294} + inSlope: {x: -0.28613693, y: 0.65948945, z: 0.5130224, w: -0.2170685} + outSlope: {x: -0.28613693, y: 0.65948945, z: 0.5130224, w: -0.2170685} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: -0.07811637, y: 0.30675778, z: 0.017129123, w: 0.94842196} + inSlope: {x: 0.17893882, y: 0.3362949, z: 0.26001316, w: -0.09755193} + outSlope: {x: 0.17893882, y: 0.3362949, z: 0.26001316, w: -0.09755193} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: -0.058300205, y: 0.3198409, z: 0.009718378, w: 0.94562596} + inSlope: {x: 0.3933831, y: 0.08640022, z: -0.45394385, w: -0.00029057264} + outSlope: {x: 0.3933831, y: 0.08640022, z: -0.45394385, w: -0.00029057264} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.051890835, y: 0.3125178, z: -0.013133798, w: 0.9484026} + inSlope: {x: -0.09677231, y: -0.74595994, z: -0.351363, w: 0.22388847} + outSlope: {x: -0.09677231, y: -0.74595994, z: -0.351363, w: 0.22388847} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.08315761, y: 0.22083087, z: -0.010167081, w: 0.97170734} + inSlope: {x: -0.5695632, y: -1.5000918, z: 0.09201816, w: 0.29214624} + outSlope: {x: -0.5695632, y: -1.5000918, z: 0.09201816, w: 0.29214624} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: -0.10272257, y: 0.17010413, z: -0.0075712777, w: 0.9800283} + inSlope: {x: -0.37432334, y: -1.7073941, z: -0.012565672, w: 0.24891785} + outSlope: {x: -0.37432334, y: -1.7073941, z: -0.012565672, w: 0.24891785} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: -0.1081125, y: 0.107004546, z: -0.011004795, w: 0.9883019} + inSlope: {x: -0.085924946, y: -1.1240326, z: -0.1773162, w: 0.13976444} + outSlope: {x: -0.085924946, y: -1.1240326, z: -0.1773162, w: 0.13976444} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: -0.108450904, y: 0.09516857, z: -0.01939236, w: 0.9893459} + inSlope: {x: 0.091845885, y: 0.49579218, z: -0.20452577, w: -0.05600185} + outSlope: {x: 0.091845885, y: 0.49579218, z: -0.20452577, w: -0.05600185} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: -0.10198944, y: 0.14005736, z: -0.024639845, w: 0.9845684} + inSlope: {x: 0.060630973, y: 1.177717, z: 0.07433718, w: -0.15301564} + outSlope: {x: 0.060630973, y: 1.177717, z: 0.07433718, w: -0.15301564} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.10440884, y: 0.173683, z: -0.014436558, w: 0.9791449} + inSlope: {x: -0.072581984, y: 1.0087703, z: 0.3060989, w: -0.16270652} + outSlope: {x: -0.072581984, y: 1.0087703, z: 0.3060989, w: -0.16270652} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.06335286, y: 0.008804675, z: -0.004640663, w: 0.99794155} + inSlope: {x: -0.41177773, y: 0.3811432, z: 0.5258549, w: 0.015344023} + outSlope: {x: -0.41177773, y: 0.3811432, z: 0.5258549, w: 0.015344023} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.049626935, y: 0.02150945, z: 0.012887833, w: 0.998453} + inSlope: {x: -0.47333583, y: 0.44442514, z: 0.6270518, w: 0.0018292665} + outSlope: {x: -0.47333583, y: 0.44442514, z: 0.6270518, w: 0.0018292665} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: 0.011335652, y: 0.046818983, z: 0.043766715, w: 0.99787974} + inSlope: {x: -0.3726761, y: 0.06360443, z: -0.13708094, w: 0.009123983} + outSlope: {x: -0.3726761, y: 0.06360443, z: -0.13708094, w: 0.009123983} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.006952061, y: 0.042673316, z: 0.02802406, w: 0.99867177} + inSlope: {x: 0.21357816, y: -0.26215655, z: -0.4991269, w: 0.01961142} + outSlope: {x: 0.21357816, y: -0.26215655, z: -0.4991269, w: 0.01961142} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: 0.040930126, y: 0.010774313, z: -0.0051513873, w: 0.9990907} + inSlope: {x: 0.17241359, y: -0.49596667, z: -0.2854703, w: 0.0012320288} + outSlope: {x: 0.17241359, y: -0.49596667, z: -0.2854703, w: 0.0012320288} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.030067755, y: -0.010860882, z: -0.008683297, w: 0.99945116} + inSlope: {x: 0.12064203, y: -0.11936103, z: -0.3974199, w: -0.014552774} + outSlope: {x: 0.12064203, y: -0.11936103, z: -0.3974199, w: -0.014552774} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.058609992, y: -0.009979721, z: -0.06702353, w: 0.9959785} + inSlope: {x: 0.2853167, y: 0.13971508, z: -0.7309606, w: -0.05823434} + outSlope: {x: 0.2853167, y: 0.13971508, z: -0.7309606, w: -0.05823434} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: 0.071071625, y: 0.017143475, z: -0.0554687, w: 0.99578017} + inSlope: {x: 0.065950945, y: 0.02068241, z: 0.7087549, w: 0.032882098} + outSlope: {x: 0.065950945, y: 0.02068241, z: 0.7087549, w: 0.032882098} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.063369304, y: 0.008806766, z: -0.00464215, w: 0.9979405} + inSlope: {x: -0.27892274, y: -0.09028076, z: 0.74435395, w: 0.03267649} + outSlope: {x: -0.27892274, y: -0.09028076, z: 0.74435395, w: 0.03267649} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.056354716, y: 0.016079556, z: -0.00928276, w: 0.9982382} + inSlope: {x: 0.19127323, y: 0.45773783, z: -0.4385002, w: -0.029584764} + outSlope: {x: 0.19127323, y: 0.45773783, z: -0.4385002, w: -0.029584764} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: 0.06122665, y: 0.028952606, z: -0.034745157, w: 0.99709874} + inSlope: {x: -0.12616959, y: -0.27126014, z: 0.048254903, w: 0.016203225} + outSlope: {x: -0.12616959, y: -0.27126014, z: 0.048254903, w: 0.016203225} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.05868829, y: 0.008085752, z: -0.022966543, w: 0.9979794} + inSlope: {x: 0.08560537, y: -0.1465064, z: 0.07850556, w: -0.0011819587} + outSlope: {x: 0.08560537, y: -0.1465064, z: 0.07850556, w: -0.0011819587} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: 0.06182528, y: 0.007200377, z: -0.02410899, w: 0.99776983} + inSlope: {x: -0.11373396, y: -0.16580641, z: -0.0014809612, w: 0.0066456217} + outSlope: {x: -0.11373396, y: -0.16580641, z: -0.0014809612, w: 0.0066456217} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: 0.035077557, y: -0.019366588, z: -0.0038761103, w: 0.99918944} + inSlope: {x: -0.07945798, y: -0.032521296, z: 0.41230175, w: 0.0034153464} + outSlope: {x: -0.07945798, y: -0.032521296, z: 0.41230175, w: 0.0034153464} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: 0.04792574, y: -0.008023051, z: 0.02247803, w: 0.99856573} + inSlope: {x: 0.34942657, y: 0.4094807, z: 0.17336936, w: -0.018123679} + outSlope: {x: 0.34942657, y: 0.4094807, z: 0.17336936, w: -0.018123679} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: 0.058585033, y: 0.017596345, z: 0.01753078, w: 0.9979734} + inSlope: {x: -0.056690894, y: 0.03723222, z: -0.21461743, w: 0.006215573} + outSlope: {x: -0.056690894, y: 0.03723222, z: -0.21461743, w: 0.006215573} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.056335382, y: 0.016087513, z: -0.009281132, w: 0.99823916} + inSlope: {x: 0.044836964, y: 0.09529822, z: -0.5421468, w: -0.0040143766} + outSlope: {x: 0.044836964, y: 0.09529822, z: -0.5421468, w: -0.0040143766} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.043756004, y: 0.016171155, z: -0.007269346, w: 0.9988849} + inSlope: {x: 0.23965894, y: 0.39356676, z: -0.3572192, w: -0.025151966} + outSlope: {x: 0.23965894, y: 0.39356676, z: -0.3572192, w: -0.025151966} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: 0.051283427, y: 0.024991121, z: -0.027578332, w: 0.9979904} + inSlope: {x: -0.15246832, y: -0.24483243, z: 0.014988638, w: 0.013589859} + outSlope: {x: -0.15246832, y: -0.24483243, z: 0.014988638, w: 0.013589859} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.04669383, y: 0.0069235107, z: -0.01969355, w: 0.9986911} + inSlope: {x: 0.07478014, y: -0.12493936, z: 0.018028047, w: -0.0018042313} + outSlope: {x: 0.07478014, y: -0.12493936, z: 0.018028047, w: -0.0018042313} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: 0.049803607, y: 0.006315607, z: -0.023106772, w: 0.99847174} + inSlope: {x: -0.119271606, y: -0.15531126, z: -0.06071737, w: 0.0040528197} + outSlope: {x: -0.119271606, y: -0.15531126, z: -0.06071737, w: 0.0040528197} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: 0.022913227, y: -0.017692018, z: -0.003640539, w: 0.9995743} + inSlope: {x: -0.06651719, y: 0.025811888, z: 0.43164185, w: 0.003115833} + outSlope: {x: -0.06651719, y: 0.025811888, z: 0.43164185, w: 0.003115833} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: 0.036286213, y: -0.0023136097, z: 0.023682574, w: 0.9990581} + inSlope: {x: 0.3262325, y: 0.42518592, z: 0.2005032, w: -0.015575582} + outSlope: {x: 0.3262325, y: 0.42518592, z: 0.2005032, w: -0.015575582} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: 0.04493513, y: 0.021698734, z: 0.019021044, w: 0.9985731} + inSlope: {x: -0.055512343, y: -0.0023955926, z: -0.24537076, w: 0.0066715484} + outSlope: {x: -0.055512343, y: -0.0023955926, z: -0.24537076, w: 0.0066715484} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.043736618, y: 0.016178455, z: -0.00726873, w: 0.99888563} + inSlope: {x: 0.062205404, y: 0.024899138, z: -0.4875314, w: -0.0026339318} + outSlope: {x: 0.062205404, y: 0.024899138, z: -0.4875314, w: -0.0026339318} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.031979986, y: -0.013124394, z: 0.0042178133, w: 0.99939346} + inSlope: {x: -0.24282071, y: -0.22280352, z: -0.2424452, w: 0.0030755994} + outSlope: {x: -0.24282071, y: -0.22280352, z: -0.2424452, w: 0.0030755994} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: -0.0013810201, y: -0.04432529, z: -0.024897829, w: 0.9987059} + inSlope: {x: 0.121443756, y: 0.09831379, z: 0.21150096, w: 0.008976459} + outSlope: {x: 0.121443756, y: 0.09831379, z: 0.21150096, w: 0.008976459} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: 0.021763677, y: -0.017464941, z: -0.011711889, w: 0.999542} + inSlope: {x: 0.3370554, y: 0.4763626, z: -0.103345245, w: -0.0013822317} + outSlope: {x: 0.3370554, y: 0.4763626, z: -0.103345245, w: -0.0013822317} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: 0.039701283, y: 0.0084006265, z: -0.019358605, w: 0.99898875} + inSlope: {x: 0.07468836, y: 0.091665134, z: -0.0021081418, w: -0.0030246396} + outSlope: {x: 0.07468836, y: 0.091665134, z: -0.0021081418, w: -0.0030246396} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.031982575, y: -0.0131241055, z: 0.004217521, w: 0.9993934} + inSlope: {x: -0.06613182, y: -0.19057553, z: 0.2109798, w: 0.00014483942} + outSlope: {x: -0.06613182, y: -0.19057553, z: 0.2109798, w: 0.00014483942} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.114196934, y: -0.13629909, z: 0.023611875, w: 0.9837805} + inSlope: {x: 0.36063483, y: -0.5847224, z: 0.46996966, w: -0.14625369} + outSlope: {x: 0.36063483, y: -0.5847224, z: 0.46996966, w: -0.14625369} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: 0.15997222, y: -0.21612129, z: 0.08568343, w: 0.9593533} + inSlope: {x: -0.25254315, y: 0.31897005, z: -0.27992356, w: 0.1356679} + outSlope: {x: -0.25254315, y: 0.31897005, z: -0.27992356, w: 0.1356679} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: 0.12556852, y: -0.15543711, z: 0.069469154, w: 0.9773668} + inSlope: {x: -0.34394306, y: 0.8832464, z: 0.0630384, w: 0.1782185} + outSlope: {x: -0.34394306, y: 0.8832464, z: 0.0630384, w: 0.1782185} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: 0.10897157, y: -0.10851405, z: 0.07326743, w: 0.9853841} + inSlope: {x: -0.06941972, y: 0.18246292, z: -0.06127187, w: 0.034060482} + outSlope: {x: -0.06941972, y: 0.18246292, z: -0.06127187, w: 0.034060482} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: 0.11246901, y: -0.12827536, z: 0.03834948, w: 0.9845941} + inSlope: {x: 0.051913958, y: -0.25676307, z: -0.46546727, w: -0.020746004} + outSlope: {x: 0.051913958, y: -0.25676307, z: -0.46546727, w: -0.020746004} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.1141939, y: -0.13629809, z: 0.023612896, w: 0.983781} + inSlope: {x: 0.05174679, y: -0.24068199, z: -0.44209793, w: -0.02439382} + outSlope: {x: 0.05174679, y: -0.24068199, z: -0.44209793, w: -0.02439382} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.06928724, y: 0, z: -0, w: 0.99759674} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: -0.06928724, y: 0, z: -0, w: 0.99759674} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head/mixamorig:HeadTop_End + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.40506425, y: -0.45798013, z: 0.59357256, w: 0.5233056} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.40506425, y: -0.45798013, z: 0.59357256, w: 0.5233056} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head/mixamorig:LeftEar + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.40506425, y: 0.45798013, z: -0.59357256, w: 0.5233056} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.40506425, y: 0.45798013, z: -0.59357256, w: 0.5233056} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head/mixamorig:RightEar + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.5892143, y: -0.38905796, z: 0.34309936, w: 0.6194701} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.5892143, y: -0.38905796, z: 0.34309936, w: 0.6194701} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.4226773, y: 0.20152065, z: -0.179858, w: 0.86509216} + inSlope: {x: 0.20013122, y: -1.0426761, z: 1.5157377, w: 0.39130744} + outSlope: {x: 0.20013122, y: -1.0426761, z: 1.5157377, w: 0.39130744} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: 0.4358882, y: 0.13414517, z: -0.08791694, w: 0.88559425} + inSlope: {x: 0.2349123, y: -0.61892194, z: 1.3047724, w: 0.11310696} + outSlope: {x: 0.2349123, y: -0.61892194, z: 1.3047724, w: 0.11310696} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.45018843, y: 0.12860401, z: -0.011184298, w: 0.8835532} + inSlope: {x: 0.055689372, y: 0.19325407, z: 0.4250696, w: -0.043434802} + outSlope: {x: 0.055689372, y: 0.19325407, z: 0.4250696, w: -0.043434802} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.4487218, y: 0.13838692, z: -0.014010599, w: 0.88278055} + inSlope: {x: -0.069769606, y: 0.50026, z: -0.32281616, w: -0.055021923} + outSlope: {x: -0.069769606, y: 0.50026, z: -0.32281616, w: -0.055021923} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: 0.44553712, y: 0.16195469, z: -0.03270538, w: 0.8798851} + inSlope: {x: 0.02710643, y: 0.40645802, z: -0.55969846, w: -0.10488866} + outSlope: {x: 0.02710643, y: 0.40645802, z: -0.55969846, w: -0.10488866} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: 0.4505289, y: 0.16548413, z: -0.051323835, w: 0.875788} + inSlope: {x: 0.16002597, y: -0.08606964, z: -1.0921167, w: -0.15310587} + outSlope: {x: 0.16002597, y: -0.08606964, z: -1.0921167, w: -0.15310587} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.45620552, y: 0.15621671, z: -0.105513155, w: 0.869678} + inSlope: {x: 0.16058879, y: -0.009532571, z: -2.0099864, w: -0.35823855} + outSlope: {x: 0.16058879, y: -0.009532571, z: -2.0099864, w: -0.35823855} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: 0.4612348, y: 0.16484863, z: -0.18532291, w: 0.8519054} + inSlope: {x: 0.09875224, y: 0.46646637, z: -2.0518496, w: -0.56692964} + outSlope: {x: 0.09875224, y: 0.46646637, z: -2.0518496, w: -0.56692964} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.462789, y: 0.18731447, z: -0.24230312, w: 0.8318827} + inSlope: {x: -0.10881232, y: 0.9047237, z: -1.4704952, w: -0.5656654} + outSlope: {x: -0.10881232, y: 0.9047237, z: -1.4704952, w: -0.5656654} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.4348836, y: 0.24853998, z: -0.29528934, w: 0.8135775} + inSlope: {x: -0.4843768, y: 0.3400039, z: 0.2280769, w: 0.23666564} + outSlope: {x: -0.4843768, y: 0.3400039, z: 0.2280769, w: 0.23666564} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: 0.41746467, y: 0.23086123, z: -0.22170322, w: 0.85045516} + inSlope: {x: 0.01506827, y: -0.69486785, z: 1.3249025, w: 0.5268406} + outSlope: {x: 0.01506827, y: -0.69486785, z: 1.3249025, w: 0.5268406} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.4226934, y: 0.20150599, z: -0.17982401, w: 0.8650948} + inSlope: {x: 0.15686199, y: -0.88065815, z: 1.2563775, w: 0.4391889} + outSlope: {x: 0.15686199, y: -0.88065815, z: 1.2563775, w: 0.4391889} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.52254564, y: 0.5546594, z: -0.41606474, w: 0.49617448} + inSlope: {x: 0.7069444, y: -0.33187684, z: -0.2605918, w: -0.62805885} + outSlope: {x: 0.7069444, y: -0.33187684, z: -0.2605918, w: -0.62805885} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: 0.58843076, y: 0.51070815, z: -0.4485869, w: 0.43783146} + inSlope: {x: 0.43165237, y: -0.48225534, z: -0.3643937, w: -0.38369936} + outSlope: {x: 0.43165237, y: -0.48225534, z: -0.3643937, w: -0.38369936} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.59922385, y: 0.49541524, z: -0.46061423, w: 0.42816937} + inSlope: {x: 0.044908233, y: -0.16731666, z: -0.15663253, w: -0.029892333} + outSlope: {x: 0.044908233, y: -0.16731666, z: -0.15663253, w: -0.029892333} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.59142464, y: 0.4995537, z: -0.45902908, w: 0.43583864} + inSlope: {x: -0.22706595, y: 0.1499815, z: 0.07962582, w: 0.21987987} + outSlope: {x: -0.22706595, y: 0.1499815, z: 0.07962582, w: 0.21987987} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: 0.5840861, y: 0.505414, z: -0.45530584, w: 0.44282803} + inSlope: {x: -0.273976, y: 0.21585387, z: 0.14198585, w: 0.25797573} + outSlope: {x: -0.273976, y: 0.21585387, z: 0.14198585, w: 0.25797573} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: 0.5731596, y: 0.513944, z: -0.44956335, w: 0.45303702} + inSlope: {x: -0.7231093, y: 0.61978704, z: 0.48602703, w: 0.6301658} + outSlope: {x: -0.7231093, y: 0.61978704, z: 0.48602703, w: 0.6301658} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.53587884, y: 0.54673314, z: -0.42290404, w: 0.48483908} + inSlope: {x: -1.4163129, y: 1.0606439, z: 0.9559394, w: 1.1434213} + outSlope: {x: -1.4163129, y: 1.0606439, z: 0.9559394, w: 1.1434213} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: 0.47873873, y: 0.58465356, z: -0.38583407, w: 0.5292651} + inSlope: {x: -1.5421845, y: 0.89690304, z: 0.9766022, w: 1.1669621} + outSlope: {x: -1.5421845, y: 0.89690304, z: 0.9766022, w: 1.1669621} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.43306655, y: 0.6065267, z: -0.35779724, w: 0.56263655} + inSlope: {x: -1.2395008, y: 0.581646, z: 0.8066664, w: 0.8609785} + outSlope: {x: -1.2395008, y: 0.581646, z: 0.8066664, w: 0.8609785} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: 0.39610535, y: 0.62342995, z: -0.3320563, w: 0.58666366} + inSlope: {x: -0.44670418, y: 0.19115219, z: 0.29597515, w: 0.30142853} + outSlope: {x: -0.44670418, y: 0.19115219, z: 0.29597515, w: 0.30142853} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: 0.44045433, y: 0.6008013, z: -0.36473235, w: 0.5585769} + inSlope: {x: 1.3044088, y: -0.72355545, z: -0.9277377, w: -0.894279} + outSlope: {x: 1.3044088, y: -0.72355545, z: -0.9277377, w: -0.894279} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: 0.49024686, y: 0.5710331, z: -0.39991474, w: 0.5231132} + inSlope: {x: 1.2315372, y: -0.6922748, z: -0.7701278, w: -0.93616784} + outSlope: {x: 1.2315372, y: -0.6922748, z: -0.7701278, w: -0.93616784} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.5225568, y: 0.55464965, z: -0.4160742, w: 0.49616572} + inSlope: {x: 0.96929854, y: -0.49150455, z: -0.48478383, w: -0.80842483} + outSlope: {x: 0.96929854, y: -0.49150455, z: -0.48478383, w: -0.80842483} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.04163541, y: 0.45070645, z: -0.038072757, w: 0.89088756} + inSlope: {x: 0.37670982, y: -0.14899044, z: -1.0738643, w: 0.022435782} + outSlope: {x: 0.37670982, y: -0.14899044, z: -1.0738643, w: 0.022435782} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: -0.015936704, y: 0.42718706, z: -0.1141933, w: 0.89678156} + inSlope: {x: 0.06817387, y: -0.18677069, z: -0.3157742, w: 0.051436715} + outSlope: {x: 0.06817387, y: -0.18677069, z: -0.3157742, w: 0.051436715} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: -0.01464634, y: 0.42338353, z: -0.1223601, w: 0.8975299} + inSlope: {x: 0.11660439, y: -0.0016339123, z: -0.06780189, w: -0.0064605484} + outSlope: {x: 0.11660439, y: -0.0016339123, z: -0.06780189, w: -0.0064605484} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.008163079, y: 0.42707813, z: -0.11871342, w: 0.89635086} + inSlope: {x: -0.13158938, y: 0.05347431, z: 0.22947946, w: 0.0012078788} + outSlope: {x: -0.13158938, y: 0.05347431, z: 0.22947946, w: 0.0012078788} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: -0.022597361, y: 0.43082476, z: -0.091067076, w: 0.8975445} + inSlope: {x: 0.41253862, y: 0.18995942, z: 0.59618884, w: -0.029372873} + outSlope: {x: 0.41253862, y: 0.18995942, z: 0.59618884, w: -0.029372873} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: 0.02952099, y: 0.4481498, z: -0.027859317, w: 0.8930365} + inSlope: {x: 0.46016616, y: 0.2148338, z: 1.2159162, w: -0.081025966} + outSlope: {x: 0.46016616, y: 0.2148338, z: 1.2159162, w: -0.081025966} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.034761343, y: 0.4539347, z: 0.013745525, w: 0.8902505} + inSlope: {x: 0.04426659, y: -0.013618916, z: 1.2356138, w: -0.013155343} + outSlope: {x: 0.04426659, y: -0.013618916, z: 1.2356138, w: -0.013155343} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.010993557, y: 0.44276386, z: 0.067768976, w: 0.89400595} + inSlope: {x: -0.7420785, y: 0.07251315, z: -0.049744427, w: -0.02719405} + outSlope: {x: -0.7420785, y: 0.07251315, z: -0.049744427, w: -0.02719405} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: -0.041579477, y: 0.45688632, z: 0.007069796, w: 0.8885247} + inSlope: {x: -0.36963215, y: -0.02060347, z: -1.3391451, w: 0.008137854} + outSlope: {x: -0.36963215, y: -0.02060347, z: -1.3391451, w: 0.008137854} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.04164196, y: 0.45070252, z: -0.038077652, w: 0.89088905} + inSlope: {x: -0.0018745306, y: -0.18551427, z: -1.3544247, w: 0.07093019} + outSlope: {x: -0.0018745306, y: -0.18551427, z: -1.3544247, w: 0.07093019} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.22189716, y: -0.13689658, z: -0.2537998, w: 0.93145406} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.22189716, y: -0.13689658, z: -0.2537998, w: 0.93145406} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.055517644, y: -0.13071376, z: 0.13998038, w: 0.97991693} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.055517644, y: -0.13071376, z: 0.13998038, w: 0.97991693} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.22361797, y: 0.031642098, z: -0.104596786, w: 0.96853155} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: -0.22361797, y: 0.031642098, z: -0.104596786, w: 0.96853155} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2/mixamorig:LeftHandThumb3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.020066813, y: 0.040932354, z: 0.01450452, w: 0.9988551} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.020066813, y: 0.040932354, z: 0.01450452, w: 0.9988551} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2/mixamorig:LeftHandThumb3/mixamorig:LeftHandThumb4 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.17390491, y: -0.06617029, z: -0.022739777, w: 0.98227364} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.17390491, y: -0.06617029, z: -0.022739777, w: 0.98227364} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.24461025, y: -0.0050664507, z: 0.033822425, w: 0.96901816} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.24461025, y: -0.0050664507, z: 0.033822425, w: 0.96901816} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.24556217, y: -0.00000001339112, z: 0.032646768, w: 0.96883094} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.24556217, y: -0.00000001339112, z: 0.032646768, w: 0.96883094} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2/mixamorig:LeftHandIndex3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.04448856, y: 0.00000007024105, z: -0.000000018610315, w: 0.9990099} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.04448856, y: 0.00000007024105, z: -0.000000018610315, w: 0.9990099} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2/mixamorig:LeftHandIndex3/mixamorig:LeftHandIndex4 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.17314576, y: -0.064032175, z: -0.024896137, w: 0.98249716} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.17314576, y: -0.064032175, z: -0.024896137, w: 0.98249716} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.38609624, y: -0.012462732, z: 0.055942096, w: 0.92067635} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.38609624, y: -0.012462732, z: 0.055942096, w: 0.92067635} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.37091073, y: 0.0028799523, z: 0.050473258, w: 0.92729145} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.37091073, y: 0.0028799523, z: 0.050473258, w: 0.92729145} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2/mixamorig:LeftHandMiddle3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.010558586, y: -0.0028613624, z: -0.002861056, w: 0.9999361} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.010558586, y: -0.0028613624, z: -0.002861056, w: 0.9999361} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2/mixamorig:LeftHandMiddle3/mixamorig:LeftHandMiddle4 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.055215422, y: 0.08593811, z: -0.020106597, w: 0.9945661} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.055215422, y: 0.08593811, z: -0.020106597, w: 0.9945661} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.43159792, y: -0.00012887799, z: 0.0573807, w: 0.9002392} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.43159792, y: -0.00012887799, z: 0.0573807, w: 0.9002392} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.27317548, y: 0.00000012777838, z: 0.03627907, w: 0.96127987} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.27317548, y: 0.00000012777838, z: 0.03627907, w: 0.96127987} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2/mixamorig:LeftHandPinky3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.044519108, y: 0.000000010775162, z: 0.0000000521604, w: 0.99900854} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.044519108, y: 0.000000010775162, z: 0.0000000521604, w: 0.99900854} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2/mixamorig:LeftHandPinky3/mixamorig:LeftHandPinky4 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.47566578, y: 0.51736706, z: -0.46252185, w: 0.5405062} + inSlope: {x: 0.0335446, y: -0.056809183, z: 0.033604503, w: 0.053356286} + outSlope: {x: 0.0335446, y: -0.056809183, z: 0.033604503, w: 0.053356286} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.5186559, y: 0.51000977, z: -0.42190078, w: 0.5411893} + inSlope: {x: 0.52447546, y: -0.0060644723, z: 0.5313848, w: -0.08508055} + outSlope: {x: 0.52447546, y: -0.0060644723, z: 0.5313848, w: -0.08508055} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.60086983, y: 0.4996351, z: -0.3210758, w: 0.5350052} + inSlope: {x: 0.22918317, y: -0.034372512, z: 0.33459264, w: -0.019913616} + outSlope: {x: 0.22918317, y: -0.034372512, z: 0.33459264, w: -0.019913616} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: 0.60505825, y: 0.49914992, z: -0.31481186, w: 0.5344599} + inSlope: {x: -0.32458362, y: 0.1341309, z: -0.47248986, w: -0.06614502} + outSlope: {x: -0.32458362, y: 0.1341309, z: -0.47248986, w: -0.06614502} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.5792309, y: 0.50857717, z: -0.35257515, w: 0.53059554} + inSlope: {x: -1.1412072, y: 0.2929597, z: -1.4642439, w: -0.064687684} + outSlope: {x: -1.1412072, y: 0.2929597, z: -1.4642439, w: -0.064687684} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: 0.52897775, y: 0.5186806, z: -0.41242814, w: 0.5301474} + inSlope: {x: -1.3469362, y: 0.14307798, z: -1.46948, w: 0.10518999} + outSlope: {x: -1.3469362, y: 0.14307798, z: -1.46948, w: 0.10518999} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: 0.48943517, y: 0.5181157, z: -0.45054048, w: 0.5376082} + inSlope: {x: -0.79967713, y: -0.019705307, z: -0.7514019, w: 0.15538578} + outSlope: {x: -0.79967713, y: -0.019705307, z: -0.7514019, w: 0.15538578} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.47566596, y: 0.5173669, z: -0.46252158, w: 0.5405064} + inSlope: {x: -0.41307667, y: -0.022464417, z: -0.35943335, w: 0.08694657} + outSlope: {x: -0.41307667, y: -0.022464417, z: -0.35943335, w: 0.08694657} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.33531952, y: 0.20033361, z: 0.31190595, w: 0.86610734} + inSlope: {x: -0.05203038, y: 0.4404929, z: 0.33755687, w: -0.21013318} + outSlope: {x: -0.05203038, y: 0.4404929, z: 0.33755687, w: -0.21013318} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.33358517, y: 0.21501671, z: 0.32315785, w: 0.8591029} + inSlope: {x: -0.28361857, y: 0.59872556, z: 0.20729004, w: -0.12245535} + outSlope: {x: -0.28361857, y: 0.59872556, z: 0.20729004, w: -0.12245535} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: 0.3164116, y: 0.24024865, z: 0.3257253, w: 0.85794365} + inSlope: {x: -0.38123128, y: 0.40917745, z: 0.2444708, w: -0.0609371} + outSlope: {x: -0.38123128, y: 0.40917745, z: 0.2444708, w: -0.0609371} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: 0.30816975, y: 0.2422952, z: 0.3394559, w: 0.85504043} + inSlope: {x: 0.06738294, y: -0.21396966, z: 0.24406669, w: -0.062014453} + outSlope: {x: 0.06738294, y: -0.21396966, z: 0.24406669, w: -0.062014453} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.33531973, y: 0.2006052, z: 0.33595726, w: 0.8570011} + inSlope: {x: 0.3309698, y: -0.94838107, z: -0.32692856, w: 0.21225029} + outSlope: {x: 0.3309698, y: -0.94838107, z: -0.32692856, w: 0.21225029} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: 0.34296846, y: 0.16275859, z: 0.32020116, w: 0.8679594} + inSlope: {x: 0.10467808, y: -0.7962285, z: -0.60048574, w: 0.33728772} + outSlope: {x: 0.10467808, y: -0.7962285, z: -0.60048574, w: 0.33728772} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.3410759, y: 0.14908104, z: 0.25435024, w: 0.89260745} + inSlope: {x: -0.061356433, y: -0.017573612, z: -1.414212, w: 0.4200304} + outSlope: {x: -0.061356433, y: -0.017573612, z: -1.414212, w: 0.4200304} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.3331946, y: 0.13872333, z: 0.17031229, w: 0.9169138} + inSlope: {x: -0.2572422, y: -0.56207407, z: -0.53106755, w: 0.2773011} + outSlope: {x: -0.2572422, y: -0.56207407, z: -0.53106755, w: 0.2773011} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: 0.32105836, y: 0.10888011, z: 0.16623957, w: 0.92597574} + inSlope: {x: -0.40317786, y: -0.41519338, z: 0.6191601, w: 0.06803878} + outSlope: {x: -0.40317786, y: -0.41519338, z: 0.6191601, w: 0.06803878} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.30631608, y: 0.11104377, z: 0.21158966, w: 0.9214497} + inSlope: {x: -0.2221131, y: 0.5583842, z: 1.731869, w: -0.4271042} + outSlope: {x: -0.2221131, y: 0.5583842, z: 1.731869, w: -0.4271042} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: 0.3062508, y: 0.14610572, z: 0.28169754, w: 0.8975021} + inSlope: {x: 0.2783865, y: 1.0302033, z: 1.4585407, w: -0.68683153} + outSlope: {x: 0.2783865, y: 1.0302033, z: 1.4585407, w: -0.68683153} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: 0.32487518, y: 0.179724, z: 0.3088257, w: 0.87566096} + inSlope: {x: 0.42876962, y: 0.8154621, z: 0.45504355, w: -0.469275} + outSlope: {x: 0.42876962, y: 0.8154621, z: 0.45504355, w: -0.469275} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.33483544, y: 0.20046984, z: 0.31203377, w: 0.86621714} + inSlope: {x: 0.29880822, y: 0.6223759, z: 0.09624222, w: -0.28331485} + outSlope: {x: 0.29880822, y: 0.6223759, z: 0.09624222, w: -0.28331485} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.26547027, y: -0.23594087, z: 0.81574655, w: 0.456525} + inSlope: {x: -0.5102438, y: 0.07566466, z: -0.23401736, w: 0.72316194} + outSlope: {x: -0.5102438, y: 0.07566466, z: -0.23401736, w: 0.72316194} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.24846214, y: -0.23341872, z: 0.80794597, w: 0.4806304} + inSlope: {x: -0.20116076, y: 0.030890327, z: -0.15550373, w: 0.39464143} + outSlope: {x: -0.20116076, y: 0.030890327, z: -0.15550373, w: 0.39464143} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: 0.25205955, y: -0.23388152, z: 0.8053796, w: 0.48283443} + inSlope: {x: -0.4146797, y: 0.20204139, z: 0.022041492, w: 0.25609908} + outSlope: {x: -0.4146797, y: 0.20204139, z: 0.022041492, w: 0.25609908} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: 0.22081682, y: -0.21994929, z: 0.8094154, w: 0.49770367} + inSlope: {x: -0.50997794, y: 0.10534305, z: 0.03387092, w: 0.23804736} + outSlope: {x: -0.50997794, y: 0.10534305, z: 0.03387092, w: 0.23804736} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.21806102, y: -0.22685865, z: 0.8076377, w: 0.49870425} + inSlope: {x: -0.054162297, y: -0.2742577, z: -0.10347337, w: 0.0648746} + outSlope: {x: -0.054162297, y: -0.2742577, z: -0.10347337, w: 0.0648746} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: 0.22685726, y: -0.24291152, z: 0.8051823, w: 0.49113268} + inSlope: {x: 0.41908014, y: -0.08706738, z: 0.11617451, w: -0.43390763} + outSlope: {x: 0.41908014, y: -0.08706738, z: 0.11617451, w: -0.43390763} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: 0.24514468, y: -0.24403763, z: 0.81026214, w: 0.47310147} + inSlope: {x: 0.39390412, y: -0.052298836, z: 0.09716929, w: -0.3887299} + outSlope: {x: 0.39390412, y: -0.052298836, z: 0.09716929, w: -0.3887299} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.25311753, y: -0.2463981, z: 0.81166023, w: 0.46521735} + inSlope: {x: 0.31645128, y: -0.07260651, z: 0.055067547, w: -0.31015548} + outSlope: {x: 0.31645128, y: -0.07260651, z: 0.055067547, w: -0.31015548} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: 0.26624143, y: -0.24887806, z: 0.8139333, w: 0.45242444} + inSlope: {x: 0.061030537, y: 0.07858537, z: 0.21776588, w: -0.3863186} + outSlope: {x: 0.061030537, y: 0.07858537, z: 0.21776588, w: -0.3863186} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.25718623, y: -0.24115908, z: 0.82617795, w: 0.43946278} + inSlope: {x: 0.10006964, y: 0.048801675, z: 0.107474335, w: -0.23109557} + outSlope: {x: 0.10006964, y: 0.048801675, z: 0.107474335, w: -0.23109557} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.2816255, y: -0.24690837, z: 0.8177169, w: 0.437107} + inSlope: {x: -0.1565343, y: 0.09910899, z: -0.007812336, w: 0.16347529} + outSlope: {x: -0.1565343, y: 0.09910899, z: -0.007812336, w: 0.16347529} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: 0.26247713, y: -0.23901735, z: 0.82057744, w: 0.44791642} + inSlope: {x: -0.21533984, y: 0.16925791, z: 0.04553855, w: 0.14174627} + outSlope: {x: -0.21533984, y: 0.16925791, z: 0.04553855, w: 0.14174627} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: 0.26726952, y: -0.2356245, z: 0.8207528, w: 0.44655675} + inSlope: {x: 0.04479779, y: 0.046167523, z: -0.07250197, w: 0.12926519} + outSlope: {x: 0.04479779, y: 0.046167523, z: -0.07250197, w: 0.12926519} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.26546365, y: -0.23593952, z: 0.815744, w: 0.4565341} + inSlope: {x: -0.054176204, y: -0.009450326, z: -0.15026465, w: 0.29932052} + outSlope: {x: -0.054176204, y: -0.009450326, z: -0.15026465, w: 0.29932052} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.22836772, y: 0.025269367, z: 0.031864483, w: 0.9727252} + inSlope: {x: 1.079337, y: -0.96173257, z: 0.19997779, w: 0.23439465} + outSlope: {x: 1.079337, y: -0.96173257, z: 0.19997779, w: 0.23439465} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: -0.19238982, y: -0.0067883898, z: 0.03853041, w: 0.98053837} + inSlope: {x: 0.58659506, y: -0.5544029, z: 0.4898287, w: 0.10514706} + outSlope: {x: 0.58659506, y: -0.5544029, z: 0.4898287, w: 0.10514706} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: -0.18926138, y: -0.01169083, z: 0.06451973, w: 0.979735} + inSlope: {x: 0.23121041, y: -0.60837835, z: 0.3730997, w: 0.0073590847} + outSlope: {x: 0.23121041, y: -0.60837835, z: 0.3730997, w: 0.0073590847} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: -0.17697579, y: -0.047346953, z: 0.063403726, w: 0.981029} + inSlope: {x: 0.65213174, y: -0.19348258, z: -0.15976708, w: 0.11711061} + outSlope: {x: 0.65213174, y: -0.19348258, z: -0.15976708, w: 0.11711061} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: -0.14578593, y: -0.024589675, z: 0.053868596, w: 0.9875424} + inSlope: {x: 0.8364918, y: 0.71592164, z: -0.25463033, w: 0.15767188} + outSlope: {x: 0.8364918, y: 0.71592164, z: -0.25463033, w: 0.15767188} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.121209666, y: 0.00038115188, z: 0.04642837, w: 0.99154043} + inSlope: {x: 0.39591315, y: 0.6430663, z: -0.3505861, w: 0.07001996} + outSlope: {x: 0.39591315, y: 0.6430663, z: -0.3505861, w: 0.07001996} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: -0.11939172, y: 0.018281415, z: 0.030496184, w: 0.9922104} + inSlope: {x: -0.32541123, y: 0.6530111, z: -0.2927255, w: -0.047173806} + outSlope: {x: -0.32541123, y: 0.6530111, z: -0.2927255, w: -0.047173806} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: -0.14290375, y: 0.04391523, z: 0.026913332, w: 0.9883955} + inSlope: {x: -0.761393, y: 0.563656, z: 0.22285627, w: -0.1413417} + outSlope: {x: -0.761393, y: 0.563656, z: 0.22285627, w: -0.1413417} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.17015125, y: 0.055858478, z: 0.045353267, w: 0.9827876} + inSlope: {x: -0.933487, y: 0.36445642, z: 0.6702714, w: -0.22006097} + outSlope: {x: -0.933487, y: 0.36445642, z: 0.6702714, w: -0.22006097} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: -0.20513621, y: 0.06821232, z: 0.07159809, w: 0.9737248} + inSlope: {x: -1.1334178, y: -0.012416795, z: 0.43851745, w: -0.2683014} + outSlope: {x: -1.1334178, y: -0.012416795, z: 0.43851745, w: -0.2683014} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.24571243, y: 0.055030692, z: 0.07458776, w: 0.96490085} + inSlope: {x: -1.037559, y: -0.15396468, z: 0.16594002, w: -0.26093784} + outSlope: {x: -1.037559, y: -0.15396468, z: 0.16594002, w: -0.26093784} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: -0.2980869, y: 0.061812695, z: 0.08106036, w: 0.9490799} + inSlope: {x: -0.4069744, y: -0.31841153, z: -0.5050571, w: -0.07216385} + outSlope: {x: -0.4069744, y: -0.31841153, z: -0.5050571, w: -0.07216385} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: -0.30143845, y: 0.03672058, z: 0.048990283, w: 0.951518} + inSlope: {x: 0.36808673, y: -0.3754087, z: -0.74266803, w: 0.17335476} + outSlope: {x: 0.36808673, y: -0.3754087, z: -0.74266803, w: 0.17335476} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: -0.2735478, y: 0.03678545, z: 0.031549156, w: 0.96063685} + inSlope: {x: 1.0912437, y: -0.17687562, z: -0.25325003, w: 0.316989} + outSlope: {x: 1.0912437, y: -0.17687562, z: -0.25325003, w: 0.316989} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.22868891, y: 0.024928885, z: 0.032106947, w: 0.9726506} + inSlope: {x: 1.345768, y: -0.3556973, z: 0.01673376, w: 0.36041236} + outSlope: {x: 1.345768, y: -0.3556973, z: 0.01673376, w: 0.36041236} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.17914821, y: 0.275605, z: 0.26376212, w: 0.9068502} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.17914821, y: 0.275605, z: 0.26376212, w: 0.9068502} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.070923224, y: 0.114558466, z: -0.20838986, w: 0.9687208} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.070923224, y: 0.114558466, z: -0.20838986, w: 0.9687208} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.0025601513, y: 0.017164158, z: -0.2640616, w: 0.9643497} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.0025601513, y: 0.017164158, z: -0.2640616, w: 0.9643497} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2/mixamorig:RightHandThumb3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.020066878, y: -0.040932346, z: -0.014504548, w: 0.9988551} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.020066878, y: -0.040932346, z: -0.014504548, w: 0.9988551} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2/mixamorig:RightHandThumb3/mixamorig:RightHandThumb4 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.039882734, y: -0.021049136, z: -0.02107025, w: 0.9987604} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.039882734, y: -0.021049136, z: -0.02107025, w: 0.9987604} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.10017288, y: 0.0052018245, z: -0.01172902, w: 0.9948873} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.10017288, y: 0.0052018245, z: -0.01172902, w: 0.9948873} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.28763485, y: 0.00000020435178, z: -0.03215668, w: 0.95720017} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.28763485, y: 0.00000020435178, z: -0.03215668, w: 0.95720017} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2/mixamorig:RightHandIndex3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.04448858, y: 0.000000043506798, z: -0.00000007316546, w: 0.9990099} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.04448858, y: 0.000000043506798, z: -0.00000007316546, w: 0.9990099} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2/mixamorig:RightHandIndex3/mixamorig:RightHandIndex4 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.0010485381, y: 0.00034251437, z: -0.07512556, w: 0.9971735} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: -0.0010485381, y: 0.00034251437, z: -0.07512556, w: 0.9971735} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.7770864, y: 0.008185416, z: -0.09665946, w: 0.6218737} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.7770864, y: 0.008185416, z: -0.09665946, w: 0.6218737} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.5790417, y: -0.002637829, z: -0.06625738, w: 0.812597} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.5790417, y: -0.002637829, z: -0.06625738, w: 0.812597} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2/mixamorig:RightHandMiddle3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.010558634, y: 0.0028613764, z: 0.002861026, w: 0.9999361} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.010558634, y: 0.0028613764, z: 0.002861026, w: 0.9999361} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2/mixamorig:RightHandMiddle3/mixamorig:RightHandMiddle4 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.042048026, y: -0.17182358, z: -0.055551726, w: 0.982661} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.042048026, y: -0.17182358, z: -0.055551726, w: 0.982661} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.72761905, y: 0.00009738302, z: -0.08134833, w: 0.681141} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.72761905, y: 0.00009738302, z: -0.08134833, w: 0.681141} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.6220814, y: 0.000000072297595, z: -0.069459006, w: 0.7798655} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.6220814, y: 0.000000072297595, z: -0.069459006, w: 0.7798655} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2/mixamorig:RightHandPinky3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.044519097, y: -0.000000109137595, z: -0.00000003411913, w: 0.99900854} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.044519097, y: -0.000000109137595, z: -0.00000003411913, w: 0.99900854} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2/mixamorig:RightHandPinky3/mixamorig:RightHandPinky4 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.09714662, y: 0.14175977, z: 0.98507357, w: 0.009836369} + inSlope: {x: -0.47812185, y: -7.496451, z: 0.077792995, w: -0.47554657} + outSlope: {x: -0.47812185, y: -7.496451, z: 0.077792995, w: -0.47554657} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: -0.11308402, y: -0.10812194, z: 0.98766667, w: -0.0060151834} + inSlope: {x: -0.39198896, y: -6.942177, z: -0.7103955, w: -0.8855341} + outSlope: {x: -0.39198896, y: -6.942177, z: -0.7103955, w: -0.8855341} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: -0.12327922, y: -0.321052, z: 0.93771386, w: -0.049199242} + inSlope: {x: -0.16569267, y: -5.231141, z: -1.7373112, w: -1.7923284} + outSlope: {x: -0.16569267, y: -5.231141, z: -1.7373112, w: -1.7923284} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: -0.1241302, y: -0.4568647, z: 0.8718459, w: -0.12550375} + inSlope: {x: -0.24666388, y: -0.53068936, z: -0.48296815, w: -2.006438} + outSlope: {x: -0.24666388, y: -0.53068936, z: -0.48296815, w: -2.006438} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: -0.13972348, y: -0.35643134, z: 0.90551597, w: -0.18296178} + inSlope: {x: -0.45762634, y: 2.3152657, z: 0.7138208, w: -1.0878077} + outSlope: {x: -0.45762634, y: 2.3152657, z: 0.7138208, w: -1.0878077} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.15463862, y: -0.3025137, z: 0.91943395, w: -0.19802426} + inSlope: {x: -0.090091884, y: 1.2845031, z: 0.48939753, w: 0.35758203} + outSlope: {x: -0.090091884, y: 1.2845031, z: 0.48939753, w: 0.35758203} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: -0.1457296, y: -0.2707978, z: 0.9381425, w: -0.15912296} + inSlope: {x: 0.19105437, y: 3.0900152, z: 0.9045204, w: 1.4210802} + outSlope: {x: 0.19105437, y: 3.0900152, z: 0.9045204, w: 1.4210802} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: -0.14190166, y: -0.096512675, z: 0.9797353, w: -0.103285566} + inSlope: {x: 0.21868119, y: 4.9613953, z: 0.75031316, w: 1.6020579} + outSlope: {x: 0.21868119, y: 4.9613953, z: 0.75031316, w: 1.6020579} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.13115086, y: 0.059961863, z: 0.98816335, w: -0.05231911} + inSlope: {x: 0.40302438, y: 3.9400983, z: -0.006608963, w: 1.3718693} + outSlope: {x: 0.40302438, y: 3.9400983, z: -0.006608963, w: 1.3718693} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: -0.115033366, y: 0.16616052, z: 0.9792947, w: -0.011827613} + inSlope: {x: 0.42121637, y: 1.8746907, z: -0.16757996, w: 0.39904672} + outSlope: {x: 0.42121637, y: 1.8746907, z: -0.16757996, w: 0.39904672} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.10306977, y: 0.18494123, z: 0.97699136, w: -0.025715996} + inSlope: {x: 0.30659306, y: 1.5901012, z: -0.32658312, w: 0.007928938} + outSlope: {x: 0.30659306, y: 1.5901012, z: -0.32658312, w: 0.007928938} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: -0.09459383, y: 0.27216727, z: 0.9575225, w: -0.011299018} + inSlope: {x: 0.09598333, y: 2.6111872, z: -0.73163295, w: 0.18762155} + outSlope: {x: 0.09598333, y: 2.6111872, z: -0.73163295, w: 0.18762155} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: -0.09733682, y: 0.39929184, z: 0.91160625, w: -0.008105895} + inSlope: {x: 0.058681488, y: -0.19144088, z: 0.07817121, w: 0.41807655} + outSlope: {x: 0.058681488, y: -0.19144088, z: 0.07817121, w: 0.41807655} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: -0.09275878, y: 0.34625772, z: 0.9334272, w: 0.014663874} + inSlope: {x: 0.0028563887, y: -3.8630133, z: 1.1020149, w: 0.26913643} + outSlope: {x: 0.0028563887, y: -3.8630133, z: 1.1020149, w: 0.26913643} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.09714639, y: 0.14175783, z: 0.98507386, w: 0.009836539} + inSlope: {x: -0.13162841, y: -6.1350026, z: 1.5494009, w: -0.1448202} + outSlope: {x: -0.13162841, y: -6.1350026, z: 1.5494009, w: -0.1448202} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.7440787, y: 0.087228715, z: -0.04583642, w: 0.66078514} + inSlope: {x: 2.4378881, y: -0.24155079, z: 0.45810014, w: 2.495155} + outSlope: {x: 2.4378881, y: -0.24155079, z: 0.45810014, w: 2.495155} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: -0.66281575, y: 0.07917702, z: -0.030566413, w: 0.743957} + inSlope: {x: 4.6536293, y: -0.3648233, z: 0.45558858, w: 3.568118} + outSlope: {x: 4.6536293, y: -0.3648233, z: 0.45558858, w: 3.568118} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: -0.4338367, y: 0.06290716, z: -0.015463844, w: 0.8986597} + inSlope: {x: 8.296948, y: -0.39739847, z: 0.3897063, w: 3.729023} + outSlope: {x: 8.296948, y: -0.39739847, z: 0.3897063, w: 3.729023} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: -0.10968578, y: 0.05268379, z: -0.004585989, w: 0.99255854} + inSlope: {x: 3.7342339, y: 0.17866087, z: -0.02001901, w: 1.2165577} + outSlope: {x: 3.7342339, y: 0.17866087, z: -0.02001901, w: 1.2165577} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: -0.18488772, y: 0.07481788, z: -0.016798442, w: 0.97976357} + inSlope: {x: -2.0061784, y: 0.78077435, z: -0.39267468, w: -0.43203953} + outSlope: {x: -2.0061784, y: 0.78077435, z: -0.39267468, w: -0.43203953} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.243431, y: 0.10473541, z: -0.0307643, w: 0.9637559} + inSlope: {x: -0.48380122, y: 0.601876, z: -0.047462046, w: -0.15929912} + outSlope: {x: -0.48380122, y: 0.601876, z: -0.047462046, w: -0.15929912} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: -0.21714112, y: 0.11494295, z: -0.019962573, w: 0.9691436} + inSlope: {x: -1.5597742, y: 0.21792474, z: 0.28346163, w: -0.50603545} + outSlope: {x: -1.5597742, y: 0.21792474, z: 0.28346163, w: -0.50603545} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: -0.34741592, y: 0.11926373, z: -0.011866854, w: 0.9300202} + inSlope: {x: -3.042879, y: -0.015449189, z: 0.30640972, w: -1.0319568} + outSlope: {x: -3.042879, y: -0.015449189, z: 0.30640972, w: -1.0319568} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.41999972, y: 0.11391301, z: 0.00046473986, w: 0.9003465} + inSlope: {x: -0.8413344, y: -0.21819705, z: 0.09328014, w: -0.31608492} + outSlope: {x: -0.8413344, y: -0.21819705, z: 0.09328014, w: -0.31608492} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: -0.40350488, y: 0.10471726, z: -0.005648178, w: 0.9089479} + inSlope: {x: 3.040918, y: -0.6676364, z: -0.67219186, w: 1.0842535} + outSlope: {x: 3.040918, y: -0.6676364, z: -0.67219186, w: 1.0842535} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.21727186, y: 0.06940392, z: -0.044348046, w: 0.9726301} + inSlope: {x: 2.1704984, y: -0.51832086, z: -0.59942883, w: 0.80024785} + outSlope: {x: 2.1704984, y: -0.51832086, z: -0.59942883, w: 0.80024785} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: -0.258805, y: 0.07016254, z: -0.045610096, w: 0.96229774} + inSlope: {x: -2.983283, y: 0.15203007, z: 0.19107994, w: -1.0106208} + outSlope: {x: -2.983283, y: 0.15203007, z: 0.19107994, w: -1.0106208} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: -0.41615754, y: 0.07953926, z: -0.03160937, w: 0.9052553} + inSlope: {x: -4.5484686, y: 0.13125177, z: 0.24007927, w: -2.0923593} + outSlope: {x: -4.5484686, y: 0.13125177, z: 0.24007927, w: -2.0923593} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: -0.5620364, y: 0.07891267, z: -0.0296048, w: 0.8228071} + inSlope: {x: -4.558445, y: 0.098795265, z: -0.15498637, w: -3.2697177} + outSlope: {x: -4.558445, y: 0.098795265, z: -0.15498637, w: -3.2697177} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: -0.72005385, y: 0.08612561, z: -0.041941795, w: 0.68727416} + inSlope: {x: -2.7306252, y: 0.124745205, z: -0.24347837, w: -2.4303179} + outSlope: {x: -2.7306252, y: 0.124745205, z: -0.24347837, w: -2.4303179} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.74407804, y: 0.08722901, z: -0.045836687, w: 0.6607859} + inSlope: {x: -0.7207264, y: 0.033102065, z: -0.11684686, w: -0.7946481} + outSlope: {x: -0.7207264, y: 0.033102065, z: -0.11684686, w: -0.7946481} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.6306674, y: -0.0428393, z: 0.0032404382, w: 0.77486324} + inSlope: {x: 0.4051709, y: -0.19671498, z: -0.23540403, w: -0.34782168} + outSlope: {x: 0.4051709, y: -0.19671498, z: -0.23540403, w: -0.34782168} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.6441731, y: -0.049396466, z: -0.0046063634, w: 0.7632692} + inSlope: {x: -1.3831865, y: 0.088212214, z: -0.12963802, w: 1.0044434} + outSlope: {x: -1.3831865, y: 0.088212214, z: -0.12963802, w: 1.0044434} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: 0.53845495, y: -0.036958486, z: -0.0054020965, w: 0.84182614} + inSlope: {x: -3.6077251, y: 0.7368205, z: -0.31645286, w: 2.2691932} + outSlope: {x: -3.6077251, y: 0.7368205, z: -0.31645286, w: 2.2691932} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: 0.40365803, y: -0.00027509013, z: -0.025703223, w: 0.91454875} + inSlope: {x: -0.322325, y: 1.3107857, z: -0.6337533, w: 0.1704461} + outSlope: {x: -0.322325, y: 1.3107857, z: -0.6337533, w: 0.1704461} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.5169666, y: 0.05042723, z: -0.04765232, w: 0.85318923} + inSlope: {x: 3.9771557, y: 1.2709426, z: -0.31411576, w: -2.6609213} + outSlope: {x: 3.9771557, y: 1.2709426, z: -0.31411576, w: -2.6609213} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.6688017, y: 0.08445441, z: -0.046644274, w: 0.737154} + inSlope: {x: 3.7286777, y: 0.5782453, z: -0.3148798, w: -3.2954626} + outSlope: {x: 3.7286777, y: 0.5782453, z: -0.3148798, w: -3.2954626} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: 0.7655451, y: 0.08897691, z: -0.068644315, w: 0.6334917} + inSlope: {x: 2.1567433, y: 0.11205675, z: -0.39442515, w: -2.4936903} + outSlope: {x: 2.1567433, y: 0.11205675, z: -0.39442515, w: -2.4936903} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: 0.81258464, y: 0.09192486, z: -0.07293929, w: 0.57090795} + inSlope: {x: 0.11737436, y: 0.020883458, z: 0.004909225, w: -0.14611512} + outSlope: {x: 0.11737436, y: 0.020883458, z: 0.004909225, w: -0.14611512} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.7733701, y: 0.09036914, z: -0.06831703, w: 0.6237507} + inSlope: {x: -2.0633547, y: -0.48872456, z: 0.07613429, w: 2.4203405} + outSlope: {x: -2.0633547, y: -0.48872456, z: 0.07613429, w: 2.4203405} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: 0.67502767, y: 0.059343226, z: -0.06786367, w: 0.732264} + inSlope: {x: -4.2690806, y: -0.7903348, z: -0.088879585, w: 3.6702476} + outSlope: {x: -4.2690806, y: -0.7903348, z: -0.088879585, w: 3.6702476} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.48876473, y: 0.037680157, z: -0.07424234, w: 0.86843383} + inSlope: {x: -4.350212, y: -0.46190053, z: 0.35488224, w: 2.8371828} + outSlope: {x: -4.350212, y: -0.46190053, z: 0.35488224, w: 2.8371828} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: 0.38501355, y: 0.02854986, z: -0.044204857, w: 0.9214095} + inSlope: {x: -0.66357446, y: -0.84320724, z: 0.22776312, w: 0.37786108} + outSlope: {x: -0.66357446, y: -0.84320724, z: 0.22776312, w: 0.37786108} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.4445265, y: -0.018533697, z: -0.059058145, w: 0.89362454} + inSlope: {x: 0.75276434, y: -1.339957, z: -0.5089202, w: -0.39799565} + outSlope: {x: 0.75276434, y: -1.339957, z: -0.5089202, w: -0.39799565} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: 0.4351979, y: -0.06078065, z: -0.07813288, w: 0.8948764} + inSlope: {x: 1.6106782, y: -0.33935437, z: 0.39494386, w: -0.9206576} + outSlope: {x: 1.6106782, y: -0.33935437, z: 0.39494386, w: -0.9206576} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: 0.55190504, y: -0.04115732, z: -0.032728553, w: 0.8322474} + inSlope: {x: 2.932065, y: 0.26912943, z: 1.2206159, w: -1.8002164} + outSlope: {x: 2.932065, y: 0.26912943, z: 1.2206159, w: -1.8002164} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.6306688, y: -0.042838685, z: 0.0032414724, w: 0.77486205} + inSlope: {x: 2.3629158, y: -0.050441, z: 1.0791018, w: -1.7215614} + outSlope: {x: 2.3629158, y: -0.050441, z: 1.0791018, w: -1.7215614} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.57456744, y: 0.15279067, z: -0.13007072, w: 0.79347897} + inSlope: {x: 1.2592559, y: 0.60062927, z: -0.26440233, w: -1.1405146} + outSlope: {x: 1.2592559, y: 0.60062927, z: -0.26440233, w: -1.1405146} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.61654264, y: 0.17281164, z: -0.13888413, w: 0.7554618} + inSlope: {x: 1.523187, y: -0.035609215, z: 0.05425392, w: -1.250546} + outSlope: {x: 1.523187, y: -0.035609215, z: 0.05425392, w: -1.250546} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: 0.70450336, y: 0.11802083, z: -0.112207025, w: 0.69076455} + inSlope: {x: -0.3354202, y: -0.48934728, z: 0.1467919, w: 0.42321604} + outSlope: {x: -0.3354202, y: -0.48934728, z: 0.1467919, w: 0.42321604} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.6537519, y: 0.11779356, z: -0.11666766, w: 0.7383236} + inSlope: {x: -3.0729127, y: -0.4923024, z: -0.09119444, w: 2.4466925} + outSlope: {x: -3.0729127, y: -0.4923024, z: -0.09119444, w: 2.4466925} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.49964252, y: 0.085200675, z: -0.118286654, w: 0.85387737} + inSlope: {x: -4.330944, y: -0.691329, z: 0.04644957, w: 2.7440362} + outSlope: {x: -4.330944, y: -0.691329, z: 0.04644957, w: 2.7440362} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: 0.36502224, y: 0.071704954, z: -0.11357102, w: 0.9212594} + inSlope: {x: -4.3350163, y: -0.6762045, z: -0.012545735, w: 1.7335658} + outSlope: {x: -4.3350163, y: -0.6762045, z: -0.012545735, w: 1.7335658} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: 0.2106414, y: 0.04012037, z: -0.119123034, w: 0.96944845} + inSlope: {x: -2.7393656, y: -0.5704113, z: -0.09816774, w: 0.8102945} + outSlope: {x: -2.7393656, y: -0.5704113, z: -0.09816774, w: 0.8102945} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.18239787, y: 0.033677533, z: -0.12011553, w: 0.97527903} + inSlope: {x: -0.4213395, y: -0.09826005, z: -0.016401934, w: 0.08689464} + outSlope: {x: -0.4213395, y: -0.09826005, z: -0.016401934, w: 0.08689464} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.18700135, y: 0.027806409, z: -0.12261416, w: 0.9742808} + inSlope: {x: -0.09332032, y: -0.63910735, z: -0.20042083, w: -0.0008690357} + outSlope: {x: -0.09332032, y: -0.63910735, z: -0.20042083, w: -0.0008690357} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: 0.17633075, y: -0.009037455, z: -0.13357788, w: 0.9751835} + inSlope: {x: 0.12399469, y: -0.39052546, z: -0.18891111, w: -0.043457102} + outSlope: {x: 0.12399469, y: -0.39052546, z: -0.18891111, w: -0.043457102} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.19526768, y: 0.001771388, z: -0.13520823, w: 0.97138363} + inSlope: {x: 2.0597007, y: 1.3207778, z: 0.13856953, w: -0.5571145} + outSlope: {x: 2.0597007, y: 1.3207778, z: 0.13856953, w: -0.5571145} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: 0.31364414, y: 0.079014406, z: -0.124339916, w: 0.9380425} + inSlope: {x: 3.8733587, y: 1.7244375, z: 0.21918567, w: -1.4410393} + outSlope: {x: 3.8733587, y: 1.7244375, z: 0.21918567, w: -1.4410393} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: 0.45349157, y: 0.11673389, z: -0.12059586, w: 0.87531435} + inSlope: {x: 3.913837, y: 1.1066484, z: -0.08596392, w: -2.168444} + outSlope: {x: 3.913837, y: 1.1066484, z: -0.08596392, w: -2.168444} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.5745665, y: 0.15279093, z: -0.13007084, w: 0.7934797} + inSlope: {x: 3.632251, y: 1.0817125, z: -0.2842496, w: -2.4550426} + outSlope: {x: 3.632251, y: 1.0817125, z: -0.2842496, w: -2.4550426} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot/mixamorig:LeftToeBase + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.04573715, y: 0.039433047, z: 0.0727525, w: 0.99552006} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.04573715, y: 0.039433047, z: 0.0727525, w: 0.99552006} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot/mixamorig:LeftToeBase/mixamorig:LeftToe_End + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.07954235, y: 0.23147605, z: 0.96618825, w: 0.08106897} + inSlope: {x: 0.7571207, y: 1.0607864, z: -0.59980446, w: 2.0714755} + outSlope: {x: 0.7571207, y: 1.0607864, z: -0.59980446, w: 2.0714755} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.104779705, y: 0.2668356, z: 0.94619477, w: 0.15011816} + inSlope: {x: 0.13538381, y: -0.1445033, z: -0.18513766, w: 1.5137963} + outSlope: {x: 0.13538381, y: -0.1445033, z: -0.18513766, w: 1.5137963} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: 0.088567935, y: 0.2218425, z: 0.95384574, w: 0.18198873} + inSlope: {x: -1.0129178, y: 0.8949448, z: -0.35972527, w: 0.8052111} + outSlope: {x: -1.0129178, y: 0.8949448, z: -0.35972527, w: 0.8052111} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: 0.03725185, y: 0.3264986, z: 0.9222131, w: 0.2037989} + inSlope: {x: -2.118865, y: 3.6534333, z: -1.5341386, w: 0.80237675} + outSlope: {x: -2.118865, y: 3.6534333, z: -1.5341386, w: 0.80237675} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: -0.05268973, y: 0.46540472, z: 0.85156983, w: 0.23548052} + inSlope: {x: -1.3594861, y: 2.5974689, z: -1.3624657, w: 0.50188136} + outSlope: {x: -1.3594861, y: 2.5974689, z: -1.3624657, w: 0.50188136} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.053380556, y: 0.49966317, z: 0.83138204, w: 0.23725766} + inSlope: {x: 0.18423851, y: 0.33226365, z: -0.08127999, w: -0.36138526} + outSlope: {x: 0.18423851, y: 0.33226365, z: -0.08127999, w: -0.36138526} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: -0.04040716, y: 0.48755562, z: 0.8461512, w: 0.21138816} + inSlope: {x: -0.26422912, y: -0.6365239, z: 0.63707465, w: -1.3198028} + outSlope: {x: -0.26422912, y: -0.6365239, z: 0.63707465, w: -1.3198028} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: -0.07099582, y: 0.45722824, z: 0.8738537, w: 0.1492708} + inSlope: {x: -1.2522311, y: -1.5887146, z: 1.0176615, w: -2.2690706} + outSlope: {x: -1.2522311, y: -1.5887146, z: 1.0176615, w: -2.2690706} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.12388922, y: 0.38164133, z: 0.91399527, w: 0.060116798} + inSlope: {x: -0.7533235, y: -3.6594822, z: 1.4331688, w: -2.383268} + outSlope: {x: -0.7533235, y: -3.6594822, z: 1.4331688, w: -2.383268} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: -0.121217385, y: 0.21326278, z: 0.96939826, w: -0.009613728} + inSlope: {x: 0.93379223, y: -4.7463093, z: 1.2104077, w: -1.6578496} + outSlope: {x: 0.93379223, y: -4.7463093, z: 1.2104077, w: -1.6578496} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.06163641, y: 0.06522073, z: 0.9946891, w: -0.05040651} + inSlope: {x: 1.9898988, y: -3.2615743, z: 0.4258785, w: -0.83556163} + outSlope: {x: 1.9898988, y: -3.2615743, z: 0.4258785, w: -0.83556163} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: 0.011442527, y: -0.004175486, z: 0.99779016, w: -0.06531784} + inSlope: {x: 2.8130805, y: -2.0741036, z: -0.13180986, w: -0.48170587} + outSlope: {x: 2.8130805, y: -2.0741036, z: -0.13180986, w: -0.48170587} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.12590238, y: -0.0730529, z: 0.9859018, w: -0.08252025} + inSlope: {x: 1.811081, y: -0.48629844, z: -0.124221, w: 0.29875255} + outSlope: {x: 1.811081, y: -0.48629844, z: -0.124221, w: 0.29875255} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: 0.13218136, y: -0.03659544, z: 0.98950875, w: -0.045401018} + inSlope: {x: -0.58373994, y: 2.8916812, z: 0.045825545, w: 1.3574324} + outSlope: {x: -0.58373994, y: 2.8916812, z: 0.045825545, w: 1.3574324} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: 0.08698639, y: 0.11972583, z: 0.9889568, w: 0.007975236} + inSlope: {x: -0.7895865, y: 4.021069, z: -0.34980687, w: 1.8970516} + outSlope: {x: -0.7895865, y: 4.021069, z: -0.34980687, w: 1.8970516} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.07954227, y: 0.23147571, z: 0.9661883, w: 0.08106901} + inSlope: {x: -0.22332384, y: 3.3524995, z: -0.6830556, w: 2.1928153} + outSlope: {x: -0.22332384, y: 3.3524995, z: -0.6830556, w: 2.1928153} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.55178845, y: 0.11707676, z: 0.06529268, w: 0.82313997} + inSlope: {x: 3.572021, y: 0.52065, z: 0.64755225, w: 1.9219546} + outSlope: {x: 3.572021, y: 0.52065, z: 0.64755225, w: 1.9219546} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: -0.43272108, y: 0.13443176, z: 0.086877756, w: 0.8872051} + inSlope: {x: 6.713929, y: 0.609463, z: 0.17680863, w: 2.3370569} + outSlope: {x: 6.713929, y: 0.609463, z: 0.17680863, w: 2.3370569} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: -0.104193114, y: 0.15770763, z: 0.07707992, w: 0.97894377} + inSlope: {x: 5.004821, y: -0.32514575, z: -0.4282711, w: 1.4961718} + outSlope: {x: 5.004821, y: -0.32514575, z: -0.4282711, w: 1.4961718} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: -0.099066325, y: 0.11275537, z: 0.058326345, w: 0.9869499} + inSlope: {x: -3.4290092, y: -1.3746722, z: 0.45900014, w: -0.6666658} + outSlope: {x: -3.4290092, y: -1.3746722, z: 0.45900014, w: -0.6666658} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: -0.3327937, y: 0.06606281, z: 0.107679926, w: 0.9344994} + inSlope: {x: -5.93015, y: -0.8957976, z: 0.87417024, w: -1.9081755} + outSlope: {x: -5.93015, y: -0.8957976, z: 0.87417024, w: -1.9081755} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.49440962, y: 0.053035535, z: 0.11660436, w: 0.85973823} + inSlope: {x: -4.2523127, y: -0.054473206, z: -0.11640787, w: -2.3375475} + outSlope: {x: -4.2523127, y: -0.054473206, z: -0.11640787, w: -2.3375475} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: -0.6162813, y: 0.062431265, z: 0.09991939, w: 0.77866286} + inSlope: {x: -3.2355847, y: 0.09178022, z: -0.38700265, w: -2.4606476} + outSlope: {x: -3.2355847, y: 0.09178022, z: -0.38700265, w: -2.4606476} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: -0.7101153, y: 0.05915422, z: 0.090804175, w: 0.69569504} + inSlope: {x: -2.2107563, y: 0.021360613, z: -0.3954636, w: -2.1066053} + outSlope: {x: -2.2107563, y: 0.021360613, z: -0.3954636, w: -2.1066053} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.763665, y: 0.063855305, z: 0.07355516, w: 0.6382225} + inSlope: {x: -0.3488696, y: 0.42292213, z: -0.55024374, w: -0.3551951} + outSlope: {x: -0.3488696, y: 0.42292213, z: -0.55024374, w: -0.3551951} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: -0.7333733, y: 0.08734903, z: 0.05412126, w: 0.67201537} + inSlope: {x: 1.345481, y: 0.29837587, z: 0.029398263, w: 1.378238} + outSlope: {x: 1.345481, y: 0.29837587, z: 0.029398263, w: 1.378238} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.6739663, y: 0.08374703, z: 0.07551504, w: 0.73010504} + inSlope: {x: 1.5267993, y: -0.23607296, z: 0.64051306, w: 1.4081992} + outSlope: {x: 1.5267993, y: -0.23607296, z: 0.64051306, w: 1.4081992} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: -0.6315867, y: 0.07161083, z: 0.09682213, w: 0.7658953} + inSlope: {x: 1.3932238, y: -0.11941927, z: 0.67312145, w: 1.0681276} + outSlope: {x: 1.3932238, y: -0.11941927, z: 0.67312145, w: 1.0681276} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: -0.58108467, y: 0.07578575, z: 0.12038982, w: 0.8013136} + inSlope: {x: 1.0431552, y: 0.4597326, z: -0.25734544, w: 0.7648717} + outSlope: {x: 1.0431552, y: 0.4597326, z: -0.25734544, w: 0.7648717} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: -0.56204295, y: 0.10225967, z: 0.07966579, w: 0.8168868} + inSlope: {x: -0.040724874, y: 0.5222378, z: -0.8855528, w: 0.01008153} + outSlope: {x: -0.040724874, y: 0.5222378, z: -0.8855528, w: 0.01008153} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: -0.58379966, y: 0.1106016, z: 0.06135297, w: 0.8019857} + inSlope: {x: 0.15382779, y: 0.22225878, z: -0.21559691, w: 0.09380518} + outSlope: {x: 0.15382779, y: 0.22225878, z: -0.21559691, w: 0.09380518} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.5517878, y: 0.11707692, z: 0.06529266, w: 0.82314044} + inSlope: {x: 0.9603569, y: 0.19425984, z: 0.11819076, w: 0.63464344} + outSlope: {x: 0.9603569, y: 0.19425984, z: 0.11819076, w: 0.63464344} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.70610833, y: 0.041281532, z: 0.08330303, w: 0.701974} + inSlope: {x: -5.258179, y: 0.90657467, z: -0.08380539, w: 4.158976} + outSlope: {x: -5.258179, y: 0.90657467, z: -0.08380539, w: 4.158976} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.5308357, y: 0.07150069, z: 0.08050951, w: 0.8406065} + inSlope: {x: -7.34513, y: 0.9461279, z: -0.7846853, w: 4.023529} + outSlope: {x: -7.34513, y: 0.9461279, z: -0.7846853, w: 4.023529} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: 0.21643299, y: 0.10435673, z: 0.030990671, w: 0.97020924} + inSlope: {x: -6.0010586, y: 0.18467179, z: -0.6026549, w: 2.1965127} + outSlope: {x: -6.0010586, y: 0.18467179, z: -0.6026549, w: 2.1965127} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: 0.13076507, y: 0.08381214, z: 0.040332522, w: 0.9870407} + inSlope: {x: 0.93593526, y: -1.7962761, z: 0.30458102, w: -0.17044282} + outSlope: {x: 0.93593526, y: -1.7962761, z: 0.30458102, w: -0.17044282} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.27882865, y: -0.015395011, z: 0.051296074, w: 0.9588464} + inSlope: {x: 3.1086829, y: -2.0435975, z: 0.12272923, w: -0.72919524} + outSlope: {x: 3.1086829, y: -2.0435975, z: 0.12272923, w: -0.72919524} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.33801058, y: -0.05242769, z: 0.04851447, w: 0.9384277} + inSlope: {x: 1.1937685, y: -1.2621353, z: -0.103339516, w: -0.4750156} + outSlope: {x: 1.1937685, y: -1.2621353, z: -0.103339516, w: -0.4750156} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: 0.35841322, y: -0.09953738, z: 0.04440677, w: 0.9271787} + inSlope: {x: 1.2742473, y: -1.0522025, z: -0.58567303, w: -0.6098708} + outSlope: {x: 1.2742473, y: -1.0522025, z: -0.58567303, w: -0.6098708} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: 0.4229604, y: -0.12257454, z: 0.009469602, w: 0.89776963} + inSlope: {x: 2.042477, y: -0.774855, z: -1.5294847, w: -1.0985274} + outSlope: {x: 2.042477, y: -0.774855, z: -1.5294847, w: -1.0985274} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.49457833, y: -0.15119438, z: -0.057558868, w: 0.8539435} + inSlope: {x: 1.4829005, y: -0.33712372, z: -1.5594754, w: -0.93696725} + outSlope: {x: 1.4829005, y: -0.33712372, z: -1.5594754, w: -0.93696725} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: 0.5218204, y: -0.14504945, z: -0.09449542, w: 0.83530515} + inSlope: {x: 1.3341876, y: 0.97301763, z: -0.1588844, w: -0.7399518} + outSlope: {x: 1.3341876, y: 0.97301763, z: -0.1588844, w: -0.7399518} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.58352417, y: -0.08632654, z: -0.06815116, w: 0.8046134} + inSlope: {x: 1.9922484, y: 2.0465446, z: 1.0002865, w: -1.1988385} + outSlope: {x: 1.9922484, y: 2.0465446, z: 1.0002865, w: -1.1988385} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: 0.654637, y: -0.008613158, z: -0.027809665, w: 0.7553826} + inSlope: {x: 2.1896768, y: 1.4714427, z: 0.23901597, w: -1.8409958} + outSlope: {x: 2.1896768, y: 1.4714427, z: 0.23901597, w: -1.8409958} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.7295027, y: 0.011769651, z: -0.052216787, w: 0.6818803} + inSlope: {x: 2.5017679, y: 0.38225898, z: 0.875741, w: -2.791965} + outSlope: {x: 2.5017679, y: 0.38225898, z: 0.875741, w: -2.791965} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: 0.82142156, y: 0.01687079, z: 0.030573044, w: 0.56925154} + inSlope: {x: 1.1252681, y: 0.2629088, z: 1.8199167, w: -1.3907701} + outSlope: {x: 1.1252681, y: 0.2629088, z: 1.8199167, w: -1.3907701} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: 0.80452055, y: 0.029296903, z: 0.06911099, w: 0.5891623} + inSlope: {x: -1.7296847, y: 0.36616433, z: 0.79094976, w: 1.990823} + outSlope: {x: -1.7296847, y: 0.36616433, z: 0.79094976, w: 1.990823} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.70610934, y: 0.041281734, z: 0.08330301, w: 0.70197296} + inSlope: {x: -2.952339, y: 0.35954526, z: 0.42576107, w: 3.3843234} + outSlope: {x: -2.952339, y: 0.35954526, z: 0.42576107, w: 3.3843234} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.20520888, y: -0.04323308, z: 0.09761851, w: 0.9728776} + inSlope: {x: 0.8661925, y: 0.32570052, z: 0.08214309, w: -0.19189058} + outSlope: {x: 0.8661925, y: 0.32570052, z: 0.08214309, w: -0.19189058} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.23408197, y: -0.032376397, z: 0.100356616, w: 0.96648127} + inSlope: {x: 0.57631594, y: 0.32630146, z: 0.009225119, w: -0.123541646} + outSlope: {x: 0.57631594, y: 0.32630146, z: 0.009225119, w: -0.123541646} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: 0.24362995, y: -0.02147965, z: 0.09823352, w: 0.9646415} + inSlope: {x: -1.354931, y: 0.1586823, z: -0.4614836, w: 0.3066256} + outSlope: {x: -1.354931, y: 0.1586823, z: -0.4614836, w: 0.3066256} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: 0.14375322, y: -0.021797577, z: 0.06959104, w: 0.986923} + inSlope: {x: -1.4701436, y: -0.20228419, z: -0.13819066, w: 0.30097955} + outSlope: {x: -1.4701436, y: -0.20228419, z: -0.13819066, w: 0.30097955} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.14562036, y: -0.03496526, z: 0.0890208, w: 0.9847068} + inSlope: {x: 0.106978126, y: -0.34021372, z: 0.43695837, w: -0.06479413} + outSlope: {x: 0.106978126, y: -0.34021372, z: 0.43695837, w: -0.06479413} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.15088509, y: -0.04447849, z: 0.09872159, w: 0.9826034} + inSlope: {x: 2.6346827, y: 0.51315844, z: 0.42682764, w: -0.67549354} + outSlope: {x: 2.6346827, y: 0.51315844, z: 0.42682764, w: -0.67549354} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: 0.32126594, y: -0.00075468083, z: 0.11747599, w: 0.9396739} + inSlope: {x: 5.268875, y: -0.44710678, z: 0.18359742, w: -1.9228594} + outSlope: {x: 5.268875, y: -0.44710678, z: 0.18359742, w: -1.9228594} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: 0.5021435, y: -0.07428559, z: 0.11096143, w: 0.85441273} + inSlope: {x: 3.7096133, y: -1.7138306, z: -0.059312027, w: -1.9960518} + outSlope: {x: 3.7096133, y: -1.7138306, z: -0.059312027, w: -1.9960518} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.5685735, y: -0.115010045, z: 0.11352185, w: 0.8066038} + inSlope: {x: 2.1484272, y: -0.9045738, z: 0.05772282, w: -1.6696752} + outSlope: {x: 2.1484272, y: -0.9045738, z: 0.05772282, w: -1.6696752} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: 0.645372, y: -0.1345905, z: 0.11480962, w: 0.74310106} + inSlope: {x: 0.8096105, y: -0.648877, z: 0.12899907, w: -0.7497758} + outSlope: {x: 0.8096105, y: -0.648877, z: 0.12899907, w: -0.7497758} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.6225475, y: -0.15826851, z: 0.12212179, w: 0.75661874} + inSlope: {x: -1.4246832, y: -0.3040845, z: 0.17884882, w: 1.0120342} + outSlope: {x: -1.4246832, y: -0.3040845, z: 0.17884882, w: 1.0120342} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: 0.5503931, y: -0.1548628, z: 0.12673287, w: 0.81057} + inSlope: {x: -2.0088296, y: 1.1375258, z: -0.52936125, w: 1.6143137} + outSlope: {x: -2.0088296, y: 1.1375258, z: -0.52936125, w: 1.6143137} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.4886255, y: -0.0824334, z: 0.086831, w: 0.8642397} + inSlope: {x: -2.4936943, y: 1.0043995, z: 0.0025886893, w: 1.4955652} + outSlope: {x: -2.4936943, y: 1.0043995, z: 0.0025886893, w: 1.4955652} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: 0.38414678, y: -0.08790278, z: 0.12690541, w: 0.9102744} + inSlope: {x: -3.9298515, y: 0.46492547, z: 0.23809168, w: 1.5441451} + outSlope: {x: -3.9298515, y: 0.46492547, z: 0.23809168, w: 1.5441451} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: 0.22663541, y: -0.051438373, z: 0.10270378, w: 0.9671827} + inSlope: {x: -2.6840713, y: 0.67004573, z: -0.43930358, w: 0.93904865} + outSlope: {x: -2.6840713, y: 0.67004573, z: -0.43930358, w: 0.93904865} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.20520872, y: -0.04323307, z: 0.09761851, w: 0.9728776} + inSlope: {x: -0.6428014, y: 0.2461593, z: -0.15255816, w: 0.17084794} + outSlope: {x: -0.6428014, y: 0.2461593, z: -0.15255816, w: 0.17084794} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot/mixamorig:RightToeBase + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.04573715, y: -0.039433047, z: -0.0727525, w: 0.99552006} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.04573715, y: -0.039433047, z: -0.0727525, w: 0.99552006} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot/mixamorig:RightToeBase/mixamorig:RightToe_End + m_CompressedRotationCurves: [] + m_EulerCurves: [] + m_PositionCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.00022093284, y: 0.015621071, z: 0.00012825319} + inSlope: {x: 0.00594, y: 0.00027455762, z: 0.010823255} + outSlope: {x: 0.00594, y: 0.00027455762, z: 0.010823255} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: -0.000022932814, y: 0.015630221, z: 0.0004890285} + inSlope: {x: 0.0055612526, y: -0.0008386867, z: 0.012030991} + outSlope: {x: 0.0055612517, y: -0.0008385451, z: 0.012031002} + tangentMode: 0 + weightedMode: 0 + 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.00014981734, y: 0.015565162, z: 0.0009303197} + inSlope: {x: 0.0041756853, y: -0.0034066536, z: 0.0012857388} + outSlope: {x: 0.004175686, y: -0.003406684, z: 0.0012857504} + tangentMode: 0 + weightedMode: 0 + 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.00025544633, y: 0.015403115, z: 0.00057474454} + inSlope: {x: 0.0036775174, y: -0.0018259689, z: -0.014519603} + outSlope: {x: 0.0036775067, y: -0.0018261687, z: -0.014519566} + tangentMode: 0 + weightedMode: 0 + 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.00039498525, y: 0.015443425, z: -0.000037654125} + inSlope: {x: 0.0030376615, y: 0.0011361815, z: -0.012577016} + outSlope: {x: 0.003037668, y: 0.0011363488, z: -0.012577057} + tangentMode: 0 + weightedMode: 0 + 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.0004579573, y: 0.015478862, z: -0.0002637246} + inSlope: {x: 0.0014725833, y: 0.0003098878, z: -0.0002503023} + outSlope: {x: 0.001472588, y: 0.00030951342, z: -0.0002502721} + tangentMode: 0 + weightedMode: 0 + 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.0004931574, y: 0.015464059, z: -0.00005433991} + inSlope: {x: -0.0003815582, y: 0.0015099511, z: 0.0026960461} + outSlope: {x: -0.0003815584, y: 0.0015100578, z: 0.0026960229} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.23333333 + value: {x: 0.0004325199, y: 0.015579524, z: -0.00008398945} + inSlope: {x: -0.00263182, y: 0.008089048, z: 0.0030324538} + outSlope: {x: -0.0026318058, y: 0.008089043, z: 0.003032436} + tangentMode: 0 + weightedMode: 0 + 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.000317703, y: 0.016003326, z: 0.00014782394} + inSlope: {x: -0.0049286378, y: 0.012444608, z: 0.008441682} + outSlope: {x: -0.004928642, y: 0.012444709, z: 0.008441703} + tangentMode: 0 + weightedMode: 0 + 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.0001039427, y: 0.01640917, z: 0.00047879262} + inSlope: {x: -0.0073614065, y: 0.008867068, z: 0.0110197235} + outSlope: {x: -0.00736143, y: 0.008867049, z: 0.011019763} + tangentMode: 0 + weightedMode: 0 + 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.00017305996, y: 0.016594479, z: 0.0008824759} + inSlope: {x: -0.007727038, y: 0.0047202683, z: 0.004491383} + outSlope: {x: -0.007727061, y: 0.0047204625, z: 0.0044914237} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: -0.00041119521, y: 0.01672386, z: 0.0007782204} + inSlope: {x: -0.0049863937, y: -0.0039167614, z: -0.007891175} + outSlope: {x: -0.0049864044, y: -0.0039167847, z: -0.007891156} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.4 + value: {x: -0.00050548767, y: 0.016333353, z: 0.00035639657} + inSlope: {x: -0.0011441028, y: -0.012834491, z: -0.00893676} + outSlope: {x: -0.0011441222, y: -0.0128344195, z: -0.0089368075} + tangentMode: 0 + weightedMode: 0 + 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.00048746957, y: 0.01586822, z: 0.00018243254} + inSlope: {x: 0.0014017997, y: -0.0096881455, z: -0.006048537} + outSlope: {x: 0.0014017922, y: -0.009688137, z: -0.0060485243} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.46666667 + value: {x: -0.00041203413, y: 0.015687477, z: -0.000046839887} + inSlope: {x: 0.003998101, y: -0.0037074068, z: -0.00081276824} + outSlope: {x: 0.0039980854, y: -0.0037071279, z: -0.00081281154} + tangentMode: 0 + weightedMode: 0 + 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.00022092869, y: 0.015621066, z: 0.00012824665} + inSlope: {x: 0.0057331393, y: -0.0019920466, z: 0.005252576} + outSlope: {x: 0.0057331393, y: -0.0019920466, z: 0.005252576} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips + m_ScaleCurves: [] + m_FloatCurves: [] + m_PPtrCurves: [] + m_SampleRate: 30 + 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: 0.5 + 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/Jammo-Character/Animations/Mixamo-Gun/Rifle Run Backwards.anim.meta b/Assets/Jammo-Character/Animations/Mixamo-Gun/Rifle Run Backwards.anim.meta new file mode 100644 index 0000000..b3e14a7 --- /dev/null +++ b/Assets/Jammo-Character/Animations/Mixamo-Gun/Rifle Run Backwards.anim.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c4cc47503f3d29242b6272c114ba822e +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 7400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Jammo-Character/Animations/Mixamo-Gun/Rifle Run Forward.anim b/Assets/Jammo-Character/Animations/Mixamo-Gun/Rifle Run Forward.anim new file mode 100644 index 0000000..4090618 --- /dev/null +++ b/Assets/Jammo-Character/Animations/Mixamo-Gun/Rifle Run Forward.anim @@ -0,0 +1,29941 @@ +%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: Rifle Run Forward + 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, 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.033333335 + 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: jammo_mixamo_rig + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.022680292, y: 0.29311565, z: 0.04740193, w: 0.9546318} + inSlope: {x: -0.81112957, y: -0.92424625, z: -0.32861206, w: 0.2896249} + outSlope: {x: -0.81112957, y: -0.92424625, z: -0.32861206, w: 0.2896249} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: -0.004357362, y: 0.26230744, z: 0.036448196, w: 0.96428597} + inSlope: {x: -0.28599083, y: -0.59490097, z: -0.08495126, w: 0.1771143} + outSlope: {x: -0.28599083, y: -0.59490097, z: -0.08495126, w: 0.1771143} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: 0.003614234, y: 0.25345558, z: 0.041738514, w: 0.9664394} + inSlope: {x: 0.221726, y: 0.062942475, z: 0.36254814, w: -0.036249146} + outSlope: {x: 0.221726, y: 0.062942475, z: 0.36254814, w: -0.036249146} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.019722188, y: 0.31203863, z: 0.11067214, w: 0.94339526} + inSlope: {x: -0.084478915, y: 0.5283598, z: 0.43090412, w: -0.2187511} + outSlope: {x: -0.084478915, y: 0.5283598, z: 0.43090412, w: -0.2187511} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.008625967, y: 0.35508054, z: 0.11158483, w: 0.9281122} + inSlope: {x: 0.29890603, y: 0.2651328, z: -0.14404224, w: -0.08440734} + outSlope: {x: 0.29890603, y: 0.2651328, z: -0.14404224, w: -0.08440734} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: 0.064789705, y: 0.3406867, z: 0.07917241, w: 0.93459433} + inSlope: {x: 0.05517499, y: -0.58581877, z: -0.7013638, w: 0.2614902} + outSlope: {x: 0.05517499, y: -0.58581877, z: -0.7013638, w: 0.2614902} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.05235557, y: 0.31598735, z: 0.049806733, w: 0.9460075} + inSlope: {x: -0.6683786, y: -0.6176686, z: -0.6328532, w: 0.27851328} + outSlope: {x: -0.6683786, y: -0.6176686, z: -0.6328532, w: 0.27851328} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: 0.020231126, y: 0.29950878, z: 0.03698217, w: 0.9531619} + inSlope: {x: -0.6472509, y: -0.35112488, z: -0.20415601, w: 0.142563} + outSlope: {x: -0.6472509, y: -0.35112488, z: -0.20415601, w: 0.142563} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.022680324, y: 0.29311565, z: 0.047402073, w: 0.9546318} + inSlope: {x: 0.40424472, y: 0.016098633, z: 0.33617252, w: -0.026396539} + outSlope: {x: 0.40424472, y: 0.016098633, z: 0.33617252, w: -0.026396539} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.09465624, y: 0.012179229, z: 0.0039356323, w: 0.9954277} + inSlope: {x: 0.33911076, y: 0.06029072, z: 0.75248307, w: -0.04746258} + outSlope: {x: 0.33911076, y: 0.06029072, z: 0.75248307, w: -0.04746258} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: 0.111442804, y: 0.006178927, z: 0.040642094, w: 0.9929202} + inSlope: {x: 0.10154864, y: -0.20157287, z: 0.13255776, w: -0.014124512} + outSlope: {x: 0.10154864, y: -0.20157287, z: 0.13255776, w: -0.014124512} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.120397314, y: 0.0011778391, z: 0.0203098, w: 0.99251735} + inSlope: {x: 0.31634802, y: 0.0059026643, z: -0.16674247, w: -0.035853077} + outSlope: {x: 0.31634802, y: 0.0059026643, z: -0.16674247, w: -0.035853077} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.15669262, y: 0.0041997433, z: -0.004929587, w: 0.9876262} + inSlope: {x: -0.12421668, y: 0.13081126, z: -0.6167965, w: 0.011981429} + outSlope: {x: -0.12421668, y: 0.13081126, z: -0.6167965, w: 0.011981429} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: 0.09227141, y: 0.03464122, z: -0.049991384, w: 0.99387467} + inSlope: {x: -0.43796557, y: 0.27824003, z: 0.29220235, w: 0.04742055} + outSlope: {x: -0.43796557, y: 0.27824003, z: 0.29220235, w: 0.04742055} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.08638746, y: 0.040636063, z: -0.029975021, w: 0.9949811} + inSlope: {x: 0.049566418, y: -0.15906033, z: 0.48784423, w: 0.016558157} + outSlope: {x: 0.049566418, y: -0.15906033, z: 0.48784423, w: 0.016558157} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: 0.10114478, y: 0.0127630215, z: -0.006898133, w: 0.99476594} + inSlope: {x: -0.013234325, y: -0.1777051, z: 0.32111335, w: 0.006682286} + outSlope: {x: -0.013234325, y: -0.1777051, z: 0.32111335, w: 0.006682286} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.09469355, y: 0.012190199, z: 0.003939127, w: 0.99542403} + inSlope: {x: -0.1935372, y: -0.017184678, z: 0.32511812, w: 0.019742865} + outSlope: {x: -0.1935372, y: -0.017184678, z: 0.32511812, w: 0.019742865} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.12492034, y: 0.011708748, z: -0.056047905, w: 0.99051327} + inSlope: {x: -0.07406383, y: -0.10112126, z: -0.12409396, w: 0.0029897687} + outSlope: {x: -0.07406383, y: -0.10112126, z: -0.12409396, w: 0.0029897687} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: 0.12737605, y: -0.0025975448, z: -0.05801259, w: 0.9901531} + inSlope: {x: 0.09253207, y: 0.047011122, z: 0.06287131, w: -0.008215605} + outSlope: {x: 0.09253207, y: 0.047011122, z: 0.06287131, w: -0.008215605} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.1311422, y: 0.02741095, z: -0.055943158, w: 0.9894042} + inSlope: {x: -0.1295022, y: 0.37966287, z: 0.06727433, w: 0.010169149} + outSlope: {x: -0.1295022, y: 0.37966287, z: 0.06727433, w: 0.010169149} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: 0.12494931, y: 0.059540812, z: -0.06452105, w: 0.988271} + inSlope: {x: 0.13414034, y: 0.044728518, z: -0.043829005, w: -0.02223551} + outSlope: {x: 0.13414034, y: 0.044728518, z: -0.043829005, w: -0.02223551} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: 0.12648068, y: 0.023495091, z: -0.05157561, w: 0.9903487} + inSlope: {x: -0.079747796, y: -0.417691, z: -0.0061797574, w: 0.020750467} + outSlope: {x: -0.079747796, y: -0.417691, z: -0.0061797574, w: 0.020750467} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.124876104, y: 0.011725906, z: -0.05604798, w: 0.9905186} + inSlope: {x: -0.048137426, y: -0.3530759, z: -0.13417126, w: 0.00509799} + outSlope: {x: -0.048137426, y: -0.3530759, z: -0.13417126, w: 0.00509799} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.113522045, y: 0.0008706437, z: -0.05066703, w: 0.99224234} + inSlope: {x: -0.03762826, y: -0.16219917, z: -0.039211433, w: 0.0019544363} + outSlope: {x: -0.03762826, y: -0.16219917, z: -0.039211433, w: 0.0019544363} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: 0.11515011, y: -0.0155298095, z: -0.054159738, w: 0.991749} + inSlope: {x: 0.037768405, y: 0.071498424, z: -0.073341206, w: -0.007606744} + outSlope: {x: 0.037768405, y: 0.071498424, z: -0.073341206, w: -0.007606744} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: 0.11505713, y: -0.0034371621, z: -0.06891479, w: 0.9909595} + inSlope: {x: 0.005281269, y: 0.14856534, z: -0.10434215, w: -0.0075870734} + outSlope: {x: 0.005281269, y: 0.14856534, z: -0.10434215, w: -0.0075870734} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.10222418, y: 0.043605007, z: -0.070846036, w: 0.9912768} + inSlope: {x: -0.0019162148, y: 0.28827494, z: -0.08323499, w: -0.017705264} + outSlope: {x: -0.0019162148, y: 0.28827494, z: -0.08323499, w: -0.017705264} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.11363093, y: 0.046626937, z: -0.06674795, w: 0.99018115} + inSlope: {x: 0.14799291, y: -0.3059256, z: 0.26924488, w: 0.013392273} + outSlope: {x: 0.14799291, y: -0.3059256, z: 0.26924488, w: 0.013392273} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: 0.11390127, y: 0.013694604, z: -0.047795568, w: 0.9922472} + inSlope: {x: -0.036766946, y: -0.44412562, z: 0.06613994, w: 0.014806689} + outSlope: {x: -0.036766946, y: -0.44412562, z: 0.06613994, w: 0.014806689} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.11347834, y: 0.00088931323, z: -0.050670248, w: 0.99224716} + inSlope: {x: -0.012687978, y: -0.3841591, z: -0.08624048, w: -0.000001788141} + outSlope: {x: -0.012687978, y: -0.3841591, z: -0.08624048, w: -0.000001788141} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.12318041, y: -0.032393534, z: 0.03312171, w: 0.9913023} + inSlope: {x: 0.16918121, y: 0.15257086, z: -0.016404502, w: 0.02566695} + outSlope: {x: 0.16918121, y: 0.15257086, z: -0.016404502, w: 0.02566695} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: -0.12014357, y: -0.03268557, z: 0.026309988, w: 0.99186945} + inSlope: {x: -0.077595085, y: -0.17836216, z: -0.05268784, w: -0.013756157} + outSlope: {x: -0.077595085, y: -0.17836216, z: -0.05268784, w: -0.013756157} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.119539864, y: -0.048973612, z: 0.03506454, w: 0.99100065} + inSlope: {x: 0.076278344, y: -0.1340082, z: 0.14079005, w: -0.0021573901} + outSlope: {x: 0.076278344, y: -0.1340082, z: 0.14079005, w: -0.0021573901} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: -0.12511785, y: -0.052683916, z: 0.04228588, w: 0.9898393} + inSlope: {x: -0.05445461, y: 0.23774832, z: -0.06898858, w: 0.008091332} + outSlope: {x: -0.05445461, y: 0.23774832, z: -0.06898858, w: 0.008091332} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.12317513, y: -0.03239179, z: 0.033129018, w: 0.9913028} + inSlope: {x: 0.028981967, y: 0.06530034, z: -0.07507276, w: 0.008425721} + outSlope: {x: 0.028981967, y: 0.06530034, z: -0.07507276, w: 0.008425721} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.033647284, y: -0.23349158, z: 0.061714523, w: 0.9698149} + inSlope: {x: 0.8005882, y: 0.7112458, z: -0.40079096, w: 0.14613031} + outSlope: {x: 0.8005882, y: 0.7112458, z: -0.40079096, w: 0.14613031} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.060333557, y: -0.20978339, z: 0.048354823, w: 0.9746859} + inSlope: {x: 0.40091693, y: 0.54617816, z: -0.4369435, w: 0.122536704} + outSlope: {x: 0.40091693, y: 0.54617816, z: -0.4369435, w: 0.122536704} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: 0.0548521, y: -0.20964433, z: 0.025393592, w: 0.9759076} + inSlope: {x: -0.2595173, y: -0.6994799, z: -0.106531925, w: -0.14142662} + outSlope: {x: -0.2595173, y: -0.6994799, z: -0.106531925, w: -0.14142662} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.02828319, y: -0.26931188, z: 0.02867343, w: 0.9622105} + inSlope: {x: -0.34441924, y: -0.5603114, z: 0.22621222, w: -0.14903514} + outSlope: {x: -0.34441924, y: -0.5603114, z: 0.22621222, w: -0.14903514} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: 0.031981148, y: -0.2936517, z: 0.061131213, w: 0.95341957} + inSlope: {x: 0.5768131, y: -0.40863547, z: 0.694551, w: -0.19679905} + outSlope: {x: 0.5768131, y: -0.40863547, z: 0.694551, w: -0.19679905} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.058566846, y: -0.30830815, z: 0.08686704, w: 0.94549996} + inSlope: {x: 0.5318881, y: -0.44193554, z: 0.72124165, w: -0.23707242} + outSlope: {x: 0.5318881, y: -0.44193554, z: 0.72124165, w: -0.23707242} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: 0.060163144, y: -0.33595538, z: 0.14113018, w: 0.92929906} + inSlope: {x: -0.38302684, y: 0.3168245, z: 0.025228769, w: 0.128973} + outSlope: {x: -0.38302684, y: 0.3168245, z: 0.025228769, w: 0.128973} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.042442627, y: -0.31375372, z: 0.13142537, w: 0.9394065} + inSlope: {x: -0.32804877, y: 0.9963175, z: -0.5772503, w: 0.41159204} + outSlope: {x: -0.32804877, y: 0.9963175, z: -0.5772503, w: 0.41159204} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: 0.03693164, y: -0.23987538, z: 0.076101065, w: 0.9671114} + inSlope: {x: -0.069765925, y: 0.54062504, z: -0.6140727, w: 0.19615} + outSlope: {x: -0.069765925, y: 0.54062504, z: -0.6140727, w: 0.19615} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.033642154, y: -0.23349254, z: 0.061708655, w: 0.9698152} + inSlope: {x: -0.09868471, y: 0.19148532, z: -0.4317727, w: 0.08111365} + outSlope: {x: -0.09868471, y: 0.19148532, z: -0.4317727, w: 0.08111365} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.06928724, y: 0, z: -0, w: 0.99759674} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: -0.06928724, y: 0, z: -0, w: 0.99759674} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head/mixamorig:HeadTop_End + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.40506425, y: -0.45798013, z: 0.59357256, w: 0.5233056} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.40506425, y: -0.45798013, z: 0.59357256, w: 0.5233056} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head/mixamorig:LeftEar + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.40506425, y: 0.45798013, z: -0.59357256, w: 0.5233056} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.40506425, y: 0.45798013, z: -0.59357256, w: 0.5233056} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head/mixamorig:RightEar + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.5343876, y: -0.48166934, z: 0.40188137, w: 0.5664944} + inSlope: {x: 0.7675641, y: 1.4743172, z: -1.1094207, w: 1.159492} + outSlope: {x: 0.7675641, y: 1.4743172, z: -1.1094207, w: 1.159492} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.55997306, y: -0.43252543, z: 0.36490068, w: 0.60514414} + inSlope: {x: 0.52721673, y: 1.0478925, z: -0.79072547, w: 0.7992571} + outSlope: {x: 0.52721673, y: 1.0478925, z: -0.79072547, w: 0.7992571} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: 0.570687, y: -0.40805957, z: 0.34701008, w: 0.6224048} + inSlope: {x: 0.045829117, y: 0.120541155, z: -0.081973225, w: 0.08253783} + outSlope: {x: 0.045829117, y: 0.120541155, z: -0.081973225, w: 0.08253783} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.57259065, y: -0.40377375, z: 0.34370145, w: 0.62528074} + inSlope: {x: -0.21591426, y: -0.16198173, z: 0.31026724, w: -0.090706065} + outSlope: {x: -0.21591426, y: -0.16198173, z: 0.31026724, w: -0.090706065} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: 0.5359183, y: -0.435937, z: 0.39457777, w: 0.60585386} + inSlope: {x: -0.6400626, y: -0.5116447, z: 0.7967331, w: -0.32154584} + outSlope: {x: -0.6400626, y: -0.5116447, z: 0.7967331, w: -0.32154584} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.4925736, y: -0.47215673, z: 0.44343603, w: 0.5812089} + inSlope: {x: -0.66243774, y: -0.7451222, z: 0.6867627, w: -0.5823112} + outSlope: {x: -0.66243774, y: -0.7451222, z: 0.6867627, w: -0.5823112} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: 0.43881097, y: -0.5547627, z: 0.49449366, w: 0.505133} + inSlope: {x: -0.08409269, y: -0.31404826, z: 0.086281806, w: -0.3404242} + outSlope: {x: -0.08409269, y: -0.31404826, z: 0.086281806, w: -0.3404242} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.44360253, y: -0.5548337, z: 0.4909911, w: 0.50428575} + inSlope: {x: 0.6882177, y: 0.79590535, z: -0.61832875, w: 0.746491} + outSlope: {x: 0.6882177, y: 0.79590535, z: -0.61832875, w: 0.746491} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: 0.48469216, y: -0.50170237, z: 0.45327175, w: 0.55489904} + inSlope: {x: 1.0772445, y: 1.1512301, z: -1.0412421, w: 1.0270984} + outSlope: {x: 1.0772445, y: 1.1512301, z: -1.0412421, w: 1.0270984} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: 0.5154188, y: -0.47808504, z: 0.42157495, w: 0.572759} + inSlope: {x: 0.7454282, y: 0.30049366, z: -0.7708502, w: 0.17392868} + outSlope: {x: 0.7454282, y: 0.30049366, z: -0.7708502, w: 0.17392868} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.53438735, y: -0.48166946, z: 0.40188175, w: 0.5664943} + inSlope: {x: 0.5690562, y: -0.107532546, z: -0.5907964, w: -0.18794078} + outSlope: {x: 0.5690562, y: -0.107532546, z: -0.5907964, w: -0.18794078} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.3799461, y: 0.42255297, z: -0.23674357, w: 0.78806245} + inSlope: {x: -0.7721078, y: 0.2140653, z: 1.0493423, w: 0.52990615} + outSlope: {x: -0.7721078, y: 0.2140653, z: 1.0493423, w: 0.52990615} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.35420918, y: 0.42968848, z: -0.2017655, w: 0.805726} + inSlope: {x: -0.6188844, y: 0.20435704, z: 0.57644135, w: 0.32547355} + outSlope: {x: -0.6188844, y: 0.20435704, z: 0.57644135, w: 0.32547355} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: 0.3371696, y: 0.44373924, z: -0.17239909, w: 0.8122135} + inSlope: {x: 0.033870496, y: 0.25731102, z: 1.6296579, w: 0.13351321} + outSlope: {x: 0.033870496, y: 0.25731102, z: 1.6296579, w: 0.13351321} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.34094518, y: 0.45333084, z: -0.089670286, w: 0.8186616} + inSlope: {x: 0.2770168, y: -0.11188389, z: 1.3745294, w: 0.15568884} + outSlope: {x: 0.2770168, y: -0.11188389, z: 1.3745294, w: 0.15568884} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: 0.37206948, y: 0.41451365, z: -0.09198185, w: 0.82539815} + inSlope: {x: 0.48037106, y: -0.66864777, z: -0.1720537, w: 0.100976214} + outSlope: {x: 0.48037106, y: -0.66864777, z: -0.1720537, w: 0.100976214} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.41267595, y: 0.36821735, z: -0.08005881, w: 0.8292799} + inSlope: {x: 1.2081573, y: -0.66868013, z: 0.17286201, w: -0.31143042} + outSlope: {x: 1.2081573, y: -0.66868013, z: 0.17286201, w: -0.31143042} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.52821666, y: 0.3319804, z: -0.08978933, w: 0.7763466} + inSlope: {x: 1.4672785, y: -0.12622654, z: -0.45569775, w: -0.97837156} + outSlope: {x: 1.4672785, y: -0.12622654, z: -0.45569775, w: -0.97837156} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: 0.5660245, y: 0.33871, z: -0.111089766, w: 0.7433377} + inSlope: {x: 0.5158971, y: 0.49052697, z: -1.0178969, w: -0.77021134} + outSlope: {x: 0.5158971, y: 0.49052697, z: -1.0178969, w: -0.77021134} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.5626098, y: 0.36468223, z: -0.15764916, w: 0.7249992} + inSlope: {x: -1.1434078, y: 0.9302341, z: -1.0750906, w: 0.13603118} + outSlope: {x: -1.1434078, y: 0.9302341, z: -1.0750906, w: 0.13603118} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: 0.4897973, y: 0.40072563, z: -0.18276252, w: 0.7524064} + inSlope: {x: -2.0739763, y: 0.78126186, z: -0.94059485, w: 0.7214848} + outSlope: {x: -2.0739763, y: 0.78126186, z: -0.94059485, w: 0.7214848} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: 0.42434472, y: 0.41676635, z: -0.22035548, w: 0.7730982} + inSlope: {x: -1.6473751, y: 0.32693008, z: -0.80851483, w: 0.535269} + outSlope: {x: -1.6473751, y: 0.32693008, z: -0.80851483, w: 0.535269} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.37997234, y: 0.42252097, z: -0.23666349, w: 0.788091} + inSlope: {x: -1.3311727, y: 0.17263876, z: -0.48924077, w: 0.4497854} + outSlope: {x: -1.3311727, y: 0.17263876, z: -0.48924077, w: 0.4497854} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.57133055, y: 0.5913881, z: -0.33110896, w: 0.46282667} + inSlope: {x: -0.34196016, y: 0.6714284, z: 0.55123955, w: -0.07302939} + outSlope: {x: -0.34196016, y: 0.6714284, z: 0.55123955, w: -0.07302939} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.5599319, y: 0.61376905, z: -0.3127343, w: 0.46039236} + inSlope: {x: 0.05883783, y: 0.1465094, z: 0.12655692, w: -0.17444059} + outSlope: {x: 0.05883783, y: 0.1465094, z: 0.12655692, w: -0.17444059} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: 0.57525307, y: 0.6011554, z: -0.32267183, w: 0.4511973} + inSlope: {x: 0.4540398, y: -0.41895652, z: -0.2860012, w: -0.22517635} + outSlope: {x: 0.4540398, y: -0.41895652, z: -0.2860012, w: -0.22517635} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: 0.5902012, y: 0.5858386, z: -0.33180106, w: 0.4453806} + inSlope: {x: 0.86133957, y: -0.69194376, z: -0.35644007, w: -0.5533397} + outSlope: {x: 0.86133957, y: -0.69194376, z: -0.35644007, w: -0.5533397} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.6326757, y: 0.5550258, z: -0.3464345, w: 0.41430798} + inSlope: {x: 0.90958726, y: -0.66430724, z: -0.29582578, w: -0.6889536} + outSlope: {x: 0.90958726, y: -0.66430724, z: -0.29582578, w: -0.6889536} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: 0.65926296, y: 0.53478986, z: -0.3544849, w: 0.39206222} + inSlope: {x: 0.24810436, y: -0.030935708, z: 0.08369476, w: -0.30627298} + outSlope: {x: 0.24810436, y: -0.030935708, z: 0.08369476, w: -0.30627298} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: 0.67598957, y: 0.5324619, z: -0.34747162, w: 0.37253985} + inSlope: {x: -0.025311112, y: 0.07850022, z: 0.097282834, w: 0.022469316} + outSlope: {x: -0.025311112, y: 0.07850022, z: 0.097282834, w: 0.022469316} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.6231493, y: 0.5806654, z: -0.3215446, w: 0.4136688} + inSlope: {x: -0.98664045, y: 0.67307055, z: 0.296679, w: 0.75363564} + outSlope: {x: -0.98664045, y: 0.67307055, z: 0.296679, w: 0.75363564} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: 0.56061685, y: 0.6106614, z: -0.31281242, w: 0.46362677} + inSlope: {x: -0.20546961, y: -0.16399409, z: -0.26525375, w: 0.2895074} + outSlope: {x: -0.20546961, y: -0.16399409, z: -0.26525375, w: 0.2895074} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.5713519, y: 0.5913695, z: -0.33112225, w: 0.46281442} + inSlope: {x: 0.32205135, y: -0.57875687, z: -0.5492955, w: -0.024370573} + outSlope: {x: 0.32205135, y: -0.57875687, z: -0.5492955, w: -0.024370573} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.013199304, y: 0.32422838, z: -0.04696046, w: 0.9447203} + inSlope: {x: -0.18204163, y: -0.5507603, z: 0.77072644, w: 0.21266161} + outSlope: {x: -0.18204163, y: -0.5507603, z: 0.77072644, w: 0.21266161} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.0071312496, y: 0.3058697, z: -0.021269575, w: 0.95180905} + inSlope: {x: -0.5832397, y: -0.55766433, z: 0.4245183, w: 0.1900327} + outSlope: {x: -0.5832397, y: -0.55766433, z: 0.4245183, w: 0.1900327} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: -0.025683342, y: 0.28705075, z: -0.018659236, w: 0.9573892} + inSlope: {x: -0.8041586, y: -0.45634922, z: 0.11634703, w: 0.12432037} + outSlope: {x: -0.8041586, y: -0.45634922, z: 0.11634703, w: 0.12432037} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: -0.04647933, y: 0.27544641, z: -0.013513105, w: 0.9600971} + inSlope: {x: -0.68568194, y: -0.3861947, z: -0.050147727, w: 0.07457703} + outSlope: {x: -0.68568194, y: -0.3861947, z: -0.050147727, w: 0.07457703} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: -0.07139547, y: 0.26130444, z: -0.022002416, w: 0.962361} + inSlope: {x: -0.40558144, y: -0.35966504, z: -0.5057167, w: 0.057237454} + outSlope: {x: -0.40558144, y: -0.35966504, z: -0.5057167, w: 0.057237454} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.07351809, y: 0.25146875, z: -0.047227547, w: 0.9639129} + inSlope: {x: 0.18088065, y: -0.046047322, z: -0.6962219, w: -0.007993864} + outSlope: {x: 0.18088065, y: -0.046047322, z: -0.6962219, w: -0.007993864} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: -0.042363677, y: 0.2669405, z: -0.08644754, w: 0.9588925} + inSlope: {x: 0.46197814, y: 0.000988394, z: -0.4281959, w: -0.01598418} + outSlope: {x: 0.46197814, y: 0.000988394, z: -0.4281959, w: -0.01598418} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: -0.014356923, y: 0.23809014, z: -0.08573247, w: 0.9673453} + inSlope: {x: 0.47785264, y: -0.6385269, z: 0.5567589, w: 0.20773263} + outSlope: {x: 0.47785264, y: -0.6385269, z: 0.5567589, w: 0.20773263} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.033196755, y: 0.2063098, z: -0.0017534898, w: 0.9779219} + inSlope: {x: 0.028390586, y: 0.67441016, z: 0.37074766, w: -0.15062481} + outSlope: {x: 0.028390586, y: 0.67441016, z: 0.37074766, w: -0.15062481} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: 0.02343336, y: 0.24705714, z: -0.0022799126, w: 0.96871483} + inSlope: {x: -0.21802902, y: 1.220192, z: -0.19462973, w: -0.30724797} + outSlope: {x: -0.21802902, y: 1.220192, z: -0.19462973, w: -0.30724797} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.0131905805, y: 0.32423013, z: -0.04696963, w: 0.9447194} + inSlope: {x: -0.16412738, y: 1.0972275, z: -0.9672256, w: -0.38158035} + outSlope: {x: -0.16412738, y: 1.0972275, z: -0.9672256, w: -0.38158035} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.22189714, y: -0.13689652, z: -0.25379956, w: 0.9314542} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.22189714, y: -0.13689652, z: -0.25379956, w: 0.9314542} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.05551766, y: -0.13071378, z: 0.13998032, w: 0.97991693} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.05551766, y: -0.13071378, z: 0.13998032, w: 0.97991693} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.22361803, y: 0.031642117, z: -0.10459685, w: 0.9685315} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: -0.22361803, y: 0.031642117, z: -0.10459685, w: 0.9685315} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2/mixamorig:LeftHandThumb3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.02006676, y: 0.040932328, z: 0.014504524, w: 0.9988551} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.02006676, y: 0.040932328, z: 0.014504524, w: 0.9988551} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2/mixamorig:LeftHandThumb3/mixamorig:LeftHandThumb4 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.17390507, y: -0.066170156, z: -0.022739656, w: 0.98227364} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.17390507, y: -0.066170156, z: -0.022739656, w: 0.98227364} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.24460985, y: -0.0050665666, z: 0.03382232, w: 0.9690183} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.24460985, y: -0.0050665666, z: 0.03382232, w: 0.9690183} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.24556223, y: -0.00000013136894, z: 0.03264659, w: 0.96883094} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.24556223, y: -0.00000013136894, z: 0.03264659, w: 0.96883094} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2/mixamorig:LeftHandIndex3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.044488557, y: 0.00000011847825, z: 0.00000004412633, w: 0.9990099} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.044488557, y: 0.00000011847825, z: 0.00000004412633, w: 0.9990099} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2/mixamorig:LeftHandIndex3/mixamorig:LeftHandIndex4 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.1731456, y: -0.06403206, z: -0.02489581, w: 0.98249716} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.1731456, y: -0.06403206, z: -0.02489581, w: 0.98249716} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.38609654, y: -0.012462583, z: 0.055942103, w: 0.9206762} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.38609654, y: -0.012462583, z: 0.055942103, w: 0.9206762} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.3709108, y: 0.0028800222, z: 0.05047341, w: 0.92729145} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.3709108, y: 0.0028800222, z: 0.05047341, w: 0.92729145} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2/mixamorig:LeftHandMiddle3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.010558712, y: -0.0028613987, z: -0.0028609622, w: 0.9999361} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.010558712, y: -0.0028613987, z: -0.0028609622, w: 0.9999361} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2/mixamorig:LeftHandMiddle3/mixamorig:LeftHandMiddle4 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.055215523, y: 0.08593828, z: -0.020106701, w: 0.994566} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.055215523, y: 0.08593828, z: -0.020106701, w: 0.994566} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.4315977, y: -0.00012870836, z: 0.0573812, w: 0.9002393} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.4315977, y: -0.00012870836, z: 0.0573812, w: 0.9002393} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.27317566, y: 0.000000064605864, z: 0.03627927, w: 0.9612798} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.27317566, y: 0.000000064605864, z: 0.03627927, w: 0.9612798} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2/mixamorig:LeftHandPinky3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.044519037, y: 0.000000022910202, z: 0.000000026746818, w: 0.99900854} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.044519037, y: 0.000000022910202, z: 0.000000026746818, w: 0.99900854} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2/mixamorig:LeftHandPinky3/mixamorig:LeftHandPinky4 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.5577402, y: 0.4672832, z: -0.37277442, w: 0.57585716} + inSlope: {x: 0.07918774, y: -0.22570877, z: 0.1319021, w: 0.18865405} + outSlope: {x: 0.07918774, y: -0.22570877, z: 0.1319021, w: 0.18865405} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: 0.57394093, y: 0.4522694, z: -0.34961602, w: 0.58635557} + inSlope: {x: 0.48244262, y: -0.16596211, z: 0.6839677, w: 0.05759597} + outSlope: {x: 0.48244262, y: -0.16596211, z: 0.6839677, w: 0.05759597} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.6027975, y: 0.44604436, z: -0.3113554, w: 0.5837272} + inSlope: {x: 0.067015894, y: 0.08423701, z: 0.08328215, w: -0.087884374} + outSlope: {x: 0.067015894, y: 0.08423701, z: 0.08328215, w: -0.087884374} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: 0.5916046, y: 0.45957217, z: -0.32626036, w: 0.57649946} + inSlope: {x: -0.102300316, y: 0.11161384, z: -0.17248163, w: -0.07984129} + outSlope: {x: -0.102300316, y: 0.11161384, z: -0.17248163, w: -0.07984129} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: 0.59868324, y: 0.44989792, z: -0.3137983, w: 0.5836959} + inSlope: {x: 0.11874409, y: -0.20335259, z: 0.22036809, w: 0.15499325} + outSlope: {x: 0.11874409, y: -0.20335259, z: 0.22036809, w: 0.15499325} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.58564955, y: 0.45371324, z: -0.33370736, w: 0.5829222} + inSlope: {x: -0.39648673, y: 0.30793267, z: -0.6067169, w: -0.1973354} + outSlope: {x: -0.39648673, y: 0.30793267, z: -0.6067169, w: -0.1973354} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: 0.55841386, y: 0.46975818, z: -0.37231562, w: 0.5734826} + inSlope: {x: -0.15964153, y: 0.034255803, z: -0.20639063, w: -0.00276801} + outSlope: {x: -0.15964153, y: 0.034255803, z: -0.20639063, w: -0.00276801} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.55774534, y: 0.46727487, z: -0.37276688, w: 0.5758639} + inSlope: {x: -0.02005579, y: -0.074499324, z: -0.013538016, w: 0.07143981} + outSlope: {x: -0.02005579, y: -0.074499324, z: -0.013538016, w: 0.07143981} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.21015018, y: -0.101198934, z: 0.35731682, w: 0.9043895} + inSlope: {x: 0.7173724, y: 0.2131482, z: -0.9095567, w: 0.19028305} + outSlope: {x: 0.7173724, y: 0.2131482, z: -0.9095567, w: 0.19028305} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.2340626, y: -0.09409399, z: 0.32699826, w: 0.91073227} + inSlope: {x: 0.94583, y: -0.10582745, z: -1.2865107, w: 0.18107234} + outSlope: {x: 0.94583, y: -0.10582745, z: -1.2865107, w: 0.18107234} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: 0.27320552, y: -0.1082541, z: 0.27154943, w: 0.916461} + inSlope: {x: 1.1497021, y: -0.5495365, z: -0.92621094, w: -0.11098174} + outSlope: {x: 1.1497021, y: -0.5495365, z: -0.92621094, w: -0.11098174} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: 0.31070942, y: -0.13072976, z: 0.26525086, w: 0.9033335} + inSlope: {x: 0.73556757, y: -0.35192555, z: 0.46956903, w: -0.43920457} + outSlope: {x: 0.73556757, y: -0.35192555, z: 0.46956903, w: -0.43920457} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.32224336, y: -0.1317158, z: 0.30285403, w: 0.8871807} + inSlope: {x: 0.10838137, y: 0.014753715, z: 1.0004077, w: -0.3713599} + outSlope: {x: 0.10838137, y: 0.014753715, z: 1.0004077, w: -0.3713599} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: 0.303004, y: -0.13111639, z: 0.35374048, w: 0.875137} + inSlope: {x: -0.5383823, y: -0.0945767, z: 0.72711277, w: -0.1258546} + outSlope: {x: -0.5383823, y: -0.0945767, z: 0.72711277, w: -0.1258546} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.26349935, y: -0.13091841, z: 0.3980551, w: 0.86889625} + inSlope: {x: -0.5464981, y: 0.35814533, z: 0.30925515, w: 0.07767946} + outSlope: {x: -0.5464981, y: 0.35814533, z: 0.30925515, w: 0.07767946} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.24194716, y: -0.092127055, z: 0.4019193, w: 0.8783138} + inSlope: {x: 0.050160218, y: 0.42522436, z: 0.24292411, w: -0.08034915} + outSlope: {x: 0.050160218, y: 0.42522436, z: 0.24292411, w: -0.08034915} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: 0.24895349, y: -0.08382665, z: 0.41723084, w: 0.8700079} + inSlope: {x: -0.08554263, y: 0.014314935, z: 0.3340655, w: -0.13299644} + outSlope: {x: -0.08554263, y: 0.014314935, z: 0.3340655, w: -0.13299644} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.2362443, y: -0.09117273, z: 0.42419034, w: 0.86944735} + inSlope: {x: -0.16576572, y: -0.307135, z: -0.055180743, w: 0.03946067} + outSlope: {x: -0.16576572, y: -0.307135, z: -0.055180743, w: 0.03946067} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: 0.23059501, y: -0.106723554, z: 0.38694957, w: 0.88640064} + inSlope: {x: -0.41574472, y: 0.047505688, z: -0.84343266, w: 0.47620684} + outSlope: {x: -0.41574472, y: 0.047505688, z: -0.84343266, w: 0.47620684} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.21018614, y: -0.10113528, z: 0.35732332, w: 0.9043857} + inSlope: {x: -0.61226666, y: 0.16764829, z: -0.88878834, w: 0.5395519} + outSlope: {x: -0.61226666, y: 0.16764829, z: -0.88878834, w: 0.5395519} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.1465756, y: -0.14602083, z: 0.7882092, w: 0.57958585} + inSlope: {x: 0.032447577, y: -0.04867583, z: -0.05208313, w: 0.0501126} + outSlope: {x: 0.032447577, y: -0.04867583, z: -0.05208313, w: 0.0501126} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.14765719, y: -0.14764336, z: 0.7864731, w: 0.5812563} + inSlope: {x: 0.18297715, y: 0.04537493, z: 0.35518345, w: -0.5442068} + outSlope: {x: 0.18297715, y: 0.04537493, z: 0.35518345, w: -0.5442068} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: 0.15877408, y: -0.14299583, z: 0.8118881, w: 0.5433054} + inSlope: {x: 0.16440062, y: 0.077779144, z: 0.39806572, w: -0.5916703} + outSlope: {x: 0.16440062, y: 0.077779144, z: 0.39806572, w: -0.5916703} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.14698909, y: -0.14352863, z: 0.7941967, w: 0.57187885} + inSlope: {x: -0.06846004, y: -0.05412674, z: -0.23941037, w: 0.33888277} + outSlope: {x: -0.06846004, y: -0.05412674, z: -0.23941037, w: 0.33888277} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.14891882, y: -0.15488335, z: 0.7716395, w: 0.59867084} + inSlope: {x: 0.12460583, y: -0.15187585, z: -0.093249686, w: 0.050135855} + outSlope: {x: 0.12460583, y: -0.15187585, z: -0.093249686, w: 0.050135855} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.15216465, y: -0.15809752, z: 0.7708671, w: 0.5980092} + inSlope: {x: -0.18099593, y: 0.07643894, z: -0.14911474, w: 0.2536941} + outSlope: {x: -0.18099593, y: 0.07643894, z: -0.14911474, w: 0.2536941} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: 0.14313379, y: -0.15534559, z: 0.7613966, w: 0.6129077} + inSlope: {x: -0.19744721, y: 0.075036556, z: -0.16674578, w: 0.27671722} + outSlope: {x: -0.19744721, y: 0.075036556, z: -0.16674578, w: 0.27671722} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.1390015, y: -0.15309508, z: 0.7597507, w: 0.61645705} + inSlope: {x: -0.09952712, y: 0.036048636, z: -0.08498041, w: 0.1359388} + outSlope: {x: -0.09952712, y: 0.036048636, z: -0.08498041, w: 0.1359388} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: 0.14045526, y: -0.1514087, z: 0.7659277, w: 0.60885346} + inSlope: {x: 0.1508748, y: 0.10412052, z: 0.48718518, w: -0.6356428} + outSlope: {x: 0.1508748, y: 0.10412052, z: 0.48718518, w: -0.6356428} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.14655696, y: -0.14600098, z: 0.7882102, w: 0.57959414} + inSlope: {x: 0.18305111, y: 0.16223177, z: 0.6684769, w: -0.87778056} + outSlope: {x: 0.18305111, y: 0.16223177, z: 0.6684769, w: -0.87778056} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.13263595, y: -0.14923285, z: 0.04146198, w: 0.97898835} + inSlope: {x: -0.49497214, y: 0.29207465, z: 0.1850105, w: -0.03660142} + outSlope: {x: -0.49497214, y: 0.29207465, z: 0.1850105, w: -0.03660142} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: -0.14913502, y: -0.13949703, z: 0.047629, w: 0.9777683} + inSlope: {x: -0.42454648, y: 0.69474596, z: 0.11683478, w: 0.020386575} + outSlope: {x: -0.42454648, y: 0.69474596, z: 0.11683478, w: 0.020386575} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: -0.16093905, y: -0.10291645, z: 0.049250968, w: 0.98034745} + inSlope: {x: 0.11508238, y: 0.9902414, z: 0.115021214, w: 0.11841683} + outSlope: {x: 0.11508238, y: 0.9902414, z: 0.115021214, w: 0.11841683} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: -0.14146286, y: -0.07348093, z: 0.05529708, w: 0.98566276} + inSlope: {x: 0.66252875, y: 0.55550987, z: 0.11574463, w: 0.13477652} + outSlope: {x: 0.66252875, y: 0.55550987, z: 0.11574463, w: 0.13477652} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: -0.11677047, y: -0.06588245, z: 0.056967277, w: 0.98933256} + inSlope: {x: 0.79167616, y: -0.10658596, z: 0.18384527, w: 0.07246167} + outSlope: {x: 0.79167616, y: -0.10658596, z: 0.18384527, w: 0.07246167} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.088684455, y: -0.08058666, z: 0.06755343, w: 0.99049354} + inSlope: {x: 0.7358234, y: -0.35647434, z: 0.123357445, w: 0.032933947} + outSlope: {x: 0.7358234, y: -0.35647434, z: 0.123357445, w: 0.032933947} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.03711156, y: -0.10458647, z: 0.047380466, w: 0.99269307} + inSlope: {x: 0.16815126, y: 0.0022571906, z: -0.19329268, w: 0.017318131} + outSlope: {x: 0.16815126, y: 0.0022571906, z: -0.19329268, w: 0.017318131} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.029593052, y: -0.09764424, z: 0.03905899, w: 0.9940142} + inSlope: {x: 0.36162713, y: 0.10212154, z: -0.12254517, w: 0.023975374} + outSlope: {x: 0.36162713, y: 0.10212154, z: -0.12254517, w: 0.023975374} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: -0.013283491, y: -0.09245982, z: 0.03577123, w: 0.994985} + inSlope: {x: -0.040290758, y: 0.097860835, z: -0.03693107, w: 0.009440487} + outSlope: {x: -0.040290758, y: 0.097860835, z: -0.03693107, w: 0.009440487} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: -0.03227912, y: -0.09112018, z: 0.03659692, w: 0.99464357} + inSlope: {x: -0.76888853, y: -0.30358988, z: 0.022240365, w: -0.062315762} + outSlope: {x: -0.76888853, y: -0.30358988, z: 0.022240365, w: -0.062315762} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: -0.10028042, y: -0.13441795, z: 0.04099418, w: 0.9849848} + inSlope: {x: -1.0212471, y: -0.5483277, z: 0.06336312, w: -0.1776723} + outSlope: {x: -1.0212471, y: -0.5483277, z: 0.06336312, w: -0.1776723} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.13262585, y: -0.1492543, z: 0.041478127, w: 0.9789858} + inSlope: {x: -0.9703638, y: -0.4450911, z: 0.014518476, w: -0.17997104} + outSlope: {x: -0.9703638, y: -0.4450911, z: 0.014518476, w: -0.17997104} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.17914823, y: 0.2756049, z: 0.2637618, w: 0.90685034} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.17914823, y: 0.2756049, z: 0.2637618, w: 0.90685034} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.0709231, y: 0.11455817, z: -0.20838952, w: 0.9687209} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.0709231, y: 0.11455817, z: -0.20838952, w: 0.9687209} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.002560072, y: 0.017164012, z: -0.26406187, w: 0.9643496} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.002560072, y: 0.017164012, z: -0.26406187, w: 0.9643496} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2/mixamorig:RightHandThumb3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.020066896, y: -0.040932257, z: -0.014504592, w: 0.9988551} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.020066896, y: -0.040932257, z: -0.014504592, w: 0.9988551} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2/mixamorig:RightHandThumb3/mixamorig:RightHandThumb4 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.039883025, y: -0.021048894, z: -0.021070257, w: 0.9987604} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.039883025, y: -0.021048894, z: -0.021070257, w: 0.9987604} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.10017289, y: 0.005202235, z: -0.011729762, w: 0.9948873} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.10017289, y: 0.005202235, z: -0.011729762, w: 0.9948873} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.2876349, y: 0.000000046472767, z: -0.032156568, w: 0.95720017} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.2876349, y: 0.000000046472767, z: -0.032156568, w: 0.95720017} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2/mixamorig:RightHandIndex3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.04448857, y: -0.000000032887463, z: -0.000000072873924, w: 0.9990099} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.04448857, y: -0.000000032887463, z: -0.000000072873924, w: 0.9990099} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2/mixamorig:RightHandIndex3/mixamorig:RightHandIndex4 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.0010483505, y: 0.00034242336, z: -0.07512589, w: 0.9971735} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: -0.0010483505, y: 0.00034242336, z: -0.07512589, w: 0.9971735} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.7770863, y: 0.008185316, z: -0.09665892, w: 0.62187374} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.7770863, y: 0.008185316, z: -0.09665892, w: 0.62187374} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.57904154, y: -0.0026377453, z: -0.06625723, w: 0.81259704} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.57904154, y: -0.0026377453, z: -0.06625723, w: 0.81259704} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2/mixamorig:RightHandMiddle3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.010558612, y: 0.0028611857, z: 0.0028610006, w: 0.9999361} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.010558612, y: 0.0028611857, z: 0.0028610006, w: 0.9999361} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2/mixamorig:RightHandMiddle3/mixamorig:RightHandMiddle4 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.042047948, y: -0.17182404, z: -0.05555209, w: 0.9826609} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.042047948, y: -0.17182404, z: -0.05555209, w: 0.9826609} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.7276191, y: 0.000097698714, z: -0.08134853, w: 0.68114084} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.7276191, y: 0.000097698714, z: -0.08134853, w: 0.68114084} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.6220816, y: -0.000000010765183, z: -0.06945894, w: 0.7798653} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.6220816, y: -0.000000010765183, z: -0.06945894, w: 0.7798653} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2/mixamorig:RightHandPinky3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.044519056, y: 0.00000002978966, z: 0.000000010072857, w: 0.99900854} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.044519056, y: 0.00000002978966, z: 0.000000010072857, w: 0.99900854} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2/mixamorig:RightHandPinky3/mixamorig:RightHandPinky4 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.107079946, y: 0.31910616, z: 0.92754364, w: 0.16238219} + inSlope: {x: 1.2737522, y: 3.6016343, z: -1.3965814, w: 0.041302886} + outSlope: {x: 1.2737522, y: 3.6016343, z: -1.3965814, w: 0.041302886} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: -0.06462154, y: 0.43916065, z: 0.8809909, w: 0.16375895} + inSlope: {x: 1.0604756, y: 2.4793224, z: -1.0669665, w: 0.18802954} + outSlope: {x: 1.0604756, y: 2.4793224, z: -1.0669665, w: 0.18802954} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: -0.036381572, y: 0.48439434, z: 0.85641253, w: 0.17491749} + inSlope: {x: 0.65421486, y: 0.27064967, z: -0.23805945, w: 0.62099683} + outSlope: {x: 0.65421486, y: 0.27064967, z: -0.23805945, w: 0.62099683} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: -0.02100721, y: 0.45720395, z: 0.8651203, w: 0.20515874} + inSlope: {x: -0.05802752, y: -0.6802444, z: 0.062960364, w: 1.1996287} + outSlope: {x: -0.05802752, y: -0.6802444, z: 0.062960364, w: 1.1996287} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: -0.04025007, y: 0.4390447, z: 0.8606099, w: 0.25489274} + inSlope: {x: -0.7704552, y: -0.6875758, z: 0.009581745, w: 1.0578887} + outSlope: {x: -0.7704552, y: -0.6875758, z: 0.009581745, w: 1.0578887} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.07237089, y: 0.41136557, z: 0.8657591, w: 0.27568465} + inSlope: {x: -1.2535273, y: -0.03417957, z: -0.16916326, w: 0.21656743} + outSlope: {x: -1.2535273, y: -0.03417957, z: -0.16916326, w: 0.21656743} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: -0.12381858, y: 0.4367661, z: 0.84933233, w: 0.26933056} + inSlope: {x: -1.8375541, y: -0.2267184, z: -0.111316934, w: -0.21613327} + outSlope: {x: -1.8375541, y: -0.2267184, z: -0.111316934, w: -0.21613327} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: -0.19487451, y: 0.39625102, z: 0.85833794, w: 0.26127577} + inSlope: {x: -1.5938824, y: -2.37474, z: 0.913252, w: -1.0013119} + outSlope: {x: -1.5938824, y: -2.37474, z: 0.913252, w: -1.0013119} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.2300774, y: 0.2784501, z: 0.9102158, w: 0.20257644} + inSlope: {x: -1.1609206, y: -3.9616122, z: 1.3208432, w: -2.2256813} + outSlope: {x: -1.1609206, y: -3.9616122, z: 1.3208432, w: -2.2256813} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: -0.27226922, y: 0.13214356, z: 0.94639415, w: 0.112897016} + inSlope: {x: 0.059539676, y: -4.8000355, z: 0.9380982, w: -3.4873853} + outSlope: {x: 0.059539676, y: -4.8000355, z: 0.9380982, w: -3.4873853} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.22610809, y: -0.041552257, z: 0.9727557, w: -0.029915886} + inSlope: {x: 0.78399986, y: -4.265116, z: 0.13234645, w: -3.5905147} + outSlope: {x: 0.78399986, y: -4.265116, z: 0.13234645, w: -3.5905147} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: -0.22000256, y: -0.15219751, z: 0.95521724, w: -0.12647061} + inSlope: {x: -0.004260376, y: -0.4106474, z: -0.09030658, w: -1.0069951} + outSlope: {x: -0.004260376, y: -0.4106474, z: -0.09030658, w: -1.0069951} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: -0.22639212, y: -0.06892868, z: 0.96673524, w: -0.09704886} + inSlope: {x: 0.12205916, y: 2.7198367, z: 0.3238346, w: 2.0575578} + outSlope: {x: 0.12205916, y: 2.7198367, z: 0.3238346, w: 2.0575578} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: -0.21186529, y: 0.029124994, z: 0.9768062, w: 0.010699932} + inSlope: {x: 0.9188764, y: 3.3116598, z: 0.0603211, w: 2.737722} + outSlope: {x: 0.9188764, y: 3.3116598, z: 0.0603211, w: 2.737722} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: -0.1651337, y: 0.15184863, z: 0.97075665, w: 0.08546593} + inSlope: {x: 1.5717818, y: 4.349745, z: -0.73895097, w: 2.2752528} + outSlope: {x: 1.5717818, y: 4.349745, z: -0.73895097, w: 2.2752528} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.1070799, y: 0.3191078, z: 0.92754287, w: 0.16238338} + inSlope: {x: 1.7416157, y: 5.01778, z: -1.2964147, w: 2.3075256} + outSlope: {x: 1.7416157, y: 5.01778, z: -1.2964147, w: 2.3075256} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.8175877, y: 0.013005423, z: 0.048523325, w: 0.5736085} + inSlope: {x: 3.269584, y: -0.25755718, z: -0.5290252, w: 3.939303} + outSlope: {x: 3.269584, y: -0.25755718, z: -0.5290252, w: 3.939303} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: -0.70860153, y: 0.0044201836, z: 0.030889152, w: 0.7049186} + inSlope: {x: 4.432203, y: -0.193113, z: -0.69035834, w: 4.189012} + outSlope: {x: 4.432203, y: -0.193113, z: -0.69035834, w: 4.189012} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: -0.5221075, y: 0.0001312233, z: 0.0024994337, w: 0.852876} + inSlope: {x: 5.547236, y: 0.22509113, z: -1.1111479, w: 3.521286} + outSlope: {x: 5.547236, y: 0.22509113, z: -1.1111479, w: 3.521286} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: -0.33878577, y: 0.019426262, z: -0.043187384, w: 0.93967104} + inSlope: {x: 3.5734696, y: 0.3076282, z: -0.6339983, w: 1.574064} + outSlope: {x: 3.5734696, y: 0.3076282, z: -0.6339983, w: 1.574064} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: -0.28387615, y: 0.020639775, z: -0.039767127, w: 0.9578136} + inSlope: {x: 1.0956954, y: -0.0370555, z: 0.12718332, w: 0.3539944} + outSlope: {x: 1.0956954, y: -0.0370555, z: 0.12718332, w: 0.3539944} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.2657394, y: 0.016955895, z: -0.034708496, w: 0.96327066} + inSlope: {x: -2.8403912, y: -0.51697725, z: 0.60634524, w: -1.1547968} + outSlope: {x: -2.8403912, y: -0.51697725, z: 0.60634524, w: -1.1547968} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: -0.47323564, y: -0.01382539, z: 0.0006559058, w: 0.8808271} + inSlope: {x: -5.4654374, y: -0.5186841, z: 1.1497432, w: -2.8213804} + outSlope: {x: -5.4654374, y: -0.5186841, z: 1.1497432, w: -2.8213804} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: -0.630102, y: -0.017623056, z: 0.04194106, w: 0.7751786} + inSlope: {x: -2.860826, y: 0.3819274, z: 0.27286527, w: -2.0007725} + outSlope: {x: -2.860826, y: 0.3819274, z: 0.27286527, w: -2.0007725} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.66395736, y: 0.011636437, z: 0.01884692, w: 0.7474423} + inSlope: {x: 0.67447364, y: 0.54777074, z: -0.6122757, w: 0.5330229} + outSlope: {x: 0.67447364, y: 0.54777074, z: -0.6122757, w: 0.5330229} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: -0.58513707, y: 0.01889499, z: 0.0011226825, w: 0.81071347} + inSlope: {x: 4.7198195, y: 0.85315233, z: -1.0743034, w: 2.7835224} + outSlope: {x: 4.7198195, y: 0.85315233, z: -1.0743034, w: 2.7835224} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.34930274, y: 0.06851326, z: -0.0527733, w: 0.93301046} + inSlope: {x: 4.5826607, y: 0.34225893, z: -0.9816868, w: 2.1949465} + outSlope: {x: 4.5826607, y: 0.34225893, z: -0.9816868, w: 2.1949465} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: -0.27962637, y: 0.041712254, z: -0.0643231, w: 0.95704323} + inSlope: {x: -2.2585568, y: -0.70946884, z: 0.07692112, w: -1.0272553} + outSlope: {x: -2.2585568, y: -0.70946884, z: 0.07692112, w: -1.0272553} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: -0.4998734, y: 0.021215318, z: -0.04764521, w: 0.8645267} + inSlope: {x: -6.906832, y: 0.13328776, z: 0.5150268, w: -4.306552} + outSlope: {x: -6.906832, y: 0.13328776, z: 0.5150268, w: -4.306552} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: -0.740082, y: 0.050598085, z: -0.029987967, w: 0.6699397} + inSlope: {x: -4.6678505, y: 0.12727857, z: 0.8585658, w: -4.206026} + outSlope: {x: -4.6678505, y: 0.12727857, z: 0.8585658, w: -4.206026} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: -0.8110634, y: 0.029700555, z: 0.00959251, w: 0.584125} + inSlope: {x: -1.1625805, y: -0.56388533, z: 1.1776664, w: -1.4449608} + outSlope: {x: -1.1625805, y: -0.56388533, z: 1.1776664, w: -1.4449608} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.8175874, y: 0.013005746, z: 0.0485231, w: 0.573609} + inSlope: {x: -0.1957192, y: -0.5008448, z: 1.1679187, w: -0.31547993} + outSlope: {x: -0.1957192, y: -0.5008448, z: 1.1679187, w: -0.31547993} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.703394, y: -0.05175016, z: -0.020619858, w: 0.7086139} + inSlope: {x: -1.7703741, y: 1.2886077, z: 0.9055594, w: 1.6793953} + outSlope: {x: -1.7703741, y: 1.2886077, z: 0.9055594, w: 1.6793953} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.6443815, y: -0.008796569, z: 0.009565459, w: 0.7645937} + inSlope: {x: -2.6893497, y: 1.0988328, z: 0.77681345, w: 2.132972} + outSlope: {x: -2.6893497, y: 1.0988328, z: 0.77681345, w: 2.132972} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: 0.524104, y: 0.021505365, z: 0.031167708, w: 0.850812} + inSlope: {x: -2.5804386, y: 0.76488113, z: 0.8007052, w: 1.7032866} + outSlope: {x: -2.5804386, y: 0.76488113, z: 0.8007052, w: 1.7032866} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: 0.47235227, y: 0.04219551, z: 0.06294581, w: 0.8781462} + inSlope: {x: -0.60363144, y: 0.24874708, z: 0.5993876, w: 0.30907714} + outSlope: {x: -0.60363144, y: 0.24874708, z: 0.5993876, w: 0.30907714} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.4838619, y: 0.038088508, z: 0.071126886, w: 0.87141716} + inSlope: {x: -0.14146687, y: 0.14314872, z: 0.083929345, w: 0.061253615} + outSlope: {x: -0.14146687, y: 0.14314872, z: 0.083929345, w: 0.061253615} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.46292114, y: 0.051738758, z: 0.0685411, w: 0.88222975} + inSlope: {x: 1.0525041, y: -0.1481013, z: -0.57619756, w: -0.6006196} + outSlope: {x: 1.0525041, y: -0.1481013, z: -0.57619756, w: -0.6006196} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: 0.55402887, y: 0.028215079, z: 0.032713704, w: 0.83137584} + inSlope: {x: 3.7218776, y: -1.200229, z: -1.3494163, w: -2.6996984} + outSlope: {x: 3.7218776, y: -1.200229, z: -1.3494163, w: -2.6996984} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: 0.71104634, y: -0.028276516, z: -0.021419989, w: 0.7022498} + inSlope: {x: 4.0682497, y: -1.0502366, z: -0.9368721, w: -4.0340495} + outSlope: {x: 4.0682497, y: -1.0502366, z: -0.9368721, w: -4.0340495} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.8252455, y: -0.041800693, z: -0.029744439, w: 0.5624392} + inSlope: {x: 2.4368782, y: -0.20526627, z: -0.42061636, w: -3.2966232} + outSlope: {x: 2.4368782, y: -0.20526627, z: -0.42061636, w: -3.2966232} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: 0.8735049, y: -0.041960932, z: -0.049461078, w: 0.48247495} + inSlope: {x: 0.46611968, y: 0.51645434, z: -0.40055308, w: -0.73711133} + outSlope: {x: 0.46611968, y: 0.51645434, z: -0.40055308, w: -0.73711133} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.85632014, y: -0.0073704054, z: -0.056447975, w: 0.51329845} + inSlope: {x: -1.7311497, y: -0.11291039, z: -0.93055093, w: 2.3723788} + outSlope: {x: -1.7311497, y: -0.11291039, z: -0.93055093, w: 2.3723788} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: 0.7580949, y: -0.04948829, z: -0.111497805, w: 0.6406335} + inSlope: {x: -5.762928, y: -0.9569979, z: -0.039441228, w: 5.450507} + outSlope: {x: -5.762928, y: -0.9569979, z: -0.039441228, w: 5.450507} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.47212473, y: -0.07117028, z: -0.059077345, w: 0.8766658} + inSlope: {x: -3.7077823, y: -1.1647886, z: 0.64034146, w: 3.1013675} + outSlope: {x: -3.7077823, y: -1.1647886, z: 0.64034146, w: 3.1013675} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: 0.5109092, y: -0.12714088, z: -0.06880833, w: 0.84739155} + inSlope: {x: 2.1783378, y: -0.558607, z: 0.18127795, w: -1.4834834} + outSlope: {x: 2.1783378, y: -0.558607, z: 0.18127795, w: -1.4834834} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: 0.61734724, y: -0.10841074, z: -0.04699215, w: 0.7777669} + inSlope: {x: 2.8872466, y: 1.1308652, z: 0.7228445, w: -2.0816383} + outSlope: {x: 2.8872466, y: 1.1308652, z: 0.7228445, w: -2.0816383} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.7033922, y: -0.05174992, z: -0.020618726, w: 0.7086157} + inSlope: {x: 2.5813515, y: 1.6998262, z: 0.79120344, w: -2.0745368} + outSlope: {x: 2.5813515, y: 1.6998262, z: 0.79120344, w: -2.0745368} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.5525717, y: 0.0844832, z: -0.117612466, w: 0.82078886} + inSlope: {x: -6.889727, y: -0.6151653, z: -0.030931009, w: 3.4797387} + outSlope: {x: -6.889727, y: -0.6151653, z: -0.030931009, w: 3.4797387} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.32291412, y: 0.06397769, z: -0.1186435, w: 0.93678015} + inSlope: {x: -6.116042, y: -0.34023905, z: 0.14107235, w: 2.4118307} + outSlope: {x: -6.116042, y: -0.34023905, z: 0.14107235, w: 2.4118307} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: 0.14483556, y: 0.061800595, z: -0.10820764, w: 0.9815776} + inSlope: {x: -2.9452834, y: 0.21623619, z: 0.2621431, w: 0.70331} + outSlope: {x: -2.9452834, y: 0.21623619, z: 0.2621431, w: 0.70331} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: 0.1265619, y: 0.07839344, z: -0.10116729, w: 0.9836675} + inSlope: {x: -0.55273205, y: 1.2571621, z: 0.36765283, w: -0.025722392} + outSlope: {x: -0.55273205, y: 1.2571621, z: 0.36765283, w: -0.025722392} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.107986756, y: 0.1456114, z: -0.08369745, w: 0.97986275} + inSlope: {x: 0.6984837, y: 1.1990479, z: 0.24855372, w: -0.22898646} + outSlope: {x: 0.6984837, y: 1.1990479, z: 0.24855372, w: -0.22898646} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.17312747, y: 0.15832996, z: -0.08459704, w: 0.96840173} + inSlope: {x: 1.2235391, y: -0.60776514, z: -0.2711652, w: -0.13429555} + outSlope: {x: 1.2235391, y: -0.60776514, z: -0.2711652, w: -0.13429555} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: 0.18955603, y: 0.10509371, z: -0.10177514, w: 0.9709097} + inSlope: {x: 0.10424484, y: -1.4888239, z: -0.38475272, w: 0.108993344} + outSlope: {x: 0.10424484, y: -1.4888239, z: -0.38475272, w: 0.108993344} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: 0.18007714, y: 0.059075017, z: -0.11024723, w: 0.97566795} + inSlope: {x: -0.14223935, y: -0.6902805, z: -0.12708162, w: 0.07138432} + outSlope: {x: -0.14223935, y: -0.6902805, z: -0.12708162, w: 0.07138432} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.18007341, y: 0.059075013, z: -0.11024725, w: 0.97566867} + inSlope: {x: -0.000027269127, y: -0.0000025704505, z: -0.0000039115553, w: 0.000004470349} + outSlope: {x: -0.000027269127, y: -0.0000025704505, z: -0.0000039115553, w: 0.000004470349} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: 0.18007532, y: 0.059074845, z: -0.11024749, w: 0.97566825} + inSlope: {x: 0.0005558879, y: -0.0000058114533, z: -0.00008258969, w: -0.000111758716} + outSlope: {x: 0.0005558879, y: -0.0000058114533, z: -0.00008258969, w: -0.000111758716} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.18011047, y: 0.059074625, z: -0.11025275, w: 0.9756612} + inSlope: {x: 4.8080397, y: -0.5362744, z: -0.78575563, w: -1.8859462} + outSlope: {x: 4.8080397, y: -0.5362744, z: -0.78575563, w: -1.8859462} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: 0.50061125, y: 0.02332322, z: -0.1626312, w: 0.8499385} + inSlope: {x: 8.939354, y: -1.3894697, z: -0.09897691, w: -5.3526063} + outSlope: {x: 8.939354, y: -1.3894697, z: -0.09897691, w: -5.3526063} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.7760676, y: -0.033556737, z: -0.11685117, w: 0.6188206} + inSlope: {x: -11.134546, y: 1.7231826, z: 2.960115, w: 1.6484306} + outSlope: {x: -11.134546, y: 1.7231826, z: 2.960115, w: 1.6484306} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: -0.2416916, y: 0.138202, z: 0.03470981, w: 0.9598337} + inSlope: {x: -1.3496218, y: 0.5625646, z: 0.36407554, w: 1.5415192} + outSlope: {x: -1.3496218, y: 0.5625646, z: 0.36407554, w: 1.5415192} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: 0.68609285, y: 0.0039475765, z: -0.092579484, w: 0.72158855} + inSlope: {x: 11.913945, y: -0.8057742, z: -2.2848394, w: -2.08567} + outSlope: {x: 11.913945, y: -0.8057742, z: -2.2848394, w: -2.08567} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.55257154, y: 0.08448366, z: -0.11761279, w: 0.8207889} + inSlope: {x: -4.0056434, y: 2.4160848, z: -0.7509998, w: 2.976014} + outSlope: {x: -4.0056434, y: 2.4160848, z: -0.7509998, w: 2.976014} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot/mixamorig:LeftToeBase + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.04573715, y: 0.039433047, z: 0.0727525, w: 0.99552006} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.04573715, y: 0.039433047, z: 0.0727525, w: 0.99552006} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot/mixamorig:LeftToeBase/mixamorig:LeftToe_End + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.01901106, y: 0.3009295, z: 0.93784386, w: 0.1718398} + inSlope: {x: 0.4996425, y: -4.903526, z: 1.45878, w: -2.6987042} + outSlope: {x: 0.4996425, y: -4.903526, z: 1.45878, w: -2.6987042} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.03566581, y: 0.13747862, z: 0.98646986, w: 0.08188299} + inSlope: {x: 0.69814634, y: -5.507387, z: 0.86704993, w: -2.6034508} + outSlope: {x: 0.69814634, y: -5.507387, z: 0.86704993, w: -2.6034508} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: 0.06555415, y: -0.06622967, z: 0.9956472, w: -0.0017235819} + inSlope: {x: -0.8920455, y: -4.474862, z: -0.043120056, w: -2.400034} + outSlope: {x: -0.8920455, y: -4.474862, z: -0.043120056, w: -2.400034} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: -0.023803899, y: -0.16084555, z: 0.9835952, w: -0.07811928} + inSlope: {x: -2.1501272, y: -1.2026236, z: -0.2835175, w: -2.013376} + outSlope: {x: -2.1501272, y: -1.2026236, z: -0.2835175, w: -2.013376} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: -0.07778767, y: -0.1464046, z: 0.976746, w: -0.13594866} + inSlope: {x: -2.1778216, y: 2.068234, z: 0.017910898, w: 0.67327493} + outSlope: {x: -2.1778216, y: 2.068234, z: 0.017910898, w: 0.67327493} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.168992, y: -0.022963282, z: 0.98478925, w: -0.03323428} + inSlope: {x: -2.0124962, y: 4.0913086, z: -0.12077799, w: 2.4480739} + outSlope: {x: -2.0124962, y: 4.0913086, z: -0.12077799, w: 2.4480739} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: -0.2119541, y: 0.12634936, z: 0.96869415, w: 0.02725628} + inSlope: {x: -0.8626071, y: 4.036192, z: -0.66315556, w: 1.3778281} + outSlope: {x: -0.8626071, y: 4.036192, z: -0.66315556, w: 1.3778281} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: -0.22649916, y: 0.24611622, z: 0.9405789, w: 0.058620952} + inSlope: {x: -0.1288493, y: 3.5124505, z: -1.0179521, w: 1.0832615} + outSlope: {x: -0.1288493, y: 3.5124505, z: -1.0179521, w: 1.0832615} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.22054406, y: 0.3605127, z: 0.9008307, w: 0.09947371} + inSlope: {x: 0.8314748, y: 3.0588603, z: -1.1921232, w: 1.5716887} + outSlope: {x: 0.8314748, y: 3.0588603, z: -1.1921232, w: 1.5716887} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: -0.1710675, y: 0.45004022, z: 0.861104, w: 0.16340019} + inSlope: {x: 1.8551105, y: 1.7677529, z: -0.8714292, w: 1.9146552} + outSlope: {x: 1.8551105, y: 1.7677529, z: -0.8714292, w: 1.9146552} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.09687003, y: 0.4783629, z: 0.8427354, w: 0.22711737} + inSlope: {x: 1.761328, y: -0.6583348, z: 0.21301925, w: 1.4026839} + outSlope: {x: 1.761328, y: -0.6583348, z: 0.21301925, w: 1.4026839} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: -0.053645644, y: 0.40615124, z: 0.8753053, w: 0.25691244} + inSlope: {x: 0.36226234, y: -1.2664988, z: 0.58424854, w: 0.33309716} + outSlope: {x: 0.36226234, y: -1.2664988, z: 0.58424854, w: 0.33309716} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: -0.072719224, y: 0.39392963, z: 0.8816853, w: 0.24932384} + inSlope: {x: 0.4770619, y: -1.3419538, z: 0.65351933, w: -0.33894822} + outSlope: {x: 0.4770619, y: -1.3419538, z: 0.65351933, w: -0.33894822} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: -0.021841537, y: 0.31668764, z: 0.91887325, w: 0.23431589} + inSlope: {x: 1.2985834, y: -0.72847056, z: 0.5045191, w: -0.63950974} + outSlope: {x: 1.2985834, y: -0.72847056, z: 0.5045191, w: -0.63950974} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: 0.013852994, y: 0.34536493, z: 0.9153199, w: 0.20668986} + inSlope: {x: 0.612798, y: -0.23638055, z: 0.28456035, w: -0.9371301} + outSlope: {x: 0.612798, y: -0.23638055, z: 0.28456035, w: -0.9371301} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.019011654, y: 0.30092898, z: 0.9378439, w: 0.17184058} + inSlope: {x: 0.15475994, y: -1.3330797, z: 0.67572063, w: -1.0454795} + outSlope: {x: 0.15475994, y: -1.3330797, z: 0.67572063, w: -1.0454795} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.5439208, y: 0.08379169, z: 0.051181637, w: 0.83337235} + inSlope: {x: 0.6387519, y: 0.19120193, z: -0.103262916, w: 0.3918403} + outSlope: {x: 0.6387519, y: 0.19120193, z: -0.103262916, w: 0.3918403} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: -0.5226291, y: 0.090165086, z: 0.04773954, w: 0.8464337} + inSlope: {x: 3.1496165, y: 0.513531, z: -0.2854064, w: 1.518722} + outSlope: {x: 3.1496165, y: 0.513531, z: -0.2854064, w: 1.518722} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: -0.33394638, y: 0.11802709, z: 0.03215454, w: 0.9346205} + inSlope: {x: 3.4295259, y: -0.6047098, z: -1.3207116, w: 1.6083186} + outSlope: {x: 3.4295259, y: -0.6047098, z: -1.3207116, w: 1.6083186} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: -0.293994, y: 0.049851086, z: -0.040307913, w: 0.95365494} + inSlope: {x: -0.8871712, y: -2.2195413, z: -1.597887, w: -0.27934235} + outSlope: {x: -0.8871712, y: -2.2195413, z: -1.597887, w: -0.27934235} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: -0.3930911, y: -0.02994234, z: -0.07437127, w: 0.9159977} + inSlope: {x: -3.7464864, y: -0.87791246, z: 0.34460682, w: -1.719568} + outSlope: {x: -3.7464864, y: -0.87791246, z: 0.34460682, w: -1.719568} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.54375976, y: -0.008676408, z: -0.017334124, w: 0.8390171} + inSlope: {x: -4.45194, y: 0.27650636, z: 1.2907164, w: -2.8839955} + outSlope: {x: -4.45194, y: 0.27650636, z: 1.2907164, w: -2.8839955} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: -0.68988717, y: -0.011508584, z: 0.011676499, w: 0.7237313} + inSlope: {x: -3.028883, y: 0.12162647, z: 0.53575224, w: -2.5945888} + outSlope: {x: -3.028883, y: 0.12162647, z: 0.53575224, w: -2.5945888} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: -0.74568534, y: -0.00056797796, z: 0.018382704, w: 0.6660445} + inSlope: {x: -0.9020627, y: 0.3117867, z: 0.20200646, w: -0.9429691} + outSlope: {x: -0.9020627, y: 0.3117867, z: 0.20200646, w: -0.9429691} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.7500247, y: 0.009277197, z: 0.025143595, w: 0.6608667} + inSlope: {x: 1.0462387, y: 0.4697793, z: 0.3444562, w: 1.0366837} + outSlope: {x: 1.0462387, y: 0.4697793, z: 0.3444562, w: 1.0366837} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: -0.6759361, y: 0.030750642, z: 0.04134645, w: 0.7351567} + inSlope: {x: 3.6156974, y: 0.96628463, z: 0.38245416, w: 2.9288373} + outSlope: {x: 3.6156974, y: 0.96628463, z: 0.38245416, w: 2.9288373} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.5089782, y: 0.07369617, z: 0.05064054, w: 0.8561225} + inSlope: {x: 6.7764063, y: 0.99297094, z: 0.2236839, w: 3.493867} + outSlope: {x: 6.7764063, y: 0.99297094, z: 0.2236839, w: 3.493867} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: -0.22417569, y: 0.0969487, z: 0.05625871, w: 0.9680812} + inSlope: {x: 4.8557544, y: 0.010646999, z: 0.20835222, w: 1.8242812} + outSlope: {x: 4.8557544, y: 0.010646999, z: 0.20835222, w: 1.8242812} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: -0.18526119, y: 0.074405946, z: 0.06453069, w: 0.97774124} + inSlope: {x: 0.8315161, y: -0.3069782, z: -0.1896376, w: 0.20458359} + outSlope: {x: 0.8315161, y: -0.3069782, z: -0.1896376, w: 0.20458359} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: -0.16874126, y: 0.076483466, z: 0.04361621, w: 0.9817201} + inSlope: {x: -3.7480333, y: 0.1300087, z: -0.115757614, w: -1.2452425} + outSlope: {x: -3.7480333, y: 0.1300087, z: -0.115757614, w: -1.2452425} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: -0.43513006, y: 0.08307319, z: 0.05681352, w: 0.8947251} + inSlope: {x: -5.6276855, y: 0.10962145, z: 0.11347978, w: -2.22521} + outSlope: {x: -5.6276855, y: 0.10962145, z: 0.11347978, w: -2.22521} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.54392016, y: 0.08379156, z: 0.051181532, w: 0.83337283} + inSlope: {x: -3.2637062, y: 0.021551123, z: -0.16895977, w: -1.8405694} + outSlope: {x: -3.2637062, y: 0.021551123, z: -0.16895977, w: -1.8405694} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.7290955, y: -0.037055176, z: 0.10668016, w: 0.67503035} + inSlope: {x: 2.556288, y: -0.43149307, z: -1.2586739, w: -3.015341} + outSlope: {x: 2.556288, y: -0.43149307, z: -1.2586739, w: -3.015341} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.8143051, y: -0.05143828, z: 0.06472436, w: 0.574519} + inSlope: {x: 1.3840384, y: -0.1443102, z: -1.4139287, w: -1.6001343} + outSlope: {x: 1.3840384, y: -0.1443102, z: -1.4139287, w: -1.6001343} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: 0.82136476, y: -0.046675857, z: 0.012418239, w: 0.5683547} + inSlope: {x: -0.6607835, y: 0.7253321, z: -1.1560339, w: 0.9463896} + outSlope: {x: -0.6607835, y: 0.7253321, z: -1.1560339, w: 0.9463896} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: 0.7702529, y: -0.0030827993, z: -0.012344572, w: 0.6376116} + inSlope: {x: -3.0386353, y: 1.2866621, z: -0.38527814, w: 3.2417483} + outSlope: {x: -3.0386353, y: 1.2866621, z: -0.38527814, w: 3.2417483} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.6187891, y: 0.03910162, z: -0.013266973, w: 0.7844713} + inSlope: {x: -4.707099, y: 0.13717476, z: 0.63429445, w: 3.7742214} + outSlope: {x: -4.707099, y: 0.13717476, z: 0.63429445, w: 3.7742214} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.4564463, y: 0.0060621784, z: 0.02994172, w: 0.8892264} + inSlope: {x: -2.404694, y: -1.0535803, z: 0.25209698, w: 1.5552415} + outSlope: {x: -2.404694, y: -1.0535803, z: 0.25209698, w: 1.5552415} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: 0.45847616, y: -0.031137079, z: 0.0035394777, w: 0.88815403} + inSlope: {x: 0.8269733, y: -0.91624516, z: -0.78184676, w: -0.48059735} + outSlope: {x: 0.8269733, y: -0.91624516, z: -0.78184676, w: -0.48059735} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: 0.51157784, y: -0.055020846, z: -0.022181403, w: 0.85718656} + inSlope: {x: 1.269938, y: -0.9302725, z: -0.7100838, w: -0.8226738} + outSlope: {x: 1.269938, y: -0.9302725, z: -0.7100838, w: -0.8226738} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.5431387, y: -0.09315524, z: -0.043799438, w: 0.8333091} + inSlope: {x: 0.04987657, y: -1.2291654, z: -0.4351704, w: -0.1875052} + outSlope: {x: 0.04987657, y: -1.2291654, z: -0.4351704, w: -0.1875052} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: 0.51490295, y: -0.1369652, z: -0.05119276, w: 0.8446862} + inSlope: {x: -0.7589159, y: -1.3409655, z: 0.115032524, w: 0.25273743} + outSlope: {x: -0.7589159, y: -1.3409655, z: 0.115032524, w: 0.25273743} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.4925443, y: -0.18255293, z: -0.036130603, w: 0.8501583} + inSlope: {x: -0.98192596, y: -0.55975825, z: 0.5703715, w: 0.4703817} + outSlope: {x: -0.98192596, y: -0.55975825, z: 0.5703715, w: 0.4703817} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: 0.44944122, y: -0.17428242, z: -0.013167997, w: 0.876045} + inSlope: {x: 0.8429223, y: 0.6138446, z: 1.0455427, w: -0.4040008} + outSlope: {x: 0.8429223, y: 0.6138446, z: 1.0455427, w: -0.4040008} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.5487392, y: -0.14162993, z: 0.033572286, w: 0.82322484} + inSlope: {x: 0.18096149, y: 2.9311404, z: 2.6344852, w: -0.06250012} + outSlope: {x: 0.18096149, y: 2.9311404, z: 2.6344852, w: -0.06250012} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: 0.4615054, y: 0.021126963, z: 0.16246438, w: 0.87187827} + inSlope: {x: 0.571602, y: 1.8571208, z: 1.5089248, w: -0.37377393} + outSlope: {x: 0.571602, y: 1.8571208, z: 1.5089248, w: -0.37377393} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: 0.586846, y: -0.017821888, z: 0.13416727, w: 0.7983066} + inSlope: {x: 4.0138607, y: -0.8727174, z: -0.83675265, w: -2.9527287} + outSlope: {x: 4.0138607, y: -0.8727174, z: -0.83675265, w: -2.9527287} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.729096, y: -0.037054177, z: 0.1066809, w: 0.6750298} + inSlope: {x: 4.267504, y: -0.57696927, z: -0.8245919, w: -3.6983066} + outSlope: {x: 4.267504, y: -0.57696927, z: -0.8245919, w: -3.6983066} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.18521775, y: -0.04736608, z: 0.11794151, w: 0.97444373} + inSlope: {x: -0.000002235174, y: 0.0000002235174, z: 0.00001564622, w: 0} + outSlope: {x: -0.000002235174, y: 0.0000002235174, z: 0.00001564622, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.18521768, y: -0.04736607, z: 0.117942035, w: 0.97444373} + inSlope: {x: 0.0000017881392, y: -0.0000037439167, z: 0.000006482005, w: -0.0000008940696} + outSlope: {x: 0.0000017881392, y: -0.0000037439167, z: 0.000006482005, w: -0.0000008940696} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: 0.18521787, y: -0.04736633, z: 0.117941946, w: 0.9744437} + inSlope: {x: 3.1820023, y: -1.2520077, z: 0.5465666, w: -1.1905107} + outSlope: {x: 3.1820023, y: -1.2520077, z: 0.5465666, w: -1.1905107} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: 0.3973512, y: -0.13083327, z: 0.15437981, w: 0.89507633} + inSlope: {x: 4.4837976, y: -2.8444266, z: -0.21606195, w: -2.078197} + outSlope: {x: 4.4837976, y: -2.8444266, z: -0.21606195, w: -2.078197} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.48413774, y: -0.23699479, z: 0.10353783, w: 0.8358972} + inSlope: {x: 2.915016, y: -3.8298907, z: -0.67862296, w: -2.9381733} + outSlope: {x: 2.915016, y: -3.8298907, z: -0.67862296, w: -2.9381733} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.5916856, y: -0.3861593, z: 0.10913829, w: 0.6991981} + inSlope: {x: 0.8445283, y: -2.716042, z: 0.014127791, w: -1.6986227} + outSlope: {x: 0.8445283, y: -2.716042, z: 0.014127791, w: -1.6986227} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: 0.5404396, y: -0.41806427, z: 0.10447968, w: 0.7226557} + inSlope: {x: -0.46451357, y: 0.9793669, z: 0.16342972, w: 0.8191912} + outSlope: {x: -0.46451357, y: 0.9793669, z: 0.16342972, w: 0.8191912} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: 0.560718, y: -0.3208682, z: 0.1200336, w: 0.7538109} + inSlope: {x: -0.62707007, y: 3.3529713, z: 0.030309975, w: 1.7295725} + outSlope: {x: -0.62707007, y: 3.3529713, z: 0.030309975, w: 1.7295725} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.49863493, y: -0.19453286, z: 0.10650034, w: 0.83796054} + inSlope: {x: -2.623767, y: 3.9466095, z: -0.20543922, w: 2.4120097} + outSlope: {x: -2.623767, y: 3.9466095, z: -0.20543922, w: 2.4120097} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: 0.3858002, y: -0.057760905, z: 0.10633765, w: 0.9146115} + inSlope: {x: -4.940931, y: 1.9387362, z: -0.1404408, w: 2.1096103} + outSlope: {x: -4.940931, y: 1.9387362, z: -0.1404408, w: 2.1096103} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.16923958, y: -0.065283775, z: 0.09713762, w: 0.9786012} + inSlope: {x: -3.41887, y: -0.490474, z: -0.1996052, w: 0.9642703} + outSlope: {x: -3.41887, y: -0.490474, z: -0.1996052, w: 0.9642703} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: 0.15787557, y: -0.09045917, z: 0.09303064, w: 0.9788962} + inSlope: {x: -0.029573724, y: -0.3285955, z: -0.0032721236, w: -0.020204166} + outSlope: {x: -0.029573724, y: -0.3285955, z: -0.0032721236, w: -0.020204166} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.16726801, y: -0.08719014, z: 0.096919484, w: 0.9772543} + inSlope: {x: 0.34936857, y: 0.45655203, z: 0.27715954, w: -0.0544676} + outSlope: {x: 0.34936857, y: 0.45655203, z: 0.27715954, w: -0.0544676} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: 0.18116681, y: -0.060022365, z: 0.111507945, w: 0.975265} + inSlope: {x: 0.26924887, y: 0.5973507, z: 0.31535673, w: -0.042161647} + outSlope: {x: 0.26924887, y: 0.5973507, z: 0.31535673, w: -0.042161647} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.18521787, y: -0.04736631, z: 0.117942005, w: 0.9744437} + inSlope: {x: -0.000001788141, y: 0.000013411058, z: -0.00003777448, w: 0.000005364423} + outSlope: {x: -0.000001788141, y: 0.000013411058, z: -0.00003777448, w: 0.000005364423} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot/mixamorig:RightToeBase + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.04573715, y: -0.039433047, z: -0.0727525, w: 0.99552006} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.04573715, y: -0.039433047, z: -0.0727525, w: 0.99552006} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot/mixamorig:RightToeBase/mixamorig:RightToe_End + m_CompressedRotationCurves: [] + m_EulerCurves: [] + m_PositionCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.00030521367, y: 0.014879891, z: 0.00017620277} + inSlope: {x: 0.009457771, y: 0.008102423, z: -0.0042272257} + outSlope: {x: 0.009457771, y: 0.008102423, z: -0.0042272257} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.000010045371, y: 0.01514997, z: 0.000035295194} + inSlope: {x: 0.008146013, y: 0.0061892834, z: -0.0023308198} + outSlope: {x: 0.008146015, y: 0.006189664, z: -0.002330821} + tangentMode: 0 + weightedMode: 0 + 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.00023785402, y: 0.01529251, z: 0.000020814676} + inSlope: {x: 0.0061041205, y: 0.0037463843, z: 0.0014780846} + outSlope: {x: 0.0061041215, y: 0.003746133, z: 0.0014780839} + tangentMode: 0 + weightedMode: 0 + 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.0004169868, y: 0.0153997205, z: 0.00013383415} + inSlope: {x: 0.0016134573, y: 0.0045787245, z: 0.00018072389} + outSlope: {x: 0.0016134572, y: 0.0045786905, z: 0.00018073582} + tangentMode: 0 + weightedMode: 0 + 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.00034541756, y: 0.01559775, z: 0.000032862965} + inSlope: {x: -0.0045591453, y: 0.0033436827, z: 0.006210971} + outSlope: {x: -0.0045591635, y: 0.003343526, z: 0.0062110126} + tangentMode: 0 + weightedMode: 0 + 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.00011304352, y: 0.0156226205, z: 0.00054789864} + inSlope: {x: -0.006437766, y: -0.0018207909, z: 0.00493914} + outSlope: {x: -0.006437764, y: -0.0018205042, z: 0.004939094} + tangentMode: 0 + weightedMode: 0 + 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.00008376573, y: 0.015476374, z: 0.0003621364} + inSlope: {x: -0.0065020435, y: -0.007323375, z: -0.0070079807} + outSlope: {x: -0.0065020462, y: -0.0073235207, z: -0.0070079933} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.23333333 + value: {x: -0.00032042505, y: 0.015134397, z: 0.00008070068} + inSlope: {x: -0.007129127, y: -0.005266139, z: -0.0070496476} + outSlope: {x: -0.0071290936, y: -0.0052662147, z: -0.007049608} + tangentMode: 0 + weightedMode: 0 + 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.0005590398, y: 0.015125289, z: -0.00010783844} + inSlope: {x: -0.006631257, y: 0.004063441, z: -0.003993589} + outSlope: {x: -0.0066312873, y: 0.00406344, z: -0.003993614} + tangentMode: 0 + weightedMode: 0 + 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.0007625113, y: 0.015405285, z: -0.00018554054} + inSlope: {x: -0.004728457, y: 0.00874547, z: -0.0020920886} + outSlope: {x: -0.0047284807, y: 0.008745462, z: -0.0020920995} + tangentMode: 0 + weightedMode: 0 + 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.00087427284, y: 0.015708312, z: -0.00024731178} + inSlope: {x: -0.0010310875, y: 0.00652885, z: 0.004122446} + outSlope: {x: -0.0010311012, y: 0.006528663, z: 0.004122424} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: -0.0008312515, y: 0.01584053, z: 0.00008928882} + inSlope: {x: 0.0010341146, y: -0.0016242305, z: 0.012172403} + outSlope: {x: 0.0010341101, y: -0.0016242528, z: 0.012172397} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.4 + value: {x: -0.0008053317, y: 0.015600031, z: 0.0005641845} + inSlope: {x: -0.0019524338, y: -0.0078238165, z: 0.010165895} + outSlope: {x: -0.0019524087, y: -0.007823688, z: 0.010165943} + tangentMode: 0 + weightedMode: 0 + 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.0009614133, y: 0.015318948, z: 0.00076701917} + inSlope: {x: 0.0020896697, y: -0.0082409205, z: -0.0008987393} + outSlope: {x: 0.0020896136, y: -0.008240867, z: -0.0008986902} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.46666667 + value: {x: -0.0006660217, y: 0.015050633, z: 0.0005042695} + inSlope: {x: 0.009842879, y: -0.006585731, z: -0.008862121} + outSlope: {x: 0.009842868, y: -0.0065859365, z: -0.008862111} + tangentMode: 0 + weightedMode: 0 + 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.0003052192, y: 0.014879896, z: 0.00017620903} + inSlope: {x: 0.010824043, y: -0.005122217, z: -0.009841782} + outSlope: {x: 0.010824043, y: -0.005122217, z: -0.009841782} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips + m_ScaleCurves: [] + m_FloatCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 136 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_Weight + path: Idle Rig + classID: 114 + script: {fileID: 11500000, guid: 70b342d8ce5c2fd48b8fa3147d48d1d1, type: 3} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 136 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_Weight + path: WalkRig + classID: 114 + script: {fileID: 11500000, guid: 70b342d8ce5c2fd48b8fa3147d48d1d1, type: 3} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 136 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_Weight + path: Run Rig + classID: 114 + script: {fileID: 11500000, guid: 70b342d8ce5c2fd48b8fa3147d48d1d1, type: 3} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 136 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_Weight + path: Idle Aim Rig + classID: 114 + script: {fileID: 11500000, guid: 70b342d8ce5c2fd48b8fa3147d48d1d1, type: 3} + m_PPtrCurves: [] + m_SampleRate: 30 + 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: 4246725184 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 4246725184 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2306959401 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1873754471 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 506438108 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 629695243 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3507322457 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 863042527 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 4130676776 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2755413591 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3610507355 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 947492321 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1546517516 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3922524256 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3305817214 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1738789858 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3939473511 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2888714343 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 892423909 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2260115849 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 132937013 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2908942433 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3655212101 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2476962736 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 437649083 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2180861050 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 179915474 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1022168924 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3744267370 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 946238039 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2475629556 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1518235680 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 894090943 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3254654169 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1999565813 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 753291581 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3523356279 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2700601040 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3296194372 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2965308236 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 4081307055 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3771663227 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1504511970 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1718806592 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3714807079 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3971764881 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 4190678188 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 14784316 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 343860266 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1088794668 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1174220668 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 951947925 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1513986479 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3680013817 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 484251622 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3928024144 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2803917393 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1872214036 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 4180044095 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2091146011 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2120146506 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2853054640 + attribute: 1257374345 + script: {fileID: 11500000, guid: 70b342d8ce5c2fd48b8fa3147d48d1d1, type: 3} + typeID: 114 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 8577085 + attribute: 1257374345 + script: {fileID: 11500000, guid: 70b342d8ce5c2fd48b8fa3147d48d1d1, type: 3} + typeID: 114 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 4230480715 + attribute: 1257374345 + script: {fileID: 11500000, guid: 70b342d8ce5c2fd48b8fa3147d48d1d1, type: 3} + typeID: 114 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 378343073 + attribute: 1257374345 + script: {fileID: 11500000, guid: 70b342d8ce5c2fd48b8fa3147d48d1d1, type: 3} + typeID: 114 + 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: 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: 0.033333335 + value: 0 + inSlope: 0 + 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: jammo_mixamo_rig + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_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.033333335 + value: -0 + inSlope: 0 + 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: jammo_mixamo_rig + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_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.033333335 + value: -0 + inSlope: 0 + 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: jammo_mixamo_rig + 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.033333335 + value: 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: jammo_mixamo_rig + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.022680292 + inSlope: -0.81112957 + outSlope: -0.81112957 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.004357362 + inSlope: -0.28599083 + outSlope: -0.28599083 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.003614234 + inSlope: 0.221726 + outSlope: 0.221726 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.019722188 + inSlope: -0.084478915 + outSlope: -0.084478915 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.008625967 + inSlope: 0.29890603 + outSlope: 0.29890603 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.064789705 + inSlope: 0.05517499 + outSlope: 0.05517499 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.05235557 + inSlope: -0.6683786 + outSlope: -0.6683786 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.020231126 + inSlope: -0.6472509 + outSlope: -0.6472509 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.022680324 + inSlope: 0.40424472 + outSlope: 0.40424472 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: jammo_mixamo_rig/mixamorig:Hips + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.29311565 + inSlope: -0.92424625 + outSlope: -0.92424625 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.26230744 + inSlope: -0.59490097 + outSlope: -0.59490097 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.25345558 + inSlope: 0.062942475 + outSlope: 0.062942475 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.31203863 + inSlope: 0.5283598 + outSlope: 0.5283598 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.35508054 + inSlope: 0.2651328 + outSlope: 0.2651328 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.3406867 + inSlope: -0.58581877 + outSlope: -0.58581877 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.31598735 + inSlope: -0.6176686 + outSlope: -0.6176686 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.29950878 + inSlope: -0.35112488 + outSlope: -0.35112488 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.29311565 + inSlope: 0.016098633 + outSlope: 0.016098633 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: jammo_mixamo_rig/mixamorig:Hips + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.04740193 + inSlope: -0.32861206 + outSlope: -0.32861206 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.036448196 + inSlope: -0.08495126 + outSlope: -0.08495126 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.041738514 + inSlope: 0.36254814 + outSlope: 0.36254814 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.11067214 + inSlope: 0.43090412 + outSlope: 0.43090412 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.11158483 + inSlope: -0.14404224 + outSlope: -0.14404224 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.07917241 + inSlope: -0.7013638 + outSlope: -0.7013638 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.049806733 + inSlope: -0.6328532 + outSlope: -0.6328532 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.03698217 + inSlope: -0.20415601 + outSlope: -0.20415601 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.047402073 + inSlope: 0.33617252 + outSlope: 0.33617252 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: jammo_mixamo_rig/mixamorig:Hips + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9546318 + inSlope: 0.2896249 + outSlope: 0.2896249 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.96428597 + inSlope: 0.1771143 + outSlope: 0.1771143 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.9664394 + inSlope: -0.036249146 + outSlope: -0.036249146 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.94339526 + inSlope: -0.2187511 + outSlope: -0.2187511 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.9281122 + inSlope: -0.08440734 + outSlope: -0.08440734 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.93459433 + inSlope: 0.2614902 + outSlope: 0.2614902 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.9460075 + inSlope: 0.27851328 + outSlope: 0.27851328 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.9531619 + inSlope: 0.142563 + outSlope: 0.142563 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.9546318 + inSlope: -0.026396539 + outSlope: -0.026396539 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: jammo_mixamo_rig/mixamorig:Hips + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.09465624 + inSlope: 0.33911076 + outSlope: 0.33911076 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.111442804 + inSlope: 0.10154864 + outSlope: 0.10154864 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.120397314 + inSlope: 0.31634802 + outSlope: 0.31634802 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.15669262 + inSlope: -0.12421668 + outSlope: -0.12421668 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.09227141 + inSlope: -0.43796557 + outSlope: -0.43796557 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.08638746 + inSlope: 0.049566418 + outSlope: 0.049566418 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.10114478 + inSlope: -0.013234325 + outSlope: -0.013234325 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.09469355 + inSlope: -0.1935372 + outSlope: -0.1935372 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.012179229 + inSlope: 0.06029072 + outSlope: 0.06029072 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.006178927 + inSlope: -0.20157287 + outSlope: -0.20157287 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.0011778391 + inSlope: 0.0059026643 + outSlope: 0.0059026643 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.0041997433 + inSlope: 0.13081126 + outSlope: 0.13081126 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.03464122 + inSlope: 0.27824003 + outSlope: 0.27824003 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.040636063 + inSlope: -0.15906033 + outSlope: -0.15906033 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.0127630215 + inSlope: -0.1777051 + outSlope: -0.1777051 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.012190199 + inSlope: -0.017184678 + outSlope: -0.017184678 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0039356323 + inSlope: 0.75248307 + outSlope: 0.75248307 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.040642094 + inSlope: 0.13255776 + outSlope: 0.13255776 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.0203098 + inSlope: -0.16674247 + outSlope: -0.16674247 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.004929587 + inSlope: -0.6167965 + outSlope: -0.6167965 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.049991384 + inSlope: 0.29220235 + outSlope: 0.29220235 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.029975021 + inSlope: 0.48784423 + outSlope: 0.48784423 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.006898133 + inSlope: 0.32111335 + outSlope: 0.32111335 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.003939127 + inSlope: 0.32511812 + outSlope: 0.32511812 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9954277 + inSlope: -0.04746258 + outSlope: -0.04746258 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.9929202 + inSlope: -0.014124512 + outSlope: -0.014124512 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.99251735 + inSlope: -0.035853077 + outSlope: -0.035853077 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.9876262 + inSlope: 0.011981429 + outSlope: 0.011981429 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.99387467 + inSlope: 0.04742055 + outSlope: 0.04742055 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.9949811 + inSlope: 0.016558157 + outSlope: 0.016558157 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.99476594 + inSlope: 0.006682286 + outSlope: 0.006682286 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.99542403 + inSlope: 0.019742865 + outSlope: 0.019742865 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.12492034 + inSlope: -0.07406383 + outSlope: -0.07406383 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.12737605 + inSlope: 0.09253207 + outSlope: 0.09253207 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.1311422 + inSlope: -0.1295022 + outSlope: -0.1295022 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.12494931 + inSlope: 0.13414034 + outSlope: 0.13414034 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.12648068 + inSlope: -0.079747796 + outSlope: -0.079747796 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.124876104 + inSlope: -0.048137426 + outSlope: -0.048137426 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.011708748 + inSlope: -0.10112126 + outSlope: -0.10112126 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.0025975448 + inSlope: 0.047011122 + outSlope: 0.047011122 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.02741095 + inSlope: 0.37966287 + outSlope: 0.37966287 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.059540812 + inSlope: 0.044728518 + outSlope: 0.044728518 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.023495091 + inSlope: -0.417691 + outSlope: -0.417691 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.011725906 + inSlope: -0.3530759 + outSlope: -0.3530759 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.056047905 + inSlope: -0.12409396 + outSlope: -0.12409396 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.05801259 + inSlope: 0.06287131 + outSlope: 0.06287131 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.055943158 + inSlope: 0.06727433 + outSlope: 0.06727433 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.06452105 + inSlope: -0.043829005 + outSlope: -0.043829005 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.05157561 + inSlope: -0.0061797574 + outSlope: -0.0061797574 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.05604798 + inSlope: -0.13417126 + outSlope: -0.13417126 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.99051327 + inSlope: 0.0029897687 + outSlope: 0.0029897687 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.9901531 + inSlope: -0.008215605 + outSlope: -0.008215605 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.9894042 + inSlope: 0.010169149 + outSlope: 0.010169149 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.988271 + inSlope: -0.02223551 + outSlope: -0.02223551 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.9903487 + inSlope: 0.020750467 + outSlope: 0.020750467 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.9905186 + inSlope: 0.00509799 + outSlope: 0.00509799 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.113522045 + inSlope: -0.03762826 + outSlope: -0.03762826 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.11515011 + inSlope: 0.037768405 + outSlope: 0.037768405 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.11505713 + inSlope: 0.005281269 + outSlope: 0.005281269 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.10222418 + inSlope: -0.0019162148 + outSlope: -0.0019162148 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.11363093 + inSlope: 0.14799291 + outSlope: 0.14799291 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.11390127 + inSlope: -0.036766946 + outSlope: -0.036766946 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.11347834 + inSlope: -0.012687978 + outSlope: -0.012687978 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0008706437 + inSlope: -0.16219917 + outSlope: -0.16219917 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.0155298095 + inSlope: 0.071498424 + outSlope: 0.071498424 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.0034371621 + inSlope: 0.14856534 + outSlope: 0.14856534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.043605007 + inSlope: 0.28827494 + outSlope: 0.28827494 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.046626937 + inSlope: -0.3059256 + outSlope: -0.3059256 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.013694604 + inSlope: -0.44412562 + outSlope: -0.44412562 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.00088931323 + inSlope: -0.3841591 + outSlope: -0.3841591 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.05066703 + inSlope: -0.039211433 + outSlope: -0.039211433 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.054159738 + inSlope: -0.073341206 + outSlope: -0.073341206 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.06891479 + inSlope: -0.10434215 + outSlope: -0.10434215 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.070846036 + inSlope: -0.08323499 + outSlope: -0.08323499 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.06674795 + inSlope: 0.26924488 + outSlope: 0.26924488 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.047795568 + inSlope: 0.06613994 + outSlope: 0.06613994 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.050670248 + inSlope: -0.08624048 + outSlope: -0.08624048 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.99224234 + inSlope: 0.0019544363 + outSlope: 0.0019544363 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.991749 + inSlope: -0.007606744 + outSlope: -0.007606744 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.9909595 + inSlope: -0.0075870734 + outSlope: -0.0075870734 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.9912768 + inSlope: -0.017705264 + outSlope: -0.017705264 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.99018115 + inSlope: 0.013392273 + outSlope: 0.013392273 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.9922472 + inSlope: 0.014806689 + outSlope: 0.014806689 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.99224716 + inSlope: -0.000001788141 + outSlope: -0.000001788141 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.12318041 + inSlope: 0.16918121 + outSlope: 0.16918121 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.12014357 + inSlope: -0.077595085 + outSlope: -0.077595085 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.119539864 + inSlope: 0.076278344 + outSlope: 0.076278344 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.12511785 + inSlope: -0.05445461 + outSlope: -0.05445461 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.12317513 + inSlope: 0.028981967 + outSlope: 0.028981967 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.032393534 + inSlope: 0.15257086 + outSlope: 0.15257086 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.03268557 + inSlope: -0.17836216 + outSlope: -0.17836216 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.048973612 + inSlope: -0.1340082 + outSlope: -0.1340082 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.052683916 + inSlope: 0.23774832 + outSlope: 0.23774832 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.03239179 + inSlope: 0.06530034 + outSlope: 0.06530034 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.03312171 + inSlope: -0.016404502 + outSlope: -0.016404502 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.026309988 + inSlope: -0.05268784 + outSlope: -0.05268784 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.03506454 + inSlope: 0.14079005 + outSlope: 0.14079005 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.04228588 + inSlope: -0.06898858 + outSlope: -0.06898858 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.033129018 + inSlope: -0.07507276 + outSlope: -0.07507276 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9913023 + inSlope: 0.02566695 + outSlope: 0.02566695 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.99186945 + inSlope: -0.013756157 + outSlope: -0.013756157 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.99100065 + inSlope: -0.0021573901 + outSlope: -0.0021573901 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.9898393 + inSlope: 0.008091332 + outSlope: 0.008091332 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.9913028 + inSlope: 0.008425721 + outSlope: 0.008425721 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.033647284 + inSlope: 0.8005882 + outSlope: 0.8005882 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.060333557 + inSlope: 0.40091693 + outSlope: 0.40091693 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.0548521 + inSlope: -0.2595173 + outSlope: -0.2595173 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.02828319 + inSlope: -0.34441924 + outSlope: -0.34441924 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.031981148 + inSlope: 0.5768131 + outSlope: 0.5768131 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.058566846 + inSlope: 0.5318881 + outSlope: 0.5318881 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.060163144 + inSlope: -0.38302684 + outSlope: -0.38302684 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.042442627 + inSlope: -0.32804877 + outSlope: -0.32804877 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.03693164 + inSlope: -0.069765925 + outSlope: -0.069765925 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.033642154 + inSlope: -0.09868471 + outSlope: -0.09868471 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.23349158 + inSlope: 0.7112458 + outSlope: 0.7112458 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.20978339 + inSlope: 0.54617816 + outSlope: 0.54617816 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.20964433 + inSlope: -0.6994799 + outSlope: -0.6994799 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.26931188 + inSlope: -0.5603114 + outSlope: -0.5603114 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.2936517 + inSlope: -0.40863547 + outSlope: -0.40863547 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.30830815 + inSlope: -0.44193554 + outSlope: -0.44193554 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.33595538 + inSlope: 0.3168245 + outSlope: 0.3168245 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.31375372 + inSlope: 0.9963175 + outSlope: 0.9963175 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.23987538 + inSlope: 0.54062504 + outSlope: 0.54062504 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.23349254 + inSlope: 0.19148532 + outSlope: 0.19148532 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.061714523 + inSlope: -0.40079096 + outSlope: -0.40079096 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.048354823 + inSlope: -0.4369435 + outSlope: -0.4369435 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.025393592 + inSlope: -0.106531925 + outSlope: -0.106531925 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.02867343 + inSlope: 0.22621222 + outSlope: 0.22621222 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.061131213 + inSlope: 0.694551 + outSlope: 0.694551 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.08686704 + inSlope: 0.72124165 + outSlope: 0.72124165 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.14113018 + inSlope: 0.025228769 + outSlope: 0.025228769 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.13142537 + inSlope: -0.5772503 + outSlope: -0.5772503 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.076101065 + inSlope: -0.6140727 + outSlope: -0.6140727 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.061708655 + inSlope: -0.4317727 + outSlope: -0.4317727 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9698149 + inSlope: 0.14613031 + outSlope: 0.14613031 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.9746859 + inSlope: 0.122536704 + outSlope: 0.122536704 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.9759076 + inSlope: -0.14142662 + outSlope: -0.14142662 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.9622105 + inSlope: -0.14903514 + outSlope: -0.14903514 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.95341957 + inSlope: -0.19679905 + outSlope: -0.19679905 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.94549996 + inSlope: -0.23707242 + outSlope: -0.23707242 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.92929906 + inSlope: 0.128973 + outSlope: 0.128973 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.9394065 + inSlope: 0.41159204 + outSlope: 0.41159204 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.9671114 + inSlope: 0.19615 + outSlope: 0.19615 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.9698152 + inSlope: 0.08111365 + outSlope: 0.08111365 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.06928724 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.06928724 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head/mixamorig:HeadTop_End + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_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.033333335 + value: 0 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head/mixamorig:HeadTop_End + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_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.033333335 + value: -0 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head/mixamorig:HeadTop_End + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.99759674 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.99759674 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head/mixamorig:HeadTop_End + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.40506425 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.40506425 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head/mixamorig:LeftEar + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.45798013 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.45798013 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head/mixamorig:LeftEar + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.59357256 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.59357256 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head/mixamorig:LeftEar + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.5233056 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.5233056 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head/mixamorig:LeftEar + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.40506425 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.40506425 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head/mixamorig:RightEar + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.45798013 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.45798013 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head/mixamorig:RightEar + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.59357256 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.59357256 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head/mixamorig:RightEar + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.5233056 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.5233056 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head/mixamorig:RightEar + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.5343876 + inSlope: 0.7675641 + outSlope: 0.7675641 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.55997306 + inSlope: 0.52721673 + outSlope: 0.52721673 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.570687 + inSlope: 0.045829117 + outSlope: 0.045829117 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.57259065 + inSlope: -0.21591426 + outSlope: -0.21591426 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.5359183 + inSlope: -0.6400626 + outSlope: -0.6400626 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.4925736 + inSlope: -0.66243774 + outSlope: -0.66243774 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.43881097 + inSlope: -0.08409269 + outSlope: -0.08409269 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.44360253 + inSlope: 0.6882177 + outSlope: 0.6882177 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.48469216 + inSlope: 1.0772445 + outSlope: 1.0772445 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.5154188 + inSlope: 0.7454282 + outSlope: 0.7454282 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.53438735 + inSlope: 0.5690562 + outSlope: 0.5690562 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.48166934 + inSlope: 1.4743172 + outSlope: 1.4743172 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.43252543 + inSlope: 1.0478925 + outSlope: 1.0478925 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.40805957 + inSlope: 0.120541155 + outSlope: 0.120541155 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.40377375 + inSlope: -0.16198173 + outSlope: -0.16198173 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.435937 + inSlope: -0.5116447 + outSlope: -0.5116447 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.47215673 + inSlope: -0.7451222 + outSlope: -0.7451222 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.5547627 + inSlope: -0.31404826 + outSlope: -0.31404826 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.5548337 + inSlope: 0.79590535 + outSlope: 0.79590535 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.50170237 + inSlope: 1.1512301 + outSlope: 1.1512301 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.47808504 + inSlope: 0.30049366 + outSlope: 0.30049366 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.48166946 + inSlope: -0.107532546 + outSlope: -0.107532546 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.40188137 + inSlope: -1.1094207 + outSlope: -1.1094207 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.36490068 + inSlope: -0.79072547 + outSlope: -0.79072547 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.34701008 + inSlope: -0.081973225 + outSlope: -0.081973225 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.34370145 + inSlope: 0.31026724 + outSlope: 0.31026724 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.39457777 + inSlope: 0.7967331 + outSlope: 0.7967331 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.44343603 + inSlope: 0.6867627 + outSlope: 0.6867627 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.49449366 + inSlope: 0.086281806 + outSlope: 0.086281806 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.4909911 + inSlope: -0.61832875 + outSlope: -0.61832875 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.45327175 + inSlope: -1.0412421 + outSlope: -1.0412421 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.42157495 + inSlope: -0.7708502 + outSlope: -0.7708502 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.40188175 + inSlope: -0.5907964 + outSlope: -0.5907964 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.5664944 + inSlope: 1.159492 + outSlope: 1.159492 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.60514414 + inSlope: 0.7992571 + outSlope: 0.7992571 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.6224048 + inSlope: 0.08253783 + outSlope: 0.08253783 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.62528074 + inSlope: -0.090706065 + outSlope: -0.090706065 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.60585386 + inSlope: -0.32154584 + outSlope: -0.32154584 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.5812089 + inSlope: -0.5823112 + outSlope: -0.5823112 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.505133 + inSlope: -0.3404242 + outSlope: -0.3404242 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.50428575 + inSlope: 0.746491 + outSlope: 0.746491 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.55489904 + inSlope: 1.0270984 + outSlope: 1.0270984 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.572759 + inSlope: 0.17392868 + outSlope: 0.17392868 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.5664943 + inSlope: -0.18794078 + outSlope: -0.18794078 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.3799461 + inSlope: -0.7721078 + outSlope: -0.7721078 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.35420918 + inSlope: -0.6188844 + outSlope: -0.6188844 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.3371696 + inSlope: 0.033870496 + outSlope: 0.033870496 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.34094518 + inSlope: 0.2770168 + outSlope: 0.2770168 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.37206948 + inSlope: 0.48037106 + outSlope: 0.48037106 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.41267595 + inSlope: 1.2081573 + outSlope: 1.2081573 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.52821666 + inSlope: 1.4672785 + outSlope: 1.4672785 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.5660245 + inSlope: 0.5158971 + outSlope: 0.5158971 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.5626098 + inSlope: -1.1434078 + outSlope: -1.1434078 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.4897973 + inSlope: -2.0739763 + outSlope: -2.0739763 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.42434472 + inSlope: -1.6473751 + outSlope: -1.6473751 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.37997234 + inSlope: -1.3311727 + outSlope: -1.3311727 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.42255297 + inSlope: 0.2140653 + outSlope: 0.2140653 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.42968848 + inSlope: 0.20435704 + outSlope: 0.20435704 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.44373924 + inSlope: 0.25731102 + outSlope: 0.25731102 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.45333084 + inSlope: -0.11188389 + outSlope: -0.11188389 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.41451365 + inSlope: -0.66864777 + outSlope: -0.66864777 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.36821735 + inSlope: -0.66868013 + outSlope: -0.66868013 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.3319804 + inSlope: -0.12622654 + outSlope: -0.12622654 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.33871 + inSlope: 0.49052697 + outSlope: 0.49052697 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.36468223 + inSlope: 0.9302341 + outSlope: 0.9302341 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.40072563 + inSlope: 0.78126186 + outSlope: 0.78126186 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.41676635 + inSlope: 0.32693008 + outSlope: 0.32693008 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.42252097 + inSlope: 0.17263876 + outSlope: 0.17263876 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.23674357 + inSlope: 1.0493423 + outSlope: 1.0493423 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.2017655 + inSlope: 0.57644135 + outSlope: 0.57644135 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.17239909 + inSlope: 1.6296579 + outSlope: 1.6296579 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.089670286 + inSlope: 1.3745294 + outSlope: 1.3745294 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.09198185 + inSlope: -0.1720537 + outSlope: -0.1720537 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.08005881 + inSlope: 0.17286201 + outSlope: 0.17286201 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.08978933 + inSlope: -0.45569775 + outSlope: -0.45569775 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.111089766 + inSlope: -1.0178969 + outSlope: -1.0178969 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.15764916 + inSlope: -1.0750906 + outSlope: -1.0750906 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.18276252 + inSlope: -0.94059485 + outSlope: -0.94059485 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.22035548 + inSlope: -0.80851483 + outSlope: -0.80851483 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.23666349 + inSlope: -0.48924077 + outSlope: -0.48924077 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.78806245 + inSlope: 0.52990615 + outSlope: 0.52990615 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.805726 + inSlope: 0.32547355 + outSlope: 0.32547355 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.8122135 + inSlope: 0.13351321 + outSlope: 0.13351321 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.8186616 + inSlope: 0.15568884 + outSlope: 0.15568884 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.82539815 + inSlope: 0.100976214 + outSlope: 0.100976214 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.8292799 + inSlope: -0.31143042 + outSlope: -0.31143042 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.7763466 + inSlope: -0.97837156 + outSlope: -0.97837156 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.7433377 + inSlope: -0.77021134 + outSlope: -0.77021134 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.7249992 + inSlope: 0.13603118 + outSlope: 0.13603118 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.7524064 + inSlope: 0.7214848 + outSlope: 0.7214848 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.7730982 + inSlope: 0.535269 + outSlope: 0.535269 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.788091 + inSlope: 0.4497854 + outSlope: 0.4497854 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.57133055 + inSlope: -0.34196016 + outSlope: -0.34196016 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.5599319 + inSlope: 0.05883783 + outSlope: 0.05883783 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.57525307 + inSlope: 0.4540398 + outSlope: 0.4540398 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.5902012 + inSlope: 0.86133957 + outSlope: 0.86133957 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.6326757 + inSlope: 0.90958726 + outSlope: 0.90958726 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.65926296 + inSlope: 0.24810436 + outSlope: 0.24810436 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.67598957 + inSlope: -0.025311112 + outSlope: -0.025311112 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.6231493 + inSlope: -0.98664045 + outSlope: -0.98664045 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.56061685 + inSlope: -0.20546961 + outSlope: -0.20546961 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.5713519 + inSlope: 0.32205135 + outSlope: 0.32205135 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.5913881 + inSlope: 0.6714284 + outSlope: 0.6714284 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.61376905 + inSlope: 0.1465094 + outSlope: 0.1465094 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.6011554 + inSlope: -0.41895652 + outSlope: -0.41895652 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.5858386 + inSlope: -0.69194376 + outSlope: -0.69194376 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.5550258 + inSlope: -0.66430724 + outSlope: -0.66430724 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.53478986 + inSlope: -0.030935708 + outSlope: -0.030935708 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.5324619 + inSlope: 0.07850022 + outSlope: 0.07850022 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.5806654 + inSlope: 0.67307055 + outSlope: 0.67307055 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.6106614 + inSlope: -0.16399409 + outSlope: -0.16399409 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.5913695 + inSlope: -0.57875687 + outSlope: -0.57875687 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.33110896 + inSlope: 0.55123955 + outSlope: 0.55123955 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.3127343 + inSlope: 0.12655692 + outSlope: 0.12655692 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.32267183 + inSlope: -0.2860012 + outSlope: -0.2860012 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.33180106 + inSlope: -0.35644007 + outSlope: -0.35644007 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.3464345 + inSlope: -0.29582578 + outSlope: -0.29582578 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.3544849 + inSlope: 0.08369476 + outSlope: 0.08369476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.34747162 + inSlope: 0.097282834 + outSlope: 0.097282834 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.3215446 + inSlope: 0.296679 + outSlope: 0.296679 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.31281242 + inSlope: -0.26525375 + outSlope: -0.26525375 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.33112225 + inSlope: -0.5492955 + outSlope: -0.5492955 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.46282667 + inSlope: -0.07302939 + outSlope: -0.07302939 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.46039236 + inSlope: -0.17444059 + outSlope: -0.17444059 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.4511973 + inSlope: -0.22517635 + outSlope: -0.22517635 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.4453806 + inSlope: -0.5533397 + outSlope: -0.5533397 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.41430798 + inSlope: -0.6889536 + outSlope: -0.6889536 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.39206222 + inSlope: -0.30627298 + outSlope: -0.30627298 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.37253985 + inSlope: 0.022469316 + outSlope: 0.022469316 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.4136688 + inSlope: 0.75363564 + outSlope: 0.75363564 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.46362677 + inSlope: 0.2895074 + outSlope: 0.2895074 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.46281442 + inSlope: -0.024370573 + outSlope: -0.024370573 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.013199304 + inSlope: -0.18204163 + outSlope: -0.18204163 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.0071312496 + inSlope: -0.5832397 + outSlope: -0.5832397 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.025683342 + inSlope: -0.8041586 + outSlope: -0.8041586 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.04647933 + inSlope: -0.68568194 + outSlope: -0.68568194 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.07139547 + inSlope: -0.40558144 + outSlope: -0.40558144 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.07351809 + inSlope: 0.18088065 + outSlope: 0.18088065 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.042363677 + inSlope: 0.46197814 + outSlope: 0.46197814 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.014356923 + inSlope: 0.47785264 + outSlope: 0.47785264 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.033196755 + inSlope: 0.028390586 + outSlope: 0.028390586 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.02343336 + inSlope: -0.21802902 + outSlope: -0.21802902 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.0131905805 + inSlope: -0.16412738 + outSlope: -0.16412738 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.32422838 + inSlope: -0.5507603 + outSlope: -0.5507603 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.3058697 + inSlope: -0.55766433 + outSlope: -0.55766433 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.28705075 + inSlope: -0.45634922 + outSlope: -0.45634922 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.27544641 + inSlope: -0.3861947 + outSlope: -0.3861947 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.26130444 + inSlope: -0.35966504 + outSlope: -0.35966504 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.25146875 + inSlope: -0.046047322 + outSlope: -0.046047322 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.2669405 + inSlope: 0.000988394 + outSlope: 0.000988394 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.23809014 + inSlope: -0.6385269 + outSlope: -0.6385269 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.2063098 + inSlope: 0.67441016 + outSlope: 0.67441016 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.24705714 + inSlope: 1.220192 + outSlope: 1.220192 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.32423013 + inSlope: 1.0972275 + outSlope: 1.0972275 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.04696046 + inSlope: 0.77072644 + outSlope: 0.77072644 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.021269575 + inSlope: 0.4245183 + outSlope: 0.4245183 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.018659236 + inSlope: 0.11634703 + outSlope: 0.11634703 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.013513105 + inSlope: -0.050147727 + outSlope: -0.050147727 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.022002416 + inSlope: -0.5057167 + outSlope: -0.5057167 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.047227547 + inSlope: -0.6962219 + outSlope: -0.6962219 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.08644754 + inSlope: -0.4281959 + outSlope: -0.4281959 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.08573247 + inSlope: 0.5567589 + outSlope: 0.5567589 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.0017534898 + inSlope: 0.37074766 + outSlope: 0.37074766 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.0022799126 + inSlope: -0.19462973 + outSlope: -0.19462973 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.04696963 + inSlope: -0.9672256 + outSlope: -0.9672256 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9447203 + inSlope: 0.21266161 + outSlope: 0.21266161 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.95180905 + inSlope: 0.1900327 + outSlope: 0.1900327 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.9573892 + inSlope: 0.12432037 + outSlope: 0.12432037 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.9600971 + inSlope: 0.07457703 + outSlope: 0.07457703 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.962361 + inSlope: 0.057237454 + outSlope: 0.057237454 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.9639129 + inSlope: -0.007993864 + outSlope: -0.007993864 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.9588925 + inSlope: -0.01598418 + outSlope: -0.01598418 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.9673453 + inSlope: 0.20773263 + outSlope: 0.20773263 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.9779219 + inSlope: -0.15062481 + outSlope: -0.15062481 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.96871483 + inSlope: -0.30724797 + outSlope: -0.30724797 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.9447194 + inSlope: -0.38158035 + outSlope: -0.38158035 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.22189714 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.22189714 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.13689652 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.13689652 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.25379956 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.25379956 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9314542 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.9314542 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.05551766 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.05551766 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.13071378 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.13071378 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.13998032 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.13998032 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.97991693 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.97991693 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.22361803 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.22361803 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2/mixamorig:LeftHandThumb3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.031642117 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.031642117 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2/mixamorig:LeftHandThumb3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.10459685 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.10459685 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2/mixamorig:LeftHandThumb3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9685315 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.9685315 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2/mixamorig:LeftHandThumb3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.02006676 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.02006676 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2/mixamorig:LeftHandThumb3/mixamorig:LeftHandThumb4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.040932328 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.040932328 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2/mixamorig:LeftHandThumb3/mixamorig:LeftHandThumb4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.014504524 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.014504524 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2/mixamorig:LeftHandThumb3/mixamorig:LeftHandThumb4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9988551 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.9988551 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2/mixamorig:LeftHandThumb3/mixamorig:LeftHandThumb4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.17390507 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.17390507 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.066170156 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.066170156 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.022739656 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.022739656 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.98227364 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.98227364 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.24460985 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.24460985 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0050665666 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.0050665666 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.03382232 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.03382232 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9690183 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.9690183 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.24556223 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.24556223 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2/mixamorig:LeftHandIndex3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.00000013136894 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.00000013136894 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2/mixamorig:LeftHandIndex3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.03264659 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.03264659 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2/mixamorig:LeftHandIndex3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.96883094 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.96883094 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2/mixamorig:LeftHandIndex3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.044488557 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.044488557 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2/mixamorig:LeftHandIndex3/mixamorig:LeftHandIndex4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.00000011847825 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.00000011847825 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2/mixamorig:LeftHandIndex3/mixamorig:LeftHandIndex4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.00000004412633 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.00000004412633 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2/mixamorig:LeftHandIndex3/mixamorig:LeftHandIndex4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9990099 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.9990099 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2/mixamorig:LeftHandIndex3/mixamorig:LeftHandIndex4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.1731456 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.1731456 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.06403206 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.06403206 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.02489581 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.02489581 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.98249716 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.98249716 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.38609654 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.38609654 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.012462583 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.012462583 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.055942103 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.055942103 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9206762 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.9206762 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.3709108 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.3709108 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2/mixamorig:LeftHandMiddle3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0028800222 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.0028800222 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2/mixamorig:LeftHandMiddle3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.05047341 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.05047341 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2/mixamorig:LeftHandMiddle3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.92729145 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.92729145 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2/mixamorig:LeftHandMiddle3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.010558712 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.010558712 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2/mixamorig:LeftHandMiddle3/mixamorig:LeftHandMiddle4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0028613987 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.0028613987 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2/mixamorig:LeftHandMiddle3/mixamorig:LeftHandMiddle4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0028609622 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.0028609622 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2/mixamorig:LeftHandMiddle3/mixamorig:LeftHandMiddle4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9999361 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.9999361 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2/mixamorig:LeftHandMiddle3/mixamorig:LeftHandMiddle4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.055215523 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.055215523 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.08593828 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.08593828 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.020106701 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.020106701 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.994566 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.994566 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.4315977 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.4315977 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.00012870836 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.00012870836 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0573812 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.0573812 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9002393 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.9002393 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.27317566 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.27317566 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2/mixamorig:LeftHandPinky3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.000000064605864 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.000000064605864 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2/mixamorig:LeftHandPinky3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.03627927 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.03627927 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2/mixamorig:LeftHandPinky3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9612798 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.9612798 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2/mixamorig:LeftHandPinky3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.044519037 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.044519037 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2/mixamorig:LeftHandPinky3/mixamorig:LeftHandPinky4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.000000022910202 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.000000022910202 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2/mixamorig:LeftHandPinky3/mixamorig:LeftHandPinky4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.000000026746818 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.000000026746818 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2/mixamorig:LeftHandPinky3/mixamorig:LeftHandPinky4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.99900854 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.99900854 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2/mixamorig:LeftHandPinky3/mixamorig:LeftHandPinky4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.5577402 + inSlope: 0.07918774 + outSlope: 0.07918774 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.57394093 + inSlope: 0.48244262 + outSlope: 0.48244262 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.6027975 + inSlope: 0.067015894 + outSlope: 0.067015894 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.5916046 + inSlope: -0.102300316 + outSlope: -0.102300316 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.59868324 + inSlope: 0.11874409 + outSlope: 0.11874409 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.58564955 + inSlope: -0.39648673 + outSlope: -0.39648673 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.55841386 + inSlope: -0.15964153 + outSlope: -0.15964153 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.55774534 + inSlope: -0.02005579 + outSlope: -0.02005579 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.4672832 + inSlope: -0.22570877 + outSlope: -0.22570877 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.4522694 + inSlope: -0.16596211 + outSlope: -0.16596211 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.44604436 + inSlope: 0.08423701 + outSlope: 0.08423701 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.45957217 + inSlope: 0.11161384 + outSlope: 0.11161384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.44989792 + inSlope: -0.20335259 + outSlope: -0.20335259 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.45371324 + inSlope: 0.30793267 + outSlope: 0.30793267 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.46975818 + inSlope: 0.034255803 + outSlope: 0.034255803 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.46727487 + inSlope: -0.074499324 + outSlope: -0.074499324 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.37277442 + inSlope: 0.1319021 + outSlope: 0.1319021 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.34961602 + inSlope: 0.6839677 + outSlope: 0.6839677 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.3113554 + inSlope: 0.08328215 + outSlope: 0.08328215 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.32626036 + inSlope: -0.17248163 + outSlope: -0.17248163 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.3137983 + inSlope: 0.22036809 + outSlope: 0.22036809 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.33370736 + inSlope: -0.6067169 + outSlope: -0.6067169 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.37231562 + inSlope: -0.20639063 + outSlope: -0.20639063 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.37276688 + inSlope: -0.013538016 + outSlope: -0.013538016 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.57585716 + inSlope: 0.18865405 + outSlope: 0.18865405 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.58635557 + inSlope: 0.05759597 + outSlope: 0.05759597 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.5837272 + inSlope: -0.087884374 + outSlope: -0.087884374 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.57649946 + inSlope: -0.07984129 + outSlope: -0.07984129 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.5836959 + inSlope: 0.15499325 + outSlope: 0.15499325 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.5829222 + inSlope: -0.1973354 + outSlope: -0.1973354 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.5734826 + inSlope: -0.00276801 + outSlope: -0.00276801 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.5758639 + inSlope: 0.07143981 + outSlope: 0.07143981 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.21015018 + inSlope: 0.7173724 + outSlope: 0.7173724 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.2340626 + inSlope: 0.94583 + outSlope: 0.94583 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.27320552 + inSlope: 1.1497021 + outSlope: 1.1497021 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.31070942 + inSlope: 0.73556757 + outSlope: 0.73556757 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.32224336 + inSlope: 0.10838137 + outSlope: 0.10838137 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.303004 + inSlope: -0.5383823 + outSlope: -0.5383823 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.26349935 + inSlope: -0.5464981 + outSlope: -0.5464981 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.24194716 + inSlope: 0.050160218 + outSlope: 0.050160218 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.24895349 + inSlope: -0.08554263 + outSlope: -0.08554263 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.2362443 + inSlope: -0.16576572 + outSlope: -0.16576572 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.23059501 + inSlope: -0.41574472 + outSlope: -0.41574472 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.21018614 + inSlope: -0.61226666 + outSlope: -0.61226666 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.101198934 + inSlope: 0.2131482 + outSlope: 0.2131482 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.09409399 + inSlope: -0.10582745 + outSlope: -0.10582745 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.1082541 + inSlope: -0.5495365 + outSlope: -0.5495365 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.13072976 + inSlope: -0.35192555 + outSlope: -0.35192555 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.1317158 + inSlope: 0.014753715 + outSlope: 0.014753715 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.13111639 + inSlope: -0.0945767 + outSlope: -0.0945767 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.13091841 + inSlope: 0.35814533 + outSlope: 0.35814533 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.092127055 + inSlope: 0.42522436 + outSlope: 0.42522436 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.08382665 + inSlope: 0.014314935 + outSlope: 0.014314935 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.09117273 + inSlope: -0.307135 + outSlope: -0.307135 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.106723554 + inSlope: 0.047505688 + outSlope: 0.047505688 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.10113528 + inSlope: 0.16764829 + outSlope: 0.16764829 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.35731682 + inSlope: -0.9095567 + outSlope: -0.9095567 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.32699826 + inSlope: -1.2865107 + outSlope: -1.2865107 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.27154943 + inSlope: -0.92621094 + outSlope: -0.92621094 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.26525086 + inSlope: 0.46956903 + outSlope: 0.46956903 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.30285403 + inSlope: 1.0004077 + outSlope: 1.0004077 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.35374048 + inSlope: 0.72711277 + outSlope: 0.72711277 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.3980551 + inSlope: 0.30925515 + outSlope: 0.30925515 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.4019193 + inSlope: 0.24292411 + outSlope: 0.24292411 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.41723084 + inSlope: 0.3340655 + outSlope: 0.3340655 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.42419034 + inSlope: -0.055180743 + outSlope: -0.055180743 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.38694957 + inSlope: -0.84343266 + outSlope: -0.84343266 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.35732332 + inSlope: -0.88878834 + outSlope: -0.88878834 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9043895 + inSlope: 0.19028305 + outSlope: 0.19028305 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.91073227 + inSlope: 0.18107234 + outSlope: 0.18107234 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.916461 + inSlope: -0.11098174 + outSlope: -0.11098174 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.9033335 + inSlope: -0.43920457 + outSlope: -0.43920457 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.8871807 + inSlope: -0.3713599 + outSlope: -0.3713599 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.875137 + inSlope: -0.1258546 + outSlope: -0.1258546 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.86889625 + inSlope: 0.07767946 + outSlope: 0.07767946 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.8783138 + inSlope: -0.08034915 + outSlope: -0.08034915 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.8700079 + inSlope: -0.13299644 + outSlope: -0.13299644 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.86944735 + inSlope: 0.03946067 + outSlope: 0.03946067 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.88640064 + inSlope: 0.47620684 + outSlope: 0.47620684 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.9043857 + inSlope: 0.5395519 + outSlope: 0.5395519 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.1465756 + inSlope: 0.032447577 + outSlope: 0.032447577 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.14765719 + inSlope: 0.18297715 + outSlope: 0.18297715 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.15877408 + inSlope: 0.16440062 + outSlope: 0.16440062 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.14698909 + inSlope: -0.06846004 + outSlope: -0.06846004 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.14891882 + inSlope: 0.12460583 + outSlope: 0.12460583 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.15216465 + inSlope: -0.18099593 + outSlope: -0.18099593 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.14313379 + inSlope: -0.19744721 + outSlope: -0.19744721 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.1390015 + inSlope: -0.09952712 + outSlope: -0.09952712 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.14045526 + inSlope: 0.1508748 + outSlope: 0.1508748 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.14655696 + inSlope: 0.18305111 + outSlope: 0.18305111 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.14602083 + inSlope: -0.04867583 + outSlope: -0.04867583 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.14764336 + inSlope: 0.04537493 + outSlope: 0.04537493 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.14299583 + inSlope: 0.077779144 + outSlope: 0.077779144 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.14352863 + inSlope: -0.05412674 + outSlope: -0.05412674 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.15488335 + inSlope: -0.15187585 + outSlope: -0.15187585 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.15809752 + inSlope: 0.07643894 + outSlope: 0.07643894 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.15534559 + inSlope: 0.075036556 + outSlope: 0.075036556 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.15309508 + inSlope: 0.036048636 + outSlope: 0.036048636 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.1514087 + inSlope: 0.10412052 + outSlope: 0.10412052 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.14600098 + inSlope: 0.16223177 + outSlope: 0.16223177 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.7882092 + inSlope: -0.05208313 + outSlope: -0.05208313 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.7864731 + inSlope: 0.35518345 + outSlope: 0.35518345 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.8118881 + inSlope: 0.39806572 + outSlope: 0.39806572 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.7941967 + inSlope: -0.23941037 + outSlope: -0.23941037 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.7716395 + inSlope: -0.093249686 + outSlope: -0.093249686 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.7708671 + inSlope: -0.14911474 + outSlope: -0.14911474 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.7613966 + inSlope: -0.16674578 + outSlope: -0.16674578 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.7597507 + inSlope: -0.08498041 + outSlope: -0.08498041 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.7659277 + inSlope: 0.48718518 + outSlope: 0.48718518 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.7882102 + inSlope: 0.6684769 + outSlope: 0.6684769 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.57958585 + inSlope: 0.0501126 + outSlope: 0.0501126 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.5812563 + inSlope: -0.5442068 + outSlope: -0.5442068 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.5433054 + inSlope: -0.5916703 + outSlope: -0.5916703 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.57187885 + inSlope: 0.33888277 + outSlope: 0.33888277 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.59867084 + inSlope: 0.050135855 + outSlope: 0.050135855 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.5980092 + inSlope: 0.2536941 + outSlope: 0.2536941 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.6129077 + inSlope: 0.27671722 + outSlope: 0.27671722 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.61645705 + inSlope: 0.1359388 + outSlope: 0.1359388 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.60885346 + inSlope: -0.6356428 + outSlope: -0.6356428 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.57959414 + inSlope: -0.87778056 + outSlope: -0.87778056 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.13263595 + inSlope: -0.49497214 + outSlope: -0.49497214 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.14913502 + inSlope: -0.42454648 + outSlope: -0.42454648 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.16093905 + inSlope: 0.11508238 + outSlope: 0.11508238 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.14146286 + inSlope: 0.66252875 + outSlope: 0.66252875 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.11677047 + inSlope: 0.79167616 + outSlope: 0.79167616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.088684455 + inSlope: 0.7358234 + outSlope: 0.7358234 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.03711156 + inSlope: 0.16815126 + outSlope: 0.16815126 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.029593052 + inSlope: 0.36162713 + outSlope: 0.36162713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.013283491 + inSlope: -0.040290758 + outSlope: -0.040290758 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.03227912 + inSlope: -0.76888853 + outSlope: -0.76888853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.10028042 + inSlope: -1.0212471 + outSlope: -1.0212471 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.13262585 + inSlope: -0.9703638 + outSlope: -0.9703638 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.14923285 + inSlope: 0.29207465 + outSlope: 0.29207465 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.13949703 + inSlope: 0.69474596 + outSlope: 0.69474596 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.10291645 + inSlope: 0.9902414 + outSlope: 0.9902414 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.07348093 + inSlope: 0.55550987 + outSlope: 0.55550987 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.06588245 + inSlope: -0.10658596 + outSlope: -0.10658596 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.08058666 + inSlope: -0.35647434 + outSlope: -0.35647434 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.10458647 + inSlope: 0.0022571906 + outSlope: 0.0022571906 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.09764424 + inSlope: 0.10212154 + outSlope: 0.10212154 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.09245982 + inSlope: 0.097860835 + outSlope: 0.097860835 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.09112018 + inSlope: -0.30358988 + outSlope: -0.30358988 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.13441795 + inSlope: -0.5483277 + outSlope: -0.5483277 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.1492543 + inSlope: -0.4450911 + outSlope: -0.4450911 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.04146198 + inSlope: 0.1850105 + outSlope: 0.1850105 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.047629 + inSlope: 0.11683478 + outSlope: 0.11683478 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.049250968 + inSlope: 0.115021214 + outSlope: 0.115021214 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.05529708 + inSlope: 0.11574463 + outSlope: 0.11574463 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.056967277 + inSlope: 0.18384527 + outSlope: 0.18384527 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.06755343 + inSlope: 0.123357445 + outSlope: 0.123357445 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.047380466 + inSlope: -0.19329268 + outSlope: -0.19329268 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.03905899 + inSlope: -0.12254517 + outSlope: -0.12254517 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.03577123 + inSlope: -0.03693107 + outSlope: -0.03693107 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.03659692 + inSlope: 0.022240365 + outSlope: 0.022240365 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.04099418 + inSlope: 0.06336312 + outSlope: 0.06336312 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.041478127 + inSlope: 0.014518476 + outSlope: 0.014518476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.97898835 + inSlope: -0.03660142 + outSlope: -0.03660142 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.9777683 + inSlope: 0.020386575 + outSlope: 0.020386575 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.98034745 + inSlope: 0.11841683 + outSlope: 0.11841683 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.98566276 + inSlope: 0.13477652 + outSlope: 0.13477652 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.98933256 + inSlope: 0.07246167 + outSlope: 0.07246167 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.99049354 + inSlope: 0.032933947 + outSlope: 0.032933947 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.99269307 + inSlope: 0.017318131 + outSlope: 0.017318131 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.9940142 + inSlope: 0.023975374 + outSlope: 0.023975374 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.994985 + inSlope: 0.009440487 + outSlope: 0.009440487 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.99464357 + inSlope: -0.062315762 + outSlope: -0.062315762 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.9849848 + inSlope: -0.1776723 + outSlope: -0.1776723 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.9789858 + inSlope: -0.17997104 + outSlope: -0.17997104 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.17914823 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.17914823 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.2756049 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.2756049 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.2637618 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.2637618 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.90685034 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.90685034 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0709231 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.0709231 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.11455817 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.11455817 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.20838952 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.20838952 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9687209 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.9687209 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.002560072 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.002560072 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2/mixamorig:RightHandThumb3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.017164012 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.017164012 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2/mixamorig:RightHandThumb3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.26406187 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.26406187 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2/mixamorig:RightHandThumb3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9643496 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.9643496 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2/mixamorig:RightHandThumb3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.020066896 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.020066896 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2/mixamorig:RightHandThumb3/mixamorig:RightHandThumb4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.040932257 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.040932257 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2/mixamorig:RightHandThumb3/mixamorig:RightHandThumb4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.014504592 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.014504592 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2/mixamorig:RightHandThumb3/mixamorig:RightHandThumb4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9988551 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.9988551 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2/mixamorig:RightHandThumb3/mixamorig:RightHandThumb4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.039883025 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.039883025 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.021048894 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.021048894 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.021070257 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.021070257 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9987604 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.9987604 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.10017289 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.10017289 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.005202235 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.005202235 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.011729762 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.011729762 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9948873 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.9948873 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.2876349 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.2876349 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2/mixamorig:RightHandIndex3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.000000046472767 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.000000046472767 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2/mixamorig:RightHandIndex3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.032156568 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.032156568 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2/mixamorig:RightHandIndex3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.95720017 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.95720017 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2/mixamorig:RightHandIndex3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.04448857 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.04448857 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2/mixamorig:RightHandIndex3/mixamorig:RightHandIndex4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.000000032887463 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.000000032887463 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2/mixamorig:RightHandIndex3/mixamorig:RightHandIndex4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.000000072873924 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.000000072873924 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2/mixamorig:RightHandIndex3/mixamorig:RightHandIndex4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9990099 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.9990099 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2/mixamorig:RightHandIndex3/mixamorig:RightHandIndex4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0010483505 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.0010483505 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.00034242336 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.00034242336 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.07512589 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.07512589 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9971735 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.9971735 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.7770863 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.7770863 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.008185316 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.008185316 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.09665892 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.09665892 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.62187374 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.62187374 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.57904154 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.57904154 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2/mixamorig:RightHandMiddle3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0026377453 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.0026377453 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2/mixamorig:RightHandMiddle3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.06625723 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.06625723 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2/mixamorig:RightHandMiddle3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.81259704 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.81259704 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2/mixamorig:RightHandMiddle3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.010558612 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.010558612 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2/mixamorig:RightHandMiddle3/mixamorig:RightHandMiddle4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0028611857 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.0028611857 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2/mixamorig:RightHandMiddle3/mixamorig:RightHandMiddle4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0028610006 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.0028610006 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2/mixamorig:RightHandMiddle3/mixamorig:RightHandMiddle4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9999361 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.9999361 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2/mixamorig:RightHandMiddle3/mixamorig:RightHandMiddle4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.042047948 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.042047948 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.17182404 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.17182404 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.05555209 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.05555209 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9826609 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.9826609 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.7276191 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.7276191 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.000097698714 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.000097698714 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.08134853 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.08134853 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.68114084 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.68114084 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.6220816 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.6220816 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2/mixamorig:RightHandPinky3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.000000010765183 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.000000010765183 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2/mixamorig:RightHandPinky3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.06945894 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.06945894 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2/mixamorig:RightHandPinky3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.7798653 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.7798653 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2/mixamorig:RightHandPinky3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.044519056 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.044519056 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2/mixamorig:RightHandPinky3/mixamorig:RightHandPinky4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.00000002978966 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.00000002978966 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2/mixamorig:RightHandPinky3/mixamorig:RightHandPinky4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.000000010072857 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.000000010072857 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2/mixamorig:RightHandPinky3/mixamorig:RightHandPinky4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.99900854 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.99900854 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2/mixamorig:RightHandPinky3/mixamorig:RightHandPinky4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.107079946 + inSlope: 1.2737522 + outSlope: 1.2737522 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.06462154 + inSlope: 1.0604756 + outSlope: 1.0604756 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.036381572 + inSlope: 0.65421486 + outSlope: 0.65421486 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.02100721 + inSlope: -0.05802752 + outSlope: -0.05802752 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.04025007 + inSlope: -0.7704552 + outSlope: -0.7704552 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.07237089 + inSlope: -1.2535273 + outSlope: -1.2535273 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.12381858 + inSlope: -1.8375541 + outSlope: -1.8375541 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.19487451 + inSlope: -1.5938824 + outSlope: -1.5938824 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.2300774 + inSlope: -1.1609206 + outSlope: -1.1609206 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.27226922 + inSlope: 0.059539676 + outSlope: 0.059539676 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.22610809 + inSlope: 0.78399986 + outSlope: 0.78399986 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.22000256 + inSlope: -0.004260376 + outSlope: -0.004260376 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.22639212 + inSlope: 0.12205916 + outSlope: 0.12205916 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.21186529 + inSlope: 0.9188764 + outSlope: 0.9188764 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.1651337 + inSlope: 1.5717818 + outSlope: 1.5717818 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.1070799 + inSlope: 1.7416157 + outSlope: 1.7416157 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.31910616 + inSlope: 3.6016343 + outSlope: 3.6016343 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.43916065 + inSlope: 2.4793224 + outSlope: 2.4793224 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.48439434 + inSlope: 0.27064967 + outSlope: 0.27064967 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.45720395 + inSlope: -0.6802444 + outSlope: -0.6802444 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.4390447 + inSlope: -0.6875758 + outSlope: -0.6875758 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.41136557 + inSlope: -0.03417957 + outSlope: -0.03417957 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.4367661 + inSlope: -0.2267184 + outSlope: -0.2267184 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.39625102 + inSlope: -2.37474 + outSlope: -2.37474 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.2784501 + inSlope: -3.9616122 + outSlope: -3.9616122 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.13214356 + inSlope: -4.8000355 + outSlope: -4.8000355 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.041552257 + inSlope: -4.265116 + outSlope: -4.265116 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.15219751 + inSlope: -0.4106474 + outSlope: -0.4106474 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.06892868 + inSlope: 2.7198367 + outSlope: 2.7198367 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.029124994 + inSlope: 3.3116598 + outSlope: 3.3116598 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.15184863 + inSlope: 4.349745 + outSlope: 4.349745 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.3191078 + inSlope: 5.01778 + outSlope: 5.01778 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.92754364 + inSlope: -1.3965814 + outSlope: -1.3965814 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.8809909 + inSlope: -1.0669665 + outSlope: -1.0669665 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.85641253 + inSlope: -0.23805945 + outSlope: -0.23805945 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.8651203 + inSlope: 0.062960364 + outSlope: 0.062960364 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.8606099 + inSlope: 0.009581745 + outSlope: 0.009581745 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.8657591 + inSlope: -0.16916326 + outSlope: -0.16916326 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.84933233 + inSlope: -0.111316934 + outSlope: -0.111316934 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.85833794 + inSlope: 0.913252 + outSlope: 0.913252 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.9102158 + inSlope: 1.3208432 + outSlope: 1.3208432 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.94639415 + inSlope: 0.9380982 + outSlope: 0.9380982 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.9727557 + inSlope: 0.13234645 + outSlope: 0.13234645 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.95521724 + inSlope: -0.09030658 + outSlope: -0.09030658 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.96673524 + inSlope: 0.3238346 + outSlope: 0.3238346 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.9768062 + inSlope: 0.0603211 + outSlope: 0.0603211 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.97075665 + inSlope: -0.73895097 + outSlope: -0.73895097 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.92754287 + inSlope: -1.2964147 + outSlope: -1.2964147 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.16238219 + inSlope: 0.041302886 + outSlope: 0.041302886 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.16375895 + inSlope: 0.18802954 + outSlope: 0.18802954 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.17491749 + inSlope: 0.62099683 + outSlope: 0.62099683 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.20515874 + inSlope: 1.1996287 + outSlope: 1.1996287 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.25489274 + inSlope: 1.0578887 + outSlope: 1.0578887 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.27568465 + inSlope: 0.21656743 + outSlope: 0.21656743 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.26933056 + inSlope: -0.21613327 + outSlope: -0.21613327 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.26127577 + inSlope: -1.0013119 + outSlope: -1.0013119 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.20257644 + inSlope: -2.2256813 + outSlope: -2.2256813 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.112897016 + inSlope: -3.4873853 + outSlope: -3.4873853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.029915886 + inSlope: -3.5905147 + outSlope: -3.5905147 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.12647061 + inSlope: -1.0069951 + outSlope: -1.0069951 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.09704886 + inSlope: 2.0575578 + outSlope: 2.0575578 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.010699932 + inSlope: 2.737722 + outSlope: 2.737722 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.08546593 + inSlope: 2.2752528 + outSlope: 2.2752528 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.16238338 + inSlope: 2.3075256 + outSlope: 2.3075256 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.8175877 + inSlope: 3.269584 + outSlope: 3.269584 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.70860153 + inSlope: 4.432203 + outSlope: 4.432203 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.5221075 + inSlope: 5.547236 + outSlope: 5.547236 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.33878577 + inSlope: 3.5734696 + outSlope: 3.5734696 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.28387615 + inSlope: 1.0956954 + outSlope: 1.0956954 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.2657394 + inSlope: -2.8403912 + outSlope: -2.8403912 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.47323564 + inSlope: -5.4654374 + outSlope: -5.4654374 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.630102 + inSlope: -2.860826 + outSlope: -2.860826 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.66395736 + inSlope: 0.67447364 + outSlope: 0.67447364 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.58513707 + inSlope: 4.7198195 + outSlope: 4.7198195 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.34930274 + inSlope: 4.5826607 + outSlope: 4.5826607 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.27962637 + inSlope: -2.2585568 + outSlope: -2.2585568 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.4998734 + inSlope: -6.906832 + outSlope: -6.906832 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.740082 + inSlope: -4.6678505 + outSlope: -4.6678505 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.8110634 + inSlope: -1.1625805 + outSlope: -1.1625805 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.8175874 + inSlope: -0.1957192 + outSlope: -0.1957192 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.013005423 + inSlope: -0.25755718 + outSlope: -0.25755718 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.0044201836 + inSlope: -0.193113 + outSlope: -0.193113 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.0001312233 + inSlope: 0.22509113 + outSlope: 0.22509113 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.019426262 + inSlope: 0.3076282 + outSlope: 0.3076282 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.020639775 + inSlope: -0.0370555 + outSlope: -0.0370555 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.016955895 + inSlope: -0.51697725 + outSlope: -0.51697725 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.01382539 + inSlope: -0.5186841 + outSlope: -0.5186841 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.017623056 + inSlope: 0.3819274 + outSlope: 0.3819274 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.011636437 + inSlope: 0.54777074 + outSlope: 0.54777074 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.01889499 + inSlope: 0.85315233 + outSlope: 0.85315233 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.06851326 + inSlope: 0.34225893 + outSlope: 0.34225893 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.041712254 + inSlope: -0.70946884 + outSlope: -0.70946884 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.021215318 + inSlope: 0.13328776 + outSlope: 0.13328776 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.050598085 + inSlope: 0.12727857 + outSlope: 0.12727857 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.029700555 + inSlope: -0.56388533 + outSlope: -0.56388533 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.013005746 + inSlope: -0.5008448 + outSlope: -0.5008448 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.048523325 + inSlope: -0.5290252 + outSlope: -0.5290252 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.030889152 + inSlope: -0.69035834 + outSlope: -0.69035834 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.0024994337 + inSlope: -1.1111479 + outSlope: -1.1111479 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.043187384 + inSlope: -0.6339983 + outSlope: -0.6339983 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.039767127 + inSlope: 0.12718332 + outSlope: 0.12718332 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.034708496 + inSlope: 0.60634524 + outSlope: 0.60634524 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.0006559058 + inSlope: 1.1497432 + outSlope: 1.1497432 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.04194106 + inSlope: 0.27286527 + outSlope: 0.27286527 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.01884692 + inSlope: -0.6122757 + outSlope: -0.6122757 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.0011226825 + inSlope: -1.0743034 + outSlope: -1.0743034 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.0527733 + inSlope: -0.9816868 + outSlope: -0.9816868 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.0643231 + inSlope: 0.07692112 + outSlope: 0.07692112 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.04764521 + inSlope: 0.5150268 + outSlope: 0.5150268 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.029987967 + inSlope: 0.8585658 + outSlope: 0.8585658 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.00959251 + inSlope: 1.1776664 + outSlope: 1.1776664 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.0485231 + inSlope: 1.1679187 + outSlope: 1.1679187 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.5736085 + inSlope: 3.939303 + outSlope: 3.939303 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.7049186 + inSlope: 4.189012 + outSlope: 4.189012 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.852876 + inSlope: 3.521286 + outSlope: 3.521286 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.93967104 + inSlope: 1.574064 + outSlope: 1.574064 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.9578136 + inSlope: 0.3539944 + outSlope: 0.3539944 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.96327066 + inSlope: -1.1547968 + outSlope: -1.1547968 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.8808271 + inSlope: -2.8213804 + outSlope: -2.8213804 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.7751786 + inSlope: -2.0007725 + outSlope: -2.0007725 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.7474423 + inSlope: 0.5330229 + outSlope: 0.5330229 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.81071347 + inSlope: 2.7835224 + outSlope: 2.7835224 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.93301046 + inSlope: 2.1949465 + outSlope: 2.1949465 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.95704323 + inSlope: -1.0272553 + outSlope: -1.0272553 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.8645267 + inSlope: -4.306552 + outSlope: -4.306552 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.6699397 + inSlope: -4.206026 + outSlope: -4.206026 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.584125 + inSlope: -1.4449608 + outSlope: -1.4449608 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.573609 + inSlope: -0.31547993 + outSlope: -0.31547993 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.703394 + inSlope: -1.7703741 + outSlope: -1.7703741 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.6443815 + inSlope: -2.6893497 + outSlope: -2.6893497 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.524104 + inSlope: -2.5804386 + outSlope: -2.5804386 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.47235227 + inSlope: -0.60363144 + outSlope: -0.60363144 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.4838619 + inSlope: -0.14146687 + outSlope: -0.14146687 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.46292114 + inSlope: 1.0525041 + outSlope: 1.0525041 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.55402887 + inSlope: 3.7218776 + outSlope: 3.7218776 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.71104634 + inSlope: 4.0682497 + outSlope: 4.0682497 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.8252455 + inSlope: 2.4368782 + outSlope: 2.4368782 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.8735049 + inSlope: 0.46611968 + outSlope: 0.46611968 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.85632014 + inSlope: -1.7311497 + outSlope: -1.7311497 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.7580949 + inSlope: -5.762928 + outSlope: -5.762928 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.47212473 + inSlope: -3.7077823 + outSlope: -3.7077823 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.5109092 + inSlope: 2.1783378 + outSlope: 2.1783378 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.61734724 + inSlope: 2.8872466 + outSlope: 2.8872466 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.7033922 + inSlope: 2.5813515 + outSlope: 2.5813515 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.05175016 + inSlope: 1.2886077 + outSlope: 1.2886077 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.008796569 + inSlope: 1.0988328 + outSlope: 1.0988328 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.021505365 + inSlope: 0.76488113 + outSlope: 0.76488113 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.04219551 + inSlope: 0.24874708 + outSlope: 0.24874708 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.038088508 + inSlope: 0.14314872 + outSlope: 0.14314872 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.051738758 + inSlope: -0.1481013 + outSlope: -0.1481013 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.028215079 + inSlope: -1.200229 + outSlope: -1.200229 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.028276516 + inSlope: -1.0502366 + outSlope: -1.0502366 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.041800693 + inSlope: -0.20526627 + outSlope: -0.20526627 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.041960932 + inSlope: 0.51645434 + outSlope: 0.51645434 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.0073704054 + inSlope: -0.11291039 + outSlope: -0.11291039 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.04948829 + inSlope: -0.9569979 + outSlope: -0.9569979 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.07117028 + inSlope: -1.1647886 + outSlope: -1.1647886 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.12714088 + inSlope: -0.558607 + outSlope: -0.558607 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.10841074 + inSlope: 1.1308652 + outSlope: 1.1308652 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.05174992 + inSlope: 1.6998262 + outSlope: 1.6998262 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.020619858 + inSlope: 0.9055594 + outSlope: 0.9055594 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.009565459 + inSlope: 0.77681345 + outSlope: 0.77681345 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.031167708 + inSlope: 0.8007052 + outSlope: 0.8007052 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.06294581 + inSlope: 0.5993876 + outSlope: 0.5993876 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.071126886 + inSlope: 0.083929345 + outSlope: 0.083929345 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.0685411 + inSlope: -0.57619756 + outSlope: -0.57619756 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.032713704 + inSlope: -1.3494163 + outSlope: -1.3494163 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.021419989 + inSlope: -0.9368721 + outSlope: -0.9368721 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.029744439 + inSlope: -0.42061636 + outSlope: -0.42061636 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.049461078 + inSlope: -0.40055308 + outSlope: -0.40055308 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.056447975 + inSlope: -0.93055093 + outSlope: -0.93055093 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.111497805 + inSlope: -0.039441228 + outSlope: -0.039441228 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.059077345 + inSlope: 0.64034146 + outSlope: 0.64034146 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.06880833 + inSlope: 0.18127795 + outSlope: 0.18127795 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.04699215 + inSlope: 0.7228445 + outSlope: 0.7228445 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.020618726 + inSlope: 0.79120344 + outSlope: 0.79120344 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.7086139 + inSlope: 1.6793953 + outSlope: 1.6793953 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.7645937 + inSlope: 2.132972 + outSlope: 2.132972 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.850812 + inSlope: 1.7032866 + outSlope: 1.7032866 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.8781462 + inSlope: 0.30907714 + outSlope: 0.30907714 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.87141716 + inSlope: 0.061253615 + outSlope: 0.061253615 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.88222975 + inSlope: -0.6006196 + outSlope: -0.6006196 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.83137584 + inSlope: -2.6996984 + outSlope: -2.6996984 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.7022498 + inSlope: -4.0340495 + outSlope: -4.0340495 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.5624392 + inSlope: -3.2966232 + outSlope: -3.2966232 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.48247495 + inSlope: -0.73711133 + outSlope: -0.73711133 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.51329845 + inSlope: 2.3723788 + outSlope: 2.3723788 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.6406335 + inSlope: 5.450507 + outSlope: 5.450507 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.8766658 + inSlope: 3.1013675 + outSlope: 3.1013675 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.84739155 + inSlope: -1.4834834 + outSlope: -1.4834834 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.7777669 + inSlope: -2.0816383 + outSlope: -2.0816383 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.7086157 + inSlope: -2.0745368 + outSlope: -2.0745368 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.5525717 + inSlope: -6.889727 + outSlope: -6.889727 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.32291412 + inSlope: -6.116042 + outSlope: -6.116042 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.14483556 + inSlope: -2.9452834 + outSlope: -2.9452834 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.1265619 + inSlope: -0.55273205 + outSlope: -0.55273205 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.107986756 + inSlope: 0.6984837 + outSlope: 0.6984837 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.17312747 + inSlope: 1.2235391 + outSlope: 1.2235391 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.18955603 + inSlope: 0.10424484 + outSlope: 0.10424484 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.18007714 + inSlope: -0.14223935 + outSlope: -0.14223935 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.18007341 + inSlope: -0.000027269127 + outSlope: -0.000027269127 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.18007532 + inSlope: 0.0005558879 + outSlope: 0.0005558879 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.18011047 + inSlope: 4.8080397 + outSlope: 4.8080397 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.50061125 + inSlope: 8.939354 + outSlope: 8.939354 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.7760676 + inSlope: -11.134546 + outSlope: -11.134546 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.2416916 + inSlope: -1.3496218 + outSlope: -1.3496218 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.68609285 + inSlope: 11.913945 + outSlope: 11.913945 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.55257154 + inSlope: -4.0056434 + outSlope: -4.0056434 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot/mixamorig:LeftToeBase + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0844832 + inSlope: -0.6151653 + outSlope: -0.6151653 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.06397769 + inSlope: -0.34023905 + outSlope: -0.34023905 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.061800595 + inSlope: 0.21623619 + outSlope: 0.21623619 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.07839344 + inSlope: 1.2571621 + outSlope: 1.2571621 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.1456114 + inSlope: 1.1990479 + outSlope: 1.1990479 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.15832996 + inSlope: -0.60776514 + outSlope: -0.60776514 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.10509371 + inSlope: -1.4888239 + outSlope: -1.4888239 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.059075017 + inSlope: -0.6902805 + outSlope: -0.6902805 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.059075013 + inSlope: -0.0000025704505 + outSlope: -0.0000025704505 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.059074845 + inSlope: -0.0000058114533 + outSlope: -0.0000058114533 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.059074625 + inSlope: -0.5362744 + outSlope: -0.5362744 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.02332322 + inSlope: -1.3894697 + outSlope: -1.3894697 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.033556737 + inSlope: 1.7231826 + outSlope: 1.7231826 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.138202 + inSlope: 0.5625646 + outSlope: 0.5625646 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.0039475765 + inSlope: -0.8057742 + outSlope: -0.8057742 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.08448366 + inSlope: 2.4160848 + outSlope: 2.4160848 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot/mixamorig:LeftToeBase + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.117612466 + inSlope: -0.030931009 + outSlope: -0.030931009 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.1186435 + inSlope: 0.14107235 + outSlope: 0.14107235 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.10820764 + inSlope: 0.2621431 + outSlope: 0.2621431 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.10116729 + inSlope: 0.36765283 + outSlope: 0.36765283 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.08369745 + inSlope: 0.24855372 + outSlope: 0.24855372 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.08459704 + inSlope: -0.2711652 + outSlope: -0.2711652 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.10177514 + inSlope: -0.38475272 + outSlope: -0.38475272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.11024723 + inSlope: -0.12708162 + outSlope: -0.12708162 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.11024725 + inSlope: -0.0000039115553 + outSlope: -0.0000039115553 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.11024749 + inSlope: -0.00008258969 + outSlope: -0.00008258969 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.11025275 + inSlope: -0.78575563 + outSlope: -0.78575563 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.1626312 + inSlope: -0.09897691 + outSlope: -0.09897691 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.11685117 + inSlope: 2.960115 + outSlope: 2.960115 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.03470981 + inSlope: 0.36407554 + outSlope: 0.36407554 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.092579484 + inSlope: -2.2848394 + outSlope: -2.2848394 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.11761279 + inSlope: -0.7509998 + outSlope: -0.7509998 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot/mixamorig:LeftToeBase + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.82078886 + inSlope: 3.4797387 + outSlope: 3.4797387 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.93678015 + inSlope: 2.4118307 + outSlope: 2.4118307 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.9815776 + inSlope: 0.70331 + outSlope: 0.70331 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.9836675 + inSlope: -0.025722392 + outSlope: -0.025722392 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.97986275 + inSlope: -0.22898646 + outSlope: -0.22898646 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.96840173 + inSlope: -0.13429555 + outSlope: -0.13429555 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.9709097 + inSlope: 0.108993344 + outSlope: 0.108993344 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.97566795 + inSlope: 0.07138432 + outSlope: 0.07138432 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.97566867 + inSlope: 0.000004470349 + outSlope: 0.000004470349 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.97566825 + inSlope: -0.000111758716 + outSlope: -0.000111758716 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.9756612 + inSlope: -1.8859462 + outSlope: -1.8859462 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.8499385 + inSlope: -5.3526063 + outSlope: -5.3526063 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.6188206 + inSlope: 1.6484306 + outSlope: 1.6484306 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.9598337 + inSlope: 1.5415192 + outSlope: 1.5415192 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.72158855 + inSlope: -2.08567 + outSlope: -2.08567 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.8207889 + inSlope: 2.976014 + outSlope: 2.976014 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot/mixamorig:LeftToeBase + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.04573715 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.04573715 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot/mixamorig:LeftToeBase/mixamorig:LeftToe_End + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.039433047 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.039433047 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot/mixamorig:LeftToeBase/mixamorig:LeftToe_End + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0727525 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.0727525 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot/mixamorig:LeftToeBase/mixamorig:LeftToe_End + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.99552006 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.99552006 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot/mixamorig:LeftToeBase/mixamorig:LeftToe_End + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.01901106 + inSlope: 0.4996425 + outSlope: 0.4996425 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.03566581 + inSlope: 0.69814634 + outSlope: 0.69814634 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.06555415 + inSlope: -0.8920455 + outSlope: -0.8920455 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.023803899 + inSlope: -2.1501272 + outSlope: -2.1501272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.07778767 + inSlope: -2.1778216 + outSlope: -2.1778216 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.168992 + inSlope: -2.0124962 + outSlope: -2.0124962 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.2119541 + inSlope: -0.8626071 + outSlope: -0.8626071 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.22649916 + inSlope: -0.1288493 + outSlope: -0.1288493 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.22054406 + inSlope: 0.8314748 + outSlope: 0.8314748 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.1710675 + inSlope: 1.8551105 + outSlope: 1.8551105 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.09687003 + inSlope: 1.761328 + outSlope: 1.761328 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.053645644 + inSlope: 0.36226234 + outSlope: 0.36226234 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.072719224 + inSlope: 0.4770619 + outSlope: 0.4770619 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.021841537 + inSlope: 1.2985834 + outSlope: 1.2985834 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.013852994 + inSlope: 0.612798 + outSlope: 0.612798 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.019011654 + inSlope: 0.15475994 + outSlope: 0.15475994 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.3009295 + inSlope: -4.903526 + outSlope: -4.903526 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.13747862 + inSlope: -5.507387 + outSlope: -5.507387 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.06622967 + inSlope: -4.474862 + outSlope: -4.474862 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.16084555 + inSlope: -1.2026236 + outSlope: -1.2026236 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.1464046 + inSlope: 2.068234 + outSlope: 2.068234 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.022963282 + inSlope: 4.0913086 + outSlope: 4.0913086 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.12634936 + inSlope: 4.036192 + outSlope: 4.036192 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.24611622 + inSlope: 3.5124505 + outSlope: 3.5124505 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.3605127 + inSlope: 3.0588603 + outSlope: 3.0588603 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.45004022 + inSlope: 1.7677529 + outSlope: 1.7677529 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.4783629 + inSlope: -0.6583348 + outSlope: -0.6583348 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.40615124 + inSlope: -1.2664988 + outSlope: -1.2664988 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.39392963 + inSlope: -1.3419538 + outSlope: -1.3419538 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.31668764 + inSlope: -0.72847056 + outSlope: -0.72847056 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.34536493 + inSlope: -0.23638055 + outSlope: -0.23638055 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.30092898 + inSlope: -1.3330797 + outSlope: -1.3330797 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.93784386 + inSlope: 1.45878 + outSlope: 1.45878 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.98646986 + inSlope: 0.86704993 + outSlope: 0.86704993 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.9956472 + inSlope: -0.043120056 + outSlope: -0.043120056 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.9835952 + inSlope: -0.2835175 + outSlope: -0.2835175 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.976746 + inSlope: 0.017910898 + outSlope: 0.017910898 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.98478925 + inSlope: -0.12077799 + outSlope: -0.12077799 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.96869415 + inSlope: -0.66315556 + outSlope: -0.66315556 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.9405789 + inSlope: -1.0179521 + outSlope: -1.0179521 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.9008307 + inSlope: -1.1921232 + outSlope: -1.1921232 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.861104 + inSlope: -0.8714292 + outSlope: -0.8714292 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.8427354 + inSlope: 0.21301925 + outSlope: 0.21301925 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.8753053 + inSlope: 0.58424854 + outSlope: 0.58424854 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.8816853 + inSlope: 0.65351933 + outSlope: 0.65351933 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.91887325 + inSlope: 0.5045191 + outSlope: 0.5045191 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.9153199 + inSlope: 0.28456035 + outSlope: 0.28456035 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.9378439 + inSlope: 0.67572063 + outSlope: 0.67572063 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.1718398 + inSlope: -2.6987042 + outSlope: -2.6987042 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.08188299 + inSlope: -2.6034508 + outSlope: -2.6034508 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.0017235819 + inSlope: -2.400034 + outSlope: -2.400034 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.07811928 + inSlope: -2.013376 + outSlope: -2.013376 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.13594866 + inSlope: 0.67327493 + outSlope: 0.67327493 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.03323428 + inSlope: 2.4480739 + outSlope: 2.4480739 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.02725628 + inSlope: 1.3778281 + outSlope: 1.3778281 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.058620952 + inSlope: 1.0832615 + outSlope: 1.0832615 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.09947371 + inSlope: 1.5716887 + outSlope: 1.5716887 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.16340019 + inSlope: 1.9146552 + outSlope: 1.9146552 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.22711737 + inSlope: 1.4026839 + outSlope: 1.4026839 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.25691244 + inSlope: 0.33309716 + outSlope: 0.33309716 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.24932384 + inSlope: -0.33894822 + outSlope: -0.33894822 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.23431589 + inSlope: -0.63950974 + outSlope: -0.63950974 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.20668986 + inSlope: -0.9371301 + outSlope: -0.9371301 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.17184058 + inSlope: -1.0454795 + outSlope: -1.0454795 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.5439208 + inSlope: 0.6387519 + outSlope: 0.6387519 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.5226291 + inSlope: 3.1496165 + outSlope: 3.1496165 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.33394638 + inSlope: 3.4295259 + outSlope: 3.4295259 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.293994 + inSlope: -0.8871712 + outSlope: -0.8871712 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.3930911 + inSlope: -3.7464864 + outSlope: -3.7464864 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.54375976 + inSlope: -4.45194 + outSlope: -4.45194 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.68988717 + inSlope: -3.028883 + outSlope: -3.028883 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.74568534 + inSlope: -0.9020627 + outSlope: -0.9020627 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.7500247 + inSlope: 1.0462387 + outSlope: 1.0462387 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.6759361 + inSlope: 3.6156974 + outSlope: 3.6156974 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.5089782 + inSlope: 6.7764063 + outSlope: 6.7764063 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.22417569 + inSlope: 4.8557544 + outSlope: 4.8557544 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.18526119 + inSlope: 0.8315161 + outSlope: 0.8315161 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.16874126 + inSlope: -3.7480333 + outSlope: -3.7480333 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.43513006 + inSlope: -5.6276855 + outSlope: -5.6276855 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.54392016 + inSlope: -3.2637062 + outSlope: -3.2637062 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.08379169 + inSlope: 0.19120193 + outSlope: 0.19120193 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.090165086 + inSlope: 0.513531 + outSlope: 0.513531 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.11802709 + inSlope: -0.6047098 + outSlope: -0.6047098 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.049851086 + inSlope: -2.2195413 + outSlope: -2.2195413 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.02994234 + inSlope: -0.87791246 + outSlope: -0.87791246 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.008676408 + inSlope: 0.27650636 + outSlope: 0.27650636 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.011508584 + inSlope: 0.12162647 + outSlope: 0.12162647 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.00056797796 + inSlope: 0.3117867 + outSlope: 0.3117867 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.009277197 + inSlope: 0.4697793 + outSlope: 0.4697793 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.030750642 + inSlope: 0.96628463 + outSlope: 0.96628463 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.07369617 + inSlope: 0.99297094 + outSlope: 0.99297094 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.0969487 + inSlope: 0.010646999 + outSlope: 0.010646999 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.074405946 + inSlope: -0.3069782 + outSlope: -0.3069782 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.076483466 + inSlope: 0.1300087 + outSlope: 0.1300087 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.08307319 + inSlope: 0.10962145 + outSlope: 0.10962145 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.08379156 + inSlope: 0.021551123 + outSlope: 0.021551123 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.051181637 + inSlope: -0.103262916 + outSlope: -0.103262916 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.04773954 + inSlope: -0.2854064 + outSlope: -0.2854064 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.03215454 + inSlope: -1.3207116 + outSlope: -1.3207116 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.040307913 + inSlope: -1.597887 + outSlope: -1.597887 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.07437127 + inSlope: 0.34460682 + outSlope: 0.34460682 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.017334124 + inSlope: 1.2907164 + outSlope: 1.2907164 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.011676499 + inSlope: 0.53575224 + outSlope: 0.53575224 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.018382704 + inSlope: 0.20200646 + outSlope: 0.20200646 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.025143595 + inSlope: 0.3444562 + outSlope: 0.3444562 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.04134645 + inSlope: 0.38245416 + outSlope: 0.38245416 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.05064054 + inSlope: 0.2236839 + outSlope: 0.2236839 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.05625871 + inSlope: 0.20835222 + outSlope: 0.20835222 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.06453069 + inSlope: -0.1896376 + outSlope: -0.1896376 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.04361621 + inSlope: -0.115757614 + outSlope: -0.115757614 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.05681352 + inSlope: 0.11347978 + outSlope: 0.11347978 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.051181532 + inSlope: -0.16895977 + outSlope: -0.16895977 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.83337235 + inSlope: 0.3918403 + outSlope: 0.3918403 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.8464337 + inSlope: 1.518722 + outSlope: 1.518722 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.9346205 + inSlope: 1.6083186 + outSlope: 1.6083186 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.95365494 + inSlope: -0.27934235 + outSlope: -0.27934235 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.9159977 + inSlope: -1.719568 + outSlope: -1.719568 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.8390171 + inSlope: -2.8839955 + outSlope: -2.8839955 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.7237313 + inSlope: -2.5945888 + outSlope: -2.5945888 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.6660445 + inSlope: -0.9429691 + outSlope: -0.9429691 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.6608667 + inSlope: 1.0366837 + outSlope: 1.0366837 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.7351567 + inSlope: 2.9288373 + outSlope: 2.9288373 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.8561225 + inSlope: 3.493867 + outSlope: 3.493867 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.9680812 + inSlope: 1.8242812 + outSlope: 1.8242812 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.97774124 + inSlope: 0.20458359 + outSlope: 0.20458359 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.9817201 + inSlope: -1.2452425 + outSlope: -1.2452425 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.8947251 + inSlope: -2.22521 + outSlope: -2.22521 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.83337283 + inSlope: -1.8405694 + outSlope: -1.8405694 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.7290955 + inSlope: 2.556288 + outSlope: 2.556288 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.8143051 + inSlope: 1.3840384 + outSlope: 1.3840384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.82136476 + inSlope: -0.6607835 + outSlope: -0.6607835 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.7702529 + inSlope: -3.0386353 + outSlope: -3.0386353 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.6187891 + inSlope: -4.707099 + outSlope: -4.707099 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.4564463 + inSlope: -2.404694 + outSlope: -2.404694 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.45847616 + inSlope: 0.8269733 + outSlope: 0.8269733 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.51157784 + inSlope: 1.269938 + outSlope: 1.269938 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.5431387 + inSlope: 0.04987657 + outSlope: 0.04987657 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.51490295 + inSlope: -0.7589159 + outSlope: -0.7589159 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.4925443 + inSlope: -0.98192596 + outSlope: -0.98192596 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.44944122 + inSlope: 0.8429223 + outSlope: 0.8429223 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.5487392 + inSlope: 0.18096149 + outSlope: 0.18096149 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.4615054 + inSlope: 0.571602 + outSlope: 0.571602 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.586846 + inSlope: 4.0138607 + outSlope: 4.0138607 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.729096 + inSlope: 4.267504 + outSlope: 4.267504 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.037055176 + inSlope: -0.43149307 + outSlope: -0.43149307 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.05143828 + inSlope: -0.1443102 + outSlope: -0.1443102 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.046675857 + inSlope: 0.7253321 + outSlope: 0.7253321 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.0030827993 + inSlope: 1.2866621 + outSlope: 1.2866621 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.03910162 + inSlope: 0.13717476 + outSlope: 0.13717476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.0060621784 + inSlope: -1.0535803 + outSlope: -1.0535803 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.031137079 + inSlope: -0.91624516 + outSlope: -0.91624516 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.055020846 + inSlope: -0.9302725 + outSlope: -0.9302725 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.09315524 + inSlope: -1.2291654 + outSlope: -1.2291654 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.1369652 + inSlope: -1.3409655 + outSlope: -1.3409655 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.18255293 + inSlope: -0.55975825 + outSlope: -0.55975825 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.17428242 + inSlope: 0.6138446 + outSlope: 0.6138446 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.14162993 + inSlope: 2.9311404 + outSlope: 2.9311404 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.021126963 + inSlope: 1.8571208 + outSlope: 1.8571208 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.017821888 + inSlope: -0.8727174 + outSlope: -0.8727174 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.037054177 + inSlope: -0.57696927 + outSlope: -0.57696927 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.10668016 + inSlope: -1.2586739 + outSlope: -1.2586739 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.06472436 + inSlope: -1.4139287 + outSlope: -1.4139287 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.012418239 + inSlope: -1.1560339 + outSlope: -1.1560339 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.012344572 + inSlope: -0.38527814 + outSlope: -0.38527814 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.013266973 + inSlope: 0.63429445 + outSlope: 0.63429445 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.02994172 + inSlope: 0.25209698 + outSlope: 0.25209698 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.0035394777 + inSlope: -0.78184676 + outSlope: -0.78184676 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.022181403 + inSlope: -0.7100838 + outSlope: -0.7100838 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.043799438 + inSlope: -0.4351704 + outSlope: -0.4351704 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.05119276 + inSlope: 0.115032524 + outSlope: 0.115032524 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.036130603 + inSlope: 0.5703715 + outSlope: 0.5703715 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.013167997 + inSlope: 1.0455427 + outSlope: 1.0455427 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.033572286 + inSlope: 2.6344852 + outSlope: 2.6344852 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.16246438 + inSlope: 1.5089248 + outSlope: 1.5089248 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.13416727 + inSlope: -0.83675265 + outSlope: -0.83675265 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.1066809 + inSlope: -0.8245919 + outSlope: -0.8245919 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.67503035 + inSlope: -3.015341 + outSlope: -3.015341 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.574519 + inSlope: -1.6001343 + outSlope: -1.6001343 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.5683547 + inSlope: 0.9463896 + outSlope: 0.9463896 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.6376116 + inSlope: 3.2417483 + outSlope: 3.2417483 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.7844713 + inSlope: 3.7742214 + outSlope: 3.7742214 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.8892264 + inSlope: 1.5552415 + outSlope: 1.5552415 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.88815403 + inSlope: -0.48059735 + outSlope: -0.48059735 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.85718656 + inSlope: -0.8226738 + outSlope: -0.8226738 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.8333091 + inSlope: -0.1875052 + outSlope: -0.1875052 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.8446862 + inSlope: 0.25273743 + outSlope: 0.25273743 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.8501583 + inSlope: 0.4703817 + outSlope: 0.4703817 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.876045 + inSlope: -0.4040008 + outSlope: -0.4040008 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.82322484 + inSlope: -0.06250012 + outSlope: -0.06250012 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.87187827 + inSlope: -0.37377393 + outSlope: -0.37377393 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.7983066 + inSlope: -2.9527287 + outSlope: -2.9527287 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.6750298 + inSlope: -3.6983066 + outSlope: -3.6983066 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.18521775 + inSlope: -0.000002235174 + outSlope: -0.000002235174 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.18521768 + inSlope: 0.0000017881392 + outSlope: 0.0000017881392 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.18521787 + inSlope: 3.1820023 + outSlope: 3.1820023 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.3973512 + inSlope: 4.4837976 + outSlope: 4.4837976 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.48413774 + inSlope: 2.915016 + outSlope: 2.915016 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.5916856 + inSlope: 0.8445283 + outSlope: 0.8445283 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.5404396 + inSlope: -0.46451357 + outSlope: -0.46451357 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.560718 + inSlope: -0.62707007 + outSlope: -0.62707007 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.49863493 + inSlope: -2.623767 + outSlope: -2.623767 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.3858002 + inSlope: -4.940931 + outSlope: -4.940931 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.16923958 + inSlope: -3.41887 + outSlope: -3.41887 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.15787557 + inSlope: -0.029573724 + outSlope: -0.029573724 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.16726801 + inSlope: 0.34936857 + outSlope: 0.34936857 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.18116681 + inSlope: 0.26924887 + outSlope: 0.26924887 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.18521787 + inSlope: -0.000001788141 + outSlope: -0.000001788141 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot/mixamorig:RightToeBase + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.04736608 + inSlope: 0.0000002235174 + outSlope: 0.0000002235174 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.04736607 + inSlope: -0.0000037439167 + outSlope: -0.0000037439167 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.04736633 + inSlope: -1.2520077 + outSlope: -1.2520077 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.13083327 + inSlope: -2.8444266 + outSlope: -2.8444266 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.23699479 + inSlope: -3.8298907 + outSlope: -3.8298907 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.3861593 + inSlope: -2.716042 + outSlope: -2.716042 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.41806427 + inSlope: 0.9793669 + outSlope: 0.9793669 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.3208682 + inSlope: 3.3529713 + outSlope: 3.3529713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.19453286 + inSlope: 3.9466095 + outSlope: 3.9466095 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.057760905 + inSlope: 1.9387362 + outSlope: 1.9387362 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.065283775 + inSlope: -0.490474 + outSlope: -0.490474 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.09045917 + inSlope: -0.3285955 + outSlope: -0.3285955 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.08719014 + inSlope: 0.45655203 + outSlope: 0.45655203 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.060022365 + inSlope: 0.5973507 + outSlope: 0.5973507 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.04736631 + inSlope: 0.000013411058 + outSlope: 0.000013411058 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot/mixamorig:RightToeBase + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.11794151 + inSlope: 0.00001564622 + outSlope: 0.00001564622 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.117942035 + inSlope: 0.000006482005 + outSlope: 0.000006482005 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.117941946 + inSlope: 0.5465666 + outSlope: 0.5465666 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.15437981 + inSlope: -0.21606195 + outSlope: -0.21606195 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.10353783 + inSlope: -0.67862296 + outSlope: -0.67862296 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.10913829 + inSlope: 0.014127791 + outSlope: 0.014127791 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.10447968 + inSlope: 0.16342972 + outSlope: 0.16342972 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.1200336 + inSlope: 0.030309975 + outSlope: 0.030309975 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.10650034 + inSlope: -0.20543922 + outSlope: -0.20543922 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.10633765 + inSlope: -0.1404408 + outSlope: -0.1404408 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.09713762 + inSlope: -0.1996052 + outSlope: -0.1996052 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.09303064 + inSlope: -0.0032721236 + outSlope: -0.0032721236 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.096919484 + inSlope: 0.27715954 + outSlope: 0.27715954 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.111507945 + inSlope: 0.31535673 + outSlope: 0.31535673 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.117942005 + inSlope: -0.00003777448 + outSlope: -0.00003777448 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot/mixamorig:RightToeBase + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.97444373 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.97444373 + inSlope: -0.0000008940696 + outSlope: -0.0000008940696 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.9744437 + inSlope: -1.1905107 + outSlope: -1.1905107 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.89507633 + inSlope: -2.078197 + outSlope: -2.078197 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.8358972 + inSlope: -2.9381733 + outSlope: -2.9381733 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.6991981 + inSlope: -1.6986227 + outSlope: -1.6986227 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.7226557 + inSlope: 0.8191912 + outSlope: 0.8191912 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.7538109 + inSlope: 1.7295725 + outSlope: 1.7295725 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.83796054 + inSlope: 2.4120097 + outSlope: 2.4120097 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.9146115 + inSlope: 2.1096103 + outSlope: 2.1096103 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.9786012 + inSlope: 0.9642703 + outSlope: 0.9642703 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.9788962 + inSlope: -0.020204166 + outSlope: -0.020204166 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.9772543 + inSlope: -0.0544676 + outSlope: -0.0544676 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.975265 + inSlope: -0.042161647 + outSlope: -0.042161647 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.9744437 + inSlope: 0.000005364423 + outSlope: 0.000005364423 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot/mixamorig:RightToeBase + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.04573715 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.04573715 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot/mixamorig:RightToeBase/mixamorig:RightToe_End + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.039433047 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.039433047 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot/mixamorig:RightToeBase/mixamorig:RightToe_End + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0727525 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.0727525 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot/mixamorig:RightToeBase/mixamorig:RightToe_End + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.99552006 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.99552006 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot/mixamorig:RightToeBase/mixamorig:RightToe_End + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.00030521367 + inSlope: 0.009457771 + outSlope: 0.009457771 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.000010045371 + inSlope: 0.008146013 + outSlope: 0.008146015 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.00023785402 + inSlope: 0.0061041205 + outSlope: 0.0061041215 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.1 + value: 0.0004169868 + inSlope: 0.0016134573 + outSlope: 0.0016134572 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.00034541756 + inSlope: -0.0045591453 + outSlope: -0.0045591635 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.00011304352 + inSlope: -0.006437766 + outSlope: -0.006437764 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -0.00008376573 + inSlope: -0.0065020435 + outSlope: -0.0065020462 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333333 + value: -0.00032042505 + inSlope: -0.007129127 + outSlope: -0.0071290936 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.0005590398 + inSlope: -0.006631257 + outSlope: -0.0066312873 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.0007625113 + inSlope: -0.004728457 + outSlope: -0.0047284807 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.00087427284 + inSlope: -0.0010310875 + outSlope: -0.0010311012 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.0008312515 + inSlope: 0.0010341146 + outSlope: 0.0010341101 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: -0.0008053317 + inSlope: -0.0019524338 + outSlope: -0.0019524087 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333334 + value: -0.0009614133 + inSlope: 0.0020896697 + outSlope: 0.0020896136 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -0.0006660217 + inSlope: 0.009842879 + outSlope: 0.009842868 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.0003052192 + inSlope: 0.010824043 + outSlope: 0.010824043 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: jammo_mixamo_rig/mixamorig:Hips + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.014879891 + inSlope: 0.008102423 + outSlope: 0.008102423 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.01514997 + inSlope: 0.0061892834 + outSlope: 0.006189664 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.01529251 + inSlope: 0.0037463843 + outSlope: 0.003746133 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.1 + value: 0.0153997205 + inSlope: 0.0045787245 + outSlope: 0.0045786905 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.01559775 + inSlope: 0.0033436827 + outSlope: 0.003343526 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.0156226205 + inSlope: -0.0018207909 + outSlope: -0.0018205042 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.015476374 + inSlope: -0.007323375 + outSlope: -0.0073235207 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333333 + value: 0.015134397 + inSlope: -0.005266139 + outSlope: -0.0052662147 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.015125289 + inSlope: 0.004063441 + outSlope: 0.00406344 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.015405285 + inSlope: 0.00874547 + outSlope: 0.008745462 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.015708312 + inSlope: 0.00652885 + outSlope: 0.006528663 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.01584053 + inSlope: -0.0016242305 + outSlope: -0.0016242528 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.015600031 + inSlope: -0.0078238165 + outSlope: -0.007823688 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333334 + value: 0.015318948 + inSlope: -0.0082409205 + outSlope: -0.008240867 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.015050633 + inSlope: -0.006585731 + outSlope: -0.0065859365 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.014879896 + inSlope: -0.005122217 + outSlope: -0.005122217 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: jammo_mixamo_rig/mixamorig:Hips + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.00017620277 + inSlope: -0.0042272257 + outSlope: -0.0042272257 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.000035295194 + inSlope: -0.0023308198 + outSlope: -0.002330821 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.000020814676 + inSlope: 0.0014780846 + outSlope: 0.0014780839 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.1 + value: 0.00013383415 + inSlope: 0.00018072389 + outSlope: 0.00018073582 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.000032862965 + inSlope: 0.006210971 + outSlope: 0.0062110126 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.00054789864 + inSlope: 0.00493914 + outSlope: 0.004939094 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.0003621364 + inSlope: -0.0070079807 + outSlope: -0.0070079933 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333333 + value: 0.00008070068 + inSlope: -0.0070496476 + outSlope: -0.007049608 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.00010783844 + inSlope: -0.003993589 + outSlope: -0.003993614 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.00018554054 + inSlope: -0.0020920886 + outSlope: -0.0020920995 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.00024731178 + inSlope: 0.004122446 + outSlope: 0.004122424 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.00008928882 + inSlope: 0.012172403 + outSlope: 0.012172397 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.0005641845 + inSlope: 0.010165895 + outSlope: 0.010165943 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333334 + value: 0.00076701917 + inSlope: -0.0008987393 + outSlope: -0.0008986902 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.0005042695 + inSlope: -0.008862121 + outSlope: -0.008862111 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.00017620903 + inSlope: -0.009841782 + outSlope: -0.009841782 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: jammo_mixamo_rig/mixamorig:Hips + 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 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_Weight + path: Idle Rig + classID: 114 + script: {fileID: 11500000, guid: 70b342d8ce5c2fd48b8fa3147d48d1d1, type: 3} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 136 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_Weight + path: WalkRig + classID: 114 + script: {fileID: 11500000, guid: 70b342d8ce5c2fd48b8fa3147d48d1d1, type: 3} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 136 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_Weight + path: Run Rig + classID: 114 + script: {fileID: 11500000, guid: 70b342d8ce5c2fd48b8fa3147d48d1d1, type: 3} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 136 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_Weight + path: Idle Aim Rig + classID: 114 + script: {fileID: 11500000, guid: 70b342d8ce5c2fd48b8fa3147d48d1d1, type: 3} + m_EulerEditorCurves: + - curve: + serializedVersion: 2 + m_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.033333335 + value: -0 + 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: jammo_mixamo_rig + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_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.033333335 + value: -0 + 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: jammo_mixamo_rig + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_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.033333335 + value: -0 + 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: jammo_mixamo_rig + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.88893145 + inSlope: -72.60728 + outSlope: -72.60728 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -1.5772512 + inSlope: -26.735594 + outSlope: -26.735594 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.81201386 + inSlope: 13.668558 + outSlope: 13.592441 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -1.8255417 + inSlope: -32.486248 + outSlope: -32.486248 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -5.4659925 + inSlope: 34.522373 + outSlope: 34.522377 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 3.8507802 + inSlope: 39.071625 + outSlope: 40.162228 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 3.875055 + inSlope: -45.228764 + outSlope: -45.228806 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.94050133 + inSlope: -62.08882 + outSlope: -62.274452 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.8889302 + inSlope: 32.715977 + outSlope: 32.715977 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 34.18403 + inSlope: -114.95338 + outSlope: -114.95338 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 30.381329 + inSlope: -71.776085 + outSlope: -71.776085 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 29.357002 + inSlope: 8.33519 + outSlope: 8.457413 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 36.399944 + inSlope: 61.11889 + outSlope: 61.118885 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 41.314056 + inSlope: 35.72845 + outSlope: 35.72846 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 40.43094 + inSlope: -73.27241 + outSlope: -72.6539 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 37.189274 + inSlope: -83.12283 + outSlope: -83.12291 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 34.92713 + inSlope: -45.975727 + outSlope: -45.69525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 34.18403 + inSlope: 5.0753427 + outSlope: 5.0753427 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 5.9586773 + inSlope: -63.356606 + outSlope: -63.356606 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 3.9010055 + inSlope: -16.85618 + outSlope: -16.85618 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 4.733193 + inSlope: 46.63211 + outSlope: 46.653656 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 12.781615 + inSlope: 42.60867 + outSlope: 42.60867 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 11.649187 + inSlope: -4.8624225 + outSlope: -4.8624234 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 11.102741 + inSlope: -76.74237 + outSlope: -76.14927 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 7.331749 + inSlope: -95.940094 + outSlope: -95.94018 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 4.7397494 + inSlope: -44.776455 + outSlope: -44.49068 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 5.958694 + inSlope: 50.55844 + outSlope: 50.55844 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 10.856566 + inSlope: 37.75044 + outSlope: 37.75044 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 12.756341 + inSlope: 12.543253 + outSlope: 12.56856 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 13.824281 + inSlope: 36.571167 + outSlope: 36.571167 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 18.032045 + inSlope: -13.935298 + outSlope: -13.9353 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 10.770524 + inSlope: -50.228607 + outSlope: -49.986465 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 10.04048 + inSlope: 3.1230328 + outSlope: 3.1936743 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 11.61924 + inSlope: -1.9902421 + outSlope: -2.0468922 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 10.860848 + inSlope: -22.771332 + outSlope: -22.771332 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1.4581983 + inSlope: 16.31505 + outSlope: 16.31505 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 1.253082 + inSlope: -21.230381 + outSlope: -21.21917 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.42652377 + inSlope: -1.069639 + outSlope: -1.069639 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.40676844 + inSlope: 4.27003 + outSlope: 4.2700305 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 3.4801002 + inSlope: 36.99882 + outSlope: 37.418243 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 4.4082417 + inSlope: -13.586686 + outSlope: -13.569854 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 1.403833 + inSlope: -16.89052 + outSlope: -16.884083 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 1.4595444 + inSlope: 1.3338746 + outSlope: 1.3338746 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.5916334 + inSlope: 88.87851 + outSlope: 88.87851 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 4.8279085 + inSlope: 13.0560055 + outSlope: 13.03216 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 2.3962572 + inSlope: -19.186756 + outSlope: -19.186754 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.50741893 + inSlope: -70.90063 + outSlope: -70.900635 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -5.430879 + inSlope: 35.251053 + outSlope: 35.683693 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -3.0637362 + inSlope: 55.11152 + outSlope: 55.108124 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.6517728 + inSlope: 35.252785 + outSlope: 35.251842 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.59222037 + inSlope: 37.239902 + outSlope: 37.239902 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 14.405507 + inSlope: -9.178304 + outSlope: -9.178304 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 14.592469 + inSlope: 11.058167 + outSlope: 11.049482 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 15.222739 + inSlope: -13.03842 + outSlope: -12.923327 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 14.752895 + inSlope: 16.026423 + outSlope: 16.026417 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 14.651762 + inSlope: -11.700837 + outSlope: -11.638481 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 14.400517 + inSlope: -7.8762608 + outSlope: -7.8762608 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.54378444 + inSlope: -13.158626 + outSlope: -13.158626 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -1.1796228 + inSlope: 5.7992964 + outSlope: 5.820215 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 2.3501775 + inSlope: 46.27682 + outSlope: 46.347553 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 6.02852 + inSlope: 3.8538697 + outSlope: 3.8538685 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 1.9837292 + inSlope: -48.60885 + outSlope: -48.65668 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.5460828 + inSlope: -43.029484 + outSlope: -43.029484 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -6.4084997 + inSlope: -15.95744 + outSlope: -15.95744 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -6.8572364 + inSlope: 7.8441663 + outSlope: 7.8617735 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -6.1582756 + inSlope: 13.4507675 + outSlope: 13.582192 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -6.689556 + inSlope: -3.8544848 + outSlope: -3.8544836 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -5.7072816 + inSlope: -6.875423 + outSlope: -6.99362 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -6.408207 + inSlope: -20.87782 + outSlope: -20.87782 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 13.0246935 + inSlope: -5.3514 + outSlope: -5.3514 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 13.103912 + inSlope: 4.649963 + outSlope: 4.649963 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 13.153472 + inSlope: 1.7280864 + outSlope: 1.7434145 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 12.054581 + inSlope: 2.442055 + outSlope: 2.403945 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 13.370964 + inSlope: 13.786806 + outSlope: 13.786813 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 13.140841 + inSlope: -6.7147927 + outSlope: -6.7238107 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 13.019769 + inSlope: -3.8940563 + outSlope: -3.8940563 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.5749163 + inSlope: -19.20057 + outSlope: -19.20057 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -2.5466826 + inSlope: 7.071254 + outSlope: 7.071254 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -1.3340385 + inSlope: 15.863133 + outSlope: 15.862043 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 4.2200723 + inSlope: 32.529606 + outSlope: 32.53143 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 4.5494256 + inSlope: -32.939167 + outSlope: -32.939182 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.9584267 + inSlope: -50.75921 + outSlope: -50.768494 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.5725081 + inSlope: -45.88734 + outSlope: -45.88734 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -5.911958 + inSlope: -6.638903 + outSlope: -6.638903 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -6.544217 + inSlope: -7.7806945 + outSlope: -7.7806945 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -8.110099 + inSlope: -10.251416 + outSlope: -10.249064 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -7.7301173 + inSlope: -6.1605945 + outSlope: -6.175709 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -7.179387 + inSlope: 27.72489 + outSlope: 27.724901 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -5.405104 + inSlope: 1.8641783 + outSlope: 1.83047 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -5.912001 + inSlope: -15.132437 + outSlope: -15.132437 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -14.008874 + inSlope: 18.78441 + outSlope: 18.78441 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -13.686756 + inSlope: -8.553114 + outSlope: -8.553114 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -13.502847 + inSlope: 10.425188 + outSlope: 10.425187 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -14.0777025 + inSlope: -8.003088 + outSlope: -8.0331545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -14.008242 + inSlope: 2.7576265 + outSlope: 2.7576265 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -4.2783694 + inSlope: 18.98857 + outSlope: 18.98857 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -4.2001815 + inSlope: -20.517622 + outSlope: -20.517622 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -6.2257776 + inSlope: -17.04578 + outSlope: -17.045778 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -6.801828 + inSlope: 28.50766 + outSlope: 28.493324 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -4.27824 + inSlope: 8.885539 + outSlope: 8.885539 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 4.35324 + inSlope: -4.8978205 + outSlope: -4.8978205 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 3.5431926 + inSlope: -3.190729 + outSlope: -3.190729 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 4.79064 + inSlope: 17.64563 + outSlope: 17.645628 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 5.7331843 + inSlope: -11.147334 + outSlope: -11.122273 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 4.354043 + inSlope: -9.88933 + outSlope: -9.88933 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 5.398538 + inSlope: 74.86277 + outSlope: 74.86277 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 7.926381 + inSlope: 32.596004 + outSlope: 32.908638 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 6.759866 + inSlope: -30.701696 + outSlope: -30.701704 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 4.00669 + inSlope: -29.310452 + outSlope: -29.310446 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 5.5598497 + inSlope: 89.48547 + outSlope: 89.26074 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 9.457358 + inSlope: 87.22948 + outSlope: 87.67253 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 11.925871 + inSlope: -45.092873 + outSlope: -44.95035 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 9.335321 + inSlope: -69.23664 + outSlope: -68.75219 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 6.1967845 + inSlope: -28.040867 + outSlope: -28.420929 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 5.3978157 + inSlope: -23.620972 + outSlope: -23.620972 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -26.79075 + inSlope: 83.97348 + outSlope: 83.97348 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -24.016481 + inSlope: 61.53871 + outSlope: 61.38275 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -24.157492 + inSlope: -82.847626 + outSlope: -82.84765 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -31.192383 + inSlope: -66.07522 + outSlope: -66.0752 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -33.9635 + inSlope: -43.56971 + outSlope: -44.002995 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -35.501816 + inSlope: -46.00388 + outSlope: -45.157475 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -38.376354 + inSlope: 36.254314 + outSlope: 36.49621 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -35.88008 + inSlope: 113.11789 + outSlope: 113.30132 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -27.454573 + inSlope: 60.724785 + outSlope: 60.579872 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -26.790913 + inSlope: 20.305843 + outSlope: 20.305843 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 5.9957056 + inSlope: -61.24543 + outSlope: -61.24543 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 3.9917386 + inSlope: -54.21008 + outSlope: -54.027718 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 1.5328852 + inSlope: -10.133625 + outSlope: -10.133628 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 2.2949443 + inSlope: 33.630203 + outSlope: 33.630196 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 5.638231 + inSlope: 54.38088 + outSlope: 54.710415 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 7.46486 + inSlope: 56.730568 + outSlope: 56.1012 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 13.107262 + inSlope: 20.19127 + outSlope: 20.550596 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 12.899836 + inSlope: -43.79919 + outSlope: -44.517033 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 7.483427 + inSlope: -63.8861 + outSlope: -63.750805 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 5.995177 + inSlope: -44.788425 + outSlope: -44.788425 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -7.9460993 + inSlope: -0.00060081476 + outSlope: -0.00060081476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -7.9460993 + inSlope: -0.00060081476 + outSlope: -0.00060081476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head/mixamorig:HeadTop_End + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_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.033333335 + value: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head/mixamorig:HeadTop_End + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_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.033333335 + value: -0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head/mixamorig:HeadTop_End + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 75.38284 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 75.38284 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head/mixamorig:LeftEar + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.3503092 + inSlope: 0.00018775462 + outSlope: 0.00018775462 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.3503092 + inSlope: 0.00018775462 + outSlope: 0.00018775462 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head/mixamorig:LeftEar + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 97.47056 + inSlope: -0.00068664545 + outSlope: -0.00068664545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 97.47056 + inSlope: -0.00068664545 + outSlope: -0.00068664545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head/mixamorig:LeftEar + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 75.38284 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 75.38284 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head/mixamorig:RightEar + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.3503092 + inSlope: -0.00018775462 + outSlope: -0.00018775462 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.3503092 + inSlope: -0.00018775462 + outSlope: -0.00018775462 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head/mixamorig:RightEar + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -97.47056 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -97.47056 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head/mixamorig:RightEar + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 83.0268 + inSlope: 13.858565 + outSlope: 13.858565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 83.40685 + inSlope: 4.667129 + outSlope: 3.9924996 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 83.51335 + inSlope: 0.43464655 + outSlope: 0.45181277 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 83.52188 + inSlope: 2.0956423 + outSlope: 1.8855282 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 83.412796 + inSlope: -12.143324 + outSlope: -12.143327 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 82.4449 + inSlope: -7.568894 + outSlope: -7.493134 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 82.73374 + inSlope: 1.2751008 + outSlope: 2.4437692 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 82.85828 + inSlope: 6.679682 + outSlope: 6.6824346 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 83.08479 + inSlope: 8.870088 + outSlope: 8.870088 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 83.47321 + inSlope: 3.3171847 + outSlope: 3.3171875 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 83.0268 + inSlope: -34.15996 + outSlope: -34.15996 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -106.83003 + inSlope: 471.78723 + outSlope: 471.78723 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -90.64681 + inSlope: 353.96573 + outSlope: 355.48593 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -82.05895 + inSlope: 47.69645 + outSlope: 47.671055 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -80.709915 + inSlope: 115.282295 + outSlope: 115.74095 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -66.63144 + inSlope: 210.62779 + outSlope: 210.62784 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -58.407555 + inSlope: -95.56458 + outSlope: -95.345314 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -90.286934 + inSlope: -243.45705 + outSlope: -242.52849 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -94.26562 + inSlope: 190.00565 + outSlope: 190.00032 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -77.169716 + inSlope: 165.4912 + outSlope: 165.4912 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -84.16479 + inSlope: -470.42636 + outSlope: -470.4268 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -106.82991 + inSlope: -584.7753 + outSlope: -584.7753 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -29.330088 + inSlope: 210.11438 + outSlope: 210.11438 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -21.869984 + inSlope: 170.11264 + outSlope: 171.77275 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -17.40213 + inSlope: 28.237606 + outSlope: 28.21152 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -16.781351 + inSlope: 160.9753 + outSlope: 161.43694 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 5.432151 + inSlope: 342.4023 + outSlope: 342.40237 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 22.499565 + inSlope: 58.494305 + outSlope: 58.679127 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 5.7619696 + inSlope: -196.11256 + outSlope: -195.17256 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 1.3588961 + inSlope: 26.499527 + outSlope: 26.496803 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 7.971793 + inSlope: -80.96572 + outSlope: -80.96572 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -4.9997644 + inSlope: -584.9539 + outSlope: -584.95447 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -29.32992 + inSlope: -634.7362 + outSlope: -634.7362 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 53.026695 + inSlope: -147.60336 + outSlope: -147.60336 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 48.089027 + inSlope: -103.07441 + outSlope: -103.09878 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 44.48382 + inSlope: -95.363884 + outSlope: -93.78308 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 39.757378 + inSlope: -57.61986 + outSlope: -57.978622 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 43.667034 + inSlope: 70.02015 + outSlope: 70.020164 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 48.022354 + inSlope: 131.99937 + outSlope: 131.99937 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 61.615234 + inSlope: 175.64256 + outSlope: 178.3603 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 66.45535 + inSlope: 99.20106 + outSlope: 99.200966 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 68.55468 + inSlope: -58.169125 + outSlope: -58.171925 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 62.07098 + inSlope: -174.68915 + outSlope: -174.68915 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 57.118343 + inSlope: -141.71231 + outSlope: -141.71243 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 53.02482 + inSlope: -126.62648 + outSlope: -126.62648 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 53.922157 + inSlope: 48.68797 + outSlope: 48.68797 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 55.347675 + inSlope: 21.843222 + outSlope: 21.066109 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 57.92854 + inSlope: 102.494354 + outSlope: 106.1324 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 62.37208 + inSlope: 33.03761 + outSlope: 31.642164 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 58.35789 + inSlope: -79.42136 + outSlope: -79.42137 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 54.51774 + inSlope: 8.253137 + outSlope: 8.253137 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 62.222248 + inSlope: 253.69888 + outSlope: 235.94754 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 71.0408 + inSlope: 206.09254 + outSlope: 206.09236 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 73.97105 + inSlope: -139.54341 + outSlope: -139.54355 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 64.85274 + inSlope: -210.52827 + outSlope: -210.52827 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 57.403366 + inSlope: -139.2064 + outSlope: -139.20515 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 53.922306 + inSlope: -83.13946 + outSlope: -83.13946 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -4.964 + inSlope: 100.93238 + outSlope: 100.93238 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -1.7789391 + inSlope: 38.08624 + outSlope: 37.367622 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 1.5405788 + inSlope: 216.67894 + outSlope: 219.84142 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 12.188162 + inSlope: 170.20381 + outSlope: 169.07037 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 12.503871 + inSlope: -19.503948 + outSlope: -19.503952 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 14.824283 + inSlope: 102.47691 + outSlope: 102.47691 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 26.389854 + inSlope: 240.1917 + outSlope: 222.38046 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 33.122948 + inSlope: 81.43136 + outSlope: 81.43128 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 29.810196 + inSlope: -324.26395 + outSlope: -324.26425 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 14.531962 + inSlope: -389.3633 + outSlope: -389.3633 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 1.3712847 + inSlope: -268.4901 + outSlope: -268.49036 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -4.9532137 + inSlope: -169.71309 + outSlope: -169.71309 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 66.99662 + inSlope: -85.880806 + outSlope: -85.880806 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 64.08848 + inSlope: -27.590101 + outSlope: -27.590101 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 65.10177 + inSlope: 29.301222 + outSlope: 29.301218 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 66.1337 + inSlope: 12.175596 + outSlope: 12.174226 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 65.340775 + inSlope: -44.864048 + outSlope: -53.42468 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 63.6493 + inSlope: -41.047894 + outSlope: -40.960125 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 60.891125 + inSlope: -4.342175 + outSlope: -4.378394 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 62.744663 + inSlope: 12.609899 + outSlope: 17.844374 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 64.40615 + inSlope: 46.36128 + outSlope: 46.533325 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 66.99796 + inSlope: 74.41802 + outSlope: 74.41802 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 154.36388 + inSlope: -125.16311 + outSlope: -125.16311 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 150.53783 + inSlope: 28.096159 + outSlope: 28.096159 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 155.99937 + inSlope: 162.32161 + outSlope: 162.3216 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 161.23088 + inSlope: 325.92996 + outSlope: 325.9273 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 177.04039 + inSlope: 317.11627 + outSlope: 302.29657 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -173.78459 + inSlope: 42.971188 + outSlope: 43.713917 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -171.36386 + inSlope: -28.642733 + outSlope: -28.596947 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 169.9819 + inSlope: -326.55112 + outSlope: -325.1404 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 150.07536 + inSlope: -63.541492 + outSlope: -62.24173 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 154.37225 + inSlope: 149.74379 + outSlope: 149.74379 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 70.89619 + inSlope: -155.47919 + outSlope: -155.47919 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 66.055916 + inSlope: 20.400923 + outSlope: 20.400923 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 72.0236 + inSlope: 183.2128 + outSlope: 183.21278 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 78.141914 + inSlope: 363.6385 + outSlope: 363.63855 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 95.58303 + inSlope: 352.23337 + outSlope: 337.45627 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 105.76225 + inSlope: 47.139126 + outSlope: 47.87911 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 108.62888 + inSlope: -27.591135 + outSlope: -27.545694 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 87.92416 + inSlope: -362.9129 + outSlope: -361.52402 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 65.99876 + inSlope: -65.1122 + outSlope: -63.814835 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 70.905396 + inSlope: 167.91519 + outSlope: 167.91519 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 3.175303 + inSlope: -50.50093 + outSlope: -50.50093 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 1.5234802 + inSlope: -79.55309 + outSlope: -79.55309 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -2.2044609 + inSlope: -93.48466 + outSlope: -93.48465 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -4.692328 + inSlope: -75.22556 + outSlope: -75.22558 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -7.233759 + inSlope: -31.418669 + outSlope: -31.418669 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -6.7753963 + inSlope: 40.119843 + outSlope: 40.091423 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -2.0110204 + inSlope: 63.95637 + outSlope: 63.956383 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.7476112 + inSlope: 32.313232 + outSlope: 32.87088 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 3.7642434 + inSlope: -7.0236735 + outSlope: -6.326001 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 2.6667647 + inSlope: -18.871895 + outSlope: -18.520277 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 3.1747062 + inSlope: 25.925312 + outSlope: 25.925312 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 37.75676 + inSlope: -63.91296 + outSlope: -63.91296 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 35.60272 + inSlope: -65.92861 + outSlope: -65.92861 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 33.435974 + inSlope: -51.503902 + outSlope: -51.5039 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 32.13728 + inSlope: -41.78752 + outSlope: -41.787533 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 30.673185 + inSlope: -35.971817 + outSlope: -35.971817 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 29.682302 + inSlope: -3.5161402 + outSlope: -3.7946599 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 31.304016 + inSlope: -5.3098288 + outSlope: -5.30983 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 27.589384 + inSlope: -78.79661 + outSlope: -78.55446 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 23.845102 + inSlope: 80.57526 + outSlope: 80.64429 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 28.624537 + inSlope: 143.61517 + outSlope: 143.62048 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 37.756977 + inSlope: 128.71709 + outSlope: 128.71709 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -4.605413 + inSlope: 75.43534 + outSlope: 75.43534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -2.071089 + inSlope: 25.534822 + outSlope: 25.534822 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -2.895272 + inSlope: -12.316296 + outSlope: -12.316294 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -2.9650207 + inSlope: -25.380344 + outSlope: -25.38035 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -4.605785 + inSlope: -66.07217 + outSlope: -66.07217 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -7.407294 + inSlope: -71.71819 + outSlope: -71.697174 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -10.866488 + inSlope: -32.949924 + outSlope: -32.949932 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -9.9458275 + inSlope: 74.22621 + outSlope: 73.9699 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.5895999 + inSlope: 44.757366 + outSlope: 44.870884 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.41077706 + inSlope: -24.714687 + outSlope: -24.966228 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -4.6067257 + inSlope: -106.62554 + outSlope: -106.62554 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 20.113775 + inSlope: -0.00051498413 + outSlope: -0.00051498413 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 20.113775 + inSlope: -0.00051498413 + outSlope: -0.00051498413 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -23.050344 + inSlope: 0.00051498413 + outSlope: 0.00051498413 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -23.050344 + inSlope: 0.00051498413 + outSlope: 0.00051498413 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -34.625748 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -34.625748 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 8.360449 + inSlope: -0.00051498413 + outSlope: -0.00051498413 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 8.360449 + inSlope: -0.00051498413 + outSlope: -0.00051498413 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -14.076619 + inSlope: 0.0004291534 + outSlope: 0.0004291534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -14.076619 + inSlope: 0.0004291534 + outSlope: 0.0004291534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 15.225291 + inSlope: 0.0004291534 + outSlope: 0.0004291534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 15.225291 + inSlope: 0.0004291534 + outSlope: 0.0004291534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -25.24836 + inSlope: 0.00068664545 + outSlope: 0.00068664545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -25.24836 + inSlope: 0.00068664545 + outSlope: 0.00068664545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2/mixamorig:LeftHandThumb3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 6.8625073 + inSlope: -0.00038623807 + outSlope: -0.00038623807 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 6.8625073 + inSlope: -0.00038623807 + outSlope: -0.00038623807 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2/mixamorig:LeftHandThumb3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -13.866313 + inSlope: -0.0004291534 + outSlope: -0.0004291534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -13.866313 + inSlope: -0.0004291534 + outSlope: -0.0004291534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2/mixamorig:LeftHandThumb3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 2.2293777 + inSlope: -0.00068664545 + outSlope: -0.00068664545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 2.2293777 + inSlope: -0.00068664545 + outSlope: -0.00068664545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2/mixamorig:LeftHandThumb3/mixamorig:LeftHandThumb4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 4.7274175 + inSlope: -0.00004291534 + outSlope: -0.00004291534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 4.7274175 + inSlope: -0.00004291534 + outSlope: -0.00004291534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2/mixamorig:LeftHandThumb3/mixamorig:LeftHandThumb4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1.7559197 + inSlope: 0.000064373016 + outSlope: 0.000064373016 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 1.7559197 + inSlope: 0.000064373016 + outSlope: 0.000064373016 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2/mixamorig:LeftHandThumb3/mixamorig:LeftHandThumb4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 19.793755 + inSlope: 0.00068664545 + outSlope: 0.00068664545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 19.793755 + inSlope: 0.00068664545 + outSlope: 0.00068664545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -8.427784 + inSlope: 0.00034332272 + outSlope: 0.00034332272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -8.427784 + inSlope: 0.00034332272 + outSlope: 0.00034332272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -4.125309 + inSlope: 0.00034332272 + outSlope: 0.00034332272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -4.125309 + inSlope: 0.00034332272 + outSlope: 0.00034332272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 28.320652 + inSlope: -0.00034332272 + outSlope: -0.00034332272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 28.320652 + inSlope: -0.00034332272 + outSlope: -0.00034332272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.43786204 + inSlope: 0.00037550923 + outSlope: 0.00037550923 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.43786204 + inSlope: 0.00037550923 + outSlope: 0.00037550923 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 4.10852 + inSlope: 0.00004291534 + outSlope: 0.00004291534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 4.10852 + inSlope: 0.00004291534 + outSlope: 0.00004291534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 28.412529 + inSlope: 0.00068664545 + outSlope: 0.00068664545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 28.412529 + inSlope: 0.00068664545 + outSlope: 0.00068664545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2/mixamorig:LeftHandIndex3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1.0445068 + inSlope: 0.00027894974 + outSlope: 0.00027894974 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 1.0445068 + inSlope: 0.00027894974 + outSlope: 0.00027894974 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2/mixamorig:LeftHandIndex3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 4.1243477 + inSlope: -0.00034332272 + outSlope: -0.00034332272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 4.1243477 + inSlope: -0.00034332272 + outSlope: -0.00034332272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2/mixamorig:LeftHandIndex3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 5.099696 + inSlope: 0.0004291534 + outSlope: 0.0004291534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 5.099696 + inSlope: 0.0004291534 + outSlope: 0.0004291534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2/mixamorig:LeftHandIndex3/mixamorig:LeftHandIndex4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.000013842918 + inSlope: 0.00012742841 + outSlope: 0.00012742841 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.000013842918 + inSlope: 0.00012742841 + outSlope: 0.00012742841 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2/mixamorig:LeftHandIndex3/mixamorig:LeftHandIndex4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0000056779786 + inSlope: -0.00051101804 + outSlope: -0.00051101804 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.0000056779786 + inSlope: -0.00051101804 + outSlope: -0.00051101804 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2/mixamorig:LeftHandIndex3/mixamorig:LeftHandIndex4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 19.69675 + inSlope: -0.00034332272 + outSlope: -0.00034332272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 19.69675 + inSlope: -0.00034332272 + outSlope: -0.00034332272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -8.209847 + inSlope: -0.00060081476 + outSlope: -0.00060081476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -8.209847 + inSlope: -0.00060081476 + outSlope: -0.00060081476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -4.330647 + inSlope: 0.00038623807 + outSlope: 0.00038623807 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -4.330647 + inSlope: 0.00038623807 + outSlope: 0.00038623807 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 45.425144 + inSlope: -0.00034332272 + outSlope: -0.00034332272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 45.425144 + inSlope: -0.00034332272 + outSlope: -0.00034332272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1.653376 + inSlope: 0.0004827976 + outSlope: 0.0004827976 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 1.653376 + inSlope: 0.0004827976 + outSlope: 0.0004827976 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 7.646347 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 7.646347 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 43.439957 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 43.439957 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2/mixamorig:LeftHandMiddle3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 3.3779788 + inSlope: -0.00030040738 + outSlope: -0.00030040738 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 3.3779788 + inSlope: -0.00030040738 + outSlope: -0.00030040738 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2/mixamorig:LeftHandMiddle3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 7.577139 + inSlope: -0.00051498413 + outSlope: -0.00051498413 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 7.577139 + inSlope: -0.00051498413 + outSlope: -0.00051498413 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2/mixamorig:LeftHandMiddle3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1.2090136 + inSlope: 0.00011801719 + outSlope: 0.00011801719 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 1.2090136 + inSlope: 0.00011801719 + outSlope: 0.00011801719 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2/mixamorig:LeftHandMiddle3/mixamorig:LeftHandMiddle4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.33140835 + inSlope: 0.000244081 + outSlope: 0.000244081 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.33140835 + inSlope: 0.000244081 + outSlope: 0.000244081 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2/mixamorig:LeftHandMiddle3/mixamorig:LeftHandMiddle4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.33135885 + inSlope: -0.0000911951 + outSlope: -0.0000911951 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.33135885 + inSlope: -0.0000911951 + outSlope: -0.0000911951 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2/mixamorig:LeftHandMiddle3/mixamorig:LeftHandMiddle4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 6.5048223 + inSlope: -0.00004291534 + outSlope: -0.00004291534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 6.5048223 + inSlope: -0.00004291534 + outSlope: -0.00004291534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 9.777085 + inSlope: -0.00008583068 + outSlope: -0.00008583068 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 9.777085 + inSlope: -0.00008583068 + outSlope: -0.00008583068 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -1.7593875 + inSlope: 0.00030040738 + outSlope: 0.00030040738 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -1.7593875 + inSlope: 0.00030040738 + outSlope: 0.00030040738 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 50.99556 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 50.99556 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 4.4925876 + inSlope: -0.00030040738 + outSlope: -0.00030040738 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 4.4925876 + inSlope: -0.00030040738 + outSlope: -0.00030040738 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 9.437681 + inSlope: 0.00017166136 + outSlope: 0.00017166136 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 9.437681 + inSlope: 0.00017166136 + outSlope: 0.00017166136 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 31.681469 + inSlope: 0.00034332272 + outSlope: 0.00034332272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 31.681469 + inSlope: 0.00034332272 + outSlope: 0.00034332272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2/mixamorig:LeftHandPinky3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1.3346742 + inSlope: -0.00028967854 + outSlope: -0.00028967854 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 1.3346742 + inSlope: -0.00028967854 + outSlope: -0.00028967854 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2/mixamorig:LeftHandPinky3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 4.7014174 + inSlope: -0.00012874603 + outSlope: -0.00012874603 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 4.7014174 + inSlope: -0.00012874603 + outSlope: -0.00012874603 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2/mixamorig:LeftHandPinky3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 5.103193 + inSlope: 0.0002145767 + outSlope: 0.0002145767 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 5.103193 + inSlope: 0.0002145767 + outSlope: 0.0002145767 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2/mixamorig:LeftHandPinky3/mixamorig:LeftHandPinky4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0000027701424 + inSlope: -0.00024931278 + outSlope: -0.00024931278 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.0000027701424 + inSlope: -0.00024931278 + outSlope: -0.00024931278 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2/mixamorig:LeftHandPinky3/mixamorig:LeftHandPinky4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0000031914478 + inSlope: -0.0002872303 + outSlope: -0.0002872303 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.0000031914478 + inSlope: -0.0002872303 + outSlope: -0.0002872303 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2/mixamorig:LeftHandPinky3/mixamorig:LeftHandPinky4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 82.19661 + inSlope: 5.6545253 + outSlope: 5.6545253 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 81.61406 + inSlope: -39.4622 + outSlope: -39.4622 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 78.96045 + inSlope: -15.369872 + outSlope: -15.36987 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 79.112434 + inSlope: 5.1467505 + outSlope: 5.147782 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 78.888 + inSlope: -1.034546 + outSlope: -1.0345457 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 80.26189 + inSlope: 24.24911 + outSlope: 24.382097 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 82.004036 + inSlope: 11.581994 + outSlope: 11.738216 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 82.19671 + inSlope: 5.5680137 + outSlope: 5.5680137 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 115.68874 + inSlope: -93.89842 + outSlope: -93.89842 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 117.752785 + inSlope: 202.26894 + outSlope: 202.26894 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 130.6103 + inSlope: 53.563152 + outSlope: 53.56315 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 130.39479 + inSlope: 7.056655 + outSlope: 7.0198064 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 129.14246 + inSlope: -36.34003 + outSlope: -36.34002 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 125.27525 + inSlope: -55.81557 + outSlope: -52.890247 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 117.8567 + inSlope: -97.12361 + outSlope: -95.34837 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 115.6869 + inSlope: -67.11073 + outSlope: -67.11073 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 42.607796 + inSlope: -57.612644 + outSlope: -57.612644 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 48.455788 + inSlope: 284.0635 + outSlope: 284.0635 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 65.507324 + inSlope: 52.582623 + outSlope: 52.58262 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 62.534054 + inSlope: -20.402122 + outSlope: -20.436747 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 63.425774 + inSlope: 4.727097 + outSlope: 4.7270956 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 57.328583 + inSlope: -144.42532 + outSlope: -141.5252 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 44.561913 + inSlope: -120.67349 + outSlope: -118.898964 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 42.607586 + inSlope: -60.64974 + outSlope: -60.64974 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 26.900043 + inSlope: 68.537865 + outSlope: 68.537865 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 29.200928 + inSlope: 108.66027 + outSlope: 108.66027 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 34.025173 + inSlope: 145.93723 + outSlope: 145.93721 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 39.101845 + inSlope: 100.56265 + outSlope: 100.562675 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 40.659126 + inSlope: 14.330979 + outSlope: 13.614462 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 38.543037 + inSlope: -55.341217 + outSlope: -55.34123 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 34.20342 + inSlope: -77.21346 + outSlope: -77.21346 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 29.938248 + inSlope: -16.85097 + outSlope: -16.61957 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 30.2075 + inSlope: -11.448785 + outSlope: -11.448774 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 29.219265 + inSlope: -1.3166417 + outSlope: -1.3950921 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 29.432137 + inSlope: -48.951305 + outSlope: -48.46692 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 26.901281 + inSlope: -77.65333 + outSlope: -77.65333 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -2.1120458 + inSlope: 28.655132 + outSlope: 28.655132 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -1.2020887 + inSlope: -17.156406 + outSlope: -17.156406 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -3.4617112 + inSlope: -68.61552 + outSlope: -68.61551 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -5.275626 + inSlope: 5.2987566 + outSlope: 5.298758 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -2.911061 + inSlope: 62.83809 + outSlope: 63.16471 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -1.1076885 + inSlope: -5.619179 + outSlope: -5.6191797 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -1.2286972 + inSlope: 23.076027 + outSlope: 23.076027 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 2.1595097 + inSlope: 60.20671 + outSlope: 60.351166 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 4.106229 + inSlope: 8.899184 + outSlope: 8.899176 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 2.75079 + inSlope: -46.556973 + outSlope: -46.54961 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.706719 + inSlope: -45.978107 + outSlope: -46.78184 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -2.1027894 + inSlope: -36.90118 + outSlope: -36.90118 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 42.611965 + inSlope: -102.39497 + outSlope: -102.39497 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 39.18819 + inSlope: -156.96613 + outSlope: -156.96613 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 31.949871 + inSlope: -130.05031 + outSlope: -130.0503 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 30.8536 + inSlope: 66.84699 + outSlope: 66.84701 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 36.617657 + inSlope: 153.40794 + outSlope: 153.66112 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 43.63095 + inSlope: 85.93573 + outSlope: 85.93575 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 48.84848 + inSlope: 37.319187 + outSlope: 37.319187 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 49.755432 + inSlope: 45.708622 + outSlope: 45.86655 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 52.350754 + inSlope: 44.545444 + outSlope: 44.545403 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 52.73126 + inSlope: -20.090887 + outSlope: -20.082151 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 46.980793 + inSlope: -125.16947 + outSlope: -125.75684 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 42.615036 + inSlope: -127.55826 + outSlope: -127.55826 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 23.58419 + inSlope: 7.1225734 + outSlope: 7.1225734 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 23.821486 + inSlope: 5.912189 + outSlope: 5.912189 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 23.87351 + inSlope: -2.5369833 + outSlope: -3.193531 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 23.334585 + inSlope: 2.0405388 + outSlope: 2.0405385 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 24.666445 + inSlope: 23.291872 + outSlope: 23.293678 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 25.197262 + inSlope: -19.251997 + outSlope: -19.181787 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 24.331459 + inSlope: -20.902178 + outSlope: -20.902159 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 23.828796 + inSlope: -10.394431 + outSlope: -10.414353 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 23.763952 + inSlope: -0.7871533 + outSlope: -0.3946499 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 23.581057 + inSlope: -8.390987 + outSlope: -8.390987 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 3.8666058 + inSlope: -1.9993399 + outSlope: -1.9993399 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 3.7994757 + inSlope: 38.425453 + outSlope: 38.425453 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 6.4315863 + inSlope: 40.437325 + outSlope: 40.345257 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 4.329317 + inSlope: -21.145535 + outSlope: -21.145533 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 2.7989037 + inSlope: -1.6396879 + outSlope: -1.6101516 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 2.8829458 + inSlope: -20.099306 + outSlope: -20.196627 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 1.7318897 + inSlope: -21.720144 + outSlope: -21.720123 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 1.4069176 + inSlope: -10.862379 + outSlope: -10.834409 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 1.9276642 + inSlope: 43.070942 + outSlope: 43.07963 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 3.8659809 + inSlope: 57.653667 + outSlope: 57.653667 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 108.15195 + inSlope: -8.511658 + outSlope: -8.511658 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 107.867935 + inSlope: 84.3901 + outSlope: 84.3901 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 113.78112 + inSlope: 92.06336 + outSlope: 91.96129 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 109.38118 + inSlope: -52.875824 + outSlope: -52.87582 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 105.000404 + inSlope: -11.144942 + outSlope: -11.129495 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 105.038574 + inSlope: -39.17313 + outSlope: -39.245914 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 102.706764 + inSlope: -42.47933 + outSlope: -42.47929 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 102.18554 + inSlope: -21.043608 + outSlope: -21.02337 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 103.441635 + inSlope: 102.84646 + outSlope: 102.84998 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 108.15099 + inSlope: 140.88126 + outSlope: 140.88126 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -14.319163 + inSlope: -55.149048 + outSlope: -55.149048 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -16.161798 + inSlope: -52.237755 + outSlope: -52.237755 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -17.783127 + inSlope: 6.9598384 + outSlope: 6.959838 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -15.708471 + inSlope: 72.988174 + outSlope: 72.98819 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -12.917237 + inSlope: 93.15042 + outSlope: 93.15042 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -9.485321 + inSlope: 88.396 + outSlope: 88.421165 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -3.656237 + inSlope: 16.783968 + outSlope: 16.779654 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -2.9350598 + inSlope: 39.37437 + outSlope: 39.34902 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -1.1356163 + inSlope: -5.398751 + outSlope: -5.398746 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -3.2987928 + inSlope: -86.06039 + outSlope: -86.01287 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -10.75027 + inSlope: -111.05552 + outSlope: -111.31676 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -14.317564 + inSlope: -106.312225 + outSlope: -106.312225 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -18.234955 + inSlope: 25.69702 + outSlope: 25.69702 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -17.38595 + inSlope: 74.89877 + outSlope: 74.89877 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -13.212388 + inSlope: 117.4247 + outSlope: 117.42469 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -9.597558 + inSlope: 70.74722 + outSlope: 70.74724 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -8.475903 + inSlope: -7.0164876 + outSlope: -7.0164876 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -10.020584 + inSlope: -34.56986 + outSlope: -34.33227 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -12.215658 + inSlope: 1.980915 + outSlope: 2.0203688 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -11.343424 + inSlope: 13.904315 + outSlope: 13.976842 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -10.659904 + inSlope: 11.116019 + outSlope: 11.116009 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -10.598849 + inSlope: -39.20717 + outSlope: -39.33848 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -16.134811 + inSlope: -75.563286 + outSlope: -75.04218 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -18.237602 + inSlope: -64.850296 + outSlope: -64.850296 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 7.160029 + inSlope: 27.346815 + outSlope: 27.346815 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 8.06477 + inSlope: 10.429114 + outSlope: 10.429114 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 7.828039 + inSlope: -6.632137 + outSlope: -6.6321363 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 7.74902 + inSlope: -3.0278058 + outSlope: -3.0278065 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 7.5523157 + inSlope: 14.473716 + outSlope: 14.473716 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 8.636729 + inSlope: 8.734561 + outSlope: 8.115376 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 5.8565936 + inSlope: -24.202291 + outSlope: -24.20887 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 4.7920256 + inSlope: -18.372704 + outSlope: -18.428452 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 4.2239175 + inSlope: -3.8996747 + outSlope: -3.899671 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 4.5204515 + inSlope: 12.285022 + outSlope: 12.622391 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 6.294593 + inSlope: 33.109062 + outSlope: 32.2086 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 7.162008 + inSlope: 28.997969 + outSlope: 28.997969 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 10.342569 + inSlope: 0.00051498413 + outSlope: 0.00051498413 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 10.342569 + inSlope: 0.00051498413 + outSlope: 0.00051498413 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 37.17033 + inSlope: 0.00034332272 + outSlope: 0.00034332272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 37.17033 + inSlope: 0.00034332272 + outSlope: 0.00034332272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 35.920727 + inSlope: 0.00034332272 + outSlope: 0.00034332272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 35.920727 + inSlope: 0.00034332272 + outSlope: 0.00034332272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 10.670158 + inSlope: 0.00068664545 + outSlope: 0.00068664545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 10.670158 + inSlope: 0.00068664545 + outSlope: 0.00068664545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 11.290035 + inSlope: 0.00034332272 + outSlope: 0.00034332272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 11.290035 + inSlope: 0.00034332272 + outSlope: 0.00034332272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -23.222996 + inSlope: 0.00034332272 + outSlope: 0.00034332272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -23.222996 + inSlope: 0.00034332272 + outSlope: 0.00034332272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.8023007 + inSlope: 0.0005793571 + outSlope: 0.0005793571 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.8023007 + inSlope: 0.0005793571 + outSlope: 0.0005793571 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2/mixamorig:RightHandThumb3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1.8197503 + inSlope: -0.0002145767 + outSlope: -0.0002145767 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 1.8197503 + inSlope: -0.0002145767 + outSlope: -0.0002145767 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2/mixamorig:RightHandThumb3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -30.614416 + inSlope: 0.00051498413 + outSlope: 0.00051498413 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -30.614416 + inSlope: 0.00051498413 + outSlope: 0.00051498413 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2/mixamorig:RightHandThumb3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 2.229393 + inSlope: 0.00068664545 + outSlope: 0.00068664545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 2.229393 + inSlope: 0.00068664545 + outSlope: 0.00068664545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2/mixamorig:RightHandThumb3/mixamorig:RightHandThumb4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -4.72741 + inSlope: -0.0006437301 + outSlope: -0.0006437301 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -4.72741 + inSlope: -0.0006437301 + outSlope: -0.0006437301 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2/mixamorig:RightHandThumb3/mixamorig:RightHandThumb4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -1.755928 + inSlope: 0.00068664545 + outSlope: 0.00068664545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -1.755928 + inSlope: 0.00068664545 + outSlope: 0.00068664545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2/mixamorig:RightHandThumb3/mixamorig:RightHandThumb4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 4.5184526 + inSlope: -0.0004291534 + outSlope: -0.0004291534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 4.5184526 + inSlope: -0.0004291534 + outSlope: -0.0004291534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -2.5139494 + inSlope: 0.00025749207 + outSlope: 0.00025749207 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -2.5139494 + inSlope: 0.00025749207 + outSlope: 0.00025749207 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -2.5163064 + inSlope: -0.00047206876 + outSlope: -0.00047206876 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -2.5163064 + inSlope: -0.00047206876 + outSlope: -0.00047206876 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 11.504419 + inSlope: 0.00051498413 + outSlope: 0.00051498413 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 11.504419 + inSlope: 0.00051498413 + outSlope: 0.00051498413 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.46784317 + inSlope: 0.0005900859 + outSlope: 0.0005900859 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.46784317 + inSlope: 0.0005900859 + outSlope: 0.0005900859 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -1.3038486 + inSlope: 0.000032186508 + outSlope: 0.000032186508 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -1.3038486 + inSlope: 0.000032186508 + outSlope: 0.000032186508 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 33.411503 + inSlope: -0.00034332272 + outSlope: -0.00034332272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 33.411503 + inSlope: -0.00034332272 + outSlope: -0.00034332272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2/mixamorig:RightHandIndex3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -1.2698356 + inSlope: -0.000075101845 + outSlope: -0.000075101845 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -1.2698356 + inSlope: -0.000075101845 + outSlope: -0.000075101845 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2/mixamorig:RightHandIndex3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -4.2293096 + inSlope: 0.00004291534 + outSlope: 0.00004291534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -4.2293096 + inSlope: 0.00004291534 + outSlope: 0.00004291534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2/mixamorig:RightHandIndex3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 5.0996976 + inSlope: 0.00030040738 + outSlope: 0.00030040738 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 5.0996976 + inSlope: 0.00030040738 + outSlope: 0.00030040738 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2/mixamorig:RightHandIndex3/mixamorig:RightHandIndex4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0000041528456 + inSlope: 0.00037375608 + outSlope: 0.00037375608 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.0000041528456 + inSlope: 0.00037375608 + outSlope: 0.00037375608 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2/mixamorig:RightHandIndex3/mixamorig:RightHandIndex4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.000008543951 + inSlope: -0.0006043354 + outSlope: -0.0006043354 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.000008543951 + inSlope: -0.0006043354 + outSlope: -0.0006043354 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2/mixamorig:RightHandIndex3/mixamorig:RightHandIndex4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.11684479 + inSlope: -0.00063166016 + outSlope: -0.00063166016 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.11684479 + inSlope: -0.00063166016 + outSlope: -0.00063166016 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.048153043 + inSlope: 0.0003325939 + outSlope: 0.0003325939 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.048153043 + inSlope: 0.0003325939 + outSlope: 0.0003325939 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -8.616964 + inSlope: 0.00051498413 + outSlope: 0.00051498413 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -8.616964 + inSlope: 0.00051498413 + outSlope: 0.00051498413 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 75.48488 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 75.48488 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -146.03018 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -146.03018 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -154.60216 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -154.60216 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 70.17035 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 70.17035 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2/mixamorig:RightHandMiddle3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -13.817692 + inSlope: 0.00034332272 + outSlope: 0.00034332272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -13.817692 + inSlope: 0.00034332272 + outSlope: 0.00034332272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2/mixamorig:RightHandMiddle3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -19.052662 + inSlope: 0.00034332272 + outSlope: 0.00034332272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -19.052662 + inSlope: 0.00034332272 + outSlope: 0.00034332272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2/mixamorig:RightHandMiddle3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1.2090023 + inSlope: -0.00023603438 + outSlope: -0.00023603438 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 1.2090023 + inSlope: -0.00023603438 + outSlope: -0.00023603438 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2/mixamorig:RightHandMiddle3/mixamorig:RightHandMiddle4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.33138394 + inSlope: 0.0005793571 + outSlope: 0.0005793571 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.33138394 + inSlope: 0.0005793571 + outSlope: 0.0005793571 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2/mixamorig:RightHandMiddle3/mixamorig:RightHandMiddle4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.331363 + inSlope: -0.00028163192 + outSlope: -0.00028163192 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.331363 + inSlope: -0.00028163192 + outSlope: -0.00028163192 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2/mixamorig:RightHandMiddle3/mixamorig:RightHandMiddle4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 3.6434515 + inSlope: -0.00032186505 + outSlope: -0.00032186505 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 3.6434515 + inSlope: -0.00032186505 + outSlope: -0.00032186505 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -20.063086 + inSlope: 0.00051498413 + outSlope: 0.00051498413 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -20.063086 + inSlope: 0.00051498413 + outSlope: 0.00051498413 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -7.1159554 + inSlope: 0.00034332272 + outSlope: 0.00034332272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -7.1159554 + inSlope: 0.00034332272 + outSlope: 0.00034332272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 82.40978 + inSlope: 0.00068664545 + outSlope: 0.00068664545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 82.40978 + inSlope: 0.00068664545 + outSlope: 0.00068664545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -116.46219 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -116.46219 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -123.07984 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -123.07984 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 75.9962 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 75.9962 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2/mixamorig:RightHandPinky3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -20.923487 + inSlope: -0.00051498413 + outSlope: -0.00051498413 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -20.923487 + inSlope: -0.00051498413 + outSlope: -0.00051498413 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2/mixamorig:RightHandPinky3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -26.596245 + inSlope: -0.00068664545 + outSlope: -0.00068664545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -26.596245 + inSlope: -0.00068664545 + outSlope: -0.00068664545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2/mixamorig:RightHandPinky3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 5.1031947 + inSlope: 0.00004291534 + outSlope: 0.00004291534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 5.1031947 + inSlope: 0.00004291534 + outSlope: 0.00004291534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2/mixamorig:RightHandPinky3/mixamorig:RightHandPinky4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0000034754216 + inSlope: -0.00031278795 + outSlope: -0.00031278795 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.0000034754216 + inSlope: -0.00031278795 + outSlope: -0.00031278795 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2/mixamorig:RightHandPinky3/mixamorig:RightHandPinky4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.000001310286 + inSlope: -0.00011792573 + outSlope: -0.00011792573 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.000001310286 + inSlope: -0.00011792573 + outSlope: -0.00011792573 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2/mixamorig:RightHandPinky3/mixamorig:RightHandPinky4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -38.810417 + inSlope: -420.51886 + outSlope: -420.51886 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -52.651268 + inSlope: -272.50488 + outSlope: -272.50488 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -57.395523 + inSlope: -1.0299683 + outSlope: -1.0299681 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -53.100742 + inSlope: 98.64382 + outSlope: 98.643845 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -50.91498 + inSlope: 63.910564 + outSlope: 63.910564 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -48.780445 + inSlope: -46.47183 + outSlope: -46.471806 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -53.96086 + inSlope: -44.43968 + outSlope: -44.4397 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -51.450172 + inSlope: 259.918 + outSlope: 259.918 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -36.878197 + inSlope: 501.98114 + outSlope: 501.98114 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -18.155472 + inSlope: 643.48987 + outSlope: 643.48987 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 5.414993 + inSlope: 560.4745 + outSlope: 560.4745 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 20.267958 + inSlope: 68.61941 + outSlope: 68.61935 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 10.207511 + inSlope: -357.57507 + outSlope: -357.57538 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -3.52206 + inSlope: -434.1142 + outSlope: -434.1142 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -18.847036 + inSlope: -526.4108 + outSlope: -526.41125 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -38.810623 + inSlope: -544.0545 + outSlope: -544.0545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -7.0033193 + inSlope: 255.014 + outSlope: 255.014 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 2.8317297 + inSlope: 320.11655 + outSlope: 320.11655 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 11.469191 + inSlope: 199.78105 + outSlope: 199.78102 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 14.590764 + inSlope: 33.86355 + outSlope: 33.863556 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 14.188728 + inSlope: -90.4374 + outSlope: -90.4374 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 8.861013 + inSlope: -167.45413 + outSlope: -167.45406 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 2.4297915 + inSlope: -332.46375 + outSlope: -332.4639 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -11.803184 + inSlope: -393.9774 + outSlope: -393.9774 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -22.493156 + inSlope: -256.13046 + outSlope: -256.13046 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -30.727032 + inSlope: -36.88145 + outSlope: -36.88145 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -26.06372 + inSlope: 133.35481 + outSlope: 133.35481 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -24.016768 + inSlope: 24.359266 + outSlope: 24.359243 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -25.541698 + inSlope: -15.578943 + outSlope: -15.578958 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -24.460224 + inSlope: 123.64049 + outSlope: 123.64049 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -18.140396 + inSlope: 255.35524 + outSlope: 255.35547 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -7.003226 + inSlope: 492.62387 + outSlope: 492.62387 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 162.60973 + inSlope: -107.37624 + outSlope: -107.37624 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 157.5387 + inSlope: -226.9583 + outSlope: -226.9583 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 150.61952 + inSlope: -196.58522 + outSlope: -196.5852 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 145.9977 + inSlope: -149.0144 + outSlope: -149.01445 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 140.22229 + inSlope: -76.11329 + outSlope: -76.11329 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 140.64972 + inSlope: 40.248417 + outSlope: 40.248398 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 143.57433 + inSlope: 192.10548 + outSlope: 192.10558 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 151.84212 + inSlope: 302.41382 + outSlope: 302.41382 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 162.49188 + inSlope: 265.1743 + outSlope: 265.1743 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 171.42181 + inSlope: 251.15846 + outSlope: 251.15846 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -177.73119 + inSlope: 304.52457 + outSlope: 304.52457 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -169.27043 + inSlope: 109.72459 + outSlope: 109.72449 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -170.8542 + inSlope: -164.3416 + outSlope: -164.34038 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 179.50847 + inSlope: -235.68834 + outSlope: -235.68834 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 172.9727 + inSlope: -245.72435 + outSlope: -245.72456 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 162.60956 + inSlope: -472.34665 + outSlope: -472.34665 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -69.91974 + inSlope: -581.9444 + outSlope: -581.9444 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -87.83453 + inSlope: 494.48224 + outSlope: 494.48224 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -62.94704 + inSlope: 751.75214 + outSlope: 751.7521 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -39.421204 + inSlope: 449.51105 + outSlope: 449.51114 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -32.83075 + inSlope: 130.5066 + outSlope: 130.5066 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -30.715858 + inSlope: -354.90167 + outSlope: -354.90152 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -56.47651 + inSlope: -692.3856 + outSlope: -692.3859 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -77.26626 + inSlope: -359.40814 + outSlope: -359.40814 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -83.20618 + inSlope: 97.355354 + outSlope: 97.355354 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -71.586105 + inSlope: 640.7227 + outSlope: 640.7227 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -40.13381 + inSlope: 585.1075 + outSlope: 585.1075 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -31.996191 + inSlope: -288.6749 + outSlope: -288.67462 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -59.574245 + inSlope: -917.4596 + outSlope: -917.46045 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -81.33496 + inSlope: 550.709 + outSlope: 550.709 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -71.45868 + inSlope: 205.30977 + outSlope: 205.30995 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -69.91983 + inSlope: 65.08856 + outSlope: 65.08856 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -169.18481 + inSlope: 230.75545 + outSlope: 230.75545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -96.49038 + inSlope: 7624.3677 + outSlope: 7624.3677 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.30059502 + inSlope: 148.62276 + outSlope: 148.62274 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 4.88412 + inSlope: 18.305021 + outSlope: 18.305027 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 4.2393622 + inSlope: -20.586792 + outSlope: -20.586792 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 3.4084604 + inSlope: -67.03701 + outSlope: -67.03698 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -2.5920382 + inSlope: -327.3625 + outSlope: -327.36264 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -21.33019 + inSlope: -903.8846 + outSlope: -903.8846 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -3.6990292 + inSlope: 743.6297 + outSlope: 743.6297 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 5.3264256 + inSlope: 237.12532 + outSlope: 237.12532 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 12.441506 + inSlope: -34.865887 + outSlope: -34.865887 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 7.8487997 + inSlope: -51.69883 + outSlope: -51.698784 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 9.583972 + inSlope: 422.20123 + outSlope: 422.20023 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 131.87381 + inSlope: 2354.785 + outSlope: 2354.785 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 176.54968 + inSlope: 466.0236 + outSlope: 466.02127 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -169.1849 + inSlope: 381.81372 + outSlope: 381.81372 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 174.24957 + inSlope: -297.51523 + outSlope: -297.51523 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 99.35225 + inSlope: -7695.602 + outSlope: -7695.602 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.51983446 + inSlope: -223.36835 + outSlope: -223.36832 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -7.0136485 + inSlope: -51.45107 + outSlope: -51.45108 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -6.004425 + inSlope: 27.897036 + outSlope: 27.897036 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -5.0635786 + inSlope: 77.477905 + outSlope: 77.477875 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 1.4775668 + inSlope: 381.7613 + outSlope: 381.76144 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 23.312971 + inSlope: 955.6927 + outSlope: 955.6927 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 6.1735897 + inSlope: -748.6241 + outSlope: -748.6241 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -3.683198 + inSlope: -253.24577 + outSlope: -253.24577 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -11.035004 + inSlope: -20.802614 + outSlope: -20.802614 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -9.943719 + inSlope: -4.185019 + outSlope: -4.185015 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -11.803456 + inSlope: -364.7536 + outSlope: -364.75256 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -130.19897 + inSlope: -2275.5295 + outSlope: -2275.5295 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -173.32327 + inSlope: -414.88635 + outSlope: -414.88672 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 174.24968 + inSlope: -326.50162 + outSlope: -326.50162 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 84.11816 + inSlope: 56.113354 + outSlope: 56.113354 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 80.2474 + inSlope: -403.12613 + outSlope: -403.12613 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 62.934547 + inSlope: -369.54504 + outSlope: -369.545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 55.51521 + inSlope: -92.07606 + outSlope: -92.07608 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 56.916176 + inSlope: -21.852495 + outSlope: -21.852495 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 54.06791 + inSlope: 149.1305 + outSlope: 149.13042 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 66.833626 + inSlope: 556.333 + outSlope: 556.3305 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 85.909775 + inSlope: -520.6902 + outSlope: -520.6902 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 67.79144 + inSlope: -466.20624 + outSlope: -466.20624 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 57.00705 + inSlope: -95.11414 + outSlope: -95.11414 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 61.433594 + inSlope: 311.35257 + outSlope: 311.35257 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 73.798485 + inSlope: 192.52786 + outSlope: 192.52493 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 55.022984 + inSlope: -523.11115 + outSlope: -523.1103 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 58.036285 + inSlope: 242.38039 + outSlope: 242.38039 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 71.82634 + inSlope: 386.74213 + outSlope: 386.74246 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 84.11826 + inSlope: 60.490093 + outSlope: 60.490093 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -87.137505 + inSlope: 3444.2734 + outSlope: 3444.2734 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.38018242 + inSlope: 617.7703 + outSlope: 617.7703 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 8.755981 + inSlope: 128.21732 + outSlope: 128.2173 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 13.645645 + inSlope: 63.53667 + outSlope: 63.536686 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 14.3417 + inSlope: 25.534117 + outSlope: 25.534117 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 15.290038 + inSlope: -14.6776495 + outSlope: -14.677643 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 12.204118 + inSlope: -299.52298 + outSlope: -299.5231 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -100.31559 + inSlope: -3961.9824 + outSlope: -3961.9824 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -165.26889 + inSlope: -145.30244 + outSlope: -145.30244 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -166.52382 + inSlope: -14.593965 + outSlope: -14.593965 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -167.40854 + inSlope: 364.96173 + outSlope: 364.96173 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -123.577446 + inSlope: 3427.0178 + outSlope: 3427.0146 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -18.36037 + inSlope: 105.01445 + outSlope: 105.01317 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -32.673286 + inSlope: -377.92352 + outSlope: -377.92352 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -46.61071 + inSlope: -696.5058 + outSlope: -696.5064 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -87.13462 + inSlope: -4487.1743 + outSlope: -4487.1743 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -84.61154 + inSlope: 3413.3435 + outSlope: 3413.3435 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 1.113112 + inSlope: 592.0615 + outSlope: 592.0615 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 9.561271 + inSlope: 131.74057 + outSlope: 131.74055 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 15.406198 + inSlope: 93.738686 + outSlope: 93.7387 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 17.134605 + inSlope: 20.690691 + outSlope: 20.690691 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 16.721334 + inSlope: -51.486572 + outSlope: -51.48655 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 12.576212 + inSlope: -312.03442 + outSlope: -312.03458 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -99.75969 + inSlope: -3952.8057 + outSlope: -3952.8057 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -164.27335 + inSlope: -162.58531 + outSlope: -162.58531 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -167.15762 + inSlope: -92.38267 + outSlope: -92.38267 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -171.51295 + inSlope: 298.92154 + outSlope: 298.92154 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -128.65427 + inSlope: 3501.1123 + outSlope: 3501.1118 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -17.332998 + inSlope: 259.56467 + outSlope: 259.56488 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -27.755146 + inSlope: -318.48508 + outSlope: -318.48508 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -41.569176 + inSlope: -732.63776 + outSlope: -732.6384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -84.60857 + inSlope: -4561.5005 + outSlope: -4561.5005 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 67.96608 + inSlope: -886.495 + outSlope: -886.495 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 38.32929 + inSlope: -749.45465 + outSlope: -749.45465 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 17.320068 + inSlope: -341.9151 + outSlope: -341.91507 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 15.358118 + inSlope: -53.138973 + outSlope: -53.138985 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 13.650517 + inSlope: 84.4501 + outSlope: 84.4501 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 21.229366 + inSlope: 141.15681 + outSlope: 141.15675 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 22.921864 + inSlope: -0.47824842 + outSlope: -0.47824863 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 21.371689 + inSlope: -24.938967 + outSlope: -24.938967 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 21.371254 + inSlope: -0.0034332278 + outSlope: -0.0034332278 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 21.371475 + inSlope: 0.064544685 + outSlope: 0.064544685 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 21.375576 + inSlope: 578.8041 + outSlope: 578.8041 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 59.155693 + inSlope: 982.2581 + outSlope: 982.2545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 72.29801 + inSlope: 799.7814 + outSlope: 799.78485 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -28.265724 + inSlope: -107.04186 + outSlope: -107.04186 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 82.257866 + inSlope: -463.5235 + outSlope: -463.52393 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 67.96607 + inSlope: -546.91986 + outSlope: -546.91986 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot/mixamorig:LeftToeBase + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1.3299145 + inSlope: 90.15481 + outSlope: 90.15481 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 3.1599884 + inSlope: 47.541958 + outSlope: 47.541958 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 5.4083433 + inSlope: 59.210556 + outSlope: 59.21055 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 7.6650367 + inSlope: 158.42578 + outSlope: 158.42583 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 15.965066 + inSlope: 142.65396 + outSlope: 142.65396 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 17.310774 + inSlope: -81.91939 + outSlope: -81.91935 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 10.350925 + inSlope: -192.00146 + outSlope: -192.00154 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 4.654633 + inSlope: -84.2899 + outSlope: -84.2899 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 4.6546736 + inSlope: 0.00042915347 + outSlope: 0.00042915347 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 4.6546264 + inSlope: -0.007681847 + outSlope: -0.007681847 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 4.6540833 + inSlope: -146.83229 + outSlope: -146.83229 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -13.90194 + inSlope: -1650.952 + outSlope: -1650.9532 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -132.85614 + inSlope: 3343.6753 + outSlope: 3343.67 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 16.389719 + inSlope: 36.524567 + outSlope: 36.524567 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -64.25194 + inSlope: -5922.1436 + outSlope: -5922.1475 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 1.3299841 + inSlope: 551.7932 + outSlope: 551.7932 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot/mixamorig:LeftToeBase + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -15.412544 + inSlope: 97.07862 + outSlope: 97.07862 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -13.337713 + inSlope: 42.41323 + outSlope: 42.41323 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -11.757269 + inSlope: 29.475458 + outSlope: 29.475454 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -10.709093 + inSlope: 59.127205 + outSlope: 59.12722 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -7.841289 + inSlope: 57.33177 + outSlope: 57.33177 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -6.7168365 + inSlope: -27.84678 + outSlope: -27.84677 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -9.864235 + inSlope: -82.718094 + outSlope: -82.71813 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -12.014996 + inSlope: -30.553324 + outSlope: -30.553324 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -12.0149975 + inSlope: -0.00017166139 + outSlope: -0.00017166139 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -12.015031 + inSlope: -0.009527207 + outSlope: -0.009527207 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -12.015665 + inSlope: -129.96466 + outSlope: -129.96466 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -29.58123 + inSlope: -1506.3582 + outSlope: -1506.3596 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -139.69075 + inSlope: 3403.0671 + outSlope: 3403.062 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.011269284 + inSlope: 9.907669 + outSlope: 9.907669 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -72.09739 + inSlope: -5982.6567 + outSlope: -5982.661 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -15.412543 + inSlope: 279.61115 + outSlope: 279.61115 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot/mixamorig:LeftToeBase + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 4.8948174 + inSlope: 0.00034332272 + outSlope: 0.00034332272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 4.8948174 + inSlope: 0.00034332272 + outSlope: 0.00034332272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot/mixamorig:LeftToeBase/mixamorig:LeftToe_End + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 4.903599 + inSlope: -0.00034332272 + outSlope: -0.00034332272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 4.903599 + inSlope: -0.00034332272 + outSlope: -0.00034332272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot/mixamorig:LeftToeBase/mixamorig:LeftToe_End + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 8.569193 + inSlope: 0.00051498413 + outSlope: 0.00051498413 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 8.569193 + inSlope: 0.00051498413 + outSlope: 0.00051498413 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot/mixamorig:LeftToeBase/mixamorig:LeftToe_End + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -33.911797 + inSlope: 545.5309 + outSlope: 545.5309 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -15.390495 + inSlope: 624.4896 + outSlope: 624.4896 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 7.5653424 + inSlope: 494.03552 + outSlope: 494.03683 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 18.670961 + inSlope: 162.3228 + outSlope: 162.32283 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 17.887589 + inSlope: -209.28682 + outSlope: -209.28682 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 3.2366774 + inSlope: -506.68793 + outSlope: -506.6877 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -14.853115 + inSlope: -487.8453 + outSlope: -487.84552 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -29.310259 + inSlope: -434.28528 + outSlope: -434.28528 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -43.89973 + inSlope: -409.74097 + outSlope: -409.74097 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -56.198277 + inSlope: -215.01172 + outSlope: -215.01172 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -58.24087 + inSlope: 166.00446 + outSlope: 166.00446 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -47.610348 + inSlope: 168.67688 + outSlope: 168.67673 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -46.96233 + inSlope: 171.05733 + outSlope: 171.05748 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -36.31522 + inSlope: 121.71513 + outSlope: 121.71513 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -38.793266 + inSlope: 33.2824 + outSlope: 33.282425 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -33.91172 + inSlope: 150.63986 + outSlope: 150.63986 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 9.647699 + inSlope: -179.41034 + outSlope: -179.41034 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 5.528188 + inSlope: -5.02809 + outSlope: -5.02809 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 7.580219 + inSlope: -64.40902 + outSlope: -64.40901 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -1.3122903 + inSlope: -202.88277 + outSlope: -202.88281 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -6.7678733 + inSlope: -295.5263 + outSlope: -295.5263 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -19.38086 + inSlope: -239.84392 + outSlope: -239.84381 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -24.689903 + inSlope: -107.96604 + outSlope: -107.96609 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -27.099901 + inSlope: -39.120773 + outSlope: -39.120773 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -26.866014 + inSlope: 150.38928 + outSlope: 150.38928 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -15.379297 + inSlope: 564.06506 + outSlope: 564.06506 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 5.8904386 + inSlope: 386.87698 + outSlope: 386.87698 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 9.802415 + inSlope: -16.2832 + outSlope: -16.283184 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 5.735225 + inSlope: -30.970047 + outSlope: -30.970074 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 7.7221346 + inSlope: 103.064384 + outSlope: 103.064384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 12.45717 + inSlope: 23.591682 + outSlope: 23.591703 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 9.647788 + inSlope: -68.50042 + outSlope: -68.50042 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 156.28609 + inSlope: 440.92938 + outSlope: 440.92938 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 169.7624 + inSlope: 337.19647 + outSlope: 337.19647 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -179.29971 + inSlope: 301.88916 + outSlope: 301.88913 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -171.13368 + inSlope: 197.41467 + outSlope: 197.41472 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -165.21867 + inSlope: -105.796974 + outSlope: -105.796974 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -176.6871 + inSlope: -192.9268 + outSlope: -192.92671 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -179.95526 + inSlope: -36.787704 + outSlope: -36.787724 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -179.92017 + inSlope: -15.474244 + outSlope: -15.474244 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 178.39355 + inSlope: -172.76552 + outSlope: -172.76552 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 166.75786 + inSlope: -550.2901 + outSlope: -550.2901 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 146.5509 + inSlope: -366.3831 + outSlope: -366.3831 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 142.95186 + inSlope: 4.717255 + outSlope: 4.717251 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 145.92702 + inSlope: 85.60403 + outSlope: 85.6041 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 148.85251 + inSlope: 66.04157 + outSlope: 66.04157 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 150.14949 + inSlope: 114.94309 + outSlope: 114.94319 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 156.28598 + inSlope: 171.20012 + outSlope: 171.20012 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -66.22765 + inSlope: 87.82607 + outSlope: 87.82607 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -63.297348 + inSlope: 404.3353 + outSlope: 404.3353 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -39.18427 + inSlope: 441.22772 + outSlope: 441.2277 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -33.82919 + inSlope: -113.062004 + outSlope: -113.06203 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -46.43515 + inSlope: -479.3088 + outSlope: -479.3088 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -65.88795 + inSlope: -607.6923 + outSlope: -607.692 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -86.67545 + inSlope: -9.159847 + outSlope: -9.170838 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -83.363 + inSlope: 144.4716 + outSlope: 144.4716 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -82.657166 + inSlope: -167.41518 + outSlope: -167.41518 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -85.12387 + inSlope: 526.4649 + outSlope: 526.4649 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -61.517094 + inSlope: 873.10034 + outSlope: 873.10034 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -26.420073 + inSlope: 580.78796 + outSlope: 580.7875 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -21.83148 + inSlope: 100.32415 + outSlope: 100.324234 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -19.75417 + inSlope: -448.6621 + outSlope: -448.6621 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -52.00671 + inSlope: -685.7038 + outSlope: -685.7044 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -66.22757 + inSlope: -421.4634 + outSlope: -421.4634 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 12.024981 + inSlope: 38.140236 + outSlope: 38.140236 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 13.216447 + inSlope: 44.530247 + outSlope: 44.530247 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 14.887534 + inSlope: -77.88405 + outSlope: -77.88404 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 8.220908 + inSlope: -214.7874 + outSlope: -214.78745 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.3005527 + inSlope: -109.33323 + outSlope: -109.33323 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.6019534 + inSlope: -148.8299 + outSlope: -148.82983 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -34.406487 + inSlope: -9104.148 + outSlope: -9104.147 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -165.89229 + inSlope: -280.0896 + outSlope: -280.0896 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -168.51183 + inSlope: 237.89384 + outSlope: 237.89384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -7.219204 + inSlope: 808.7445 + outSlope: 808.7445 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 9.0040045 + inSlope: 75.52492 + outSlope: 75.52492 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 10.453326 + inSlope: -9.749251 + outSlope: -9.749242 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 7.5264206 + inSlope: -29.89858 + outSlope: -29.898607 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 8.274773 + inSlope: 21.907427 + outSlope: 21.907427 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 9.274955 + inSlope: 62.585766 + outSlope: 62.585823 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 12.024943 + inSlope: 173.5832 + outSlope: 173.5832 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.83087003 + inSlope: -28.88182 + outSlope: -28.88182 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -1.712533 + inSlope: -11.591176 + outSlope: -11.591176 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -1.3842528 + inSlope: -77.16331 + outSlope: -77.1633 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -7.344423 + inSlope: -134.30222 + outSlope: -134.30225 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -9.412429 + inSlope: 77.54829 + outSlope: 77.54829 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -2.7572079 + inSlope: 279.4831 + outSlope: 279.48297 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 34.42011 + inSlope: 9157.255 + outSlope: 9157.253 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 167.33826 + inSlope: 321.83902 + outSlope: 321.83902 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 171.30692 + inSlope: -171.79048 + outSlope: -171.79048 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 13.068953 + inSlope: -696.11694 + outSlope: -696.11694 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 1.4045546 + inSlope: 53.964996 + outSlope: 53.964996 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 4.1916604 + inSlope: 68.91771 + outSlope: 68.91765 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 6.0985456 + inSlope: -11.336894 + outSlope: -11.336905 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 3.644566 + inSlope: -45.678795 + outSlope: -45.678795 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 2.7347002 + inSlope: -73.75852 + outSlope: -73.75858 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.830849 + inSlope: -196.96098 + outSlope: -196.96098 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 82.85257 + inSlope: -283.41156 + outSlope: -283.41156 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 70.44594 + inSlope: -239.79033 + outSlope: -239.79033 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 69.19784 + inSlope: 124.821846 + outSlope: 124.82183 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 79.16367 + inSlope: 514.2253 + outSlope: 514.2254 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 76.380775 + inSlope: -692.0323 + outSlope: -692.0323 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 54.23344 + inSlope: -319.55624 + outSlope: -319.55612 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 54.54934 + inSlope: 97.70481 + outSlope: 97.70486 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 60.997013 + inSlope: 135.80304 + outSlope: 135.80304 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 63.77226 + inSlope: -44.53137 + outSlope: -44.53137 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 58.852608 + inSlope: -125.13497 + outSlope: -125.13497 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 55.51654 + inSlope: -105.16389 + outSlope: -105.16389 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 51.524246 + inSlope: 150.6006 + outSlope: 150.60046 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 65.92062 + inSlope: 139.3642 + outSlope: 139.36433 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 52.928917 + inSlope: -46.232533 + outSlope: -46.232533 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 70.34726 + inSlope: 558.4269 + outSlope: 558.4246 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 82.852455 + inSlope: -461.86636 + outSlope: -461.86636 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 121.98523 + inSlope: 2596.2778 + outSlope: 2596.2778 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 172.04744 + inSlope: 412.91974 + outSlope: 412.91974 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -174.7239 + inSlope: 232.23586 + outSlope: 232.23584 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -172.98886 + inSlope: -86.33467 + outSlope: -86.33332 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 10.999941 + inSlope: -137.97885 + outSlope: -137.97885 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 3.7389755 + inSlope: -191.83435 + outSlope: -191.83426 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -5.1500545 + inSlope: -249.33055 + outSlope: -249.33067 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -13.966411 + inSlope: -359.5926 + outSlope: -359.5926 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -27.319975 + inSlope: -314.9741 + outSlope: -314.9741 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -33.31677 + inSlope: -144.14372 + outSlope: -144.14372 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -37.669624 + inSlope: 51.30135 + outSlope: 51.30135 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -30.651138 + inSlope: 114.68491 + outSlope: 114.68481 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -28.765614 + inSlope: 1078.1497 + outSlope: 1078.1492 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 18.051933 + inSlope: 449.9238 + outSlope: 449.9238 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 22.557674 + inSlope: 648.37775 + outSlope: 648.37836 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 121.98507 + inSlope: 2838.9475 + outSlope: 2838.9475 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 133.67482 + inSlope: 2533.0007 + outSlope: 2533.0007 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -178.39024 + inSlope: 310.10968 + outSlope: 310.10968 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -169.85414 + inSlope: 76.65298 + outSlope: 76.65297 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -173.7427 + inSlope: -222.06662 + outSlope: -222.06667 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 6.7254558 + inSlope: -99.99409 + outSlope: -99.99409 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 5.7722387 + inSlope: -78.63525 + outSlope: -78.635216 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -2.1999032 + inSlope: -238.69044 + outSlope: -238.69055 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -11.217654 + inSlope: -342.1305 + outSlope: -342.1305 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -23.212784 + inSlope: -248.49016 + outSlope: -248.49016 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -26.097095 + inSlope: -18.815119 + outSlope: -18.815119 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -25.222548 + inSlope: 151.63588 + outSlope: 151.63588 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -16.790396 + inSlope: 146.78748 + outSlope: 146.78735 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -14.210846 + inSlope: 1052.5415 + outSlope: 1052.5425 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 30.153343 + inSlope: 418.5908 + outSlope: 418.5908 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 35.0814 + inSlope: 641.8546 + outSlope: 641.8552 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 133.67465 + inSlope: 2814.3457 + outSlope: 2814.3457 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 21.847744 + inSlope: 0.00034332272 + outSlope: 0.00034332272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 21.847736 + inSlope: -0.00034332272 + outSlope: -0.00034332272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 21.847763 + inSlope: 399.7279 + outSlope: 399.72787 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 48.739185 + inSlope: 581.7229 + outSlope: 581.723 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 59.143505 + inSlope: 268.95255 + outSlope: 268.95255 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 65.74142 + inSlope: -137.99036 + outSlope: -137.99303 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 60.2804 + inSlope: 23.844099 + outSlope: 23.84411 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 67.27663 + inSlope: 38.03467 + outSlope: 38.03467 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 61.295494 + inSlope: -356.0772 + outSlope: -356.0772 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 45.889515 + inSlope: -633.3746 + outSlope: -633.3746 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 20.11583 + inSlope: -398.35193 + outSlope: -398.35193 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 19.021233 + inSlope: -0.44700626 + outSlope: -0.44700584 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 20.110243 + inSlope: 38.18999 + outSlope: 38.190025 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 21.515768 + inSlope: 24.827215 + outSlope: 24.434034 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 21.847763 + inSlope: -0.00068664586 + outSlope: -0.00068664586 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot/mixamorig:RightToeBase + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -3.0027478 + inSlope: 0.00010728835 + outSlope: 0.00010728835 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -3.0027356 + inSlope: 0.00038623807 + outSlope: 0.00038623807 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -3.0027657 + inSlope: -95.9666 + outSlope: -95.96659 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -9.7360325 + inSlope: -457.24042 + outSlope: -457.24054 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -35.242004 + inSlope: -1194.1136 + outSlope: -1194.1136 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -89.779884 + inSlope: -724.5182 + outSlope: -724.5178 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -82.31514 + inSlope: 305.9128 + outSlope: 305.91296 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -64.66766 + inSlope: 996.02606 + outSlope: 996.02606 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -27.23641 + inSlope: 874.4862 + outSlope: 874.4862 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -1.9436466 + inSlope: 184.11826 + outSlope: 184.11826 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -5.800166 + inSlope: -89.49506 + outSlope: -89.49506 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -8.989749 + inSlope: -39.532673 + outSlope: -39.53264 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -8.450212 + inSlope: 63.560062 + outSlope: 63.560116 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -4.7274117 + inSlope: 82.538445 + outSlope: 82.73785 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -3.0027626 + inSlope: 0.00071883237 + outSlope: 0.00071883237 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot/mixamorig:RightToeBase + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 13.222754 + inSlope: 0.0008583068 + outSlope: 0.0008583068 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 13.222816 + inSlope: 0.0020599365 + outSlope: 0.0020599365 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 13.222801 + inSlope: 47.684093 + outSlope: 47.68409 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 15.153131 + inSlope: -284.15662 + outSlope: -284.15668 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -6.3113155 + inSlope: -938.7799 + outSlope: -938.7799 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -47.797394 + inSlope: -488.28738 + outSlope: -488.28854 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -37.365273 + inSlope: 231.3507 + outSlope: 231.3508 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -27.584068 + inSlope: 706.7416 + outSlope: 706.7416 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -1.8512303 + inSlope: 536.6454 + outSlope: 536.6454 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 12.4405985 + inSlope: 30.786354 + outSlope: 30.786354 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 10.307791 + inSlope: -25.569822 + outSlope: -25.569822 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 9.348652 + inSlope: -6.7844014 + outSlope: -6.784395 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 9.82659 + inSlope: 41.47696 + outSlope: 41.476997 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 12.146603 + inSlope: 51.984905 + outSlope: 52.237442 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 13.222809 + inSlope: -0.004119875 + outSlope: -0.004119875 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot/mixamorig:RightToeBase + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 4.8948174 + inSlope: 0.00034332272 + outSlope: 0.00034332272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 4.8948174 + inSlope: 0.00034332272 + outSlope: 0.00034332272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot/mixamorig:RightToeBase/mixamorig:RightToe_End + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -4.903599 + inSlope: 0.00034332272 + outSlope: 0.00034332272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -4.903599 + inSlope: 0.00034332272 + outSlope: 0.00034332272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot/mixamorig:RightToeBase/mixamorig:RightToe_End + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -8.569193 + inSlope: -0.00051498413 + outSlope: -0.00051498413 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -8.569193 + inSlope: -0.00051498413 + outSlope: -0.00051498413 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot/mixamorig:RightToeBase/mixamorig:RightToe_End + classID: 4 + script: {fileID: 0} + m_HasGenericRootTransform: 0 + m_HasMotionFloatCurves: 0 + m_Events: [] diff --git a/Assets/Jammo-Character/Animations/Mixamo-Gun/Rifle Run Forward.anim.meta b/Assets/Jammo-Character/Animations/Mixamo-Gun/Rifle Run Forward.anim.meta new file mode 100644 index 0000000..66962de --- /dev/null +++ b/Assets/Jammo-Character/Animations/Mixamo-Gun/Rifle Run Forward.anim.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 6bb3f56b719796048bfe0af7dda91336 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 7400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Jammo-Character/Animations/Mixamo-Gun/Rifle Run Left.anim b/Assets/Jammo-Character/Animations/Mixamo-Gun/Rifle Run Left.anim new file mode 100644 index 0000000..5b6f649 --- /dev/null +++ b/Assets/Jammo-Character/Animations/Mixamo-Gun/Rifle Run Left.anim @@ -0,0 +1,3738 @@ +%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: Rifle Run Left + 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, 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.033333335 + 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: jammo_mixamo_rig + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.046355046, y: 0.41250467, z: -0.06997801, w: 0.90708005} + inSlope: {x: 0.23715107, y: 0.9482091, z: 0.23696232, w: -0.42267677} + outSlope: {x: 0.23715107, y: 0.9482091, z: 0.23696232, w: -0.42267677} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.0003956109, y: 0.5619111, z: -0.0122160055, w: 0.8271073} + inSlope: {x: 0.14287287, y: 0.7270466, z: 0.39956582, w: -0.4876452} + outSlope: {x: 0.14287287, y: 0.7270466, z: 0.39956582, w: -0.4876452} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: 0.0062236805, y: 0.59342825, z: 0.015250819, w: 0.8047183} + inSlope: {x: -0.08226663, y: -0.181447, z: 0.2679875, w: 0.12565613} + outSlope: {x: -0.08226663, y: -0.181447, z: 0.2679875, w: 0.12565613} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.031047294, y: 0.48938417, z: -0.0031957992, w: 0.8715096} + inSlope: {x: 0.051058054, y: -1.355453, z: -0.6970625, w: 0.75629807} + outSlope: {x: 0.051058054, y: -1.355453, z: -0.6970625, w: 0.75629807} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: -0.00444134, y: 0.40470365, z: -0.057456955, w: 0.9126302} + inSlope: {x: -0.13993843, y: -0.9903011, z: -0.56619406, w: 0.41279984} + outSlope: {x: -0.13993843, y: -0.9903011, z: -0.56619406, w: 0.41279984} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: -0.0256553, y: 0.37861925, z: -0.07113289, w: 0.92245835} + inSlope: {x: -0.59180653, y: -0.23100705, z: -0.26401922, w: 0.06549419} + outSlope: {x: -0.59180653, y: -0.23100705, z: -0.26401922, w: 0.06549419} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.046355017, y: 0.41250473, z: -0.0699779, w: 0.90708} + inSlope: {x: -0.07379736, y: 0.6960473, z: 0.1524102, w: -0.29749483} + outSlope: {x: -0.07379736, y: 0.6960473, z: 0.1524102, w: -0.29749483} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.12007289, y: -0.0022765365, z: -0.015549295, w: 0.9926407} + inSlope: {x: 0.087324224, y: 0.027041733, z: -0.46706337, w: -0.021627543} + outSlope: {x: 0.087324224, y: 0.027041733, z: -0.46706337, w: -0.021627543} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.13465804, y: -0.008441437, z: -0.052576974, w: 0.9894603} + inSlope: {x: -0.14881712, y: -0.07975843, z: 0.19577439, w: 0.027605297} + outSlope: {x: -0.14881712, y: -0.07975843, z: 0.19577439, w: 0.027605297} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: 0.12249109, y: -0.017470177, z: -0.028756069, w: 0.99189913} + inSlope: {x: -0.0040750466, y: -0.18075675, z: 0.27170926, w: 0.0053822966} + outSlope: {x: -0.0040750466, y: -0.18075675, z: 0.27170926, w: 0.0053822966} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: 0.12366445, y: -0.024558349, z: -0.021059109, w: 0.9917966} + inSlope: {x: -0.081117384, y: -0.17479101, z: 0.11279223, w: 0.00853032} + outSlope: {x: -0.081117384, y: -0.17479101, z: 0.11279223, w: 0.00853032} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.11708327, y: -0.02912291, z: -0.021236587, w: 0.9924678} + inSlope: {x: 0.054192923, y: -0.091825604, z: -0.054656774, w: -0.010677875} + outSlope: {x: 0.054192923, y: -0.091825604, z: -0.054656774, w: -0.010677875} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.12633072, y: -0.03257435, z: -0.028475676, w: 0.9910442} + inSlope: {x: -0.3366338, y: -0.0055773463, z: -0.11352358, w: 0.035939816} + outSlope: {x: -0.3366338, y: -0.0055773463, z: -0.11352358, w: 0.035939816} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.080238186, y: -0.02417371, z: -0.03416036, w: 0.9958969} + inSlope: {x: -0.2986717, y: 0.20467643, z: 0.18341368, w: 0.038295656} + outSlope: {x: -0.2986717, y: 0.20467643, z: 0.18341368, w: 0.038295656} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: 0.10282314, y: -0.007288411, z: -0.014244046, w: 0.994571} + inSlope: {x: 0.5272488, y: 0.2269291, z: 0.067389734, w: -0.050897628} + outSlope: {x: 0.5272488, y: 0.2269291, z: 0.067389734, w: -0.050897628} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.1200735, y: -0.0022781747, z: -0.015550906, w: 0.9926406} + inSlope: {x: 0.51751125, y: 0.15030722, z: -0.03920583, w: -0.057910737} + outSlope: {x: 0.51751125, y: 0.15030722, z: -0.03920583, w: -0.057910737} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.07664615, y: -0.021707932, z: 0.034891393, w: 0.9962112} + inSlope: {x: 0.023192165, y: 0.11676052, z: 0.25178644, w: -0.009357332} + outSlope: {x: 0.023192165, y: 0.11676052, z: 0.25178644, w: -0.009357332} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: 0.069964305, y: -0.021575283, z: 0.048719328, w: 0.99612546} + inSlope: {x: -0.18879086, y: -0.045696594, z: 0.05272524, w: 0.00949949} + outSlope: {x: -0.18879086, y: -0.045696594, z: 0.05272524, w: 0.00949949} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.06612946, y: -0.023767434, z: 0.051082663, w: 0.99621916} + inSlope: {x: 0.038890027, y: -0.05749604, z: -0.08987782, w: 0.0004264689} + outSlope: {x: 0.038890027, y: -0.05749604, z: -0.08987782, w: 0.0004264689} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: 0.06513415, y: -0.026069865, z: 0.04479976, w: 0.99652946} + inSlope: {x: -0.209523, y: -0.107070394, z: -0.30844775, w: 0.022117496} + outSlope: {x: -0.209523, y: -0.107070394, z: -0.30844775, w: 0.022117496} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.049841918, y: -0.03782778, z: 0.024623988, w: 0.9977367} + inSlope: {x: 0.11416638, y: -0.21266037, z: -0.029292237, w: -0.013641716} + outSlope: {x: 0.11416638, y: -0.21266037, z: -0.029292237, w: -0.013641716} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.0659795, y: -0.04955374, z: 0.035942182, w: 0.99594146} + inSlope: {x: 0.08947598, y: 0.020523593, z: 0.16247705, w: -0.010261239} + outSlope: {x: 0.08947598, y: 0.020523593, z: 0.16247705, w: -0.010261239} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: 0.077912405, y: -0.0285058, z: 0.03306021, w: 0.9960041} + inSlope: {x: 0.15346417, y: 0.15916339, z: -0.026235638, w: -0.0062093143} + outSlope: {x: 0.15346417, y: 0.15916339, z: -0.026235638, w: -0.0062093143} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.07664134, y: -0.02171351, z: 0.034891304, w: 0.99621147} + inSlope: {x: -0.13719311, y: 0.04805288, z: -0.00022429995, w: 0.01196624} + outSlope: {x: -0.13719311, y: 0.04805288, z: -0.00022429995, w: 0.01196624} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.064479545, y: -0.020024879, z: 0.0386271, w: 0.9969701} + inSlope: {x: 0.04709847, y: 0.16403383, z: 0.19372086, w: -0.008373857} + outSlope: {x: 0.04709847, y: 0.16403383, z: 0.19372086, w: -0.008373857} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: 0.059418187, y: -0.017369112, z: 0.04870674, w: 0.9968929} + inSlope: {x: -0.17498842, y: -0.045627765, z: 0.03222121, w: 0.007909834} + outSlope: {x: -0.17498842, y: -0.045627765, z: 0.03222121, w: 0.007909834} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.05687328, y: -0.021731183, z: 0.0496461, w: 0.9969095} + inSlope: {x: 0.057084344, y: -0.10012132, z: -0.099452645, w: -0.0006115455} + outSlope: {x: 0.057084344, y: -0.10012132, z: -0.099452645, w: -0.0006115455} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: 0.05637618, y: -0.024777478, z: 0.043396495, w: 0.9971583} + inSlope: {x: -0.21304134, y: -0.08947211, z: -0.29574037, w: 0.020207763} + outSlope: {x: -0.21304134, y: -0.08947211, z: -0.29574037, w: 0.020207763} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.03948585, y: -0.033664294, z: 0.02398205, w: 0.9983649} + inSlope: {x: 0.1030564, y: -0.21098337, z: -0.039553422, w: -0.010970236} + outSlope: {x: 0.1030564, y: -0.21098337, z: -0.039553422, w: -0.010970236} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.055733543, y: -0.047383185, z: 0.034383707, w: 0.9967278} + inSlope: {x: 0.079848245, y: -0.017113946, z: 0.17119281, w: -0.010572375} + outSlope: {x: 0.079848245, y: -0.017113946, z: 0.17119281, w: -0.010572375} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: 0.065660164, y: -0.028332366, z: 0.035929244, w: 0.99679244} + inSlope: {x: 0.14890826, y: 0.1711445, z: 0.014808143, w: -0.005308986} + outSlope: {x: 0.14890826, y: 0.1711445, z: 0.014808143, w: -0.005308986} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.064474106, y: -0.020030782, z: 0.03862737, w: 0.9969703} + inSlope: {x: -0.13803175, y: 0.07290765, z: -0.0023566582, w: 0.010891567} + outSlope: {x: -0.13803175, y: 0.07290765, z: -0.0023566582, w: 0.010891567} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.05117048, y: -0.053703085, z: -0.0133687705, w: 0.99715537} + inSlope: {x: -0.019445008, y: -0.03590617, z: -0.049522936, w: -0.0016683339} + outSlope: {x: -0.019445008, y: -0.03590617, z: -0.049522936, w: -0.0016683339} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.04607046, y: -0.06433439, z: -0.012688872, w: 0.9967836} + inSlope: {x: -0.04619507, y: -0.097689554, z: 0.14526966, w: -0.0023925297} + outSlope: {x: -0.04619507, y: -0.097689554, z: 0.14526966, w: -0.0023925297} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.045753498, y: -0.06363252, z: -0.0099670105, w: 0.9968742} + inSlope: {x: 0.00758255, y: 0.09903248, z: -0.11844854, w: 0.0048118834} + outSlope: {x: 0.00758255, y: 0.09903248, z: -0.11844854, w: 0.0048118834} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.0511702, y: -0.053701516, z: -0.0133796, w: 0.9971553} + inSlope: {x: -0.010573166, y: -0.02366627, z: -0.04911448, w: -0.0013393176} + outSlope: {x: -0.010573166, y: -0.02366627, z: -0.04911448, w: -0.0013393176} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.011077302, y: -0.24699646, z: 0.15938887, w: 0.9557538} + inSlope: {x: -0.20340091, y: -0.6318095, z: 0.28695342, w: -0.21873055} + outSlope: {x: -0.20340091, y: -0.6318095, z: 0.28695342, w: -0.21873055} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: 0.0023555977, y: -0.31223896, z: 0.16098005, w: 0.9362621} + inSlope: {x: 0.13293394, y: -0.68054837, z: -0.36833838, w: -0.16551375} + outSlope: {x: 0.13293394, y: -0.68054837, z: -0.36833838, w: -0.16551375} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.009597416, y: -0.3346815, z: 0.14519607, w: 0.93102866} + inSlope: {x: 0.046945874, y: -0.49499547, z: -0.34562835, w: -0.119331494} + outSlope: {x: 0.046945874, y: -0.49499547, z: -0.34562835, w: -0.119331494} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: 0.0066088056, y: -0.35360572, z: 0.13557315, w: 0.9254941} + inSlope: {x: 0.51696426, y: -0.113139555, z: -0.08626586, w: -0.042701647} + outSlope: {x: 0.51696426, y: -0.113139555, z: -0.08626586, w: -0.042701647} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.065050535, y: -0.3293339, z: 0.12654422, w: 0.9334314} + inSlope: {x: 0.25039735, y: 0.9025384, z: -0.0014975667, w: 0.29863897} + outSlope: {x: 0.25039735, y: 0.9025384, z: -0.0014975667, w: 0.29863897} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: 0.05664276, y: -0.29261208, z: 0.13208726, w: 0.9453691} + inSlope: {x: -0.2952168, y: 1.1203294, z: -0.060351826, w: 0.37105057} + outSlope: {x: -0.2952168, y: 1.1203294, z: -0.060351826, w: 0.37105057} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: 0.03410341, y: -0.23136064, z: 0.11867774, w: 0.9649999} + inSlope: {x: -0.47151482, y: 0.56964093, z: -0.0067045614, w: 0.15471515} + outSlope: {x: -0.47151482, y: 0.56964093, z: -0.0067045614, w: 0.15471515} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.01393508, y: -0.21666922, z: 0.1220738, w: 0.96848243} + inSlope: {x: -0.26352453, y: 0.39870775, z: 0.120411366, w: 0.08147563} + outSlope: {x: -0.26352453, y: 0.39870775, z: 0.120411366, w: 0.08147563} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: 0.01653509, y: -0.20478012, z: 0.12670517, w: 0.9704316} + inSlope: {x: 0.057878837, y: -0.11294089, z: 0.34327427, w: -0.07416756} + outSlope: {x: 0.057878837, y: -0.11294089, z: 0.34327427, w: -0.07416756} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: 0.017793668, y: -0.22419861, z: 0.14495875, w: 0.96353793} + inSlope: {x: -0.081842646, y: -0.6332594, z: 0.49041486, w: -0.22019786} + outSlope: {x: -0.081842646, y: -0.6332594, z: 0.49041486, w: -0.22019786} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.01107892, y: -0.24699739, z: 0.15939948, w: 0.9557518} + inSlope: {x: -0.20144264, y: -0.68396395, z: 0.43322232, w: -0.23358487} + outSlope: {x: -0.20144264, y: -0.68396395, z: 0.43322232, w: -0.23358487} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.06928724, y: 0, z: -0, w: 0.99759674} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: -0.06928724, y: 0, z: -0, w: 0.99759674} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head/mixamorig:HeadTop_End + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.40506425, y: -0.45798013, z: 0.59357256, w: 0.5233056} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.40506425, y: -0.45798013, z: 0.59357256, w: 0.5233056} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head/mixamorig:LeftEar + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.40506425, y: 0.45798013, z: -0.59357256, w: 0.5233056} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.40506425, y: 0.45798013, z: -0.59357256, w: 0.5233056} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head/mixamorig:RightEar + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.60629845, y: -0.3836566, z: 0.28780964, w: 0.6343307} + inSlope: {x: -0.40766177, y: -0.62029564, z: 0.7895627, w: -0.37838098} + outSlope: {x: -0.40766177, y: -0.62029564, z: 0.7895627, w: -0.37838098} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: 0.5741028, y: -0.42862123, z: 0.34553432, w: 0.60604936} + inSlope: {x: -0.63145095, y: -0.6550454, z: 0.9691701, w: -0.41780317} + outSlope: {x: -0.63145095, y: -0.6550454, z: 0.9691701, w: -0.41780317} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.5357807, y: -0.460362, z: 0.39767537, w: 0.5855426} + inSlope: {x: -0.3186545, y: -0.2921297, z: 0.40351737, w: -0.20424576} + outSlope: {x: -0.3186545, y: -0.2921297, z: 0.40351737, w: -0.20424576} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.54796857, y: -0.44818345, z: 0.38195324, w: 0.594116} + inSlope: {x: 0.47745383, y: 0.48828906, z: -0.64366806, w: 0.33564094} + outSlope: {x: 0.47745383, y: 0.48828906, z: -0.64366806, w: 0.33564094} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: 0.5896409, y: -0.40127137, z: 0.3183058, w: 0.62448895} + inSlope: {x: 0.29090154, y: 0.33397603, z: -0.5049069, w: 0.19883746} + outSlope: {x: 0.29090154, y: 0.33397603, z: -0.5049069, w: 0.19883746} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: 0.6079387, y: -0.38450468, z: 0.2851463, w: 0.6334495} + inSlope: {x: 0.20127836, y: 0.20975815, z: -0.3889959, w: 0.11225672} + outSlope: {x: 0.20127836, y: 0.20975815, z: -0.3889959, w: 0.11225672} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: 0.6121189, y: -0.37714437, z: 0.27613568, w: 0.6378258} + inSlope: {x: -0.024601296, y: 0.012725651, z: 0.039948076, w: 0.013218779} + outSlope: {x: -0.024601296, y: 0.012725651, z: 0.039948076, w: 0.013218779} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.6062986, y: -0.3836563, z: 0.2878095, w: 0.63433075} + inSlope: {x: -0.1746084, y: -0.195358, z: 0.35021457, w: -0.10485122} + outSlope: {x: -0.1746084, y: -0.195358, z: 0.35021457, w: -0.10485122} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.29912236, y: 0.44665018, z: -0.014457947, w: 0.8431017} + inSlope: {x: 0.2563727, y: 0.7086154, z: -0.32633877, w: -0.49003598} + outSlope: {x: 0.2563727, y: 0.7086154, z: -0.32633877, w: -0.49003598} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.30766812, y: 0.4702707, z: -0.025335906, w: 0.82676715} + inSlope: {x: 0.61482394, y: 0.22436228, z: -0.33130366, w: -0.36934283} + outSlope: {x: 0.61482394, y: 0.22436228, z: -0.33130366, w: -0.36934283} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: 0.34011063, y: 0.46160766, z: -0.03654486, w: 0.8184788} + inSlope: {x: 1.0169487, y: -0.505245, z: 0.04801351, w: -0.14248161} + outSlope: {x: 1.0169487, y: -0.505245, z: 0.04801351, w: -0.14248161} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: 0.3754647, y: 0.4365877, z: -0.022135004, w: 0.8172684} + inSlope: {x: 0.58080953, y: -0.6075154, z: 0.6515024, w: 0.08402468} + outSlope: {x: 0.58080953, y: -0.6075154, z: 0.6515024, w: 0.08402468} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.37883127, y: 0.42110664, z: 0.0068886336, w: 0.82408047} + inSlope: {x: -0.36132935, y: -0.5846787, z: 0.4286029, w: 0.4547498} + outSlope: {x: -0.36132935, y: -0.5846787, z: 0.4286029, w: 0.4547498} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.3513761, y: 0.3976091, z: 0.0064385217, w: 0.847585} + inSlope: {x: -0.37476546, y: -0.2707467, z: 0.4343408, w: 0.28738445} + outSlope: {x: -0.37476546, y: -0.2707467, z: 0.4343408, w: 0.28738445} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: 0.3538469, y: 0.40305686, z: 0.0358447, w: 0.8432394} + inSlope: {x: 0.18109336, y: -0.48012397, z: 0.91927195, w: 0.09919707} + outSlope: {x: 0.18109336, y: -0.48012397, z: 0.91927195, w: 0.09919707} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: 0.36344898, y: 0.36560085, z: 0.06772333, w: 0.85419816} + inSlope: {x: 0.19631179, y: -0.83029795, z: 0.069533885, w: 0.27948263} + outSlope: {x: 0.19631179, y: -0.83029795, z: 0.069533885, w: 0.27948263} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.36693436, y: 0.34770367, z: 0.04048029, w: 0.8618716} + inSlope: {x: -0.17591672, y: -0.03641726, z: -1.0284829, w: 0.12879343} + outSlope: {x: -0.17591672, y: -0.03641726, z: -1.0284829, w: 0.12879343} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: 0.3517212, y: 0.36317304, z: -0.0008422001, w: 0.8627844} + inSlope: {x: -0.432947, y: 0.43413076, z: -1.4231689, w: -0.01685679} + outSlope: {x: -0.432947, y: 0.43413076, z: -1.4231689, w: -0.01685679} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.33807123, y: 0.3766457, z: -0.054397628, w: 0.8607478} + inSlope: {x: -0.33254433, y: 0.16663225, z: -0.95086664, w: 0.02419621} + outSlope: {x: -0.33254433, y: 0.16663225, z: -0.95086664, w: 0.02419621} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: 0.32955158, y: 0.37428185, z: -0.0642333, w: 0.86439747} + inSlope: {x: -0.2811137, y: 0.17888394, z: -0.011697635, w: 0.027062621} + outSlope: {x: -0.2811137, y: 0.17888394, z: -0.011697635, w: 0.027062621} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.3193303, y: 0.38857132, z: -0.05517746, w: 0.862552} + inSlope: {x: -0.445315, y: 0.61396825, z: -0.31954968, w: -0.14676867} + outSlope: {x: -0.445315, y: 0.61396825, z: -0.31954968, w: -0.14676867} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: 0.2998639, y: 0.41521308, z: -0.08553661, w: 0.8546129} + inSlope: {x: -0.4779451, y: 0.85478294, z: 0.09039506, w: -0.24198891} + outSlope: {x: -0.4779451, y: 0.85478294, z: 0.09039506, w: -0.24198891} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: 0.2874673, y: 0.44555685, z: -0.049151123, w: 0.8464194} + inSlope: {x: -0.0112544, y: 0.47145194, z: 1.0660303, w: -0.17256892} + outSlope: {x: -0.0112544, y: 0.47145194, z: 1.0660303, w: -0.17256892} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.2991136, y: 0.4466432, z: -0.0144679565, w: 0.8431083} + inSlope: {x: 0.34938934, y: 0.032590657, z: 1.040496, w: -0.099333026} + outSlope: {x: 0.34938934, y: 0.032590657, z: 1.040496, w: -0.099333026} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.61459905, y: 0.58547676, z: -0.3169921, w: 0.42308506} + inSlope: {x: 0.14588891, y: -0.3477126, z: -0.0013411044, w: 0.25997758} + outSlope: {x: 0.14588891, y: -0.3477126, z: -0.0013411044, w: 0.25997758} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: 0.6249863, y: 0.5687598, z: -0.31147438, w: 0.43461263} + inSlope: {x: 0.39467, y: -0.12457876, z: 0.16243768, w: -0.30377486} + outSlope: {x: 0.39467, y: -0.12457876, z: 0.16243768, w: -0.30377486} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.67131925, y: 0.5549432, z: -0.3092103, w: 0.38178197} + inSlope: {x: 0.55081314, y: -0.1707253, z: -0.11829348, w: -0.7973448} + outSlope: {x: 0.55081314, y: -0.1707253, z: -0.11829348, w: -0.7973448} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.6824942, y: 0.5541994, z: -0.31409386, w: 0.358343} + inSlope: {x: 0.51709133, y: -0.15460068, z: 0.08095705, w: -0.6860517} + outSlope: {x: 0.51709133, y: -0.15460068, z: 0.08095705, w: -0.6860517} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: 0.705792, y: 0.5446365, z: -0.30381316, w: 0.33604518} + inSlope: {x: 0.28004304, y: -0.20203465, z: -0.015724078, w: -0.25169793} + outSlope: {x: 0.28004304, y: -0.20203465, z: -0.015724078, w: -0.25169793} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: 0.70116377, y: 0.5407304, z: -0.31514212, w: 0.34156314} + inSlope: {x: -0.50785846, y: 0.3328291, z: -0.08668319, w: 0.39598706} + outSlope: {x: -0.50785846, y: 0.3328291, z: -0.08668319, w: 0.39598706} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.6719348, y: 0.5668251, z: -0.30959204, w: 0.3624443} + inSlope: {x: -0.8050302, y: 0.7144896, z: 0.19982772, w: 0.5584351} + outSlope: {x: -0.8050302, y: 0.7144896, z: 0.19982772, w: 0.5584351} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: 0.6474951, y: 0.58836305, z: -0.30182028, w: 0.37879214} + inSlope: {x: -0.82584685, y: 0.60338444, z: 0.11948527, w: 0.56281465} + outSlope: {x: -0.82584685, y: 0.60338444, z: 0.11948527, w: 0.56281465} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.61687833, y: 0.6070507, z: -0.30162635, w: 0.3999653} + inSlope: {x: -0.55396205, y: 0.40378335, z: -0.009748043, w: 0.2644627} + outSlope: {x: -0.55396205, y: 0.40378335, z: -0.009748043, w: 0.2644627} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: 0.6105643, y: 0.61528194, z: -0.30247015, w: 0.39642298} + inSlope: {x: -0.06520811, y: 0.057215154, z: -0.044703905, w: -0.02081129} + outSlope: {x: -0.06520811, y: 0.057215154, z: -0.044703905, w: -0.02081129} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.6125311, y: 0.61086506, z: -0.30460662, w: 0.39857787} + inSlope: {x: -0.28230613, y: 0.092212625, z: 0.09682332, w: 0.34721598} + outSlope: {x: -0.28230613, y: 0.092212625, z: 0.09682332, w: 0.34721598} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: 0.5917439, y: 0.62142944, z: -0.29601526, w: 0.4195707} + inSlope: {x: -0.20286444, y: -0.10333927, z: -0.059809238, w: 0.4060136} + outSlope: {x: -0.20286444, y: -0.10333927, z: -0.059809238, w: 0.4060136} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: 0.59900683, y: 0.6039758, z: -0.3085939, w: 0.42564544} + inSlope: {x: 0.3427624, y: -0.53901345, z: -0.31436712, w: 0.052640557} + outSlope: {x: 0.3427624, y: -0.53901345, z: -0.31436712, w: 0.052640557} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.6145947, y: 0.58549523, z: -0.31697306, w: 0.4230801} + inSlope: {x: 0.46763644, y: -0.5544167, z: -0.25137508, w: -0.0769607} + outSlope: {x: 0.46763644, y: -0.5544167, z: -0.25137508, w: -0.0769607} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.00861464, y: 0.36125156, z: -0.03829914, w: 0.9316417} + inSlope: {x: -0.5012325, y: -0.16177474, z: -0.39705095, w: 0.033969283} + outSlope: {x: -0.5012325, y: -0.16177474, z: -0.39705095, w: 0.033969283} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: -0.025322393, y: 0.35585907, z: -0.051534172, w: 0.932774} + inSlope: {x: -0.044770315, y: -0.37547123, z: -0.28594893, w: 0.124824636} + outSlope: {x: -0.044770315, y: -0.37547123, z: -0.28594893, w: 0.124824636} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: -0.011599329, y: 0.33622015, z: -0.057362404, w: 0.93996334} + inSlope: {x: 0.13389629, y: -0.8814587, z: -0.016304426, w: 0.30722734} + outSlope: {x: 0.13389629, y: -0.8814587, z: -0.016304426, w: 0.30722734} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: -0.016395973, y: 0.29709515, z: -0.052621134, w: 0.95325583} + inSlope: {x: -0.562156, y: -0.947999, z: -0.012562312, w: 0.2854192} + outSlope: {x: -0.562156, y: -0.947999, z: -0.012562312, w: 0.2854192} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: -0.049076397, y: 0.2730202, z: -0.05819989, w: 0.9589913} + inSlope: {x: -0.42296734, y: -0.36342594, z: -0.52964354, w: 0.055961616} + outSlope: {x: -0.42296734, y: -0.36342594, z: -0.52964354, w: 0.055961616} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.044593796, y: 0.27286676, z: -0.0879307, w: 0.9569866} + inSlope: {x: 0.02735028, y: -0.3450482, z: -0.599889, w: 0.046479076} + outSlope: {x: 0.02735028, y: -0.3450482, z: -0.599889, w: 0.046479076} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: -0.047253046, y: 0.250017, z: -0.09819249, w: 0.9620899} + inSlope: {x: 0.4246807, y: -0.021348, z: -0.12596843, w: 0.0074493513} + outSlope: {x: 0.4246807, y: -0.021348, z: -0.12596843, w: 0.0074493513} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: -0.016281752, y: 0.27144355, z: -0.0963286, w: 0.95748323} + inSlope: {x: 0.8529376, y: 0.4500488, z: 0.22082919, w: -0.086696155} + outSlope: {x: 0.8529376, y: 0.4500488, z: 0.22082919, w: -0.086696155} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: 0.019400146, y: 0.29294246, z: -0.05942023, w: 0.9540847} + inSlope: {x: -0.08323848, y: 0.34313235, z: 0.7395606, w: -0.05861611} + outSlope: {x: -0.08323848, y: 0.34313235, z: 0.7395606, w: -0.05861611} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.0040602232, y: 0.30289572, z: -0.034166507, w: 0.9524024} + inSlope: {x: -0.4004511, y: 0.1668142, z: 0.62526786, w: -0.024389328} + outSlope: {x: -0.4004511, y: 0.1668142, z: 0.62526786, w: -0.024389328} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: -0.007296593, y: 0.3040634, z: -0.01773571, w: 0.95245874} + inSlope: {x: -0.2865845, y: 0.23713303, z: 0.30578926, w: -0.07151836} + outSlope: {x: -0.2865845, y: 0.23713303, z: 0.30578926, w: -0.07151836} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: -0.01568748, y: 0.33277047, z: -0.020799631, w: 0.94264793} + inSlope: {x: -0.12224413, y: 0.50059813, z: -0.25020346, w: -0.18670769} + outSlope: {x: -0.12224413, y: 0.50059813, z: -0.25020346, w: -0.18670769} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: -0.023195025, y: 0.3520778, z: -0.030460784, w: 0.93518734} + inSlope: {x: 0.106169365, y: 0.42714554, z: -0.26240146, w: -0.16506141} + outSlope: {x: 0.106169365, y: 0.42714554, z: -0.26240146, w: -0.16506141} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.008609536, y: 0.36124682, z: -0.038293052, w: 0.93164384} + inSlope: {x: 0.43756506, y: 0.27507064, z: -0.23496827, w: -0.10630499} + outSlope: {x: 0.43756506, y: 0.27507064, z: -0.23496827, w: -0.10630499} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.22189711, y: -0.13689652, z: -0.25379974, w: 0.93145406} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.22189711, y: -0.13689652, z: -0.25379974, w: 0.93145406} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.05551773, y: -0.13071373, z: 0.13998024, w: 0.97991693} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.05551773, y: -0.13071373, z: 0.13998024, w: 0.97991693} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.22361805, y: 0.03164218, z: -0.10459672, w: 0.9685315} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: -0.22361805, y: 0.03164218, z: -0.10459672, w: 0.9685315} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2/mixamorig:LeftHandThumb3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.02006683, y: 0.040932335, z: 0.014504506, w: 0.9988551} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.02006683, y: 0.040932335, z: 0.014504506, w: 0.9988551} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2/mixamorig:LeftHandThumb3/mixamorig:LeftHandThumb4 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.17390484, y: -0.066170186, z: -0.022739591, w: 0.98227364} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.17390484, y: -0.066170186, z: -0.022739591, w: 0.98227364} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.24461001, y: -0.005066566, z: 0.03382252, w: 0.9690182} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.24461001, y: -0.005066566, z: 0.03382252, w: 0.9690182} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.24556217, y: -0.00000012541628, z: 0.03264661, w: 0.968831} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.24556217, y: -0.00000012541628, z: 0.03264661, w: 0.968831} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2/mixamorig:LeftHandIndex3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.044488557, y: -0.000000052747865, z: 0.000000010995018, w: 0.9990099} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.044488557, y: -0.000000052747865, z: 0.000000010995018, w: 0.9990099} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2/mixamorig:LeftHandIndex3/mixamorig:LeftHandIndex4 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.17314574, y: -0.06403204, z: -0.024896033, w: 0.98249716} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.17314574, y: -0.06403204, z: -0.024896033, w: 0.98249716} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.38609636, y: -0.012462529, z: 0.055942494, w: 0.92067623} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.38609636, y: -0.012462529, z: 0.055942494, w: 0.92067623} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.37091064, y: 0.0028798217, z: 0.05047349, w: 0.92729145} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.37091064, y: 0.0028798217, z: 0.05047349, w: 0.92729145} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2/mixamorig:LeftHandMiddle3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.010558602, y: -0.0028613377, z: -0.0028610574, w: 0.9999361} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.010558602, y: -0.0028613377, z: -0.0028610574, w: 0.9999361} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2/mixamorig:LeftHandMiddle3/mixamorig:LeftHandMiddle4 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.05521545, y: 0.08593824, z: -0.020106575, w: 0.9945661} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.05521545, y: 0.08593824, z: -0.020106575, w: 0.9945661} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.4315977, y: -0.00012891907, z: 0.05738134, w: 0.9002393} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.4315977, y: -0.00012891907, z: 0.05738134, w: 0.9002393} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.27317545, y: 0.00000010995585, z: 0.036279257, w: 0.9612799} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.27317545, y: 0.00000010995585, z: 0.036279257, w: 0.9612799} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2/mixamorig:LeftHandPinky3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.044519145, y: -0.00000005066027, z: 0.000000005569495, w: 0.99900854} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.044519145, y: -0.00000005066027, z: 0.000000005569495, w: 0.99900854} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2/mixamorig:LeftHandPinky3/mixamorig:LeftHandPinky4 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.57658005, y: 0.4257728, z: -0.3416301, w: 0.607916} + inSlope: {x: 0.09944736, y: -0.10415285, z: 0.15767364, w: 0.065864325} + outSlope: {x: 0.09944736, y: -0.10415285, z: 0.15767364, w: 0.065864325} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.5859689, y: 0.43391424, z: -0.3296568, w: 0.5997377} + inSlope: {x: 0.05317301, y: 0.38097653, z: 0.008196385, w: -0.32573107} + outSlope: {x: 0.05317301, y: 0.38097653, z: 0.008196385, w: -0.32573107} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.5883564, y: 0.46778792, z: -0.33249992, w: 0.5696096} + inSlope: {x: 0.038456623, y: -0.28837818, z: 0.10981903, w: 0.2565265} + outSlope: {x: 0.038456623, y: -0.28837818, z: 0.10981903, w: 0.2565265} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.58982503, y: 0.4406629, z: -0.32525897, w: 0.59340477} + inSlope: {x: -0.08592994, y: -0.17076017, z: -0.092283644, w: 0.1640609} + outSlope: {x: -0.08592994, y: -0.17076017, z: -0.092283644, w: 0.1640609} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: 0.5731711, y: 0.4498709, z: -0.35025364, w: 0.588569} + inSlope: {x: -0.03962875, y: -0.18668847, z: -0.023205578, w: 0.16376497} + outSlope: {x: -0.03962875, y: -0.18668847, z: -0.023205578, w: 0.16376497} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.5765801, y: 0.42577252, z: -0.34162992, w: 0.60791624} + inSlope: {x: 0.04496102, y: -0.30183107, z: 0.11183034, w: 0.23602031} + outSlope: {x: 0.04496102, y: -0.30183107, z: 0.11183034, w: 0.23602031} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.32482702, y: -0.08421564, z: 0.32680133, w: 0.88351345} + inSlope: {x: -0.28882292, y: -0.49689707, z: 0.830782, w: -0.26908994} + outSlope: {x: -0.28882292, y: -0.49689707, z: 0.830782, w: -0.26908994} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.31519958, y: -0.10077888, z: 0.35449407, w: 0.8745438} + inSlope: {x: -0.1538211, y: 0.008937463, z: 0.6550204, w: -0.20352513} + outSlope: {x: -0.1538211, y: 0.008937463, z: 0.6550204, w: -0.20352513} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: 0.3098763, y: -0.05933285, z: 0.4002653, w: 0.86037433} + inSlope: {x: -0.25907144, y: 0.43666336, z: 1.0953114, w: -0.3925404} + outSlope: {x: -0.25907144, y: 0.43666336, z: 1.0953114, w: -0.3925404} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.29730085, y: -0.054508917, z: 0.44349012, w: 0.84377575} + inSlope: {x: -0.40314677, y: -0.21903941, z: 1.071502, w: -0.42813066} + outSlope: {x: -0.40314677, y: -0.21903941, z: 1.071502, w: -0.42813066} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.28299984, y: -0.07393548, z: 0.47169876, w: 0.8318323} + inSlope: {x: -0.4301167, y: -0.417064, z: 0.8774251, w: -0.38708204} + outSlope: {x: -0.4301167, y: -0.417064, z: 0.8774251, w: -0.38708204} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: 0.2686264, y: -0.08231319, z: 0.50198513, w: 0.8179703} + inSlope: {x: -0.2227234, y: 0.3463987, z: 0.61468345, w: -0.26678944} + outSlope: {x: -0.2227234, y: 0.3463987, z: 0.61468345, w: -0.26678944} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: 0.2681516, y: -0.050842237, z: 0.51267767, w: 0.8140463} + inSlope: {x: 0.06742985, y: 0.7497477, z: -0.40723002, w: 0.27038905} + outSlope: {x: 0.06742985, y: 0.7497477, z: -0.40723002, w: 0.27038905} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: 0.29767033, y: -0.033690732, z: 0.41262206, w: 0.8602327} + inSlope: {x: 0.996696, y: -0.11396662, z: -1.9722271, w: 0.5814726} + outSlope: {x: 0.996696, y: -0.11396662, z: -1.9722271, w: 0.5814726} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.3395681, y: -0.039927784, z: 0.34335467, w: 0.87476104} + inSlope: {x: 0.9426897, y: 0.07091668, z: -1.3235228, w: 0.20724805} + outSlope: {x: 0.9426897, y: 0.07091668, z: -1.3235228, w: 0.20724805} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.36206213, y: -0.033452023, z: 0.32929963, w: 0.87140906} + inSlope: {x: -0.14633688, y: -0.5341988, z: -0.23601168, w: 0.1159126} + outSlope: {x: -0.14633688, y: -0.5341988, z: -0.23601168, w: 0.1159126} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: 0.35076052, y: -0.06457621, z: 0.30865312, w: 0.88177675} + inSlope: {x: -0.4376458, y: -0.84821117, z: -0.25285456, w: 0.2059132} + outSlope: {x: -0.4376458, y: -0.84821117, z: -0.25285456, w: 0.2059132} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: 0.33288574, y: -0.08999943, z: 0.31244266, w: 0.8851366} + inSlope: {x: -0.38894862, y: -0.29462573, z: 0.27237004, w: 0.025973598} + outSlope: {x: -0.38894862, y: -0.29462573, z: 0.27237004, w: 0.025973598} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.32483062, y: -0.08421793, z: 0.3268111, w: 0.8835083} + inSlope: {x: -0.24165384, y: 0.17344521, z: 0.43105376, w: -0.04884844} + outSlope: {x: -0.24165384, y: 0.17344521, z: 0.43105376, w: -0.04884844} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.19679226, y: -0.21089242, z: 0.7822051, w: 0.55222505} + inSlope: {x: -0.35687324, y: -0.59255534, z: -0.3871965, w: 0.42491195} + outSlope: {x: -0.35687324, y: -0.59255534, z: -0.3871965, w: 0.42491195} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.18489648, y: -0.23064427, z: 0.76929855, w: 0.5663888} + inSlope: {x: -0.59922266, y: -0.35212037, z: -0.287109, w: 0.43992785} + outSlope: {x: -0.59922266, y: -0.35212037, z: -0.287109, w: 0.43992785} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: 0.15487184, y: -0.2411863, z: 0.7550939, w: 0.58964163} + inSlope: {x: 0.48102945, y: -0.49118602, z: -0.41036904, w: 0.17232297} + outSlope: {x: 0.48102945, y: -0.49118602, z: -0.41036904, w: 0.17232297} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.1889127, y: -0.26711285, z: 0.73570657, w: 0.5930418} + inSlope: {x: 0.61425143, y: -0.5411203, z: -0.54586625, w: 0.25787207} + outSlope: {x: 0.61425143, y: -0.5411203, z: -0.54586625, w: 0.25787207} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: 0.18339248, y: -0.27378386, z: 0.71329767, w: 0.61855966} + inSlope: {x: -0.6247537, y: 0.21561071, z: -0.11813876, w: 0.40621066} + outSlope: {x: -0.6247537, y: 0.21561071, z: -0.11813876, w: 0.40621066} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: 0.15417168, y: -0.26288694, z: 0.7108269, w: 0.6339138} + inSlope: {x: -0.6656358, y: 0.38057867, z: 0.079168975, w: 0.239397} + outSlope: {x: -0.6656358, y: 0.38057867, z: 0.079168975, w: 0.239397} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.13901676, y: -0.24841195, z: 0.7185756, w: 0.63451946} + inSlope: {x: -0.4702163, y: 0.73895735, z: 0.6662411, w: -0.3982902} + outSlope: {x: -0.4702163, y: 0.73895735, z: 0.6662411, w: -0.3982902} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: 0.122823924, y: -0.21362312, z: 0.75524294, w: 0.60736114} + inSlope: {x: -0.24979113, y: 0.9022621, z: 1.0362322, w: -0.9116597} + outSlope: {x: -0.24979113, y: 0.9022621, z: 1.0362322, w: -0.9116597} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.12236402, y: -0.18826115, z: 0.78765774, w: 0.57374215} + inSlope: {x: -0.1269854, y: 0.685696, z: 0.75251347, w: -0.7581998} + outSlope: {x: -0.1269854, y: 0.685696, z: 0.75251347, w: -0.7581998} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.12197532, y: -0.1645488, z: 0.8117976, w: 0.54683673} + inSlope: {x: 0.7573496, y: -0.30031067, z: -0.01690337, w: -0.26563156} + outSlope: {x: 0.7573496, y: -0.30031067, z: -0.01690337, w: -0.26563156} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: 0.16484821, y: -0.18793076, z: 0.8042836, w: 0.5391057} + inSlope: {x: 1.0217359, y: -0.60489583, z: -0.3106964, w: -0.04060775} + outSlope: {x: 1.0217359, y: -0.60489583, z: -0.3106964, w: -0.04060775} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.19678576, y: -0.21089455, z: 0.7821915, w: 0.5522457} + inSlope: {x: 0.20084177, y: -0.18058124, z: -0.26679066, w: 0.24348402} + outSlope: {x: 0.20084177, y: -0.18058124, z: -0.26679066, w: 0.24348402} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.10711418, y: 0.004339468, z: -0.05450509, w: 0.9927421} + inSlope: {x: 1.2959341, y: -0.1573774, z: -0.14061491, w: 0.103672735} + outSlope: {x: 1.2959341, y: -0.1573774, z: -0.14061491, w: 0.103672735} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: -0.06391638, y: -0.0009064453, z: -0.059192255, w: 0.9961979} + inSlope: {x: 1.1182998, y: -0.22472644, z: 0.20235935, w: 0.08743554} + outSlope: {x: 1.1182998, y: -0.22472644, z: 0.20235935, w: 0.08743554} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: -0.03256086, y: -0.010642295, z: -0.041014466, w: 0.99857116} + inSlope: {x: 0.47783166, y: -0.092048064, z: 0.59315753, w: 0.046050847} + outSlope: {x: 0.47783166, y: -0.092048064, z: 0.59315753, w: 0.046050847} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: -0.032060932, y: -0.007042982, z: -0.019648416, w: 0.99926794} + inSlope: {x: -0.09653187, y: 0.32547575, z: 0.6154923, w: 0.009106098} + outSlope: {x: -0.09653187, y: 0.32547575, z: 0.6154923, w: 0.009106098} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: -0.038996316, y: 0.011056089, z: 0.000018354653, w: 0.99917823} + inSlope: {x: 0.22685209, y: 0.23869528, z: 0.63495487, w: 0.004380048} + outSlope: {x: 0.22685209, y: 0.23869528, z: 0.63495487, w: 0.004380048} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.01693746, y: 0.008870036, z: 0.022681907, w: 0.99955994} + inSlope: {x: 0.6019957, y: -0.22977693, z: 0.3629176, w: 0.0077828765} + outSlope: {x: 0.6019957, y: -0.22977693, z: 0.3629176, w: 0.0077828765} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: 0.0011367388, y: -0.0042623775, z: 0.024212861, w: 0.9996971} + inSlope: {x: 0.32071516, y: -0.5428642, z: 0.19430822, w: -0.008676948} + outSlope: {x: 0.32071516, y: -0.5428642, z: 0.19430822, w: -0.008676948} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.019115869, y: -0.05080531, z: 0.044858783, w: 0.99751747} + inSlope: {x: -1.0424987, y: -0.43837142, z: -0.2475465, w: -0.043305162} + outSlope: {x: -1.0424987, y: -0.43837142, z: -0.2475465, w: -0.043305162} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: -0.065056354, y: -0.056545675, z: 0.019132689, w: 0.99609447} + inSlope: {x: -1.2536196, y: -0.0057944655, z: -0.74600863, w: -0.06201268} + outSlope: {x: -1.2536196, y: -0.0057944655, z: -0.74600863, w: -0.06201268} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.1026905, y: -0.05119161, z: -0.0048751254, w: 0.9933833} + inSlope: {x: -1.0665371, y: 0.005000867, z: -0.5942769, w: -0.1082343} + outSlope: {x: -1.0665371, y: 0.005000867, z: -0.5942769, w: -0.1082343} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: -0.13615882, y: -0.056212284, z: -0.020485768, w: 0.98887885} + inSlope: {x: -0.70594406, y: 0.039465144, z: -0.5723152, w: -0.101865806} + outSlope: {x: -0.70594406, y: 0.039465144, z: -0.5723152, w: -0.101865806} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: -0.14975345, y: -0.048560593, z: -0.04302949, w: 0.98659223} + inSlope: {x: -0.03758718, y: 0.43402478, z: -0.41523808, w: -0.001316037} + outSlope: {x: -0.03758718, y: 0.43402478, z: -0.41523808, w: -0.001316037} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: -0.13866465, y: -0.027277295, z: -0.048168324, w: 0.9887911} + inSlope: {x: 0.44039306, y: 0.5465474, z: -0.21095738, w: 0.06625057} + outSlope: {x: 0.44039306, y: 0.5465474, z: -0.21095738, w: 0.06625057} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.107119165, y: 0.0043362617, z: -0.054503065, w: 0.9927417} + inSlope: {x: 0.39824292, y: 0.4938113, z: 0.07770758, w: 0.051983047} + outSlope: {x: 0.39824292, y: 0.4938113, z: 0.07770758, w: 0.051983047} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.17914803, y: 0.2756052, z: 0.26376185, w: 0.9068503} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.17914803, y: 0.2756052, z: 0.26376185, w: 0.9068503} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.07092305, y: 0.11455809, z: -0.20838968, w: 0.96872085} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.07092305, y: 0.11455809, z: -0.20838968, w: 0.96872085} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.0025602113, y: 0.017163847, z: -0.2640616, w: 0.9643497} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.0025602113, y: 0.017163847, z: -0.2640616, w: 0.9643497} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2/mixamorig:RightHandThumb3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.020066794, y: -0.040932234, z: -0.014504527, w: 0.9988551} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.020066794, y: -0.040932234, z: -0.014504527, w: 0.9988551} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2/mixamorig:RightHandThumb3/mixamorig:RightHandThumb4 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.03988269, y: -0.021048853, z: -0.021070471, w: 0.9987604} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.03988269, y: -0.021048853, z: -0.021070471, w: 0.9987604} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.100172706, y: 0.0052016615, z: -0.011729619, w: 0.99488735} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.100172706, y: 0.0052016615, z: -0.011729619, w: 0.99488735} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.28763497, y: 0.00000015751539, z: -0.032156676, w: 0.95720017} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.28763497, y: 0.00000015751539, z: -0.032156676, w: 0.95720017} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2/mixamorig:RightHandIndex3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.044488586, y: 0.000000030299844, z: -0.000000086976655, w: 0.9990099} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.044488586, y: 0.000000030299844, z: -0.000000086976655, w: 0.9990099} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2/mixamorig:RightHandIndex3/mixamorig:RightHandIndex4 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.0010486841, y: 0.0003426663, z: -0.0751257, w: 0.9971735} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: -0.0010486841, y: 0.0003426663, z: -0.0751257, w: 0.9971735} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.7770865, y: 0.008185294, z: -0.096658945, w: 0.6218735} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.7770865, y: 0.008185294, z: -0.096658945, w: 0.6218735} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.5790414, y: -0.0026378783, z: -0.06625734, w: 0.8125971} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.5790414, y: -0.0026378783, z: -0.06625734, w: 0.8125971} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2/mixamorig:RightHandMiddle3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.010558687, y: 0.0028614022, z: 0.0028611035, w: 0.9999361} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.010558687, y: 0.0028614022, z: 0.0028611035, w: 0.9999361} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2/mixamorig:RightHandMiddle3/mixamorig:RightHandMiddle4 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.04204773, y: -0.17182373, z: -0.05555184, w: 0.982661} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.04204773, y: -0.17182373, z: -0.05555184, w: 0.982661} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.72761923, y: 0.0000973759, z: -0.081348546, w: 0.6811407} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.72761923, y: 0.0000973759, z: -0.081348546, w: 0.6811407} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.6220816, y: -0.000000047881343, z: -0.06945909, w: 0.7798654} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.6220816, y: -0.000000047881343, z: -0.06945909, w: 0.7798654} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2/mixamorig:RightHandPinky3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.044519134, y: -0.000000048219476, z: -0.000000018093045, w: 0.99900854} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.044519134, y: -0.000000048219476, z: -0.000000018093045, w: 0.99900854} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2/mixamorig:RightHandPinky3/mixamorig:RightHandPinky4 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.054545913, y: 0.4255527, z: 0.8950291, w: -0.12187123} + inSlope: {x: 0.79465365, y: -1.8853649, z: 0.9816169, w: 2.635504} + outSlope: {x: 0.79465365, y: -1.8853649, z: 0.9816169, w: 2.635504} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.08103437, y: 0.3627072, z: 0.9277497, w: -0.034021094} + inSlope: {x: 0.5802936, y: -3.1014798, z: 1.129395, w: 2.4844465} + outSlope: {x: 0.5802936, y: -3.1014798, z: 1.129395, w: 2.4844465} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: 0.093232155, y: 0.21878737, z: 0.97032213, w: 0.043758553} + inSlope: {x: -0.33935732, y: -3.9276466, z: 0.94023216, w: 1.6186421} + outSlope: {x: -0.33935732, y: -3.9276466, z: 0.94023216, w: 1.6186421} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: 0.058410544, y: 0.10086406, z: 0.99043185, w: 0.07388839} + inSlope: {x: -1.7812265, y: -2.8847454, z: 0.39389664, w: 0.4532952} + outSlope: {x: -1.7812265, y: -2.8847454, z: 0.39389664, w: 0.4532952} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: -0.02551628, y: 0.026470998, z: 0.9965819, w: 0.07397824} + inSlope: {x: -1.3634664, y: -0.48291683, z: 0.065236695, w: -0.08657255} + outSlope: {x: -1.3634664, y: -0.48291683, z: 0.065236695, w: -0.08657255} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.03248721, y: 0.0686696, z: 0.99478096, w: 0.06811689} + inSlope: {x: -0.39011398, y: 0.3926468, z: -0.012055643, w: -0.28817302} + outSlope: {x: -0.39011398, y: 0.3926468, z: -0.012055643, w: -0.28817302} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: -0.051523887, y: 0.052647438, z: 0.9957782, w: 0.0547667} + inSlope: {x: -0.5655383, y: -0.4274951, z: 0.027754601, w: -0.8172155} + outSlope: {x: -0.5655383, y: -0.4274951, z: 0.027754601, w: -0.8172155} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: -0.07018977, y: 0.040169924, z: 0.99663126, w: 0.0136358505} + inSlope: {x: -0.17497404, y: 1.1930426, z: -0.10271967, w: -1.1738533} + outSlope: {x: -0.17497404, y: 1.1930426, z: -0.10271967, w: -1.1738533} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.06318882, y: 0.13218361, z: 0.9889302, w: -0.023490183} + inSlope: {x: 0.091750555, y: 2.0109994, z: -0.25306556, w: -1.3276579} + outSlope: {x: 0.091750555, y: 2.0109994, z: -0.25306556, w: -1.3276579} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: -0.06407306, y: 0.17423655, z: 0.9797602, w: -0.07487468} + inSlope: {x: 0.18935743, y: 1.2231508, z: -0.3398055, w: -1.6642206} + outSlope: {x: 0.18935743, y: 1.2231508, z: -0.3398055, w: -1.6642206} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.050564993, y: 0.213727, z: 0.9662765, w: -0.13443822} + inSlope: {x: 0.54746485, y: 1.9742072, z: -0.7684011, w: -2.0061228} + outSlope: {x: 0.54746485, y: 1.9742072, z: -0.7684011, w: -2.0061228} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: -0.027575409, y: 0.30585036, z: 0.9285335, w: -0.20861618} + inSlope: {x: 0.6550635, y: 2.3940935, z: -1.1213909, w: -1.8303344} + outSlope: {x: 0.6550635, y: 2.3940935, z: -1.1213909, w: -1.8303344} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: 0.016505748, y: 0.4198954, z: 0.8679432, w: -0.26474512} + inSlope: {x: 0.62692046, y: 1.0582857, z: -0.31596604, w: 0.69835365} + outSlope: {x: 0.62692046, y: 1.0582857, z: -0.31596604, w: 0.69835365} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: 0.03490062, y: 0.44388565, z: 0.8704527, w: -0.20990364} + inSlope: {x: 0.5705938, y: 0.08482686, z: 0.40630585, w: 2.1431174} + outSlope: {x: 0.5705938, y: 0.08482686, z: 0.40630585, w: 2.1431174} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.054545313, y: 0.42555055, z: 0.89503026, w: -0.121870704} + inSlope: {x: 0.58934134, y: -0.55005366, z: 0.73732746, w: 2.6409907} + outSlope: {x: 0.58934134, y: -0.55005366, z: 0.73732746, w: 2.6409907} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.6323637, y: -0.13065162, z: -0.060234718, w: 0.7611952} + inSlope: {x: -2.6182578, y: 0.17776406, z: 0.43701842, w: -2.3900769} + outSlope: {x: -2.6182578, y: 0.17776406, z: 0.43701842, w: -2.3900769} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: -0.71963894, y: -0.124726154, z: -0.045667436, w: 0.68152595} + inSlope: {x: -1.4329029, y: 0.16305639, z: 0.09608918, w: -1.3229136} + outSlope: {x: -1.4329029, y: 0.16305639, z: 0.09608918, w: -1.3229136} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: -0.72789055, y: -0.119781196, z: -0.053828772, w: 0.67300093} + inSlope: {x: 1.3022034, y: 0.19110647, z: -0.6546355, w: 1.191066} + outSlope: {x: 1.3022034, y: 0.19110647, z: -0.6546355, w: 1.191066} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: -0.6328254, y: -0.11198572, z: -0.08930981, w: 0.76093036} + inSlope: {x: 3.4163778, y: 1.0076102, z: -1.4755243, w: 2.6676545} + outSlope: {x: 3.4163778, y: 1.0076102, z: -1.4755243, w: 2.6676545} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: -0.500132, y: -0.052607182, z: -0.15219706, w: 0.85084456} + inSlope: {x: 1.4433825, y: 1.8074617, z: -1.869298, w: 0.8294106} + outSlope: {x: 1.4433825, y: 1.8074617, z: -1.869298, w: 0.8294106} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.5365999, y: 0.008511722, z: -0.21392967, w: 0.8162244} + inSlope: {x: -0.25155652, y: 1.3949667, z: -1.4590275, w: -0.49428737} + outSlope: {x: -0.25155652, y: 1.3949667, z: -1.4590275, w: -0.49428737} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: -0.51690245, y: 0.040390607, z: -0.24946557, w: 0.8178921} + inSlope: {x: 2.0086231, y: 0.46144783, z: 0.06279141, w: 1.1083585} + outSlope: {x: 2.0086231, y: 0.46144783, z: 0.06279141, w: 1.1083585} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: -0.40269166, y: 0.039274924, z: -0.20974359, w: 0.89011496} + inSlope: {x: 2.446507, y: -0.48832262, z: 1.0849234, w: 1.5070189} + outSlope: {x: 2.446507, y: -0.48832262, z: 1.0849234, w: 1.5070189} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.353802, y: 0.007835767, z: -0.17713735, w: 0.91836} + inSlope: {x: 2.7532659, y: -0.6156975, z: 1.1919818, w: 1.1525998} + outSlope: {x: 2.7532659, y: -0.6156975, z: 1.1919818, w: 1.1525998} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: -0.21914062, y: -0.0017715727, z: -0.13027814, w: 0.96695495} + inSlope: {x: 4.030963, y: -0.4046692, z: 1.5175214, w: 1.1239512} + outSlope: {x: 4.030963, y: -0.4046692, z: 1.5175214, w: 1.1239512} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.08507118, y: -0.019142177, z: -0.07596926, w: 0.99329007} + inSlope: {x: 2.2522752, y: -0.61430067, z: 0.9013389, w: 0.40909055} + outSlope: {x: 2.2522752, y: -0.61430067, z: 0.9013389, w: 0.40909055} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: -0.06898895, y: -0.04272495, z: -0.07018889, w: 0.99422765} + inSlope: {x: -1.0287492, y: -0.66964567, z: 0.13398044, w: -0.1426156} + outSlope: {x: -1.0287492, y: -0.66964567, z: 0.13398044, w: -0.1426156} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: -0.15365453, y: -0.06378524, z: -0.067037225, w: 0.98378235} + inSlope: {x: -3.6952825, y: -0.74094015, z: -0.2934163, w: -0.81007534} + outSlope: {x: -3.6952825, y: -0.74094015, z: -0.2934163, w: -0.81007534} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: -0.31534117, y: -0.092120975, z: -0.08974997, w: 0.9402226} + inSlope: {x: -5.0730987, y: -0.8507527, z: -0.24357006, w: -1.8827741} + outSlope: {x: -5.0730987, y: -0.8507527, z: -0.24357006, w: -1.8827741} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: -0.49186108, y: -0.120502084, z: -0.08327523, w: 0.8582641} + inSlope: {x: -4.755312, y: -0.5779713, z: 0.4427251, w: -2.6853924} + outSlope: {x: -4.755312, y: -0.5779713, z: 0.4427251, w: -2.6853924} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.6323618, y: -0.13065238, z: -0.060234986, w: 0.76119655} + inSlope: {x: -4.215027, y: -0.30450925, z: 0.69120795, w: -2.9120288} + outSlope: {x: -4.215027, y: -0.30450925, z: 0.69120795, w: -2.9120288} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.37514353, y: -0.035193276, z: 0.053439613, w: 0.92475563} + inSlope: {x: 3.338297, y: 0.40916827, z: -0.31514165, w: -1.570571} + outSlope: {x: 3.338297, y: 0.40916827, z: -0.31514165, w: -1.570571} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.4864201, y: -0.021554332, z: 0.04293489, w: 0.87240326} + inSlope: {x: 3.2507157, y: 0.9198793, z: -0.046312742, w: -1.8106805} + outSlope: {x: 3.2507157, y: 0.9198793, z: -0.046312742, w: -1.8106805} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: 0.5918579, y: 0.026132017, z: 0.050352097, w: 0.8040436} + inSlope: {x: 1.2817079, y: 1.4604669, z: 0.09696521, w: -0.8559394} + outSlope: {x: 1.2817079, y: 1.4604669, z: 0.09696521, w: -0.8559394} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: 0.5718673, y: 0.07581014, z: 0.049399238, w: 0.81534064} + inSlope: {x: -1.9841932, y: -0.1532051, z: -0.67984354, w: 1.2590504} + outSlope: {x: -1.9841932, y: -0.1532051, z: -0.67984354, w: 1.2590504} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.45957837, y: 0.015918361, z: 0.005029196, w: 0.8879803} + inSlope: {x: -0.82037157, y: -0.02892518, z: 0.8667119, w: 0.4587114} + outSlope: {x: -0.82037157, y: -0.02892518, z: 0.8667119, w: 0.4587114} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.51717585, y: 0.0738818, z: 0.10718003, w: 0.8459214} + inSlope: {x: 2.886991, y: 1.6343901, z: 3.0017645, w: -2.5326457} + outSlope: {x: 2.886991, y: 1.6343901, z: 3.0017645, w: -2.5326457} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: 0.6520445, y: 0.12487771, z: 0.20514686, w: 0.7191372} + inSlope: {x: 3.6560059, y: 0.3539638, z: -0.022535086, w: -3.1978774} + outSlope: {x: 3.6560059, y: 0.3539638, z: -0.022535086, w: -3.1978774} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: 0.7609096, y: 0.0974794, z: 0.10567773, w: 0.63272953} + inSlope: {x: 0.70415413, y: -0.63533854, z: -1.8869803, w: -0.19840038} + outSlope: {x: 0.70415413, y: -0.63533854, z: -1.8869803, w: -0.19840038} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.6989881, y: 0.08252181, z: 0.079348184, w: 0.7059105} + inSlope: {x: -3.0629406, y: -1.4638563, z: -1.3404865, w: 2.9672234} + outSlope: {x: -3.0629406, y: -1.4638563, z: -1.3404865, w: 2.9672234} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: 0.5567136, y: -0.000111014095, z: 0.01631197, w: 0.8305444} + inSlope: {x: -5.7160854, y: -1.5043236, z: -1.1325033, w: 3.6305132} + outSlope: {x: -5.7160854, y: -1.5043236, z: -1.1325033, w: 3.6305132} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.31791574, y: -0.017766427, z: 0.0038479755, w: 0.9479447} + inSlope: {x: -4.9634113, y: 0.2321451, z: 1.2250559, w: 2.078443} + outSlope: {x: -4.9634113, y: 0.2321451, z: 1.2250559, w: 2.078443} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: 0.22581953, y: 0.015365324, z: 0.09798236, w: 0.9691073} + inSlope: {x: -0.6338197, y: 0.10272345, z: 1.5700164, w: 0.1065447} + outSlope: {x: -0.6338197, y: 0.10272345, z: 1.5700164, w: 0.1065447} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.27566114, y: -0.010918222, z: 0.10851574, w: 0.95504767} + inSlope: {x: 0.85891736, y: -0.5268052, z: 0.019995496, w: -0.23057503} + outSlope: {x: 0.85891736, y: -0.5268052, z: 0.019995496, w: -0.23057503} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: 0.28308073, y: -0.019755045, z: 0.099315405, w: 0.9537356} + inSlope: {x: 0.50738144, y: -0.14483862, z: -0.44694054, w: -0.11446775} + outSlope: {x: 0.50738144, y: -0.14483862, z: -0.44694054, w: -0.11446775} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: 0.30948657, y: -0.02057413, z: 0.078719705, w: 0.9474165} + inSlope: {x: 1.3809385, y: -0.231582, z: -0.6881286, w: -0.4346988} + outSlope: {x: 1.3809385, y: -0.231582, z: -0.6881286, w: -0.4346988} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.37514323, y: -0.03519383, z: 0.05344019, w: 0.9247557} + inSlope: {x: 1.9697018, y: -0.43859145, z: -0.75838614, w: -0.6798244} + outSlope: {x: 1.9697018, y: -0.43859145, z: -0.75838614, w: -0.6798244} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.53613394, y: 0.08848427, z: -0.1202344, w: 0.83082765} + inSlope: {x: -0.9576201, y: 1.9326701, z: -0.27125984, w: 0.27653039} + outSlope: {x: -0.9576201, y: 1.9326701, z: -0.27125984, w: 0.27653039} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.5042133, y: 0.15290661, z: -0.1292764, w: 0.84004533} + inSlope: {x: -2.23975, y: 1.9425172, z: -0.04426126, w: 0.8502879} + outSlope: {x: -2.23975, y: 1.9425172, z: -0.04426126, w: 0.8502879} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: 0.38681728, y: 0.21798542, z: -0.12318515, w: 0.8875135} + inSlope: {x: -1.8705648, y: 2.6231847, z: -0.164412, w: 0.20534188} + outSlope: {x: -1.8705648, y: 2.6231847, z: -0.164412, w: 0.20534188} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: 0.37950894, y: 0.3277856, z: -0.1402372, w: 0.8537348} + inSlope: {x: 0.42835557, y: 3.9161825, z: -0.44032514, w: -1.941425} + outSlope: {x: 0.42835557, y: 3.9161825, z: -0.44032514, w: -1.941425} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.4153743, y: 0.47906426, z: -0.15254016, w: 0.7580852} + inSlope: {x: 0.49881315, y: 0.93696725, z: -0.15395904, w: -0.6691683} + outSlope: {x: 0.49881315, y: 0.93696725, z: -0.15395904, w: -0.6691683} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.41276315, y: 0.3902501, z: -0.15050113, w: 0.8091236} + inSlope: {x: 0.16443409, y: -5.0327234, z: 1.0504019, w: 1.9679499} + outSlope: {x: 0.16443409, y: -5.0327234, z: 1.0504019, w: 1.9679499} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: 0.4263366, y: 0.14354926, z: -0.08251334, w: 0.88928187} + inSlope: {x: -2.621985, y: -4.1057816, z: 0.8145067, w: 2.2548542} + outSlope: {x: -2.621985, y: -4.1057816, z: 0.8145067, w: 2.2548542} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: 0.23796415, y: 0.11653124, z: -0.09620066, w: 0.9594472} + inSlope: {x: -3.6946042, y: -1.582622, z: -0.4191961, w: 1.311257} + outSlope: {x: -3.6946042, y: -1.582622, z: -0.4191961, w: 1.311257} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.18002965, y: 0.038041126, z: -0.110459745, w: 0.976699} + inSlope: {x: -0.86305934, y: -1.1766634, z: -0.21429868, w: 0.25760385} + outSlope: {x: -0.86305934, y: -1.1766634, z: -0.21429868, w: 0.25760385} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: 0.18042687, y: 0.038087014, z: -0.11048724, w: 0.9766208} + inSlope: {x: 0.71180046, y: -1.0335802, z: -0.390221, w: -0.19532742} + outSlope: {x: 0.71180046, y: -1.0335802, z: -0.390221, w: -0.19532742} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.227483, y: -0.03086421, z: -0.13647448, w: 0.96367717} + inSlope: {x: -0.35524607, y: 0.19826937, z: -0.067228466, w: 0.044420958} + outSlope: {x: -0.35524607, y: 0.19826937, z: -0.067228466, w: 0.044420958} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: 0.1567438, y: 0.051304974, z: -0.114969134, w: 0.9795822} + inSlope: {x: -1.0780066, y: 1.2613021, z: 0.33037028, w: 0.24065049} + outSlope: {x: -1.0780066, y: 1.2613021, z: 0.33037028, w: 0.24065049} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.1556159, y: 0.05322259, z: -0.11444979, w: 0.97972053} + inSlope: {x: -0.00046892278, y: 0.013908626, z: 0.0028382172, w: -0.00032723136} + outSlope: {x: -0.00046892278, y: 0.013908626, z: 0.0028382172, w: -0.00032723136} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: 0.15671253, y: 0.052232217, z: -0.11477992, w: 0.9795604} + inSlope: {x: 3.5478175, y: -0.8496201, z: -0.14642136, w: -1.0236688} + outSlope: {x: 3.5478175, y: -0.8496201, z: -0.14642136, w: -1.0236688} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: 0.39213705, y: -0.0034187485, z: -0.124211214, w: 0.91147596} + inSlope: {x: 5.691376, y: 0.54378265, z: -0.08181861, w: -2.2310262} + outSlope: {x: 5.691376, y: 0.54378265, z: -0.08181861, w: -2.2310262} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.53613746, y: 0.08848431, z: -0.1202345, w: 0.8308254} + inSlope: {x: 4.3200164, y: 2.7570944, z: 0.11930164, w: -2.4195194} + outSlope: {x: 4.3200164, y: 2.7570944, z: 0.11930164, w: -2.4195194} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot/mixamorig:LeftToeBase + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.04573715, y: 0.039433047, z: 0.0727525, w: 0.99552006} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.04573715, y: 0.039433047, z: 0.0727525, w: 0.99552006} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot/mixamorig:LeftToeBase/mixamorig:LeftToe_End + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.26601142, y: 0.14193338, z: 0.95212054, w: -0.05058936} + inSlope: {x: -0.42948243, y: 4.5095587, z: -1.0651302, w: -1.6363184} + outSlope: {x: -0.42948243, y: 4.5095587, z: -1.0651302, w: -1.6363184} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.25169533, y: 0.292252, z: 0.9166162, w: -0.10513331} + inSlope: {x: -0.68895376, y: 3.157104, z: -0.7071179, w: -0.6147877} + outSlope: {x: -0.68895376, y: 3.157104, z: -0.7071179, w: -0.6147877} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: 0.22008117, y: 0.35240698, z: 0.90497935, w: -0.091575205} + inSlope: {x: -2.137228, y: 0.44523063, z: 0.29538983, w: 0.25592318} + outSlope: {x: -2.137228, y: 0.44523063, z: 0.29538983, w: 0.25592318} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: 0.10921344, y: 0.32193404, z: 0.93630886, w: -0.08807176} + inSlope: {x: -2.514577, y: 0.4205151, z: 0.22577037, w: 0.20616654} + outSlope: {x: -2.514577, y: 0.4205151, z: 0.22577037, w: 0.20616654} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.052442685, y: 0.3804413, z: 0.9200307, w: -0.07783077} + inSlope: {x: -0.55601895, y: 0.96557254, z: -0.27985993, w: 0.43636727} + outSlope: {x: -0.55601895, y: 0.96557254, z: -0.27985993, w: 0.43636727} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.072145514, y: 0.38630554, z: 0.91765153, w: -0.058980614} + inSlope: {x: 0.6443479, y: 0.6385582, z: -0.2991297, w: 0.53103256} + outSlope: {x: 0.6443479, y: 0.6385582, z: -0.2991297, w: 0.53103256} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: 0.09539922, y: 0.42301187, z: 0.9000887, w: -0.042428594} + inSlope: {x: 0.03665322, y: 0.8249038, z: -0.35514674, w: 0.549256} + outSlope: {x: 0.03665322, y: 0.8249038, z: -0.35514674, w: 0.549256} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: 0.07458907, y: 0.44129914, z: 0.8939751, w: -0.02236354} + inSlope: {x: -0.24757394, y: -0.89524716, z: 0.42203313, w: 0.4421568} + outSlope: {x: -0.24757394, y: -0.89524716, z: 0.42203313, w: 0.4421568} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.078894295, y: 0.36332873, z: 0.92822427, w: -0.012951477} + inSlope: {x: 0.5290082, y: -3.570057, z: 1.1835043, w: 0.49707288} + outSlope: {x: 0.5290082, y: -3.570057, z: 1.1835043, w: 0.49707288} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: 0.109856285, y: 0.20329536, z: 0.97287536, w: 0.010774651} + inSlope: {x: 1.1407688, y: -4.7097054, z: 0.8650518, w: 0.7884189} + outSlope: {x: 1.1407688, y: -4.7097054, z: 0.8650518, w: 0.7884189} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.15494554, y: 0.049348366, z: 0.9858944, w: 0.03960978} + inSlope: {x: 1.3306649, y: -3.5563068, z: 0.0615111, w: 0.89338744} + outSlope: {x: 1.3306649, y: -3.5563068, z: 0.0615111, w: 0.89338744} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: 0.19856727, y: -0.033791743, z: 0.9769761, w: 0.07033381} + inSlope: {x: 1.2765946, y: -1.8850818, z: -0.3398196, w: 0.80648965} + outSlope: {x: 1.2765946, y: -1.8850818, z: -0.3398196, w: 0.80648965} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.24005188, y: -0.076323785, z: 0.9632397, w: 0.09337577} + inSlope: {x: 1.1490471, y: -1.2444994, z: -0.3842343, w: 0.06366739} + outSlope: {x: 1.1490471, y: -1.2444994, z: -0.3842343, w: 0.06366739} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: 0.27517045, y: -0.116758406, z: 0.95136046, w: 0.07457832} + inSlope: {x: 0.80084085, y: 0.29597497, z: -0.14119597, w: -0.94956934} + outSlope: {x: 0.80084085, y: 0.29597497, z: -0.14119597, w: -0.94956934} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: 0.29344127, y: -0.05659212, z: 0.95382667, w: 0.03007115} + inSlope: {x: -0.13737282, y: 3.8804088, z: 0.011392215, w: -1.8775392} + outSlope: {x: -0.13737282, y: 3.8804088, z: 0.011392215, w: -1.8775392} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.26601228, y: 0.1419353, z: 0.95211995, w: -0.050590876} + inSlope: {x: -0.8228703, y: 5.9558287, z: -0.05120163, w: -2.4198632} + outSlope: {x: -0.8228703, y: 5.9558287, z: -0.05120163, w: -2.4198632} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.52843297, y: 0.005237418, z: 0.04915786, w: 0.8475345} + inSlope: {x: -0.5458063, y: 1.193082, z: -1.0375034, w: -0.34486052} + outSlope: {x: -0.5458063, y: 1.193082, z: -1.0375034, w: -0.34486052} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: -0.5466265, y: 0.04500682, z: 0.014574416, w: 0.8360391} + inSlope: {x: 1.6653585, y: 0.77823156, z: -0.04620415, w: 0.87323964} + outSlope: {x: 1.6653585, y: 0.77823156, z: -0.04620415, w: 0.87323964} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: -0.41740906, y: 0.057119526, z: 0.046077587, w: 0.90575045} + inSlope: {x: 5.429993, y: -0.2438858, z: 0.5787972, w: 2.173644} + outSlope: {x: 5.429993, y: -0.2438858, z: 0.5787972, w: 2.173644} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: -0.18462692, y: 0.028747762, z: 0.0531609, w: 0.98094875} + inSlope: {x: 3.7776575, y: -0.47897238, z: 0.15163979, w: 1.1778642} + outSlope: {x: 3.7776575, y: -0.47897238, z: 0.15163979, w: 1.1778642} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: -0.1655652, y: 0.025188029, z: 0.056186907, w: 0.98427474} + inSlope: {x: -0.5329138, y: 0.5085707, z: -0.20872259, w: -0.12433918} + outSlope: {x: -0.5329138, y: 0.5085707, z: -0.20872259, w: -0.12433918} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.22015451, y: 0.06265247, z: 0.03924606, w: 0.97265947} + inSlope: {x: -2.1802154, y: 1.220217, z: -0.6316477, w: -0.5989648} + outSlope: {x: -2.1802154, y: 1.220217, z: -0.6316477, w: -0.5989648} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: -0.3109129, y: 0.10653584, z: 0.014077053, w: 0.94434375} + inSlope: {x: -4.1651897, y: -0.17615855, z: -0.2884248, w: -1.6067092} + outSlope: {x: -4.1651897, y: -0.17615855, z: -0.2884248, w: -1.6067092} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: -0.49783385, y: 0.050908584, z: 0.020017732, w: 0.8655455} + inSlope: {x: -5.1185856, y: -1.4245615, z: 0.23018083, w: -2.8037238} + outSlope: {x: -5.1185856, y: -1.4245615, z: 0.23018083, w: -2.8037238} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.65215194, y: 0.01156507, z: 0.029422441, w: 0.7574288} + inSlope: {x: -2.325506, y: -0.5629501, z: 0.08044831, w: -1.6292552} + outSlope: {x: -2.325506, y: -0.5629501, z: 0.08044831, w: -1.6292552} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: -0.65286756, y: 0.01337858, z: 0.025380952, w: 0.7569285} + inSlope: {x: 1.0103757, y: 0.29013208, z: -0.21316361, w: 0.7953242} + outSlope: {x: 1.0103757, y: 0.29013208, z: -0.21316361, w: 0.7953242} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.58479357, y: 0.030907208, z: 0.015211535, w: 0.81045043} + inSlope: {x: 2.3371363, y: 0.59521186, z: -0.24706048, w: 1.636785} + outSlope: {x: 2.3371363, y: 0.59521186, z: -0.24706048, w: 1.636785} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: -0.49705848, y: 0.05305937, z: 0.0089102555, w: 0.8660475} + inSlope: {x: 2.5511737, y: 0.5645529, z: -0.056175258, w: 1.4526455} + outSlope: {x: 2.5511737, y: 0.5645529, z: -0.056175258, w: 1.4526455} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: -0.41471526, y: 0.06854408, z: 0.01146652, w: 0.9072935} + inSlope: {x: 2.3928208, y: -0.42704964, z: 0.57016116, w: 1.1065949} + outSlope: {x: 2.3928208, y: -0.42704964, z: 0.57016116, w: 1.1065949} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: -0.33753702, y: 0.024589412, z: 0.046921, w: 0.9398205} + inSlope: {x: 0.92106175, y: -1.0640488, z: 0.80990165, w: 0.3887451} + outSlope: {x: 0.92106175, y: -1.0640488, z: 0.80990165, w: 0.3887451} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: -0.35331115, y: -0.0023925, z: 0.06545996, w: 0.93320984} + inSlope: {x: -2.8634722, y: -0.2902395, z: 0.03353001, w: -1.384309} + outSlope: {x: -2.8634722, y: -0.2902395, z: 0.03353001, w: -1.384309} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.528435, y: 0.0052401046, z: 0.04915635, w: 0.84753335} + inSlope: {x: -5.2537203, y: 0.22897837, z: -0.48910877, w: -2.5702972} + outSlope: {x: -5.2537203, y: 0.22897837, z: -0.48910877, w: -2.5702972} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.7975742, y: -0.09302711, z: 0.09511794, w: 0.58836544} + inSlope: {x: -2.7453516, y: 0.77090436, z: 0.4974903, w: 3.2301002} + outSlope: {x: -2.7453516, y: 0.77090436, z: 0.4974903, w: 3.2301002} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.7060625, y: -0.06733029, z: 0.11170095, w: 0.69603544} + inSlope: {x: -3.7065005, y: 0.6912658, z: -0.23351142, w: 3.6204178} + outSlope: {x: -3.7065005, y: 0.6912658, z: -0.23351142, w: 3.6204178} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: 0.55047417, y: -0.046942715, z: 0.07955051, w: 0.82972664} + inSlope: {x: -5.758728, y: 0.16082974, z: -1.0860654, w: 3.7221413} + outSlope: {x: -5.758728, y: 0.16082974, z: -1.0860654, w: 3.7221413} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: 0.32214725, y: -0.05660831, z: 0.03929658, w: 0.9441782} + inSlope: {x: -3.9872887, y: 0.18791036, z: -0.7439515, w: 1.9172561} + outSlope: {x: -3.9872887, y: 0.18791036, z: -0.7439515, w: 1.9172561} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.2846549, y: -0.03441536, z: 0.029953737, w: 0.95754373} + inSlope: {x: 1.8531802, y: 1.1571755, z: -0.6685025, w: -0.73864913} + outSlope: {x: 1.8531802, y: 1.1571755, z: -0.6685025, w: -0.73864913} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.4456926, y: 0.02053672, z: -0.0052702534, w: 0.89493495} + inSlope: {x: 2.3728507, y: 1.2675093, z: -1.1587837, w: -0.9539384} + outSlope: {x: 2.3728507, y: 1.2675093, z: -1.1587837, w: -0.9539384} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: 0.44284493, y: 0.050085273, z: -0.04729853, w: 0.89394784} + inSlope: {x: -0.022188557, y: -0.43293247, z: 0.23023081, w: 0.013360985} + outSlope: {x: -0.022188557, y: -0.43293247, z: 0.23023081, w: 0.013360985} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: 0.44421336, y: -0.008325427, z: 0.010078445, w: 0.8958257} + inSlope: {x: 1.6851221, y: -1.2517998, z: 1.3369845, w: -0.9591759} + outSlope: {x: 1.6851221, y: -1.2517998, z: 1.3369845, w: -0.9591759} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.5551864, y: -0.033368047, z: 0.04183377, w: 0.8300028} + inSlope: {x: 1.9901416, y: -0.18963353, z: 0.51483023, w: -1.2072088} + outSlope: {x: 1.9901416, y: -0.18963353, z: 0.51483023, w: -1.2072088} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: 0.57688946, y: -0.020967662, z: 0.044400457, w: 0.8153451} + inSlope: {x: 0.30494395, y: 0.44419032, z: 0.12396684, w: -0.20635308} + outSlope: {x: 0.30494395, y: 0.44419032, z: 0.12396684, w: -0.20635308} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.575516, y: -0.0037553625, z: 0.050098225, w: 0.8162459} + inSlope: {x: -0.08315653, y: 0.5142909, z: 0.29442972, w: 0.041317645} + outSlope: {x: -0.08315653, y: 0.5142909, z: 0.29442972, w: 0.041317645} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: 0.5713457, y: 0.013318399, z: 0.064029105, w: 0.8180996} + inSlope: {x: 0.5580393, y: 0.4759602, z: 1.1917789, w: -0.55706125} + outSlope: {x: 0.5580393, y: 0.4759602, z: 1.1917789, w: -0.55706125} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.61271864, y: 0.027975328, z: 0.1295502, w: 0.77910846} + inSlope: {x: 2.3038945, y: -1.2166475, z: 0.44775587, w: -2.0863407} + outSlope: {x: 2.3038945, y: -1.2166475, z: 0.44775587, w: -2.0863407} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: 0.7249387, y: -0.06779142, z: 0.09387955, w: 0.6790102} + inSlope: {x: 2.814375, y: -1.9005727, z: -0.474042, w: -2.9387991} + outSlope: {x: 2.814375, y: -1.9005727, z: -0.474042, w: -2.9387991} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: 0.80034363, y: -0.098729506, z: 0.097947404, w: 0.58318853} + inSlope: {x: 1.0895286, y: -0.378524, z: 0.018590242, w: -1.3596654} + outSlope: {x: 1.0895286, y: -0.378524, z: 0.018590242, w: -1.3596654} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.7975739, y: -0.093026355, z: 0.0951189, w: 0.58836585} + inSlope: {x: -0.08309134, y: 0.1710947, z: -0.08485512, w: 0.15531972} + outSlope: {x: -0.08309134, y: 0.1710947, z: -0.08485512, w: 0.15531972} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.25395244, y: -0.076028414, z: 0.10206807, w: 0.9588065} + inSlope: {x: 0.000008046627, y: -0.000001117587, z: 0.000016987324, w: -0.0000035762785} + outSlope: {x: 0.000008046627, y: -0.000001117587, z: 0.000016987324, w: -0.0000035762785} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: 0.2457194, y: -0.07473992, z: 0.10878837, w: 0.96031296} + inSlope: {x: -0.419845, y: -0.106838286, z: 0.2787509, w: 0.06368815} + outSlope: {x: -0.419845, y: -0.106838286, z: 0.2787509, w: 0.06368815} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: 0.22596304, y: -0.083151005, z: 0.12065203, w: 0.9630523} + inSlope: {x: -0.7568543, y: 0.50471884, z: 0.41875964, w: 0.14991045} + outSlope: {x: -0.7568543, y: 0.50471884, z: 0.41875964, w: 0.14991045} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.19526245, y: -0.041092, z: 0.13670568, w: 0.970307} + inSlope: {x: -0.43296286, y: 0.57929456, z: 0.22221354, w: 0.103581555} + outSlope: {x: -0.43296286, y: 0.57929456, z: 0.22221354, w: 0.103581555} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.19709885, y: -0.04453137, z: 0.13546626, w: 0.9699577} + inSlope: {x: 0.099792674, y: -0.18256602, z: -0.06765625, w: -0.019939536} + outSlope: {x: 0.099792674, y: -0.18256602, z: -0.06765625, w: -0.019939536} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: 0.2019153, y: -0.053263072, z: 0.13219526, w: 0.9689777} + inSlope: {x: 1.3516891, y: -0.42698625, z: -0.05901752, w: -0.3596476} + outSlope: {x: 1.3516891, y: -0.42698625, z: -0.05901752, w: -0.3596476} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: 0.28721145, y: -0.07299712, z: 0.13153176, w: 0.9459812} + inSlope: {x: 3.1944547, y: -1.0616858, z: -0.050054718, w: -1.1528108} + outSlope: {x: 3.1944547, y: -1.0616858, z: -0.050054718, w: -1.1528108} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.41487893, y: -0.12404212, z: 0.12885828, w: 0.89212364} + inSlope: {x: 4.0635552, y: -0.57885015, z: -0.009268599, w: -2.0136597} + outSlope: {x: 4.0635552, y: -0.57885015, z: -0.009268599, w: -2.0136597} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: 0.5581151, y: -0.11158713, z: 0.13091385, w: 0.81173724} + inSlope: {x: 3.0327563, y: 1.3439186, z: -0.10416013, w: -1.732118} + outSlope: {x: 3.0327563, y: 1.3439186, z: -0.10416013, w: -1.732118} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.6170627, y: -0.034447562, z: 0.121914275, w: 0.7766491} + inSlope: {x: 0.8769188, y: 2.222942, z: -0.19522348, w: -0.5127186} + outSlope: {x: 0.8769188, y: 2.222942, z: -0.19522348, w: -0.5127186} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: 0.6165764, y: 0.036608998, z: 0.117898956, w: 0.777556} + inSlope: {x: -0.8711584, y: 0.3109724, z: 0.09209429, w: 0.63698745} + outSlope: {x: -0.8711584, y: 0.3109724, z: 0.09209429, w: 0.63698745} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.5589854, y: -0.013716117, z: 0.1280539, w: 0.819115} + inSlope: {x: -3.0047307, y: -1.5890646, z: 0.16106518, w: 1.7980461} + outSlope: {x: -3.0047307, y: -1.5890646, z: 0.16106518, w: 1.7980461} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: 0.41626096, y: -0.06932868, z: 0.12863664, w: 0.8974258} + inSlope: {x: -4.616664, y: -1.0230062, z: -0.20482378, w: 2.078054} + outSlope: {x: -4.616664, y: -1.0230062, z: -0.20482378, w: 2.078054} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: 0.25120783, y: -0.081916526, z: 0.114398986, w: 0.9576519} + inSlope: {x: -2.4346256, y: -0.10049068, z: -0.3985343, w: 0.9207121} + outSlope: {x: -2.4346256, y: -0.10049068, z: -0.3985343, w: 0.9207121} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.2539526, y: -0.076028064, z: 0.1020677, w: 0.9588066} + inSlope: {x: 0.082343005, y: 0.17665403, z: -0.36993888, w: 0.03463987} + outSlope: {x: 0.082343005, y: 0.17665403, z: -0.36993888, w: 0.03463987} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot/mixamorig:RightToeBase + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.04573715, y: -0.039433047, z: -0.0727525, w: 0.99552006} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.04573715, y: -0.039433047, z: -0.0727525, w: 0.99552006} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot/mixamorig:RightToeBase/mixamorig:RightToe_End + m_CompressedRotationCurves: [] + m_EulerCurves: [] + m_PositionCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.00023830218, y: 0.01671265, z: 0.0007180516} + inSlope: {x: 0.0006582, y: 0.00823672, z: 0.0017940036} + outSlope: {x: 0.0006582, y: 0.00823672, z: 0.0017940036} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: -0.00021636215, y: 0.016987212, z: 0.00077785185} + inSlope: {x: 0.004791433, y: 0.009137261, z: 0.0040594907} + outSlope: {x: 0.004791429, y: 0.009137341, z: 0.0040594894} + tangentMode: 0 + weightedMode: 0 + 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.00008112663, y: 0.017321805, z: 0.0009886844} + inSlope: {x: 0.011932072, y: 0.008218237, z: 0.006933486} + outSlope: {x: 0.011932075, y: 0.008218271, z: 0.0069334805} + tangentMode: 0 + weightedMode: 0 + 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.0005791095, y: 0.017535089, z: 0.0012400842} + inSlope: {x: 0.0096917385, y: 0.0035343673, z: 0.00769361} + outSlope: {x: 0.0096917255, y: 0.0035344164, z: 0.007693613} + tangentMode: 0 + weightedMode: 0 + 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.0007272425, y: 0.017557425, z: 0.0015015916} + inSlope: {x: -0.0022433787, y: -0.0058403704, z: 0.0057507367} + outSlope: {x: -0.002243402, y: -0.0058403187, z: 0.005750735} + tangentMode: 0 + weightedMode: 0 + 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.00042955182, y: 0.01714573, z: 0.0016234666} + inSlope: {x: -0.0065122386, y: -0.015983155, z: 0.0039733876} + outSlope: {x: -0.006512218, y: -0.015983222, z: 0.0039733807} + tangentMode: 0 + weightedMode: 0 + 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.00029309493, y: 0.016491879, z: 0.0017664828} + inSlope: {x: -0.0039157784, y: -0.010817712, z: 0.0030623663} + outSlope: {x: -0.0039157793, y: -0.010817611, z: 0.0030623365} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.23333333 + value: {x: 0.00016850032, y: 0.016424557, z: 0.0018276216} + inSlope: {x: -0.0035282667, y: 0.004774453, z: 0.0014869643} + outSlope: {x: -0.0035282474, y: 0.004774473, z: 0.0014869589} + tangentMode: 0 + weightedMode: 0 + 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.00005787775, y: 0.01681018, z: 0.001865614} + inSlope: {x: 0.0035819104, y: 0.011567186, z: -0.00097537163} + outSlope: {x: 0.0035818624, y: 0.011567261, z: -0.0009753366} + tangentMode: 0 + weightedMode: 0 + 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.00040729332, y: 0.01719571, z: 0.0017625982} + inSlope: {x: 0.012073295, y: 0.009566247, z: -0.0031269153} + outSlope: {x: 0.012073351, y: 0.009566349, z: -0.0031269025} + tangentMode: 0 + weightedMode: 0 + 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.00086276914, y: 0.01744794, z: 0.001657152} + inSlope: {x: 0.009943676, y: 0.004071311, z: -0.004560224} + outSlope: {x: 0.009943698, y: 0.004071433, z: -0.0045602536} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: 0.0010702078, y: 0.017467145, z: 0.0014585807} + inSlope: {x: 0.001111918, y: -0.0025429793, z: -0.007642921} + outSlope: {x: 0.0011119565, y: -0.0025428256, z: -0.00764291} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.4 + value: {x: 0.0009368984, y: 0.017278409, z: 0.0011476227} + inSlope: {x: -0.01172484, y: -0.009304035, z: -0.007686389} + outSlope: {x: -0.011724822, y: -0.009304215, z: -0.0076864003} + tangentMode: 0 + weightedMode: 0 + 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.00028854972, y: 0.01684686, z: 0.00094615226} + inSlope: {x: -0.016627513, y: -0.009442157, z: -0.004771584} + outSlope: {x: -0.01662753, y: -0.009442169, z: -0.0047716065} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.46666667 + value: {x: -0.00017160596, y: 0.016648917, z: 0.0008295157} + inSlope: {x: -0.007902714, y: -0.0020130456, z: -0.0034214228} + outSlope: {x: -0.007902743, y: -0.0020132852, z: -0.003421404} + tangentMode: 0 + weightedMode: 0 + 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.00023830023, y: 0.01671265, z: 0.0007180577} + inSlope: {x: -0.0020008266, y: 0.0019117659, z: -0.003343737} + outSlope: {x: -0.0020008266, y: 0.0019117659, z: -0.003343737} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips + m_ScaleCurves: [] + m_FloatCurves: [] + m_PPtrCurves: [] + m_SampleRate: 30 + 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: 0.5 + 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/Jammo-Character/Animations/Mixamo-Gun/Rifle Run Left.anim.meta b/Assets/Jammo-Character/Animations/Mixamo-Gun/Rifle Run Left.anim.meta new file mode 100644 index 0000000..888738c --- /dev/null +++ b/Assets/Jammo-Character/Animations/Mixamo-Gun/Rifle Run Left.anim.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 60eb7c85d36416943b8138849b6f2d84 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 7400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Jammo-Character/Animations/Mixamo-Gun/Rifle Run Right.anim b/Assets/Jammo-Character/Animations/Mixamo-Gun/Rifle Run Right.anim new file mode 100644 index 0000000..ed6d99f --- /dev/null +++ b/Assets/Jammo-Character/Animations/Mixamo-Gun/Rifle Run Right.anim @@ -0,0 +1,3729 @@ +%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: Rifle Run Right + 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, 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.033333335 + 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: jammo_mixamo_rig + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.020671878, y: 0.5794688, z: -0.07101328, w: 0.81163156} + inSlope: {x: 0.06284354, y: -0.8488994, z: -0.81123924, w: 0.5031055} + outSlope: {x: 0.06284354, y: -0.8488994, z: -0.81123924, w: 0.5031055} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: -0.006202738, y: 0.52944434, z: -0.11481644, w: 0.84051615} + inSlope: {x: 0.5156594, y: -0.3479871, z: -0.19520189, w: 0.20125507} + outSlope: {x: 0.5156594, y: -0.3479871, z: -0.19520189, w: 0.20125507} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: 0.015800204, y: 0.527973, z: -0.11106805, w: 0.84181875} + inSlope: {x: 0.44720885, y: 0.025273569, z: 0.6485415, w: 0.051231086} + outSlope: {x: 0.44720885, y: 0.025273569, z: 0.6485415, w: 0.051231086} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.023611188, y: 0.53112924, z: -0.07158034, w: 0.84393156} + inSlope: {x: -0.075780585, y: -0.24451825, z: 0.93209505, w: 0.2385092} + outSlope: {x: -0.075780585, y: -0.24451825, z: 0.93209505, w: 0.2385092} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.010748166, y: 0.5116718, z: -0.048928384, w: 0.85771936} + inSlope: {x: -0.57259375, y: -0.6282524, z: 0.57185507, w: 0.41176194} + outSlope: {x: -0.57259375, y: -0.6282524, z: 0.57185507, w: 0.41176194} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: -0.014561735, y: 0.48924574, z: -0.033456665, w: 0.87138236} + inSlope: {x: -0.03292525, y: -0.24945202, z: 0.38459802, w: 0.16193472} + outSlope: {x: -0.03292525, y: -0.24945202, z: 0.38459802, w: 0.16193472} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: 0.008553139, y: 0.49504164, z: -0.023288509, w: 0.868515} + inSlope: {x: 1.1027639, y: 0.44648904, z: 0.10874611, w: -0.2858037} + outSlope: {x: 1.1027639, y: 0.44648904, z: 0.10874611, w: -0.2858037} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.058955852, y: 0.5190117, z: -0.026206924, w: 0.8523288} + inSlope: {x: 0.9410768, y: 0.8876222, z: -0.31282863, w: -0.6056518} + outSlope: {x: 0.9410768, y: 0.8876222, z: -0.31282863, w: -0.6056518} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.061088625, y: 0.59050095, z: -0.06761428, w: 0.801876} + inSlope: {x: -0.36454767, y: 0.81457984, z: -0.35180682, w: -0.5832437} + outSlope: {x: -0.36454767, y: 0.81457984, z: -0.35180682, w: -0.5832437} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.03154985, y: 0.6173086, z: -0.05232731, w: 0.7843447} + inSlope: {x: -0.46408087, y: 0.17775168, z: 0.32809734, w: -0.09669} + outSlope: {x: -0.46408087, y: 0.17775168, z: 0.32809734, w: -0.09669} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: -0.0066776415, y: 0.60768014, z: -0.056120574, w: 0.7921684} + inSlope: {x: -0.55262476, y: -0.61355215, z: -0.38183445, w: 0.43207198} + outSlope: {x: -0.55262476, y: -0.61355215, z: -0.38183445, w: 0.43207198} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.02079196, y: 0.5794684, z: -0.071179986, w: 0.8116141} + inSlope: {x: -0.42343, y: -0.8463522, z: -0.45178276, w: 0.58337206} + outSlope: {x: -0.42343, y: -0.8463522, z: -0.45178276, w: 0.58337206} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.08743307, y: -0.012583358, z: 0.024774913, w: 0.9957828} + inSlope: {x: 0.06061546, y: -0.13488382, z: 0.1811498, w: -0.012452601} + outSlope: {x: 0.06061546, y: -0.13488382, z: 0.1811498, w: -0.012452601} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: 0.08890596, y: -0.026343966, z: 0.030470705, w: 0.99522525} + inSlope: {x: -0.24289387, y: -0.3056022, z: -0.43786186, w: 0.018604692} + outSlope: {x: -0.24289387, y: -0.3056022, z: -0.43786186, w: 0.018604692} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.065574594, y: -0.038089443, z: -0.02749431, w: 0.99674135} + inSlope: {x: 0.04786604, y: 0.26174954, z: -0.36145863, w: 0.00016808521} + outSlope: {x: 0.04786604, y: 0.26174954, z: -0.36145863, w: 0.00016808521} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.076451726, y: -0.020002998, z: -0.022474796, w: 0.9966192} + inSlope: {x: 0.5400204, y: 0.45151302, z: 0.3730406, w: -0.029236067} + outSlope: {x: 0.5400204, y: 0.45151302, z: 0.3730406, w: -0.029236067} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: 0.10157596, y: -0.007988571, z: -0.002624929, w: 0.9947923} + inSlope: {x: 0.18602256, y: 0.27541995, z: 0.082421914, w: -0.010808395} + outSlope: {x: 0.18602256, y: 0.27541995, z: 0.082421914, w: -0.010808395} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: 0.08885324, y: -0.0016416641, z: -0.016979992, w: 0.99589866} + inSlope: {x: -0.80543447, y: 0.14149772, z: -0.7834302, w: 0.03828675} + outSlope: {x: -0.80543447, y: 0.14149772, z: -0.7834302, w: 0.03828675} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.047880333, y: 0.0014446094, z: -0.054853607, w: 0.99734473} + inSlope: {x: -0.6401727, y: 0.004415408, z: -0.49541333, w: 0.026720168} + outSlope: {x: -0.6401727, y: 0.004415408, z: -0.49541333, w: 0.026720168} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: 0.04617506, y: -0.0013473036, z: -0.050007544, w: 0.99768} + inSlope: {x: 0.17094333, y: -0.11396827, z: 0.7269979, w: 0.012862088} + outSlope: {x: 0.17094333, y: -0.11396827, z: 0.7269979, w: 0.012862088} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.059276555, y: -0.006153275, z: -0.0063870833, w: 0.9982022} + inSlope: {x: 0.37274086, y: -0.15889063, z: 0.9466371, w: -0.00544399} + outSlope: {x: 0.37274086, y: -0.15889063, z: 0.9466371, w: -0.00544399} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: 0.082491286, y: -0.026965948, z: 0.009540867, w: 0.9961812} + inSlope: {x: 0.08026858, y: -0.049469158, z: 0.14837843, w: -0.009968878} + outSlope: {x: 0.08026858, y: -0.049469158, z: 0.14837843, w: -0.009968878} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.08749686, y: -0.01255628, z: 0.024996758, w: 0.995772} + inSlope: {x: 0.08564257, y: 0.28698292, z: 0.12850112, w: -0.0053536943} + outSlope: {x: 0.08564257, y: 0.28698292, z: 0.12850112, w: -0.0053536943} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.084405154, y: -0.038280953, z: 0.019212073, w: 0.9955106} + inSlope: {x: -0.10080948, y: -0.13076462, z: 0.5293877, w: -0.01184821} + outSlope: {x: -0.10080948, y: -0.13076462, z: 0.5293877, w: -0.01184821} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: 0.076248966, y: -0.047537174, z: 0.046749394, w: 0.9948572} + inSlope: {x: 0.018134855, y: -0.104331605, z: 0.37953845, w: -0.02522796} + outSlope: {x: 0.018134855, y: -0.104331605, z: 0.37953845, w: -0.02522796} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.089950606, y: -0.046640795, z: 0.056774065, w: 0.99323225} + inSlope: {x: 0.17981821, y: 0.1538895, z: -0.3786001, w: 0.009791852} + outSlope: {x: 0.17981821, y: 0.1538895, z: -0.3786001, w: 0.009791852} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: 0.09030002, y: -0.008650826, z: 0.009632056, w: 0.9958305} + inSlope: {x: -0.31828514, y: 0.5061195, z: 0.27609393, w: 0.027056338} + outSlope: {x: -0.31828514, y: 0.5061195, z: 0.27609393, w: 0.027056338} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.07641509, y: 0.0071145915, z: 0.029836297, w: 0.9966042} + inSlope: {x: -0.29999235, y: 0.22876784, z: 0.3474839, w: 0.017013254} + outSlope: {x: -0.29999235, y: 0.22876784, z: 0.3474839, w: 0.017013254} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: 0.070300534, y: 0.0066003627, z: 0.032797646, w: 0.9969647} + inSlope: {x: -0.22923774, y: -0.1697697, z: -0.19759166, w: 0.020662846} + outSlope: {x: -0.22923774, y: -0.1697697, z: -0.19759166, w: 0.020662846} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.061132576, y: -0.004203388, z: 0.01666352, w: 0.9979817} + inSlope: {x: -0.026571527, y: -0.32877192, z: -0.39167905, w: 0.008166432} + outSlope: {x: -0.026571527, y: -0.32877192, z: -0.39167905, w: 0.008166432} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: 0.08367441, y: -0.02945861, z: -0.003181274, w: 0.99605256} + inSlope: {x: 0.06086972, y: -0.15300936, z: 0.07668329, w: -0.009613038} + outSlope: {x: 0.06086972, y: -0.15300936, z: 0.07668329, w: -0.009613038} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.08432228, y: -0.03825427, z: 0.01920482, w: 0.99551874} + inSlope: {x: -0.0107056005, y: -0.13442719, z: 0.4376292, w: -0.0091892565} + outSlope: {x: -0.0107056005, y: -0.13442719, z: 0.4376292, w: -0.0091892565} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.07266295, y: -0.03976541, z: 0.013640368, w: 0.99647015} + inSlope: {x: -0.09676538, y: -0.15154256, z: 0.47092965, w: -0.009689926} + outSlope: {x: -0.09676538, y: -0.15154256, z: 0.47092965, w: -0.009689926} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: 0.06484129, y: -0.048898347, z: 0.041274708, w: 0.99584186} + inSlope: {x: 0.043583423, y: -0.07049599, z: 0.4296973, w: -0.025294121} + outSlope: {x: 0.043583423, y: -0.07049599, z: 0.4296973, w: -0.025294121} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: 0.072343, y: -0.049516562, z: 0.057984516, w: 0.9944609} + inSlope: {x: 0.24027753, y: 0.05898022, z: 0.16416633, w: -0.022520717} + outSlope: {x: 0.24027753, y: 0.05898022, z: 0.16416633, w: -0.022520717} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.08408887, y: -0.037527725, z: 0.033223525, w: 0.99519694} + inSlope: {x: 0.06988819, y: 0.26887217, z: -0.64838195, w: 0.023826953} + outSlope: {x: 0.06988819, y: 0.26887217, z: -0.64838195, w: 0.023826953} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: 0.07794222, y: -0.008534549, z: 0.007259006, w: 0.99689496} + inSlope: {x: -0.32675308, y: 0.54650533, z: 0.2902266, w: 0.023867192} + outSlope: {x: -0.32675308, y: 0.54650533, z: 0.2902266, w: 0.023867192} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.06373547, y: 0.009392169, z: 0.028342104, w: 0.9975201} + inSlope: {x: -0.30281025, y: 0.24334604, z: 0.38550147, w: 0.012930931} + outSlope: {x: -0.30281025, y: 0.24334604, z: 0.38550147, w: 0.012930931} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: 0.057754874, y: 0.0076885177, z: 0.032959104, w: 0.997757} + inSlope: {x: -0.22252938, y: -0.21480012, z: -0.17758065, w: 0.017026665} + outSlope: {x: -0.22252938, y: -0.21480012, z: -0.17758065, w: 0.017026665} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.04890018, y: -0.004927837, z: 0.016503394, w: 0.9986552} + inSlope: {x: -0.025978595, y: -0.35435146, z: -0.42301142, w: 0.00800997} + outSlope: {x: -0.025978595, y: -0.35435146, z: -0.42301142, w: 0.00800997} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: 0.07111382, y: -0.029289577, z: -0.006333513, w: 0.997018} + inSlope: {x: 0.07090297, y: -0.1622244, z: 0.06314687, w: -0.009636284} + outSlope: {x: 0.07090297, y: -0.1622244, z: 0.06314687, w: -0.009636284} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.0725808, y: -0.03973729, z: 0.013639487, w: 0.9964773} + inSlope: {x: -0.0009736428, y: -0.16122192, z: 0.37907767, w: -0.008706459} + outSlope: {x: -0.0009736428, y: -0.16122192, z: 0.37907767, w: -0.008706459} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.013286644, y: -0.063093975, z: 0.011976001, w: 0.99784726} + inSlope: {x: -0.008933906, y: 0.11870417, z: 0.24222042, w: 0.003263354} + outSlope: {x: -0.008933906, y: 0.11870417, z: 0.24222042, w: 0.003263354} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: -0.00079943327, y: -0.056620967, z: 0.02787745, w: 0.99800617} + inSlope: {x: 0.12084005, y: -0.013744144, z: -0.18102893, w: 0.0042235856} + outSlope: {x: 0.12084005, y: -0.013744144, z: -0.18102893, w: 0.0042235856} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.0016434618, y: -0.061106358, z: 0.014180115, w: 0.9980292} + inSlope: {x: 0.111855015, y: -0.20075351, z: 0.16244261, w: -0.015408399} + outSlope: {x: 0.111855015, y: -0.20075351, z: 0.16244261, w: -0.015408399} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.014473288, y: -0.075984865, z: 0.03531858, w: 0.9963782} + inSlope: {x: -0.10022723, y: 0.091165796, z: -0.05839337, w: 0.009942053} + outSlope: {x: -0.10022723, y: 0.091165796, z: -0.05839337, w: 0.009942053} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.013279283, y: -0.06309515, z: 0.011973335, w: 0.9978473} + inSlope: {x: -0.20695725, y: 0.13173614, z: -0.15654306, w: 0.0088691795} + outSlope: {x: -0.20695725, y: 0.13173614, z: -0.15654306, w: 0.0088691795} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.034521647, y: -0.29507855, z: 0.1350437, w: 0.94525135} + inSlope: {x: -0.2548851, y: 0.7882797, z: -0.8140026, w: 0.345785} + outSlope: {x: -0.2548851, y: 0.7882797, z: -0.8140026, w: 0.345785} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: 0.02674218, y: -0.2518085, z: 0.08345591, w: 0.9638011} + inSlope: {x: -0.14602537, y: 0.13491961, z: -0.60332185, w: 0.095546536} + outSlope: {x: -0.14602537, y: 0.13491961, z: -0.60332185, w: 0.095546536} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.015256962, y: -0.27792928, z: 0.07057569, w: 0.95788395} + inSlope: {x: 0.012864462, y: -0.3476009, z: 0.27112845, w: -0.12026848} + outSlope: {x: 0.012864462, y: -0.3476009, z: 0.27112845, w: -0.12026848} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.01714808, y: -0.2829813, z: 0.08576404, w: 0.9551294} + inSlope: {x: -0.081002764, y: 0.16249037, z: 0.5330702, w: -0.0018757768} + outSlope: {x: -0.081002764, y: 0.16249037, z: 0.5330702, w: -0.0018757768} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: 0.0098567745, y: -0.26709658, z: 0.10611371, w: 0.9577589} + inSlope: {x: 0.022622302, y: -0.11517015, z: 0.089298114, w: -0.043371342} + outSlope: {x: 0.022622302, y: -0.11517015, z: 0.089298114, w: -0.043371342} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.023976516, y: -0.3235334, z: 0.07059314, w: 0.9432751} + inSlope: {x: 0.0641088, y: -0.8761508, z: -0.23805198, w: -0.27745667} + outSlope: {x: 0.0641088, y: -0.8761508, z: -0.23805198, w: -0.27745667} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: 0.022930149, y: -0.34906936, z: 0.07584713, w: 0.93374085} + inSlope: {x: 0.21492419, y: -0.67793596, z: 0.41834173, w: -0.29646012} + outSlope: {x: 0.21492419, y: -0.67793596, z: 0.41834173, w: -0.29646012} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.038304795, y: -0.3687291, z: 0.09848259, w: 0.9235111} + inSlope: {x: 0.09644747, y: -0.2455965, z: 0.8057711, w: -0.1865396} + outSlope: {x: 0.09644747, y: -0.2455965, z: 0.8057711, w: -0.1865396} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: 0.02935998, y: -0.36544245, z: 0.1295652, w: 0.9213049} + inSlope: {x: -0.06925224, y: 0.19850034, z: 0.6252569, w: -0.00025573373} + outSlope: {x: -0.06925224, y: 0.19850034, z: 0.6252569, w: -0.00025573373} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: 0.045384336, y: -0.3372549, z: 0.14087485, w: 0.9297062} + inSlope: {x: 0.16883636, y: 0.56065464, z: 0.017181786, w: 0.19332112} + outSlope: {x: 0.16883636, y: 0.56065464, z: 0.017181786, w: 0.19332112} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.034515746, y: -0.29507914, z: 0.13505068, w: 0.9452504} + inSlope: {x: -0.31284007, y: 0.6911898, z: -0.18783483, w: 0.26604858} + outSlope: {x: -0.31284007, y: 0.6911898, z: -0.18783483, w: 0.26604858} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.06928724, y: 0, z: -0, w: 0.99759674} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: -0.06928724, y: 0, z: -0, w: 0.99759674} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head/mixamorig:HeadTop_End + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.40506425, y: -0.45798013, z: 0.59357256, w: 0.5233056} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.40506425, y: -0.45798013, z: 0.59357256, w: 0.5233056} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head/mixamorig:LeftEar + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.40506425, y: 0.45798013, z: -0.59357256, w: 0.5233056} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.40506425, y: 0.45798013, z: -0.59357256, w: 0.5233056} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head/mixamorig:RightEar + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.53614074, y: -0.46514788, z: 0.40361288, w: 0.5773103} + inSlope: {x: 0.05485117, y: 0.11099159, z: 0.29925045, w: -0.17463504} + outSlope: {x: 0.05485117, y: 0.11099159, z: 0.29925045, w: -0.17463504} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: 0.53641045, y: -0.46645483, z: 0.41095015, w: 0.57079214} + inSlope: {x: -0.050417475, y: -0.13503312, z: -0.09976788, w: 0.008836088} + outSlope: {x: -0.050417475, y: -0.13503312, z: -0.09976788, w: 0.008836088} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: 0.53460795, y: -0.47045037, z: 0.4069367, w: 0.5720782} + inSlope: {x: 0.13510467, y: 0.11539179, z: -0.094188, w: 0.032720264} + outSlope: {x: 0.13510467, y: 0.11539179, z: -0.094188, w: 0.032720264} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: 0.56225574, y: -0.4361337, z: 0.38712037, w: 0.58633924} + inSlope: {x: 0.04812863, y: 0.039150376, z: -0.2851277, w: 0.1728138} + outSlope: {x: 0.04812863, y: 0.039150376, z: -0.2851277, w: 0.1728138} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: 0.5645097, y: -0.44029126, z: 0.3857435, w: 0.5819574} + inSlope: {x: 0.44389492, y: 0.31660306, z: 0.4509567, w: -0.51085} + outSlope: {x: 0.44389492, y: 0.31660306, z: 0.4509567, w: -0.51085} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: 0.5957302, y: -0.41112956, z: 0.42521852, w: 0.54338497} + inSlope: {x: 0.028473556, y: 0.10675601, z: 0.3198386, w: -0.19244497} + outSlope: {x: 0.028473556, y: 0.10675601, z: 0.3198386, w: -0.19244497} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: 0.5687605, y: -0.42939663, z: 0.42709044, w: 0.55652833} + inSlope: {x: -0.70876753, y: -0.7488116, z: -0.5179409, w: 0.50482935} + outSlope: {x: -0.70876753, y: -0.7488116, z: -0.5179409, w: 0.50482935} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: 0.5400683, y: -0.46511537, z: 0.39575976, w: 0.5791097} + inSlope: {x: -0.4892958, y: -0.5362662, z: -0.35216144, w: 0.3117299} + outSlope: {x: -0.4892958, y: -0.5362662, z: -0.35216144, w: 0.3117299} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.5361408, y: -0.4651477, z: 0.403613, w: 0.5773103} + inSlope: {x: -0.11782598, y: -0.0009700665, z: 0.23559742, w: -0.05398219} + outSlope: {x: -0.11782598, y: -0.0009700665, z: 0.23559742, w: -0.05398219} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.4543215, y: 0.40165725, z: 0.06856274, w: 0.79218847} + inSlope: {x: -0.8953115, y: 0.76554173, z: -2.3695006, w: 0.1823759} + outSlope: {x: -0.8953115, y: 0.76554173, z: -2.3695006, w: 0.1823759} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.4244778, y: 0.4271753, z: -0.01042062, w: 0.79826766} + inSlope: {x: -0.65903795, y: 0.39252293, z: -2.1846948, w: 0.14159112} + outSlope: {x: -0.65903795, y: 0.39252293, z: -2.1846948, w: 0.14159112} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: 0.41038564, y: 0.42782545, z: -0.077083595, w: 0.8016279} + inSlope: {x: -0.45923346, y: 0.12407986, z: -1.6616402, w: 0.031324625} + outSlope: {x: -0.45923346, y: 0.12407986, z: -1.6616402, w: 0.031324625} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: 0.39386222, y: 0.4354473, z: -0.12119664, w: 0.800356} + inSlope: {x: -0.26036602, y: 0.26155472, z: -0.35774943, w: -0.051797926} + outSlope: {x: -0.26036602, y: 0.26155472, z: -0.35774943, w: -0.051797926} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.39641857, y: 0.45375398, z: -0.05962105, w: 0.79586744} + inSlope: {x: 0.26210898, y: 0.055225834, z: 0.89292216, w: -0.08354275} + outSlope: {x: 0.26210898, y: 0.055225834, z: 0.89292216, w: -0.08354275} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: 0.41050184, y: 0.44894415, z: -0.041405417, w: 0.79260516} + inSlope: {x: 0.27643645, y: -0.108614236, z: 1.1828407, w: -0.0495529} + outSlope: {x: 0.27643645, y: -0.108614236, z: 1.1828407, w: -0.0495529} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: 0.41484767, y: 0.44651303, z: 0.019235, w: 0.7925639} + inSlope: {x: -0.0947173, y: 0.06376594, z: 2.308497, w: -0.091487475} + outSlope: {x: -0.0947173, y: 0.06376594, z: 2.308497, w: -0.091487475} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.40418735, y: 0.4531952, z: 0.11249438, w: 0.786506} + inSlope: {x: -0.19540028, y: 0.15917616, z: 2.3082287, w: -0.27331087} + outSlope: {x: -0.19540028, y: 0.15917616, z: 2.3082287, w: -0.27331087} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.4135481, y: 0.45123386, z: 0.19856612, w: 0.7654655} + inSlope: {x: 0.35514194, y: -0.21553475, z: 0.14459835, w: -0.09812237} + outSlope: {x: 0.35514194, y: -0.21553475, z: 0.14459835, w: -0.09812237} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: 0.4254971, y: 0.4427558, z: 0.1827568, w: 0.7678017} + inSlope: {x: 0.49895006, y: -0.5268155, z: -0.47885013, w: 0.13154261} + outSlope: {x: 0.49895006, y: -0.5268155, z: -0.47885013, w: 0.13154261} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: 0.4656428, y: 0.3880831, z: 0.15109712, w: 0.7808572} + inSlope: {x: 0.5034341, y: -0.6964562, z: -0.52675325, w: 0.15241386} + outSlope: {x: 0.5034341, y: -0.6964562, z: -0.52675325, w: 0.15241386} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: 0.48037374, y: 0.3696824, z: 0.13152589, w: 0.78439593} + inSlope: {x: -0.16981728, y: 0.20252061, z: -1.2359425, w: 0.17034274} + outSlope: {x: -0.16981728, y: 0.20252061, z: -1.2359425, w: 0.17034274} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.45432168, y: 0.40158445, z: 0.068701014, w: 0.7922134} + inSlope: {x: -0.7815625, y: 0.95706224, z: -1.8847481, w: 0.23452364} + outSlope: {x: -0.7815625, y: 0.95706224, z: -1.8847481, w: 0.23452364} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.67912114, y: 0.52585614, z: -0.3549388, w: 0.36917257} + inSlope: {x: -1.1055118, y: 1.1216211, z: 0.56987107, w: 0.82644665} + outSlope: {x: -1.1055118, y: 1.1216211, z: 0.56987107, w: 0.82644665} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: 0.6100781, y: 0.5939088, z: -0.3176806, w: 0.41732013} + inSlope: {x: -0.7509657, y: 0.736092, z: 0.46591622, w: 0.43797874} + outSlope: {x: -0.7509657, y: 0.736092, z: 0.46591622, w: 0.43797874} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: 0.59220636, y: 0.6123163, z: -0.30488202, w: 0.42591938} + inSlope: {x: -0.1945397, y: 0.18558645, z: 0.118917935, w: 0.10305314} + outSlope: {x: -0.1945397, y: 0.18558645, z: 0.118917935, w: 0.10305314} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.5971088, y: 0.6062812, z: -0.30975273, w: 0.42419034} + inSlope: {x: 0.4166508, y: -0.34126195, z: -0.19715445, w: -0.26090655} + outSlope: {x: 0.4166508, y: -0.34126195, z: -0.19715445, w: -0.26090655} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.6199831, y: 0.5895655, z: -0.31802565, w: 0.40852562} + inSlope: {x: 0.42096823, y: -0.38064212, z: -0.22788, w: -0.24920942} + outSlope: {x: 0.42096823, y: -0.38064212, z: -0.22788, w: -0.24920942} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: 0.62517333, y: 0.5809051, z: -0.32494473, w: 0.40757638} + inSlope: {x: 0.5167401, y: -0.54312855, z: -0.32930595, w: -0.31979758} + outSlope: {x: 0.5167401, y: -0.54312855, z: -0.32930595, w: -0.31979758} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.6992017, y: 0.51155424, z: -0.356006, w: 0.35026988} + inSlope: {x: 1.159925, y: -1.1725299, z: -0.42292717, w: -0.99007714} + outSlope: {x: 1.159925, y: -1.1725299, z: -0.42292717, w: -0.99007714} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: 0.73176074, y: 0.4751883, z: -0.36817452, w: 0.32120064} + inSlope: {x: 0.8189321, y: -1.2098265, z: -0.5751783, w: -0.7389987} + outSlope: {x: 0.8189321, y: -1.2098265, z: -0.5751783, w: -0.7389987} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.7537972, y: 0.43089914, z: -0.3943512, w: 0.3010033} + inSlope: {x: 0.35004798, y: -0.8051411, z: -0.52117157, w: -0.32272074} + outSlope: {x: 0.35004798, y: -0.8051411, z: -0.52117157, w: -0.32272074} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: 0.7353067, y: 0.45517838, z: -0.38683012, w: 0.32015494} + inSlope: {x: -0.4947344, y: 0.7408731, z: 0.34038085, w: 0.47562993} + outSlope: {x: -0.4947344, y: 0.7408731, z: 0.34038085, w: 0.47562993} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: 0.7153892, y: 0.48326868, z: -0.37411806, w: 0.3386818} + inSlope: {x: -0.84235907, y: 1.059643, z: 0.47807854, w: 0.7349472} + outSlope: {x: -0.84235907, y: 1.059643, z: 0.47807854, w: 0.7349472} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.67914945, y: 0.5258212, z: -0.35495824, w: 0.36915138} + inSlope: {x: -1.0871934, y: 1.2765771, z: 0.57479525, w: 0.9140888} + outSlope: {x: -1.0871934, y: 1.2765771, z: 0.57479525, w: 0.9140888} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.047113433, y: 0.28621972, z: -0.032442056, w: 0.956455} + inSlope: {x: -0.2025393, y: 0.032552183, z: 1.247867, w: -0.0052607055} + outSlope: {x: -0.2025393, y: 0.032552183, z: 1.247867, w: -0.0052607055} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: -0.053864744, y: 0.2873048, z: 0.00915351, w: 0.95627964} + inSlope: {x: 0.14853263, y: 0.031124353, z: 0.9611616, w: -0.0023952124} + outSlope: {x: 0.14853263, y: 0.031124353, z: 0.9611616, w: -0.0023952124} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: -0.029609492, y: 0.28167644, z: 0.033465568, w: 0.95846844} + inSlope: {x: -0.019433245, y: -0.30889034, z: -0.010620575, w: 0.089096725} + outSlope: {x: -0.019433245, y: -0.30889034, z: -0.010620575, w: 0.089096725} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.053288486, y: 0.25977448, z: 0.017334562, w: 0.96404207} + inSlope: {x: -0.002051264, y: -0.10129453, z: -0.5778141, w: 0.034707785} + outSlope: {x: -0.002051264, y: -0.10129453, z: -0.5778141, w: 0.034707785} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: -0.03864355, y: 0.26094902, z: -0.0075936033, w: 0.96454895} + inSlope: {x: 0.008963063, y: -0.044912264, z: -0.8939563, w: 0.0009673801} + outSlope: {x: 0.008963063, y: -0.044912264, z: -0.8939563, w: 0.0009673801} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: -0.05269094, y: 0.25678033, z: -0.04226253, w: 0.96410656} + inSlope: {x: -0.94513035, y: -0.24829814, z: -0.7670666, w: -0.030095281} + outSlope: {x: -0.94513035, y: -0.24829814, z: -0.7670666, w: -0.030095281} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.101652235, y: 0.2443958, z: -0.058731373, w: 0.9625426} + inSlope: {x: -0.8787087, y: -0.20360583, z: -0.31485617, w: -0.039206747} + outSlope: {x: -0.8787087, y: -0.20360583, z: -0.31485617, w: -0.039206747} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: -0.111271515, y: 0.2432066, z: -0.06325294, w: 0.9614928} + inSlope: {x: -0.40551317, y: 0.006553307, z: -0.15224952, w: -0.060405143} + outSlope: {x: -0.40551317, y: 0.006553307, z: -0.15224952, w: -0.060405143} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.12868644, y: 0.2448327, z: -0.06888134, w: 0.9585156} + inSlope: {x: -0.10023908, y: -0.02112195, z: -0.08536768, w: -0.012496412} + outSlope: {x: -0.10023908, y: -0.02112195, z: -0.08536768, w: -0.012496412} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: -0.08634001, y: 0.24175556, z: -0.07209949, w: 0.9637953} + inSlope: {x: 0.805625, y: 0.14429235, z: -0.044159513, w: 0.036074776} + outSlope: {x: 0.805625, y: 0.14429235, z: -0.044159513, w: 0.036074776} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: -0.06424576, y: 0.25141796, z: -0.07188809, w: 0.9630647} + inSlope: {x: 0.798296, y: 0.5599078, z: -0.0066097463, w: -0.10267586} + outSlope: {x: 0.798296, y: 0.5599078, z: -0.0066097463, w: -0.10267586} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: -0.033120282, y: 0.27908275, z: -0.07254014, w: 0.95695025} + inSlope: {x: 0.25676566, y: 0.52216274, z: 0.5915319, w: -0.09920241} + outSlope: {x: 0.25676566, y: 0.52216274, z: 0.5915319, w: -0.09920241} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.047128037, y: 0.2862288, z: -0.03245267, w: 0.9564512} + inSlope: {x: -0.42023304, y: 0.21438202, z: 1.2026253, w: -0.014972105} + outSlope: {x: -0.42023304, y: 0.21438202, z: 1.2026253, w: -0.014972105} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.22189704, y: -0.13689654, z: -0.25379977, w: 0.93145406} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.22189704, y: -0.13689654, z: -0.25379977, w: 0.93145406} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.055517554, y: -0.13071378, z: 0.13998017, w: 0.979917} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.055517554, y: -0.13071378, z: 0.13998017, w: 0.979917} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.22361797, y: 0.031642154, z: -0.10459671, w: 0.96853155} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: -0.22361797, y: 0.031642154, z: -0.10459671, w: 0.96853155} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2/mixamorig:LeftHandThumb3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.020066699, y: 0.040932316, z: 0.014504494, w: 0.9988551} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.020066699, y: 0.040932316, z: 0.014504494, w: 0.9988551} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2/mixamorig:LeftHandThumb3/mixamorig:LeftHandThumb4 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.17390493, y: -0.06617013, z: -0.022739641, w: 0.98227364} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.17390493, y: -0.06617013, z: -0.022739641, w: 0.98227364} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.24461009, y: -0.005066573, z: 0.033822685, w: 0.9690182} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.24461009, y: -0.005066573, z: 0.033822685, w: 0.9690182} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.2455619, y: -0.000000015895727, z: 0.03264668, w: 0.96883106} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.2455619, y: -0.000000015895727, z: 0.03264668, w: 0.96883106} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2/mixamorig:LeftHandIndex3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.044488553, y: 0.000000017984396, z: -0.000000023543375, w: 0.9990099} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.044488553, y: 0.000000017984396, z: -0.000000023543375, w: 0.9990099} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2/mixamorig:LeftHandIndex3/mixamorig:LeftHandIndex4 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.17314565, y: -0.06403204, z: -0.024895854, w: 0.98249716} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.17314565, y: -0.06403204, z: -0.024895854, w: 0.98249716} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.3860962, y: -0.012462567, z: 0.055942487, w: 0.92067635} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.3860962, y: -0.012462567, z: 0.055942487, w: 0.92067635} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.37091085, y: 0.002880001, z: 0.050473347, w: 0.9272914} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.37091085, y: 0.002880001, z: 0.050473347, w: 0.9272914} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2/mixamorig:LeftHandMiddle3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.010558689, y: -0.0028614555, z: -0.0028609834, w: 0.9999361} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.010558689, y: -0.0028614555, z: -0.0028609834, w: 0.9999361} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2/mixamorig:LeftHandMiddle3/mixamorig:LeftHandMiddle4 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.055215452, y: 0.085938156, z: -0.020106602, w: 0.9945661} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.055215452, y: 0.085938156, z: -0.020106602, w: 0.9945661} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.4315976, y: -0.00012879733, z: 0.05738128, w: 0.9002394} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.4315976, y: -0.00012879733, z: 0.05738128, w: 0.9002394} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.27317527, y: 0.00000003173119, z: 0.03627922, w: 0.9612799} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.27317527, y: 0.00000003173119, z: 0.03627922, w: 0.9612799} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2/mixamorig:LeftHandPinky3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.04451908, y: 0.00000015084785, z: -0.000000028195505, w: 0.99900854} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.04451908, y: 0.00000015084785, z: -0.000000028195505, w: 0.99900854} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2/mixamorig:LeftHandPinky3/mixamorig:LeftHandPinky4 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.59583855, y: 0.41926003, z: -0.3120913, w: 0.60975116} + inSlope: {x: 0.09093224, y: -0.10177552, z: 0.16292898, w: 0.06317139} + outSlope: {x: 0.09093224, y: -0.10177552, z: 0.16292898, w: 0.06317139} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.6152163, y: 0.41122144, z: -0.27832326, w: 0.6123251} + inSlope: {x: 0.07534951, y: -0.0894825, z: 0.15175626, w: 0.054194912} + outSlope: {x: 0.07534951, y: -0.0894825, z: 0.15175626, w: 0.054194912} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: 0.6046477, y: 0.41280198, z: -0.29668587, w: 0.6131666} + inSlope: {x: -0.10227264, y: 0.16640471, z: -0.20243259, w: -0.10991246} + outSlope: {x: -0.10227264, y: 0.16640471, z: -0.20243259, w: -0.10991246} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: 0.59400713, y: 0.4227825, z: -0.3155977, w: 0.6072961} + inSlope: {x: 0.035587575, y: -0.0930517, z: 0.07268702, w: 0.067486204} + outSlope: {x: 0.035587575, y: -0.0930517, z: 0.07268702, w: 0.067486204} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.5958438, y: 0.4192508, z: -0.31208122, w: 0.60975754} + inSlope: {x: 0.055099778, y: -0.10595183, z: 0.10549496, w: 0.07384307} + outSlope: {x: 0.055099778, y: -0.10595183, z: 0.10549496, w: 0.07384307} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.33694613, y: -0.04066597, z: 0.42786297, w: 0.83770335} + inSlope: {x: -0.12429624, y: -0.31352216, z: -0.23366867, w: 0.1503235} + outSlope: {x: -0.12429624, y: -0.31352216, z: -0.23366867, w: 0.1503235} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.33280292, y: -0.05111671, z: 0.42007402, w: 0.84271413} + inSlope: {x: -0.009287149, y: -0.23854795, z: -0.4810613, w: 0.22438106} + outSlope: {x: -0.009287149, y: -0.23854795, z: -0.4810613, w: 0.22438106} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: 0.336327, y: -0.056569166, z: 0.39579222, w: 0.8526621} + inSlope: {x: 0.06106272, y: -0.41026533, z: -0.62648976, w: 0.23870674} + outSlope: {x: 0.06106272, y: -0.41026533, z: -0.62648976, w: 0.23870674} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: 0.33687377, y: -0.078467734, z: 0.37830803, w: 0.8586279} + inSlope: {x: 0.066208094, y: -0.45803857, z: -0.3029157, w: 0.071942195} + outSlope: {x: 0.066208094, y: -0.45803857, z: -0.3029157, w: 0.071942195} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.3477013, y: -0.0999281, z: 0.3677883, w: 0.8566504} + inSlope: {x: 0.009259924, y: -0.32062864, z: -0.47219917, w: 0.1569646} + outSlope: {x: 0.009259924, y: -0.32062864, z: -0.47219917, w: 0.1569646} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: 0.34135818, y: -0.10848032, z: 0.34411788, w: 0.86792254} + inSlope: {x: -0.4335831, y: 0.04928644, z: 0.021685839, w: 0.16394997} + outSlope: {x: -0.4335831, y: 0.04928644, z: 0.021685839, w: 0.16394997} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: 0.31879577, y: -0.096642345, z: 0.36923403, w: 0.8675804} + inSlope: {x: -0.6227782, y: 0.5711193, z: 1.2242608, w: -0.25659087} + outSlope: {x: -0.6227782, y: 0.5711193, z: 1.2242608, w: -0.25659087} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.29983965, y: -0.0704057, z: 0.42573527, w: 0.8508165} + inSlope: {x: -0.35079497, y: 0.7280135, z: 1.2308917, w: -0.40341413} + outSlope: {x: -0.35079497, y: 0.7280135, z: 1.2308917, w: -0.40341413} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: 0.29540944, y: -0.048108112, z: 0.45129347, w: 0.84068614} + inSlope: {x: 0.095154054, y: 0.7863846, z: 0.20376028, w: -0.096995845} + outSlope: {x: 0.095154054, y: 0.7863846, z: 0.20376028, w: -0.096995845} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.30618325, y: -0.017980063, z: 0.43931928, w: 0.8443501} + inSlope: {x: 0.3104702, y: 0.60214293, z: -0.39070714, w: 0.11036397} + outSlope: {x: 0.3104702, y: 0.60214293, z: -0.39070714, w: 0.11036397} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: 0.3347304, y: -0.013940373, z: 0.41238114, w: 0.8471736} + inSlope: {x: 0.20884398, y: -0.2129969, z: 0.02639607, w: -0.099435754} + outSlope: {x: 0.20884398, y: -0.2129969, z: 0.02639607, w: -0.099435754} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.33696276, y: -0.040587258, z: 0.427887, w: 0.8376882} + inSlope: {x: -0.076575354, y: -0.48987013, z: 0.31062603, w: -0.14437272} + outSlope: {x: -0.076575354, y: -0.48987013, z: 0.31062603, w: -0.14437272} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.110901356, y: -0.19562027, z: 0.775243, w: 0.59028125} + inSlope: {x: 0.04746012, y: -0.000706315, z: 0.0637275, w: -0.09327292} + outSlope: {x: 0.04746012, y: -0.000706315, z: 0.0637275, w: -0.09327292} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: 0.11685208, y: -0.19426264, z: 0.7855419, w: 0.5757878} + inSlope: {x: 0.16197324, y: -0.18354647, z: -0.14393272, w: 0.09868475} + outSlope: {x: 0.16197324, y: -0.18354647, z: -0.14393272, w: 0.09868475} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.121668115, y: -0.20269969, z: 0.7756861, w: 0.5851673} + inSlope: {x: 0.0077425316, y: -0.033350818, z: -0.05105854, w: 0.056431897} + outSlope: {x: 0.0077425316, y: -0.033350818, z: -0.05105854, w: 0.056431897} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: 0.11176355, y: -0.19253115, z: 0.7825625, w: 0.58140916} + inSlope: {x: -0.20610774, y: 0.01946633, z: -0.24851474, w: 0.36984268} + outSlope: {x: -0.20610774, y: 0.01946633, z: -0.24851474, w: 0.36984268} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.09775591, y: -0.1988242, z: 0.748233, w: 0.6253479} + inSlope: {x: -0.077558875, y: -0.021885484, z: -0.1705009, w: 0.2176899} + outSlope: {x: -0.077558875, y: -0.021885484, z: -0.1705009, w: 0.2176899} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: 0.09845714, y: -0.1966473, z: 0.7542036, w: 0.61871874} + inSlope: {x: 0.12032558, y: 0.15491256, z: 0.51471776, w: -0.62222964} + outSlope: {x: 0.12032558, y: 0.15491256, z: 0.51471776, w: -0.62222964} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.105777614, y: -0.1884967, z: 0.78254753, w: 0.58386594} + inSlope: {x: 0.16910592, y: 0.17892392, z: 0.6167964, w: -0.7782985} + outSlope: {x: 0.16910592, y: 0.17892392, z: 0.6167964, w: -0.7782985} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: 0.1131124, y: -0.18684572, z: 0.7953934, w: 0.5653704} + inSlope: {x: 0.022155607, y: -0.08564272, z: -0.13884725, w: 0.16092272} + outSlope: {x: 0.022155607, y: -0.08564272, z: -0.13884725, w: 0.16092272} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.11088911, y: -0.19562435, z: 0.77521706, w: 0.5903163} + inSlope: {x: -0.059663784, y: -0.15706226, z: -0.39017415, w: 0.48323438} + outSlope: {x: -0.059663784, y: -0.15706226, z: -0.39017415, w: 0.48323438} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.008872972, y: -0.039648037, z: -0.07906801, w: 0.99604094} + inSlope: {x: -1.605116, y: 0.47293043, z: 0.26920035, w: -0.022176502} + outSlope: {x: -1.605116, y: 0.47293043, z: 0.26920035, w: -0.022176502} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: -0.09884997, y: -0.014236231, z: -0.05854051, w: 0.99327695} + inSlope: {x: -0.58135736, y: 0.25739372, z: 0.38606024, w: -0.021615028} + outSlope: {x: -0.58135736, y: 0.25739372, z: 0.38606024, w: -0.021615028} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: -0.101134, y: -0.006724107, z: -0.044357315, w: 0.9938607} + inSlope: {x: 0.34007564, y: 0.17496473, z: 0.41752875, w: 0.05011618} + outSlope: {x: 0.34007564, y: 0.17496473, z: 0.41752875, w: 0.05011618} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: -0.07617826, y: -0.002571915, z: -0.030705256, w: 0.99661803} + inSlope: {x: 0.7517915, y: 0.02186669, z: -0.13299914, w: 0.051060323} + outSlope: {x: 0.7517915, y: 0.02186669, z: -0.13299914, w: 0.051060323} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.051014576, y: -0.0052663274, z: -0.053223923, w: 0.99726474} + inSlope: {x: 0.914204, y: -0.37357616, z: -0.40550315, w: 0.018289085} + outSlope: {x: 0.914204, y: -0.37357616, z: -0.40550315, w: 0.018289085} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: -0.015231313, y: -0.027477002, z: -0.0577388, w: 0.9978373} + inSlope: {x: 0.93083966, y: -1.0588112, z: 0.28193972, w: -0.01202256} + outSlope: {x: 0.93083966, y: -1.0588112, z: 0.28193972, w: -0.01202256} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: 0.011041414, y: -0.07585375, z: -0.034427945, w: 0.99646324} + inSlope: {x: 0.42143106, y: -1.3719969, z: 0.78232765, w: -0.075529225} + outSlope: {x: 0.42143106, y: -1.3719969, z: 0.78232765, w: -0.075529225} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.01286409, y: -0.11894345, z: -0.005583626, w: 0.992802} + inSlope: {x: 0.11668255, y: -0.5279182, z: 0.42932233, w: -0.042650703} + outSlope: {x: 0.11668255, y: -0.5279182, z: 0.42932233, w: -0.042650703} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: 0.01882025, y: -0.111048296, z: -0.0058064573, w: 0.99361986} + inSlope: {x: 0.23317197, y: 0.3644664, z: -0.4093851, w: 0.026405456} + outSlope: {x: 0.23317197, y: 0.3644664, z: -0.4093851, w: 0.026405456} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.028408887, y: -0.094645694, z: -0.032875963, w: 0.9945624} + inSlope: {x: 0.34513038, y: 0.59240925, z: -0.62642, w: 0.027052762} + outSlope: {x: 0.34513038, y: 0.59240925, z: -0.62642, w: 0.027052762} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.05465854, y: -0.054107714, z: -0.06325072, w: 0.99502975} + inSlope: {x: 0.12914678, y: 0.3587604, z: -0.49438477, w: -0.016325708} + outSlope: {x: 0.12914678, y: 0.3587604, z: -0.49438477, w: -0.016325708} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: 0.029162992, y: -0.045432184, z: -0.08464764, w: 0.9949474} + inSlope: {x: -0.88975334, y: 0.11894962, z: 0.02270073, w: 0.025618687} + outSlope: {x: -0.88975334, y: 0.11894962, z: 0.02270073, w: 0.025618687} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.008878111, y: -0.039707005, z: -0.07901341, w: 0.9960429} + inSlope: {x: -1.1412342, y: 0.17175552, z: 0.16902716, w: 0.03286603} + outSlope: {x: -1.1412342, y: 0.17175552, z: 0.16902716, w: 0.03286603} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.17914823, y: 0.27560502, z: 0.26376188, w: 0.9068503} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.17914823, y: 0.27560502, z: 0.26376188, w: 0.9068503} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.07092302, y: 0.11455838, z: -0.2083895, w: 0.96872085} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.07092302, y: 0.11455838, z: -0.2083895, w: 0.96872085} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.0025600963, y: 0.01716401, z: -0.26406166, w: 0.9643497} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.0025600963, y: 0.01716401, z: -0.26406166, w: 0.9643497} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2/mixamorig:RightHandThumb3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.020066826, y: -0.040932354, z: -0.014504512, w: 0.9988551} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.020066826, y: -0.040932354, z: -0.014504512, w: 0.9988551} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2/mixamorig:RightHandThumb3/mixamorig:RightHandThumb4 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.039882936, y: -0.021049062, z: -0.021070614, w: 0.9987604} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.039882936, y: -0.021049062, z: -0.021070614, w: 0.9987604} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.10017252, y: 0.0052018315, z: -0.011729536, w: 0.99488735} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.10017252, y: 0.0052018315, z: -0.011729536, w: 0.99488735} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.287635, y: -0.00000014152738, z: -0.032156855, w: 0.9572001} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.287635, y: -0.00000014152738, z: -0.032156855, w: 0.9572001} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2/mixamorig:RightHandIndex3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.04448861, y: 0.00000004918023, z: -0.00000009321241, w: 0.9990099} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.04448861, y: 0.00000004918023, z: -0.00000009321241, w: 0.9990099} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2/mixamorig:RightHandIndex3/mixamorig:RightHandIndex4 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.0010485095, y: 0.0003425181, z: -0.07512588, w: 0.9971735} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: -0.0010485095, y: 0.0003425181, z: -0.07512588, w: 0.9971735} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.77708626, y: 0.008185451, z: -0.0966591, w: 0.62187386} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.77708626, y: 0.008185451, z: -0.0966591, w: 0.62187386} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.5790418, y: -0.0026379295, z: -0.06625736, w: 0.8125969} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.5790418, y: -0.0026379295, z: -0.06625736, w: 0.8125969} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2/mixamorig:RightHandMiddle3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.010558625, y: 0.0028613901, z: 0.0028609917, w: 0.9999361} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.010558625, y: 0.0028613901, z: 0.0028609917, w: 0.9999361} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2/mixamorig:RightHandMiddle3/mixamorig:RightHandMiddle4 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.042047847, y: -0.17182378, z: -0.055552, w: 0.98266095} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.042047847, y: -0.17182378, z: -0.055552, w: 0.98266095} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.72761935, y: 0.00009760382, z: -0.081348434, w: 0.6811406} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.72761935, y: 0.00009760382, z: -0.081348434, w: 0.6811406} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.62208164, y: -0.0000001072192, z: -0.06945927, w: 0.77986526} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.62208164, y: -0.0000001072192, z: -0.06945927, w: 0.77986526} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2/mixamorig:RightHandPinky3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.04451906, y: 0.00000000225044, z: -0.000000047421693, w: 0.99900854} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.04451906, y: 0.00000000225044, z: -0.000000047421693, w: 0.99900854} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2/mixamorig:RightHandPinky3/mixamorig:RightHandPinky4 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.112493716, y: 0.5994683, z: 0.789125, w: -0.07255756} + inSlope: {x: -1.079849, y: -0.07359802, z: -0.031235216, w: -1.6937413} + outSlope: {x: -1.079849, y: -0.07359802, z: -0.031235216, w: -1.6937413} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.07649875, y: 0.597015, z: 0.78808385, w: -0.12901561} + inSlope: {x: -0.38644302, y: -1.0355552, z: 0.57110393, w: -1.3701224} + outSlope: {x: -0.38644302, y: -1.0355552, z: 0.57110393, w: -1.3701224} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: 0.086730845, y: 0.5304313, z: 0.8271986, w: -0.16389906} + inSlope: {x: 0.16379064, y: -1.8046575, z: 1.0309945, w: -0.70475686} + outSlope: {x: 0.16379064, y: -1.8046575, z: 1.0309945, w: -0.70475686} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: 0.087418124, y: 0.4767045, z: 0.8568168, w: -0.1759994} + inSlope: {x: 0.1777148, y: -1.7867879, z: 0.99333376, w: 0.18838656} + outSlope: {x: 0.1777148, y: -1.7867879, z: 0.99333376, w: 0.18838656} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.0985785, y: 0.41131207, z: 0.8934209, w: -0.15133996} + inSlope: {x: 0.2544375, y: -1.3676822, z: 0.7512618, w: 0.6272292} + outSlope: {x: 0.2544375, y: -1.3676822, z: 0.7512618, w: 0.6272292} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.10438062, y: 0.3855257, z: 0.90690094, w: -0.13418412} + inSlope: {x: 0.07108738, y: -0.58321637, z: 0.31405446, w: 0.45948213} + outSlope: {x: 0.07108738, y: -0.58321637, z: 0.31405446, w: 0.45948213} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: 0.103317656, y: 0.37243098, z: 0.91435784, w: -0.12070782} + inSlope: {x: 0.119597375, y: -0.8222616, z: 0.4315567, w: 1.2586157} + outSlope: {x: 0.119597375, y: -0.8222616, z: 0.4315567, w: 1.2586157} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: 0.11235378, y: 0.33070827, z: 0.9356714, w: -0.050276406} + inSlope: {x: 0.18187536, y: -2.2251067, z: 0.79546636, w: 2.1826363} + outSlope: {x: 0.18187536, y: -2.2251067, z: 0.79546636, w: 2.1826363} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.11544268, y: 0.22409055, z: 0.9673889, w: 0.024801254} + inSlope: {x: -0.13768014, y: -3.497096, z: 0.8114416, w: 0.96392846} + outSlope: {x: -0.13768014, y: -3.497096, z: 0.8114416, w: 0.96392846} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: 0.1031751, y: 0.09756855, z: 0.9897675, w: 0.013985483} + inSlope: {x: -0.33551085, y: -2.220482, z: 0.3777078, w: -0.6558783} + outSlope: {x: -0.33551085, y: -2.220482, z: 0.3777078, w: -0.6558783} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.09307529, y: 0.07605842, z: 0.99256945, w: -0.018923964} + inSlope: {x: -0.21576473, y: -0.22747323, z: 0.034503046, w: -0.7134674} + outSlope: {x: -0.21576473, y: -0.22747323, z: 0.034503046, w: -0.7134674} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: 0.08879079, y: 0.08240367, z: 0.9920677, w: -0.03357901} + inSlope: {x: 0.06364647, y: -1.046896, z: 0.034846332, w: -0.10694078} + outSlope: {x: 0.06364647, y: -1.046896, z: 0.034846332, w: -0.10694078} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.097318396, y: 0.0062652896, z: 0.99489254, w: -0.026053343} + inSlope: {x: 0.26971895, y: -0.4123606, z: 0.0058364496, w: 0.13206093} + outSlope: {x: 0.26971895, y: -0.4123606, z: 0.0058364496, w: 0.13206093} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: 0.10677206, y: 0.054912895, z: 0.9924568, w: -0.024774943} + inSlope: {x: 0.042397566, y: 5.4764557, z: -1.0812451, w: 0.06093809} + outSlope: {x: 0.042397566, y: 5.4764557, z: -1.0812451, w: 0.06093809} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: 0.1001449, y: 0.37136233, z: 0.92280954, w: -0.021990804} + inSlope: {x: -0.61672026, y: 8.16363, z: -2.9490495, w: -0.49265614} + outSlope: {x: -0.61672026, y: 8.16363, z: -2.9490495, w: -0.49265614} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.06565741, y: 0.5991546, z: 0.7958536, w: -0.05761865} + inSlope: {x: -1.0346258, y: 6.8337746, z: -3.8086815, w: -1.0688365} + outSlope: {x: -1.0346258, y: 6.8337746, z: -3.8086815, w: -1.0688365} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.8566683, y: 0.027653208, z: 0.0125829205, w: 0.5149722} + inSlope: {x: 6.7472486, y: -0.01738714, z: -0.8378584, w: 7.787007} + outSlope: {x: 6.7472486, y: -0.01738714, z: -0.8378584, w: 7.787007} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: -0.63176, y: 0.027073637, z: -0.015345692, w: 0.7745391} + inSlope: {x: 8.405299, y: -0.07074764, z: -0.5490974, w: 6.5931044} + outSlope: {x: 8.405299, y: -0.07074764, z: -0.5490974, w: 6.5931044} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: -0.29631498, y: 0.022936698, z: -0.024023572, w: 0.95451254} + inSlope: {x: 8.402411, y: -0.44561622, z: -0.34049138, w: 3.3324754} + outSlope: {x: 8.402411, y: -0.44561622, z: -0.34049138, w: 3.3324754} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: -0.07159915, y: -0.0026341146, z: -0.03804512, w: 0.99670416} + inSlope: {x: 3.7321677, y: -0.21788076, z: -0.41528642, w: 0.64475644} + outSlope: {x: 3.7321677, y: -0.21788076, z: -0.41528642, w: 0.64475644} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: -0.04750375, y: 0.008411311, z: -0.051709335, w: 0.9974963} + inSlope: {x: -1.3990667, y: -0.116230875, z: 0.23068757, w: -0.16055973} + outSlope: {x: -1.3990667, y: -0.116230875, z: 0.23068757, w: -0.16055973} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.16487026, y: -0.010382838, z: -0.022665948, w: 0.9860002} + inSlope: {x: -4.661033, y: -0.2304311, z: 0.6159999, w: -0.95929533} + outSlope: {x: -4.661033, y: -0.2304311, z: 0.6159999, w: -0.95929533} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: -0.35823935, y: -0.006950758, z: -0.010642672, w: 0.93354326} + inSlope: {x: -4.576586, y: -0.036744054, z: 0.45935225, w: -1.5517516} + outSlope: {x: -4.576586, y: -0.036744054, z: 0.45935225, w: -1.5517516} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: -0.46997604, y: -0.0128324395, z: 0.007957538, w: 0.88255006} + inSlope: {x: -1.1642268, y: -0.008117281, z: 0.09746298, w: -0.5035025} + outSlope: {x: -1.1642268, y: -0.008117281, z: 0.09746298, w: -0.5035025} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.43585446, y: -0.00749191, z: -0.0041451408, w: 0.89997643} + inSlope: {x: 0.7323679, y: 0.8281601, z: -1.4477537, w: 0.2866656} + outSlope: {x: 0.7323679, y: 0.8281601, z: -1.4477537, w: 0.2866656} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: -0.42115152, y: 0.042378232, z: -0.08855936, w: 0.9016611} + inSlope: {x: -1.2946223, y: 1.5006249, z: -1.8466812, w: -0.9265826} + outSlope: {x: -1.2946223, y: 1.5006249, z: -1.8466812, w: -0.9265826} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.5221626, y: 0.09254974, z: -0.12725721, w: 0.83820426} + inSlope: {x: -3.4848585, y: 0.11971927, z: 0.36933172, w: -2.2365236} + outSlope: {x: -3.4848585, y: 0.11971927, z: 0.36933172, w: -2.2365236} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: -0.6534754, y: 0.050359514, z: -0.06393725, w: 0.75255954} + inSlope: {x: -3.790196, y: -0.6556888, z: 1.3433499, w: -3.136015} + outSlope: {x: -3.790196, y: -0.6556888, z: 1.3433499, w: -3.136015} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: -0.77484244, y: 0.048837155, z: -0.037700534, w: 0.6291365} + inSlope: {x: -3.2200828, y: -0.11829932, z: 0.82448506, w: -3.8723323} + outSlope: {x: -3.2200828, y: -0.11829932, z: 0.82448506, w: -3.8723323} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: -0.8681477, y: 0.04247289, z: -0.008971552, w: 0.49440396} + inSlope: {x: -2.0645287, y: -0.2654407, z: 0.84464204, w: -3.3243227} + outSlope: {x: -2.0645287, y: -0.2654407, z: 0.84464204, w: -3.3243227} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: -0.9124777, y: 0.03114111, z: 0.018608937, w: 0.407515} + inSlope: {x: 0.17133665, y: -0.2018848, z: 0.33533424, w: 0.30567765} + outSlope: {x: 0.17133665, y: -0.2018848, z: 0.33533424, w: 0.30567765} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.8567253, y: 0.029013908, z: 0.013384069, w: 0.51478237} + inSlope: {x: 1.6725734, y: -0.06381613, z: -0.15674618, w: 3.2180245} + outSlope: {x: 1.6725734, y: -0.06381613, z: -0.15674618, w: 3.2180245} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.17820795, y: -0.10978396, z: 0.002313765, w: 0.9778467} + inSlope: {x: 5.9253263, y: 1.14031, z: -0.7534145, w: -1.6253363} + outSlope: {x: 5.9253263, y: 1.14031, z: -0.7534145, w: -1.6253363} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.37571883, y: -0.071773626, z: -0.022800054, w: 0.9236688} + inSlope: {x: 4.0486965, y: 0.99047315, z: -0.5311343, w: -1.2833797} + outSlope: {x: 4.0486965, y: 0.99047315, z: -0.5311343, w: -1.2833797} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: 0.44812104, y: -0.043752417, z: -0.033095192, w: 0.892288} + inSlope: {x: 0.52942073, y: 0.47817224, z: -0.495175, w: -0.21936983} + outSlope: {x: 0.52942073, y: 0.47817224, z: -0.495175, w: -0.21936983} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: 0.41101354, y: -0.039895475, z: -0.055811726, w: 0.90904415} + inSlope: {x: -0.20864803, y: -0.12570739, z: 0.7281722, w: 0.10320778} + outSlope: {x: -0.20864803, y: -0.12570739, z: 0.7281722, w: 0.10320778} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.43421116, y: -0.05213291, z: 0.015449613, w: 0.89916855} + inSlope: {x: 0.34542787, y: -0.48919973, z: 0.7739619, w: -0.1662621} + outSlope: {x: 0.34542787, y: -0.48919973, z: 0.7739619, w: -0.1662621} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.43404207, y: -0.07250879, z: -0.0042142705, w: 0.89796} + inSlope: {x: 1.2030708, y: -0.5877029, z: -0.2903935, w: -0.69768256} + outSlope: {x: 1.2030708, y: -0.5877029, z: -0.2903935, w: -0.69768256} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: 0.5144159, y: -0.09131311, z: -0.003909954, w: 0.85265636} + inSlope: {x: 3.4807777, y: -0.13447645, z: 0.04028249, w: -2.3483534} + outSlope: {x: 3.4807777, y: -0.13447645, z: 0.04028249, w: -2.3483534} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: 0.66609395, y: -0.081473894, z: -0.0015287712, w: 0.7414031} + inSlope: {x: 3.5691328, y: 0.48325077, z: 0.35954404, w: -2.952971} + outSlope: {x: 3.5691328, y: 0.48325077, z: 0.35954404, w: -2.952971} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.7523581, y: -0.059096392, z: 0.020059645, w: 0.65579164} + inSlope: {x: 1.489252, y: 0.8595182, z: 0.9188167, w: -1.5158219} + outSlope: {x: 1.489252, y: 0.8595182, z: 0.9188167, w: -1.5158219} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: 0.7653774, y: -0.024172686, z: 0.059725672, w: 0.6403483} + inSlope: {x: -1.8601379, y: 0.47026843, z: 0.9921719, w: 1.7527655} + outSlope: {x: -1.8601379, y: 0.47026843, z: 0.9921719, w: 1.7527655} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.6283489, y: -0.027745165, z: 0.08620443, w: 0.7726427} + inSlope: {x: -3.5231023, y: -1.0097938, z: -1.115665, w: 3.0338225} + outSlope: {x: -3.5231023, y: -1.0097938, z: -1.115665, w: 3.0338225} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: 0.5305039, y: -0.091492265, z: -0.014651984, w: 0.84260315} + inSlope: {x: -0.8926603, y: -1.3897536, z: -1.7109904, w: 0.60704607} + outSlope: {x: -0.8926603, y: -1.3897536, z: -1.7109904, w: 0.60704607} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.56883824, y: -0.12039542, z: -0.027861597, w: 0.8131124} + inSlope: {x: 1.1628132, y: -0.48630136, z: -0.40792903, w: -0.89298034} + outSlope: {x: 1.1628132, y: -0.48630136, z: -0.40792903, w: -0.89298034} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: 0.60802484, y: -0.12391238, z: -0.041847263, w: 0.7830711} + inSlope: {x: -1.6129584, y: -0.272584, z: -0.27904382, w: 0.9301168} + outSlope: {x: -1.6129584, y: -0.272584, z: -0.27904382, w: 0.9301168} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: 0.46130767, y: -0.13856769, z: -0.046464518, w: 0.87512016} + inSlope: {x: -6.5014944, y: -0.23653935, z: 0.048257858, w: 2.86269} + outSlope: {x: -6.5014944, y: -0.23653935, z: 0.048257858, w: 2.86269} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.17459215, y: -0.13968167, z: -0.03863008, w: 0.973917} + inSlope: {x: -8.601474, y: -0.033419464, z: 0.23503338, w: 2.9639082} + outSlope: {x: -8.601474, y: -0.033419464, z: 0.23503338, w: 2.9639082} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.07231065, y: 0.08750975, z: -0.08527798, w: 0.9898691} + inSlope: {x: 5.336495, y: -0.35094154, z: -0.82839954, w: -0.93811685} + outSlope: {x: 5.336495, y: -0.35094154, z: -0.82839954, w: -0.93811685} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.25019383, y: 0.0758117, z: -0.1128913, w: 0.95859855} + inSlope: {x: 1.2982844, y: 0.32058343, z: -0.15240186, w: -0.19864258} + outSlope: {x: 1.2982844, y: 0.32058343, z: -0.15240186, w: -0.19864258} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: 0.15886296, y: 0.10888198, z: -0.09543811, w: 0.9766263} + inSlope: {x: -1.401585, y: 0.5615031, z: 0.28059325, w: 0.26990712} + outSlope: {x: -1.401585, y: 0.5615031, z: 0.28059325, w: 0.26990712} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: 0.15675484, y: 0.11324524, z: -0.094185084, w: 0.97659236} + inSlope: {x: 1.5203143, y: -0.3057904, z: -0.13665186, w: -0.31261775} + outSlope: {x: 1.5203143, y: -0.3057904, z: -0.13665186, w: -0.31261775} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.26021725, y: 0.088495955, z: -0.10454823, w: 0.9557851} + inSlope: {x: 0.8281882, y: -0.7683842, z: -0.2900095, w: -0.11871727} + outSlope: {x: 0.8281882, y: -0.7683842, z: -0.2900095, w: -0.11871727} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.21196738, y: 0.06201963, z: -0.11351905, w: 0.9686779} + inSlope: {x: -1.0170665, y: -0.48062795, z: -0.15300047, w: 0.25740713} + outSlope: {x: -1.0170665, y: -0.48062795, z: -0.15300047, w: 0.25740713} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: 0.19239028, y: 0.05644865, z: -0.11475037, w: 0.9729501} + inSlope: {x: -0.00004425645, y: -0.000015143305, z: 0.00001128763, w: 0.000011622909} + outSlope: {x: -0.00004425645, y: -0.000015143305, z: 0.00001128763, w: 0.000011622909} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.19240986, y: 0.056453083, z: -0.11474751, w: 0.97294635} + inSlope: {x: 2.413635, y: 0.2923118, z: -0.07520669, w: -0.72375304} + outSlope: {x: 2.413635, y: 0.2923118, z: -0.07520669, w: -0.72375304} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: 0.35329926, y: 0.0759361, z: -0.11976415, w: 0.9246999} + inSlope: {x: 5.427553, y: 1.2247854, z: -0.10396265, w: -2.4180017} + outSlope: {x: 5.427553, y: 1.2247854, z: -0.10396265, w: -2.4180017} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.5542467, y: 0.13810544, z: -0.12167835, w: 0.81174624} + inSlope: {x: 4.0200434, y: 0.3222934, z: 0.013541134, w: -2.345221} + outSlope: {x: 4.0200434, y: 0.3222934, z: 0.013541134, w: -2.345221} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: 0.6213021, y: 0.097422324, z: -0.11886141, w: 0.76835185} + inSlope: {x: -5.112473, y: -1.3247933, z: 0.09922783, w: 2.3570619} + outSlope: {x: -5.112473, y: -1.3247933, z: 0.09922783, w: 2.3570619} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.21341486, y: 0.04978585, z: -0.11506316, w: 0.9688839} + inSlope: {x: -6.4598637, y: -0.702461, z: 0.11149413, w: 3.0847425} + outSlope: {x: -6.4598637, y: -0.702461, z: 0.11149413, w: 3.0847425} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: 0.19064425, y: 0.05059155, z: -0.11142846, w: 0.9740015} + inSlope: {x: -0.46288517, y: 0.27363858, z: 0.16092943, w: 0.0958559} + outSlope: {x: -0.46288517, y: 0.27363858, z: 0.16092943, w: 0.0958559} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: 0.18255585, y: 0.06802842, z: -0.10433453, w: 0.97527426} + inSlope: {x: -1.7750245, y: 0.5537623, z: 0.39226675, w: 0.23801765} + outSlope: {x: -1.7750245, y: 0.5537623, z: 0.39226675, w: 0.23801765} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.07230939, y: 0.08750902, z: -0.08527736, w: 0.98986936} + inSlope: {x: -3.3073971, y: 0.5844186, z: 0.57171565, w: 0.43785316} + outSlope: {x: -3.3073971, y: 0.5844186, z: 0.57171565, w: 0.43785316} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot/mixamorig:LeftToeBase + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.04573715, y: 0.039433047, z: 0.0727525, w: 0.99552006} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.04573715, y: 0.039433047, z: 0.0727525, w: 0.99552006} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot/mixamorig:LeftToeBase/mixamorig:LeftToe_End + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.12609531, y: 0.1817495, z: 0.9752267, w: 0.00011491764} + inSlope: {x: 0.69931847, y: -7.636552, z: 0.28809246, w: 1.49297} + outSlope: {x: 0.69931847, y: -7.636552, z: 0.28809246, w: 1.49297} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.14940593, y: -0.072802246, z: 0.9848298, w: 0.049880587} + inSlope: {x: 1.0459168, y: -4.9603586, z: -0.14369129, w: 1.2528377} + outSlope: {x: 1.0459168, y: -4.9603586, z: -0.14369129, w: 1.2528377} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: 0.1958231, y: -0.1489411, z: 0.9656473, w: 0.08363743} + inSlope: {x: 0.7561287, y: -1.8245261, z: -0.42980605, w: 0.59307706} + outSlope: {x: 0.7561287, y: -1.8245261, z: -0.42980605, w: 0.59307706} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: 0.19981451, y: -0.19443733, z: 0.95617604, w: 0.08941906} + inSlope: {x: 0.09161978, y: -0.9467282, z: -0.21933135, w: 0.23089853} + outSlope: {x: 0.09161978, y: -0.9467282, z: -0.21933135, w: 0.23089853} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.20193109, y: -0.21205632, z: 0.9510252, w: 0.099030666} + inSlope: {x: 0.10655077, y: 1.1191038, z: 0.1491049, w: 0.11648075} + outSlope: {x: 0.10655077, y: 1.1191038, z: 0.1491049, w: 0.11648075} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.2069179, y: -0.119830415, z: 0.96611637, w: 0.09718444} + inSlope: {x: -0.14990813, y: 4.4178276, z: 0.3890016, w: -0.82965827} + outSlope: {x: -0.14990813, y: 4.4178276, z: 0.3890016, w: -0.82965827} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: 0.19193721, y: 0.08246561, z: 0.97695863, w: 0.043720096} + inSlope: {x: -0.5003602, y: 7.0132475, z: -0.67848724, w: -1.9178358} + outSlope: {x: -0.5003602, y: 7.0132475, z: -0.67848724, w: -1.9178358} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: 0.17356054, y: 0.34771952, z: 0.9208839, w: -0.030671297} + inSlope: {x: -0.4370948, y: 6.4797, z: -2.036892, w: -1.1930208} + outSlope: {x: -0.4370948, y: 6.4797, z: -2.036892, w: -1.1930208} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.16279756, y: 0.5144456, z: 0.84116584, w: -0.035814624} + inSlope: {x: -0.6381597, y: 3.7854686, z: -1.9840043, w: 0.03130085} + outSlope: {x: -0.6381597, y: 3.7854686, z: -1.9840043, w: 0.03130085} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: 0.13101657, y: 0.60008407, z: 0.78861696, w: -0.028584573} + inSlope: {x: -0.6422208, y: 0.9778271, z: -0.5288744, w: 0.35878664} + outSlope: {x: -0.6422208, y: 0.9778271, z: -0.5288744, w: 0.35878664} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.11998284, y: 0.5796341, z: 0.80590755, w: -0.011895517} + inSlope: {x: -0.9830934, y: -1.8545822, z: 1.3214842, w: 0.293037} + outSlope: {x: -0.9830934, y: -1.8545822, z: 1.3214842, w: 0.293037} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: 0.06547701, y: 0.47644526, z: 0.8767159, w: -0.009048775} + inSlope: {x: -1.3114405, y: -2.3067644, z: 1.474486, w: 0.20294914} + outSlope: {x: -1.3114405, y: -2.3067644, z: 1.474486, w: 0.20294914} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.032553453, y: 0.42584974, z: 0.90420663, w: 0.0016344347} + inSlope: {x: -0.1841658, y: -0.76820236, z: 0.4014995, w: 0.25867885} + outSlope: {x: -0.1841658, y: -0.76820236, z: 0.4014995, w: 0.25867885} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: 0.053199265, y: 0.42523172, z: 0.90348256, w: 0.008196491} + inSlope: {x: 0.07289222, y: -1.3409728, z: 0.5508748, w: 0.07984841} + outSlope: {x: 0.07289222, y: -1.3409728, z: 0.5508748, w: 0.07984841} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: 0.037412934, y: 0.33645156, z: 0.9409316, w: 0.0069576614} + inSlope: {x: -0.047938287, y: -3.6447816, z: 1.1695726, w: 0.35936907} + outSlope: {x: -0.047938287, y: -3.6447816, z: 1.1695726, w: 0.35936907} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.05000337, y: 0.18224643, z: 0.981454, w: 0.032154404} + inSlope: {x: 0.37771338, y: -4.626158, z: 1.2156731, w: 0.755903} + outSlope: {x: 0.37771338, y: -4.626158, z: 1.2156731, w: 0.755903} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.5302907, y: -0.030225318, z: 0.07456611, w: 0.8439894} + inSlope: {x: 8.240704, y: -0.9197178, z: 0.32925478, w: 3.5122452} + outSlope: {x: 8.240704, y: -0.9197178, z: 0.32925478, w: 3.5122452} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: -0.2556006, y: -0.06088258, z: 0.08554127, w: 0.9610642} + inSlope: {x: 3.3240933, y: -0.58359605, z: 0.28505823, w: 1.5005045} + outSlope: {x: 3.3240933, y: -0.58359605, z: 0.28505823, w: 1.5005045} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: -0.3086845, y: -0.069131725, z: 0.093569994, w: 0.944023} + inSlope: {x: -0.6538023, y: 0.48186845, z: -0.30018538, w: -0.14335604} + outSlope: {x: -0.6538023, y: 0.48186845, z: -0.30018538, w: -0.14335604} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: -0.29918742, y: -0.02875801, z: 0.06552891, w: 0.95150715} + inSlope: {x: -1.9872847, y: 1.0730394, z: -0.7030413, w: -0.71728} + outSlope: {x: -1.9872847, y: 1.0730394, z: -0.7030413, w: -0.71728} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: -0.44117013, y: 0.0024042425, z: 0.046700567, w: 0.89620435} + inSlope: {x: -5.0327196, y: 0.2124174, z: -0.18960083, w: -2.7105055} + outSlope: {x: -5.0327196, y: 0.2124174, z: -0.18960083, w: -2.7105055} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.634702, y: -0.014596851, z: 0.05288885, w: 0.7708068} + inSlope: {x: -5.030657, y: -0.46602726, z: 0.22830752, w: -4.047765} + outSlope: {x: -5.030657, y: -0.46602726, z: 0.22830752, w: -4.047765} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: -0.7765473, y: -0.028664246, z: 0.06192107, w: 0.6263533} + inSlope: {x: -2.3091943, y: -0.23707199, z: 0.1846531, w: -2.4027793} + outSlope: {x: -2.3091943, y: -0.23707199, z: 0.1846531, w: -2.4027793} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: -0.78864837, y: -0.030401655, z: 0.06519906, w: 0.61062145} + inSlope: {x: 1.096294, y: -0.027697638, z: 0.16330615, w: 1.1997405} + outSlope: {x: 1.096294, y: -0.027697638, z: 0.16330615, w: 1.1997405} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.70346105, y: -0.030510755, z: 0.07280815, w: 0.706336} + inSlope: {x: 2.9181228, y: -0.22544052, z: 0.503315, w: 2.7957902} + outSlope: {x: 2.9181228, y: -0.22544052, z: 0.503315, w: 2.7957902} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: -0.59410685, y: -0.04543102, z: 0.09875339, w: 0.79700744} + inSlope: {x: 3.967774, y: -0.102325365, z: 0.37055826, w: 2.7913733} + outSlope: {x: 3.967774, y: -0.102325365, z: 0.37055826, w: 2.7913733} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.4389428, y: -0.037332445, z: 0.09751203, w: 0.89242756} + inSlope: {x: 4.618981, y: 0.16202152, z: -0.18435673, w: 2.3494866} + outSlope: {x: 4.618981, y: 0.16202152, z: -0.18435673, w: 2.3494866} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: -0.2861748, y: -0.034629587, z: 0.086462945, w: 0.95363986} + inSlope: {x: 2.5436385, y: 0.30436355, z: -0.35692933, w: 1.0144999} + outSlope: {x: 2.5436385, y: 0.30436355, z: -0.35692933, w: 1.0144999} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: -0.2693669, y: -0.017041527, z: 0.07371673, w: 0.9600609} + inSlope: {x: -2.874307, y: 0.56090796, z: -0.41679913, w: -1.157022} + outSlope: {x: -2.874307, y: 0.56090796, z: -0.41679913, w: -1.157022} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: -0.47779524, y: 0.002764292, z: 0.058676325, w: 0.8765051} + inSlope: {x: -4.3211155, y: -0.19940001, z: 0.06412938, w: -2.011092} + outSlope: {x: -4.3211155, y: -0.19940001, z: 0.06412938, w: -2.011092} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: -0.55744123, y: -0.030334862, z: 0.07799202, w: 0.8259881} + inSlope: {x: -0.6992864, y: -1.1493424, z: 0.7986977, w: -0.53501296} + outSlope: {x: -0.6992864, y: -1.1493424, z: 0.7986977, w: -0.53501296} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.52441436, y: -0.07385849, z: 0.11192281, w: 0.84083754} + inSlope: {x: 0.9908072, y: -1.3057102, z: 1.0179245, w: 0.44548315} + outSlope: {x: 0.9908072, y: -1.3057102, z: 1.0179245, w: 0.44548315} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.822332, y: 0.004928075, z: 0.03171645, w: 0.56810206} + inSlope: {x: -0.21422802, y: 0.045442306, z: 0.1226421, w: 0.29839215} + outSlope: {x: -0.21422802, y: 0.045442306, z: 0.1226421, w: 0.29839215} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.8151911, y: 0.0064428183, z: 0.03580452, w: 0.57804847} + inSlope: {x: -1.3990169, y: 0.08306052, z: -0.034732737, w: 1.7344708} + outSlope: {x: -1.3990169, y: 0.08306052, z: -0.034732737, w: 1.7344708} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: 0.7290642, y: 0.010465443, z: 0.029400935, w: 0.68373346} + inSlope: {x: -4.081316, y: -0.25382465, z: -0.33709705, w: 3.9216924} + outSlope: {x: -4.081316, y: -0.25382465, z: -0.33709705, w: 3.9216924} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: 0.54310334, y: -0.010478827, z: 0.013331381, w: 0.83949465} + inSlope: {x: -3.8103085, y: -0.26625335, z: -0.6080533, w: 2.9419217} + outSlope: {x: -3.8103085, y: -0.26625335, z: -0.6080533, w: 2.9419217} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.47504365, y: -0.0072847824, z: -0.0111359535, w: 0.8798616} + inSlope: {x: 0.18599415, y: 0.13006371, z: -0.47838122, w: -0.12283802} + outSlope: {x: 0.18599415, y: 0.13006371, z: -0.47838122, w: -0.12283802} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.55550295, y: -0.001807914, z: -0.0185607, w: 0.83130544} + inSlope: {x: 2.7862077, y: -0.38427484, z: -0.21656819, w: -1.9567391} + outSlope: {x: 2.7862077, y: -0.38427484, z: -0.21656819, w: -1.9567391} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: 0.66079086, y: -0.032903116, z: -0.025573835, w: 0.7494123} + inSlope: {x: 1.0631752, y: -0.271227, z: 0.22810712, w: -0.7807441} + outSlope: {x: 1.0631752, y: -0.271227, z: 0.22810712, w: -0.7807441} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: 0.62638134, y: -0.019889725, z: -0.0033535631, w: 0.7792558} + inSlope: {x: -2.4278312, y: 0.2737859, z: 0.5711833, w: 1.7551912} + outSlope: {x: -2.4278312, y: 0.2737859, z: 0.5711833, w: 1.7551912} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.49893546, y: -0.014650726, z: 0.012505052, w: 0.86642504} + inSlope: {x: -4.0146327, y: -0.07841858, z: 0.24189897, w: 2.3063493} + outSlope: {x: -4.0146327, y: -0.07841858, z: 0.24189897, w: 2.3063493} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: 0.35873917, y: -0.02511763, z: 0.012773034, w: 0.9330124} + inSlope: {x: -1.3705897, y: -0.07458192, z: 0.14598294, w: 0.6940565} + outSlope: {x: -1.3705897, y: -0.07458192, z: 0.14598294, w: 0.6940565} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.40756282, y: -0.019622853, z: 0.022237247, w: 0.91269547} + inSlope: {x: 4.2057037, y: -0.5718863, z: -0.027131736, w: -2.4988196} + outSlope: {x: 4.2057037, y: -0.5718863, z: -0.027131736, w: -2.4988196} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: 0.6391194, y: -0.06324338, z: 0.010964252, w: 0.7664245} + inSlope: {x: 1.938876, y: -0.16413322, z: 0.1382363, w: -1.0521021} + outSlope: {x: 1.938876, y: -0.16413322, z: 0.1382363, w: -1.0521021} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.5368211, y: -0.03056504, z: 0.031453017, w: 0.8425554} + inSlope: {x: -0.53021944, y: 0.7730576, z: 0.29262727, w: 0.4509651} + outSlope: {x: -0.53021944, y: 0.7730576, z: 0.29262727, w: 0.4509651} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: 0.6037713, y: -0.011706182, z: 0.030472754, w: 0.7964889} + inSlope: {x: 2.9882135, y: 0.030698717, z: -0.11018487, w: -2.4996445} + outSlope: {x: 2.9882135, y: 0.030698717, z: -0.11018487, w: -2.4996445} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: 0.73603535, y: -0.028518457, z: 0.02410736, w: 0.67591244} + inSlope: {x: 3.1584964, y: -0.4803632, z: -0.24346514, w: -3.2688398} + outSlope: {x: 3.1584964, y: -0.4803632, z: -0.24346514, w: -3.2688398} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.8143377, y: -0.04373038, z: 0.014241754, w: 0.5785663} + inSlope: {x: 2.349072, y: -0.45635808, z: -0.29596844, w: -2.9203866} + outSlope: {x: 2.349072, y: -0.45635808, z: -0.29596844, w: -2.9203866} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.20857708, y: -0.027641065, z: 0.13284601, w: 0.96854717} + inSlope: {x: -0.0000031292436, y: -0.0000013411044, z: 0.0000102818, w: -0.0000017881392} + outSlope: {x: -0.0000031292436, y: -0.0000013411044, z: 0.0000102818, w: -0.0000017881392} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.20857698, y: -0.02764111, z: 0.13284636, w: 0.9685471} + inSlope: {x: 3.8274853, y: -0.7977524, z: 0.17937405, w: -1.4735384} + outSlope: {x: 3.8274853, y: -0.7977524, z: 0.17937405, w: -1.4735384} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: 0.4637428, y: -0.08082456, z: 0.14480428, w: 0.87031126} + inSlope: {x: 7.3327956, y: -1.1155264, z: 0.13858011, w: -4.1035056} + outSlope: {x: 7.3327956, y: -1.1155264, z: 0.13858011, w: -4.1035056} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: 0.6974301, y: -0.10200955, z: 0.14208503, w: 0.69498} + inSlope: {x: 2.4298472, y: 0.23264694, z: 0.051479653, w: -1.609181} + outSlope: {x: 2.4298472, y: 0.23264694, z: 0.051479653, w: -1.609181} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.62573266, y: -0.06531477, z: 0.14823626, w: 0.7630325} + inSlope: {x: -4.344112, y: 0.43537483, z: 0.017584562, w: 3.0572152} + outSlope: {x: -4.344112, y: 0.43537483, z: 0.017584562, w: 3.0572152} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.40782264, y: -0.07298456, z: 0.14325733, w: 0.89879435} + inSlope: {x: -0.022684813, y: -0.0060360283, z: -0.28578684, w: 0.069803596} + outSlope: {x: -0.022684813, y: -0.0060360283, z: -0.28578684, w: 0.069803596} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: 0.62422043, y: -0.06571717, z: 0.1291838, w: 0.767686} + inSlope: {x: 2.1130052, y: -0.56793064, z: -0.30896103, w: -1.1891682} + outSlope: {x: 2.1130052, y: -0.56793064, z: -0.30896103, w: -1.1891682} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: 0.5486897, y: -0.1108466, z: 0.12265993, w: 0.8195164} + inSlope: {x: -2.8134766, y: -0.54980123, z: -0.18127319, w: 1.7759309} + outSlope: {x: -2.8134766, y: -0.54980123, z: -0.18127319, w: 1.7759309} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.43665534, y: -0.10237058, z: 0.11709892, w: 0.8860814} + inSlope: {x: -3.2762628, y: 0.68794966, z: -0.12156834, w: 1.7270352} + outSlope: {x: -3.2762628, y: 0.68794966, z: -0.12156834, w: 1.7270352} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: 0.33027223, y: -0.06498329, z: 0.114555374, w: 0.9346521} + inSlope: {x: -3.8569198, y: 0.6943645, z: -0.13589525, w: 1.3516725} + outSlope: {x: -3.8569198, y: 0.6943645, z: -0.13589525, w: 1.3516725} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.17952737, y: -0.05607962, z: 0.10803924, w: 0.9761929} + inSlope: {x: -2.0796955, y: 0.3463698, z: 0.04748282, w: 0.58244264} + outSlope: {x: -2.0796955, y: 0.3463698, z: 0.04748282, w: 0.58244264} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: 0.19162588, y: -0.041891973, z: 0.117720895, w: 0.9734816} + inSlope: {x: 0.37399256, y: 0.38910097, z: 0.31403524, w: -0.09480263} + outSlope: {x: 0.37399256, y: 0.38910097, z: 0.31403524, w: -0.09480263} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: 0.20857705, y: -0.02764098, z: 0.13284579, w: 0.96854717} + inSlope: {x: 0.061753172, y: 0.03747985, z: 0.058057535, w: -0.019882323} + outSlope: {x: 0.061753172, y: 0.03747985, z: 0.058057535, w: -0.019882323} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.20857705, y: -0.027640635, z: 0.13284501, w: 0.9685473} + inSlope: {x: -0.0000013411058, y: 0.0000075995995, z: -0.000012516987, w: 0.000001788141} + outSlope: {x: -0.0000013411058, y: 0.0000075995995, z: -0.000012516987, w: 0.000001788141} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot/mixamorig:RightToeBase + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.04573715, y: -0.039433047, z: -0.0727525, w: 0.99552006} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.04573715, y: -0.039433047, z: -0.0727525, w: 0.99552006} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot/mixamorig:RightToeBase/mixamorig:RightToe_End + m_CompressedRotationCurves: [] + m_EulerCurves: [] + m_PositionCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.0005299604, y: 0.016006278, z: 0.00044596422} + inSlope: {x: 0.0106537985, y: 0.0065226504, z: -0.009054286} + outSlope: {x: 0.0106537985, y: 0.0065226504, z: -0.009054286} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: -0.00017483355, y: 0.016223695, z: 0.00014415443} + inSlope: {x: 0.014631976, y: 0.0026728723, z: -0.008681422} + outSlope: {x: 0.014631978, y: 0.0026725614, z: -0.008681423} + tangentMode: 0 + weightedMode: 0 + 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.00044550493, y: 0.016184457, z: -0.00013279739} + inSlope: {x: 0.011152376, y: -0.007659647, z: -0.0061619463} + outSlope: {x: 0.011152383, y: -0.007659634, z: -0.0061619463} + tangentMode: 0 + weightedMode: 0 + 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.00056865835, y: 0.015713047, z: -0.00026664205} + inSlope: {x: 0.00087323197, y: -0.011582641, z: -0.0043510813} + outSlope: {x: 0.00087323575, y: -0.011582926, z: -0.004351075} + tangentMode: 0 + weightedMode: 0 + 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.00050372054, y: 0.015412274, z: -0.00042286946} + inSlope: {x: -0.004615494, y: -0.0056384713, z: -0.004599384} + outSlope: {x: -0.0046155197, y: -0.0056384047, z: -0.0045993975} + tangentMode: 0 + weightedMode: 0 + 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.00026095874, y: 0.015337153, z: -0.00057326775} + inSlope: {x: -0.005386144, y: -0.00069803145, z: -0.0017582569} + outSlope: {x: -0.0053861244, y: -0.0006980248, z: -0.0017582392} + tangentMode: 0 + weightedMode: 0 + 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.00014464612, y: 0.015365743, z: -0.00054008554} + inSlope: {x: -0.006020444, y: 0.007685113, z: 0.0006282244} + outSlope: {x: -0.0060204566, y: 0.0076854005, z: 0.0006282132} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.23333333 + value: {x: -0.00014040354, y: 0.015849499, z: -0.00053138635} + inSlope: {x: -0.0070382496, y: 0.016418332, z: 0.0013870123} + outSlope: {x: -0.0070382105, y: 0.016418315, z: 0.0013870158} + tangentMode: 0 + weightedMode: 0 + 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.00032456891, y: 0.016460294, z: -0.00044761773} + inSlope: {x: 0.0016545005, y: 0.013231513, z: 0.0054452494} + outSlope: {x: 0.0016544473, y: 0.013231624, z: 0.0054452335} + tangentMode: 0 + weightedMode: 0 + 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.000030105326, y: 0.016731601, z: -0.00016836941} + inSlope: {x: 0.006159364, y: 0.005850185, z: 0.009325541} + outSlope: {x: 0.0061594225, y: 0.0058500236, z: 0.009325576} + tangentMode: 0 + weightedMode: 0 + 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.00008605941, y: 0.016850296, z: 0.00017408837} + inSlope: {x: 0.002413694, y: 0.001825007, z: 0.008531387} + outSlope: {x: 0.0024137003, y: 0.0018248914, z: 0.008531415} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: 0.0001308082, y: 0.01685326, z: 0.00040039213} + inSlope: {x: 0.004309297, y: -0.008108478, z: 0.0063578486} + outSlope: {x: 0.0043092705, y: -0.0081083635, z: 0.0063578477} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.4 + value: {x: 0.00037334618, y: 0.016309734, z: 0.00059794646} + inSlope: {x: -0.000051784613, y: -0.015381662, z: 0.004594131} + outSlope: {x: -0.000051732033, y: -0.015381511, z: 0.004594146} + tangentMode: 0 + weightedMode: 0 + 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.00012735793, y: 0.01582782, z: 0.0007066695} + inSlope: {x: -0.010017395, y: -0.0056666355, z: 0.000948944} + outSlope: {x: -0.010017386, y: -0.005667019, z: 0.0009489527} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.46666667 + value: {x: -0.00029448178, y: 0.015931945, z: 0.00066121004} + inSlope: {x: -0.009895526, y: 0.0026118956, z: -0.0039049303} + outSlope: {x: -0.009895523, y: 0.0026120117, z: -0.00390491} + tangentMode: 0 + weightedMode: 0 + 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.00053234614, y: 0.016001957, z: 0.00044634021} + inSlope: {x: -0.0071359025, y: 0.0021004335, z: -0.006446074} + outSlope: {x: -0.0071359025, y: 0.0021004335, z: -0.006446074} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips + m_ScaleCurves: [] + m_FloatCurves: [] + m_PPtrCurves: [] + m_SampleRate: 30 + 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: 0.5 + 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/Jammo-Character/Animations/Mixamo-Gun/Rifle Run Right.anim.meta b/Assets/Jammo-Character/Animations/Mixamo-Gun/Rifle Run Right.anim.meta new file mode 100644 index 0000000..7e125f0 --- /dev/null +++ b/Assets/Jammo-Character/Animations/Mixamo-Gun/Rifle Run Right.anim.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: bd66bd1e564e11b4a8c6fed735b5aa10 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 7400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Jammo-Character/Animations/Mixamo-Gun/Rifle Walk Forward.anim b/Assets/Jammo-Character/Animations/Mixamo-Gun/Rifle Walk Forward.anim new file mode 100644 index 0000000..053f94f --- /dev/null +++ b/Assets/Jammo-Character/Animations/Mixamo-Gun/Rifle Walk Forward.anim @@ -0,0 +1,35629 @@ +%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: Rifle Walk Forward + 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, 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.033333335 + 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: jammo_mixamo_rig + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.019772055, y: 0.34449154, z: 0.042665917, w: 0.9376109} + inSlope: {x: 0.09346358, y: 0.32542345, z: -0.08775975, w: -0.11601447} + outSlope: {x: 0.09346358, y: 0.32542345, z: -0.08775975, w: -0.11601447} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: 0.0070663113, y: 0.41346553, z: 0.035916455, w: 0.90978366} + inSlope: {x: -0.014006419, y: -0.17791094, z: -0.015938861, w: 0.081190474} + outSlope: {x: -0.014006419, y: -0.17791094, z: -0.015938861, w: 0.081190474} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.018996725, y: 0.26862413, z: 0.034319047, w: 0.9624461} + inSlope: {x: -0.07136887, y: -0.36515507, z: -0.014445037, w: 0.10124715} + outSlope: {x: -0.07136887, y: -0.36515507, z: -0.014445037, w: 0.10124715} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7666667 + value: {x: -0.024170732, y: 0.23380217, z: 0.03117326, w: 0.9714837} + inSlope: {x: -0.017272182, y: -0.17159931, z: 0.010250388, w: 0.04144993} + outSlope: {x: -0.017272182, y: -0.17159931, z: 0.010250388, w: 0.04144993} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000001 + value: {x: -0.024024421, y: 0.23298767, z: 0.033601422, w: 0.971602} + inSlope: {x: 0.008851853, y: 0.3153181, z: 0.10187566, w: -0.08294114} + outSlope: {x: 0.008851853, y: 0.3153181, z: 0.10187566, w: -0.08294114} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.86666673 + value: {x: -0.022843499, y: 0.2732233, z: 0.04108881, w: 0.9608012} + inSlope: {x: 0.020449888, y: 0.57591903, z: 0.06950496, w: -0.16674937} + outSlope: {x: 0.020449888, y: 0.57591903, z: 0.06950496, w: -0.16674937} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.019770896, y: 0.3444916, z: 0.042669024, w: 0.9376108} + inSlope: {x: 0.028357347, y: 0.43329072, z: -0.015318558, w: -0.15412346} + outSlope: {x: 0.028357347, y: 0.43329072, z: -0.015318558, w: -0.15412346} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.100270174, y: -0.00759154, z: 0.023999555, w: 0.9946418} + inSlope: {x: -0.21884209, y: -0.180815, z: 0.07387909, w: 0.01745224} + outSlope: {x: -0.21884209, y: -0.180815, z: 0.07387909, w: 0.01745224} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: 0.06992642, y: -0.05073195, z: 0.005961632, w: 0.9962435} + inSlope: {x: 0.15821335, y: 0.081839904, z: -0.14318465, w: -0.006271005} + outSlope: {x: 0.15821335, y: 0.081839904, z: -0.14318465, w: -0.006271005} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5666667 + value: {x: 0.16541013, y: -0.0069904025, z: -0.021340959, w: 0.9859692} + inSlope: {x: 0.33411917, y: 0.1988926, z: -0.0923541, w: -0.056263804} + outSlope: {x: 0.33411917, y: 0.1988926, z: -0.0923541, w: -0.056263804} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.17374249, y: 0.032593995, z: -0.028519435, w: 0.9838383} + inSlope: {x: -0.2278552, y: 0.3098353, z: 0.07469512, w: 0.03173411} + outSlope: {x: -0.2278552, y: 0.3098353, z: 0.07469512, w: 0.03173411} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000001 + value: {x: 0.1582532, y: 0.04535259, z: -0.02116325, w: 0.9861294} + inSlope: {x: -0.20154187, y: -0.21983133, z: 0.16107413, w: 0.043509915} + outSlope: {x: -0.20154187, y: -0.21983133, z: 0.16107413, w: 0.043509915} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.86666673 + value: {x: 0.14276522, y: 0.018215075, z: -0.006345525, w: 0.9895686} + inSlope: {x: -0.28323618, y: -0.29604763, z: 0.26708847, w: 0.04768789} + outSlope: {x: -0.28323618, y: -0.29604763, z: 0.26708847, w: 0.04768789} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.10122554, y: -0.007401026, z: 0.02366368, w: 0.9945545} + inSlope: {x: -0.2460471, y: -0.08169122, z: 0.09024027, w: 0.023560546} + outSlope: {x: -0.2460471, y: -0.08169122, z: 0.09024027, w: 0.023560546} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.13790089, y: -0.10317626, z: -0.042973205, w: 0.9841196} + inSlope: {x: 0.05749404, y: -0.019300727, z: -0.008323789, w: -0.010508894} + outSlope: {x: 0.05749404, y: -0.019300727, z: -0.008323789, w: -0.010508894} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.13766722, y: -0.1045912, z: -0.03024806, w: 0.98447627} + inSlope: {x: -0.027144853, y: 0.022780785, z: -0.010793378, w: 0.005869568} + outSlope: {x: -0.027144853, y: 0.022780785, z: -0.010793378, w: 0.005869568} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6333334 + value: {x: 0.09304518, y: -0.10258585, z: -0.006107764, w: 0.9903441} + inSlope: {x: -0.081963584, y: 0.017147925, z: 0.12203787, w: 0.010463295} + outSlope: {x: -0.081963584, y: 0.017147925, z: 0.12203787, w: 0.010463295} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.90000004 + value: {x: 0.11911055, y: -0.102163576, z: -0.02989841, w: 0.98715824} + inSlope: {x: 0.20338029, y: -0.017629713, z: -0.2088491, w: -0.032638907} + outSlope: {x: 0.20338029, y: -0.017629713, z: -0.2088491, w: -0.032638907} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.13694976, y: -0.103044756, z: -0.042686604, w: 0.9842786} + inSlope: {x: 0.12745914, y: 0.0029756902, z: -0.035459395, w: -0.018659253} + outSlope: {x: 0.12745914, y: 0.0029756902, z: -0.035459395, w: -0.018659253} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.10742499, y: -0.121163204, z: -0.052161943, w: 0.985423} + inSlope: {x: 0.053135898, y: -0.021581275, z: -0.02172075, w: -0.009661316} + outSlope: {x: 0.053135898, y: -0.021581275, z: -0.02172075, w: -0.009661316} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.10973831, y: -0.12023025, z: -0.040487036, w: 0.98583114} + inSlope: {x: -0.026641604, y: 0.02212342, z: -0.003955309, w: 0.0054878} + outSlope: {x: -0.026641604, y: 0.02212342, z: -0.003955309, w: 0.0054878} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6333334 + value: {x: 0.07103735, y: -0.11353689, z: -0.0073426515, w: 0.99096376} + inSlope: {x: -0.055979803, y: 0.03902737, z: 0.13273804, w: 0.009702442} + outSlope: {x: -0.055979803, y: 0.03902737, z: 0.13273804, w: 0.009702442} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.90000004 + value: {x: 0.091655366, y: -0.1177301, z: -0.035692368, w: 0.98816246} + inSlope: {x: 0.1572749, y: -0.05915657, z: -0.24050641, w: -0.030274093} + outSlope: {x: 0.1572749, y: -0.05915657, z: -0.24050641, w: -0.030274093} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.10656081, y: -0.121252544, z: -0.051638644, w: 0.9855334} + inSlope: {x: 0.11755932, y: -0.005621245, z: -0.06257108, w: -0.016375795} + outSlope: {x: 0.11755932, y: -0.005621245, z: -0.06257108, w: -0.016375795} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.031698402, y: 0.03710341, z: -0.04702145, w: 0.9977011} + inSlope: {x: 0.040636804, y: -0.0583728, z: 0.0011510028, w: 0.0034332273} + outSlope: {x: 0.040636804, y: -0.0583728, z: 0.0011510028, w: 0.0034332273} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: -0.028613206, y: 0.03624012, z: -0.04693144, w: 0.99783033} + inSlope: {x: -0.07290488, y: 0.068066254, z: -0.0015342238, w: -0.004628599} + outSlope: {x: -0.07290488, y: 0.068066254, z: -0.0015342238, w: -0.004628599} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.90000004 + value: {x: -0.022167914, y: 0.046017926, z: -0.046531532, w: 0.99761003} + inSlope: {x: -0.0737112, y: -0.09246503, z: -0.0060176477, w: 0.0023040182} + outSlope: {x: -0.0737112, y: -0.09246503, z: -0.0060176477, w: 0.0023040182} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.03170319, y: 0.037101462, z: -0.046998642, w: 0.9977021} + inSlope: {x: -0.095542334, y: -0.081762075, z: -0.002807046, w: 0.00013589872} + outSlope: {x: -0.095542334, y: -0.081762075, z: -0.002807046, w: 0.00013589872} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.02259958, y: -0.088279866, z: 0.057703067, w: 0.99416614} + inSlope: {x: 0.15474306, y: -0.110756, z: 0.03306348, w: -0.008862019} + outSlope: {x: 0.15474306, y: -0.110756, z: 0.03306348, w: -0.008862019} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.021921083, y: -0.0927155, z: 0.055985745, w: 0.99387574} + inSlope: {x: -0.060494825, y: 0.067420684, z: 0.12022522, w: -0.0019258262} + outSlope: {x: -0.060494825, y: 0.067420684, z: 0.12022522, w: -0.0019258262} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.039238732, y: -0.066872776, z: 0.058363877, w: 0.99527985} + inSlope: {x: -0.025020821, y: 0.16391432, z: -0.19195005, w: 0.021151006} + outSlope: {x: -0.025020821, y: 0.16391432, z: -0.19195005, w: 0.021151006} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7666667 + value: {x: -0.028902654, y: -0.03602528, z: 0.025081204, w: 0.99861795} + inSlope: {x: 0.01763294, y: -0.016727358, z: 0.090051904, w: -0.0024300793} + outSlope: {x: 0.01763294, y: -0.016727358, z: 0.090051904, w: -0.0024300793} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9333334 + value: {x: -0.028201064, y: -0.07006807, z: 0.051119316, w: 0.9958323} + inSlope: {x: 0.12748519, y: -0.3287239, z: 0.1394842, w: -0.026579801} + outSlope: {x: 0.12748519, y: -0.3287239, z: 0.1394842, w: -0.026579801} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.022607395, y: -0.08827307, z: 0.05771945, w: 0.9941656} + inSlope: {x: 0.03185534, y: -0.22263116, z: 0.07543385, w: -0.02247157} + outSlope: {x: 0.03185534, y: -0.22263116, z: 0.07543385, w: -0.02247157} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.06928724, y: 0, z: -0, w: 0.99759674} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: -0.06928724, y: 0, z: -0, w: 0.99759674} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head/mixamorig:HeadTop_End + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.40506425, y: -0.45798013, z: 0.59357256, w: 0.5233056} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.40506425, y: -0.45798013, z: 0.59357256, w: 0.5233056} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head/mixamorig:LeftEar + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.40506425, y: 0.45798013, z: -0.59357256, w: 0.5233056} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.40506425, y: 0.45798013, z: -0.59357256, w: 0.5233056} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head/mixamorig:RightEar + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.557443, y: -0.35869876, z: 0.39596063, w: 0.63545865} + inSlope: {x: -0.17619072, y: -0.20995347, z: 0.2560231, w: -0.12759805} + outSlope: {x: -0.17619072, y: -0.20995347, z: 0.2560231, w: -0.12759805} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.51576555, y: -0.40461305, z: 0.44933438, w: 0.6069372} + inSlope: {x: 0.025211873, y: 0.018459858, z: -0.039609525, w: 0.020043256} + outSlope: {x: 0.025211873, y: 0.018459858, z: -0.039609525, w: 0.020043256} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6333334 + value: {x: 0.57886493, y: -0.34423363, z: 0.3655647, w: 0.6424805} + inSlope: {x: 0.15021442, y: 0.14931138, z: -0.23314339, w: 0.07878271} + outSlope: {x: 0.15021442, y: 0.14931138, z: -0.23314339, w: 0.07878271} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.90000004 + value: {x: 0.58071196, y: -0.34617198, z: 0.36842945, w: 0.63812095} + inSlope: {x: -0.18765269, y: -0.101538606, z: 0.3614027, w: -0.09247724} + outSlope: {x: -0.18765269, y: -0.101538606, z: 0.3614027, w: -0.09247724} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.55879444, y: -0.35686055, z: 0.39816198, w: 0.63392943} + inSlope: {x: -0.20993133, y: -0.10021011, z: 0.25864297, w: -0.030602247} + outSlope: {x: -0.20993133, y: -0.10021011, z: 0.25864297, w: -0.030602247} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.47588623, y: 0.38874847, z: -0.30751207, w: 0.7265282} + inSlope: {x: 0.17688988, y: -0.083199434, z: -0.19692688, w: -0.1570308} + outSlope: {x: 0.17688988, y: -0.083199434, z: -0.19692688, w: -0.1570308} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: 0.50280833, y: 0.36169168, z: -0.35669613, w: 0.69937885} + inSlope: {x: 0.07882339, y: -0.10060694, z: -0.20330244, w: -0.10667233} + outSlope: {x: 0.07882339, y: -0.10060694, z: -0.20330244, w: -0.10667233} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: 0.46024925, y: 0.38516995, z: -0.3663039, w: 0.711081} + inSlope: {x: -0.35623404, y: 0.07045136, z: -0.024749639, w: 0.17964186} + outSlope: {x: -0.35623404, y: 0.07045136, z: -0.024749639, w: 0.17964186} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6333334 + value: {x: 0.39513457, y: 0.3926204, z: -0.35250267, w: 0.7519706} + inSlope: {x: -0.22105828, y: 0.062169585, z: 0.13872647, w: 0.14975128} + outSlope: {x: -0.22105828, y: 0.062169585, z: 0.13872647, w: 0.14975128} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000001 + value: {x: 0.3929016, y: 0.40105617, z: -0.3376553, w: 0.755494} + inSlope: {x: 0.29218602, y: -0.04108876, z: 0.0025641834, w: -0.12951049} + outSlope: {x: 0.29218602, y: -0.04108876, z: 0.0025641834, w: -0.12951049} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.47354785, y: 0.3855743, z: -0.30903247, w: 0.72909796} + inSlope: {x: 0.35104606, y: -0.0727675, z: 0.28483298, w: -0.06390816} + outSlope: {x: 0.35104606, y: -0.0727675, z: 0.28483298, w: -0.06390816} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.5352366, y: 0.6444079, z: -0.28845373, w: 0.46373984} + inSlope: {x: 0.07243394, y: 0.5476141, z: 0.6315359, w: -0.48550484} + outSlope: {x: 0.07243394, y: 0.5476141, z: 0.6315359, w: -0.48550484} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.53765106, y: 0.66266173, z: -0.26740253, w: 0.44755635} + inSlope: {x: -0.23120284, y: 0.04216434, z: -0.053535104, w: 0.1687373} + outSlope: {x: -0.23120284, y: 0.04216434, z: -0.053535104, w: 0.1687373} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: 0.5198231, y: 0.6472189, z: -0.29202273, w: 0.474989} + inSlope: {x: -0.076923996, y: 0.1260897, z: 0.11269429, w: -0.029587418} + outSlope: {x: -0.076923996, y: 0.1260897, z: 0.11269429, w: -0.029587418} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: 0.5325228, y: 0.6710677, z: -0.25988957, w: 0.44558385} + inSlope: {x: 0.13672557, y: 0.43254995, z: 0.5490392, w: -0.45137012} + outSlope: {x: 0.13672557, y: 0.43254995, z: 0.5490392, w: -0.45137012} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.5289381, y: 0.67605555, z: -0.25542012, w: 0.44489765} + inSlope: {x: -0.1167977, y: 0.137904, z: 0.11609362, w: -0.0038418178} + outSlope: {x: -0.1167977, y: 0.137904, z: 0.11609362, w: -0.0038418178} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.5247363, y: 0.6802613, z: -0.25215, w: 0.44532773} + inSlope: {x: -0.28657338, y: -0.007637106, z: -0.16991428, w: 0.24205229} + outSlope: {x: -0.28657338, y: -0.007637106, z: -0.16991428, w: 0.24205229} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: 0.5098332, y: 0.6755464, z: -0.26674774, w: 0.46103448} + inSlope: {x: -0.2507346, y: 0.09507631, z: 0.00966455, w: 0.14864123} + outSlope: {x: -0.2507346, y: 0.09507631, z: 0.00966455, w: 0.14864123} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: 0.50802064, y: 0.68659973, z: -0.2515057, w: 0.45523715} + inSlope: {x: -0.12559266, y: 0.21103354, z: 0.25795454, w: -0.030327294} + outSlope: {x: -0.12559266, y: 0.21103354, z: 0.25795454, w: -0.030327294} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.5014604, y: 0.6896153, z: -0.24955077, w: 0.45901266} + inSlope: {x: -0.0883171, y: 0.16872974, z: 0.2281619, w: -0.036438707} + outSlope: {x: -0.0883171, y: 0.16872974, z: 0.2281619, w: -0.036438707} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: 0.50213283, y: 0.6978484, z: -0.23629491, w: 0.4528079} + inSlope: {x: -0.029814545, y: 0.19296171, z: 0.29689127, w: -0.105904795} + outSlope: {x: -0.029814545, y: 0.19296171, z: 0.29689127, w: -0.105904795} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: 0.5010209, y: 0.7050493, z: -0.2249895, w: 0.4486238} + inSlope: {x: -0.028564138, y: 0.16407867, z: 0.24310589, w: -0.10712783} + outSlope: {x: -0.028564138, y: 0.16407867, z: 0.24310589, w: -0.10712783} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.49756846, y: 0.713418, z: -0.21355096, w: 0.44481048} + inSlope: {x: -0.017931413, y: 0.14193793, z: 0.19675352, w: -0.10965671} + outSlope: {x: -0.017931413, y: 0.14193793, z: 0.19675352, w: -0.10965671} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.5091063, y: 0.7139853, z: -0.21146543, w: 0.431646} + inSlope: {x: 0.24586554, y: -0.02307684, z: 0.038888413, w: -0.23506698} + outSlope: {x: 0.24586554, y: -0.02307684, z: 0.038888413, w: -0.23506698} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: 0.51922745, y: 0.71341735, z: -0.20852903, w: 0.42184618} + inSlope: {x: 0.18183036, y: -0.16610906, z: -0.20379227, w: -0.047607385} + outSlope: {x: 0.18183036, y: -0.16610906, z: -0.20379227, w: -0.047607385} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5666667 + value: {x: 0.5212283, y: 0.7029114, z: -0.2250516, w: 0.42847216} + inSlope: {x: 0.12382782, y: -0.18275757, z: -0.23753934, w: 0.030859113} + outSlope: {x: 0.12382782, y: -0.18275757, z: -0.23753934, w: 0.030859113} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6333334 + value: {x: 0.5357654, y: 0.6987245, z: -0.22345516, w: 0.41809982} + inSlope: {x: 0.20216879, y: -0.06156563, z: 0.024259463, w: -0.1420292} + outSlope: {x: 0.20216879, y: -0.06156563, z: 0.024259463, w: -0.1420292} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7666667 + value: {x: 0.5432732, y: 0.6847922, z: -0.23819484, w: 0.4232933} + inSlope: {x: -0.12704362, y: -0.12061794, z: -0.23100327, w: 0.22762011} + outSlope: {x: -0.12704362, y: -0.12061794, z: -0.23100327, w: 0.22762011} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.86666673 + value: {x: 0.53636277, y: 0.672339, z: -0.259024, w: 0.4395245} + inSlope: {x: -0.012878211, y: -0.11464386, z: -0.16200183, w: 0.095990025} + outSlope: {x: -0.012878211, y: -0.11464386, z: -0.16200183, w: 0.095990025} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.90000004 + value: {x: 0.5347506, y: 0.66936487, z: -0.26356614, w: 0.44331202} + inSlope: {x: 0.06895503, y: 0.0011729412, z: 0.07775482, w: -0.041062247} + outSlope: {x: 0.06895503, y: 0.0011729412, z: 0.07775482, w: -0.041062247} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9333334 + value: {x: 0.5409598, y: 0.6724172, z: -0.25384033, w: 0.436787} + inSlope: {x: -0.06482385, y: -0.2741945, z: -0.29138008, w: 0.29985267} + outSlope: {x: -0.06482385, y: -0.2741945, z: -0.29138008, w: 0.29985267} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9666667 + value: {x: 0.530429, y: 0.65108526, z: -0.28299144, w: 0.46330217} + inSlope: {x: 0.012727991, y: -0.23255488, z: -0.3249964, w: 0.1396802} + outSlope: {x: 0.012727991, y: -0.23255488, z: -0.3249964, w: 0.1396802} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.5418083, y: 0.6569136, z: -0.27550673, w: 0.446099} + inSlope: {x: 0.34137937, y: 0.1748498, z: 0.22454134, w: -0.51609504} + outSlope: {x: 0.34137937, y: 0.1748498, z: 0.22454134, w: -0.51609504} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.05744914, y: 0.18112116, z: 0.06750012, w: 0.9794583} + inSlope: {x: 0.16528967, y: -0.89683765, z: 0.08939802, w: 0.15468298} + outSlope: {x: 0.16528967, y: -0.89683765, z: 0.08939802, w: 0.15468298} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: -0.051939484, y: 0.15122657, z: 0.070480056, w: 0.9846144} + inSlope: {x: 0.1247787, y: 0.19460186, z: 0.1294036, w: -0.040028393} + outSlope: {x: 0.1247787, y: 0.19460186, z: 0.1294036, w: -0.040028393} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: -0.04913056, y: 0.19409461, z: 0.07612703, w: 0.9767897} + inSlope: {x: 0.0057943016, y: -0.05630505, z: 0.032704845, w: 0.006465897} + outSlope: {x: 0.0057943016, y: -0.05630505, z: 0.032704845, w: 0.006465897} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: -0.051553197, y: 0.14747289, z: 0.07266038, w: 0.98504543} + inSlope: {x: -0.023953348, y: -0.763724, z: -0.021660281, w: 0.13170896} + outSlope: {x: -0.023953348, y: -0.763724, z: -0.021660281, w: 0.13170896} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: -0.05072745, y: 0.14317967, z: 0.07468301, w: 0.9855703} + inSlope: {x: 0.037491754, y: -0.09891094, z: 0.06697007, w: 0.011295677} + outSlope: {x: 0.037491754, y: -0.09891094, z: 0.06697007, w: 0.011295677} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.049053747, y: 0.14087883, z: 0.07712505, w: 0.9857985} + inSlope: {x: 0.096821465, y: 0.29425874, z: 0.1360976, w: -0.052041985} + outSlope: {x: 0.096821465, y: 0.29425874, z: 0.1360976, w: -0.052041985} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: -0.044272684, y: 0.16279693, z: 0.083756186, w: 0.98210084} + inSlope: {x: 0.19069901, y: 0.122227445, z: 0.12627412, w: -0.020145152} + outSlope: {x: 0.19069901, y: 0.122227445, z: 0.12627412, w: -0.020145152} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: -0.03634048, y: 0.14902733, z: 0.08554333, w: 0.98445547} + inSlope: {x: 0.22608998, y: -0.12057514, z: 0.075214066, w: 0.021328036} + outSlope: {x: 0.22608998, y: -0.12057514, z: 0.075214066, w: 0.021328036} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.02920002, y: 0.15475859, z: 0.08877046, w: 0.9835227} + inSlope: {x: 0.23099856, y: -0.035077035, z: 0.055720884, w: 0.0070399055} + outSlope: {x: 0.23099856, y: -0.035077035, z: 0.055720884, w: 0.0070399055} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.012482734, y: 0.1480962, z: 0.09106643, w: 0.98469216} + inSlope: {x: 0.18479839, y: 0.075079285, z: -0.0016764924, w: -0.008449853} + outSlope: {x: 0.18479839, y: 0.075079285, z: -0.0016764924, w: -0.008449853} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: -0.008620684, y: 0.15169415, z: 0.089146286, w: 0.98436147} + inSlope: {x: 0.21278039, y: -0.05872709, z: 0.010741206, w: 0.008880783} + outSlope: {x: 0.21278039, y: -0.05872709, z: 0.010741206, w: 0.008880783} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.0017026325, y: 0.14418106, z: 0.09178251, w: 0.9852842} + inSlope: {x: 0.16865744, y: -0.07218887, z: -0.0018263981, w: 0.011622895} + outSlope: {x: 0.16865744, y: -0.07218887, z: -0.0018263981, w: 0.011622895} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.00661689, y: 0.14850006, z: 0.08131859, w: 0.9855411} + inSlope: {x: -0.26231182, y: -0.06887995, z: -0.17032999, w: 0.021956552} + outSlope: {x: -0.26231182, y: -0.06887995, z: -0.17032999, w: 0.021956552} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: -0.016749278, y: 0.1432735, z: 0.07488049, w: 0.9867042} + inSlope: {x: -0.3133049, y: 0.18343812, z: -0.12516831, w: -0.024424177} + outSlope: {x: -0.3133049, y: 0.18343812, z: -0.12516831, w: -0.024424177} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5666667 + value: {x: -0.027503902, y: 0.16072927, z: 0.072974026, w: 0.9839128} + inSlope: {x: -0.28979707, y: 0.18855676, z: -0.04953481, w: -0.03269698} + outSlope: {x: -0.28979707, y: 0.18855676, z: -0.04953481, w: -0.03269698} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6333334 + value: {x: -0.046550404, y: 0.15000421, z: 0.068680875, w: 0.98519784} + inSlope: {x: -0.29295033, y: -0.13536927, z: -0.08586869, w: 0.013157124} + outSlope: {x: -0.29295033, y: -0.13536927, z: -0.08586869, w: 0.013157124} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7666667 + value: {x: -0.07324801, y: 0.15815072, z: 0.06615506, w: 0.9824697} + inSlope: {x: 0.03588044, y: 0.1555253, z: 0.08869935, w: -0.028207876} + outSlope: {x: 0.03588044, y: 0.1555253, z: 0.08869935, w: -0.028207876} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.86666673 + value: {x: -0.06331267, y: 0.16386636, z: 0.06716409, w: 0.98215497} + inSlope: {x: 0.074508764, y: -0.0077504776, z: -0.036536913, w: 0.008596482} + outSlope: {x: 0.074508764, y: -0.0077504776, z: -0.036536913, w: 0.008596482} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.90000004 + value: {x: -0.060396954, y: 0.16318397, z: 0.06697448, w: 0.9824651} + inSlope: {x: 0.09624861, y: -0.3005748, z: -0.0316116, w: 0.054997765} + outSlope: {x: 0.09624861, y: -0.3005748, z: -0.0316116, w: 0.054997765} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9333334 + value: {x: -0.056896098, y: 0.14382802, z: 0.06505665, w: 0.9858215} + inSlope: {x: 0.0839006, y: 0.26773375, z: 0.023581607, w: -0.043673646} + outSlope: {x: 0.0839006, y: 0.26773375, z: 0.023581607, w: -0.043673646} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9666667 + value: {x: -0.05480358, y: 0.18103284, z: 0.068546586, w: 0.9795535} + inSlope: {x: -0.046833314, y: 0.18727896, z: 0.017615758, w: -0.032494992} + outSlope: {x: -0.046833314, y: 0.18727896, z: 0.017615758, w: -0.032494992} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.060018316, y: 0.15631327, z: 0.066231035, w: 0.98365515} + inSlope: {x: -0.15644222, y: -0.7415877, z: -0.0694666, w: 0.12304914} + outSlope: {x: -0.15644222, y: -0.7415877, z: -0.0694666, w: 0.12304914} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.22189732, y: -0.13689648, z: -0.25379986, w: 0.931454} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.22189732, y: -0.13689648, z: -0.25379986, w: 0.931454} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.055517823, y: -0.13071369, z: 0.13998024, w: 0.97991693} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.055517823, y: -0.13071369, z: 0.13998024, w: 0.97991693} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.22361796, y: 0.031642, z: -0.10459676, w: 0.96853155} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: -0.22361796, y: 0.031642, z: -0.10459676, w: 0.96853155} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2/mixamorig:LeftHandThumb3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.020066746, y: 0.04093233, z: 0.014504516, w: 0.9988551} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.020066746, y: 0.04093233, z: 0.014504516, w: 0.9988551} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2/mixamorig:LeftHandThumb3/mixamorig:LeftHandThumb4 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.17390512, y: -0.066170156, z: -0.02274008, w: 0.9822736} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.17390512, y: -0.066170156, z: -0.02274008, w: 0.9822736} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.24460982, y: -0.0050665447, z: 0.033822484, w: 0.9690183} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.24460982, y: -0.0050665447, z: 0.033822484, w: 0.9690183} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.24556129, y: -0.00000026623306, z: 0.032646764, w: 0.9688312} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.24556129, y: -0.00000026623306, z: 0.032646764, w: 0.9688312} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2/mixamorig:LeftHandIndex3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.04448857, y: 0.000000017893417, z: 0.000000019682918, w: 0.9990099} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.04448857, y: 0.000000017893417, z: 0.000000019682918, w: 0.9990099} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2/mixamorig:LeftHandIndex3/mixamorig:LeftHandIndex4 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.17314613, y: -0.06403215, z: -0.024896596, w: 0.98249704} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.17314613, y: -0.06403215, z: -0.024896596, w: 0.98249704} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.38609514, y: -0.012463127, z: 0.055941783, w: 0.92067677} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.38609514, y: -0.012463127, z: 0.055941783, w: 0.92067677} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.3709092, y: 0.0028794839, z: 0.05047345, w: 0.92729205} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.3709092, y: 0.0028794839, z: 0.05047345, w: 0.92729205} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2/mixamorig:LeftHandMiddle3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.010558618, y: -0.002861393, z: -0.0028610048, w: 0.9999361} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.010558618, y: -0.002861393, z: -0.0028610048, w: 0.9999361} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2/mixamorig:LeftHandMiddle3/mixamorig:LeftHandMiddle4 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.055216026, y: 0.08593862, z: -0.020107478, w: 0.99456596} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.055216026, y: 0.08593862, z: -0.020107478, w: 0.99456596} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.43159866, y: -0.00012865354, z: 0.057380266, w: 0.90023893} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.43159866, y: -0.00012865354, z: 0.057380266, w: 0.90023893} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.27317584, y: 0.000000019447892, z: 0.036279585, w: 0.9612798} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.27317584, y: 0.000000019447892, z: 0.036279585, w: 0.9612798} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2/mixamorig:LeftHandPinky3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.044519026, y: 0.00000008558798, z: 0.000000001248373, w: 0.9990086} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.044519026, y: 0.00000008558798, z: 0.000000001248373, w: 0.9990086} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2/mixamorig:LeftHandPinky3/mixamorig:LeftHandPinky4 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.41676554, y: 0.55409116, z: -0.50986093, w: 0.5092459} + inSlope: {x: 0.06862968, y: -0.12808621, z: 0.053817626, w: 0.13569117} + outSlope: {x: 0.06862968, y: -0.12808621, z: 0.053817626, w: 0.13569117} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: 0.43425742, y: 0.521472, z: -0.4950146, w: 0.5426306} + inSlope: {x: -0.04769147, y: 0.090222366, z: -0.04588366, w: -0.090487905} + outSlope: {x: -0.04769147, y: 0.090222366, z: -0.04588366, w: -0.090487905} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000001 + value: {x: 0.4074227, y: 0.5680986, z: -0.51699275, w: 0.49395266} + inSlope: {x: -0.059727423, y: 0.11082529, z: -0.04730433, w: -0.1273857} + outSlope: {x: -0.059727423, y: 0.11082529, z: -0.04730433, w: -0.1273857} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.4167664, y: 0.5540897, z: -0.509861, w: 0.50924665} + inSlope: {x: 0.09945551, y: -0.17295258, z: 0.07960446, w: 0.18917102} + outSlope: {x: 0.09945551, y: -0.17295258, z: 0.07960446, w: 0.18917102} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.44263718, y: 0.0460412, z: 0.35771513, w: 0.8209704} + inSlope: {x: 0.06531805, y: 0.12222133, z: 0.011086463, w: -0.047339197} + outSlope: {x: 0.06531805, y: 0.12222133, z: 0.011086463, w: -0.047339197} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.45646033, y: 0.038830176, z: 0.34439954, w: 0.81946635} + inSlope: {x: 0.08028521, y: -0.091048345, z: -0.21314484, w: 0.048866265} + outSlope: {x: 0.08028521, y: -0.091048345, z: -0.21314484, w: 0.048866265} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.46632072, y: 0.02729528, z: 0.32526222, w: 0.8221949} + inSlope: {x: 0.054347817, y: -0.16366419, z: -0.13610156, w: 0.028048756} + outSlope: {x: 0.054347817, y: -0.16366419, z: -0.13610156, w: 0.028048756} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: 0.46941212, y: -0.008996358, z: 0.30746695, w: 0.82766867} + inSlope: {x: 0.06998013, y: -0.24782953, z: -0.17942804, w: 0.024353547} + outSlope: {x: 0.06998013, y: -0.24782953, z: -0.17942804, w: 0.024353547} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.47291672, y: -0.014288524, z: 0.29828265, w: 0.82895905} + inSlope: {x: 0.096011415, y: -0.22526684, z: -0.22716689, w: 0.022973998} + outSlope: {x: 0.096011415, y: -0.22526684, z: -0.22716689, w: 0.022973998} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: 0.47581288, y: -0.02401415, z: 0.2923225, w: 0.82920027} + inSlope: {x: 0.094979264, y: 0.013128474, z: -0.046978895, w: -0.037569705} + outSlope: {x: 0.094979264, y: 0.013128474, z: -0.046978895, w: -0.037569705} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: 0.47924867, y: -0.013413292, z: 0.29515073, w: 0.8264544} + inSlope: {x: 0.08644406, y: -0.1703029, z: -0.16524662, w: 0.0011551753} + outSlope: {x: 0.08644406, y: -0.1703029, z: -0.16524662, w: 0.0011551753} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.48157582, y: -0.035367656, z: 0.28130606, w: 0.8292773} + inSlope: {x: 0.042602893, y: -0.1994216, z: -0.1666329, w: 0.02873724} + outSlope: {x: 0.042602893, y: -0.1994216, z: -0.1666329, w: 0.02873724} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5666667 + value: {x: 0.48098388, y: -0.009107712, z: 0.28915077, w: 0.82762516} + inSlope: {x: -0.045625284, y: 0.494387, z: 0.12698157, w: -0.011622002} + outSlope: {x: -0.045625284, y: 0.494387, z: 0.12698157, w: -0.011622002} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.47463816, y: 0.035236426, z: 0.30808103, w: 0.8237494} + inSlope: {x: -0.11726527, y: 0.3234396, z: 0.29888928, w: -0.057596877} + outSlope: {x: -0.11726527, y: 0.3234396, z: 0.29888928, w: -0.057596877} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.70000005 + value: {x: 0.46960798, y: 0.043803766, z: 0.3188045, w: 0.82213944} + inSlope: {x: -0.16953173, y: 0.48932737, z: 0.45179278, w: -0.11183655} + outSlope: {x: -0.16953173, y: 0.48932737, z: 0.45179278, w: -0.11183655} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.46333605, y: 0.067858234, z: 0.33820054, w: 0.81629366} + inSlope: {x: -0.18172325, y: 0.44448894, z: 0.44153333, w: -0.1088307} + outSlope: {x: -0.18172325, y: 0.44448894, z: 0.44153333, w: -0.1088307} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000001 + value: {x: 0.45235488, y: 0.06941141, z: 0.3470429, w: 0.81860757} + inSlope: {x: -0.17303246, y: 0.12748373, z: 0.1693419, w: 0.010220911} + outSlope: {x: -0.17303246, y: 0.12748373, z: 0.1693419, w: 0.010220911} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.4459576, y: 0.08193524, z: 0.3595295, w: 0.81556547} + inSlope: {x: -0.17211112, y: 0.112890616, z: 0.22368968, w: -0.013066005} + outSlope: {x: -0.17211112, y: 0.112890616, z: 0.22368968, w: -0.013066005} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.90000004 + value: {x: 0.43939227, y: 0.06611513, z: 0.36009246, w: 0.8203028} + inSlope: {x: -0.022258332, y: -0.44173416, z: -0.15091352, w: 0.11095581} + outSlope: {x: -0.022258332, y: -0.44173416, z: -0.15091352, w: 0.11095581} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9333334 + value: {x: 0.43939692, y: 0.04748849, z: 0.35189462, w: 0.82513356} + inSlope: {x: 0.015037819, y: -0.28422865, z: -0.07775575, w: 0.04536501} + outSlope: {x: 0.015037819, y: -0.28422865, z: -0.07775575, w: 0.04536501} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.44335887, y: 0.047614932, z: 0.3579712, w: 0.8203794} + inSlope: {x: 0.08892246, y: 0.013451738, z: 0.091873795, w: -0.08843251} + outSlope: {x: 0.08892246, y: 0.013451738, z: 0.091873795, w: -0.08843251} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.15674545, y: -0.20831138, z: 0.84292865, w: 0.47064698} + inSlope: {x: 0.115999274, y: -0.25691584, z: -0.051117536, w: -0.063845515} + outSlope: {x: 0.115999274, y: -0.25691584, z: -0.051117536, w: -0.063845515} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: 0.16913462, y: -0.19810209, z: 0.8419632, w: 0.4724903} + inSlope: {x: 0.09535902, y: 0.0038811564, z: -0.03750444, w: 0.034261648} + outSlope: {x: 0.09535902, y: 0.0038811564, z: -0.03750444, w: 0.034261648} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: 0.17767674, y: -0.19908455, z: 0.8400183, w: 0.4724042} + inSlope: {x: 0.10606462, y: 0.25908643, z: -0.022625329, w: 0.10487572} + outSlope: {x: 0.10606462, y: 0.25908643, z: -0.022625329, w: 0.10487572} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.18031849, y: -0.1829408, z: 0.83927286, w: 0.47920665} + inSlope: {x: 0.10251807, y: 0.3008424, z: -0.0014832616, w: 0.08324415} + outSlope: {x: 0.10251807, y: 0.3008424, z: -0.0014832616, w: 0.08324415} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.18935677, y: -0.17595805, z: 0.8380005, w: 0.48056003} + inSlope: {x: 0.10373594, y: 0.19010714, z: -0.0006732084, w: 0.029015657} + outSlope: {x: 0.10373594, y: 0.19010714, z: -0.0006732084, w: 0.029015657} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: 0.191427, y: -0.16635458, z: 0.8398745, w: 0.4798882} + inSlope: {x: -0.003966095, y: -0.0138652325, z: 0.07645548, w: -0.13858797} + outSlope: {x: -0.003966095, y: -0.0138652325, z: 0.07645548, w: -0.13858797} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: 0.18909237, y: -0.1768824, z: 0.8430975, w: 0.47132084} + inSlope: {x: -0.1097469, y: 0.33344197, z: 0.12053676, w: -0.06142164} + outSlope: {x: -0.1097469, y: 0.33344197, z: 0.12053676, w: -0.06142164} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.18411055, y: -0.14412515, z: 0.8479103, w: 0.47579342} + inSlope: {x: -0.16348846, y: 0.46856454, z: 0.15904516, w: -0.062544025} + outSlope: {x: -0.16348846, y: 0.46856454, z: 0.15904516, w: -0.062544025} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5666667 + value: {x: 0.17295115, y: -0.15282343, z: 0.8585986, w: 0.45775694} + inSlope: {x: -0.16478868, y: -0.13810085, z: 0.11701225, w: -0.20119825} + outSlope: {x: -0.16478868, y: -0.13810085, z: 0.11701225, w: -0.20119825} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.15426104, y: -0.16458258, z: 0.86619425, w: 0.44589642} + inSlope: {x: -0.17036119, y: -0.14495039, z: 0.050623134, w: -0.092267126} + outSlope: {x: -0.17036119, y: -0.14495039, z: 0.050623134, w: -0.092267126} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.70000005 + value: {x: 0.149183, y: -0.16880012, z: 0.86745346, w: 0.44359377} + inSlope: {x: 0.21216196, y: -0.59240055, z: -0.058074385, w: -0.21246864} + outSlope: {x: 0.21216196, y: -0.59240055, z: -0.058074385, w: -0.21246864} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.16840515, y: -0.20407592, z: 0.8623226, w: 0.43173185} + inSlope: {x: 0.20047311, y: -0.5914488, z: -0.10854368, w: -0.1113481} + outSlope: {x: 0.20047311, y: -0.5914488, z: -0.10854368, w: -0.1113481} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7666667 + value: {x: 0.16254786, y: -0.20823, z: 0.8602172, w: 0.43617058} + inSlope: {x: -0.42070502, y: 0.20001686, z: -0.029329037, w: 0.29374993} + outSlope: {x: -0.42070502, y: 0.20001686, z: -0.029329037, w: 0.29374993} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000001 + value: {x: 0.14035812, y: -0.19074145, z: 0.86036736, w: 0.4513152} + inSlope: {x: -0.3340398, y: -0.020172268, z: -0.049393825, w: 0.20045601} + outSlope: {x: -0.3340398, y: -0.020172268, z: -0.049393825, w: 0.20045601} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.14027852, y: -0.20957479, z: 0.8569243, w: 0.44953433} + inSlope: {x: 0.021410042, y: -0.3111917, z: -0.09449603, w: 0.03403313} + outSlope: {x: 0.021410042, y: -0.3111917, z: -0.09449603, w: 0.03403313} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.90000004 + value: {x: 0.14456938, y: -0.20787476, z: 0.8510314, w: 0.46003634} + inSlope: {x: 0.11934464, y: 0.25549126, z: -0.10388285, w: 0.26560122} + outSlope: {x: 0.11934464, y: 0.25549126, z: -0.10388285, w: 0.26560122} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9333334 + value: {x: 0.14974177, y: -0.19445479, z: 0.8471421, w: 0.47129083} + inSlope: {x: 0.1366981, y: 0.07703611, z: -0.10148942, w: 0.17485307} + outSlope: {x: 0.1366981, y: 0.07703611, z: -0.10148942, w: 0.17485307} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.15573569, y: -0.20836128, z: 0.8430858, w: 0.47067848} + inSlope: {x: 0.061592966, y: -0.16866864, z: -0.0353891, w: -0.030442208} + outSlope: {x: 0.061592966, y: -0.16866864, z: -0.0353891, w: -0.030442208} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.084640235, y: 0.09221064, z: -0.03259004, w: 0.9916003} + inSlope: {x: 0.12131161, y: 0.4987145, z: -0.072898075, w: -0.04296541} + outSlope: {x: 0.12131161, y: 0.4987145, z: -0.072898075, w: -0.04296541} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: -0.080596514, y: 0.10883446, z: -0.035019975, w: 0.9901681} + inSlope: {x: 0.045759935, y: 0.22654931, z: -0.14081714, w: -0.024271308} + outSlope: {x: 0.045759935, y: 0.22654931, z: -0.14081714, w: -0.024271308} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: -0.08243151, y: 0.10642009, z: -0.04874033, w: 0.98969907} + inSlope: {x: -0.027358085, y: -0.029295422, z: -0.13735731, w: -0.0055932994} + outSlope: {x: -0.027358085, y: -0.029295422, z: -0.13735731, w: -0.0055932994} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.0795196, y: 0.11248901, z: -0.056542046, w: 0.98885083} + inSlope: {x: 0.05645112, y: 0.22532335, z: -0.11986977, w: -0.027615132} + outSlope: {x: 0.05645112, y: 0.22532335, z: -0.11986977, w: -0.027615132} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: -0.078181505, y: 0.11842136, z: -0.06103694, w: 0.98799723} + inSlope: {x: -0.023899043, y: -0.10989916, z: -0.104187734, w: 0.0038293013} + outSlope: {x: -0.023899043, y: -0.10989916, z: -0.104187734, w: 0.0038293013} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.08111287, y: 0.1051624, z: -0.063487895, w: 0.9891061} + inSlope: {x: -0.055458363, y: -0.1540632, z: -0.17236665, w: 0.0015226016} + outSlope: {x: -0.055458363, y: -0.1540632, z: -0.17236665, w: 0.0015226016} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: -0.08187873, y: 0.10815048, z: -0.07252805, w: 0.98809874} + inSlope: {x: 0.01952612, y: 0.108475074, z: -0.042172007, w: -0.013114217} + outSlope: {x: 0.01952612, y: 0.108475074, z: -0.042172007, w: -0.013114217} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: -0.079811126, y: 0.11239407, z: -0.06629936, w: 0.98823184} + inSlope: {x: -0.01977875, y: -0.021073058, z: 0.06408125, w: 0.005203484} + outSlope: {x: -0.01977875, y: -0.021073058, z: 0.06408125, w: 0.005203484} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: -0.08319731, y: 0.106745616, z: -0.06825596, w: 0.98844564} + inSlope: {x: -0.047084954, y: 0.1575458, z: -0.03661305, w: -0.025155546} + outSlope: {x: -0.047084954, y: 0.1575458, z: -0.03661305, w: -0.025155546} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: -0.08295012, y: 0.122897126, z: -0.06874023, w: 0.9865548} + inSlope: {x: -0.17814858, y: -0.38854557, z: -0.022924297, w: 0.019191248} + outSlope: {x: -0.17814858, y: -0.38854557, z: -0.022924297, w: 0.019191248} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.09507387, y: 0.080842614, z: -0.06978425, w: 0.98972505} + inSlope: {x: -0.3111542, y: -0.63962394, z: -0.03496997, w: 0.03390586} + outSlope: {x: -0.3111542, y: -0.63962394, z: -0.03496997, w: 0.03390586} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5666667 + value: {x: -0.11493323, y: 0.086323276, z: -0.06599704, w: 0.98741233} + inSlope: {x: -0.3530906, y: 0.060546517, z: 0.23234257, w: -0.031421177} + outSlope: {x: -0.3530906, y: 0.060546517, z: 0.23234257, w: -0.031421177} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.14461996, y: 0.08310099, z: -0.04247547, w: 0.9850762} + inSlope: {x: -0.22016467, y: -0.06881907, z: 0.10178529, w: -0.022098724} + outSlope: {x: -0.22016467, y: -0.06881907, z: 0.10178529, w: -0.022098724} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.70000005 + value: {x: -0.15185036, y: 0.07908015, z: -0.040289756, w: 0.98441076} + inSlope: {x: -0.11291645, y: 0.6733331, z: 0.18722072, w: -0.08249587} + outSlope: {x: -0.11291645, y: 0.6733331, z: 0.18722072, w: -0.08249587} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.15214773, y: 0.12798981, z: -0.029994097, w: 0.97957647} + inSlope: {x: -0.0019810412, y: 0.64697754, z: 0.23810303, w: -0.058744032} + outSlope: {x: -0.0019810412, y: 0.64697754, z: 0.23810303, w: -0.058744032} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7666667 + value: {x: -0.15198243, y: 0.12221193, z: -0.024416225, w: 0.9804945} + inSlope: {x: 0.050229013, y: -0.7061049, z: 0.187228, w: 0.08728884} + outSlope: {x: 0.050229013, y: -0.7061049, z: 0.187228, w: 0.08728884} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000001 + value: {x: -0.14879912, y: 0.080916114, z: -0.017512219, w: 0.9853957} + inSlope: {x: 0.24381652, y: -0.36374107, z: 0.17907004, w: 0.07976437} + outSlope: {x: 0.24381652, y: -0.36374107, z: 0.17907004, w: 0.07976437} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.135728, y: 0.09796248, z: -0.012478221, w: 0.9858121} + inSlope: {x: 0.35262448, y: 0.20111534, z: 0.059371132, w: 0.032059535} + outSlope: {x: 0.35262448, y: 0.20111534, z: 0.059371132, w: 0.032059535} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.90000004 + value: {x: -0.11413525, y: 0.08733702, z: -0.016923578, w: 0.9894741} + inSlope: {x: 0.28774154, y: -0.36711282, z: -0.07297784, w: 0.062913} + outSlope: {x: 0.28774154, y: -0.36711282, z: -0.07297784, w: 0.062913} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9333334 + value: {x: -0.10610806, y: 0.06984959, z: -0.018419337, w: 0.99172723} + inSlope: {x: 0.3077735, y: -0.0769134, z: -0.11133473, w: 0.03653345} + outSlope: {x: 0.3077735, y: -0.0769134, z: -0.11133473, w: 0.03653345} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9666667 + value: {x: -0.09361702, y: 0.08220943, z: -0.02434589, w: 0.9919097} + inSlope: {x: 0.32365823, y: 0.33725938, z: -0.2132551, w: -0.0019589087} + outSlope: {x: 0.32365823, y: 0.33725938, z: -0.2132551, w: -0.0019589087} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.08453087, y: 0.092333525, z: -0.03263633, w: 0.99159664} + inSlope: {x: 0.2725849, y: 0.30372313, z: -0.24871343, w: -0.009391317} + outSlope: {x: 0.2725849, y: 0.30372313, z: -0.24871343, w: -0.009391317} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.17914863, y: 0.27560577, z: 0.26376286, w: 0.9068497} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.17914863, y: 0.27560577, z: 0.26376286, w: 0.9068497} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.07092547, y: 0.11456105, z: -0.20839012, w: 0.96872026} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.07092547, y: 0.11456105, z: -0.20839012, w: 0.96872026} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.0025602668, y: 0.01716441, z: -0.26406285, w: 0.9643494} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.0025602668, y: 0.01716441, z: -0.26406285, w: 0.9643494} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2/mixamorig:RightHandThumb3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.020066665, y: -0.040932257, z: -0.01450454, w: 0.9988551} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.020066665, y: -0.040932257, z: -0.01450454, w: 0.9988551} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2/mixamorig:RightHandThumb3/mixamorig:RightHandThumb4 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.039884117, y: -0.021048568, z: -0.021070568, w: 0.99876034} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.039884117, y: -0.021048568, z: -0.021070568, w: 0.99876034} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.10017062, y: 0.005202677, z: -0.011729293, w: 0.99488753} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.10017062, y: 0.005202677, z: -0.011729293, w: 0.99488753} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.28763524, y: -0.000000029789874, z: -0.03215661, w: 0.95720005} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.28763524, y: -0.000000029789874, z: -0.03215661, w: 0.95720005} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2/mixamorig:RightHandIndex3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.044488594, y: -0.0000000017840228, z: -0.00000006745699, w: 0.9990099} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.044488594, y: -0.0000000017840228, z: -0.00000006745699, w: 0.9990099} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2/mixamorig:RightHandIndex3/mixamorig:RightHandIndex4 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.0010475842, y: 0.00034356932, z: -0.07512536, w: 0.9971735} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: -0.0010475842, y: 0.00034356932, z: -0.07512536, w: 0.9971735} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.777086, y: 0.0081852665, z: -0.096657775, w: 0.6218742} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.777086, y: 0.0081852665, z: -0.096657775, w: 0.6218742} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.5790415, y: -0.002636946, z: -0.06625774, w: 0.81259704} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.5790415, y: -0.002636946, z: -0.06625774, w: 0.81259704} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2/mixamorig:RightHandMiddle3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.010558635, y: 0.0028612786, z: 0.0028610546, w: 0.9999361} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.010558635, y: 0.0028612786, z: 0.0028610546, w: 0.9999361} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2/mixamorig:RightHandMiddle3/mixamorig:RightHandMiddle4 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.042048287, y: -0.1718237, z: -0.055552248, w: 0.98266095} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.042048287, y: -0.1718237, z: -0.055552248, w: 0.98266095} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.7276185, y: 0.000098143224, z: -0.08134743, w: 0.6811416} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.7276185, y: 0.000098143224, z: -0.08134743, w: 0.6811416} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.6220807, y: -0.00000034990217, z: -0.06945854, w: 0.7798661} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.6220807, y: -0.00000034990217, z: -0.06945854, w: 0.7798661} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2/mixamorig:RightHandPinky3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.044519026, y: -0.00000012306901, z: -0.00000001200067, w: 0.9990086} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.044519026, y: -0.00000012306901, z: -0.00000001200067, w: 0.9990086} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2/mixamorig:RightHandPinky3/mixamorig:RightHandPinky4 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.2312227, y: 0.15362646, z: 0.9509849, w: 0.13624546} + inSlope: {x: 0.11989608, y: 3.3339467, z: -0.88034385, w: 1.0083116} + outSlope: {x: 0.11989608, y: 3.3339467, z: -0.88034385, w: 1.0083116} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: -0.22722617, y: 0.26475802, z: 0.9216401, w: 0.16985585} + inSlope: {x: 0.31384212, y: 2.8955877, z: -0.8679583, w: 0.8777307} + outSlope: {x: 0.31384212, y: 2.8955877, z: -0.8679583, w: 0.8777307} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: -0.18699333, y: 0.40488017, z: 0.8679323, w: 0.21863005} + inSlope: {x: 0.46716097, y: 1.2203, z: -0.6093585, w: 0.68955904} + outSlope: {x: 0.46716097, y: 1.2203, z: -0.6093585, w: 0.68955904} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.18433656, y: 0.43319952, z: 0.8438871, w: 0.25731844} + inSlope: {x: -0.25292465, y: 0.12831463, z: -0.31780416, w: 0.6291312} + outSlope: {x: -0.25292465, y: 0.12831463, z: -0.31780416, w: 0.6291312} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: -0.20009993, y: 0.43883628, z: 0.82183254, w: 0.30327216} + inSlope: {x: -0.12482488, y: -0.11403681, z: -0.10114075, w: 0.3665847} + outSlope: {x: -0.12482488, y: -0.11403681, z: -0.10114075, w: 0.3665847} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: -0.2065997, y: 0.4256312, z: 0.8307669, w: 0.29322517} + inSlope: {x: 0.06976336, y: 0.044433925, z: 0.16617449, w: -0.49180186} + outSlope: {x: 0.06976336, y: 0.044433925, z: 0.16617449, w: -0.49180186} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: -0.1918704, y: 0.4173562, z: 0.85394126, w: 0.24450748} + inSlope: {x: 0.24139023, y: -0.8516764, z: 0.72905, w: -0.98081034} + outSlope: {x: 0.24139023, y: -0.8516764, z: 0.72905, w: -0.98081034} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: -0.18359555, y: 0.37515464, z: 0.8842491, w: 0.20893835} + inSlope: {x: 0.27250588, y: -1.2783945, z: 0.84066653, w: -1.0077884} + outSlope: {x: 0.27250588, y: -1.2783945, z: 0.84066653, w: -1.0077884} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.12819995, y: 0.061441805, z: 0.9888621, w: 0.04406244} + inSlope: {x: 0.094355024, y: -1.8009238, z: 0.15467323, w: -0.6887521} + outSlope: {x: 0.094355024, y: -1.8009238, z: 0.15467323, w: -0.6887521} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.12566736, y: -0.07053628, z: 0.98955953, w: -0.0020743732} + inSlope: {x: 0.13337131, y: -2.3656998, z: -0.17503819, w: -0.80779} + outSlope: {x: 0.13337131, y: -2.3656998, z: -0.17503819, w: -0.80779} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.70000005 + value: {x: -0.11793121, y: -0.15698572, z: 0.98001397, w: -0.031941865} + inSlope: {x: 0.6474024, y: -2.93928, z: -0.49031964, w: -1.1850371} + outSlope: {x: 0.6474024, y: -2.93928, z: -0.49031964, w: -1.1850371} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.08250723, y: -0.26648825, z: 0.95687157, w: -0.08107683} + inSlope: {x: 1.0909956, y: -3.5112877, z: -1.0725963, w: -1.6227102} + outSlope: {x: 1.0909956, y: -3.5112877, z: -1.0725963, w: -1.6227102} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7666667 + value: {x: -0.04519818, y: -0.39107156, z: 0.9085075, w: -0.14012255} + inSlope: {x: 1.0260476, y: -2.798447, z: -1.1801925, w: -1.0746838} + outSlope: {x: 1.0260476, y: -2.798447, z: -1.1801925, w: -1.0746838} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000001 + value: {x: -0.014103998, y: -0.45305154, z: 0.878192, w: -0.15272248} + inSlope: {x: -0.7557994, y: -1.3281602, z: -0.83354294, w: -0.6366062} + outSlope: {x: -0.7557994, y: -1.3281602, z: -0.83354294, w: -0.6366062} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.095584705, y: -0.4796156, z: 0.852938, w: -0.18256295} + inSlope: {x: -2.2335763, y: 2.6208622, z: 1.000973, w: 1.4581943} + outSlope: {x: -2.2335763, y: 2.6208622, z: 1.000973, w: 1.4581943} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.86666673 + value: {x: -0.16300906, y: -0.2783272, z: 0.94492364, w: -0.055509396} + inSlope: {x: -1.6005247, y: 4.497322, z: 1.645385, w: 2.5906951} + outSlope: {x: -1.6005247, y: 4.497322, z: 1.645385, w: 2.5906951} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.90000004 + value: {x: -0.20228638, y: -0.17979404, z: 0.9626304, w: -0.009849886} + inSlope: {x: -0.93289065, y: 2.9361014, z: 0.38066104, w: 1.3020959} + outSlope: {x: -0.93289065, y: 2.9361014, z: 0.38066104, w: 1.3020959} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9333334 + value: {x: -0.22520176, y: -0.082587115, z: 0.97030103, w: 0.031296983} + inSlope: {x: -0.514927, y: 3.3133502, z: 0.06209299, w: 1.462321} + outSlope: {x: -0.514927, y: 3.3133502, z: 0.06209299, w: 1.462321} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9666667 + value: {x: -0.23661485, y: 0.04109593, z: 0.96676993, w: 0.08763817} + inSlope: {x: -0.09028816, y: 3.543262, z: -0.28975394, w: 1.5742854} + outSlope: {x: -0.09028816, y: 3.543262, z: -0.28975394, w: 1.5742854} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.23122096, y: 0.15363012, z: 0.9509841, w: 0.13624924} + inSlope: {x: 0.16181692, y: 3.376029, z: -0.47357485, w: 1.4583336} + outSlope: {x: 0.16181692, y: 3.376029, z: -0.47357485, w: 1.4583336} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.7183459, y: -0.015815686, z: 0.020536778, w: 0.69520307} + inSlope: {x: -0.00534296, y: -0.29616487, z: -0.82561594, w: -0.0063157077} + outSlope: {x: -0.00534296, y: -0.29616487, z: -0.82561594, w: -0.0063157077} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: -0.718524, y: -0.02568785, z: -0.006983756, w: 0.69499254} + inSlope: {x: 0.3391206, y: -0.32157612, z: -0.507677, w: 0.33003953} + outSlope: {x: 0.3391206, y: -0.32157612, z: -0.507677, w: 0.33003953} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: -0.69573784, y: -0.037254095, z: -0.01330836, w: 0.7172057} + inSlope: {x: 1.1111541, y: -0.005255282, z: -0.39482707, w: 1.0273029} + outSlope: {x: 1.1111541, y: -0.005255282, z: -0.39482707, w: 1.0273029} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: -0.644447, y: -0.0260382, z: -0.033305567, w: 0.7634794} + inSlope: {x: 1.8131928, y: 0.2119234, z: -0.2841708, w: 1.5012636} + outSlope: {x: 1.8131928, y: 0.2119234, z: -0.2841708, w: 1.5012636} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: -0.5748583, y: -0.023125866, z: -0.032253087, w: 0.81728995} + inSlope: {x: 2.0469737, y: 0.13478123, z: 0.03885767, w: 1.4575725} + outSlope: {x: 2.0469737, y: 0.13478123, z: 0.03885767, w: 1.4575725} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.50798213, y: -0.017052785, z: -0.030715056, w: 0.8606509} + inSlope: {x: 1.5092516, y: 0.2657964, z: 0.12232129, w: 0.94137573} + outSlope: {x: 1.5092516, y: 0.2657964, z: 0.12232129, w: 0.94137573} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: -0.47001532, y: -0.0022661258, z: -0.009437101, w: 0.8826049} + inSlope: {x: 0.14112534, y: 0.033489276, z: 0.4745662, w: 0.07968218} + outSlope: {x: 0.14112534, y: 0.033489276, z: 0.4745662, w: 0.07968218} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.46483317, y: -0.0031734845, z: 0.0075394143, w: 0.8853605} + inSlope: {x: -0.2642155, y: -0.29275382, z: 0.6246582, w: -0.15630843} + outSlope: {x: -0.2642155, y: -0.29275382, z: 0.6246582, w: -0.15630843} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: -0.48762968, y: -0.021783046, z: 0.032206777, w: 0.87218434} + inSlope: {x: -1.2775724, y: -0.18254043, z: 0.4156283, w: -0.7662616} + outSlope: {x: -1.2775724, y: -0.18254043, z: 0.4156283, w: -0.7662616} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.55000466, y: -0.015342847, z: 0.035247967, w: 0.8342764} + inSlope: {x: -1.5321069, y: 0.16846961, z: -0.0007696822, w: -0.9798379} + outSlope: {x: -1.5321069, y: 0.16846961, z: -0.0007696822, w: -0.9798379} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: -0.58977014, y: -0.01055174, z: 0.032155465, w: 0.8068618} + inSlope: {x: -0.6854242, y: 0.2059654, z: 0.10135853, w: -0.48254725} + outSlope: {x: -0.6854242, y: 0.2059654, z: 0.10135853, w: -0.48254725} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: -0.5956996, y: -0.0016118138, z: 0.04200521, w: 0.80210656} + inSlope: {x: -0.06706409, y: 0.40285832, z: 0.20911941, w: -0.060937047} + outSlope: {x: -0.06706409, y: 0.40285832, z: 0.20911941, w: -0.060937047} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.559727, y: 0.045766708, z: 0.06537567, w: 0.82482547} + inSlope: {x: 0.62297076, y: 0.25994548, z: 0.3741682, w: 0.37727952} + outSlope: {x: 0.62297076, y: 0.25994548, z: 0.3741682, w: 0.37727952} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.48514792, y: 0.048932757, z: 0.10027218, w: 0.86728466} + inSlope: {x: 0.7242452, y: -0.19036025, z: 0.24135195, w: 0.3897608} + outSlope: {x: 0.7242452, y: -0.19036025, z: 0.24135195, w: 0.3897608} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.42894632, y: 0.03147039, z: 0.10776441, w: 0.89632666} + inSlope: {x: 1.4370227, y: -0.24531204, z: -0.04068669, w: 0.6741007} + outSlope: {x: 1.4370227, y: -0.24531204, z: -0.04068669, w: 0.6741007} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.70000005 + value: {x: -0.366587, y: 0.024524719, z: 0.103468336, w: 0.9242872} + inSlope: {x: 2.6854074, y: 0.096925765, z: -0.29014128, w: 1.0072179} + outSlope: {x: 2.6854074, y: 0.096925765, z: -0.29014128, w: 1.0072179} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.24991922, y: 0.037932087, z: 0.088421665, w: 0.9634745} + inSlope: {x: 4.4154496, y: -0.03223096, z: -0.74952716, w: 1.07121} + outSlope: {x: 4.4154496, y: -0.03223096, z: -0.74952716, w: 1.07121} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7666667 + value: {x: -0.07222368, y: 0.022375962, z: 0.053499844, w: 0.9957012} + inSlope: {x: 3.745494, y: -0.40930003, z: -0.13723591, w: 0.49982387} + outSlope: {x: 3.745494, y: -0.40930003, z: -0.13723591, w: 0.49982387} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000001 + value: {x: -0.00021942194, y: 0.010645395, z: 0.0792726, w: 0.99679613} + inSlope: {x: 1.0430945, y: -1.1922681, z: -0.89152384, w: 0.03968329} + outSlope: {x: 1.0430945, y: -1.1922681, z: -0.89152384, w: 0.03968329} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.0026839843, y: -0.057108525, z: -0.0059349737, w: 0.99834675} + inSlope: {x: -6.8668895, y: -0.8721709, z: 0.4845084, w: -1.7423999} + outSlope: {x: -6.8668895, y: -0.8721709, z: 0.4845084, w: -1.7423999} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.86666673 + value: {x: -0.45801243, y: -0.04749926, z: 0.11157333, w: 0.88063604} + inSlope: {x: -8.470836, y: 0.4452076, z: 1.325757, w: -2.692595} + outSlope: {x: -8.470836, y: 0.4452076, z: 1.325757, w: -2.692595} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.90000004 + value: {x: -0.56740665, y: -0.027428031, z: 0.08244895, w: 0.8188404} + inSlope: {x: -2.649767, y: 0.39454246, z: -0.7243211, w: -1.6610227} + outSlope: {x: -2.649767, y: 0.39454246, z: -0.7243211, w: -1.6610227} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9333334 + value: {x: -0.6346635, y: -0.021196445, z: 0.06328527, w: 0.7699012} + inSlope: {x: -1.8887703, y: 0.15561599, z: -0.65820384, w: -1.49175} + outSlope: {x: -1.8887703, y: 0.15561599, z: -0.65820384, w: -1.49175} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9666667 + value: {x: -0.6933247, y: -0.01705363, z: 0.0385687, w: 0.7193904} + inSlope: {x: -1.2552545, y: 0.08069889, z: -0.64126635, w: -1.1204903} + outSlope: {x: -1.2552545, y: 0.08069889, z: -0.64126635, w: -1.1204903} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.7183471, y: -0.015816525, z: 0.020534221, w: 0.69520193} + inSlope: {x: -0.75067234, y: 0.037113205, z: -0.54103494, w: -0.7256545} + outSlope: {x: -0.75067234, y: 0.037113205, z: -0.54103494, w: -0.7256545} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.7570586, y: 0.01063154, z: 0.003813989, w: 0.65324944} + inSlope: {x: -0.25318265, y: 0.2597419, z: 0.52565676, w: 0.2737999} + outSlope: {x: -0.25318265, y: 0.2597419, z: 0.52565676, w: 0.2737999} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.7486192, y: 0.019289603, z: 0.021335883, w: 0.6623761} + inSlope: {x: -0.058407784, y: 0.5096574, z: 0.25145918, w: 0.04118354} + outSlope: {x: -0.058407784, y: 0.5096574, z: 0.25145918, w: 0.04118354} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: 0.75316477, y: 0.044608697, z: 0.020577936, w: 0.655995} + inSlope: {x: -0.10424492, y: 0.35240278, z: 0.24961676, w: 0.08918164} + outSlope: {x: -0.10424492, y: 0.35240278, z: 0.24961676, w: 0.08918164} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: 0.74166954, y: 0.042783123, z: 0.037977003, w: 0.66832155} + inSlope: {x: -0.37819952, y: -0.051624306, z: 0.23273002, w: 0.41166365} + outSlope: {x: -0.37819952, y: -0.051624306, z: 0.23273002, w: 0.41166365} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.71819973, y: 0.028914345, z: 0.03194171, w: 0.6945019} + inSlope: {x: -0.35756612, y: -0.38558823, z: 0.30718094, w: 0.36333108} + outSlope: {x: -0.35756612, y: -0.38558823, z: 0.30718094, w: 0.36333108} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: 0.7041137, y: 0.015461192, z: 0.056572013, w: 0.70766133} + inSlope: {x: -0.5177065, y: -0.118006386, z: 0.69120467, w: 0.46179676} + outSlope: {x: -0.5177065, y: -0.118006386, z: 0.69120467, w: 0.46179676} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: 0.68368596, y: 0.021047248, z: 0.078022026, w: 0.72528833} + inSlope: {x: -1.530685, y: 0.059374277, z: 0.43420497, w: 1.2892923} + outSlope: {x: -1.530685, y: 0.059374277, z: 0.43420497, w: 1.2892923} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.60206807, y: 0.019419476, z: 0.08551901, w: 0.79361415} + inSlope: {x: -1.862029, y: 0.00042923726, z: -0.31185034, w: 1.5189109} + outSlope: {x: -1.862029, y: 0.00042923726, z: -0.31185034, w: 1.5189109} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: 0.5595507, y: 0.021075863, z: 0.057232004, w: 0.82654905} + inSlope: {x: -0.08009076, y: -0.10032597, z: -0.85706306, w: 0.12338698} + outSlope: {x: -0.08009076, y: -0.10032597, z: -0.85706306, w: 0.12338698} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.5967287, y: 0.012731079, z: 0.028381472, w: 0.80183995} + inSlope: {x: 1.4222629, y: -0.18087965, z: -0.69032, w: -1.057647} + outSlope: {x: 1.4222629, y: -0.18087965, z: -0.69032, w: -1.057647} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: 0.6543682, y: 0.009017221, z: 0.011210672, w: 0.75603926} + inSlope: {x: 1.5581439, y: -0.104320616, z: -0.68547493, w: -1.327862} + outSlope: {x: 1.5581439, y: -0.104320616, z: -0.68547493, w: -1.327862} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.700605, y: 0.005776369, z: -0.017316878, w: 0.7133158} + inSlope: {x: 1.2254802, y: -0.24925569, z: -0.6791384, w: -1.2004633} + outSlope: {x: 1.2254802, y: -0.24925569, z: -0.6791384, w: -1.2004633} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.78190947, y: -0.03428915, z: -0.06835341, w: 0.6186838} + inSlope: {x: 0.5715842, y: -0.35008442, z: -0.5661589, w: -0.8018992} + outSlope: {x: 0.5715842, y: -0.35008442, z: -0.5661589, w: -0.8018992} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6333334 + value: {x: 0.8474493, y: -0.07332082, z: -0.13910916, w: 0.5070526} + inSlope: {x: 0.4733464, y: -0.25039718, z: -0.42276466, w: -0.94067085} + outSlope: {x: 0.4733464, y: -0.25039718, z: -0.42276466, w: -0.94067085} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.70000005 + value: {x: 0.8700455, y: -0.08477395, z: -0.16366912, w: 0.45721614} + inSlope: {x: 0.019504838, y: -0.16495334, z: -0.46013868, w: -0.23094104} + outSlope: {x: 0.019504838, y: -0.16495334, z: -0.46013868, w: -0.23094104} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.8636807, y: -0.091944456, z: -0.18281741, w: 0.46062964} + inSlope: {x: -0.6883868, y: 0.06706414, z: -0.7757803, w: 0.9060701} + outSlope: {x: -0.6883868, y: 0.06706414, z: -0.7757803, w: 0.9060701} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7666667 + value: {x: 0.824153, y: -0.08030299, z: -0.21538782, w: 0.51762086} + inSlope: {x: -1.3746212, y: 0.07496522, z: -0.64948094, w: 1.9044714} + outSlope: {x: -1.3746212, y: 0.07496522, z: -0.64948094, w: 1.9044714} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000001 + value: {x: 0.77203923, y: -0.08694677, z: -0.22611618, w: 0.5875945} + inSlope: {x: -2.42233, y: -0.15080449, z: 0.23440747, w: 2.9772716} + outSlope: {x: -2.42233, y: -0.15080449, z: 0.23440747, w: 2.9772716} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.6626644, y: -0.090356626, z: -0.19976069, w: 0.7161056} + inSlope: {x: -0.92109066, y: 0.8248396, z: 1.0777943, w: 1.4715568} + outSlope: {x: -0.92109066, y: 0.8248396, z: 1.0777943, w: 1.4715568} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.86666673 + value: {x: 0.71063334, y: -0.03195741, z: -0.15426321, w: 0.68569815} + inSlope: {x: 1.2567499, y: 1.427808, z: 1.624039, w: -0.85498184} + outSlope: {x: 1.2567499, y: 1.427808, z: 1.624039, w: -0.85498184} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.90000004 + value: {x: 0.74644774, y: 0.0048305956, z: -0.09149144, w: 0.6591068} + inSlope: {x: 1.1237088, y: 0.2611982, z: 1.1411006, w: -1.0804293} + outSlope: {x: 1.1237088, y: 0.2611982, z: 1.1411006, w: -1.0804293} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9333334 + value: {x: 0.78554726, y: -0.0145442495, z: -0.07818989, w: 0.6136695} + inSlope: {x: 0.61040235, y: -0.07409923, z: 0.87348825, w: -0.64847076} + outSlope: {x: 0.61040235, y: -0.07409923, z: 0.87348825, w: -0.64847076} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9666667 + value: {x: 0.78714126, y: -0.000109381836, z: -0.03325892, w: 0.61587536} + inSlope: {x: -0.4273514, y: 0.37763292, z: 1.2300903, w: 0.59372365} + outSlope: {x: -0.4273514, y: 0.37763292, z: 1.2300903, w: 0.59372365} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.7570572, y: 0.010631254, z: 0.0038160542, w: 0.65325105} + inSlope: {x: -0.90252304, y: 0.32221937, z: 1.1122502, w: 1.1212717} + outSlope: {x: -0.90252304, y: 0.32221937, z: 1.1122502, w: 1.1212717} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.45894155, y: 0.07159462, z: -0.12354353, w: 0.8769173} + inSlope: {x: -4.221144, y: -0.17672448, z: -0.068092346, w: 1.8122505} + outSlope: {x: -4.221144, y: -0.17672448, z: -0.068092346, w: 1.8122505} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.31823674, y: 0.0657038, z: -0.12581328, w: 0.93732566} + inSlope: {x: -5.305232, y: -0.28252098, z: 0.018711869, w: 1.6285138} + outSlope: {x: -5.305232, y: -0.28252098, z: 0.018711869, w: 1.6285138} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: 0.105259374, y: 0.052759886, z: -0.12229607, w: 0.9854849} + inSlope: {x: -3.2988236, y: 0.1179595, z: 0.20499796, w: 0.7312488} + outSlope: {x: -3.2988236, y: 0.1179595, z: 0.20499796, w: 0.7312488} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: 0.09831514, y: 0.07356777, z: -0.11214674, w: 0.9860756} + inSlope: {x: 0.18192232, y: 0.21968752, z: 0.18253313, w: -0.012423996} + outSlope: {x: 0.18192232, y: 0.21968752, z: 0.18253313, w: -0.012423996} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.117387526, y: 0.06740572, z: -0.110127196, w: 0.98465663} + inSlope: {x: 0.5569937, y: -0.44306105, z: -0.09083268, w: -0.050296787} + outSlope: {x: 0.5569937, y: -0.44306105, z: -0.09083268, w: -0.050296787} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.13544805, y: 0.04403037, z: -0.118202254, w: 0.98272246} + inSlope: {x: 0.29956108, y: -0.18647972, z: -0.063639574, w: -0.034457445} + outSlope: {x: 0.29956108, y: -0.18647972, z: -0.063639574, w: -0.034457445} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: 0.13324857, y: 0.07405106, z: -0.105932005, w: 0.9826188} + inSlope: {x: 0.2866611, y: 0.12679064, z: 0.19885777, w: -0.028729144} + outSlope: {x: 0.2866611, y: 0.12679064, z: 0.19885777, w: -0.028729144} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.156469, y: 0.06342646, z: -0.10111265, w: 0.9804442} + inSlope: {x: 0.5741908, y: -0.34900796, z: -0.13357234, w: -0.08211226} + outSlope: {x: 0.5741908, y: -0.34900796, z: -0.13357234, w: -0.08211226} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: 0.17152795, y: 0.050783865, z: -0.11483683, w: 0.97714466} + inSlope: {x: 0.45948946, y: -0.22366288, z: -0.23907012, w: -0.09464265} + outSlope: {x: 0.45948946, y: -0.22366288, z: -0.23907012, w: -0.09464265} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: 0.18653342, y: 0.04857217, z: -0.11699191, w: 0.9742479} + inSlope: {x: -0.008532331, y: 0.0009303354, z: 0.0009242445, w: 0.0017005206} + outSlope: {x: -0.008532331, y: 0.0009303354, z: 0.0009242445, w: 0.0017005206} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.18655108, y: 0.04859105, z: -0.11697052, w: 0.97424614} + inSlope: {x: -0.0035230785, y: -0.003929489, z: 0.0056590093, w: 0.0015476333} + outSlope: {x: -0.0035230785, y: -0.003929489, z: 0.0056590093, w: 0.0015476333} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.70000005 + value: {x: 0.18631107, y: 0.048326097, z: -0.11659677, w: 0.97435004} + inSlope: {x: 0.26545, y: 0.013054276, z: -0.22784193, w: -0.083265685} + outSlope: {x: 0.26545, y: 0.013054276, z: -0.22784193, w: -0.083265685} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.20424773, y: 0.049461335, z: -0.13215996, w: 0.9686951} + inSlope: {x: 0.97368354, y: -0.18312752, z: -0.4061616, w: -0.26737505} + outSlope: {x: 0.97368354, y: -0.18312752, z: -0.4061616, w: -0.26737505} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7666667 + value: {x: 0.25122333, y: 0.036117584, z: -0.14367421, w: 0.956525} + inSlope: {x: 1.4737191, y: -0.15754674, z: 0.44463012, w: -0.3281215} + outSlope: {x: 1.4737191, y: -0.15754674, z: 0.44463012, w: -0.3281215} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000001 + value: {x: 0.30249575, y: 0.03895821, z: -0.10251793, w: 0.9468203} + inSlope: {x: 2.6934893, y: -0.40033877, z: 0.41075358, w: -0.92469215} + outSlope: {x: 2.6934893, y: -0.40033877, z: 0.41075358, w: -0.92469215} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.4307892, y: 0.009428362, z: -0.11629059, w: 0.8948789} + inSlope: {x: 4.651225, y: -1.8836083, z: 1.1618303, w: -2.423545} + outSlope: {x: 4.651225, y: -1.8836083, z: 1.1618303, w: -2.423545} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.86666673 + value: {x: 0.61257744, y: -0.086615734, z: -0.025062494, w: 0.7852506} + inSlope: {x: 2.7271135, y: -0.90240455, z: 1.5534858, w: -1.5932369} + outSlope: {x: 2.7271135, y: -0.90240455, z: 1.5534858, w: -1.5932369} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.90000004 + value: {x: 0.6125969, y: -0.050732054, z: -0.012724815, w: 0.788663} + inSlope: {x: -1.0242971, y: 1.4483414, z: -0.55748606, w: 0.7691354} + outSlope: {x: -1.0242971, y: 1.4483414, z: -0.55748606, w: 0.7691354} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9333334 + value: {x: 0.5442909, y: 0.009940377, z: -0.06222828, w: 0.83652633} + inSlope: {x: -1.7307403, y: 1.4987996, z: -1.2119135, w: 1.0875952} + outSlope: {x: -1.7307403, y: 1.4987996, z: -1.2119135, w: 1.0875952} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.45894215, y: 0.07159525, z: -0.123544104, w: 0.8769168} + inSlope: {x: -1.1481636, y: 0.67222023, z: -0.90075237, w: 0.4724233} + outSlope: {x: -1.1481636, y: 0.67222023, z: -0.90075237, w: 0.4724233} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot/mixamorig:LeftToeBase + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.04573715, y: 0.039433047, z: 0.0727525, w: 0.99552006} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.04573715, y: 0.039433047, z: 0.0727525, w: 0.99552006} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot/mixamorig:LeftToeBase/mixamorig:LeftToe_End + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.00862556, y: 0.26353616, z: 0.9581208, w: 0.11170884} + inSlope: {x: -0.08361653, y: -1.0521402, z: 0.37182388, w: -1.0527017} + outSlope: {x: -0.08361653, y: -1.0521402, z: 0.37182388, w: -1.0527017} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: -0.009411907, y: 0.19613904, z: 0.97933525, w: 0.04840866} + inSlope: {x: -0.5845595, y: -0.9690592, z: 0.2278295, w: -0.83453} + outSlope: {x: -0.5845595, y: -0.9690592, z: 0.2278295, w: -0.83453} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: -0.08496236, y: 0.056396328, z: 0.9917282, w: -0.07794921} + inSlope: {x: 0.008390896, y: -1.1200058, z: -0.027501585, w: -1.1410882} + outSlope: {x: 0.008390896, y: -1.1200058, z: -0.027501585, w: -1.1410882} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.023900714, y: -0.013943846, z: 0.98428273, w: -0.17441843} + inSlope: {x: 0.33147046, y: 0.7388324, z: -0.01687825, w: -0.14788853} + outSlope: {x: 0.33147046, y: 0.7388324, z: -0.01687825, w: -0.14788853} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: -0.01663516, y: 0.09574091, z: 0.98201454, w: -0.16187777} + inSlope: {x: 0.26860565, y: 2.1545334, z: -0.09712903, w: 0.7723552} + outSlope: {x: 0.26860565, y: 2.1545334, z: -0.09712903, w: 0.7723552} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: -0.0015888804, y: 0.17057706, z: 0.9776699, w: -0.12272932} + inSlope: {x: 0.5101488, y: 1.7881808, z: -0.12118669, w: 1.3735542} + outSlope: {x: 0.5101488, y: 1.7881808, z: -0.12118669, w: 1.3735542} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: 0.017374756, y: 0.21495296, z: 0.9739354, w: -0.07030749} + inSlope: {x: 0.4719516, y: 1.4176624, z: -0.2094315, w: 1.6884862} + outSlope: {x: 0.4719516, y: 1.4176624, z: -0.2094315, w: 1.6884862} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: 0.03034348, y: 0.30800772, z: 0.9499156, w: 0.043253336} + inSlope: {x: -0.081918895, y: 1.2719109, z: -0.46129128, w: 1.3693569} + outSlope: {x: -0.081918895, y: 1.2719109, z: -0.46129128, w: 1.3693569} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6333334 + value: {x: 0.023978148, y: 0.42378214, z: 0.8955355, w: 0.13360333} + inSlope: {x: 0.14234497, y: 0.9431375, z: -0.6037671, w: 0.9911098} + outSlope: {x: 0.14234497, y: 0.9431375, z: -0.6037671, w: 0.9911098} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.70000005 + value: {x: 0.033764888, y: 0.45484167, z: 0.8647942, w: 0.21002373} + inSlope: {x: -0.17048463, y: -0.20108233, z: -0.06956201, w: 0.77593446} + outSlope: {x: -0.17048463, y: -0.20108233, z: -0.06956201, w: 0.77593446} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.019112326, y: 0.43923625, z: 0.86952, w: 0.22503592} + inSlope: {x: -0.51116735, y: -0.29061663, z: 0.09147679, w: 0.2673469} + outSlope: {x: -0.51116735, y: -0.29061663, z: 0.09147679, w: 0.2673469} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7666667 + value: {x: -0.00031293853, y: 0.43546724, z: 0.87089264, w: 0.22784685} + inSlope: {x: -0.44685048, y: -0.5551556, z: 0.2569277, w: 0.04349869} + outSlope: {x: -0.44685048, y: -0.5551556, z: 0.2569277, w: 0.04349869} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000001 + value: {x: -0.01067773, y: 0.40222585, z: 0.88664854, w: 0.22793584} + inSlope: {x: 0.054624096, y: -1.254103, z: 0.5708645, w: -0.063846245} + outSlope: {x: 0.054624096, y: -1.254103, z: 0.5708645, w: -0.063846245} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.0033286468, y: 0.3518604, z: 0.90895027, w: 0.22359043} + inSlope: {x: 0.13859224, y: -0.23257637, z: 0.11564216, w: -0.045913905} + outSlope: {x: 0.13859224, y: -0.23257637, z: 0.11564216, w: -0.045913905} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.86666673 + value: {x: -0.0014382636, y: 0.38672084, z: 0.894358, w: 0.22487491} + inSlope: {x: -0.09602157, y: 0.40450206, z: -0.12716237, w: -0.149705} + outSlope: {x: -0.09602157, y: 0.40450206, z: -0.12716237, w: -0.149705} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9333334 + value: {x: -0.0013241092, y: 0.35358283, z: 0.9156891, w: 0.19102599} + inSlope: {x: 0.09146572, y: -1.0144421, z: 0.55445385, w: -0.86300385} + outSlope: {x: 0.09146572, y: -1.0144421, z: 0.55445385, w: -0.86300385} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.008090455, y: 0.26356205, z: 0.95811254, w: 0.111758225} + inSlope: {x: 0.15196626, y: -1.4290733, z: 0.62028646, w: -1.3295506} + outSlope: {x: 0.15196626, y: -1.4290733, z: 0.62028646, w: -1.3295506} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.4797125, y: 0.04397839, z: 0.048205294, w: 0.87499607} + inSlope: {x: 0.33201095, y: 0.6106832, z: -0.529783, w: 0.16544579} + outSlope: {x: 0.33201095, y: 0.6106832, z: -0.529783, w: 0.16544579} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: -0.46864545, y: 0.0643345, z: 0.030545859, w: 0.8805109} + inSlope: {x: 0.3099641, y: 0.2532344, z: -0.18856046, w: 0.15917389} + outSlope: {x: 0.3099641, y: 0.2532344, z: -0.18856046, w: 0.15917389} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: -0.45066148, y: 0.056498967, z: 0.041492842, w: 0.8899385} + inSlope: {x: 0.3191936, y: -0.1572986, z: 0.20692784, w: 0.16058654} + outSlope: {x: 0.3191936, y: -0.1572986, z: 0.20692784, w: 0.16058654} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: -0.4028675, y: 0.069519244, z: 0.046468716, w: 0.9114305} + inSlope: {x: 0.6308586, y: 0.7915937, z: -0.078441374, w: 0.2088171} + outSlope: {x: 0.6308586, y: 0.7915937, z: -0.078441374, w: 0.2088171} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: -0.3799863, y: 0.110144295, z: 0.041365243, w: 0.9174789} + inSlope: {x: 0.23928213, y: 0.6803874, z: 0.33312955, w: 0.013796389} + outSlope: {x: 0.23928213, y: 0.6803874, z: 0.33312955, w: 0.013796389} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: -0.42002875, y: 0.08609066, z: 0.11803325, w: 0.8956743} + inSlope: {x: -1.2504468, y: -1.027295, z: 1.5885797, w: -0.72776383} + outSlope: {x: -1.2504468, y: -1.027295, z: 1.5885797, w: -0.72776383} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: -0.54163706, y: 0.02597626, z: 0.20332241, w: 0.81523895} + inSlope: {x: -2.2770028, y: -0.06506775, z: -0.21132419, w: -1.4798796} + outSlope: {x: -2.2770028, y: -0.06506775, z: -0.21132419, w: -1.4798796} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: -0.6220787, y: 0.04205424, z: 0.16049434, w: 0.765174} + inSlope: {x: -2.1031747, y: 0.44756863, z: -1.3043339, w: -1.428315} + outSlope: {x: -2.1031747, y: 0.44756863, z: -1.3043339, w: -1.428315} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: -0.68184876, y: 0.05581418, z: 0.11636678, w: 0.7200179} + inSlope: {x: -0.95363444, y: -0.10985486, z: -0.5488295, w: -0.7306642} + outSlope: {x: -0.95363444, y: -0.10985486, z: -0.5488295, w: -0.7306642} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: -0.68565434, y: 0.034730583, z: 0.12390571, w: 0.716463} + inSlope: {x: 0.23482767, y: -0.43404704, z: -0.10004526, w: 0.25738955} + outSlope: {x: 0.23482767, y: -0.43404704, z: -0.10004526, w: 0.25738955} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.6661936, y: 0.026877722, z: 0.10969711, w: 0.7371772} + inSlope: {x: 1.0410955, y: -0.06984172, z: -0.67760605, w: 0.9984985} + outSlope: {x: 1.0410955, y: -0.06984172, z: -0.67760605, w: 0.9984985} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: -0.61624795, y: 0.030074479, z: 0.07873196, w: 0.7830296} + inSlope: {x: 1.296813, y: -0.106739484, z: -0.75413084, w: 1.128223} + outSlope: {x: 1.296813, y: -0.106739484, z: -0.75413084, w: 1.128223} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5666667 + value: {x: -0.57973933, y: 0.01976175, z: 0.05942168, w: 0.8123921} + inSlope: {x: 1.2314014, y: -0.20734394, z: -0.648399, w: 0.92182434} + outSlope: {x: 1.2314014, y: -0.20734394, z: -0.648399, w: 0.92182434} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.53415453, y: 0.016251545, z: 0.035505366, w: 0.84448457} + inSlope: {x: 1.3202741, y: -0.31418714, z: -0.4411312, w: 0.8676366} + outSlope: {x: 1.3202741, y: -0.31418714, z: -0.4411312, w: 0.8676366} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.427584, y: -0.011935925, z: 0.027831903, w: 0.90346825} + inSlope: {x: 2.4142842, y: -0.22018482, z: 0.031368773, w: 1.0919648} + outSlope: {x: 2.4142842, y: -0.22018482, z: 0.031368773, w: 1.0919648} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.70000005 + value: {x: -0.33076876, y: -0.015863052, z: 0.03210421, w: 0.9430322} + inSlope: {x: 3.1925972, y: 0.089638695, z: -0.050327815, w: 1.0931566} + outSlope: {x: 3.1925972, y: 0.089638695, z: -0.050327815, w: 1.0931566} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.21474421, y: -0.005960025, z: 0.024476726, w: 0.97634536} + inSlope: {x: 2.4635835, y: 0.35299647, z: 0.06242927, w: 0.6346083} + outSlope: {x: 2.4635835, y: 0.35299647, z: 0.06242927, w: 0.6346083} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7666667 + value: {x: -0.16652994, y: 0.0076700468, z: 0.036266178, w: 0.9853394} + inSlope: {x: 1.5479321, y: 0.21117721, z: 0.3654353, w: 0.24269411} + outSlope: {x: 1.5479321, y: 0.21117721, z: 0.3654353, w: 0.24269411} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000001 + value: {x: -0.11154865, y: 0.008118467, z: 0.0488391, w: 0.992525} + inSlope: {x: 0.74847937, y: -0.028197067, z: 0.11360987, w: 0.10276427} + outSlope: {x: 0.74847937, y: -0.028197067, z: 0.11360987, w: 0.10276427} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.11663126, y: 0.005790245, z: 0.043840185, w: 0.99219036} + inSlope: {x: -2.7422223, y: -0.10863243, z: 0.37212554, w: -0.5951066} + outSlope: {x: -2.7422223, y: -0.10863243, z: 0.37212554, w: -0.5951066} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.86666673 + value: {x: -0.29436362, y: 0.00087630353, z: 0.0736475, w: 0.9528512} + inSlope: {x: -3.9727974, y: 0.0067024007, z: 0.5127842, w: -1.0670274} + outSlope: {x: -3.9727974, y: 0.0067024007, z: 0.5127842, w: -1.0670274} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.90000004 + value: {x: -0.3814845, y: 0.006237062, z: 0.07802582, w: 0.9210552} + inSlope: {x: -2.196227, y: 0.2190158, z: -0.0035760477, w: -0.8756412} + outSlope: {x: -2.196227, y: 0.2190158, z: -0.0035760477, w: -0.8756412} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9666667 + value: {x: -0.47090325, y: 0.02577161, z: 0.06522687, w: 0.8793926} + inSlope: {x: -0.5852997, y: 0.4493217, z: -0.39182946, w: -0.2932569} + outSlope: {x: -0.5852997, y: 0.4493217, z: -0.39182946, w: -0.2932569} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.47979867, y: 0.045432113, z: 0.047287147, w: 0.87492466} + inSlope: {x: -0.26686308, y: 0.5898156, z: -0.5381921, w: -0.13403906} + outSlope: {x: -0.26686308, y: 0.5898156, z: -0.5381921, w: -0.13403906} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.6853588, y: 0.03286592, z: 0.04094682, w: 0.72631013} + inSlope: {x: 0.65356666, y: -0.17730156, z: -0.29087517, w: -0.61339253} + outSlope: {x: 0.65356666, y: -0.17730156, z: -0.29087517, w: -0.61339253} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.7071444, y: 0.026955867, z: 0.03125098, w: 0.7058637} + inSlope: {x: 0.66558653, y: -0.10900477, z: -0.6178799, w: -0.64583206} + outSlope: {x: 0.66558653, y: -0.10900477, z: -0.6178799, w: -0.64583206} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: 0.75219434, y: 0.01567591, z: -0.031848606, w: 0.6579845} + inSlope: {x: 0.62280536, y: -0.31766027, z: -0.97747046, w: -0.7516408} + outSlope: {x: 0.62280536, y: -0.31766027, z: -0.97747046, w: -0.7516408} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.78907996, y: -0.012599659, z: -0.087265335, w: 0.60793006} + inSlope: {x: 0.48874402, y: -0.47700998, z: -0.6847725, w: -0.7409056} + outSlope: {x: 0.48874402, y: -0.47700998, z: -0.6847725, w: -0.7409056} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: 0.80383456, y: -0.02737909, z: -0.11106139, w: 0.58375156} + inSlope: {x: 0.42305493, y: -0.45118153, z: -0.19520095, w: -0.63141245} + outSlope: {x: 0.42305493, y: -0.45118153, z: -0.19520095, w: -0.63141245} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: 0.81728363, y: -0.042678434, z: -0.10027874, w: 0.5658359} + inSlope: {x: 0.39314392, y: -0.058506325, z: 0.1512404, w: -0.542467} + outSlope: {x: 0.39314392, y: -0.058506325, z: 0.1512404, w: -0.542467} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.83004415, y: -0.03127951, z: -0.100978695, w: 0.5475871} + inSlope: {x: 0.17638566, y: 0.27008274, z: -0.1245286, w: -0.26773277} + outSlope: {x: 0.17638566, y: 0.27008274, z: -0.1245286, w: -0.26773277} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: 0.8290427, y: -0.02467292, z: -0.10858065, w: 0.54798704} + inSlope: {x: -0.33941123, y: 0.20286423, z: -0.33344263, w: 0.43669137} + outSlope: {x: -0.33941123, y: 0.20286423, z: -0.33344263, w: 0.43669137} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.80741674, y: -0.01775523, z: -0.1232082, w: 0.57669985} + inSlope: {x: -0.9385631, y: 0.49267417, z: 0.2306464, w: 1.3115976} + outSlope: {x: -0.9385631, y: 0.49267417, z: 0.2306464, w: 1.3115976} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: 0.7664718, y: 0.008172021, z: -0.09320422, w: 0.6354269} + inSlope: {x: -1.2086422, y: 1.0088326, z: 2.0317411, w: 1.6231624} + outSlope: {x: -1.2086422, y: 1.0088326, z: 2.0317411, w: 1.6231624} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.72684056, y: 0.0495003, z: 0.0122413, w: 0.6849107} + inSlope: {x: -0.50571126, y: 0.5926235, z: 2.6016536, w: 0.5794683} + outSlope: {x: -0.50571126, y: 0.5926235, z: 2.6016536, w: 0.5794683} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: 0.7327577, y: 0.047680285, z: 0.080239445, w: 0.67405814} + inSlope: {x: 0.30921313, y: -0.31647462, z: 1.0864215, w: -0.39942387} + outSlope: {x: 0.30921313, y: -0.31647462, z: 1.0864215, w: -0.39942387} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: 0.74745476, y: 0.028401995, z: 0.0846694, w: 0.65828246} + inSlope: {x: 0.26768184, y: -0.4059163, z: 0.09088333, w: -0.289338} + outSlope: {x: 0.26768184, y: -0.4059163, z: 0.09088333, w: -0.289338} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.75060314, y: 0.020619208, z: 0.08629833, w: 0.65476894} + inSlope: {x: -0.4390056, y: -0.1981445, z: 0.2243557, w: 0.45345825} + outSlope: {x: -0.4390056, y: -0.1981445, z: 0.2243557, w: 0.45345825} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: 0.7181877, y: 0.015192364, z: 0.09962645, w: 0.68851304} + inSlope: {x: -0.50706315, y: -0.33443135, z: -0.08192891, w: 0.5671106} + outSlope: {x: -0.50706315, y: -0.33443135, z: -0.08192891, w: 0.5671106} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5666667 + value: {x: 0.7167989, y: -0.001676234, z: 0.0808364, w: 0.69257635} + inSlope: {x: -0.25149128, y: -0.5172521, z: -0.863652, w: 0.34095815} + outSlope: {x: -0.25149128, y: -0.5172521, z: -0.863652, w: 0.34095815} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.7014216, y: -0.019291107, z: 0.042049672, w: 0.71124357} + inSlope: {x: -0.4616708, y: -0.557105, z: -1.0820913, w: 0.5087597} + outSlope: {x: -0.4616708, y: -0.557105, z: -1.0820913, w: 0.5087597} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6333334 + value: {x: 0.68602085, y: -0.038816568, z: 0.008696994, w: 0.72649366} + inSlope: {x: -0.6715655, y: -0.2591153, z: 0.014452517, w: 0.6125318} + outSlope: {x: -0.6715655, y: -0.2591153, z: 0.014452517, w: 0.6125318} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.6566506, y: -0.03656548, z: 0.043013114, w: 0.752079} + inSlope: {x: -1.0372987, y: 0.0019158274, z: 1.0353521, w: 0.83655596} + outSlope: {x: -1.0372987, y: 0.0019158274, z: 1.0353521, w: 0.83655596} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.70000005 + value: {x: 0.6168676, y: -0.03868885, z: 0.07772046, w: 0.78226405} + inSlope: {x: -2.3850358, y: 0.25712335, z: 0.9910661, w: 1.6229106} + outSlope: {x: -2.3850358, y: 0.25712335, z: 0.9910661, w: 1.6229106} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.4976483, y: -0.019423941, z: 0.10908419, w: 0.860273} + inSlope: {x: -3.8894355, y: 0.8897476, z: 0.49713802, w: 2.171826} + outSlope: {x: -3.8894355, y: 0.8897476, z: 0.49713802, w: 2.171826} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7666667 + value: {x: 0.3575719, y: 0.020627674, z: 0.11086297, w: 0.92705244} + inSlope: {x: -3.496904, y: 0.89680386, z: 0.6622807, w: 1.3649812} + outSlope: {x: -3.496904, y: 0.89680386, z: 0.6622807, w: 1.3649812} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000001 + value: {x: 0.26452118, y: 0.040363032, z: 0.15323627, w: 0.95127183} + inSlope: {x: -1.2631676, y: 0.74293256, z: 0.8311999, w: 0.26666752} + outSlope: {x: -1.2631676, y: 0.74293256, z: 0.8311999, w: 0.26666752} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.27336064, y: 0.0701565, z: 0.16627632, w: 0.9448303} + inSlope: {x: 2.1002133, y: 0.034947872, z: -0.23117837, w: -0.7230489} + outSlope: {x: 2.1002133, y: 0.034947872, z: -0.23117837, w: -0.7230489} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.86666673 + value: {x: 0.4045355, y: 0.04269284, z: 0.13782434, w: 0.90306854} + inSlope: {x: 3.2955391, y: -0.60050404, z: -0.77516186, w: -1.2441571} + outSlope: {x: 3.2955391, y: -0.60050404, z: -0.77516186, w: -1.2441571} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.90000004 + value: {x: 0.49306327, y: 0.030122885, z: 0.11459886, w: 0.8618865} + inSlope: {x: 2.5029755, y: -0.2603615, z: -0.69851243, w: -1.3182056} + outSlope: {x: 2.5029755, y: -0.2603615, z: -0.69851243, w: -1.3182056} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9666667 + value: {x: 0.63709277, y: 0.029725717, z: 0.063554, w: 0.7675872} + inSlope: {x: 1.7081289, y: 0.08729682, z: -0.7349645, w: -1.3319907} + outSlope: {x: 1.7081289, y: 0.08729682, z: -0.7349645, w: -1.3319907} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.6852757, y: 0.031155199, z: 0.042259265, w: 0.7263889} + inSlope: {x: 1.4454886, y: 0.042884484, z: -0.6388426, w: -1.2359506} + outSlope: {x: 1.4454886, y: 0.042884484, z: -0.6388426, w: -1.2359506} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.17869382, y: -0.036432676, z: 0.11227588, w: 0.97679853} + inSlope: {x: 0.0000017881392, y: -0.0000006705522, z: -0.0000013411044, w: 0} + outSlope: {x: 0.0000017881392, y: -0.0000006705522, z: -0.0000013411044, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.1786938, y: -0.036432743, z: 0.112276025, w: 0.97679853} + inSlope: {x: -0.007258949, y: 0.01897528, z: 0.0021997457, w: 0.0017684691} + outSlope: {x: -0.007258949, y: 0.01897528, z: 0.0021997457, w: 0.0017684691} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: 0.19185607, y: -0.037904646, z: 0.11956808, w: 0.97337455} + inSlope: {x: 0.81597656, y: -0.42468518, z: 0.20805728, w: -0.2200842} + outSlope: {x: 0.81597656, y: -0.42468518, z: 0.20805728, w: -0.2200842} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.23260818, y: -0.06348006, z: 0.126293, w: 0.96224415} + inSlope: {x: 1.8179672, y: -0.9711196, z: -0.062019832, w: -0.5442793} + outSlope: {x: 1.8179672, y: -0.9711196, z: -0.062019832, w: -0.5442793} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: 0.31305388, y: -0.10264595, z: 0.115433425, w: 0.93708926} + inSlope: {x: 2.034117, y: -0.8825092, z: -0.26529285, w: -0.7050902} + outSlope: {x: 2.034117, y: -0.8825092, z: -0.26529285, w: -0.7050902} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.36821598, y: -0.122314, z: 0.108606815, w: 0.91523814} + inSlope: {x: 1.0536437, y: -0.80461735, z: -0.10850218, w: -0.49854046} + outSlope: {x: 1.0536437, y: -0.80461735, z: -0.10850218, w: -0.49854046} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: 0.3832968, y: -0.1562871, z: 0.10819995, w: 0.90385324} + inSlope: {x: -0.6969891, y: -3.6191745, z: -0.6975465, w: -0.6482565} + outSlope: {x: -0.6969891, y: -3.6191745, z: -0.6975465, w: -0.6482565} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.32175, y: -0.36359248, z: 0.062103678, w: 0.872021} + inSlope: {x: -1.1760867, y: -2.9012485, z: -0.63029027, w: -0.3070249} + outSlope: {x: -1.1760867, y: -2.9012485, z: -0.63029027, w: -0.3070249} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: 0.30489096, y: -0.34970385, z: 0.06618056, w: 0.8833849} + inSlope: {x: -0.9689874, y: 1.105021, z: -0.30038098, w: 0.7331032} + outSlope: {x: -0.9689874, y: 1.105021, z: -0.30038098, w: 0.7331032} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: 0.25715083, y: -0.2899244, z: 0.04207828, w: 0.92089456} + inSlope: {x: -1.4622828, y: 2.0339944, z: -0.2549988, w: 1.0482767} + outSlope: {x: -1.4622828, y: 2.0339944, z: -0.2549988, w: 1.0482767} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.2074055, y: -0.2141043, z: 0.04918063, w: 0.95326996} + inSlope: {x: -1.2782077, y: 2.0529242, z: 0.49120444, w: 0.74052954} + outSlope: {x: -1.2782077, y: 2.0529242, z: 0.49120444, w: 0.74052954} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: 0.171937, y: -0.15306282, z: 0.07482526, w: 0.9702632} + inSlope: {x: -1.2338017, y: 2.4709365, z: 0.8622931, w: 0.47820616} + outSlope: {x: -1.2338017, y: 2.4709365, z: 0.8622931, w: 0.47820616} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5666667 + value: {x: 0.12515198, y: -0.049375057, z: 0.106666885, w: 0.9851504} + inSlope: {x: -0.6800201, y: 1.6295816, z: 0.7961551, w: 0.186095} + outSlope: {x: -0.6800201, y: 1.6295816, z: 0.7961551, w: 0.186095} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.12660229, y: -0.044423968, z: 0.12790227, w: 0.98266953} + inSlope: {x: 0.35405335, y: -0.114033714, z: 0.1923301, w: -0.077655315} + outSlope: {x: 0.35405335, y: -0.114033714, z: 0.1923301, w: -0.077655315} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6333334 + value: {x: 0.14875555, y: -0.05697732, z: 0.119488865, w: 0.9799734} + inSlope: {x: 0.3568366, y: -0.6356828, z: -0.4975307, w: -0.03642168} + outSlope: {x: 0.3568366, y: -0.6356828, z: -0.4975307, w: -0.03642168} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.15039141, y: -0.0868028, z: 0.09473357, w: 0.9802414} + inSlope: {x: -0.15928437, y: -0.87868774, z: -0.8713028, w: 0.026357159} + outSlope: {x: -0.15928437, y: -0.87868774, z: -0.8713028, w: 0.026357159} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.70000005 + value: {x: 0.13813658, y: -0.1155565, z: 0.061402008, w: 0.9817305} + inSlope: {x: 0.76330924, y: -1.1232686, z: -0.58861274, w: -0.2360874} + outSlope: {x: 0.76330924, y: -1.1232686, z: -0.58861274, w: -0.2360874} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.20127863, y: -0.16168736, z: 0.055492703, w: 0.9645023} + inSlope: {x: 1.600182, y: -0.7474691, z: 0.7004655, w: -0.48759347} + outSlope: {x: 1.600182, y: -0.7474691, z: 0.7004655, w: -0.48759347} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7666667 + value: {x: 0.24481536, y: -0.16538773, z: 0.10809976, w: 0.9492243} + inSlope: {x: 0.20072633, y: 0.76907486, z: 0.81975186, w: -0.005185604} + outSlope: {x: 0.20072633, y: 0.76907486, z: 0.81975186, w: -0.005185604} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000001 + value: {x: 0.21466039, y: -0.11041566, z: 0.11014287, w: 0.96415657} + inSlope: {x: -0.978347, y: 1.8833143, z: 0.06001331, w: 0.40945172} + outSlope: {x: -0.978347, y: 1.8833143, z: 0.06001331, w: 0.40945172} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.17959224, y: -0.03983347, z: 0.112100646, w: 0.9765211} + inSlope: {x: -0.541591, y: 1.1107712, z: 0.032613117, w: 0.18997926} + outSlope: {x: -0.541591, y: 1.1107712, z: 0.032613117, w: 0.18997926} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.86666673 + value: {x: 0.17855436, y: -0.03636431, z: 0.11231708, w: 0.97682184} + inSlope: {x: -0.015559258, y: 0.052036766, z: 0.0032508345, w: 0.0045087896} + outSlope: {x: -0.015559258, y: 0.052036766, z: 0.0032508345, w: 0.0045087896} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.17869002, y: -0.036386203, z: 0.11232068, w: 0.9767958} + inSlope: {x: 0.0043907803, y: -0.0007121272, z: 0.00011131178, w: -0.00084221445} + outSlope: {x: 0.0043907803, y: -0.0007121272, z: 0.00011131178, w: -0.00084221445} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot/mixamorig:RightToeBase + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.04573715, y: -0.039433047, z: -0.0727525, w: 0.99552006} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.04573715, y: -0.039433047, z: -0.0727525, w: 0.99552006} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot/mixamorig:RightToeBase/mixamorig:RightToe_End + m_CompressedRotationCurves: [] + m_EulerCurves: [] + m_PositionCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.00011512258, y: 0.015634341, z: 0.000060513354} + inSlope: {x: 0.00046405505, y: 0.007698803, z: -0.0069145593} + outSlope: {x: 0.00046405505, y: 0.007698803, z: -0.0069145593} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: -0.00009965402, y: 0.015890967, z: -0.00016997203} + inSlope: {x: 0.00036655754, y: 0.005420203, z: -0.0063417205} + outSlope: {x: 0.00036655835, y: 0.0054201377, z: -0.006341724} + tangentMode: 0 + weightedMode: 0 + 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.00009068541, y: 0.01599568, z: -0.00036226815} + inSlope: {x: 0.00013471358, y: 0.0009271396, z: -0.0047370717} + outSlope: {x: 0.0001347114, y: 0.00092751655, z: -0.0047370614} + tangentMode: 0 + weightedMode: 0 + 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.00009067323, y: 0.01595278, z: -0.0004857767} + inSlope: {x: -0.00004263371, y: -0.0027584347, z: -0.0035319938} + outSlope: {x: -0.000042633987, y: -0.002758536, z: -0.003531992} + tangentMode: 0 + weightedMode: 0 + 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.00009352772, y: 0.015811762, z: -0.0005977351} + inSlope: {x: -0.00016867118, y: -0.006016355, z: -0.0030174127} + outSlope: {x: -0.0001686739, y: -0.0060165958, z: -0.0030174197} + tangentMode: 0 + weightedMode: 0 + 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.00010191811, y: 0.015551688, z: -0.0006869378} + inSlope: {x: -0.0010942277, y: -0.009369613, z: -0.0035049538} + outSlope: {x: -0.001094233, y: -0.009369441, z: -0.0035049664} + tangentMode: 0 + weightedMode: 0 + 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.00016647621, y: 0.0151871275, z: -0.0008313989} + inSlope: {x: -0.0021808404, y: -0.010120631, z: -0.005905309} + outSlope: {x: -0.0021808394, y: -0.010120747, z: -0.005905332} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.23333333 + value: {x: -0.00024730706, y: 0.014876976, z: -0.001080625} + inSlope: {x: -0.002703338, y: -0.00901738, z: -0.0050951773} + outSlope: {x: -0.002703327, y: -0.009017422, z: -0.0050951494} + tangentMode: 0 + weightedMode: 0 + 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.00034669842, y: 0.014585973, z: -0.0011710759} + inSlope: {x: -0.002604189, y: -0.0071993107, z: -0.0026010256} + outSlope: {x: -0.0026042003, y: -0.0071995202, z: -0.002601038} + tangentMode: 0 + weightedMode: 0 + 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.00042092035, y: 0.014397012, z: -0.0012540269} + inSlope: {x: -0.001961034, y: -0.0040460937, z: -0.0038702232} + outSlope: {x: -0.001961034, y: -0.0040459987, z: -0.0038702313} + tangentMode: 0 + weightedMode: 0 + 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.00047743483, y: 0.014316246, z: -0.0014290911} + inSlope: {x: -0.0021137125, y: 0.0017007405, z: -0.0043910695} + outSlope: {x: -0.002113716, y: 0.0017009507, z: -0.0043910677} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: -0.00056183524, y: 0.0145104, z: -0.0015467647} + inSlope: {x: -0.0029925492, y: 0.009854696, z: -0.0007481166} + outSlope: {x: -0.0029925504, y: 0.009854538, z: -0.0007481732} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.4 + value: {x: -0.0006769393, y: 0.0149732195, z: -0.001478967} + inSlope: {x: -0.0028792643, y: 0.011784878, z: 0.00003171099} + outSlope: {x: -0.0028792962, y: 0.011784963, z: 0.00003174037} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.46666667 + value: {x: -0.00081795454, y: 0.015596111, z: -0.0016931941} + inSlope: {x: -0.0017262935, y: 0.0073944386, z: -0.004653294} + outSlope: {x: -0.0017262716, y: 0.0073944223, z: -0.004653263} + tangentMode: 0 + weightedMode: 0 + 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.0008688743, y: 0.015789015, z: -0.0018548674} + inSlope: {x: -0.0010614563, y: 0.0042796535, z: -0.0052809427} + outSlope: {x: -0.0010614574, y: 0.0042793984, z: -0.0052809087} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: -0.0008887188, y: 0.01588141, z: -0.0020452575} + inSlope: {x: -0.00014914531, y: 0.0012899725, z: -0.004589219} + outSlope: {x: -0.00014914047, y: 0.0012901607, z: -0.004589322} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.6 + value: {x: -0.0008493041, y: 0.015711341, z: -0.0022602195} + inSlope: {x: 0.001202565, y: -0.0075442516, z: -0.0026832775} + outSlope: {x: 0.0012025833, y: -0.0075445315, z: -0.0026833485} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.6333333 + value: {x: -0.0007986453, y: 0.015372055, z: -0.0023397072} + inSlope: {x: 0.0018253566, y: -0.012310353, z: -0.000556589} + outSlope: {x: 0.0018253209, y: -0.012310022, z: -0.00055657723} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.7 + value: {x: -0.0006545729, y: 0.014326564, z: -0.0021425618} + inSlope: {x: 0.002369715, y: -0.018731637, z: 0.007105095} + outSlope: {x: 0.0023696846, y: -0.01873122, z: 0.007104949} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.73333335 + value: {x: -0.0005696333, y: 0.013641895, z: -0.0018236534} + inSlope: {x: 0.002822525, y: -0.02150539, z: 0.009601382} + outSlope: {x: 0.002822554, y: -0.021505384, z: 0.009601516} + tangentMode: 0 + weightedMode: 0 + 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.00046640265, y: 0.012892853, z: -0.0015024632} + inSlope: {x: 0.0017274296, y: -0.0147007415, z: 0.0042128037} + outSlope: {x: 0.0017274157, y: -0.01470089, z: 0.0042127827} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.8 + value: {x: -0.00045447174, y: 0.012661828, z: -0.0015428023} + inSlope: {x: 0.00029356874, y: 0.007172293, z: 0.0007795367} + outSlope: {x: 0.00029356888, y: 0.0071723238, z: 0.00077948836} + tangentMode: 0 + weightedMode: 0 + 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.00044683114, y: 0.013371009, z: -0.0014504957} + inSlope: {x: 0.0009333615, y: 0.017460605, z: 0.0034292792} + outSlope: {x: 0.0009333465, y: 0.017460242, z: 0.003429264} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.8666667 + value: {x: -0.00039224818, y: 0.013825857, z: -0.0013141825} + inSlope: {x: 0.0018049998, y: 0.013992107, z: 0.004761959} + outSlope: {x: 0.0018050134, y: 0.013992148, z: 0.00476202} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.9 + value: {x: -0.00032649722, y: 0.014303814, z: -0.0011330284} + inSlope: {x: 0.002186675, y: 0.014182713, z: 0.007881953} + outSlope: {x: 0.0021866409, y: 0.01418271, z: 0.007881805} + tangentMode: 0 + weightedMode: 0 + 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.00024647056, y: 0.014771373, z: -0.0007887224} + inSlope: {x: 0.0024626101, y: 0.014068269, z: 0.012199231} + outSlope: {x: 0.002462629, y: 0.0140682, z: 0.01219933} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.96666664 + value: {x: -0.00016232207, y: 0.015241697, z: -0.00031974172} + inSlope: {x: 0.001970076, y: 0.012945078, z: 0.012738024} + outSlope: {x: 0.0019700478, y: 0.012944796, z: 0.012737796} + tangentMode: 0 + weightedMode: 0 + 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.00011513293, y: 0.015634373, z: 0.000060473678} + inSlope: {x: 0.0014156653, y: 0.011780122, z: 0.011406379} + outSlope: {x: 0.0014156653, y: 0.011780122, z: 0.011406379} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: jammo_mixamo_rig/mixamorig:Hips + m_ScaleCurves: [] + m_FloatCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 136 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_Weight + path: Idle Rig + classID: 114 + script: {fileID: 11500000, guid: 70b342d8ce5c2fd48b8fa3147d48d1d1, type: 3} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 136 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_Weight + path: Run Rig + classID: 114 + script: {fileID: 11500000, guid: 70b342d8ce5c2fd48b8fa3147d48d1d1, type: 3} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 136 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_Weight + path: WalkRig + classID: 114 + script: {fileID: 11500000, guid: 70b342d8ce5c2fd48b8fa3147d48d1d1, type: 3} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 136 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_Weight + path: Idle Aim Rig + classID: 114 + script: {fileID: 11500000, guid: 70b342d8ce5c2fd48b8fa3147d48d1d1, type: 3} + m_PPtrCurves: [] + m_SampleRate: 30 + 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: 4246725184 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 4246725184 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2306959401 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1873754471 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 506438108 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 629695243 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3507322457 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 863042527 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 4130676776 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2755413591 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3610507355 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 947492321 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1546517516 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3922524256 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3305817214 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1738789858 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3939473511 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2888714343 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 892423909 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2260115849 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 132937013 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2908942433 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3655212101 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2476962736 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 437649083 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2180861050 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 179915474 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1022168924 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3744267370 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 946238039 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2475629556 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1518235680 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 894090943 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3254654169 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1999565813 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 753291581 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3523356279 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2700601040 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3296194372 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2965308236 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 4081307055 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3771663227 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1504511970 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1718806592 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3714807079 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3971764881 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 4190678188 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 14784316 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 343860266 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1088794668 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1174220668 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 951947925 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1513986479 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3680013817 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 484251622 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3928024144 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2803917393 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1872214036 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 4180044095 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2091146011 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2120146506 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2853054640 + attribute: 1257374345 + script: {fileID: 11500000, guid: 70b342d8ce5c2fd48b8fa3147d48d1d1, type: 3} + typeID: 114 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 4230480715 + attribute: 1257374345 + script: {fileID: 11500000, guid: 70b342d8ce5c2fd48b8fa3147d48d1d1, type: 3} + typeID: 114 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 8577085 + attribute: 1257374345 + script: {fileID: 11500000, guid: 70b342d8ce5c2fd48b8fa3147d48d1d1, type: 3} + typeID: 114 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 378343073 + attribute: 1257374345 + script: {fileID: 11500000, guid: 70b342d8ce5c2fd48b8fa3147d48d1d1, type: 3} + typeID: 114 + 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: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0 + inSlope: 0 + 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: jammo_mixamo_rig + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_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.033333335 + value: -0 + inSlope: 0 + 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: jammo_mixamo_rig + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_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.033333335 + value: -0 + inSlope: 0 + 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: jammo_mixamo_rig + 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.033333335 + value: 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: jammo_mixamo_rig + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.019772055 + inSlope: 0.09346358 + outSlope: 0.09346358 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.0070663113 + inSlope: -0.014006419 + outSlope: -0.014006419 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.018996725 + inSlope: -0.07136887 + outSlope: -0.07136887 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.024170732 + inSlope: -0.017272182 + outSlope: -0.017272182 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.024024421 + inSlope: 0.008851853 + outSlope: 0.008851853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.022843499 + inSlope: 0.020449888 + outSlope: 0.020449888 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.019770896 + inSlope: 0.028357347 + outSlope: 0.028357347 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: jammo_mixamo_rig/mixamorig:Hips + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.34449154 + inSlope: 0.32542345 + outSlope: 0.32542345 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.41346553 + inSlope: -0.17791094 + outSlope: -0.17791094 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.26862413 + inSlope: -0.36515507 + outSlope: -0.36515507 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.23380217 + inSlope: -0.17159931 + outSlope: -0.17159931 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.23298767 + inSlope: 0.3153181 + outSlope: 0.3153181 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.2732233 + inSlope: 0.57591903 + outSlope: 0.57591903 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.3444916 + inSlope: 0.43329072 + outSlope: 0.43329072 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: jammo_mixamo_rig/mixamorig:Hips + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.042665917 + inSlope: -0.08775975 + outSlope: -0.08775975 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.035916455 + inSlope: -0.015938861 + outSlope: -0.015938861 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.034319047 + inSlope: -0.014445037 + outSlope: -0.014445037 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.03117326 + inSlope: 0.010250388 + outSlope: 0.010250388 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.033601422 + inSlope: 0.10187566 + outSlope: 0.10187566 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.04108881 + inSlope: 0.06950496 + outSlope: 0.06950496 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.042669024 + inSlope: -0.015318558 + outSlope: -0.015318558 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: jammo_mixamo_rig/mixamorig:Hips + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9376109 + inSlope: -0.11601447 + outSlope: -0.11601447 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.90978366 + inSlope: 0.081190474 + outSlope: 0.081190474 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.9624461 + inSlope: 0.10124715 + outSlope: 0.10124715 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.9714837 + inSlope: 0.04144993 + outSlope: 0.04144993 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.971602 + inSlope: -0.08294114 + outSlope: -0.08294114 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.9608012 + inSlope: -0.16674937 + outSlope: -0.16674937 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.9376108 + inSlope: -0.15412346 + outSlope: -0.15412346 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: jammo_mixamo_rig/mixamorig:Hips + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.100270174 + inSlope: -0.21884209 + outSlope: -0.21884209 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.06992642 + inSlope: 0.15821335 + outSlope: 0.15821335 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.16541013 + inSlope: 0.33411917 + outSlope: 0.33411917 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.17374249 + inSlope: -0.2278552 + outSlope: -0.2278552 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.1582532 + inSlope: -0.20154187 + outSlope: -0.20154187 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.14276522 + inSlope: -0.28323618 + outSlope: -0.28323618 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.10122554 + inSlope: -0.2460471 + outSlope: -0.2460471 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.00759154 + inSlope: -0.180815 + outSlope: -0.180815 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.05073195 + inSlope: 0.081839904 + outSlope: 0.081839904 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.0069904025 + inSlope: 0.1988926 + outSlope: 0.1988926 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.032593995 + inSlope: 0.3098353 + outSlope: 0.3098353 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.04535259 + inSlope: -0.21983133 + outSlope: -0.21983133 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.018215075 + inSlope: -0.29604763 + outSlope: -0.29604763 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.007401026 + inSlope: -0.08169122 + outSlope: -0.08169122 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.023999555 + inSlope: 0.07387909 + outSlope: 0.07387909 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.005961632 + inSlope: -0.14318465 + outSlope: -0.14318465 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.021340959 + inSlope: -0.0923541 + outSlope: -0.0923541 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.028519435 + inSlope: 0.07469512 + outSlope: 0.07469512 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.02116325 + inSlope: 0.16107413 + outSlope: 0.16107413 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.006345525 + inSlope: 0.26708847 + outSlope: 0.26708847 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.02366368 + inSlope: 0.09024027 + outSlope: 0.09024027 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9946418 + inSlope: 0.01745224 + outSlope: 0.01745224 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.9962435 + inSlope: -0.006271005 + outSlope: -0.006271005 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.9859692 + inSlope: -0.056263804 + outSlope: -0.056263804 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.9838383 + inSlope: 0.03173411 + outSlope: 0.03173411 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.9861294 + inSlope: 0.043509915 + outSlope: 0.043509915 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.9895686 + inSlope: 0.04768789 + outSlope: 0.04768789 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.9945545 + inSlope: 0.023560546 + outSlope: 0.023560546 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.13790089 + inSlope: 0.05749404 + outSlope: 0.05749404 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.13766722 + inSlope: -0.027144853 + outSlope: -0.027144853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.09304518 + inSlope: -0.081963584 + outSlope: -0.081963584 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.11911055 + inSlope: 0.20338029 + outSlope: 0.20338029 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.13694976 + inSlope: 0.12745914 + outSlope: 0.12745914 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.10317626 + inSlope: -0.019300727 + outSlope: -0.019300727 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.1045912 + inSlope: 0.022780785 + outSlope: 0.022780785 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.10258585 + inSlope: 0.017147925 + outSlope: 0.017147925 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.102163576 + inSlope: -0.017629713 + outSlope: -0.017629713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.103044756 + inSlope: 0.0029756902 + outSlope: 0.0029756902 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.042973205 + inSlope: -0.008323789 + outSlope: -0.008323789 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.03024806 + inSlope: -0.010793378 + outSlope: -0.010793378 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.006107764 + inSlope: 0.12203787 + outSlope: 0.12203787 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.02989841 + inSlope: -0.2088491 + outSlope: -0.2088491 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.042686604 + inSlope: -0.035459395 + outSlope: -0.035459395 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9841196 + inSlope: -0.010508894 + outSlope: -0.010508894 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.98447627 + inSlope: 0.005869568 + outSlope: 0.005869568 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.9903441 + inSlope: 0.010463295 + outSlope: 0.010463295 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.98715824 + inSlope: -0.032638907 + outSlope: -0.032638907 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.9842786 + inSlope: -0.018659253 + outSlope: -0.018659253 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.10742499 + inSlope: 0.053135898 + outSlope: 0.053135898 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.10973831 + inSlope: -0.026641604 + outSlope: -0.026641604 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.07103735 + inSlope: -0.055979803 + outSlope: -0.055979803 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.091655366 + inSlope: 0.1572749 + outSlope: 0.1572749 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.10656081 + inSlope: 0.11755932 + outSlope: 0.11755932 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.121163204 + inSlope: -0.021581275 + outSlope: -0.021581275 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.12023025 + inSlope: 0.02212342 + outSlope: 0.02212342 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.11353689 + inSlope: 0.03902737 + outSlope: 0.03902737 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.1177301 + inSlope: -0.05915657 + outSlope: -0.05915657 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.121252544 + inSlope: -0.005621245 + outSlope: -0.005621245 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.052161943 + inSlope: -0.02172075 + outSlope: -0.02172075 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.040487036 + inSlope: -0.003955309 + outSlope: -0.003955309 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.0073426515 + inSlope: 0.13273804 + outSlope: 0.13273804 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.035692368 + inSlope: -0.24050641 + outSlope: -0.24050641 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.051638644 + inSlope: -0.06257108 + outSlope: -0.06257108 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.985423 + inSlope: -0.009661316 + outSlope: -0.009661316 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.98583114 + inSlope: 0.0054878 + outSlope: 0.0054878 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.99096376 + inSlope: 0.009702442 + outSlope: 0.009702442 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.98816246 + inSlope: -0.030274093 + outSlope: -0.030274093 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.9855334 + inSlope: -0.016375795 + outSlope: -0.016375795 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.031698402 + inSlope: 0.040636804 + outSlope: 0.040636804 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.028613206 + inSlope: -0.07290488 + outSlope: -0.07290488 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.022167914 + inSlope: -0.0737112 + outSlope: -0.0737112 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.03170319 + inSlope: -0.095542334 + outSlope: -0.095542334 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.03710341 + inSlope: -0.0583728 + outSlope: -0.0583728 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.03624012 + inSlope: 0.068066254 + outSlope: 0.068066254 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.046017926 + inSlope: -0.09246503 + outSlope: -0.09246503 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.037101462 + inSlope: -0.081762075 + outSlope: -0.081762075 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.04702145 + inSlope: 0.0011510028 + outSlope: 0.0011510028 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.04693144 + inSlope: -0.0015342238 + outSlope: -0.0015342238 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.046531532 + inSlope: -0.0060176477 + outSlope: -0.0060176477 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.046998642 + inSlope: -0.002807046 + outSlope: -0.002807046 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9977011 + inSlope: 0.0034332273 + outSlope: 0.0034332273 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.99783033 + inSlope: -0.004628599 + outSlope: -0.004628599 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.99761003 + inSlope: 0.0023040182 + outSlope: 0.0023040182 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.9977021 + inSlope: 0.00013589872 + outSlope: 0.00013589872 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.02259958 + inSlope: 0.15474306 + outSlope: 0.15474306 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.021921083 + inSlope: -0.060494825 + outSlope: -0.060494825 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.039238732 + inSlope: -0.025020821 + outSlope: -0.025020821 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.028902654 + inSlope: 0.01763294 + outSlope: 0.01763294 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.028201064 + inSlope: 0.12748519 + outSlope: 0.12748519 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.022607395 + inSlope: 0.03185534 + outSlope: 0.03185534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.088279866 + inSlope: -0.110756 + outSlope: -0.110756 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.0927155 + inSlope: 0.067420684 + outSlope: 0.067420684 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.066872776 + inSlope: 0.16391432 + outSlope: 0.16391432 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.03602528 + inSlope: -0.016727358 + outSlope: -0.016727358 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.07006807 + inSlope: -0.3287239 + outSlope: -0.3287239 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.08827307 + inSlope: -0.22263116 + outSlope: -0.22263116 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.057703067 + inSlope: 0.03306348 + outSlope: 0.03306348 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.055985745 + inSlope: 0.12022522 + outSlope: 0.12022522 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.058363877 + inSlope: -0.19195005 + outSlope: -0.19195005 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.025081204 + inSlope: 0.090051904 + outSlope: 0.090051904 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.051119316 + inSlope: 0.1394842 + outSlope: 0.1394842 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.05771945 + inSlope: 0.07543385 + outSlope: 0.07543385 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.99416614 + inSlope: -0.008862019 + outSlope: -0.008862019 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.99387574 + inSlope: -0.0019258262 + outSlope: -0.0019258262 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.99527985 + inSlope: 0.021151006 + outSlope: 0.021151006 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.99861795 + inSlope: -0.0024300793 + outSlope: -0.0024300793 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.9958323 + inSlope: -0.026579801 + outSlope: -0.026579801 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.9941656 + inSlope: -0.02247157 + outSlope: -0.02247157 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.06928724 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.06928724 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head/mixamorig:HeadTop_End + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_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.033333335 + value: 0 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head/mixamorig:HeadTop_End + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_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.033333335 + value: -0 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head/mixamorig:HeadTop_End + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.99759674 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.99759674 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head/mixamorig:HeadTop_End + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.40506425 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.40506425 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head/mixamorig:LeftEar + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.45798013 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.45798013 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head/mixamorig:LeftEar + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.59357256 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.59357256 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head/mixamorig:LeftEar + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.5233056 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.5233056 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head/mixamorig:LeftEar + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.40506425 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.40506425 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head/mixamorig:RightEar + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.45798013 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.45798013 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head/mixamorig:RightEar + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.59357256 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.59357256 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head/mixamorig:RightEar + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.5233056 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.5233056 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head/mixamorig:RightEar + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.557443 + inSlope: -0.17619072 + outSlope: -0.17619072 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.51576555 + inSlope: 0.025211873 + outSlope: 0.025211873 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.57886493 + inSlope: 0.15021442 + outSlope: 0.15021442 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.58071196 + inSlope: -0.18765269 + outSlope: -0.18765269 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.55879444 + inSlope: -0.20993133 + outSlope: -0.20993133 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.35869876 + inSlope: -0.20995347 + outSlope: -0.20995347 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.40461305 + inSlope: 0.018459858 + outSlope: 0.018459858 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.34423363 + inSlope: 0.14931138 + outSlope: 0.14931138 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.34617198 + inSlope: -0.101538606 + outSlope: -0.101538606 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.35686055 + inSlope: -0.10021011 + outSlope: -0.10021011 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.39596063 + inSlope: 0.2560231 + outSlope: 0.2560231 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.44933438 + inSlope: -0.039609525 + outSlope: -0.039609525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.3655647 + inSlope: -0.23314339 + outSlope: -0.23314339 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.36842945 + inSlope: 0.3614027 + outSlope: 0.3614027 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.39816198 + inSlope: 0.25864297 + outSlope: 0.25864297 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.63545865 + inSlope: -0.12759805 + outSlope: -0.12759805 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.6069372 + inSlope: 0.020043256 + outSlope: 0.020043256 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.6424805 + inSlope: 0.07878271 + outSlope: 0.07878271 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.63812095 + inSlope: -0.09247724 + outSlope: -0.09247724 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.63392943 + inSlope: -0.030602247 + outSlope: -0.030602247 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.47588623 + inSlope: 0.17688988 + outSlope: 0.17688988 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.50280833 + inSlope: 0.07882339 + outSlope: 0.07882339 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.46024925 + inSlope: -0.35623404 + outSlope: -0.35623404 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.39513457 + inSlope: -0.22105828 + outSlope: -0.22105828 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.3929016 + inSlope: 0.29218602 + outSlope: 0.29218602 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.47354785 + inSlope: 0.35104606 + outSlope: 0.35104606 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.38874847 + inSlope: -0.083199434 + outSlope: -0.083199434 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.36169168 + inSlope: -0.10060694 + outSlope: -0.10060694 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.38516995 + inSlope: 0.07045136 + outSlope: 0.07045136 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.3926204 + inSlope: 0.062169585 + outSlope: 0.062169585 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.40105617 + inSlope: -0.04108876 + outSlope: -0.04108876 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.3855743 + inSlope: -0.0727675 + outSlope: -0.0727675 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.30751207 + inSlope: -0.19692688 + outSlope: -0.19692688 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.35669613 + inSlope: -0.20330244 + outSlope: -0.20330244 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.3663039 + inSlope: -0.024749639 + outSlope: -0.024749639 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.35250267 + inSlope: 0.13872647 + outSlope: 0.13872647 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.3376553 + inSlope: 0.0025641834 + outSlope: 0.0025641834 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.30903247 + inSlope: 0.28483298 + outSlope: 0.28483298 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.7265282 + inSlope: -0.1570308 + outSlope: -0.1570308 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.69937885 + inSlope: -0.10667233 + outSlope: -0.10667233 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.711081 + inSlope: 0.17964186 + outSlope: 0.17964186 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.7519706 + inSlope: 0.14975128 + outSlope: 0.14975128 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.755494 + inSlope: -0.12951049 + outSlope: -0.12951049 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.72909796 + inSlope: -0.06390816 + outSlope: -0.06390816 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.5352366 + inSlope: 0.07243394 + outSlope: 0.07243394 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.53765106 + inSlope: -0.23120284 + outSlope: -0.23120284 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.5198231 + inSlope: -0.076923996 + outSlope: -0.076923996 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.5325228 + inSlope: 0.13672557 + outSlope: 0.13672557 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.5289381 + inSlope: -0.1167977 + outSlope: -0.1167977 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.5247363 + inSlope: -0.28657338 + outSlope: -0.28657338 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.5098332 + inSlope: -0.2507346 + outSlope: -0.2507346 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.50802064 + inSlope: -0.12559266 + outSlope: -0.12559266 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.5014604 + inSlope: -0.0883171 + outSlope: -0.0883171 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.50213283 + inSlope: -0.029814545 + outSlope: -0.029814545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.5010209 + inSlope: -0.028564138 + outSlope: -0.028564138 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.49756846 + inSlope: -0.017931413 + outSlope: -0.017931413 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.5091063 + inSlope: 0.24586554 + outSlope: 0.24586554 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.51922745 + inSlope: 0.18183036 + outSlope: 0.18183036 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.5212283 + inSlope: 0.12382782 + outSlope: 0.12382782 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.5357654 + inSlope: 0.20216879 + outSlope: 0.20216879 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.5432732 + inSlope: -0.12704362 + outSlope: -0.12704362 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.53636277 + inSlope: -0.012878211 + outSlope: -0.012878211 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.5347506 + inSlope: 0.06895503 + outSlope: 0.06895503 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.5409598 + inSlope: -0.06482385 + outSlope: -0.06482385 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.530429 + inSlope: 0.012727991 + outSlope: 0.012727991 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.5418083 + inSlope: 0.34137937 + outSlope: 0.34137937 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.6444079 + inSlope: 0.5476141 + outSlope: 0.5476141 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.66266173 + inSlope: 0.04216434 + outSlope: 0.04216434 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.6472189 + inSlope: 0.1260897 + outSlope: 0.1260897 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.6710677 + inSlope: 0.43254995 + outSlope: 0.43254995 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.67605555 + inSlope: 0.137904 + outSlope: 0.137904 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.6802613 + inSlope: -0.007637106 + outSlope: -0.007637106 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.6755464 + inSlope: 0.09507631 + outSlope: 0.09507631 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.68659973 + inSlope: 0.21103354 + outSlope: 0.21103354 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.6896153 + inSlope: 0.16872974 + outSlope: 0.16872974 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.6978484 + inSlope: 0.19296171 + outSlope: 0.19296171 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.7050493 + inSlope: 0.16407867 + outSlope: 0.16407867 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.713418 + inSlope: 0.14193793 + outSlope: 0.14193793 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.7139853 + inSlope: -0.02307684 + outSlope: -0.02307684 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.71341735 + inSlope: -0.16610906 + outSlope: -0.16610906 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.7029114 + inSlope: -0.18275757 + outSlope: -0.18275757 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.6987245 + inSlope: -0.06156563 + outSlope: -0.06156563 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.6847922 + inSlope: -0.12061794 + outSlope: -0.12061794 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.672339 + inSlope: -0.11464386 + outSlope: -0.11464386 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.66936487 + inSlope: 0.0011729412 + outSlope: 0.0011729412 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.6724172 + inSlope: -0.2741945 + outSlope: -0.2741945 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.65108526 + inSlope: -0.23255488 + outSlope: -0.23255488 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.6569136 + inSlope: 0.1748498 + outSlope: 0.1748498 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.28845373 + inSlope: 0.6315359 + outSlope: 0.6315359 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.26740253 + inSlope: -0.053535104 + outSlope: -0.053535104 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.29202273 + inSlope: 0.11269429 + outSlope: 0.11269429 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.25988957 + inSlope: 0.5490392 + outSlope: 0.5490392 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.25542012 + inSlope: 0.11609362 + outSlope: 0.11609362 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.25215 + inSlope: -0.16991428 + outSlope: -0.16991428 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.26674774 + inSlope: 0.00966455 + outSlope: 0.00966455 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.2515057 + inSlope: 0.25795454 + outSlope: 0.25795454 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.24955077 + inSlope: 0.2281619 + outSlope: 0.2281619 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.23629491 + inSlope: 0.29689127 + outSlope: 0.29689127 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.2249895 + inSlope: 0.24310589 + outSlope: 0.24310589 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.21355096 + inSlope: 0.19675352 + outSlope: 0.19675352 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.21146543 + inSlope: 0.038888413 + outSlope: 0.038888413 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.20852903 + inSlope: -0.20379227 + outSlope: -0.20379227 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.2250516 + inSlope: -0.23753934 + outSlope: -0.23753934 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.22345516 + inSlope: 0.024259463 + outSlope: 0.024259463 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.23819484 + inSlope: -0.23100327 + outSlope: -0.23100327 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.259024 + inSlope: -0.16200183 + outSlope: -0.16200183 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.26356614 + inSlope: 0.07775482 + outSlope: 0.07775482 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.25384033 + inSlope: -0.29138008 + outSlope: -0.29138008 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.28299144 + inSlope: -0.3249964 + outSlope: -0.3249964 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.27550673 + inSlope: 0.22454134 + outSlope: 0.22454134 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.46373984 + inSlope: -0.48550484 + outSlope: -0.48550484 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.44755635 + inSlope: 0.1687373 + outSlope: 0.1687373 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.474989 + inSlope: -0.029587418 + outSlope: -0.029587418 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.44558385 + inSlope: -0.45137012 + outSlope: -0.45137012 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.44489765 + inSlope: -0.0038418178 + outSlope: -0.0038418178 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.44532773 + inSlope: 0.24205229 + outSlope: 0.24205229 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.46103448 + inSlope: 0.14864123 + outSlope: 0.14864123 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.45523715 + inSlope: -0.030327294 + outSlope: -0.030327294 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.45901266 + inSlope: -0.036438707 + outSlope: -0.036438707 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.4528079 + inSlope: -0.105904795 + outSlope: -0.105904795 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.4486238 + inSlope: -0.10712783 + outSlope: -0.10712783 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.44481048 + inSlope: -0.10965671 + outSlope: -0.10965671 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.431646 + inSlope: -0.23506698 + outSlope: -0.23506698 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.42184618 + inSlope: -0.047607385 + outSlope: -0.047607385 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.42847216 + inSlope: 0.030859113 + outSlope: 0.030859113 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.41809982 + inSlope: -0.1420292 + outSlope: -0.1420292 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.4232933 + inSlope: 0.22762011 + outSlope: 0.22762011 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.4395245 + inSlope: 0.095990025 + outSlope: 0.095990025 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.44331202 + inSlope: -0.041062247 + outSlope: -0.041062247 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.436787 + inSlope: 0.29985267 + outSlope: 0.29985267 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.46330217 + inSlope: 0.1396802 + outSlope: 0.1396802 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.446099 + inSlope: -0.51609504 + outSlope: -0.51609504 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.05744914 + inSlope: 0.16528967 + outSlope: 0.16528967 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.051939484 + inSlope: 0.1247787 + outSlope: 0.1247787 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.04913056 + inSlope: 0.0057943016 + outSlope: 0.0057943016 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.051553197 + inSlope: -0.023953348 + outSlope: -0.023953348 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.05072745 + inSlope: 0.037491754 + outSlope: 0.037491754 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.049053747 + inSlope: 0.096821465 + outSlope: 0.096821465 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.044272684 + inSlope: 0.19069901 + outSlope: 0.19069901 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.03634048 + inSlope: 0.22608998 + outSlope: 0.22608998 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.02920002 + inSlope: 0.23099856 + outSlope: 0.23099856 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.012482734 + inSlope: 0.18479839 + outSlope: 0.18479839 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.008620684 + inSlope: 0.21278039 + outSlope: 0.21278039 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.0017026325 + inSlope: 0.16865744 + outSlope: 0.16865744 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.00661689 + inSlope: -0.26231182 + outSlope: -0.26231182 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.016749278 + inSlope: -0.3133049 + outSlope: -0.3133049 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.027503902 + inSlope: -0.28979707 + outSlope: -0.28979707 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.046550404 + inSlope: -0.29295033 + outSlope: -0.29295033 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.07324801 + inSlope: 0.03588044 + outSlope: 0.03588044 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.06331267 + inSlope: 0.074508764 + outSlope: 0.074508764 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.060396954 + inSlope: 0.09624861 + outSlope: 0.09624861 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.056896098 + inSlope: 0.0839006 + outSlope: 0.0839006 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.05480358 + inSlope: -0.046833314 + outSlope: -0.046833314 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.060018316 + inSlope: -0.15644222 + outSlope: -0.15644222 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.18112116 + inSlope: -0.89683765 + outSlope: -0.89683765 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.15122657 + inSlope: 0.19460186 + outSlope: 0.19460186 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.19409461 + inSlope: -0.05630505 + outSlope: -0.05630505 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.14747289 + inSlope: -0.763724 + outSlope: -0.763724 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.14317967 + inSlope: -0.09891094 + outSlope: -0.09891094 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.14087883 + inSlope: 0.29425874 + outSlope: 0.29425874 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.16279693 + inSlope: 0.122227445 + outSlope: 0.122227445 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.14902733 + inSlope: -0.12057514 + outSlope: -0.12057514 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.15475859 + inSlope: -0.035077035 + outSlope: -0.035077035 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.1480962 + inSlope: 0.075079285 + outSlope: 0.075079285 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.15169415 + inSlope: -0.05872709 + outSlope: -0.05872709 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.14418106 + inSlope: -0.07218887 + outSlope: -0.07218887 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.14850006 + inSlope: -0.06887995 + outSlope: -0.06887995 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.1432735 + inSlope: 0.18343812 + outSlope: 0.18343812 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.16072927 + inSlope: 0.18855676 + outSlope: 0.18855676 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.15000421 + inSlope: -0.13536927 + outSlope: -0.13536927 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.15815072 + inSlope: 0.1555253 + outSlope: 0.1555253 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.16386636 + inSlope: -0.0077504776 + outSlope: -0.0077504776 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.16318397 + inSlope: -0.3005748 + outSlope: -0.3005748 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.14382802 + inSlope: 0.26773375 + outSlope: 0.26773375 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.18103284 + inSlope: 0.18727896 + outSlope: 0.18727896 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.15631327 + inSlope: -0.7415877 + outSlope: -0.7415877 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.06750012 + inSlope: 0.08939802 + outSlope: 0.08939802 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.070480056 + inSlope: 0.1294036 + outSlope: 0.1294036 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.07612703 + inSlope: 0.032704845 + outSlope: 0.032704845 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.07266038 + inSlope: -0.021660281 + outSlope: -0.021660281 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.07468301 + inSlope: 0.06697007 + outSlope: 0.06697007 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.07712505 + inSlope: 0.1360976 + outSlope: 0.1360976 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.083756186 + inSlope: 0.12627412 + outSlope: 0.12627412 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.08554333 + inSlope: 0.075214066 + outSlope: 0.075214066 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.08877046 + inSlope: 0.055720884 + outSlope: 0.055720884 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.09106643 + inSlope: -0.0016764924 + outSlope: -0.0016764924 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.089146286 + inSlope: 0.010741206 + outSlope: 0.010741206 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.09178251 + inSlope: -0.0018263981 + outSlope: -0.0018263981 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.08131859 + inSlope: -0.17032999 + outSlope: -0.17032999 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.07488049 + inSlope: -0.12516831 + outSlope: -0.12516831 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.072974026 + inSlope: -0.04953481 + outSlope: -0.04953481 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.068680875 + inSlope: -0.08586869 + outSlope: -0.08586869 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.06615506 + inSlope: 0.08869935 + outSlope: 0.08869935 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.06716409 + inSlope: -0.036536913 + outSlope: -0.036536913 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.06697448 + inSlope: -0.0316116 + outSlope: -0.0316116 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.06505665 + inSlope: 0.023581607 + outSlope: 0.023581607 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.068546586 + inSlope: 0.017615758 + outSlope: 0.017615758 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.066231035 + inSlope: -0.0694666 + outSlope: -0.0694666 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9794583 + inSlope: 0.15468298 + outSlope: 0.15468298 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.9846144 + inSlope: -0.040028393 + outSlope: -0.040028393 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.9767897 + inSlope: 0.006465897 + outSlope: 0.006465897 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.98504543 + inSlope: 0.13170896 + outSlope: 0.13170896 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.9855703 + inSlope: 0.011295677 + outSlope: 0.011295677 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.9857985 + inSlope: -0.052041985 + outSlope: -0.052041985 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.98210084 + inSlope: -0.020145152 + outSlope: -0.020145152 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.98445547 + inSlope: 0.021328036 + outSlope: 0.021328036 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.9835227 + inSlope: 0.0070399055 + outSlope: 0.0070399055 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.98469216 + inSlope: -0.008449853 + outSlope: -0.008449853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.98436147 + inSlope: 0.008880783 + outSlope: 0.008880783 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.9852842 + inSlope: 0.011622895 + outSlope: 0.011622895 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.9855411 + inSlope: 0.021956552 + outSlope: 0.021956552 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.9867042 + inSlope: -0.024424177 + outSlope: -0.024424177 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.9839128 + inSlope: -0.03269698 + outSlope: -0.03269698 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.98519784 + inSlope: 0.013157124 + outSlope: 0.013157124 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.9824697 + inSlope: -0.028207876 + outSlope: -0.028207876 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.98215497 + inSlope: 0.008596482 + outSlope: 0.008596482 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.9824651 + inSlope: 0.054997765 + outSlope: 0.054997765 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.9858215 + inSlope: -0.043673646 + outSlope: -0.043673646 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.9795535 + inSlope: -0.032494992 + outSlope: -0.032494992 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.98365515 + inSlope: 0.12304914 + outSlope: 0.12304914 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.22189732 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.22189732 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.13689648 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.13689648 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.25379986 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.25379986 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.931454 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.931454 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.055517823 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.055517823 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.13071369 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.13071369 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.13998024 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.13998024 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.97991693 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.97991693 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.22361796 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.22361796 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2/mixamorig:LeftHandThumb3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.031642 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.031642 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2/mixamorig:LeftHandThumb3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.10459676 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.10459676 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2/mixamorig:LeftHandThumb3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.96853155 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.96853155 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2/mixamorig:LeftHandThumb3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.020066746 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.020066746 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2/mixamorig:LeftHandThumb3/mixamorig:LeftHandThumb4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.04093233 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.04093233 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2/mixamorig:LeftHandThumb3/mixamorig:LeftHandThumb4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.014504516 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.014504516 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2/mixamorig:LeftHandThumb3/mixamorig:LeftHandThumb4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9988551 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.9988551 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2/mixamorig:LeftHandThumb3/mixamorig:LeftHandThumb4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.17390512 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.17390512 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.066170156 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.066170156 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.02274008 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.02274008 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9822736 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.9822736 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.24460982 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.24460982 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0050665447 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.0050665447 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.033822484 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.033822484 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9690183 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.9690183 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.24556129 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.24556129 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2/mixamorig:LeftHandIndex3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.00000026623306 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.00000026623306 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2/mixamorig:LeftHandIndex3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.032646764 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.032646764 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2/mixamorig:LeftHandIndex3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9688312 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.9688312 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2/mixamorig:LeftHandIndex3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.04448857 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.04448857 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2/mixamorig:LeftHandIndex3/mixamorig:LeftHandIndex4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.000000017893417 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.000000017893417 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2/mixamorig:LeftHandIndex3/mixamorig:LeftHandIndex4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.000000019682918 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.000000019682918 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2/mixamorig:LeftHandIndex3/mixamorig:LeftHandIndex4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9990099 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.9990099 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2/mixamorig:LeftHandIndex3/mixamorig:LeftHandIndex4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.17314613 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.17314613 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.06403215 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.06403215 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.024896596 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.024896596 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.98249704 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.98249704 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.38609514 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.38609514 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.012463127 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.012463127 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.055941783 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.055941783 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.92067677 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.92067677 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.3709092 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.3709092 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2/mixamorig:LeftHandMiddle3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0028794839 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.0028794839 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2/mixamorig:LeftHandMiddle3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.05047345 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.05047345 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2/mixamorig:LeftHandMiddle3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.92729205 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.92729205 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2/mixamorig:LeftHandMiddle3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.010558618 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.010558618 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2/mixamorig:LeftHandMiddle3/mixamorig:LeftHandMiddle4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.002861393 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.002861393 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2/mixamorig:LeftHandMiddle3/mixamorig:LeftHandMiddle4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0028610048 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.0028610048 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2/mixamorig:LeftHandMiddle3/mixamorig:LeftHandMiddle4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9999361 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.9999361 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2/mixamorig:LeftHandMiddle3/mixamorig:LeftHandMiddle4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.055216026 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.055216026 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.08593862 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.08593862 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.020107478 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.020107478 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.99456596 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.99456596 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.43159866 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.43159866 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.00012865354 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.00012865354 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.057380266 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.057380266 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.90023893 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.90023893 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.27317584 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.27317584 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2/mixamorig:LeftHandPinky3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.000000019447892 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.000000019447892 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2/mixamorig:LeftHandPinky3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.036279585 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.036279585 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2/mixamorig:LeftHandPinky3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9612798 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.9612798 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2/mixamorig:LeftHandPinky3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.044519026 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.044519026 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2/mixamorig:LeftHandPinky3/mixamorig:LeftHandPinky4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.00000008558798 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.00000008558798 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2/mixamorig:LeftHandPinky3/mixamorig:LeftHandPinky4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.000000001248373 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.000000001248373 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2/mixamorig:LeftHandPinky3/mixamorig:LeftHandPinky4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9990086 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.9990086 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2/mixamorig:LeftHandPinky3/mixamorig:LeftHandPinky4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.41676554 + inSlope: 0.06862968 + outSlope: 0.06862968 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.43425742 + inSlope: -0.04769147 + outSlope: -0.04769147 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.4074227 + inSlope: -0.059727423 + outSlope: -0.059727423 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.4167664 + inSlope: 0.09945551 + outSlope: 0.09945551 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.55409116 + inSlope: -0.12808621 + outSlope: -0.12808621 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.521472 + inSlope: 0.090222366 + outSlope: 0.090222366 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.5680986 + inSlope: 0.11082529 + outSlope: 0.11082529 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.5540897 + inSlope: -0.17295258 + outSlope: -0.17295258 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.50986093 + inSlope: 0.053817626 + outSlope: 0.053817626 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.4950146 + inSlope: -0.04588366 + outSlope: -0.04588366 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.51699275 + inSlope: -0.04730433 + outSlope: -0.04730433 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.509861 + inSlope: 0.07960446 + outSlope: 0.07960446 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.5092459 + inSlope: 0.13569117 + outSlope: 0.13569117 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.5426306 + inSlope: -0.090487905 + outSlope: -0.090487905 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.49395266 + inSlope: -0.1273857 + outSlope: -0.1273857 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.50924665 + inSlope: 0.18917102 + outSlope: 0.18917102 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.44263718 + inSlope: 0.06531805 + outSlope: 0.06531805 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.45646033 + inSlope: 0.08028521 + outSlope: 0.08028521 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.46632072 + inSlope: 0.054347817 + outSlope: 0.054347817 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.46941212 + inSlope: 0.06998013 + outSlope: 0.06998013 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.47291672 + inSlope: 0.096011415 + outSlope: 0.096011415 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.47581288 + inSlope: 0.094979264 + outSlope: 0.094979264 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.47924867 + inSlope: 0.08644406 + outSlope: 0.08644406 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.48157582 + inSlope: 0.042602893 + outSlope: 0.042602893 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.48098388 + inSlope: -0.045625284 + outSlope: -0.045625284 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.47463816 + inSlope: -0.11726527 + outSlope: -0.11726527 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.46960798 + inSlope: -0.16953173 + outSlope: -0.16953173 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.46333605 + inSlope: -0.18172325 + outSlope: -0.18172325 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.45235488 + inSlope: -0.17303246 + outSlope: -0.17303246 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.4459576 + inSlope: -0.17211112 + outSlope: -0.17211112 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.43939227 + inSlope: -0.022258332 + outSlope: -0.022258332 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.43939692 + inSlope: 0.015037819 + outSlope: 0.015037819 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.44335887 + inSlope: 0.08892246 + outSlope: 0.08892246 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0460412 + inSlope: 0.12222133 + outSlope: 0.12222133 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.038830176 + inSlope: -0.091048345 + outSlope: -0.091048345 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.02729528 + inSlope: -0.16366419 + outSlope: -0.16366419 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.008996358 + inSlope: -0.24782953 + outSlope: -0.24782953 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.014288524 + inSlope: -0.22526684 + outSlope: -0.22526684 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.02401415 + inSlope: 0.013128474 + outSlope: 0.013128474 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.013413292 + inSlope: -0.1703029 + outSlope: -0.1703029 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.035367656 + inSlope: -0.1994216 + outSlope: -0.1994216 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.009107712 + inSlope: 0.494387 + outSlope: 0.494387 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.035236426 + inSlope: 0.3234396 + outSlope: 0.3234396 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.043803766 + inSlope: 0.48932737 + outSlope: 0.48932737 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.067858234 + inSlope: 0.44448894 + outSlope: 0.44448894 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.06941141 + inSlope: 0.12748373 + outSlope: 0.12748373 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.08193524 + inSlope: 0.112890616 + outSlope: 0.112890616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.06611513 + inSlope: -0.44173416 + outSlope: -0.44173416 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.04748849 + inSlope: -0.28422865 + outSlope: -0.28422865 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.047614932 + inSlope: 0.013451738 + outSlope: 0.013451738 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.35771513 + inSlope: 0.011086463 + outSlope: 0.011086463 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.34439954 + inSlope: -0.21314484 + outSlope: -0.21314484 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.32526222 + inSlope: -0.13610156 + outSlope: -0.13610156 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.30746695 + inSlope: -0.17942804 + outSlope: -0.17942804 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.29828265 + inSlope: -0.22716689 + outSlope: -0.22716689 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.2923225 + inSlope: -0.046978895 + outSlope: -0.046978895 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.29515073 + inSlope: -0.16524662 + outSlope: -0.16524662 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.28130606 + inSlope: -0.1666329 + outSlope: -0.1666329 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.28915077 + inSlope: 0.12698157 + outSlope: 0.12698157 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.30808103 + inSlope: 0.29888928 + outSlope: 0.29888928 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.3188045 + inSlope: 0.45179278 + outSlope: 0.45179278 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.33820054 + inSlope: 0.44153333 + outSlope: 0.44153333 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.3470429 + inSlope: 0.1693419 + outSlope: 0.1693419 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.3595295 + inSlope: 0.22368968 + outSlope: 0.22368968 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.36009246 + inSlope: -0.15091352 + outSlope: -0.15091352 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.35189462 + inSlope: -0.07775575 + outSlope: -0.07775575 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.3579712 + inSlope: 0.091873795 + outSlope: 0.091873795 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.8209704 + inSlope: -0.047339197 + outSlope: -0.047339197 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.81946635 + inSlope: 0.048866265 + outSlope: 0.048866265 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.8221949 + inSlope: 0.028048756 + outSlope: 0.028048756 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.82766867 + inSlope: 0.024353547 + outSlope: 0.024353547 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.82895905 + inSlope: 0.022973998 + outSlope: 0.022973998 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.82920027 + inSlope: -0.037569705 + outSlope: -0.037569705 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.8264544 + inSlope: 0.0011551753 + outSlope: 0.0011551753 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.8292773 + inSlope: 0.02873724 + outSlope: 0.02873724 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.82762516 + inSlope: -0.011622002 + outSlope: -0.011622002 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.8237494 + inSlope: -0.057596877 + outSlope: -0.057596877 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.82213944 + inSlope: -0.11183655 + outSlope: -0.11183655 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.81629366 + inSlope: -0.1088307 + outSlope: -0.1088307 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.81860757 + inSlope: 0.010220911 + outSlope: 0.010220911 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.81556547 + inSlope: -0.013066005 + outSlope: -0.013066005 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.8203028 + inSlope: 0.11095581 + outSlope: 0.11095581 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.82513356 + inSlope: 0.04536501 + outSlope: 0.04536501 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.8203794 + inSlope: -0.08843251 + outSlope: -0.08843251 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.15674545 + inSlope: 0.115999274 + outSlope: 0.115999274 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.16913462 + inSlope: 0.09535902 + outSlope: 0.09535902 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.17767674 + inSlope: 0.10606462 + outSlope: 0.10606462 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.18031849 + inSlope: 0.10251807 + outSlope: 0.10251807 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.18935677 + inSlope: 0.10373594 + outSlope: 0.10373594 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.191427 + inSlope: -0.003966095 + outSlope: -0.003966095 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.18909237 + inSlope: -0.1097469 + outSlope: -0.1097469 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.18411055 + inSlope: -0.16348846 + outSlope: -0.16348846 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.17295115 + inSlope: -0.16478868 + outSlope: -0.16478868 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.15426104 + inSlope: -0.17036119 + outSlope: -0.17036119 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.149183 + inSlope: 0.21216196 + outSlope: 0.21216196 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.16840515 + inSlope: 0.20047311 + outSlope: 0.20047311 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.16254786 + inSlope: -0.42070502 + outSlope: -0.42070502 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.14035812 + inSlope: -0.3340398 + outSlope: -0.3340398 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.14027852 + inSlope: 0.021410042 + outSlope: 0.021410042 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.14456938 + inSlope: 0.11934464 + outSlope: 0.11934464 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.14974177 + inSlope: 0.1366981 + outSlope: 0.1366981 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.15573569 + inSlope: 0.061592966 + outSlope: 0.061592966 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.20831138 + inSlope: -0.25691584 + outSlope: -0.25691584 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.19810209 + inSlope: 0.0038811564 + outSlope: 0.0038811564 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.19908455 + inSlope: 0.25908643 + outSlope: 0.25908643 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.1829408 + inSlope: 0.3008424 + outSlope: 0.3008424 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.17595805 + inSlope: 0.19010714 + outSlope: 0.19010714 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.16635458 + inSlope: -0.0138652325 + outSlope: -0.0138652325 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.1768824 + inSlope: 0.33344197 + outSlope: 0.33344197 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.14412515 + inSlope: 0.46856454 + outSlope: 0.46856454 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.15282343 + inSlope: -0.13810085 + outSlope: -0.13810085 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.16458258 + inSlope: -0.14495039 + outSlope: -0.14495039 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.16880012 + inSlope: -0.59240055 + outSlope: -0.59240055 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.20407592 + inSlope: -0.5914488 + outSlope: -0.5914488 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.20823 + inSlope: 0.20001686 + outSlope: 0.20001686 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.19074145 + inSlope: -0.020172268 + outSlope: -0.020172268 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.20957479 + inSlope: -0.3111917 + outSlope: -0.3111917 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.20787476 + inSlope: 0.25549126 + outSlope: 0.25549126 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.19445479 + inSlope: 0.07703611 + outSlope: 0.07703611 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.20836128 + inSlope: -0.16866864 + outSlope: -0.16866864 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.84292865 + inSlope: -0.051117536 + outSlope: -0.051117536 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.8419632 + inSlope: -0.03750444 + outSlope: -0.03750444 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.8400183 + inSlope: -0.022625329 + outSlope: -0.022625329 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.83927286 + inSlope: -0.0014832616 + outSlope: -0.0014832616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.8380005 + inSlope: -0.0006732084 + outSlope: -0.0006732084 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.8398745 + inSlope: 0.07645548 + outSlope: 0.07645548 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.8430975 + inSlope: 0.12053676 + outSlope: 0.12053676 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.8479103 + inSlope: 0.15904516 + outSlope: 0.15904516 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.8585986 + inSlope: 0.11701225 + outSlope: 0.11701225 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.86619425 + inSlope: 0.050623134 + outSlope: 0.050623134 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.86745346 + inSlope: -0.058074385 + outSlope: -0.058074385 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.8623226 + inSlope: -0.10854368 + outSlope: -0.10854368 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.8602172 + inSlope: -0.029329037 + outSlope: -0.029329037 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.86036736 + inSlope: -0.049393825 + outSlope: -0.049393825 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.8569243 + inSlope: -0.09449603 + outSlope: -0.09449603 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.8510314 + inSlope: -0.10388285 + outSlope: -0.10388285 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.8471421 + inSlope: -0.10148942 + outSlope: -0.10148942 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.8430858 + inSlope: -0.0353891 + outSlope: -0.0353891 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.47064698 + inSlope: -0.063845515 + outSlope: -0.063845515 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.4724903 + inSlope: 0.034261648 + outSlope: 0.034261648 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.4724042 + inSlope: 0.10487572 + outSlope: 0.10487572 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.47920665 + inSlope: 0.08324415 + outSlope: 0.08324415 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.48056003 + inSlope: 0.029015657 + outSlope: 0.029015657 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.4798882 + inSlope: -0.13858797 + outSlope: -0.13858797 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.47132084 + inSlope: -0.06142164 + outSlope: -0.06142164 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.47579342 + inSlope: -0.062544025 + outSlope: -0.062544025 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.45775694 + inSlope: -0.20119825 + outSlope: -0.20119825 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.44589642 + inSlope: -0.092267126 + outSlope: -0.092267126 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.44359377 + inSlope: -0.21246864 + outSlope: -0.21246864 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.43173185 + inSlope: -0.1113481 + outSlope: -0.1113481 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.43617058 + inSlope: 0.29374993 + outSlope: 0.29374993 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.4513152 + inSlope: 0.20045601 + outSlope: 0.20045601 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.44953433 + inSlope: 0.03403313 + outSlope: 0.03403313 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.46003634 + inSlope: 0.26560122 + outSlope: 0.26560122 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.47129083 + inSlope: 0.17485307 + outSlope: 0.17485307 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.47067848 + inSlope: -0.030442208 + outSlope: -0.030442208 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.084640235 + inSlope: 0.12131161 + outSlope: 0.12131161 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.080596514 + inSlope: 0.045759935 + outSlope: 0.045759935 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.08243151 + inSlope: -0.027358085 + outSlope: -0.027358085 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.0795196 + inSlope: 0.05645112 + outSlope: 0.05645112 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.078181505 + inSlope: -0.023899043 + outSlope: -0.023899043 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.08111287 + inSlope: -0.055458363 + outSlope: -0.055458363 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.08187873 + inSlope: 0.01952612 + outSlope: 0.01952612 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.079811126 + inSlope: -0.01977875 + outSlope: -0.01977875 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.08319731 + inSlope: -0.047084954 + outSlope: -0.047084954 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.08295012 + inSlope: -0.17814858 + outSlope: -0.17814858 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.09507387 + inSlope: -0.3111542 + outSlope: -0.3111542 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.11493323 + inSlope: -0.3530906 + outSlope: -0.3530906 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.14461996 + inSlope: -0.22016467 + outSlope: -0.22016467 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.15185036 + inSlope: -0.11291645 + outSlope: -0.11291645 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.15214773 + inSlope: -0.0019810412 + outSlope: -0.0019810412 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.15198243 + inSlope: 0.050229013 + outSlope: 0.050229013 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.14879912 + inSlope: 0.24381652 + outSlope: 0.24381652 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.135728 + inSlope: 0.35262448 + outSlope: 0.35262448 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.11413525 + inSlope: 0.28774154 + outSlope: 0.28774154 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.10610806 + inSlope: 0.3077735 + outSlope: 0.3077735 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.09361702 + inSlope: 0.32365823 + outSlope: 0.32365823 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.08453087 + inSlope: 0.2725849 + outSlope: 0.2725849 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.09221064 + inSlope: 0.4987145 + outSlope: 0.4987145 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.10883446 + inSlope: 0.22654931 + outSlope: 0.22654931 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.10642009 + inSlope: -0.029295422 + outSlope: -0.029295422 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.11248901 + inSlope: 0.22532335 + outSlope: 0.22532335 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.11842136 + inSlope: -0.10989916 + outSlope: -0.10989916 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.1051624 + inSlope: -0.1540632 + outSlope: -0.1540632 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.10815048 + inSlope: 0.108475074 + outSlope: 0.108475074 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.11239407 + inSlope: -0.021073058 + outSlope: -0.021073058 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.106745616 + inSlope: 0.1575458 + outSlope: 0.1575458 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.122897126 + inSlope: -0.38854557 + outSlope: -0.38854557 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.080842614 + inSlope: -0.63962394 + outSlope: -0.63962394 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.086323276 + inSlope: 0.060546517 + outSlope: 0.060546517 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.08310099 + inSlope: -0.06881907 + outSlope: -0.06881907 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.07908015 + inSlope: 0.6733331 + outSlope: 0.6733331 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.12798981 + inSlope: 0.64697754 + outSlope: 0.64697754 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.12221193 + inSlope: -0.7061049 + outSlope: -0.7061049 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.080916114 + inSlope: -0.36374107 + outSlope: -0.36374107 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.09796248 + inSlope: 0.20111534 + outSlope: 0.20111534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.08733702 + inSlope: -0.36711282 + outSlope: -0.36711282 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.06984959 + inSlope: -0.0769134 + outSlope: -0.0769134 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.08220943 + inSlope: 0.33725938 + outSlope: 0.33725938 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.092333525 + inSlope: 0.30372313 + outSlope: 0.30372313 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.03259004 + inSlope: -0.072898075 + outSlope: -0.072898075 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.035019975 + inSlope: -0.14081714 + outSlope: -0.14081714 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.04874033 + inSlope: -0.13735731 + outSlope: -0.13735731 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.056542046 + inSlope: -0.11986977 + outSlope: -0.11986977 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.06103694 + inSlope: -0.104187734 + outSlope: -0.104187734 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.063487895 + inSlope: -0.17236665 + outSlope: -0.17236665 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.07252805 + inSlope: -0.042172007 + outSlope: -0.042172007 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.06629936 + inSlope: 0.06408125 + outSlope: 0.06408125 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.06825596 + inSlope: -0.03661305 + outSlope: -0.03661305 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.06874023 + inSlope: -0.022924297 + outSlope: -0.022924297 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.06978425 + inSlope: -0.03496997 + outSlope: -0.03496997 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.06599704 + inSlope: 0.23234257 + outSlope: 0.23234257 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.04247547 + inSlope: 0.10178529 + outSlope: 0.10178529 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.040289756 + inSlope: 0.18722072 + outSlope: 0.18722072 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.029994097 + inSlope: 0.23810303 + outSlope: 0.23810303 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.024416225 + inSlope: 0.187228 + outSlope: 0.187228 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.017512219 + inSlope: 0.17907004 + outSlope: 0.17907004 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.012478221 + inSlope: 0.059371132 + outSlope: 0.059371132 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.016923578 + inSlope: -0.07297784 + outSlope: -0.07297784 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.018419337 + inSlope: -0.11133473 + outSlope: -0.11133473 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.02434589 + inSlope: -0.2132551 + outSlope: -0.2132551 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.03263633 + inSlope: -0.24871343 + outSlope: -0.24871343 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9916003 + inSlope: -0.04296541 + outSlope: -0.04296541 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.9901681 + inSlope: -0.024271308 + outSlope: -0.024271308 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.98969907 + inSlope: -0.0055932994 + outSlope: -0.0055932994 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.98885083 + inSlope: -0.027615132 + outSlope: -0.027615132 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.98799723 + inSlope: 0.0038293013 + outSlope: 0.0038293013 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.9891061 + inSlope: 0.0015226016 + outSlope: 0.0015226016 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.98809874 + inSlope: -0.013114217 + outSlope: -0.013114217 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.98823184 + inSlope: 0.005203484 + outSlope: 0.005203484 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.98844564 + inSlope: -0.025155546 + outSlope: -0.025155546 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.9865548 + inSlope: 0.019191248 + outSlope: 0.019191248 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.98972505 + inSlope: 0.03390586 + outSlope: 0.03390586 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.98741233 + inSlope: -0.031421177 + outSlope: -0.031421177 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.9850762 + inSlope: -0.022098724 + outSlope: -0.022098724 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.98441076 + inSlope: -0.08249587 + outSlope: -0.08249587 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.97957647 + inSlope: -0.058744032 + outSlope: -0.058744032 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.9804945 + inSlope: 0.08728884 + outSlope: 0.08728884 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.9853957 + inSlope: 0.07976437 + outSlope: 0.07976437 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.9858121 + inSlope: 0.032059535 + outSlope: 0.032059535 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.9894741 + inSlope: 0.062913 + outSlope: 0.062913 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.99172723 + inSlope: 0.03653345 + outSlope: 0.03653345 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.9919097 + inSlope: -0.0019589087 + outSlope: -0.0019589087 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.99159664 + inSlope: -0.009391317 + outSlope: -0.009391317 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.17914863 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.17914863 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.27560577 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.27560577 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.26376286 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.26376286 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9068497 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.9068497 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.07092547 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.07092547 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.11456105 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.11456105 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.20839012 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.20839012 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.96872026 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.96872026 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0025602668 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.0025602668 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2/mixamorig:RightHandThumb3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.01716441 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.01716441 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2/mixamorig:RightHandThumb3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.26406285 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.26406285 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2/mixamorig:RightHandThumb3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9643494 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.9643494 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2/mixamorig:RightHandThumb3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.020066665 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.020066665 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2/mixamorig:RightHandThumb3/mixamorig:RightHandThumb4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.040932257 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.040932257 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2/mixamorig:RightHandThumb3/mixamorig:RightHandThumb4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.01450454 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.01450454 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2/mixamorig:RightHandThumb3/mixamorig:RightHandThumb4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9988551 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.9988551 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2/mixamorig:RightHandThumb3/mixamorig:RightHandThumb4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.039884117 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.039884117 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.021048568 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.021048568 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.021070568 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.021070568 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.99876034 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.99876034 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.10017062 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.10017062 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.005202677 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.005202677 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.011729293 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.011729293 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.99488753 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.99488753 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.28763524 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.28763524 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2/mixamorig:RightHandIndex3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.000000029789874 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.000000029789874 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2/mixamorig:RightHandIndex3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.03215661 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.03215661 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2/mixamorig:RightHandIndex3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.95720005 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.95720005 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2/mixamorig:RightHandIndex3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.044488594 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.044488594 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2/mixamorig:RightHandIndex3/mixamorig:RightHandIndex4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0000000017840228 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.0000000017840228 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2/mixamorig:RightHandIndex3/mixamorig:RightHandIndex4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.00000006745699 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.00000006745699 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2/mixamorig:RightHandIndex3/mixamorig:RightHandIndex4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9990099 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.9990099 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2/mixamorig:RightHandIndex3/mixamorig:RightHandIndex4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0010475842 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.0010475842 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.00034356932 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.00034356932 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.07512536 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.07512536 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9971735 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.9971735 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.777086 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.777086 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0081852665 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.0081852665 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.096657775 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.096657775 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.6218742 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.6218742 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.5790415 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.5790415 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2/mixamorig:RightHandMiddle3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.002636946 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.002636946 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2/mixamorig:RightHandMiddle3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.06625774 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.06625774 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2/mixamorig:RightHandMiddle3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.81259704 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.81259704 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2/mixamorig:RightHandMiddle3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.010558635 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.010558635 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2/mixamorig:RightHandMiddle3/mixamorig:RightHandMiddle4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0028612786 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.0028612786 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2/mixamorig:RightHandMiddle3/mixamorig:RightHandMiddle4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0028610546 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.0028610546 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2/mixamorig:RightHandMiddle3/mixamorig:RightHandMiddle4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9999361 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.9999361 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2/mixamorig:RightHandMiddle3/mixamorig:RightHandMiddle4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.042048287 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.042048287 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.1718237 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.1718237 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.055552248 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.055552248 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.98266095 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.98266095 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.7276185 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.7276185 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.000098143224 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.000098143224 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.08134743 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.08134743 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.6811416 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.6811416 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.6220807 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.6220807 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2/mixamorig:RightHandPinky3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.00000034990217 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.00000034990217 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2/mixamorig:RightHandPinky3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.06945854 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.06945854 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2/mixamorig:RightHandPinky3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.7798661 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.7798661 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2/mixamorig:RightHandPinky3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.044519026 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.044519026 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2/mixamorig:RightHandPinky3/mixamorig:RightHandPinky4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.00000012306901 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.00000012306901 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2/mixamorig:RightHandPinky3/mixamorig:RightHandPinky4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.00000001200067 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.00000001200067 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2/mixamorig:RightHandPinky3/mixamorig:RightHandPinky4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9990086 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.9990086 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2/mixamorig:RightHandPinky3/mixamorig:RightHandPinky4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.2312227 + inSlope: 0.11989608 + outSlope: 0.11989608 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.22722617 + inSlope: 0.31384212 + outSlope: 0.31384212 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.18699333 + inSlope: 0.46716097 + outSlope: 0.46716097 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.18433656 + inSlope: -0.25292465 + outSlope: -0.25292465 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.20009993 + inSlope: -0.12482488 + outSlope: -0.12482488 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.2065997 + inSlope: 0.06976336 + outSlope: 0.06976336 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.1918704 + inSlope: 0.24139023 + outSlope: 0.24139023 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.18359555 + inSlope: 0.27250588 + outSlope: 0.27250588 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.12819995 + inSlope: 0.094355024 + outSlope: 0.094355024 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.12566736 + inSlope: 0.13337131 + outSlope: 0.13337131 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.11793121 + inSlope: 0.6474024 + outSlope: 0.6474024 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.08250723 + inSlope: 1.0909956 + outSlope: 1.0909956 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.04519818 + inSlope: 1.0260476 + outSlope: 1.0260476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.014103998 + inSlope: -0.7557994 + outSlope: -0.7557994 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.095584705 + inSlope: -2.2335763 + outSlope: -2.2335763 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.16300906 + inSlope: -1.6005247 + outSlope: -1.6005247 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.20228638 + inSlope: -0.93289065 + outSlope: -0.93289065 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.22520176 + inSlope: -0.514927 + outSlope: -0.514927 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.23661485 + inSlope: -0.09028816 + outSlope: -0.09028816 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.23122096 + inSlope: 0.16181692 + outSlope: 0.16181692 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.15362646 + inSlope: 3.3339467 + outSlope: 3.3339467 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.26475802 + inSlope: 2.8955877 + outSlope: 2.8955877 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.40488017 + inSlope: 1.2203 + outSlope: 1.2203 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.43319952 + inSlope: 0.12831463 + outSlope: 0.12831463 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.43883628 + inSlope: -0.11403681 + outSlope: -0.11403681 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.4256312 + inSlope: 0.044433925 + outSlope: 0.044433925 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.4173562 + inSlope: -0.8516764 + outSlope: -0.8516764 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.37515464 + inSlope: -1.2783945 + outSlope: -1.2783945 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.061441805 + inSlope: -1.8009238 + outSlope: -1.8009238 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.07053628 + inSlope: -2.3656998 + outSlope: -2.3656998 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.15698572 + inSlope: -2.93928 + outSlope: -2.93928 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.26648825 + inSlope: -3.5112877 + outSlope: -3.5112877 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.39107156 + inSlope: -2.798447 + outSlope: -2.798447 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.45305154 + inSlope: -1.3281602 + outSlope: -1.3281602 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.4796156 + inSlope: 2.6208622 + outSlope: 2.6208622 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.2783272 + inSlope: 4.497322 + outSlope: 4.497322 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.17979404 + inSlope: 2.9361014 + outSlope: 2.9361014 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.082587115 + inSlope: 3.3133502 + outSlope: 3.3133502 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.04109593 + inSlope: 3.543262 + outSlope: 3.543262 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.15363012 + inSlope: 3.376029 + outSlope: 3.376029 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9509849 + inSlope: -0.88034385 + outSlope: -0.88034385 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.9216401 + inSlope: -0.8679583 + outSlope: -0.8679583 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.8679323 + inSlope: -0.6093585 + outSlope: -0.6093585 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.8438871 + inSlope: -0.31780416 + outSlope: -0.31780416 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.82183254 + inSlope: -0.10114075 + outSlope: -0.10114075 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.8307669 + inSlope: 0.16617449 + outSlope: 0.16617449 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.85394126 + inSlope: 0.72905 + outSlope: 0.72905 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.8842491 + inSlope: 0.84066653 + outSlope: 0.84066653 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.9888621 + inSlope: 0.15467323 + outSlope: 0.15467323 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.98955953 + inSlope: -0.17503819 + outSlope: -0.17503819 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.98001397 + inSlope: -0.49031964 + outSlope: -0.49031964 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.95687157 + inSlope: -1.0725963 + outSlope: -1.0725963 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.9085075 + inSlope: -1.1801925 + outSlope: -1.1801925 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.878192 + inSlope: -0.83354294 + outSlope: -0.83354294 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.852938 + inSlope: 1.000973 + outSlope: 1.000973 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.94492364 + inSlope: 1.645385 + outSlope: 1.645385 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.9626304 + inSlope: 0.38066104 + outSlope: 0.38066104 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.97030103 + inSlope: 0.06209299 + outSlope: 0.06209299 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.96676993 + inSlope: -0.28975394 + outSlope: -0.28975394 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.9509841 + inSlope: -0.47357485 + outSlope: -0.47357485 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.13624546 + inSlope: 1.0083116 + outSlope: 1.0083116 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.16985585 + inSlope: 0.8777307 + outSlope: 0.8777307 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.21863005 + inSlope: 0.68955904 + outSlope: 0.68955904 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.25731844 + inSlope: 0.6291312 + outSlope: 0.6291312 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.30327216 + inSlope: 0.3665847 + outSlope: 0.3665847 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.29322517 + inSlope: -0.49180186 + outSlope: -0.49180186 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.24450748 + inSlope: -0.98081034 + outSlope: -0.98081034 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.20893835 + inSlope: -1.0077884 + outSlope: -1.0077884 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.04406244 + inSlope: -0.6887521 + outSlope: -0.6887521 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.0020743732 + inSlope: -0.80779 + outSlope: -0.80779 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.031941865 + inSlope: -1.1850371 + outSlope: -1.1850371 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.08107683 + inSlope: -1.6227102 + outSlope: -1.6227102 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.14012255 + inSlope: -1.0746838 + outSlope: -1.0746838 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.15272248 + inSlope: -0.6366062 + outSlope: -0.6366062 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.18256295 + inSlope: 1.4581943 + outSlope: 1.4581943 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.055509396 + inSlope: 2.5906951 + outSlope: 2.5906951 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.009849886 + inSlope: 1.3020959 + outSlope: 1.3020959 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.031296983 + inSlope: 1.462321 + outSlope: 1.462321 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.08763817 + inSlope: 1.5742854 + outSlope: 1.5742854 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.13624924 + inSlope: 1.4583336 + outSlope: 1.4583336 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.7183459 + inSlope: -0.00534296 + outSlope: -0.00534296 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.718524 + inSlope: 0.3391206 + outSlope: 0.3391206 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.69573784 + inSlope: 1.1111541 + outSlope: 1.1111541 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.644447 + inSlope: 1.8131928 + outSlope: 1.8131928 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.5748583 + inSlope: 2.0469737 + outSlope: 2.0469737 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.50798213 + inSlope: 1.5092516 + outSlope: 1.5092516 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.47001532 + inSlope: 0.14112534 + outSlope: 0.14112534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.46483317 + inSlope: -0.2642155 + outSlope: -0.2642155 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.48762968 + inSlope: -1.2775724 + outSlope: -1.2775724 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.55000466 + inSlope: -1.5321069 + outSlope: -1.5321069 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.58977014 + inSlope: -0.6854242 + outSlope: -0.6854242 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.5956996 + inSlope: -0.06706409 + outSlope: -0.06706409 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.559727 + inSlope: 0.62297076 + outSlope: 0.62297076 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.48514792 + inSlope: 0.7242452 + outSlope: 0.7242452 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.42894632 + inSlope: 1.4370227 + outSlope: 1.4370227 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.366587 + inSlope: 2.6854074 + outSlope: 2.6854074 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.24991922 + inSlope: 4.4154496 + outSlope: 4.4154496 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.07222368 + inSlope: 3.745494 + outSlope: 3.745494 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.00021942194 + inSlope: 1.0430945 + outSlope: 1.0430945 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.0026839843 + inSlope: -6.8668895 + outSlope: -6.8668895 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.45801243 + inSlope: -8.470836 + outSlope: -8.470836 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.56740665 + inSlope: -2.649767 + outSlope: -2.649767 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.6346635 + inSlope: -1.8887703 + outSlope: -1.8887703 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.6933247 + inSlope: -1.2552545 + outSlope: -1.2552545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.7183471 + inSlope: -0.75067234 + outSlope: -0.75067234 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.015815686 + inSlope: -0.29616487 + outSlope: -0.29616487 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.02568785 + inSlope: -0.32157612 + outSlope: -0.32157612 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.037254095 + inSlope: -0.005255282 + outSlope: -0.005255282 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.0260382 + inSlope: 0.2119234 + outSlope: 0.2119234 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.023125866 + inSlope: 0.13478123 + outSlope: 0.13478123 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.017052785 + inSlope: 0.2657964 + outSlope: 0.2657964 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.0022661258 + inSlope: 0.033489276 + outSlope: 0.033489276 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.0031734845 + inSlope: -0.29275382 + outSlope: -0.29275382 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.021783046 + inSlope: -0.18254043 + outSlope: -0.18254043 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.015342847 + inSlope: 0.16846961 + outSlope: 0.16846961 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.01055174 + inSlope: 0.2059654 + outSlope: 0.2059654 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.0016118138 + inSlope: 0.40285832 + outSlope: 0.40285832 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.045766708 + inSlope: 0.25994548 + outSlope: 0.25994548 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.048932757 + inSlope: -0.19036025 + outSlope: -0.19036025 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.03147039 + inSlope: -0.24531204 + outSlope: -0.24531204 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.024524719 + inSlope: 0.096925765 + outSlope: 0.096925765 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.037932087 + inSlope: -0.03223096 + outSlope: -0.03223096 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.022375962 + inSlope: -0.40930003 + outSlope: -0.40930003 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.010645395 + inSlope: -1.1922681 + outSlope: -1.1922681 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.057108525 + inSlope: -0.8721709 + outSlope: -0.8721709 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.04749926 + inSlope: 0.4452076 + outSlope: 0.4452076 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.027428031 + inSlope: 0.39454246 + outSlope: 0.39454246 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.021196445 + inSlope: 0.15561599 + outSlope: 0.15561599 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.01705363 + inSlope: 0.08069889 + outSlope: 0.08069889 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.015816525 + inSlope: 0.037113205 + outSlope: 0.037113205 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.020536778 + inSlope: -0.82561594 + outSlope: -0.82561594 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.006983756 + inSlope: -0.507677 + outSlope: -0.507677 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.01330836 + inSlope: -0.39482707 + outSlope: -0.39482707 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.033305567 + inSlope: -0.2841708 + outSlope: -0.2841708 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.032253087 + inSlope: 0.03885767 + outSlope: 0.03885767 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.030715056 + inSlope: 0.12232129 + outSlope: 0.12232129 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.009437101 + inSlope: 0.4745662 + outSlope: 0.4745662 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.0075394143 + inSlope: 0.6246582 + outSlope: 0.6246582 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.032206777 + inSlope: 0.4156283 + outSlope: 0.4156283 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.035247967 + inSlope: -0.0007696822 + outSlope: -0.0007696822 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.032155465 + inSlope: 0.10135853 + outSlope: 0.10135853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.04200521 + inSlope: 0.20911941 + outSlope: 0.20911941 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.06537567 + inSlope: 0.3741682 + outSlope: 0.3741682 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.10027218 + inSlope: 0.24135195 + outSlope: 0.24135195 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.10776441 + inSlope: -0.04068669 + outSlope: -0.04068669 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.103468336 + inSlope: -0.29014128 + outSlope: -0.29014128 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.088421665 + inSlope: -0.74952716 + outSlope: -0.74952716 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.053499844 + inSlope: -0.13723591 + outSlope: -0.13723591 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.0792726 + inSlope: -0.89152384 + outSlope: -0.89152384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.0059349737 + inSlope: 0.4845084 + outSlope: 0.4845084 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.11157333 + inSlope: 1.325757 + outSlope: 1.325757 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.08244895 + inSlope: -0.7243211 + outSlope: -0.7243211 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.06328527 + inSlope: -0.65820384 + outSlope: -0.65820384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.0385687 + inSlope: -0.64126635 + outSlope: -0.64126635 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.020534221 + inSlope: -0.54103494 + outSlope: -0.54103494 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.69520307 + inSlope: -0.0063157077 + outSlope: -0.0063157077 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.69499254 + inSlope: 0.33003953 + outSlope: 0.33003953 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.7172057 + inSlope: 1.0273029 + outSlope: 1.0273029 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.7634794 + inSlope: 1.5012636 + outSlope: 1.5012636 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.81728995 + inSlope: 1.4575725 + outSlope: 1.4575725 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.8606509 + inSlope: 0.94137573 + outSlope: 0.94137573 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.8826049 + inSlope: 0.07968218 + outSlope: 0.07968218 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.8853605 + inSlope: -0.15630843 + outSlope: -0.15630843 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.87218434 + inSlope: -0.7662616 + outSlope: -0.7662616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.8342764 + inSlope: -0.9798379 + outSlope: -0.9798379 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.8068618 + inSlope: -0.48254725 + outSlope: -0.48254725 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.80210656 + inSlope: -0.060937047 + outSlope: -0.060937047 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.82482547 + inSlope: 0.37727952 + outSlope: 0.37727952 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.86728466 + inSlope: 0.3897608 + outSlope: 0.3897608 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.89632666 + inSlope: 0.6741007 + outSlope: 0.6741007 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.9242872 + inSlope: 1.0072179 + outSlope: 1.0072179 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.9634745 + inSlope: 1.07121 + outSlope: 1.07121 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.9957012 + inSlope: 0.49982387 + outSlope: 0.49982387 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.99679613 + inSlope: 0.03968329 + outSlope: 0.03968329 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.99834675 + inSlope: -1.7423999 + outSlope: -1.7423999 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.88063604 + inSlope: -2.692595 + outSlope: -2.692595 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.8188404 + inSlope: -1.6610227 + outSlope: -1.6610227 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.7699012 + inSlope: -1.49175 + outSlope: -1.49175 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.7193904 + inSlope: -1.1204903 + outSlope: -1.1204903 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.69520193 + inSlope: -0.7256545 + outSlope: -0.7256545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.7570586 + inSlope: -0.25318265 + outSlope: -0.25318265 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.7486192 + inSlope: -0.058407784 + outSlope: -0.058407784 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.75316477 + inSlope: -0.10424492 + outSlope: -0.10424492 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.74166954 + inSlope: -0.37819952 + outSlope: -0.37819952 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.71819973 + inSlope: -0.35756612 + outSlope: -0.35756612 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.7041137 + inSlope: -0.5177065 + outSlope: -0.5177065 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.68368596 + inSlope: -1.530685 + outSlope: -1.530685 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.60206807 + inSlope: -1.862029 + outSlope: -1.862029 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.5595507 + inSlope: -0.08009076 + outSlope: -0.08009076 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.5967287 + inSlope: 1.4222629 + outSlope: 1.4222629 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.6543682 + inSlope: 1.5581439 + outSlope: 1.5581439 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.700605 + inSlope: 1.2254802 + outSlope: 1.2254802 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.78190947 + inSlope: 0.5715842 + outSlope: 0.5715842 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.8474493 + inSlope: 0.4733464 + outSlope: 0.4733464 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.8700455 + inSlope: 0.019504838 + outSlope: 0.019504838 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.8636807 + inSlope: -0.6883868 + outSlope: -0.6883868 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.824153 + inSlope: -1.3746212 + outSlope: -1.3746212 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.77203923 + inSlope: -2.42233 + outSlope: -2.42233 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.6626644 + inSlope: -0.92109066 + outSlope: -0.92109066 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.71063334 + inSlope: 1.2567499 + outSlope: 1.2567499 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.74644774 + inSlope: 1.1237088 + outSlope: 1.1237088 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.78554726 + inSlope: 0.61040235 + outSlope: 0.61040235 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.78714126 + inSlope: -0.4273514 + outSlope: -0.4273514 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.7570572 + inSlope: -0.90252304 + outSlope: -0.90252304 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.01063154 + inSlope: 0.2597419 + outSlope: 0.2597419 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.019289603 + inSlope: 0.5096574 + outSlope: 0.5096574 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.044608697 + inSlope: 0.35240278 + outSlope: 0.35240278 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.042783123 + inSlope: -0.051624306 + outSlope: -0.051624306 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.028914345 + inSlope: -0.38558823 + outSlope: -0.38558823 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.015461192 + inSlope: -0.118006386 + outSlope: -0.118006386 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.021047248 + inSlope: 0.059374277 + outSlope: 0.059374277 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.019419476 + inSlope: 0.00042923726 + outSlope: 0.00042923726 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.021075863 + inSlope: -0.10032597 + outSlope: -0.10032597 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.012731079 + inSlope: -0.18087965 + outSlope: -0.18087965 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.009017221 + inSlope: -0.104320616 + outSlope: -0.104320616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.005776369 + inSlope: -0.24925569 + outSlope: -0.24925569 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.03428915 + inSlope: -0.35008442 + outSlope: -0.35008442 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.07332082 + inSlope: -0.25039718 + outSlope: -0.25039718 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.08477395 + inSlope: -0.16495334 + outSlope: -0.16495334 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.091944456 + inSlope: 0.06706414 + outSlope: 0.06706414 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.08030299 + inSlope: 0.07496522 + outSlope: 0.07496522 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.08694677 + inSlope: -0.15080449 + outSlope: -0.15080449 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.090356626 + inSlope: 0.8248396 + outSlope: 0.8248396 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.03195741 + inSlope: 1.427808 + outSlope: 1.427808 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.0048305956 + inSlope: 0.2611982 + outSlope: 0.2611982 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.0145442495 + inSlope: -0.07409923 + outSlope: -0.07409923 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.000109381836 + inSlope: 0.37763292 + outSlope: 0.37763292 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.010631254 + inSlope: 0.32221937 + outSlope: 0.32221937 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.003813989 + inSlope: 0.52565676 + outSlope: 0.52565676 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.021335883 + inSlope: 0.25145918 + outSlope: 0.25145918 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.020577936 + inSlope: 0.24961676 + outSlope: 0.24961676 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.037977003 + inSlope: 0.23273002 + outSlope: 0.23273002 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.03194171 + inSlope: 0.30718094 + outSlope: 0.30718094 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.056572013 + inSlope: 0.69120467 + outSlope: 0.69120467 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.078022026 + inSlope: 0.43420497 + outSlope: 0.43420497 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.08551901 + inSlope: -0.31185034 + outSlope: -0.31185034 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.057232004 + inSlope: -0.85706306 + outSlope: -0.85706306 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.028381472 + inSlope: -0.69032 + outSlope: -0.69032 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.011210672 + inSlope: -0.68547493 + outSlope: -0.68547493 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.017316878 + inSlope: -0.6791384 + outSlope: -0.6791384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.06835341 + inSlope: -0.5661589 + outSlope: -0.5661589 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.13910916 + inSlope: -0.42276466 + outSlope: -0.42276466 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.16366912 + inSlope: -0.46013868 + outSlope: -0.46013868 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.18281741 + inSlope: -0.7757803 + outSlope: -0.7757803 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.21538782 + inSlope: -0.64948094 + outSlope: -0.64948094 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.22611618 + inSlope: 0.23440747 + outSlope: 0.23440747 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.19976069 + inSlope: 1.0777943 + outSlope: 1.0777943 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.15426321 + inSlope: 1.624039 + outSlope: 1.624039 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.09149144 + inSlope: 1.1411006 + outSlope: 1.1411006 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.07818989 + inSlope: 0.87348825 + outSlope: 0.87348825 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.03325892 + inSlope: 1.2300903 + outSlope: 1.2300903 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.0038160542 + inSlope: 1.1122502 + outSlope: 1.1122502 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.65324944 + inSlope: 0.2737999 + outSlope: 0.2737999 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.6623761 + inSlope: 0.04118354 + outSlope: 0.04118354 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.655995 + inSlope: 0.08918164 + outSlope: 0.08918164 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.66832155 + inSlope: 0.41166365 + outSlope: 0.41166365 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.6945019 + inSlope: 0.36333108 + outSlope: 0.36333108 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.70766133 + inSlope: 0.46179676 + outSlope: 0.46179676 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.72528833 + inSlope: 1.2892923 + outSlope: 1.2892923 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.79361415 + inSlope: 1.5189109 + outSlope: 1.5189109 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.82654905 + inSlope: 0.12338698 + outSlope: 0.12338698 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.80183995 + inSlope: -1.057647 + outSlope: -1.057647 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.75603926 + inSlope: -1.327862 + outSlope: -1.327862 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.7133158 + inSlope: -1.2004633 + outSlope: -1.2004633 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.6186838 + inSlope: -0.8018992 + outSlope: -0.8018992 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.5070526 + inSlope: -0.94067085 + outSlope: -0.94067085 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.45721614 + inSlope: -0.23094104 + outSlope: -0.23094104 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.46062964 + inSlope: 0.9060701 + outSlope: 0.9060701 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.51762086 + inSlope: 1.9044714 + outSlope: 1.9044714 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.5875945 + inSlope: 2.9772716 + outSlope: 2.9772716 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.7161056 + inSlope: 1.4715568 + outSlope: 1.4715568 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.68569815 + inSlope: -0.85498184 + outSlope: -0.85498184 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.6591068 + inSlope: -1.0804293 + outSlope: -1.0804293 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.6136695 + inSlope: -0.64847076 + outSlope: -0.64847076 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.61587536 + inSlope: 0.59372365 + outSlope: 0.59372365 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.65325105 + inSlope: 1.1212717 + outSlope: 1.1212717 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.45894155 + inSlope: -4.221144 + outSlope: -4.221144 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.31823674 + inSlope: -5.305232 + outSlope: -5.305232 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.105259374 + inSlope: -3.2988236 + outSlope: -3.2988236 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.09831514 + inSlope: 0.18192232 + outSlope: 0.18192232 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.117387526 + inSlope: 0.5569937 + outSlope: 0.5569937 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.13544805 + inSlope: 0.29956108 + outSlope: 0.29956108 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.13324857 + inSlope: 0.2866611 + outSlope: 0.2866611 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.156469 + inSlope: 0.5741908 + outSlope: 0.5741908 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.17152795 + inSlope: 0.45948946 + outSlope: 0.45948946 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.18653342 + inSlope: -0.008532331 + outSlope: -0.008532331 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.18655108 + inSlope: -0.0035230785 + outSlope: -0.0035230785 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.18631107 + inSlope: 0.26545 + outSlope: 0.26545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.20424773 + inSlope: 0.97368354 + outSlope: 0.97368354 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.25122333 + inSlope: 1.4737191 + outSlope: 1.4737191 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.30249575 + inSlope: 2.6934893 + outSlope: 2.6934893 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.4307892 + inSlope: 4.651225 + outSlope: 4.651225 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.61257744 + inSlope: 2.7271135 + outSlope: 2.7271135 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.6125969 + inSlope: -1.0242971 + outSlope: -1.0242971 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.5442909 + inSlope: -1.7307403 + outSlope: -1.7307403 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.45894215 + inSlope: -1.1481636 + outSlope: -1.1481636 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot/mixamorig:LeftToeBase + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.07159462 + inSlope: -0.17672448 + outSlope: -0.17672448 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.0657038 + inSlope: -0.28252098 + outSlope: -0.28252098 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.052759886 + inSlope: 0.1179595 + outSlope: 0.1179595 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.07356777 + inSlope: 0.21968752 + outSlope: 0.21968752 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.06740572 + inSlope: -0.44306105 + outSlope: -0.44306105 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.04403037 + inSlope: -0.18647972 + outSlope: -0.18647972 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.07405106 + inSlope: 0.12679064 + outSlope: 0.12679064 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.06342646 + inSlope: -0.34900796 + outSlope: -0.34900796 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.050783865 + inSlope: -0.22366288 + outSlope: -0.22366288 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.04857217 + inSlope: 0.0009303354 + outSlope: 0.0009303354 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.04859105 + inSlope: -0.003929489 + outSlope: -0.003929489 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.048326097 + inSlope: 0.013054276 + outSlope: 0.013054276 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.049461335 + inSlope: -0.18312752 + outSlope: -0.18312752 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.036117584 + inSlope: -0.15754674 + outSlope: -0.15754674 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.03895821 + inSlope: -0.40033877 + outSlope: -0.40033877 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.009428362 + inSlope: -1.8836083 + outSlope: -1.8836083 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.086615734 + inSlope: -0.90240455 + outSlope: -0.90240455 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.050732054 + inSlope: 1.4483414 + outSlope: 1.4483414 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.009940377 + inSlope: 1.4987996 + outSlope: 1.4987996 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.07159525 + inSlope: 0.67222023 + outSlope: 0.67222023 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot/mixamorig:LeftToeBase + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.12354353 + inSlope: -0.068092346 + outSlope: -0.068092346 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.12581328 + inSlope: 0.018711869 + outSlope: 0.018711869 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.12229607 + inSlope: 0.20499796 + outSlope: 0.20499796 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.11214674 + inSlope: 0.18253313 + outSlope: 0.18253313 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.110127196 + inSlope: -0.09083268 + outSlope: -0.09083268 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.118202254 + inSlope: -0.063639574 + outSlope: -0.063639574 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.105932005 + inSlope: 0.19885777 + outSlope: 0.19885777 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.10111265 + inSlope: -0.13357234 + outSlope: -0.13357234 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.11483683 + inSlope: -0.23907012 + outSlope: -0.23907012 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.11699191 + inSlope: 0.0009242445 + outSlope: 0.0009242445 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.11697052 + inSlope: 0.0056590093 + outSlope: 0.0056590093 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.11659677 + inSlope: -0.22784193 + outSlope: -0.22784193 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.13215996 + inSlope: -0.4061616 + outSlope: -0.4061616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.14367421 + inSlope: 0.44463012 + outSlope: 0.44463012 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.10251793 + inSlope: 0.41075358 + outSlope: 0.41075358 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.11629059 + inSlope: 1.1618303 + outSlope: 1.1618303 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.025062494 + inSlope: 1.5534858 + outSlope: 1.5534858 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.012724815 + inSlope: -0.55748606 + outSlope: -0.55748606 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.06222828 + inSlope: -1.2119135 + outSlope: -1.2119135 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.123544104 + inSlope: -0.90075237 + outSlope: -0.90075237 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot/mixamorig:LeftToeBase + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.8769173 + inSlope: 1.8122505 + outSlope: 1.8122505 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.93732566 + inSlope: 1.6285138 + outSlope: 1.6285138 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.9854849 + inSlope: 0.7312488 + outSlope: 0.7312488 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.9860756 + inSlope: -0.012423996 + outSlope: -0.012423996 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.98465663 + inSlope: -0.050296787 + outSlope: -0.050296787 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.98272246 + inSlope: -0.034457445 + outSlope: -0.034457445 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.9826188 + inSlope: -0.028729144 + outSlope: -0.028729144 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.9804442 + inSlope: -0.08211226 + outSlope: -0.08211226 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.97714466 + inSlope: -0.09464265 + outSlope: -0.09464265 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.9742479 + inSlope: 0.0017005206 + outSlope: 0.0017005206 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.97424614 + inSlope: 0.0015476333 + outSlope: 0.0015476333 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.97435004 + inSlope: -0.083265685 + outSlope: -0.083265685 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.9686951 + inSlope: -0.26737505 + outSlope: -0.26737505 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.956525 + inSlope: -0.3281215 + outSlope: -0.3281215 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.9468203 + inSlope: -0.92469215 + outSlope: -0.92469215 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.8948789 + inSlope: -2.423545 + outSlope: -2.423545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.7852506 + inSlope: -1.5932369 + outSlope: -1.5932369 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.788663 + inSlope: 0.7691354 + outSlope: 0.7691354 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.83652633 + inSlope: 1.0875952 + outSlope: 1.0875952 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.8769168 + inSlope: 0.4724233 + outSlope: 0.4724233 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot/mixamorig:LeftToeBase + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.04573715 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.04573715 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot/mixamorig:LeftToeBase/mixamorig:LeftToe_End + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.039433047 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.039433047 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot/mixamorig:LeftToeBase/mixamorig:LeftToe_End + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0727525 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.0727525 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot/mixamorig:LeftToeBase/mixamorig:LeftToe_End + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.99552006 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.99552006 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot/mixamorig:LeftToeBase/mixamorig:LeftToe_End + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.00862556 + inSlope: -0.08361653 + outSlope: -0.08361653 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.009411907 + inSlope: -0.5845595 + outSlope: -0.5845595 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.08496236 + inSlope: 0.008390896 + outSlope: 0.008390896 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.023900714 + inSlope: 0.33147046 + outSlope: 0.33147046 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.01663516 + inSlope: 0.26860565 + outSlope: 0.26860565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.0015888804 + inSlope: 0.5101488 + outSlope: 0.5101488 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.017374756 + inSlope: 0.4719516 + outSlope: 0.4719516 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.03034348 + inSlope: -0.081918895 + outSlope: -0.081918895 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.023978148 + inSlope: 0.14234497 + outSlope: 0.14234497 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.033764888 + inSlope: -0.17048463 + outSlope: -0.17048463 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.019112326 + inSlope: -0.51116735 + outSlope: -0.51116735 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.00031293853 + inSlope: -0.44685048 + outSlope: -0.44685048 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.01067773 + inSlope: 0.054624096 + outSlope: 0.054624096 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.0033286468 + inSlope: 0.13859224 + outSlope: 0.13859224 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.0014382636 + inSlope: -0.09602157 + outSlope: -0.09602157 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.0013241092 + inSlope: 0.09146572 + outSlope: 0.09146572 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.008090455 + inSlope: 0.15196626 + outSlope: 0.15196626 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.26353616 + inSlope: -1.0521402 + outSlope: -1.0521402 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.19613904 + inSlope: -0.9690592 + outSlope: -0.9690592 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.056396328 + inSlope: -1.1200058 + outSlope: -1.1200058 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.013943846 + inSlope: 0.7388324 + outSlope: 0.7388324 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.09574091 + inSlope: 2.1545334 + outSlope: 2.1545334 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.17057706 + inSlope: 1.7881808 + outSlope: 1.7881808 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.21495296 + inSlope: 1.4176624 + outSlope: 1.4176624 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.30800772 + inSlope: 1.2719109 + outSlope: 1.2719109 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.42378214 + inSlope: 0.9431375 + outSlope: 0.9431375 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.45484167 + inSlope: -0.20108233 + outSlope: -0.20108233 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.43923625 + inSlope: -0.29061663 + outSlope: -0.29061663 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.43546724 + inSlope: -0.5551556 + outSlope: -0.5551556 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.40222585 + inSlope: -1.254103 + outSlope: -1.254103 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.3518604 + inSlope: -0.23257637 + outSlope: -0.23257637 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.38672084 + inSlope: 0.40450206 + outSlope: 0.40450206 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.35358283 + inSlope: -1.0144421 + outSlope: -1.0144421 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.26356205 + inSlope: -1.4290733 + outSlope: -1.4290733 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9581208 + inSlope: 0.37182388 + outSlope: 0.37182388 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.97933525 + inSlope: 0.2278295 + outSlope: 0.2278295 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.9917282 + inSlope: -0.027501585 + outSlope: -0.027501585 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.98428273 + inSlope: -0.01687825 + outSlope: -0.01687825 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.98201454 + inSlope: -0.09712903 + outSlope: -0.09712903 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.9776699 + inSlope: -0.12118669 + outSlope: -0.12118669 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.9739354 + inSlope: -0.2094315 + outSlope: -0.2094315 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.9499156 + inSlope: -0.46129128 + outSlope: -0.46129128 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.8955355 + inSlope: -0.6037671 + outSlope: -0.6037671 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.8647942 + inSlope: -0.06956201 + outSlope: -0.06956201 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.86952 + inSlope: 0.09147679 + outSlope: 0.09147679 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.87089264 + inSlope: 0.2569277 + outSlope: 0.2569277 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.88664854 + inSlope: 0.5708645 + outSlope: 0.5708645 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.90895027 + inSlope: 0.11564216 + outSlope: 0.11564216 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.894358 + inSlope: -0.12716237 + outSlope: -0.12716237 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.9156891 + inSlope: 0.55445385 + outSlope: 0.55445385 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.95811254 + inSlope: 0.62028646 + outSlope: 0.62028646 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.11170884 + inSlope: -1.0527017 + outSlope: -1.0527017 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.04840866 + inSlope: -0.83453 + outSlope: -0.83453 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.07794921 + inSlope: -1.1410882 + outSlope: -1.1410882 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.17441843 + inSlope: -0.14788853 + outSlope: -0.14788853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.16187777 + inSlope: 0.7723552 + outSlope: 0.7723552 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.12272932 + inSlope: 1.3735542 + outSlope: 1.3735542 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.07030749 + inSlope: 1.6884862 + outSlope: 1.6884862 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.043253336 + inSlope: 1.3693569 + outSlope: 1.3693569 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.13360333 + inSlope: 0.9911098 + outSlope: 0.9911098 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.21002373 + inSlope: 0.77593446 + outSlope: 0.77593446 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.22503592 + inSlope: 0.2673469 + outSlope: 0.2673469 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.22784685 + inSlope: 0.04349869 + outSlope: 0.04349869 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.22793584 + inSlope: -0.063846245 + outSlope: -0.063846245 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.22359043 + inSlope: -0.045913905 + outSlope: -0.045913905 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.22487491 + inSlope: -0.149705 + outSlope: -0.149705 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.19102599 + inSlope: -0.86300385 + outSlope: -0.86300385 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.111758225 + inSlope: -1.3295506 + outSlope: -1.3295506 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.4797125 + inSlope: 0.33201095 + outSlope: 0.33201095 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.46864545 + inSlope: 0.3099641 + outSlope: 0.3099641 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.45066148 + inSlope: 0.3191936 + outSlope: 0.3191936 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.4028675 + inSlope: 0.6308586 + outSlope: 0.6308586 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.3799863 + inSlope: 0.23928213 + outSlope: 0.23928213 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.42002875 + inSlope: -1.2504468 + outSlope: -1.2504468 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.54163706 + inSlope: -2.2770028 + outSlope: -2.2770028 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.6220787 + inSlope: -2.1031747 + outSlope: -2.1031747 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.68184876 + inSlope: -0.95363444 + outSlope: -0.95363444 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.68565434 + inSlope: 0.23482767 + outSlope: 0.23482767 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.6661936 + inSlope: 1.0410955 + outSlope: 1.0410955 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.61624795 + inSlope: 1.296813 + outSlope: 1.296813 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.57973933 + inSlope: 1.2314014 + outSlope: 1.2314014 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.53415453 + inSlope: 1.3202741 + outSlope: 1.3202741 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.427584 + inSlope: 2.4142842 + outSlope: 2.4142842 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.33076876 + inSlope: 3.1925972 + outSlope: 3.1925972 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.21474421 + inSlope: 2.4635835 + outSlope: 2.4635835 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.16652994 + inSlope: 1.5479321 + outSlope: 1.5479321 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.11154865 + inSlope: 0.74847937 + outSlope: 0.74847937 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.11663126 + inSlope: -2.7422223 + outSlope: -2.7422223 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.29436362 + inSlope: -3.9727974 + outSlope: -3.9727974 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.3814845 + inSlope: -2.196227 + outSlope: -2.196227 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.47090325 + inSlope: -0.5852997 + outSlope: -0.5852997 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.47979867 + inSlope: -0.26686308 + outSlope: -0.26686308 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.04397839 + inSlope: 0.6106832 + outSlope: 0.6106832 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.0643345 + inSlope: 0.2532344 + outSlope: 0.2532344 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.056498967 + inSlope: -0.1572986 + outSlope: -0.1572986 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.069519244 + inSlope: 0.7915937 + outSlope: 0.7915937 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.110144295 + inSlope: 0.6803874 + outSlope: 0.6803874 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.08609066 + inSlope: -1.027295 + outSlope: -1.027295 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.02597626 + inSlope: -0.06506775 + outSlope: -0.06506775 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.04205424 + inSlope: 0.44756863 + outSlope: 0.44756863 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.05581418 + inSlope: -0.10985486 + outSlope: -0.10985486 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.034730583 + inSlope: -0.43404704 + outSlope: -0.43404704 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.026877722 + inSlope: -0.06984172 + outSlope: -0.06984172 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.030074479 + inSlope: -0.106739484 + outSlope: -0.106739484 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.01976175 + inSlope: -0.20734394 + outSlope: -0.20734394 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.016251545 + inSlope: -0.31418714 + outSlope: -0.31418714 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.011935925 + inSlope: -0.22018482 + outSlope: -0.22018482 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.015863052 + inSlope: 0.089638695 + outSlope: 0.089638695 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.005960025 + inSlope: 0.35299647 + outSlope: 0.35299647 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.0076700468 + inSlope: 0.21117721 + outSlope: 0.21117721 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.008118467 + inSlope: -0.028197067 + outSlope: -0.028197067 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.005790245 + inSlope: -0.10863243 + outSlope: -0.10863243 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.00087630353 + inSlope: 0.0067024007 + outSlope: 0.0067024007 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.006237062 + inSlope: 0.2190158 + outSlope: 0.2190158 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.02577161 + inSlope: 0.4493217 + outSlope: 0.4493217 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.045432113 + inSlope: 0.5898156 + outSlope: 0.5898156 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.048205294 + inSlope: -0.529783 + outSlope: -0.529783 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.030545859 + inSlope: -0.18856046 + outSlope: -0.18856046 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.041492842 + inSlope: 0.20692784 + outSlope: 0.20692784 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.046468716 + inSlope: -0.078441374 + outSlope: -0.078441374 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.041365243 + inSlope: 0.33312955 + outSlope: 0.33312955 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.11803325 + inSlope: 1.5885797 + outSlope: 1.5885797 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.20332241 + inSlope: -0.21132419 + outSlope: -0.21132419 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.16049434 + inSlope: -1.3043339 + outSlope: -1.3043339 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.11636678 + inSlope: -0.5488295 + outSlope: -0.5488295 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.12390571 + inSlope: -0.10004526 + outSlope: -0.10004526 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.10969711 + inSlope: -0.67760605 + outSlope: -0.67760605 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.07873196 + inSlope: -0.75413084 + outSlope: -0.75413084 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.05942168 + inSlope: -0.648399 + outSlope: -0.648399 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.035505366 + inSlope: -0.4411312 + outSlope: -0.4411312 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.027831903 + inSlope: 0.031368773 + outSlope: 0.031368773 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.03210421 + inSlope: -0.050327815 + outSlope: -0.050327815 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.024476726 + inSlope: 0.06242927 + outSlope: 0.06242927 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.036266178 + inSlope: 0.3654353 + outSlope: 0.3654353 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.0488391 + inSlope: 0.11360987 + outSlope: 0.11360987 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.043840185 + inSlope: 0.37212554 + outSlope: 0.37212554 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.0736475 + inSlope: 0.5127842 + outSlope: 0.5127842 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.07802582 + inSlope: -0.0035760477 + outSlope: -0.0035760477 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.06522687 + inSlope: -0.39182946 + outSlope: -0.39182946 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.047287147 + inSlope: -0.5381921 + outSlope: -0.5381921 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.87499607 + inSlope: 0.16544579 + outSlope: 0.16544579 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.8805109 + inSlope: 0.15917389 + outSlope: 0.15917389 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.8899385 + inSlope: 0.16058654 + outSlope: 0.16058654 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.9114305 + inSlope: 0.2088171 + outSlope: 0.2088171 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.9174789 + inSlope: 0.013796389 + outSlope: 0.013796389 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.8956743 + inSlope: -0.72776383 + outSlope: -0.72776383 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.81523895 + inSlope: -1.4798796 + outSlope: -1.4798796 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.765174 + inSlope: -1.428315 + outSlope: -1.428315 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.7200179 + inSlope: -0.7306642 + outSlope: -0.7306642 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.716463 + inSlope: 0.25738955 + outSlope: 0.25738955 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.7371772 + inSlope: 0.9984985 + outSlope: 0.9984985 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.7830296 + inSlope: 1.128223 + outSlope: 1.128223 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.8123921 + inSlope: 0.92182434 + outSlope: 0.92182434 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.84448457 + inSlope: 0.8676366 + outSlope: 0.8676366 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.90346825 + inSlope: 1.0919648 + outSlope: 1.0919648 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.9430322 + inSlope: 1.0931566 + outSlope: 1.0931566 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.97634536 + inSlope: 0.6346083 + outSlope: 0.6346083 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.9853394 + inSlope: 0.24269411 + outSlope: 0.24269411 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.992525 + inSlope: 0.10276427 + outSlope: 0.10276427 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.99219036 + inSlope: -0.5951066 + outSlope: -0.5951066 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.9528512 + inSlope: -1.0670274 + outSlope: -1.0670274 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.9210552 + inSlope: -0.8756412 + outSlope: -0.8756412 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.8793926 + inSlope: -0.2932569 + outSlope: -0.2932569 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.87492466 + inSlope: -0.13403906 + outSlope: -0.13403906 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.6853588 + inSlope: 0.65356666 + outSlope: 0.65356666 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.7071444 + inSlope: 0.66558653 + outSlope: 0.66558653 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.75219434 + inSlope: 0.62280536 + outSlope: 0.62280536 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.78907996 + inSlope: 0.48874402 + outSlope: 0.48874402 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.80383456 + inSlope: 0.42305493 + outSlope: 0.42305493 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.81728363 + inSlope: 0.39314392 + outSlope: 0.39314392 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.83004415 + inSlope: 0.17638566 + outSlope: 0.17638566 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.8290427 + inSlope: -0.33941123 + outSlope: -0.33941123 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.80741674 + inSlope: -0.9385631 + outSlope: -0.9385631 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.7664718 + inSlope: -1.2086422 + outSlope: -1.2086422 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.72684056 + inSlope: -0.50571126 + outSlope: -0.50571126 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.7327577 + inSlope: 0.30921313 + outSlope: 0.30921313 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.74745476 + inSlope: 0.26768184 + outSlope: 0.26768184 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.75060314 + inSlope: -0.4390056 + outSlope: -0.4390056 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.7181877 + inSlope: -0.50706315 + outSlope: -0.50706315 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.7167989 + inSlope: -0.25149128 + outSlope: -0.25149128 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.7014216 + inSlope: -0.4616708 + outSlope: -0.4616708 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.68602085 + inSlope: -0.6715655 + outSlope: -0.6715655 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.6566506 + inSlope: -1.0372987 + outSlope: -1.0372987 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.6168676 + inSlope: -2.3850358 + outSlope: -2.3850358 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.4976483 + inSlope: -3.8894355 + outSlope: -3.8894355 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.3575719 + inSlope: -3.496904 + outSlope: -3.496904 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.26452118 + inSlope: -1.2631676 + outSlope: -1.2631676 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.27336064 + inSlope: 2.1002133 + outSlope: 2.1002133 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.4045355 + inSlope: 3.2955391 + outSlope: 3.2955391 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.49306327 + inSlope: 2.5029755 + outSlope: 2.5029755 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.63709277 + inSlope: 1.7081289 + outSlope: 1.7081289 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.6852757 + inSlope: 1.4454886 + outSlope: 1.4454886 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.03286592 + inSlope: -0.17730156 + outSlope: -0.17730156 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.026955867 + inSlope: -0.10900477 + outSlope: -0.10900477 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.01567591 + inSlope: -0.31766027 + outSlope: -0.31766027 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.012599659 + inSlope: -0.47700998 + outSlope: -0.47700998 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.02737909 + inSlope: -0.45118153 + outSlope: -0.45118153 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.042678434 + inSlope: -0.058506325 + outSlope: -0.058506325 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.03127951 + inSlope: 0.27008274 + outSlope: 0.27008274 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.02467292 + inSlope: 0.20286423 + outSlope: 0.20286423 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.01775523 + inSlope: 0.49267417 + outSlope: 0.49267417 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.008172021 + inSlope: 1.0088326 + outSlope: 1.0088326 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.0495003 + inSlope: 0.5926235 + outSlope: 0.5926235 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.047680285 + inSlope: -0.31647462 + outSlope: -0.31647462 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.028401995 + inSlope: -0.4059163 + outSlope: -0.4059163 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.020619208 + inSlope: -0.1981445 + outSlope: -0.1981445 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.015192364 + inSlope: -0.33443135 + outSlope: -0.33443135 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.001676234 + inSlope: -0.5172521 + outSlope: -0.5172521 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.019291107 + inSlope: -0.557105 + outSlope: -0.557105 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.038816568 + inSlope: -0.2591153 + outSlope: -0.2591153 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.03656548 + inSlope: 0.0019158274 + outSlope: 0.0019158274 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.03868885 + inSlope: 0.25712335 + outSlope: 0.25712335 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.019423941 + inSlope: 0.8897476 + outSlope: 0.8897476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.020627674 + inSlope: 0.89680386 + outSlope: 0.89680386 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.040363032 + inSlope: 0.74293256 + outSlope: 0.74293256 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.0701565 + inSlope: 0.034947872 + outSlope: 0.034947872 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.04269284 + inSlope: -0.60050404 + outSlope: -0.60050404 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.030122885 + inSlope: -0.2603615 + outSlope: -0.2603615 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.029725717 + inSlope: 0.08729682 + outSlope: 0.08729682 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.031155199 + inSlope: 0.042884484 + outSlope: 0.042884484 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.04094682 + inSlope: -0.29087517 + outSlope: -0.29087517 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.03125098 + inSlope: -0.6178799 + outSlope: -0.6178799 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.031848606 + inSlope: -0.97747046 + outSlope: -0.97747046 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.087265335 + inSlope: -0.6847725 + outSlope: -0.6847725 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.11106139 + inSlope: -0.19520095 + outSlope: -0.19520095 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.10027874 + inSlope: 0.1512404 + outSlope: 0.1512404 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.100978695 + inSlope: -0.1245286 + outSlope: -0.1245286 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.10858065 + inSlope: -0.33344263 + outSlope: -0.33344263 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.1232082 + inSlope: 0.2306464 + outSlope: 0.2306464 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.09320422 + inSlope: 2.0317411 + outSlope: 2.0317411 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.0122413 + inSlope: 2.6016536 + outSlope: 2.6016536 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.080239445 + inSlope: 1.0864215 + outSlope: 1.0864215 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.0846694 + inSlope: 0.09088333 + outSlope: 0.09088333 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.08629833 + inSlope: 0.2243557 + outSlope: 0.2243557 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.09962645 + inSlope: -0.08192891 + outSlope: -0.08192891 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.0808364 + inSlope: -0.863652 + outSlope: -0.863652 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.042049672 + inSlope: -1.0820913 + outSlope: -1.0820913 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.008696994 + inSlope: 0.014452517 + outSlope: 0.014452517 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.043013114 + inSlope: 1.0353521 + outSlope: 1.0353521 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.07772046 + inSlope: 0.9910661 + outSlope: 0.9910661 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.10908419 + inSlope: 0.49713802 + outSlope: 0.49713802 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.11086297 + inSlope: 0.6622807 + outSlope: 0.6622807 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.15323627 + inSlope: 0.8311999 + outSlope: 0.8311999 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.16627632 + inSlope: -0.23117837 + outSlope: -0.23117837 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.13782434 + inSlope: -0.77516186 + outSlope: -0.77516186 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.11459886 + inSlope: -0.69851243 + outSlope: -0.69851243 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.063554 + inSlope: -0.7349645 + outSlope: -0.7349645 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.042259265 + inSlope: -0.6388426 + outSlope: -0.6388426 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.72631013 + inSlope: -0.61339253 + outSlope: -0.61339253 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.7058637 + inSlope: -0.64583206 + outSlope: -0.64583206 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.6579845 + inSlope: -0.7516408 + outSlope: -0.7516408 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.60793006 + inSlope: -0.7409056 + outSlope: -0.7409056 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.58375156 + inSlope: -0.63141245 + outSlope: -0.63141245 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.5658359 + inSlope: -0.542467 + outSlope: -0.542467 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.5475871 + inSlope: -0.26773277 + outSlope: -0.26773277 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.54798704 + inSlope: 0.43669137 + outSlope: 0.43669137 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.57669985 + inSlope: 1.3115976 + outSlope: 1.3115976 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.6354269 + inSlope: 1.6231624 + outSlope: 1.6231624 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.6849107 + inSlope: 0.5794683 + outSlope: 0.5794683 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.67405814 + inSlope: -0.39942387 + outSlope: -0.39942387 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.65828246 + inSlope: -0.289338 + outSlope: -0.289338 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.65476894 + inSlope: 0.45345825 + outSlope: 0.45345825 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.68851304 + inSlope: 0.5671106 + outSlope: 0.5671106 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.69257635 + inSlope: 0.34095815 + outSlope: 0.34095815 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.71124357 + inSlope: 0.5087597 + outSlope: 0.5087597 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.72649366 + inSlope: 0.6125318 + outSlope: 0.6125318 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.752079 + inSlope: 0.83655596 + outSlope: 0.83655596 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.78226405 + inSlope: 1.6229106 + outSlope: 1.6229106 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.860273 + inSlope: 2.171826 + outSlope: 2.171826 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.92705244 + inSlope: 1.3649812 + outSlope: 1.3649812 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.95127183 + inSlope: 0.26666752 + outSlope: 0.26666752 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.9448303 + inSlope: -0.7230489 + outSlope: -0.7230489 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.90306854 + inSlope: -1.2441571 + outSlope: -1.2441571 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.8618865 + inSlope: -1.3182056 + outSlope: -1.3182056 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.7675872 + inSlope: -1.3319907 + outSlope: -1.3319907 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.7263889 + inSlope: -1.2359506 + outSlope: -1.2359506 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.17869382 + inSlope: 0.0000017881392 + outSlope: 0.0000017881392 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.1786938 + inSlope: -0.007258949 + outSlope: -0.007258949 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.19185607 + inSlope: 0.81597656 + outSlope: 0.81597656 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.23260818 + inSlope: 1.8179672 + outSlope: 1.8179672 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.31305388 + inSlope: 2.034117 + outSlope: 2.034117 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.36821598 + inSlope: 1.0536437 + outSlope: 1.0536437 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.3832968 + inSlope: -0.6969891 + outSlope: -0.6969891 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.32175 + inSlope: -1.1760867 + outSlope: -1.1760867 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.30489096 + inSlope: -0.9689874 + outSlope: -0.9689874 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.25715083 + inSlope: -1.4622828 + outSlope: -1.4622828 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.2074055 + inSlope: -1.2782077 + outSlope: -1.2782077 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.171937 + inSlope: -1.2338017 + outSlope: -1.2338017 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.12515198 + inSlope: -0.6800201 + outSlope: -0.6800201 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.12660229 + inSlope: 0.35405335 + outSlope: 0.35405335 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.14875555 + inSlope: 0.3568366 + outSlope: 0.3568366 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.15039141 + inSlope: -0.15928437 + outSlope: -0.15928437 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.13813658 + inSlope: 0.76330924 + outSlope: 0.76330924 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.20127863 + inSlope: 1.600182 + outSlope: 1.600182 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.24481536 + inSlope: 0.20072633 + outSlope: 0.20072633 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.21466039 + inSlope: -0.978347 + outSlope: -0.978347 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.17959224 + inSlope: -0.541591 + outSlope: -0.541591 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.17855436 + inSlope: -0.015559258 + outSlope: -0.015559258 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.17869002 + inSlope: 0.0043907803 + outSlope: 0.0043907803 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot/mixamorig:RightToeBase + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.036432676 + inSlope: -0.0000006705522 + outSlope: -0.0000006705522 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.036432743 + inSlope: 0.01897528 + outSlope: 0.01897528 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.037904646 + inSlope: -0.42468518 + outSlope: -0.42468518 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.06348006 + inSlope: -0.9711196 + outSlope: -0.9711196 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.10264595 + inSlope: -0.8825092 + outSlope: -0.8825092 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.122314 + inSlope: -0.80461735 + outSlope: -0.80461735 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.1562871 + inSlope: -3.6191745 + outSlope: -3.6191745 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.36359248 + inSlope: -2.9012485 + outSlope: -2.9012485 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.34970385 + inSlope: 1.105021 + outSlope: 1.105021 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.2899244 + inSlope: 2.0339944 + outSlope: 2.0339944 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.2141043 + inSlope: 2.0529242 + outSlope: 2.0529242 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.15306282 + inSlope: 2.4709365 + outSlope: 2.4709365 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.049375057 + inSlope: 1.6295816 + outSlope: 1.6295816 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.044423968 + inSlope: -0.114033714 + outSlope: -0.114033714 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.05697732 + inSlope: -0.6356828 + outSlope: -0.6356828 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.0868028 + inSlope: -0.87868774 + outSlope: -0.87868774 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.1155565 + inSlope: -1.1232686 + outSlope: -1.1232686 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.16168736 + inSlope: -0.7474691 + outSlope: -0.7474691 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.16538773 + inSlope: 0.76907486 + outSlope: 0.76907486 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.11041566 + inSlope: 1.8833143 + outSlope: 1.8833143 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.03983347 + inSlope: 1.1107712 + outSlope: 1.1107712 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.03636431 + inSlope: 0.052036766 + outSlope: 0.052036766 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.036386203 + inSlope: -0.0007121272 + outSlope: -0.0007121272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot/mixamorig:RightToeBase + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.11227588 + inSlope: -0.0000013411044 + outSlope: -0.0000013411044 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.112276025 + inSlope: 0.0021997457 + outSlope: 0.0021997457 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.11956808 + inSlope: 0.20805728 + outSlope: 0.20805728 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.126293 + inSlope: -0.062019832 + outSlope: -0.062019832 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.115433425 + inSlope: -0.26529285 + outSlope: -0.26529285 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.108606815 + inSlope: -0.10850218 + outSlope: -0.10850218 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.10819995 + inSlope: -0.6975465 + outSlope: -0.6975465 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.062103678 + inSlope: -0.63029027 + outSlope: -0.63029027 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.06618056 + inSlope: -0.30038098 + outSlope: -0.30038098 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.04207828 + inSlope: -0.2549988 + outSlope: -0.2549988 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.04918063 + inSlope: 0.49120444 + outSlope: 0.49120444 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.07482526 + inSlope: 0.8622931 + outSlope: 0.8622931 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.106666885 + inSlope: 0.7961551 + outSlope: 0.7961551 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.12790227 + inSlope: 0.1923301 + outSlope: 0.1923301 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.119488865 + inSlope: -0.4975307 + outSlope: -0.4975307 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.09473357 + inSlope: -0.8713028 + outSlope: -0.8713028 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.061402008 + inSlope: -0.58861274 + outSlope: -0.58861274 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.055492703 + inSlope: 0.7004655 + outSlope: 0.7004655 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.10809976 + inSlope: 0.81975186 + outSlope: 0.81975186 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.11014287 + inSlope: 0.06001331 + outSlope: 0.06001331 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.112100646 + inSlope: 0.032613117 + outSlope: 0.032613117 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.11231708 + inSlope: 0.0032508345 + outSlope: 0.0032508345 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.11232068 + inSlope: 0.00011131178 + outSlope: 0.00011131178 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot/mixamorig:RightToeBase + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.97679853 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.97679853 + inSlope: 0.0017684691 + outSlope: 0.0017684691 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.97337455 + inSlope: -0.2200842 + outSlope: -0.2200842 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.96224415 + inSlope: -0.5442793 + outSlope: -0.5442793 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.93708926 + inSlope: -0.7050902 + outSlope: -0.7050902 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.91523814 + inSlope: -0.49854046 + outSlope: -0.49854046 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.90385324 + inSlope: -0.6482565 + outSlope: -0.6482565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.872021 + inSlope: -0.3070249 + outSlope: -0.3070249 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.8833849 + inSlope: 0.7331032 + outSlope: 0.7331032 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.92089456 + inSlope: 1.0482767 + outSlope: 1.0482767 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.95326996 + inSlope: 0.74052954 + outSlope: 0.74052954 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.9702632 + inSlope: 0.47820616 + outSlope: 0.47820616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.9851504 + inSlope: 0.186095 + outSlope: 0.186095 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.98266953 + inSlope: -0.077655315 + outSlope: -0.077655315 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.9799734 + inSlope: -0.03642168 + outSlope: -0.03642168 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.9802414 + inSlope: 0.026357159 + outSlope: 0.026357159 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.9817305 + inSlope: -0.2360874 + outSlope: -0.2360874 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.9645023 + inSlope: -0.48759347 + outSlope: -0.48759347 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.9492243 + inSlope: -0.005185604 + outSlope: -0.005185604 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.96415657 + inSlope: 0.40945172 + outSlope: 0.40945172 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.9765211 + inSlope: 0.18997926 + outSlope: 0.18997926 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.97682184 + inSlope: 0.0045087896 + outSlope: 0.0045087896 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.9767958 + inSlope: -0.00084221445 + outSlope: -0.00084221445 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot/mixamorig:RightToeBase + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.04573715 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.04573715 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot/mixamorig:RightToeBase/mixamorig:RightToe_End + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.039433047 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.039433047 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot/mixamorig:RightToeBase/mixamorig:RightToe_End + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0727525 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.0727525 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot/mixamorig:RightToeBase/mixamorig:RightToe_End + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.99552006 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.99552006 + inSlope: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot/mixamorig:RightToeBase/mixamorig:RightToe_End + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.00011512258 + inSlope: 0.00046405505 + outSlope: 0.00046405505 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.00009965402 + inSlope: 0.00036655754 + outSlope: 0.00036655835 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.00009068541 + inSlope: 0.00013471358 + outSlope: 0.0001347114 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.1 + value: -0.00009067323 + inSlope: -0.00004263371 + outSlope: -0.000042633987 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.00009352772 + inSlope: -0.00016867118 + outSlope: -0.0001686739 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.00010191811 + inSlope: -0.0010942277 + outSlope: -0.001094233 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -0.00016647621 + inSlope: -0.0021808404 + outSlope: -0.0021808394 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333333 + value: -0.00024730706 + inSlope: -0.002703338 + outSlope: -0.002703327 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.00034669842 + inSlope: -0.002604189 + outSlope: -0.0026042003 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.00042092035 + inSlope: -0.001961034 + outSlope: -0.001961034 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.00047743483 + inSlope: -0.0021137125 + outSlope: -0.002113716 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.00056183524 + inSlope: -0.0029925492 + outSlope: -0.0029925504 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: -0.0006769393 + inSlope: -0.0028792643 + outSlope: -0.0028792962 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -0.00081795454 + inSlope: -0.0017262935 + outSlope: -0.0017262716 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.0008688743 + inSlope: -0.0010614563 + outSlope: -0.0010614574 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.0008887188 + inSlope: -0.00014914531 + outSlope: -0.00014914047 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.0008493041 + inSlope: 0.001202565 + outSlope: 0.0012025833 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333333 + value: -0.0007986453 + inSlope: 0.0018253566 + outSlope: 0.0018253209 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7 + value: -0.0006545729 + inSlope: 0.002369715 + outSlope: 0.0023696846 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.0005696333 + inSlope: 0.002822525 + outSlope: 0.002822554 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.76666665 + value: -0.00046640265 + inSlope: 0.0017274296 + outSlope: 0.0017274157 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -0.00045447174 + inSlope: 0.00029356874 + outSlope: 0.00029356888 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333333 + value: -0.00044683114 + inSlope: 0.0009333615 + outSlope: 0.0009333465 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -0.00039224818 + inSlope: 0.0018049998 + outSlope: 0.0018050134 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9 + value: -0.00032649722 + inSlope: 0.002186675 + outSlope: 0.0021866409 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -0.00024647056 + inSlope: 0.0024626101 + outSlope: 0.002462629 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.96666664 + value: -0.00016232207 + inSlope: 0.001970076 + outSlope: 0.0019700478 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.00011513293 + inSlope: 0.0014156653 + outSlope: 0.0014156653 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: jammo_mixamo_rig/mixamorig:Hips + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.015634341 + inSlope: 0.007698803 + outSlope: 0.007698803 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.015890967 + inSlope: 0.005420203 + outSlope: 0.0054201377 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.01599568 + inSlope: 0.0009271396 + outSlope: 0.00092751655 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.1 + value: 0.01595278 + inSlope: -0.0027584347 + outSlope: -0.002758536 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.015811762 + inSlope: -0.006016355 + outSlope: -0.0060165958 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.015551688 + inSlope: -0.009369613 + outSlope: -0.009369441 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.0151871275 + inSlope: -0.010120631 + outSlope: -0.010120747 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333333 + value: 0.014876976 + inSlope: -0.00901738 + outSlope: -0.009017422 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.014585973 + inSlope: -0.0071993107 + outSlope: -0.0071995202 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.014397012 + inSlope: -0.0040460937 + outSlope: -0.0040459987 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.014316246 + inSlope: 0.0017007405 + outSlope: 0.0017009507 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.0145104 + inSlope: 0.009854696 + outSlope: 0.009854538 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: 0.0149732195 + inSlope: 0.011784878 + outSlope: 0.011784963 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.015596111 + inSlope: 0.0073944386 + outSlope: 0.0073944223 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.015789015 + inSlope: 0.0042796535 + outSlope: 0.0042793984 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.01588141 + inSlope: 0.0012899725 + outSlope: 0.0012901607 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.015711341 + inSlope: -0.0075442516 + outSlope: -0.0075445315 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333333 + value: 0.015372055 + inSlope: -0.012310353 + outSlope: -0.012310022 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7 + value: 0.014326564 + inSlope: -0.018731637 + outSlope: -0.01873122 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.013641895 + inSlope: -0.02150539 + outSlope: -0.021505384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.76666665 + value: 0.012892853 + inSlope: -0.0147007415 + outSlope: -0.01470089 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: 0.012661828 + inSlope: 0.007172293 + outSlope: 0.0071723238 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333333 + value: 0.013371009 + inSlope: 0.017460605 + outSlope: 0.017460242 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.013825857 + inSlope: 0.013992107 + outSlope: 0.013992148 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9 + value: 0.014303814 + inSlope: 0.014182713 + outSlope: 0.01418271 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.014771373 + inSlope: 0.014068269 + outSlope: 0.0140682 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.96666664 + value: 0.015241697 + inSlope: 0.012945078 + outSlope: 0.012944796 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.015634373 + inSlope: 0.011780122 + outSlope: 0.011780122 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: jammo_mixamo_rig/mixamorig:Hips + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.000060513354 + inSlope: -0.0069145593 + outSlope: -0.0069145593 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.00016997203 + inSlope: -0.0063417205 + outSlope: -0.006341724 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.00036226815 + inSlope: -0.0047370717 + outSlope: -0.0047370614 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.1 + value: -0.0004857767 + inSlope: -0.0035319938 + outSlope: -0.003531992 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.0005977351 + inSlope: -0.0030174127 + outSlope: -0.0030174197 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.0006869378 + inSlope: -0.0035049538 + outSlope: -0.0035049664 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -0.0008313989 + inSlope: -0.005905309 + outSlope: -0.005905332 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333333 + value: -0.001080625 + inSlope: -0.0050951773 + outSlope: -0.0050951494 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.0011710759 + inSlope: -0.0026010256 + outSlope: -0.002601038 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.0012540269 + inSlope: -0.0038702232 + outSlope: -0.0038702313 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.0014290911 + inSlope: -0.0043910695 + outSlope: -0.0043910677 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.0015467647 + inSlope: -0.0007481166 + outSlope: -0.0007481732 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4 + value: -0.001478967 + inSlope: 0.00003171099 + outSlope: 0.00003174037 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -0.0016931941 + inSlope: -0.004653294 + outSlope: -0.004653263 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.0018548674 + inSlope: -0.0052809427 + outSlope: -0.0052809087 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.0020452575 + inSlope: -0.004589219 + outSlope: -0.004589322 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.0022602195 + inSlope: -0.0026832775 + outSlope: -0.0026833485 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333333 + value: -0.0023397072 + inSlope: -0.000556589 + outSlope: -0.00055657723 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7 + value: -0.0021425618 + inSlope: 0.007105095 + outSlope: 0.007104949 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.0018236534 + inSlope: 0.009601382 + outSlope: 0.009601516 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.76666665 + value: -0.0015024632 + inSlope: 0.0042128037 + outSlope: 0.0042127827 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8 + value: -0.0015428023 + inSlope: 0.0007795367 + outSlope: 0.00077948836 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333333 + value: -0.0014504957 + inSlope: 0.0034292792 + outSlope: 0.003429264 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: -0.0013141825 + inSlope: 0.004761959 + outSlope: 0.00476202 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9 + value: -0.0011330284 + inSlope: 0.007881953 + outSlope: 0.007881805 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: -0.0007887224 + inSlope: 0.012199231 + outSlope: 0.01219933 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.96666664 + value: -0.00031974172 + inSlope: 0.012738024 + outSlope: 0.012737796 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.000060473678 + inSlope: 0.011406379 + outSlope: 0.011406379 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: jammo_mixamo_rig/mixamorig:Hips + 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 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_Weight + path: Idle Rig + classID: 114 + script: {fileID: 11500000, guid: 70b342d8ce5c2fd48b8fa3147d48d1d1, type: 3} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 136 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_Weight + path: Run Rig + classID: 114 + script: {fileID: 11500000, guid: 70b342d8ce5c2fd48b8fa3147d48d1d1, type: 3} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 136 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_Weight + path: WalkRig + classID: 114 + script: {fileID: 11500000, guid: 70b342d8ce5c2fd48b8fa3147d48d1d1, type: 3} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 136 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_Weight + path: Idle Aim Rig + classID: 114 + script: {fileID: 11500000, guid: 70b342d8ce5c2fd48b8fa3147d48d1d1, type: 3} + m_EulerEditorCurves: + - curve: + serializedVersion: 2 + m_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.033333335 + value: -0 + 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: jammo_mixamo_rig + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_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.033333335 + value: -0 + 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: jammo_mixamo_rig + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_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.033333335 + value: -0 + 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: jammo_mixamo_rig + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -3.8114374 + inSlope: 12.423913 + outSlope: 12.423913 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.96506715 + inSlope: 0.050299164 + outSlope: 0.041153863 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -3.1531165 + inSlope: -6.3250484 + outSlope: -6.250926 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -3.5281942 + inSlope: -1.6883537 + outSlope: -1.6936312 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -3.5742388 + inSlope: -2.7900958 + outSlope: -2.8280785 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -3.80431 + inSlope: -2.2877207 + outSlope: -2.3667772 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -3.8114357 + inSlope: 1.9594297 + outSlope: 1.9594297 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 40.22111 + inSlope: 40.16651 + outSlope: 40.16651 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 48.845936 + inSlope: -22.401466 + outSlope: -22.400154 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 31.101149 + inSlope: -43.526566 + outSlope: -43.555687 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 26.976357 + inSlope: -20.327677 + outSlope: -20.328123 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 26.872541 + inSlope: 36.98287 + outSlope: 36.98144 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 31.62144 + inSlope: 68.50268 + outSlope: 68.49061 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 40.22111 + inSlope: 52.87525 + outSlope: 52.87525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 3.814855 + inSlope: -6.6724153 + outSlope: -6.6724153 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 4.083251 + inSlope: -2.13912 + outSlope: -2.1390803 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 3.2067533 + inSlope: -2.2936184 + outSlope: -2.5079863 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 2.8292603 + inSlope: 1.3158842 + outSlope: 1.3081874 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 3.1072445 + inSlope: 10.450221 + outSlope: 10.441562 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 3.8198962 + inSlope: 6.009715 + outSlope: 5.977692 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 3.8152359 + inSlope: -2.2667198 + outSlope: -2.2667198 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 11.52703 + inSlope: -24.520939 + outSlope: -24.520939 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 8.043933 + inSlope: 17.409945 + outSlope: 17.397846 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 19.018911 + inSlope: 39.31742 + outSlope: 39.287563 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 20.104176 + inSlope: -26.140394 + outSlope: -25.989683 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 18.30262 + inSlope: -24.451769 + outSlope: -24.451792 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 16.426382 + inSlope: -33.3163 + outSlope: -33.162033 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 11.636323 + inSlope: -28.039892 + outSlope: -28.039892 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.6016534 + inSlope: -20.807196 + outSlope: -20.807196 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -5.8108754 + inSlope: 7.97646 + outSlope: 8.003115 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -1.2633742 + inSlope: 20.79102 + outSlope: 20.793962 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 3.3102522 + inSlope: 38.844456 + outSlope: 39.069626 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 5.0001273 + inSlope: -23.141544 + outSlope: -23.141563 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 2.045621 + inSlope: -30.612589 + outSlope: -30.729053 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.58093715 + inSlope: -9.16456 + outSlope: -9.16456 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 2.7036977 + inSlope: 6.9197793 + outSlope: 6.9197793 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.27679688 + inSlope: -16.680016 + outSlope: -16.68963 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -2.6915457 + inSlope: -7.232927 + outSlope: -7.458032 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -2.7338934 + inSlope: 14.396334 + outSlope: 14.75012 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -1.6528809 + inSlope: 14.0846 + outSlope: 14.084613 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.43950868 + inSlope: 26.106016 + outSlope: 26.26099 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 2.6667948 + inSlope: 9.6253805 + outSlope: 9.6253805 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 15.221681 + inSlope: 6.3426733 + outSlope: 6.3426733 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 15.35108 + inSlope: -3.1300564 + outSlope: -3.1302447 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 10.546902 + inSlope: -7.927207 + outSlope: -7.922302 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 13.241315 + inSlope: 20.456062 + outSlope: 20.55002 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 15.11731 + inSlope: 14.157262 + outSlope: 14.157262 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -12.870136 + inSlope: -3.03796 + outSlope: -3.03796 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -12.837741 + inSlope: 2.7722883 + outSlope: 2.7723975 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -11.995714 + inSlope: 3.5139651 + outSlope: 3.5264614 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -12.387903 + inSlope: -6.9660835 + outSlope: -6.6684175 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -12.840157 + inSlope: -1.5543371 + outSlope: -1.5543371 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -6.7275105 + inSlope: -2.1809063 + outSlope: -2.1809063 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -5.2570133 + inSlope: -0.5055599 + outSlope: -0.5046653 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -1.8179433 + inSlope: 15.255541 + outSlope: 15.260651 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -4.913021 + inSlope: -27.57693 + outSlope: -27.443056 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -6.6773944 + inSlope: -6.0540557 + outSlope: -6.0540557 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 11.483042 + inSlope: 5.551855 + outSlope: 5.551855 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 11.925013 + inSlope: -2.9565067 + outSlope: -2.9564853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 7.9971333 + inSlope: -4.646625 + outSlope: -4.6377974 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 9.946971 + inSlope: 13.9611025 + outSlope: 14.12353 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 11.391729 + inSlope: 12.404313 + outSlope: 12.404313 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -14.7799425 + inSlope: -3.3716612 + outSlope: -3.3716612 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -14.5582485 + inSlope: 2.7966213 + outSlope: 2.7968402 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -13.196132 + inSlope: 5.7219973 + outSlope: 5.7298317 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -14.055782 + inSlope: -10.8832035 + outSlope: -10.659145 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -14.77514 + inSlope: -2.656146 + outSlope: -2.656146 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -7.5543466 + inSlope: -3.671678 + outSlope: -3.671678 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -6.2321553 + inSlope: 0.23737764 + outSlope: 0.23827073 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -1.7755735 + inSlope: 16.263727 + outSlope: 16.26766 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -5.366533 + inSlope: -30.849081 + outSlope: -30.741545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -7.480543 + inSlope: -9.261992 + outSlope: -9.261992 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -3.4261372 + inSlope: 4.3254786 + outSlope: 4.3254786 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -3.0783007 + inSlope: -7.9514055 + outSlope: -7.950716 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -2.2894206 + inSlope: -8.911141 + outSlope: -8.903292 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -3.4267967 + inSlope: -11.371977 + outSlope: -11.371977 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 4.425061 + inSlope: -6.9293947 + outSlope: -6.9293947 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 4.3079495 + inSlope: 8.240191 + outSlope: 8.24114 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 5.391113 + inSlope: -10.164116 + outSlope: -10.167836 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 4.424788 + inSlope: -8.814199 + outSlope: -8.814199 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -5.529092 + inSlope: 0.48715514 + outSlope: 0.48715514 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -5.5014787 + inSlope: -0.804864 + outSlope: -0.8113299 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -5.448827 + inSlope: -0.7702875 + outSlope: -0.8664039 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -5.5264897 + inSlope: -0.46736258 + outSlope: -0.46736258 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -1.9912822 + inSlope: 18.74708 + outSlope: 18.74708 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -1.9021207 + inSlope: -6.121379 + outSlope: -6.111855 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -4.0312834 + inSlope: -5.2333794 + outSlope: -5.190492 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -3.2055547 + inSlope: 2.4661272 + outSlope: 2.4596283 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -2.8088126 + inSlope: 17.979492 + outSlope: 17.814585 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -1.9920506 + inSlope: 5.9731565 + outSlope: 5.9731565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -10.267579 + inSlope: -11.643436 + outSlope: -11.643436 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -10.769176 + inSlope: 7.031196 + outSlope: 7.039625 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -7.9342146 + inSlope: 19.490274 + outSlope: 19.501362 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -4.21595 + inSlope: -2.131605 + outSlope: -2.1389005 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -8.19871 + inSlope: -37.147877 + outSlope: -37.241844 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -10.266887 + inSlope: -25.47616 + outSlope: -25.47616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 6.8225503 + inSlope: 2.2086542 + outSlope: 2.2086542 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 6.627515 + inSlope: 14.249642 + outSlope: 14.253621 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 6.9917226 + inSlope: -22.542677 + outSlope: -22.552444 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 2.9954867 + inSlope: 10.298614 + outSlope: 10.30072 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 6.0785456 + inSlope: 15.4837 + outSlope: 15.683299 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 6.824493 + inSlope: 8.6991415 + outSlope: 8.6991415 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -7.9460993 + inSlope: -0.00060081476 + outSlope: -0.00060081476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -7.9460993 + inSlope: -0.00060081476 + outSlope: -0.00060081476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head/mixamorig:HeadTop_End + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_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.033333335 + value: 0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head/mixamorig:HeadTop_End + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_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.033333335 + value: -0 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head/mixamorig:HeadTop_End + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 75.38284 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 75.38284 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head/mixamorig:LeftEar + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.3503092 + inSlope: 0.00018775462 + outSlope: 0.00018775462 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.3503092 + inSlope: 0.00018775462 + outSlope: 0.00018775462 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head/mixamorig:LeftEar + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 97.47056 + inSlope: -0.00068664545 + outSlope: -0.00068664545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 97.47056 + inSlope: -0.00068664545 + outSlope: -0.00068664545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head/mixamorig:LeftEar + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 75.38284 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 75.38284 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head/mixamorig:RightEar + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.3503092 + inSlope: -0.00018775462 + outSlope: -0.00018775462 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.3503092 + inSlope: -0.00018775462 + outSlope: -0.00018775462 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head/mixamorig:RightEar + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -97.47056 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -97.47056 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head/mixamorig:RightEar + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 82.990105 + inSlope: -5.155248 + outSlope: -5.155248 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 81.7645 + inSlope: 1.1242962 + outSlope: 1.1207926 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 84.5613 + inSlope: 7.4001026 + outSlope: 7.4845223 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 85.00927 + inSlope: -16.740677 + outSlope: -15.657125 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 83.04855 + inSlope: -18.966988 + outSlope: -18.966988 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -6.7883544 + inSlope: -9.749749 + outSlope: -9.749749 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -11.128489 + inSlope: -6.555125 + outSlope: -6.599084 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -11.626558 + inSlope: -40.182976 + outSlope: -37.204838 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -9.191767 + inSlope: 128.351 + outSlope: 153.48346 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -3.5373507 + inSlope: 14.598918 + outSlope: 14.598918 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 57.84857 + inSlope: 35.406532 + outSlope: 35.406532 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 63.386032 + inSlope: -12.535228 + outSlope: -12.579095 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 48.700413 + inSlope: -76.304565 + outSlope: -73.3398 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 51.574417 + inSlope: 172.23628 + outSlope: 197.36946 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 61.132206 + inSlope: 49.664974 + outSlope: 49.664974 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 68.5253 + inSlope: 32.985302 + outSlope: 32.985302 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 74.01525 + inSlope: 14.524497 + outSlope: 14.291348 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 69.50905 + inSlope: -44.25528 + outSlope: -44.261166 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 60.58189 + inSlope: -32.889572 + outSlope: -32.864704 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 59.826466 + inSlope: 35.400898 + outSlope: 35.399048 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 68.254005 + inSlope: 26.788225 + outSlope: 26.788225 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 48.03127 + inSlope: -35.945946 + outSlope: -35.945946 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 32.31694 + inSlope: -88.71093 + outSlope: -89.66648 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 36.983784 + inSlope: 8.315031 + outSlope: 8.331241 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 39.421085 + inSlope: 22.462633 + outSlope: 22.733664 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 42.669514 + inSlope: 0.55666345 + outSlope: 0.64104104 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 46.683144 + inSlope: 56.732845 + outSlope: 56.732845 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -12.11488 + inSlope: -43.21592 + outSlope: -43.21592 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -29.405386 + inSlope: -97.08128 + outSlope: -98.03485 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -28.381098 + inSlope: -6.213038 + outSlope: -6.185846 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -26.591854 + inSlope: 24.597414 + outSlope: 24.866657 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -22.833214 + inSlope: 10.9752035 + outSlope: 11.050304 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -13.335346 + inSlope: 94.001175 + outSlope: 94.001175 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 60.24838 + inSlope: -106.73457 + outSlope: -106.73457 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 56.68391 + inSlope: 8.073921 + outSlope: 8.073921 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 60.6715 + inSlope: -19.516523 + outSlope: -19.516521 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 55.423996 + inSlope: -91.24831 + outSlope: -91.24833 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 54.686657 + inSlope: -19.319117 + outSlope: -19.319117 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 54.1365 + inSlope: 22.663767 + outSlope: 22.663755 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 56.15037 + inSlope: -4.888571 + outSlope: -4.888573 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 53.89196 + inSlope: -38.629993 + outSlope: -38.629993 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 53.565983 + inSlope: -33.343853 + outSlope: -33.343853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 51.67773 + inSlope: -42.41238 + outSlope: -42.41118 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 50.067142 + inSlope: -35.690636 + outSlope: -35.690773 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 48.361298 + inSlope: -29.965185 + outSlope: -29.969799 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 47.857113 + inSlope: -8.312877 + outSlope: -7.946885 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 47.358337 + inSlope: 27.666298 + outSlope: 27.666298 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 49.733486 + inSlope: 34.16917 + outSlope: 34.141563 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 49.488342 + inSlope: -4.1954045 + outSlope: -4.3945317 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 51.82769 + inSlope: 36.750816 + outSlope: 36.81449 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 55.06408 + inSlope: 24.989542 + outSlope: 24.994606 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 55.788376 + inSlope: -8.622903 + outSlope: -8.622887 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 54.48284 + inSlope: 53.619415 + outSlope: 53.61951 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 59.316677 + inSlope: 48.37319 + outSlope: 48.37319 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 57.711433 + inSlope: -50.601017 + outSlope: -50.601017 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 144.39714 + inSlope: 57.10281 + outSlope: 57.10281 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 146.19136 + inSlope: -50.148464 + outSlope: -50.148464 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 140.5482 + inSlope: -8.743744 + outSlope: -8.743742 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 145.52391 + inSlope: 54.982445 + outSlope: 54.982456 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 145.02495 + inSlope: -17.098848 + outSlope: -17.098848 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 144.3743 + inSlope: -58.28522 + outSlope: -58.285194 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 140.95157 + inSlope: -51.22099 + outSlope: -51.221012 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 141.15913 + inSlope: -16.316072 + outSlope: -16.316072 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 139.86696 + inSlope: -9.608918 + outSlope: -9.608918 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 140.46913 + inSlope: 3.764191 + outSlope: 3.7319186 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 140.63141 + inSlope: 5.612641 + outSlope: 5.646968 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 140.55261 + inSlope: 8.484185 + outSlope: 8.393558 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 143.29303 + inSlope: 50.71657 + outSlope: 50.93807 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 145.32874 + inSlope: 30.22611 + outSlope: 30.22611 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 145.32166 + inSlope: 17.380356 + outSlope: 17.57126 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 147.93787 + inSlope: 35.58884 + outSlope: 35.493397 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 148.71643 + inSlope: -32.032703 + outSlope: -31.688225 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 146.84901 + inSlope: -6.9053636 + outSlope: -6.8129034 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 146.34547 + inSlope: 9.194192 + outSlope: 9.194176 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 147.42642 + inSlope: -35.680817 + outSlope: -35.68088 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 143.56267 + inSlope: -5.425878 + outSlope: -5.425878 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 147.4317 + inSlope: 108.77025 + outSlope: 108.77025 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 58.317383 + inSlope: 38.552395 + outSlope: 38.552395 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 59.48969 + inSlope: -59.658848 + outSlope: -59.658848 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 53.83983 + inSlope: -15.685729 + outSlope: -15.685727 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 58.353485 + inSlope: 43.706352 + outSlope: 43.706364 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 57.57221 + inSlope: -25.535318 + outSlope: -25.535318 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 56.64194 + inSlope: -70.86903 + outSlope: -70.868996 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 52.662903 + inSlope: -62.433907 + outSlope: -62.433933 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 52.67494 + inSlope: -22.728998 + outSlope: -22.728998 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 51.15221 + inSlope: -13.428384 + outSlope: -13.428384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 51.730644 + inSlope: 1.9947053 + outSlope: 1.9600297 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 51.826603 + inSlope: 2.286358 + outSlope: 2.3246365 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 51.497227 + inSlope: 4.1112866 + outSlope: 4.011728 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 54.232586 + inSlope: 55.213757 + outSlope: 55.43319 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 56.505196 + inSlope: 36.048172 + outSlope: 36.048172 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 56.64821 + inSlope: 23.322582 + outSlope: 23.50525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 59.873093 + inSlope: 44.53034 + outSlope: 44.437984 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 61.358837 + inSlope: -32.918045 + outSlope: -32.573883 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 59.523655 + inSlope: -4.945792 + outSlope: -4.8535585 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 59.051258 + inSlope: 15.5261 + outSlope: 15.526072 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 60.524536 + inSlope: -23.008099 + outSlope: -23.00814 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 57.107483 + inSlope: -2.3194907 + outSlope: -2.3194907 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 60.74186 + inSlope: 101.69161 + outSlope: 101.69161 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -7.873677 + inSlope: 22.812122 + outSlope: 22.812122 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -7.099778 + inSlope: 10.44671 + outSlope: 10.44671 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -7.2114873 + inSlope: 0.3474855 + outSlope: 0.34748548 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -7.0650043 + inSlope: 3.5267825 + outSlope: 3.5267832 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -6.9715858 + inSlope: 3.956237 + outSlope: 3.956237 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -6.8023553 + inSlope: 6.3736587 + outSlope: 6.373656 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -6.559271 + inSlope: 18.159534 + outSlope: 18.159544 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -5.5691915 + inSlope: 25.46292 + outSlope: 25.46292 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -4.8710647 + inSlope: 25.470558 + outSlope: 25.473242 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -2.9552789 + inSlope: 20.132555 + outSlope: 20.135408 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -2.5228424 + inSlope: 24.42673 + outSlope: 24.426706 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -1.324306 + inSlope: 19.843653 + outSlope: 19.846222 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -2.1315541 + inSlope: -26.187967 + outSlope: -26.145336 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -3.1247385 + inSlope: -34.924328 + outSlope: -34.924328 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -4.4495354 + inSlope: -33.290264 + outSlope: -33.265404 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -6.4495063 + inSlope: -30.834612 + outSlope: -30.875414 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -9.488685 + inSlope: 1.450689 + outSlope: 1.466417 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -8.417059 + inSlope: 9.167803 + outSlope: 9.168614 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -8.078754 + inSlope: 13.442128 + outSlope: 13.442104 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -7.5211825 + inSlope: 7.3199353 + outSlope: 7.3199487 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -7.595841 + inSlope: -6.8595524 + outSlope: -6.8595524 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -7.9772687 + inSlope: -11.598441 + outSlope: -11.598441 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 20.508633 + inSlope: -104.77763 + outSlope: -104.77763 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 17.021034 + inSlope: 22.53227 + outSlope: 22.53227 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 22.003464 + inSlope: -6.7469783 + outSlope: -6.746978 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 16.57133 + inSlope: -89.04366 + outSlope: -89.04368 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 16.063114 + inSlope: -11.726876 + outSlope: -11.726876 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 15.789575 + inSlope: 33.92913 + outSlope: 33.929115 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 18.325068 + inSlope: 14.69747 + outSlope: 14.697476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 16.77214 + inSlope: -12.650758 + outSlope: -12.650758 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 17.47668 + inSlope: -2.397423 + outSlope: -2.3715022 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 16.844196 + inSlope: 10.414868 + outSlope: 10.410577 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 17.301207 + inSlope: -4.800854 + outSlope: -4.80085 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 16.529392 + inSlope: -6.6250935 + outSlope: -6.612971 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 16.96764 + inSlope: -9.672207 + outSlope: -9.790526 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 16.298761 + inSlope: 19.363903 + outSlope: 19.363903 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 18.253212 + inSlope: 20.225126 + outSlope: 20.26806 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 16.918741 + inSlope: -16.665318 + outSlope: -16.595407 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 17.772684 + inSlope: 17.512337 + outSlope: 17.511917 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 18.469017 + inSlope: -0.32478324 + outSlope: -0.31791717 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 18.402348 + inSlope: -34.42329 + outSlope: -34.423225 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 16.17495 + inSlope: 31.48473 + outSlope: 31.484787 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 20.500933 + inSlope: 21.491854 + outSlope: 21.491854 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 17.60744 + inSlope: -86.815765 + outSlope: -86.815765 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 6.458122 + inSlope: 20.488857 + outSlope: 20.488857 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 7.1249228 + inSlope: 15.483941 + outSlope: 15.483941 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 7.5090046 + inSlope: 4.2625237 + outSlope: 4.262523 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 7.4072456 + inSlope: 2.4647136 + outSlope: 2.4647143 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 7.6818776 + inSlope: 8.927036 + outSlope: 8.927036 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 8.002611 + inSlope: 15.053845 + outSlope: 15.053839 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 8.689988 + inSlope: 16.928467 + outSlope: 16.928474 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 9.110741 + inSlope: 12.829972 + outSlope: 12.829972 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 9.565661 + inSlope: 10.38457 + outSlope: 10.377146 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 10.129953 + inSlope: 2.6465895 + outSlope: 2.6262476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 9.965588 + inSlope: 4.9620442 + outSlope: 4.9620395 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 10.451499 + inSlope: 2.6113966 + outSlope: 2.5866232 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 9.115781 + inSlope: -23.523481 + outSlope: -23.568144 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 8.232086 + inSlope: -19.856398 + outSlope: -19.856398 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 7.768229 + inSlope: -11.6889715 + outSlope: -11.757195 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 7.0153904 + inSlope: -13.583652 + outSlope: -13.493143 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 6.2175584 + inSlope: 9.277987 + outSlope: 9.276164 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 6.4532247 + inSlope: -2.788481 + outSlope: -2.788513 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 6.4888625 + inSlope: 0.5313354 + outSlope: 0.53133446 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 6.4809628 + inSlope: 2.0182211 + outSlope: 2.0182247 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 6.630201 + inSlope: -0.41863957 + outSlope: -0.41863957 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 6.466571 + inSlope: -4.5197625 + outSlope: -4.5197625 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 20.113787 + inSlope: -0.00017166136 + outSlope: -0.00017166136 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 20.113787 + inSlope: -0.00017166136 + outSlope: -0.00017166136 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -23.050354 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -23.050354 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -34.62579 + inSlope: -0.00034332272 + outSlope: -0.00034332272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -34.62579 + inSlope: -0.00034332272 + outSlope: -0.00034332272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 8.360464 + inSlope: -0.00051498413 + outSlope: -0.00051498413 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 8.360464 + inSlope: -0.00051498413 + outSlope: -0.00051498413 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -14.076608 + inSlope: -0.00060081476 + outSlope: -0.00060081476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -14.076608 + inSlope: -0.00060081476 + outSlope: -0.00060081476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 15.225282 + inSlope: -0.00008583068 + outSlope: -0.00008583068 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 15.225282 + inSlope: -0.00008583068 + outSlope: -0.00008583068 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -25.248354 + inSlope: 0.00017166136 + outSlope: 0.00017166136 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -25.248354 + inSlope: 0.00017166136 + outSlope: 0.00017166136 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2/mixamorig:LeftHandThumb3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 6.8624883 + inSlope: -0.00004291534 + outSlope: -0.00004291534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 6.8624883 + inSlope: -0.00004291534 + outSlope: -0.00004291534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2/mixamorig:LeftHandThumb3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -13.866297 + inSlope: -0.00051498413 + outSlope: -0.00051498413 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -13.866297 + inSlope: -0.00051498413 + outSlope: -0.00051498413 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2/mixamorig:LeftHandThumb3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 2.229376 + inSlope: -0.0005364418 + outSlope: -0.0005364418 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 2.229376 + inSlope: -0.0005364418 + outSlope: -0.0005364418 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2/mixamorig:LeftHandThumb3/mixamorig:LeftHandThumb4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 4.727418 + inSlope: -0.00008583068 + outSlope: -0.00008583068 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 4.727418 + inSlope: -0.00008583068 + outSlope: -0.00008583068 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2/mixamorig:LeftHandThumb3/mixamorig:LeftHandThumb4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1.7559187 + inSlope: 0.00015020369 + outSlope: 0.00015020369 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 1.7559187 + inSlope: 0.00015020369 + outSlope: 0.00015020369 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2/mixamorig:LeftHandThumb3/mixamorig:LeftHandThumb4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 19.793755 + inSlope: 0.00068664545 + outSlope: 0.00068664545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 19.793755 + inSlope: 0.00068664545 + outSlope: 0.00068664545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -8.4277935 + inSlope: -0.00017166136 + outSlope: -0.00017166136 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -8.4277935 + inSlope: -0.00017166136 + outSlope: -0.00017166136 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -4.1253605 + inSlope: -0.00051498413 + outSlope: -0.00051498413 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -4.1253605 + inSlope: -0.00051498413 + outSlope: -0.00051498413 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 28.320646 + inSlope: 0.00017166136 + outSlope: 0.00017166136 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 28.320646 + inSlope: 0.00017166136 + outSlope: 0.00017166136 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.43786985 + inSlope: -0.00032722947 + outSlope: -0.00032722947 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.43786985 + inSlope: -0.00032722947 + outSlope: -0.00032722947 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 4.1085415 + inSlope: -0.00051498413 + outSlope: -0.00051498413 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 4.1085415 + inSlope: -0.00051498413 + outSlope: -0.00051498413 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 28.412418 + inSlope: -0.00034332272 + outSlope: -0.00034332272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 28.412418 + inSlope: -0.00034332272 + outSlope: -0.00034332272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2/mixamorig:LeftHandIndex3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1.0444903 + inSlope: 0.00038623807 + outSlope: 0.00038623807 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 1.0444903 + inSlope: 0.00038623807 + outSlope: 0.00038623807 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2/mixamorig:LeftHandIndex3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 4.124362 + inSlope: -0.00025749207 + outSlope: -0.00025749207 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 4.124362 + inSlope: -0.00025749207 + outSlope: -0.00025749207 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2/mixamorig:LeftHandIndex3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 5.0996976 + inSlope: 0.00030040738 + outSlope: 0.00030040738 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 5.0996976 + inSlope: 0.00030040738 + outSlope: 0.00030040738 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2/mixamorig:LeftHandIndex3/mixamorig:LeftHandIndex4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0000021572878 + inSlope: -0.00019415589 + outSlope: -0.00019415589 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.0000021572878 + inSlope: -0.00019415589 + outSlope: -0.00019415589 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2/mixamorig:LeftHandIndex3/mixamorig:LeftHandIndex4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0000023538012 + inSlope: -0.00021184208 + outSlope: -0.00021184208 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.0000023538012 + inSlope: -0.00021184208 + outSlope: -0.00021184208 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2/mixamorig:LeftHandIndex3/mixamorig:LeftHandIndex4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 19.696802 + inSlope: 0.00051498413 + outSlope: 0.00051498413 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 19.696802 + inSlope: 0.00051498413 + outSlope: 0.00051498413 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -8.209879 + inSlope: -0.00051498413 + outSlope: -0.00051498413 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -8.209879 + inSlope: -0.00051498413 + outSlope: -0.00051498413 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -4.3307486 + inSlope: -0.00008583068 + outSlope: -0.00008583068 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -4.3307486 + inSlope: -0.00008583068 + outSlope: -0.00008583068 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 45.42497 + inSlope: 0.00034332272 + outSlope: 0.00034332272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 45.42497 + inSlope: 0.00034332272 + outSlope: 0.00034332272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1.6532549 + inSlope: 0.0003969669 + outSlope: 0.0003969669 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 1.6532549 + inSlope: 0.0003969669 + outSlope: 0.0003969669 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 7.6462493 + inSlope: 0.0005578995 + outSlope: 0.0005578995 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 7.6462493 + inSlope: 0.0005578995 + outSlope: 0.0005578995 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 43.439762 + inSlope: -0.00034332272 + outSlope: -0.00034332272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 43.439762 + inSlope: -0.00034332272 + outSlope: -0.00034332272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2/mixamorig:LeftHandMiddle3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 3.3778791 + inSlope: 0.0004291534 + outSlope: 0.0004291534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 3.3778791 + inSlope: 0.0004291534 + outSlope: 0.0004291534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2/mixamorig:LeftHandMiddle3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 7.577094 + inSlope: -0.00060081476 + outSlope: -0.00060081476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 7.577094 + inSlope: -0.00060081476 + outSlope: -0.00060081476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2/mixamorig:LeftHandMiddle3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1.2090029 + inSlope: -0.00028967854 + outSlope: -0.00028967854 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 1.2090029 + inSlope: -0.00028967854 + outSlope: -0.00028967854 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2/mixamorig:LeftHandMiddle3/mixamorig:LeftHandMiddle4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.3314077 + inSlope: 0.00018507241 + outSlope: 0.00018507241 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.3314077 + inSlope: 0.00018507241 + outSlope: 0.00018507241 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2/mixamorig:LeftHandMiddle3/mixamorig:LeftHandMiddle4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.3313637 + inSlope: 0.00034600493 + outSlope: 0.00034600493 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.3313637 + inSlope: 0.00034600493 + outSlope: 0.00034600493 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2/mixamorig:LeftHandMiddle3/mixamorig:LeftHandMiddle4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 6.504888 + inSlope: -0.00047206876 + outSlope: -0.00047206876 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 6.504888 + inSlope: -0.00047206876 + outSlope: -0.00047206876 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 9.77712 + inSlope: -0.0004291534 + outSlope: -0.0004291534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 9.77712 + inSlope: -0.0004291534 + outSlope: -0.0004291534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -1.7594696 + inSlope: -0.00054717064 + outSlope: -0.00054717064 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -1.7594696 + inSlope: -0.00054717064 + outSlope: -0.00054717064 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 50.995686 + inSlope: -0.00034332272 + outSlope: -0.00034332272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 50.995686 + inSlope: -0.00034332272 + outSlope: -0.00034332272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 4.492543 + inSlope: -0.0004291534 + outSlope: -0.0004291534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 4.492543 + inSlope: -0.0004291534 + outSlope: -0.0004291534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 9.437551 + inSlope: -0.0004291534 + outSlope: -0.0004291534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 9.437551 + inSlope: -0.0004291534 + outSlope: -0.0004291534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 31.681496 + inSlope: -0.00068664545 + outSlope: -0.00068664545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 31.681496 + inSlope: -0.00068664545 + outSlope: -0.00068664545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2/mixamorig:LeftHandPinky3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1.334681 + inSlope: 0.00047206876 + outSlope: 0.00047206876 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 1.334681 + inSlope: 0.00047206876 + outSlope: 0.00047206876 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2/mixamorig:LeftHandPinky3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 4.701457 + inSlope: 0.0004291534 + outSlope: 0.0004291534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 4.701457 + inSlope: 0.0004291534 + outSlope: 0.0004291534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2/mixamorig:LeftHandPinky3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 5.1031914 + inSlope: 0.00034332272 + outSlope: 0.00034332272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 5.1031914 + inSlope: 0.00034332272 + outSlope: 0.00034332272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2/mixamorig:LeftHandPinky3/mixamorig:LeftHandPinky4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.000009843321 + inSlope: 0.0004873921 + outSlope: 0.0004873921 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.000009843321 + inSlope: 0.0004873921 + outSlope: 0.0004873921 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2/mixamorig:LeftHandPinky3/mixamorig:LeftHandPinky4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0000005818449 + inSlope: -0.00005236604 + outSlope: -0.00005236604 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.0000005818449 + inSlope: -0.00005236604 + outSlope: -0.00005236604 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2/mixamorig:LeftHandPinky3/mixamorig:LeftHandPinky4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 81.686264 + inSlope: -2.7965484 + outSlope: -2.7965484 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 80.951385 + inSlope: 2.381709 + outSlope: 2.4042578 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 81.8502 + inSlope: 1.7217946 + outSlope: 1.9014366 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 81.68629 + inSlope: -3.6567318 + outSlope: -3.6567318 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 74.525505 + inSlope: -62.376934 + outSlope: -62.376934 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 59.85741 + inSlope: 36.31158 + outSlope: 36.143738 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 80.85061 + inSlope: 62.18492 + outSlope: 61.576218 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 74.52469 + inSlope: -82.37552 + outSlope: -82.37552 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -23.40508 + inSlope: -40.15224 + outSlope: -40.15224 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -32.41866 + inSlope: 20.553755 + outSlope: 20.38491 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -19.717173 + inSlope: 42.291195 + outSlope: 41.678165 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -23.405737 + inSlope: -51.21888 + outSlope: -51.21888 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 43.93523 + inSlope: -1.9037247 + outSlope: -1.9037247 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 46.167 + inSlope: 21.035934 + outSlope: 21.088942 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 48.50874 + inSlope: 19.787405 + outSlope: 19.787409 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 51.496258 + inSlope: 26.233637 + outSlope: 26.40184 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 52.427387 + inSlope: 28.938993 + outSlope: 28.93902 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 53.429863 + inSlope: 10.753556 + outSlope: 10.753556 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 53.137 + inSlope: 23.518297 + outSlope: 23.518318 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 54.94669 + inSlope: 19.00053 + outSlope: 18.912777 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 53.265507 + inSlope: -35.94466 + outSlope: -36.12363 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 49.486637 + inSlope: -41.74726 + outSlope: -41.484684 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 48.093586 + inSlope: -62.616867 + outSlope: -62.61698 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 45.278637 + inSlope: -62.68084 + outSlope: -62.875904 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 43.822353 + inSlope: -30.409273 + outSlope: -30.407095 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 41.95132 + inSlope: -31.838066 + outSlope: -31.840956 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 42.318733 + inSlope: 30.827295 + outSlope: 30.997211 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 43.76486 + inSlope: 21.18746 + outSlope: 21.133768 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 43.896305 + inSlope: 3.8004148 + outSlope: 3.8004148 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 33.006165 + inSlope: 22.854584 + outSlope: 22.854584 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 33.08438 + inSlope: -14.284973 + outSlope: -14.060668 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 31.711088 + inSlope: -22.94214 + outSlope: -22.942144 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 26.087128 + inSlope: -39.456486 + outSlope: -38.908047 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 25.076544 + inSlope: -37.823666 + outSlope: -37.8237 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 23.581736 + inSlope: 9.959622 + outSlope: 9.959622 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 25.761124 + inSlope: -26.036226 + outSlope: -26.03625 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 21.691565 + inSlope: -39.999027 + outSlope: -40.226665 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 26.094362 + inSlope: 72.96006 + outSlope: 72.378815 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 32.653072 + inSlope: 45.013863 + outSlope: 46.00418 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 33.78898 + inSlope: 67.60363 + outSlope: 67.603745 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 37.072685 + inSlope: 52.71314 + outSlope: 51.90658 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 36.347595 + inSlope: 2.612684 + outSlope: 2.6573207 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 37.652912 + inSlope: 2.7270153 + outSlope: 2.6544 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 35.076065 + inSlope: -61.845478 + outSlope: -61.517895 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 32.460686 + inSlope: -36.54805 + outSlope: -36.677547 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 33.29244 + inSlope: 17.549131 + outSlope: 17.549131 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 60.717503 + inSlope: 12.971214 + outSlope: 12.971214 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 60.020386 + inSlope: -27.229614 + outSlope: -27.026365 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 57.75243 + inSlope: -22.225912 + outSlope: -22.225916 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 53.509563 + inSlope: -35.68211 + outSlope: -35.127037 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 52.07808 + inSlope: -40.35687 + outSlope: -40.356907 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 50.833218 + inSlope: 3.8235857 + outSlope: 3.8235857 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 52.35355 + inSlope: -27.335703 + outSlope: -27.335728 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 48.85398 + inSlope: -38.7138 + outSlope: -38.944096 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 51.773438 + inSlope: 43.395275 + outSlope: 42.780777 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 56.38811 + inSlope: 46.049095 + outSlope: 47.03621 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 57.82559 + inSlope: 69.50666 + outSlope: 69.50679 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 60.931152 + inSlope: 57.733208 + outSlope: 56.939346 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 60.992077 + inSlope: 9.292538 + outSlope: 9.329118 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 62.472874 + inSlope: 15.874916 + outSlope: 15.820142 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 61.34829 + inSlope: -38.60287 + outSlope: -38.245438 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 59.53087 + inSlope: -20.12419 + outSlope: -20.267048 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 60.88836 + inSlope: 24.243073 + outSlope: 24.243073 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 29.9158 + inSlope: 33.212673 + outSlope: 33.212673 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 29.5655 + inSlope: 5.308039 + outSlope: 5.2970414 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 30.154919 + inSlope: -20.155622 + outSlope: -20.169184 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 28.678488 + inSlope: -24.75958 + outSlope: -24.749699 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 28.48316 + inSlope: -13.547768 + outSlope: -13.545285 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 27.591272 + inSlope: -0.48700336 + outSlope: -0.48700336 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 28.457355 + inSlope: -41.693462 + outSlope: -41.693497 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 24.809814 + inSlope: -58.936214 + outSlope: -58.940228 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 24.883028 + inSlope: 3.3411283 + outSlope: 3.3805287 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 25.004526 + inSlope: 5.5555935 + outSlope: 5.52526 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 25.163689 + inSlope: 72.43349 + outSlope: 72.43362 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 29.82617 + inSlope: 72.549835 + outSlope: 72.55108 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 30.002861 + inSlope: -41.26118 + outSlope: -41.26118 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 27.058945 + inSlope: -15.1803465 + outSlope: -15.180373 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 29.032093 + inSlope: 34.05868 + outSlope: 34.039597 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 29.132452 + inSlope: -18.89125 + outSlope: -18.938183 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 28.073606 + inSlope: 0.6346316 + outSlope: 0.6585795 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 29.863525 + inSlope: 20.982533 + outSlope: 20.982533 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 4.5108128 + inSlope: -0.7291439 + outSlope: -0.7291439 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 6.443273 + inSlope: 9.493885 + outSlope: 9.488519 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 7.3359165 + inSlope: 23.436157 + outSlope: 23.446714 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 8.345702 + inSlope: 26.297237 + outSlope: 26.272463 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 9.709943 + inSlope: 21.606108 + outSlope: 21.6241 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 10.524689 + inSlope: 3.6117556 + outSlope: 3.6117556 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 9.963159 + inSlope: 9.108268 + outSlope: 9.108275 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 11.120428 + inSlope: 10.149488 + outSlope: 10.050164 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 9.971209 + inSlope: -19.457542 + outSlope: -19.451359 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 7.6386466 + inSlope: -23.801588 + outSlope: -23.799585 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 6.9207754 + inSlope: -2.0900614 + outSlope: -2.090065 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 7.565986 + inSlope: -5.0076675 + outSlope: -5.0076585 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 6.498088 + inSlope: -47.64037 + outSlope: -47.64037 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 4.4663877 + inSlope: -44.650032 + outSlope: -44.650112 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 3.4091642 + inSlope: -17.60284 + outSlope: -17.682486 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 3.5973024 + inSlope: 19.003044 + outSlope: 18.961271 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 4.5773673 + inSlope: 13.415196 + outSlope: 13.413397 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 4.3948946 + inSlope: -2.60844 + outSlope: -2.60844 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 122.85231 + inSlope: 4.878518 + outSlope: 4.878518 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 123.10171 + inSlope: -2.8618402 + outSlope: -2.8863146 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 123.27427 + inSlope: -7.3227315 + outSlope: -7.276383 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 122.686035 + inSlope: -3.8864138 + outSlope: -3.9537034 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 122.80489 + inSlope: 1.2143321 + outSlope: 1.247635 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 123.10547 + inSlope: 19.594118 + outSlope: 19.594118 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 124.11893 + inSlope: 11.752625 + outSlope: 11.752636 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 123.85657 + inSlope: 11.769115 + outSlope: 11.674337 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 126.07707 + inSlope: 23.356228 + outSlope: 23.351906 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 127.21945 + inSlope: 7.424014 + outSlope: 7.4487243 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 127.37835 + inSlope: 23.29443 + outSlope: 23.294472 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 128.82698 + inSlope: 9.836893 + outSlope: 9.836875 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 127.96875 + inSlope: -47.768517 + outSlope: -47.768517 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 125.71571 + inSlope: -34.94336 + outSlope: -34.943424 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 125.52077 + inSlope: -12.311565 + outSlope: -12.404252 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 124.14699 + inSlope: -29.264147 + outSlope: -29.252447 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 122.96793 + inSlope: -20.509398 + outSlope: -20.507717 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 122.824974 + inSlope: 1.2637722 + outSlope: 1.2637722 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -9.314192 + inSlope: 17.039623 + outSlope: 17.039623 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -8.742003 + inSlope: 8.254766 + outSlope: 8.300127 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -8.788696 + inSlope: -1.5573118 + outSlope: -1.5663757 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -8.31095 + inSlope: 9.947966 + outSlope: 9.800406 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -8.049585 + inSlope: -2.1455958 + outSlope: -2.1455958 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -8.459217 + inSlope: -5.4186635 + outSlope: -5.4186635 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -8.402179 + inSlope: 3.809767 + outSlope: 3.8097637 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -8.212246 + inSlope: -3.3031054 + outSlope: -3.3031085 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -8.62113 + inSlope: -3.4684184 + outSlope: -3.4684184 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -8.440005 + inSlope: -23.53658 + outSlope: -23.5366 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -10.18988 + inSlope: -40.810127 + outSlope: -40.80525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -12.449488 + inSlope: -42.42118 + outSlope: -42.436253 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -16.132751 + inSlope: -26.824045 + outSlope: -26.839577 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -17.013319 + inSlope: -11.049662 + outSlope: -11.049682 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -16.88207 + inSlope: 0.041713756 + outSlope: 0.04171368 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -16.981802 + inSlope: -0.66003746 + outSlope: -0.66003746 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -16.882982 + inSlope: 25.323637 + outSlope: 25.323683 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -15.376449 + inSlope: 40.47084 + outSlope: 40.452305 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -12.880104 + inSlope: 32.600903 + outSlope: 32.60259 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -11.998574 + inSlope: 36.045513 + outSlope: 36.045578 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -10.469748 + inSlope: 40.540104 + outSlope: 40.540104 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -9.300602 + inSlope: 35.4615 + outSlope: 35.4615 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 11.005663 + inSlope: 57.82087 + outSlope: 57.82087 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 12.930761 + inSlope: 27.17142 + outSlope: 27.153822 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 12.784305 + inSlope: -1.9618746 + outSlope: -1.9545193 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 13.527889 + inSlope: 26.480965 + outSlope: 26.5543 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 14.239006 + inSlope: -11.655808 + outSlope: -11.655808 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 12.752166 + inSlope: -15.831214 + outSlope: -15.831214 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 13.182378 + inSlope: 12.684661 + outSlope: 12.684649 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 13.599687 + inSlope: -2.753532 + outSlope: -2.7535346 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 12.998365 + inSlope: 19.116385 + outSlope: 19.116385 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 14.872755 + inSlope: -42.676224 + outSlope: -42.67626 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 10.140956 + inSlope: -70.59641 + outSlope: -70.631516 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 10.959442 + inSlope: 8.072885 + outSlope: 7.989352 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 10.557513 + inSlope: -7.755521 + outSlope: -7.6879344 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 10.114522 + inSlope: 77.990074 + outSlope: 77.98884 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 15.758467 + inSlope: 72.79703 + outSlope: 72.79827 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 14.971721 + inSlope: -87.766525 + outSlope: -87.766525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 9.909813 + inSlope: -47.957344 + outSlope: -47.957428 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 11.760937 + inSlope: 20.566769 + outSlope: 20.577566 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 10.44312 + inSlope: -43.63448 + outSlope: -43.66418 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 8.373997 + inSlope: -9.16156 + outSlope: -9.160203 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 9.816045 + inSlope: 39.53803 + outSlope: 39.53803 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 11.019647 + inSlope: 35.627922 + outSlope: 35.627922 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -4.664105 + inSlope: -11.589502 + outSlope: -11.589502 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -5.0437284 + inSlope: -17.520746 + outSlope: -17.495874 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -6.6253085 + inSlope: -15.919037 + outSlope: -15.91858 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -7.532591 + inSlope: -14.682163 + outSlope: -14.794637 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -8.077346 + inSlope: -11.443721 + outSlope: -11.443721 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -8.292204 + inSlope: -19.28942 + outSlope: -19.28942 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -9.368725 + inSlope: -5.4729085 + outSlope: -5.4729033 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -8.657199 + inSlope: 7.242988 + outSlope: 7.242995 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -8.884406 + inSlope: -6.2890725 + outSlope: -6.2890725 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -9.075094 + inSlope: -2.2832682 + outSlope: -2.2832701 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -8.972856 + inSlope: -0.7799442 + outSlope: -0.49502808 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -8.846719 + inSlope: 21.550737 + outSlope: 21.537588 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -6.4384093 + inSlope: 10.358094 + outSlope: 10.299116 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -6.204043 + inSlope: 8.539331 + outSlope: 8.539347 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -5.8606997 + inSlope: 16.627565 + outSlope: 16.627537 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -5.100589 + inSlope: 35.32814 + outSlope: 35.32814 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -3.510563 + inSlope: 30.252546 + outSlope: 30.2526 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -3.043576 + inSlope: 8.463322 + outSlope: 8.537611 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -3.1417463 + inSlope: -0.61627513 + outSlope: -0.4758664 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -3.0096521 + inSlope: -9.174177 + outSlope: -9.174193 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -3.7135656 + inSlope: -24.609077 + outSlope: -24.609077 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -4.6692924 + inSlope: -28.106144 + outSlope: -28.106144 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 10.342537 + inSlope: -0.00068664545 + outSlope: -0.00068664545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 10.342537 + inSlope: -0.00068664545 + outSlope: -0.00068664545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 37.170456 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 37.170456 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 35.920876 + inSlope: -0.00068664545 + outSlope: -0.00068664545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 35.920876 + inSlope: -0.00068664545 + outSlope: -0.00068664545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 10.670498 + inSlope: 0.00034332272 + outSlope: 0.00034332272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 10.670498 + inSlope: 0.00034332272 + outSlope: 0.00034332272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 11.290308 + inSlope: 0.00051498413 + outSlope: 0.00051498413 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 11.290308 + inSlope: 0.00051498413 + outSlope: 0.00051498413 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -23.223019 + inSlope: -0.00034332272 + outSlope: -0.00034332272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -23.223019 + inSlope: -0.00034332272 + outSlope: -0.00034332272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.80233604 + inSlope: 0.00014483927 + outSlope: 0.00014483927 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.80233604 + inSlope: 0.00014483927 + outSlope: 0.00014483927 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2/mixamorig:RightHandThumb3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1.8197873 + inSlope: 0.0005793571 + outSlope: 0.0005793571 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 1.8197873 + inSlope: 0.0005793571 + outSlope: 0.0005793571 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2/mixamorig:RightHandThumb3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -30.614529 + inSlope: -0.00034332272 + outSlope: -0.00034332272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -30.614529 + inSlope: -0.00034332272 + outSlope: -0.00034332272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2/mixamorig:RightHandThumb3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 2.2293668 + inSlope: 0.00030040738 + outSlope: 0.00030040738 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 2.2293668 + inSlope: 0.00030040738 + outSlope: 0.00030040738 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2/mixamorig:RightHandThumb3/mixamorig:RightHandThumb4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -4.727409 + inSlope: 0.0006437301 + outSlope: 0.0006437301 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -4.727409 + inSlope: 0.0006437301 + outSlope: 0.0006437301 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2/mixamorig:RightHandThumb3/mixamorig:RightHandThumb4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -1.7559209 + inSlope: 0.00004291534 + outSlope: 0.00004291534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -1.7559209 + inSlope: 0.00004291534 + outSlope: 0.00004291534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2/mixamorig:RightHandThumb3/mixamorig:RightHandThumb4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 4.5185776 + inSlope: 0.00068664545 + outSlope: 0.00068664545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 4.5185776 + inSlope: 0.00068664545 + outSlope: 0.00068664545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -2.5139163 + inSlope: 0.00002145767 + outSlope: 0.00002145767 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -2.5139163 + inSlope: 0.00002145767 + outSlope: 0.00002145767 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -2.5163436 + inSlope: 0.00012874603 + outSlope: 0.00012874603 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -2.5163436 + inSlope: 0.00012874603 + outSlope: 0.00012874603 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 11.504157 + inSlope: -0.00060081476 + outSlope: -0.00060081476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 11.504157 + inSlope: -0.00060081476 + outSlope: -0.00060081476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.46790287 + inSlope: -0.00066250557 + outSlope: -0.00066250557 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.46790287 + inSlope: -0.00066250557 + outSlope: -0.00066250557 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -1.3037894 + inSlope: 0.00019311903 + outSlope: 0.00019311903 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -1.3037894 + inSlope: 0.00019311903 + outSlope: 0.00019311903 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 33.41154 + inSlope: 0.00034332272 + outSlope: 0.00034332272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 33.41154 + inSlope: 0.00034332272 + outSlope: 0.00034332272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2/mixamorig:RightHandIndex3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -1.2698494 + inSlope: -0.00020384787 + outSlope: -0.00020384787 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -1.2698494 + inSlope: -0.00020384787 + outSlope: -0.00020384787 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2/mixamorig:RightHandIndex3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -4.22932 + inSlope: -0.00038623807 + outSlope: -0.00038623807 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -4.22932 + inSlope: -0.00038623807 + outSlope: -0.00038623807 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2/mixamorig:RightHandIndex3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 5.0997005 + inSlope: 0.00004291534 + outSlope: 0.00004291534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 5.0997005 + inSlope: 0.00004291534 + outSlope: 0.00004291534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2/mixamorig:RightHandIndex3/mixamorig:RightHandIndex4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.00000055030677 + inSlope: 0.000049527604 + outSlope: 0.000049527604 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.00000055030677 + inSlope: 0.000049527604 + outSlope: 0.000049527604 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2/mixamorig:RightHandIndex3/mixamorig:RightHandIndex4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.000007762168 + inSlope: -0.0006746959 + outSlope: -0.0006746959 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.000007762168 + inSlope: -0.0006746959 + outSlope: -0.0006746959 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2/mixamorig:RightHandIndex3/mixamorig:RightHandIndex4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.11674738 + inSlope: 0.0002145767 + outSlope: 0.0002145767 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.11674738 + inSlope: 0.0002145767 + outSlope: 0.0002145767 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.048277337 + inSlope: 0.00013243407 + outSlope: 0.00013243407 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.048277337 + inSlope: 0.00013243407 + outSlope: 0.00013243407 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -8.616904 + inSlope: 0.00060081476 + outSlope: 0.00060081476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -8.616904 + inSlope: 0.00060081476 + outSlope: 0.00060081476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 75.48495 + inSlope: 0.00068664545 + outSlope: 0.00068664545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 75.48495 + inSlope: 0.00068664545 + outSlope: 0.00068664545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -146.03043 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -146.03043 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -154.6023 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -154.6023 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 70.17034 + inSlope: 0.00068664545 + outSlope: 0.00068664545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 70.17034 + inSlope: 0.00068664545 + outSlope: 0.00068664545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2/mixamorig:RightHandMiddle3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -13.81757 + inSlope: 0.00034332272 + outSlope: 0.00034332272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -13.81757 + inSlope: 0.00034332272 + outSlope: 0.00034332272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2/mixamorig:RightHandMiddle3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -19.052647 + inSlope: 0.00034332272 + outSlope: 0.00034332272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -19.052647 + inSlope: 0.00034332272 + outSlope: 0.00034332272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2/mixamorig:RightHandMiddle3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1.2090048 + inSlope: -0.00046133992 + outSlope: -0.00046133992 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 1.2090048 + inSlope: -0.00046133992 + outSlope: -0.00046133992 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2/mixamorig:RightHandMiddle3/mixamorig:RightHandMiddle4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.33139467 + inSlope: -0.00038623807 + outSlope: -0.00038623807 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.33139467 + inSlope: -0.00038623807 + outSlope: -0.00038623807 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2/mixamorig:RightHandMiddle3/mixamorig:RightHandMiddle4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.33136928 + inSlope: 0.00052571297 + outSlope: 0.00052571297 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.33136928 + inSlope: 0.00052571297 + outSlope: 0.00052571297 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2/mixamorig:RightHandMiddle3/mixamorig:RightHandMiddle4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 3.6434891 + inSlope: 0.00040769574 + outSlope: 0.00040769574 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 3.6434891 + inSlope: 0.00040769574 + outSlope: 0.00040769574 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -20.063047 + inSlope: -0.00017166136 + outSlope: -0.00017166136 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -20.063047 + inSlope: -0.00017166136 + outSlope: -0.00017166136 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -7.115978 + inSlope: -0.00038623807 + outSlope: -0.00038623807 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -7.115978 + inSlope: -0.00038623807 + outSlope: -0.00038623807 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 82.409935 + inSlope: 0.00068664545 + outSlope: 0.00068664545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 82.409935 + inSlope: 0.00068664545 + outSlope: 0.00068664545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -116.461975 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -116.461975 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -123.07957 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -123.07957 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 75.99608 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 75.99608 + 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: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2/mixamorig:RightHandPinky3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -20.923275 + inSlope: -0.00034332272 + outSlope: -0.00034332272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -20.923275 + inSlope: -0.00034332272 + outSlope: -0.00034332272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2/mixamorig:RightHandPinky3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -26.595974 + inSlope: -0.00034332272 + outSlope: -0.00034332272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -26.595974 + inSlope: -0.00034332272 + outSlope: -0.00034332272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2/mixamorig:RightHandPinky3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 5.1031914 + inSlope: 0.00034332272 + outSlope: 0.00034332272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 5.1031914 + inSlope: 0.00034332272 + outSlope: 0.00034332272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2/mixamorig:RightHandPinky3/mixamorig:RightHandPinky4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.000014206219 + inSlope: -0.0000947313 + outSlope: -0.0000947313 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.000014206219 + inSlope: -0.0000947313 + outSlope: -0.0000947313 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2/mixamorig:RightHandPinky3/mixamorig:RightHandPinky4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0000020096147 + inSlope: 0.0001808653 + outSlope: 0.0001808653 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.0000020096147 + inSlope: 0.0001808653 + outSlope: 0.0001808653 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2/mixamorig:RightHandPinky3/mixamorig:RightHandPinky4 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -20.80564 + inSlope: -408.6057 + outSlope: -408.6057 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -34.417194 + inSlope: -354.7921 + outSlope: -353.6263 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -51.68202 + inSlope: -147.52457 + outSlope: -147.5246 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -55.69096 + inSlope: -31.254217 + outSlope: -31.25421 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -57.423077 + inSlope: 6.3197126 + outSlope: 6.319714 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -55.930744 + inSlope: 2.996693 + outSlope: 2.996693 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -53.767273 + inSlope: 128.2393 + outSlope: 127.64455 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -47.7468 + inSlope: 180.90657 + outSlope: 181.27539 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -7.6321487 + inSlope: 214.11542 + outSlope: 215.32002 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 8.054851 + inSlope: 281.21454 + outSlope: 281.47128 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 18.374714 + inSlope: 354.16974 + outSlope: 354.17038 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 31.558504 + inSlope: 418.37057 + outSlope: 418.36984 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 46.32342 + inSlope: 307.0762 + outSlope: 307.0762 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 53.133965 + inSlope: 177.72362 + outSlope: 177.72394 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 58.54663 + inSlope: -262.52954 + outSlope: -262.52908 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 32.9627 + inSlope: -596.2186 + outSlope: -596.21967 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 20.495596 + inSlope: -369.69904 + outSlope: -369.6984 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 8.405178 + inSlope: -411.24918 + outSlope: -411.24854 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -6.9459867 + inSlope: -437.0514 + outSlope: -437.0514 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -20.806128 + inSlope: -411.36783 + outSlope: -411.36783 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -25.193373 + inSlope: 43.898445 + outSlope: 43.898445 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -23.49655 + inSlope: 84.76484 + outSlope: 90.61239 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -13.767688 + inSlope: 170.88763 + outSlope: 170.88766 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -9.000282 + inSlope: 24.936563 + outSlope: 24.936558 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -6.689759 + inSlope: 10.456944 + outSlope: 10.456946 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -9.624677 + inSlope: -35.073296 + outSlope: -35.073296 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -12.070277 + inSlope: -63.874043 + outSlope: -68.1623 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -14.4614935 + inSlope: -42.53568 + outSlope: -24.648186 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -14.498068 + inSlope: 8.259288 + outSlope: 3.9058974 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -14.530376 + inSlope: 18.304426 + outSlope: 16.545053 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -13.473701 + inSlope: 96.26822 + outSlope: 96.268394 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -7.734954 + inSlope: 232.89107 + outSlope: 232.89203 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 2.2797081 + inSlope: 335.0155 + outSlope: 335.0155 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 10.915873 + inSlope: 19.184002 + outSlope: 19.184036 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 1.3248287 + inSlope: -656.0711 + outSlope: -656.06995 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -19.289352 + inSlope: -218.79529 + outSlope: -218.79568 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -24.330004 + inSlope: -98.387985 + outSlope: -98.38781 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -26.55121 + inSlope: -38.06605 + outSlope: -38.06612 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -26.97685 + inSlope: 24.263157 + outSlope: 24.263157 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -25.19307 + inSlope: 72.13218 + outSlope: 72.13218 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 168.39215 + inSlope: -50.47668 + outSlope: -50.47668 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 166.48622 + inSlope: -74.98031 + outSlope: -81.00287 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 158.41531 + inSlope: -173.12665 + outSlope: -173.1267 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 150.84642 + inSlope: -100.73846 + outSlope: -100.738434 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 143.1571 + inSlope: -55.73089 + outSlope: -55.7309 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 146.237 + inSlope: 85.89936 + outSlope: 85.89936 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 154.1803 + inSlope: 159.83598 + outSlope: 163.72362 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 159.83882 + inSlope: 138.03622 + outSlope: 123.39364 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 175.86952 + inSlope: 52.946552 + outSlope: 52.676014 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 179.21165 + inSlope: 60.07668 + outSlope: 59.27531 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -178.45544 + inSlope: 117.045494 + outSlope: 117.04571 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -172.50246 + inSlope: 251.39902 + outSlope: 251.39993 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -161.48889 + inSlope: 319.48764 + outSlope: 319.48764 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -154.7984 + inSlope: 131.3126 + outSlope: 131.31284 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -155.09473 + inSlope: -563.2339 + outSlope: -563.23425 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -179.03267 + inSlope: -263.62772 + outSlope: -263.62817 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 176.70882 + inSlope: -87.91955 + outSlope: -87.91939 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 174.31865 + inSlope: -76.09537 + outSlope: -76.095505 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 171.30855 + inSlope: -85.59869 + outSlope: -85.59869 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 168.39175 + inSlope: -102.137245 + outSlope: -102.137245 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -86.50761 + inSlope: -34.660492 + outSlope: -34.660492 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -87.56417 + inSlope: -50.424496 + outSlope: -50.424496 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -87.39406 + inSlope: 125.12878 + outSlope: 125.12876 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -80.32555 + inSlope: 271.90198 + outSlope: 271.90204 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -70.2445 + inSlope: 288.0231 + outSlope: 288.0231 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -61.096867 + inSlope: 204.21422 + outSlope: 204.04234 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -56.06982 + inSlope: 18.430077 + outSlope: 18.253443 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -55.390476 + inSlope: -32.465633 + outSlope: -32.465633 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -58.125065 + inSlope: -161.76236 + outSlope: -161.76236 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -66.43831 + inSlope: -207.48918 + outSlope: -207.48918 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -71.998314 + inSlope: -95.912025 + outSlope: -95.91194 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -72.84177 + inSlope: -13.495319 + outSlope: -13.411107 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -68.331894 + inSlope: 82.92117 + outSlope: 82.92112 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -58.35726 + inSlope: 97.97971 + outSlope: 97.92252 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -50.871696 + inSlope: 183.03601 + outSlope: 183.03413 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -43.058002 + inSlope: 322.95416 + outSlope: 322.95474 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -29.228226 + inSlope: 519.57556 + outSlope: 519.576 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -8.4079685 + inSlope: 432.9854 + outSlope: 432.9854 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.12176588 + inSlope: 129.84187 + outSlope: 129.8421 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.34589496 + inSlope: -795.6655 + outSlope: -795.66547 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -52.75787 + inSlope: -882.7634 + outSlope: -882.7636 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -67.62439 + inSlope: -363.52145 + outSlope: -363.51532 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -77.051926 + inSlope: -264.55606 + outSlope: -264.55652 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -85.02114 + inSlope: -101.10728 + outSlope: -101.10728 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -86.50766 + inSlope: 47.323654 + outSlope: 47.323654 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -122.29039 + inSlope: -485.60117 + outSlope: -485.60117 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -142.84448 + inSlope: 638.29877 + outSlope: 638.29877 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -50.17254 + inSlope: 2204.4197 + outSlope: 2204.4194 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 1.0802069 + inSlope: 103.9479 + outSlope: 103.94792 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.121906586 + inSlope: -1.1229813 + outSlope: -1.1229813 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.21959212 + inSlope: 22.781265 + outSlope: 22.36597 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.49999794 + inSlope: -39.534203 + outSlope: -39.90216 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -1.274021 + inSlope: -113.628525 + outSlope: -113.628525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -7.5526505 + inSlope: -127.28417 + outSlope: -127.28417 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -9.267251 + inSlope: -53.472435 + outSlope: -53.472435 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -10.243146 + inSlope: -21.324722 + outSlope: -21.324703 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -10.276702 + inSlope: 69.73283 + outSlope: 70.51117 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.35908708 + inSlope: 19.327644 + outSlope: 19.327633 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -1.3561682 + inSlope: -34.033882 + outSlope: -35.231213 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -3.27349 + inSlope: 6.2865405 + outSlope: 7.064804 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -2.3943136 + inSlope: 84.3471 + outSlope: 84.34725 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 1.8975519 + inSlope: 60.5595 + outSlope: 60.559395 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 2.133718 + inSlope: -25.064386 + outSlope: -25.064386 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 1.2140644 + inSlope: -127.908104 + outSlope: -127.90833 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -6.5458593 + inSlope: -117.58893 + outSlope: -117.588715 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -17.88563 + inSlope: -736.8227 + outSlope: -736.8213 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -21.332504 + inSlope: -193.11923 + outSlope: -193.11888 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -30.27624 + inSlope: -532.7972 + outSlope: -532.79535 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -64.01878 + inSlope: -2318.4773 + outSlope: -2318.4773 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -122.29438 + inSlope: -1856.3636 + outSlope: -1856.3636 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 122.67309 + inSlope: 394.66528 + outSlope: 394.66528 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 140.1963 + inSlope: -705.4994 + outSlope: -705.4994 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 46.07362 + inSlope: -2237.085 + outSlope: -2237.0847 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -5.907356 + inSlope: -110.90357 + outSlope: -110.903595 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -4.4340854 + inSlope: 13.525845 + outSlope: 13.525845 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -4.217428 + inSlope: 8.163358 + outSlope: 8.726148 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -1.4914496 + inSlope: 82.57298 + outSlope: 82.91882 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 1.6445582 + inSlope: 141.74318 + outSlope: 141.74318 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 8.43104 + inSlope: 146.51419 + outSlope: 146.51419 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 10.914894 + inSlope: 66.636894 + outSlope: 66.636894 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 12.015558 + inSlope: 46.23648 + outSlope: 46.23644 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 13.587214 + inSlope: -19.629375 + outSlope: -20.4294 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 8.819856 + inSlope: 34.687485 + outSlope: 34.68746 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 13.947377 + inSlope: 41.450806 + outSlope: 42.628113 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 15.268614 + inSlope: -24.12452 + outSlope: -24.784964 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 13.719305 + inSlope: -86.74025 + outSlope: -86.7404 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 9.992302 + inSlope: -102.35903 + outSlope: -102.35885 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 5.994326 + inSlope: -9.853569 + outSlope: -9.853569 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 9.092737 + inSlope: -102.33567 + outSlope: -102.33585 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.6614358 + inSlope: 110.58555 + outSlope: 110.58535 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 23.366346 + inSlope: 858.53705 + outSlope: 858.5358 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 25.87832 + inSlope: 162.89908 + outSlope: 162.89879 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 33.709034 + inSlope: 490.98648 + outSlope: 490.98462 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 65.76383 + inSlope: 2272.8997 + outSlope: 2272.8997 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 122.6768 + inSlope: 1815.5157 + outSlope: 1815.5157 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 81.499695 + inSlope: 30.314024 + outSlope: 30.314024 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 82.269516 + inSlope: -21.485136 + outSlope: -21.485136 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 80.50803 + inSlope: -15.590285 + outSlope: -15.590283 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 81.15129 + inSlope: 30.136866 + outSlope: 27.831804 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 84.70638 + inSlope: 20.791971 + outSlope: 24.110174 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 84.15373 + inSlope: -55.468575 + outSlope: -55.463108 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 81.28514 + inSlope: -147.12755 + outSlope: -147.12755 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 72.23162 + inSlope: -236.05157 + outSlope: -236.05157 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 67.30618 + inSlope: 4.791413 + outSlope: 4.791413 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 72.987144 + inSlope: 212.57791 + outSlope: 212.57791 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 81.59278 + inSlope: 242.20667 + outSlope: 242.21194 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 88.60871 + inSlope: -64.9573 + outSlope: -153.13689 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 74.327576 + inSlope: -134.89568 + outSlope: -134.83928 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 57.035038 + inSlope: -131.41129 + outSlope: -131.45778 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 50.16102 + inSlope: -46.502728 + outSlope: -46.374023 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 49.645767 + inSlope: 75.67939 + outSlope: 75.67926 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 54.94539 + inSlope: 158.50786 + outSlope: 158.50786 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 60.223797 + inSlope: 203.48619 + outSlope: 203.48518 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 65.91989 + inSlope: 111.20372 + outSlope: 111.20352 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 74.73103 + inSlope: 206.882 + outSlope: 206.88237 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 80.01774 + inSlope: -68.86031 + outSlope: -68.86293 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 74.12449 + inSlope: -63.00997 + outSlope: -63.010086 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 75.825516 + inSlope: 101.473946 + outSlope: 101.473946 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 81.49993 + inSlope: 132.0702 + outSlope: 132.0702 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 172.35486 + inSlope: -495.65915 + outSlope: -495.65915 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 154.69376 + inSlope: -416.1923 + outSlope: -416.1923 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 147.12119 + inSlope: -288.2126 + outSlope: -288.21252 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 132.44165 + inSlope: -397.49078 + outSlope: -411.9681 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 111.15356 + inSlope: -652.5121 + outSlope: -623.89343 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 85.512505 + inSlope: -717.7688 + outSlope: -717.76636 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 64.90527 + inSlope: -1106.451 + outSlope: -1106.451 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 26.004618 + inSlope: -422.2357 + outSlope: -422.2357 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 14.85166 + inSlope: -170.16364 + outSlope: -170.16364 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 10.693055 + inSlope: -95.59488 + outSlope: -95.59488 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 11.163205 + inSlope: -148.21494 + outSlope: -148.2148 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -41.30151 + inSlope: -7259.6484 + outSlope: -3157.3193 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -146.44351 + inSlope: 19.394997 + outSlope: 18.703186 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -145.25244 + inSlope: -13.265643 + outSlope: -15.045777 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -145.55844 + inSlope: 60.439915 + outSlope: 61.00027 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -141.79213 + inSlope: 213.49614 + outSlope: 213.49713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -130.28238 + inSlope: 408.93277 + outSlope: 408.93277 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -114.66064 + inSlope: 770.72595 + outSlope: 770.726 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -75.02595 + inSlope: 539.6489 + outSlope: 539.648 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -92.620804 + inSlope: -909.54913 + outSlope: -909.548 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -131.3036 + inSlope: -1146.0756 + outSlope: -1146.0763 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -149.04716 + inSlope: -404.63162 + outSlope: -404.63235 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -167.62149 + inSlope: -528.77246 + outSlope: -528.77246 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 172.35358 + inSlope: -1162.9698 + outSlope: -1162.9698 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 171.80092 + inSlope: -474.04492 + outSlope: -474.04492 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 154.85994 + inSlope: -437.16382 + outSlope: -437.16382 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 145.1672 + inSlope: -296.58963 + outSlope: -296.5896 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 132.05106 + inSlope: -374.3783 + outSlope: -388.8611 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 111.39913 + inSlope: -596.3266 + outSlope: -567.70386 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 88.84845 + inSlope: -651.9944 + outSlope: -651.99194 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 69.53649 + inSlope: -1075.1654 + outSlope: -1075.1654 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 31.427618 + inSlope: -446.55634 + outSlope: -446.55634 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 17.84008 + inSlope: -232.76117 + outSlope: -232.76117 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 11.975313 + inSlope: -137.54489 + outSlope: -137.54489 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 11.341416 + inSlope: -195.37546 + outSlope: -195.37529 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -43.172935 + inSlope: -7294.435 + outSlope: -3192.09 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -149.22997 + inSlope: 1.1714177 + outSlope: 0.44700605 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -150.8138 + inSlope: -29.980305 + outSlope: -31.63376 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -152.362 + inSlope: 33.87772 + outSlope: 34.480625 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -149.64297 + inSlope: 142.35686 + outSlope: 142.3566 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -141.78029 + inSlope: 352.47406 + outSlope: 352.47406 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -126.34929 + inSlope: 807.4395 + outSlope: 807.441 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -84.09967 + inSlope: 564.0455 + outSlope: 564.04584 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -102.63243 + inSlope: -890.757 + outSlope: -890.7586 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -139.14427 + inSlope: -1074.4241 + outSlope: -1074.4249 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -154.25595 + inSlope: -327.28107 + outSlope: -327.28165 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -170.32848 + inSlope: -458.9488 + outSlope: -458.9488 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 171.79982 + inSlope: -1098.8027 + outSlope: -1098.8027 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 55.345684 + inSlope: -525.1804 + outSlope: -525.1804 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 37.815136 + inSlope: -635.78394 + outSlope: -635.78394 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 12.73063 + inSlope: -380.0824 + outSlope: -380.08234 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 12.145389 + inSlope: 22.102858 + outSlope: 22.102863 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 14.242073 + inSlope: 59.13048 + outSlope: 59.13048 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 16.058855 + inSlope: 32.02498 + outSlope: 31.99553 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 16.114265 + inSlope: 32.965504 + outSlope: 33.004993 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 18.641438 + inSlope: 63.157314 + outSlope: 63.157314 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 20.296534 + inSlope: 50.996307 + outSlope: 50.87314 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 22.013477 + inSlope: -0.9807015 + outSlope: -0.9805679 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 22.015709 + inSlope: -0.47904965 + outSlope: -0.47996482 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 21.983137 + inSlope: 31.783592 + outSlope: 31.78365 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 24.12829 + inSlope: 111.610725 + outSlope: 111.61053 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 29.405087 + inSlope: 170.45583 + outSlope: 170.45583 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 35.507256 + inSlope: 321.66638 + outSlope: 321.66696 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 50.64223 + inSlope: 563.1072 + outSlope: 563.1062 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 73.277985 + inSlope: 323.30264 + outSlope: 323.30322 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 74.79071 + inSlope: -119.08642 + outSlope: -119.086205 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 65.7643 + inSlope: -224.3681 + outSlope: -224.10689 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 55.345764 + inSlope: -136.46132 + outSlope: -136.46132 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot/mixamorig:LeftToeBase + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1.2260252 + inSlope: 69.258095 + outSlope: 69.258095 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 3.1270936 + inSlope: 45.365013 + outSlope: 45.365013 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 4.600892 + inSlope: 56.583622 + outSlope: 56.583614 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 7.229976 + inSlope: 25.849838 + outSlope: 25.849844 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 6.331297 + inSlope: -59.323257 + outSlope: -59.323257 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 3.2522812 + inSlope: -26.89934 + outSlope: -26.957355 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 7.012993 + inSlope: 15.659978 + outSlope: 15.554582 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 5.6162076 + inSlope: -49.962776 + outSlope: -49.962776 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 3.658706 + inSlope: -37.883545 + outSlope: -38.134888 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 3.1532674 + inSlope: 0.24545433 + outSlope: 0.24528025 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 3.1558218 + inSlope: -0.29372215 + outSlope: -0.2937982 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 3.1358633 + inSlope: -7.379974 + outSlope: -7.3799872 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 2.627616 + inSlope: -49.138374 + outSlope: -49.138287 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.20348078 + inSlope: -34.518578 + outSlope: -34.518578 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.8270703 + inSlope: -77.65663 + outSlope: -77.65677 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -7.549611 + inSlope: -463.79608 + outSlope: -463.79526 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -35.414585 + inSlope: -733.03705 + outSlope: -733.03564 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -21.373611 + inSlope: 490.1088 + outSlope: 490.10794 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -7.1523895 + inSlope: 250.36996 + outSlope: 239.16023 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 1.2260658 + inSlope: 67.328094 + outSlope: 67.328094 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot/mixamorig:LeftToeBase + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -15.395594 + inSlope: 48.414856 + outSlope: 48.414856 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -14.218416 + inSlope: 21.441362 + outSlope: 21.441362 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -13.634652 + inSlope: 22.417 + outSlope: 22.416998 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -12.206595 + inSlope: 25.01784 + outSlope: 25.017845 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -11.971491 + inSlope: -15.54617 + outSlope: -15.54617 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -13.25832 + inSlope: -10.748406 + outSlope: -10.844706 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -11.312147 + inSlope: 26.982332 + outSlope: 26.903975 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -10.853636 + inSlope: -21.787436 + outSlope: -21.787436 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -12.750523 + inSlope: -34.260525 + outSlope: -34.52437 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -13.081606 + inSlope: 0.15046121 + outSlope: 0.15031815 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -13.0785885 + inSlope: 0.60689926 + outSlope: 0.6075091 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -13.038621 + inSlope: -28.14549 + outSlope: -28.14554 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -14.976215 + inSlope: -59.90816 + outSlope: -59.908054 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -17.137821 + inSlope: 36.531227 + outSlope: 36.531227 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -12.094559 + inSlope: 12.605428 + outSlope: 12.606824 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -18.384428 + inSlope: -189.28242 + outSlope: -189.28209 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -30.371819 + inSlope: -538.1271 + outSlope: -538.1253 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -18.266235 + inSlope: 326.37527 + outSlope: 326.3747 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -13.136094 + inSlope: 22.362738 + outSlope: 10.340934 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -15.395652 + inSlope: -74.06616 + outSlope: -74.06616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot/mixamorig:LeftToeBase + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 4.8948174 + inSlope: 0.00034332272 + outSlope: 0.00034332272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 4.8948174 + inSlope: 0.00034332272 + outSlope: 0.00034332272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot/mixamorig:LeftToeBase/mixamorig:LeftToe_End + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 4.903599 + inSlope: -0.00034332272 + outSlope: -0.00034332272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 4.903599 + inSlope: -0.00034332272 + outSlope: -0.00034332272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot/mixamorig:LeftToeBase/mixamorig:LeftToe_End + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 8.569193 + inSlope: 0.00051498413 + outSlope: 0.00051498413 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 8.569193 + inSlope: 0.00051498413 + outSlope: 0.00051498413 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot/mixamorig:LeftToeBase/mixamorig:LeftToe_End + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -30.203444 + inSlope: 117.32153 + outSlope: 117.32153 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -22.648891 + inSlope: 111.62023 + outSlope: 113.35477 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -5.659373 + inSlope: 138.44133 + outSlope: 138.44136 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 2.050872 + inSlope: -89.76138 + outSlope: -89.69301 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -10.5242815 + inSlope: -252.38516 + outSlope: -252.49562 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -19.459843 + inSlope: -216.13507 + outSlope: -216.13507 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -24.906818 + inSlope: -167.93805 + outSlope: -165.90575 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -35.62923 + inSlope: -141.77153 + outSlope: -140.39688 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -48.81756 + inSlope: -89.13961 + outSlope: -91.454666 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -50.57946 + inSlope: 36.266903 + outSlope: 36.204792 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -49.047 + inSlope: 18.29809 + outSlope: 18.298058 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -49.34383 + inSlope: 46.814423 + outSlope: 46.814423 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -45.900597 + inSlope: 146.30687 + outSlope: 146.30988 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -39.654655 + inSlope: 31.271927 + outSlope: 31.27187 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -43.818844 + inSlope: -52.028805 + outSlope: -52.021812 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -40.394722 + inSlope: 113.27626 + outSlope: 113.27636 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -30.214314 + inSlope: 166.64577 + outSlope: 166.64577 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 5.00555 + inSlope: -63.587986 + outSlope: -63.587986 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.034445915 + inSlope: -93.9856 + outSlope: -90.54671 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -10.263751 + inSlope: 12.717767 + outSlope: 12.71777 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -2.4193475 + inSlope: 22.363825 + outSlope: 22.69044 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -3.7129564 + inSlope: -0.40353283 + outSlope: -2.363005 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -2.734123 + inSlope: 63.04983 + outSlope: 63.04983 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.22856447 + inSlope: 95.88153 + outSlope: 100.66896 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 5.95259 + inSlope: 73.53978 + outSlope: 77.90772 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 13.721121 + inSlope: 158.91061 + outSlope: 154.20248 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 23.131144 + inSlope: 11.369048 + outSlope: 11.942665 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 20.629322 + inSlope: -80.79525 + outSlope: -80.79648 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 17.682604 + inSlope: -107.65374 + outSlope: -107.65374 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 13.667092 + inSlope: -79.10502 + outSlope: -79.105156 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 12.253027 + inSlope: 2.935584 + outSlope: 2.9355788 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 13.738301 + inSlope: 3.321559 + outSlope: 3.2991173 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 10.031471 + inSlope: -74.2487 + outSlope: -74.248764 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 4.939971 + inSlope: -49.025806 + outSlope: -49.025806 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 165.34807 + inSlope: 149.67566 + outSlope: 149.67566 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 174.33342 + inSlope: 115.04951 + outSlope: 111.917366 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -170.50298 + inSlope: 118.42607 + outSlope: 118.4261 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -159.94589 + inSlope: 18.540804 + outSlope: 18.932869 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -160.9367 + inSlope: -77.99123 + outSlope: -77.58271 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -165.22096 + inSlope: -164.0973 + outSlope: -164.0973 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -171.79254 + inSlope: -219.7513 + outSlope: -223.26006 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 172.87141 + inSlope: -203.05826 + outSlope: -206.4683 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 156.779 + inSlope: -228.96371 + outSlope: -224.49808 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 141.65334 + inSlope: -95.388115 + outSlope: -95.868164 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 141.4871 + inSlope: 11.559002 + outSlope: 11.558981 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 142.50348 + inSlope: 61.397045 + outSlope: 61.397045 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 145.3557 + inSlope: 78.41073 + outSlope: 78.41087 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 147.928 + inSlope: 11.553509 + outSlope: 11.553488 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 146.22487 + inSlope: 5.563197 + outSlope: 5.568009 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 152.73404 + inSlope: 153.14256 + outSlope: 153.1427 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 165.35934 + inSlope: 182.83464 + outSlope: 182.83464 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -57.536446 + inSlope: 42.809597 + outSlope: 42.809597 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -56.01923 + inSlope: 42.649265 + outSlope: 42.80633 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -53.785477 + inSlope: 40.138542 + outSlope: 40.269466 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -47.80237 + inSlope: 78.223564 + outSlope: 77.31904 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -44.94042 + inSlope: 25.321085 + outSlope: 25.247442 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -50.60067 + inSlope: -139.0883 + outSlope: -139.0883 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -63.340706 + inSlope: -255.79607 + outSlope: -263.0688 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -74.9051 + inSlope: -311.34677 + outSlope: -311.34982 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -84.19758 + inSlope: -92.30988 + outSlope: -92.30988 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -82.349495 + inSlope: 39.287113 + outSlope: 39.287148 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -81.152885 + inSlope: 84.84612 + outSlope: 84.84597 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -75.88693 + inSlope: 178.68149 + outSlope: 178.68149 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -70.78667 + inSlope: 169.53813 + outSlope: 169.53981 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -64.59856 + inSlope: 180.56871 + outSlope: 180.52942 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -50.52956 + inSlope: 304.2535 + outSlope: 304.37906 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -38.52328 + inSlope: 384.98773 + outSlope: 384.98706 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -24.773819 + inSlope: 289.75232 + outSlope: 289.75317 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -19.191912 + inSlope: 178.6432 + outSlope: 178.6432 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -12.839612 + inSlope: 86.61588 + outSlope: 86.616035 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -13.411816 + inSlope: -319.64648 + outSlope: -319.6473 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -34.131798 + inSlope: -463.87604 + outSlope: -463.8796 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -44.725403 + inSlope: -271.27054 + outSlope: -270.95377 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -56.261353 + inSlope: -79.74976 + outSlope: -80.406265 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -57.551292 + inSlope: -33.2735 + outSlope: -33.2735 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 3.2801373 + inSlope: 167.65948 + outSlope: 167.65948 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 8.712672 + inSlope: 58.168915 + outSlope: 57.441536 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 6.137146 + inSlope: -45.8274 + outSlope: -45.26504 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 7.638482 + inSlope: 121.12812 + outSlope: 124.33014 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 13.952562 + inSlope: 78.16618 + outSlope: 78.00628 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 4.976807 + inSlope: -337.2604 + outSlope: -337.2604 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -23.359121 + inSlope: -445.55374 + outSlope: -395.3916 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -31.307707 + inSlope: -399.06174 + outSlope: -399.05933 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -50.77272 + inSlope: -1194.354 + outSlope: -1194.354 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -64.4857 + inSlope: 183.04048 + outSlope: 183.042 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -43.842007 + inSlope: 898.19324 + outSlope: 898.19165 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -11.817949 + inSlope: 341.92325 + outSlope: 341.92325 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -6.4186873 + inSlope: 141.83488 + outSlope: 141.83376 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -1.4002638 + inSlope: 14.066204 + outSlope: 10.929123 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -4.092673 + inSlope: -3.355358 + outSlope: -2.9478955 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -3.7491486 + inSlope: 44.106228 + outSlope: 44.106308 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -1.3979102 + inSlope: 51.500446 + outSlope: 51.500355 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.18421052 + inSlope: 25.243235 + outSlope: 25.243235 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.3067374 + inSlope: -0.39460358 + outSlope: -0.3946043 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.07443924 + inSlope: -34.216194 + outSlope: -34.216133 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -2.8868353 + inSlope: -84.218864 + outSlope: -84.21902 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -3.877199 + inSlope: -15.088213 + outSlope: -16.637346 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -1.6615629 + inSlope: 112.35388 + outSlope: 109.46813 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 3.6463118 + inSlope: 166.91039 + outSlope: 166.91039 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 4.505458 + inSlope: -159.88359 + outSlope: -159.88359 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.6671886 + inSlope: -51.79934 + outSlope: -51.063843 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 2.2241096 + inSlope: 51.04642 + outSlope: 50.4903 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 2.4481924 + inSlope: -55.62365 + outSlope: -59.2132 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.6316348 + inSlope: 12.515923 + outSlope: 12.751569 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 12.660812 + inSlope: 377.6928 + outSlope: 377.6928 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 42.542717 + inSlope: 412.19916 + outSlope: 361.83786 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 47.92149 + inSlope: 322.1302 + outSlope: 322.12912 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 64.777016 + inSlope: 1139.1663 + outSlope: 1139.1663 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 77.39577 + inSlope: -226.35957 + outSlope: -226.35977 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 54.95896 + inSlope: -958.37195 + outSlope: -958.373 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 20.71058 + inSlope: -411.05948 + outSlope: -411.05948 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 12.929557 + inSlope: -210.79785 + outSlope: -210.79823 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 5.700244 + inSlope: -75.58764 + outSlope: -72.68705 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 5.4611077 + inSlope: -11.874269 + outSlope: -12.111258 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 5.2101293 + inSlope: -38.052532 + outSlope: -38.051228 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 3.1792092 + inSlope: -8.068994 + outSlope: -8.070353 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 4.1845837 + inSlope: 37.76015 + outSlope: 37.76015 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 5.59964 + inSlope: 12.763356 + outSlope: 12.763379 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 5.0512137 + inSlope: 51.11484 + outSlope: 51.11475 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 9.725799 + inSlope: 115.07766 + outSlope: 115.077866 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 11.279952 + inSlope: 26.350819 + outSlope: 27.774855 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 9.372402 + inSlope: -109.175095 + outSlope: -106.28012 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 4.184291 + inSlope: -163.33347 + outSlope: -163.33347 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 83.15616 + inSlope: 78.28307 + outSlope: 78.28307 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 85.28112 + inSlope: 41.188427 + outSlope: 23.074375 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 82.248726 + inSlope: -135.18022 + outSlope: -135.18025 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 73.17866 + inSlope: -134.74492 + outSlope: -134.4733 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 68.81174 + inSlope: -101.818504 + outSlope: -101.81855 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 66.39637 + inSlope: -63.92464 + outSlope: -63.92464 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 64.51871 + inSlope: -28.313143 + outSlope: -28.313143 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 64.588776 + inSlope: 53.052982 + outSlope: 53.052982 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 67.95648 + inSlope: 188.2837 + outSlope: 188.2837 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 77.31626 + inSlope: 323.7362 + outSlope: 323.7332 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 83.94977 + inSlope: -196.81166 + outSlope: -196.81184 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 78.576744 + inSlope: -80.924614 + outSlope: -80.924614 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 78.31141 + inSlope: -9.105607 + outSlope: -9.105615 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 78.34575 + inSlope: 45.22114 + outSlope: 45.22106 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 80.37941 + inSlope: 51.22234 + outSlope: 51.22234 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 83.288376 + inSlope: 120.993706 + outSlope: 120.99392 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 87.991425 + inSlope: 26.938501 + outSlope: 26.938454 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 85.91126 + inSlope: -97.69378 + outSlope: -97.693954 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 82.24402 + inSlope: -160.69443 + outSlope: -160.69688 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 76.1967 + inSlope: -344.1849 + outSlope: -344.18277 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 59.368774 + inSlope: -522.9841 + outSlope: -522.9845 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 41.17812 + inSlope: -446.4871 + outSlope: -446.4871 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 29.399288 + inSlope: -173.58487 + outSlope: -173.58517 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 29.552977 + inSlope: 246.1999 + outSlope: 246.20084 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 45.96195 + inSlope: 416.9634 + outSlope: 416.9628 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 57.460945 + inSlope: 329.71307 + outSlope: 328.94955 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 76.97456 + inSlope: 218.5174 + outSlope: 227.2785 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 83.178024 + inSlope: 120.25234 + outSlope: 120.25234 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 60.650494 + inSlope: 691.48804 + outSlope: 691.48804 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 91.08625 + inSlope: 1486.4879 + outSlope: 1578.6633 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -168.32896 + inSlope: 480.3833 + outSlope: 480.3834 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -148.07338 + inSlope: 108.84843 + outSlope: 116.935684 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -144.37735 + inSlope: -13.02978 + outSlope: -13.029786 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -147.99547 + inSlope: -112.899635 + outSlope: -112.899635 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -152.01271 + inSlope: -41.53519 + outSlope: -41.53519 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -151.14658 + inSlope: 106.89286 + outSlope: 106.89286 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -144.21906 + inSlope: 139.64723 + outSlope: 139.64723 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -142.88525 + inSlope: -559.88116 + outSlope: -559.8807 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 125.69293 + inSlope: -1620.8116 + outSlope: -1620.8103 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 113.323524 + inSlope: 64.65386 + outSlope: 64.65386 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 125.96849 + inSlope: 229.31352 + outSlope: 229.30823 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 129.19531 + inSlope: -301.74527 + outSlope: -301.74475 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 101.05594 + inSlope: -491.1956 + outSlope: -491.1956 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 103.663216 + inSlope: -126.36807 + outSlope: -126.3683 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 64.17 + inSlope: -4858.1396 + outSlope: -4858.1377 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -38.582905 + inSlope: 501.59723 + outSlope: 501.5981 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.6321432 + inSlope: 400.70044 + outSlope: 400.6997 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 8.522077 + inSlope: 45.277626 + outSlope: 45.277706 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 8.481906 + inSlope: -4.2876763 + outSlope: -4.287668 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 8.983498 + inSlope: 41.84895 + outSlope: 41.84895 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 10.439386 + inSlope: 77.2618 + outSlope: 77.26194 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 14.886295 + inSlope: 80.56797 + outSlope: 80.567825 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 15.744074 + inSlope: 44.127064 + outSlope: 44.12577 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 17.856882 + inSlope: 103.07709 + outSlope: 114.31301 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 34.178288 + inSlope: 747.3634 + outSlope: 584.006 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 60.29983 + inSlope: 1794.4731 + outSlope: 1794.4731 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 61.30645 + inSlope: 682.2544 + outSlope: 682.2544 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 91.43456 + inSlope: 1445.2246 + outSlope: 1537.4021 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -172.18936 + inSlope: 426.38687 + outSlope: 426.38696 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -154.19211 + inSlope: 90.68322 + outSlope: 98.805504 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -151.27975 + inSlope: 7.035367 + outSlope: 7.0353703 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -152.76491 + inSlope: -96.045235 + outSlope: -96.045235 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -157.80536 + inSlope: -74.6782 + outSlope: -74.6782 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -158.12045 + inSlope: 62.96677 + outSlope: 62.96677 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -152.93272 + inSlope: 120.4802 + outSlope: 120.4802 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -151.1574 + inSlope: -474.49542 + outSlope: -474.495 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 122.66932 + inSlope: -1457.7341 + outSlope: -1457.7327 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 115.97514 + inSlope: 179.08403 + outSlope: 179.08403 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 130.5528 + inSlope: 269.816 + outSlope: 269.81348 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 134.5468 + inSlope: -267.4363 + outSlope: -267.43585 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 107.925804 + inSlope: -471.00754 + outSlope: -471.00754 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 110.364395 + inSlope: -154.84256 + outSlope: -154.84558 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 69.142685 + inSlope: -4900.8037 + outSlope: -4900.803 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -34.729786 + inSlope: 523.9351 + outSlope: 523.9361 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 7.098504 + inSlope: 485.50885 + outSlope: 485.50934 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 18.034315 + inSlope: 110.492325 + outSlope: 110.49252 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 19.294182 + inSlope: -23.80671 + outSlope: -23.806667 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 17.019503 + inSlope: 34.18239 + outSlope: 34.18239 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 21.047565 + inSlope: 94.30622 + outSlope: 94.30639 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 23.909306 + inSlope: 45.95551 + outSlope: 45.956802 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 24.066235 + inSlope: 16.369959 + outSlope: 16.368614 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 24.991993 + inSlope: 60.34624 + outSlope: 71.97951 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 36.937416 + inSlope: 679.96826 + outSlope: 516.4204 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 61.201195 + inSlope: 1739.0941 + outSlope: 1739.0941 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 20.933043 + inSlope: 0.00030899048 + outSlope: 0.00030899048 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 20.93304 + inSlope: -1.082634 + outSlope: -1.0819815 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 22.492344 + inSlope: 101.47434 + outSlope: 101.41171 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 27.62521 + inSlope: 227.84444 + outSlope: 227.84444 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 37.619614 + inSlope: 250.50203 + outSlope: 250.50203 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 44.473465 + inSlope: 134.51799 + outSlope: 134.51799 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 46.611164 + inSlope: -68.95604 + outSlope: -68.95597 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 37.3229 + inSlope: -203.73785 + outSlope: -203.73804 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 35.800114 + inSlope: -111.17375 + outSlope: -111.17375 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 29.868866 + inSlope: -165.27834 + outSlope: -165.27847 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 24.612955 + inSlope: -138.67043 + outSlope: -138.67018 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 20.888727 + inSlope: -145.60666 + outSlope: -145.60666 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 14.899264 + inSlope: -97.76476 + outSlope: -97.76494 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 15.08076 + inSlope: 42.936413 + outSlope: 42.936337 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 17.768349 + inSlope: 46.839485 + outSlope: 46.83957 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 18.136751 + inSlope: -18.611029 + outSlope: -18.610996 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 16.58375 + inSlope: 85.63887 + outSlope: 85.63902 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 23.96712 + inSlope: 200.24232 + outSlope: 200.24197 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 30.034813 + inSlope: 30.254263 + outSlope: 30.254263 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 25.992622 + inSlope: -135.02805 + outSlope: -135.02827 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 21.080662 + inSlope: -78.24917 + outSlope: -78.24902 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 20.916084 + inSlope: -2.4726083 + outSlope: -2.4762166 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 20.932087 + inSlope: 0.51798844 + outSlope: 0.51798844 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot/mixamorig:RightToeBase + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -1.9050248 + inSlope: -0.000081539154 + outSlope: -0.000081539154 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -1.9050295 + inSlope: 2.228581 + outSlope: 2.2288616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -1.7311167 + inSlope: -34.428772 + outSlope: -34.473095 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -4.104301 + inSlope: -99.80328 + outSlope: -99.80328 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -8.72139 + inSlope: -122.28745 + outSlope: -122.28745 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -11.635015 + inSlope: -128.4682 + outSlope: -128.4682 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -16.889465 + inSlope: -602.3406 + outSlope: -602.34 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -48.344078 + inSlope: -354.1783 + outSlope: -354.17728 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -45.399273 + inSlope: 185.42279 + outSlope: 185.42279 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -36.215115 + inSlope: 299.04202 + outSlope: 299.04092 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -25.249037 + inSlope: 282.59866 + outSlope: 282.59818 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -16.880533 + inSlope: 315.0734 + outSlope: 315.0734 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -4.1886263 + inSlope: 193.86708 + outSlope: 193.86742 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -3.2608423 + inSlope: -5.2191114 + outSlope: -5.2191024 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -4.5849075 + inSlope: -80.4741 + outSlope: -80.47424 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -8.574103 + inSlope: -122.06312 + outSlope: -122.0629 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -12.652546 + inSlope: -143.92319 + outSlope: -143.92343 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -18.474241 + inSlope: -83.80396 + outSlope: -83.80381 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -17.550226 + inSlope: 127.406456 + outSlope: 127.406456 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -10.618456 + inSlope: 226.85667 + outSlope: 226.85707 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -2.3052645 + inSlope: 126.42778 + outSlope: 126.428925 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -1.8977354 + inSlope: 6.1069984 + outSlope: 6.1035895 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -1.8984977 + inSlope: -0.02508135 + outSlope: -0.02508135 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot/mixamorig:RightToeBase + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 12.761959 + inSlope: -0.00020599365 + outSlope: -0.00020599365 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 12.761974 + inSlope: 0.660347 + outSlope: 0.66141117 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 13.661867 + inSlope: 18.228975 + outSlope: 18.51866 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 13.945004 + inSlope: -34.525654 + outSlope: -34.525654 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 11.069222 + inSlope: -88.42424 + outSlope: -88.42424 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 8.764202 + inSlope: -77.1951 + outSlope: -77.1951 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 6.333862 + inSlope: -327.52988 + outSlope: -327.52957 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -9.091834 + inSlope: -114.448006 + outSlope: -114.448105 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -6.820222 + inSlope: 71.085754 + outSlope: 71.085754 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -4.736786 + inSlope: 101.477974 + outSlope: 101.478065 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.31208688 + inSlope: 146.31068 + outSlope: 146.31178 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 5.686079 + inSlope: 172.988 + outSlope: 172.988 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 11.811283 + inSlope: 116.078354 + outSlope: 116.07857 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 14.399874 + inSlope: 21.26938 + outSlope: 21.269342 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 13.186547 + inSlope: -71.77439 + outSlope: -71.77452 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 9.669208 + inSlope: -119.22126 + outSlope: -119.22105 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 5.306423 + inSlope: -99.12921 + outSlope: -99.12939 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 2.63173 + inSlope: 32.571663 + outSlope: 32.5716 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 8.251222 + inSlope: 127.94384 + outSlope: 127.94384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 10.576747 + inSlope: 64.27314 + outSlope: 64.273254 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 12.668323 + inSlope: 25.412518 + outSlope: 25.412472 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 12.768057 + inSlope: 1.4840114 + outSlope: 1.4792497 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 12.768404 + inSlope: 0.010600096 + outSlope: 0.010600096 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot/mixamorig:RightToeBase + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 4.8948174 + inSlope: 0.00034332272 + outSlope: 0.00034332272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 4.8948174 + inSlope: 0.00034332272 + outSlope: 0.00034332272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot/mixamorig:RightToeBase/mixamorig:RightToe_End + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -4.903599 + inSlope: 0.00034332272 + outSlope: 0.00034332272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -4.903599 + inSlope: 0.00034332272 + outSlope: 0.00034332272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot/mixamorig:RightToeBase/mixamorig:RightToe_End + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -8.569193 + inSlope: -0.00051498413 + outSlope: -0.00051498413 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -8.569193 + inSlope: -0.00051498413 + outSlope: -0.00051498413 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: jammo_mixamo_rig/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot/mixamorig:RightToeBase/mixamorig:RightToe_End + classID: 4 + script: {fileID: 0} + m_HasGenericRootTransform: 0 + m_HasMotionFloatCurves: 0 + m_Events: [] diff --git a/Assets/Jammo-Character/Animations/Mixamo-Gun/Rifle Walk Forward.anim.meta b/Assets/Jammo-Character/Animations/Mixamo-Gun/Rifle Walk Forward.anim.meta new file mode 100644 index 0000000..9461bcb --- /dev/null +++ b/Assets/Jammo-Character/Animations/Mixamo-Gun/Rifle Walk Forward.anim.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d19e758bb93175945a76f03c6e803137 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 7400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Jammo-Character/Animations/Standing.anim b/Assets/Jammo-Character/Animations/Standing.anim new file mode 100644 index 0000000..10b4da1 --- /dev/null +++ b/Assets/Jammo-Character/Animations/Standing.anim @@ -0,0 +1,9292 @@ +%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: Standing + 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, 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.033333335 + 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: Armature.001 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.10198441, y: -0.18327959, z: -0.15472077, w: 0.96543735} + inSlope: {x: -0.029614044, y: -0.012416839, z: -0.023497937, w: -0.0030219553} + outSlope: {x: -0.029614044, y: -0.012416839, z: -0.023497937, w: -0.0030219553} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.093719505, y: -0.18624978, z: -0.15870653, w: 0.9650596} + inSlope: {x: 0.12763724, y: -0.04851846, z: 0.095240295, w: -0.0061261635} + outSlope: {x: 0.12763724, y: -0.04851846, z: 0.095240295, w: -0.0061261635} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: 0.11760576, y: -0.19315456, z: -0.14608715, w: 0.9630777} + inSlope: {x: 0.2708991, y: 0.0009861588, z: 0.021460786, w: -0.029383577} + outSlope: {x: 0.2708991, y: 0.0009861588, z: 0.021460786, w: -0.029383577} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.14438961, y: -0.17751753, z: -0.17505924, w: 0.95759773} + inSlope: {x: 0.16387539, y: 0.14230171, z: -0.27497184, w: -0.048339665} + outSlope: {x: 0.16387539, y: 0.14230171, z: -0.27497184, w: -0.048339665} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.09251955, y: -0.17229298, z: -0.18219233, w: 0.9636188} + inSlope: {x: -0.6154008, y: 0.016966056, z: 0.15679592, w: 0.09107799} + outSlope: {x: -0.6154008, y: 0.016966056, z: 0.15679592, w: 0.09107799} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.023075672, y: -0.1225536, z: -0.16609073, w: 0.9781933} + inSlope: {x: 0.1336603, y: 0.46120137, z: 0.13619907, w: 0.07659221} + outSlope: {x: 0.1336603, y: 0.46120137, z: 0.13619907, w: 0.07659221} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.120146796, y: -0.028504664, z: -0.13409112, w: 0.98324555} + inSlope: {x: 0.70504355, y: 0.5532661, z: 0.14157853, w: -0.04869823} + outSlope: {x: 0.70504355, y: 0.5532661, z: 0.14157853, w: -0.04869823} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3666668 + value: {x: 0.22698876, y: 0.013225022, z: -0.0845877, w: 0.97012687} + inSlope: {x: 0.45887768, y: 0.22671703, z: 0.62879586, w: -0.056935206} + outSlope: {x: 0.45887768, y: 0.22671703, z: 0.62879586, w: -0.056935206} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.26502818, y: 0.07345317, z: 0.02283293, w: 0.9611677} + inSlope: {x: -0.06643719, y: 0.3515704, z: 0.23150754, w: -0.013293959} + outSlope: {x: -0.06643719, y: 0.3515704, z: 0.23150754, w: -0.013293959} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7666668 + value: {x: 0.17253202, y: 0.104765594, z: 0.0011752864, w: 0.9794159} + inSlope: {x: -0.589074, y: -0.16236578, z: -0.199604, w: 0.12247425} + outSlope: {x: -0.589074, y: -0.16236578, z: -0.199604, w: 0.12247425} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9333334 + value: {x: 0.11027339, y: 0.016022045, z: -0.023912929, w: 0.99348444} + inSlope: {x: -0.41648597, y: -0.78172135, z: 0.046824146, w: 0.06047484} + outSlope: {x: -0.41648597, y: -0.78172135, z: 0.046824146, w: 0.06047484} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.079360016, y: -0.02096249, z: -0.016835663, w: 0.9964834} + inSlope: {x: -0.46358535, y: -0.18921168, z: -0.008251466, w: 0.034201737} + outSlope: {x: -0.46358535, y: -0.18921168, z: -0.008251466, w: 0.034201737} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.1000001 + value: {x: 0.043818325, y: -0.032211892, z: -0.032306448, w: 0.99799734} + inSlope: {x: -0.18591419, y: -0.3486218, z: -0.11753873, w: -0.007010407} + outSlope: {x: -0.18591419, y: -0.3486218, z: -0.11753873, w: -0.007010407} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.06972467, y: -0.13449593, z: -0.031490944, w: 0.9879563} + inSlope: {x: 0.19788978, y: -0.6593348, z: -0.016298458, w: -0.10477345} + outSlope: {x: 0.19788978, y: -0.6593348, z: -0.016298458, w: -0.10477345} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.5333335 + value: {x: 0.10129781, y: -0.236793, z: -0.032905057, w: 0.96570444} + inSlope: {x: 0.034503635, y: -0.22438778, z: -0.128097, w: -0.06271726} + outSlope: {x: 0.034503635, y: -0.22438778, z: -0.128097, w: -0.06271726} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.9333334 + value: {x: 0.0381713, y: -0.23816383, z: -0.010587114, w: 0.97041684} + inSlope: {x: -0.19844893, y: 0.075773105, z: 0.15013382, w: 0.028077297} + outSlope: {x: -0.19844893, y: 0.075773105, z: 0.15013382, w: 0.028077297} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.7000003 + value: {x: -0.021194419, y: -0.22931466, z: 0.02440194, w: 0.9728156} + inSlope: {x: -0.008834498, y: 0.00023111622, z: -0.011070898, w: 0.0001394745} + outSlope: {x: -0.008834498, y: 0.00023111622, z: -0.011070898, w: 0.0001394745} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.02173539, y: -0.22928703, z: 0.023576949, w: 0.9728305} + inSlope: {x: -0.00097023416, y: 0.00014439238, z: -0.0014335304, w: 0.000046491667} + outSlope: {x: -0.00097023416, y: 0.00014439238, z: -0.0014335304, w: 0.000046491667} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.12443971, y: 0.019103015, z: 0.02074965, w: 0.99182624} + inSlope: {x: 0.01415044, y: -0.012938025, z: -0.0046672667, w: -0.0014340876} + outSlope: {x: 0.01415044, y: -0.012938025, z: -0.0046672667, w: -0.0014340876} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5666667 + value: {x: 0.1375661, y: 0.021584773, z: 0.026568964, w: 0.9899009} + inSlope: {x: 0.08211428, y: 0.03281909, z: 0.03260921, w: -0.013030173} + outSlope: {x: 0.08211428, y: 0.03281909, z: 0.03260921, w: -0.013030173} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9666667 + value: {x: 0.17971897, y: 0.008913266, z: 0.022725124, w: 0.98341507} + inSlope: {x: 0.07428698, y: 0.017349144, z: -0.046389632, w: -0.012637686} + outSlope: {x: 0.07428698, y: 0.017349144, z: -0.046389632, w: -0.012637686} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2333333 + value: {x: 0.16230167, y: 0.0035617903, z: 0.004911158, w: 0.9867225} + inSlope: {x: -0.18456398, y: 0.010007054, z: 0.015797222, w: 0.030198071} + outSlope: {x: -0.18456398, y: 0.010007054, z: 0.015797222, w: 0.030198071} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5000001 + value: {x: 0.11941714, y: 0.0066052503, z: 0.0073021427, w: 0.99279535} + inSlope: {x: -0.1415841, y: 0.033139966, z: 0.0006738849, w: 0.016730715} + outSlope: {x: -0.1415841, y: 0.033139966, z: 0.0006738849, w: 0.016730715} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.8000001 + value: {x: 0.078390524, y: 0.04899786, z: 0.004839081, w: 0.99570614} + inSlope: {x: -0.14604262, y: 0.112703234, z: -0.033642482, w: 0.0060412344} + outSlope: {x: -0.14604262, y: 0.112703234, z: -0.033642482, w: 0.0060412344} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9666668 + value: {x: 0.047463506, y: 0.05416958, z: -0.0077814, w: 0.99737275} + inSlope: {x: -0.0149046555, y: -0.035005562, z: -0.08760892, w: 0.0021037415} + outSlope: {x: -0.0149046555, y: -0.035005562, z: -0.08760892, w: 0.0021037415} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.1333334 + value: {x: 0.042060584, y: 0.047791988, z: -0.009161827, w: 0.99792933} + inSlope: {x: -0.101342335, y: -0.029777857, z: -0.08273563, w: 0.004909341} + outSlope: {x: -0.101342335, y: -0.029777857, z: -0.08273563, w: 0.004909341} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.4666667 + value: {x: 0.013069622, y: 0.021533798, z: -0.013732927, w: 0.9995884} + inSlope: {x: 0.054502197, y: -0.10327907, z: 0.026614591, w: 0.0018364143} + outSlope: {x: 0.054502197, y: -0.10327907, z: 0.026614591, w: 0.0018364143} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.8666668 + value: {x: 0.032200422, y: -0.009163815, z: 0.0021964288, w: 0.99943703} + inSlope: {x: 0.0006357959, y: 0.0032357252, z: 0.00504517, w: -0.000003576286} + outSlope: {x: 0.0006357959, y: 0.0032357252, z: 0.00504517, w: -0.000003576286} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.3000002 + value: {x: 0.039323073, y: 0.0074644815, z: -0.000101897436, w: 0.9991987} + inSlope: {x: 0.049098164, y: -0.0020139078, z: -0.008529464, w: -0.0019168872} + outSlope: {x: 0.049098164, y: -0.0020139078, z: -0.008529464, w: -0.0019168872} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.05665854, y: -0.008286736, z: -0.009105296, w: 0.9983177} + inSlope: {x: 0.016517952, y: -0.019801302, z: -0.008236652, w: -0.0011640799} + outSlope: {x: 0.016517952, y: -0.019801302, z: -0.008236652, w: -0.0011640799} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.24676582, y: 0.028688079, z: 0.038234122, w: 0.96789557} + inSlope: {x: 0.02776399, y: -0.020239333, z: -0.008919798, w: -0.0061494107} + outSlope: {x: 0.02776399, y: -0.020239333, z: -0.008919798, w: -0.0061494107} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: 0.26311854, y: 0.024855172, z: 0.042585902, w: 0.96350265} + inSlope: {x: 0.057866007, y: -0.0032377657, z: 0.09565874, w: -0.019920778} + outSlope: {x: 0.057866007, y: -0.0032377657, z: 0.09565874, w: -0.019920778} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.30709463, y: 0.004053227, z: 0.049613453, w: 0.9503762} + inSlope: {x: 0.27757335, y: -0.19907212, z: -0.024788927, w: -0.08743286} + outSlope: {x: 0.27757335, y: -0.19907212, z: -0.024788927, w: -0.08743286} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.35655066, y: -0.016090762, z: 0.0287638, w: 0.9336945} + inSlope: {x: 0.06816925, y: -0.03301572, z: -0.15917686, w: -0.02178223} + outSlope: {x: 0.06816925, y: -0.03301572, z: -0.15917686, w: -0.02178223} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2 + value: {x: 0.3316342, y: -0.01681805, z: 0.006587129, w: 0.94323516} + inSlope: {x: -0.32988924, y: 0.042035356, z: 0.028970484, w: 0.1163606} + outSlope: {x: -0.32988924, y: 0.042035356, z: 0.028970484, w: 0.1163606} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4000001 + value: {x: 0.26230276, y: -0.002084176, z: 0.0125294505, w: 0.96490204} + inSlope: {x: -0.28664708, y: 0.0020160747, z: -0.038397953, w: 0.07865049} + outSlope: {x: -0.28664708, y: 0.0020160747, z: -0.038397953, w: 0.07865049} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6333334 + value: {x: 0.1998124, y: 0.043596283, z: 0.010167071, w: 0.978811} + inSlope: {x: -0.27789497, y: 0.40544665, z: 0.013477861, w: 0.038397647} + outSlope: {x: -0.27789497, y: 0.40544665, z: 0.013477861, w: 0.038397647} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.8666668 + value: {x: 0.12942189, y: 0.11169425, z: 0.00285241, w: 0.98527473} + inSlope: {x: -0.49658594, y: 0.1256488, z: -0.011943379, w: 0.05077686} + outSlope: {x: -0.49658594, y: 0.1256488, z: -0.011943379, w: 0.05077686} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9666668 + value: {x: 0.09433834, y: 0.112587705, z: -0.010269132, w: 0.98910004} + inSlope: {x: -0.033089202, y: -0.06166958, z: -0.112778425, w: 0.009399339} + outSlope: {x: -0.033089202, y: -0.06166958, z: -0.112778425, w: 0.009399339} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.1000001 + value: {x: 0.08963186, y: 0.10223887, z: -0.0048292205, w: 0.9907018} + inSlope: {x: -0.175342, y: -0.04628268, z: -0.10416386, w: 0.019894857} + outSlope: {x: -0.175342, y: -0.04628268, z: -0.10416386, w: 0.019894857} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.4333334 + value: {x: 0.022592159, y: 0.055890016, z: -0.017994566, w: 0.9980191} + inSlope: {x: 0.057146333, y: -0.1890553, z: 0.051196545, w: 0.010079751} + outSlope: {x: 0.057146333, y: -0.1890553, z: 0.051196545, w: 0.010079751} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.6333334 + value: {x: 0.04958387, y: 0.008987422, z: 0.0013986242, w: 0.9987286} + inSlope: {x: 0.08082347, y: -0.23347789, z: 0.00021492084, w: -0.0017058866} + outSlope: {x: 0.08082347, y: -0.23347789, z: 0.00021492084, w: -0.0017058866} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.9 + value: {x: 0.06436312, y: -0.012559838, z: 0.0068096803, w: 0.9978243} + inSlope: {x: 0.0033096257, y: 0.06915971, z: -0.013604086, w: 0.00067234103} + outSlope: {x: 0.0033096257, y: 0.06915971, z: -0.013604086, w: 0.00067234103} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.2333336 + value: {x: 0.0724023, y: 0.019140758, z: -0.0010531861, w: 0.9971913} + inSlope: {x: 0.07977925, y: -0.0014891862, z: -0.035083894, w: -0.005818611} + outSlope: {x: 0.07977925, y: -0.0014891862, z: -0.035083894, w: -0.005818611} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.8000002 + value: {x: 0.11198363, y: -0.011079563, z: -0.019281093, w: 0.9934612} + inSlope: {x: 0.05289645, y: -0.06311111, z: -0.02395064, w: -0.007036335} + outSlope: {x: 0.05289645, y: -0.06311111, z: -0.02395064, w: -0.007036335} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.113077104, y: -0.012387173, z: -0.019773226, w: 0.99331224} + inSlope: {x: 0.03280434, y: -0.03922835, z: -0.01476401, w: -0.0044685644} + outSlope: {x: 0.03280434, y: -0.03922835, z: -0.01476401, w: -0.0044685644} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.2346035, y: 0.028206076, z: 0.03859103, w: 0.97091526} + inSlope: {x: 0.027843116, y: -0.020123271, z: -0.009173489, w: -0.0058025117} + outSlope: {x: 0.027843116, y: -0.020123271, z: -0.009173489, w: -0.0058025117} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: 0.25100985, y: 0.024318902, z: 0.042894356, w: 0.96672785} + inSlope: {x: 0.0581121, y: -0.0044382224, z: 0.09560917, w: -0.019193897} + outSlope: {x: 0.0581121, y: -0.0044382224, z: 0.09560917, w: -0.019193897} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.29514694, y: 0.0034305395, z: 0.04966045, w: 0.95415425} + inSlope: {x: 0.27864754, y: -0.19874692, z: -0.027283605, w: -0.083943315} + outSlope: {x: 0.27864754, y: -0.19874692, z: -0.027283605, w: -0.083943315} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.34480828, y: -0.016450303, z: 0.028559653, w: 0.9380943} + inSlope: {x: 0.06844194, y: -0.03101618, z: -0.15957868, w: -0.020926604} + outSlope: {x: 0.06844194, y: -0.03101618, z: -0.15957868, w: -0.020926604} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2 + value: {x: 0.3197745, y: -0.016899416, z: 0.006375561, w: 0.94732153} + inSlope: {x: -0.33132106, y: 0.04166866, z: 0.02949484, w: 0.112213} + outSlope: {x: -0.33132106, y: 0.04166866, z: 0.02949484, w: 0.112213} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4000001 + value: {x: 0.25017676, y: -0.0022412026, z: 0.012502305, w: 0.9681169} + inSlope: {x: -0.28760594, y: 0.00249749, z: -0.03836986, w: 0.07504739} + outSlope: {x: -0.28760594, y: 0.00249749, z: -0.03836986, w: 0.07504739} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6333334 + value: {x: 0.1875167, y: 0.043465305, z: 0.01071325, w: 0.9812408} + inSlope: {x: -0.2783541, y: 0.40524626, z: 0.018564466, w: 0.034908984} + outSlope: {x: -0.2783541, y: 0.40524626, z: 0.018564466, w: 0.034908984} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.8666668 + value: {x: 0.1170506, y: 0.11164974, z: 0.0042534713, w: 0.9868209} + inSlope: {x: -0.49718302, y: 0.12579061, z: -0.010366041, w: 0.044543415} + outSlope: {x: -0.49718302, y: 0.12579061, z: -0.010366041, w: 0.044543415} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9666668 + value: {x: 0.08192167, y: 0.11270762, z: -0.008855781, w: 0.99020576} + inSlope: {x: -0.033201184, y: -0.0602479, z: -0.11354327, w: 0.0089836} + outSlope: {x: -0.033201184, y: -0.0602479, z: -0.11354327, w: 0.0089836} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.1000001 + value: {x: 0.07719562, y: 0.10229152, z: -0.0035461884, w: 0.99174833} + inSlope: {x: -0.17557913, y: -0.044972643, z: -0.104736455, w: 0.017693656} + outSlope: {x: -0.17557913, y: -0.044972643, z: -0.104736455, w: 0.017693656} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.4333334 + value: {x: 0.010069266, y: 0.056111395, z: -0.017291952, w: 0.99822396} + inSlope: {x: 0.05701474, y: -0.1896821, z: 0.048820708, w: 0.010795007} + outSlope: {x: 0.05701474, y: -0.1896821, z: 0.048820708, w: 0.010795007} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.6333334 + value: {x: 0.037049923, y: 0.008969149, z: 0.0015112787, w: 0.99927205} + inSlope: {x: 0.080840066, y: -0.23346385, z: -0.0027144803, w: -0.00069111655} + outSlope: {x: 0.080840066, y: -0.23346385, z: -0.0027144803, w: -0.00069111655} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.9 + value: {x: 0.05183938, y: -0.012644333, z: 0.0066515887, w: 0.9985533} + inSlope: {x: 0.0032993439, y: 0.06932615, z: -0.012735985, w: 0.0007134683} + outSlope: {x: 0.0032993439, y: 0.06932615, z: -0.012735985, w: 0.0007134683} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.2333336 + value: {x: 0.05988587, y: 0.01915245, z: -0.00081296096, w: 0.9980211} + inSlope: {x: 0.07984704, y: -0.0010508123, z: -0.035099432, w: -0.004817252} + outSlope: {x: 0.07984704, y: -0.0010508123, z: -0.035099432, w: -0.004817252} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.8000002 + value: {x: 0.099510856, y: -0.010836788, z: -0.019418588, w: 0.99478793} + inSlope: {x: 0.05298083, y: -0.06280616, z: -0.024740553, w: -0.0063729347} + outSlope: {x: 0.05298083, y: -0.06280616, z: -0.024740553, w: -0.0063729347} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.10060616, y: -0.012138071, z: -0.019927079, w: 0.9946527} + inSlope: {x: 0.032859102, y: -0.039038498, z: -0.015254743, w: -0.004057292} + outSlope: {x: 0.032859102, y: -0.039038498, z: -0.015254743, w: -0.004057292} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.18558003, y: 0.027587617, z: -0.035417907, w: 0.9816031} + inSlope: {x: -0.12813807, y: 0.0027878208, z: 0.004725605, w: -0.024424193} + outSlope: {x: -0.12813807, y: 0.0027878208, z: 0.004725605, w: -0.024424193} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: -0.24475245, y: 0.03793314, z: -0.028128456, w: 0.9684349} + inSlope: {x: -0.111785054, y: 0.022350058, z: -0.15271173, w: -0.03351956} + outSlope: {x: -0.111785054, y: 0.022350058, z: -0.15271173, w: -0.03351956} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5666667 + value: {x: -0.23828854, y: 0.041422244, z: -0.044544183, w: 0.9692877} + inSlope: {x: 0.09236861, y: -0.039545767, z: 0.2145439, w: 0.033940684} + outSlope: {x: 0.09236861, y: -0.039545767, z: 0.2145439, w: 0.033940684} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7666667 + value: {x: -0.16103585, y: 0.04442426, z: -0.04006613, w: 0.9851338} + inSlope: {x: 0.410423, y: 0.01082779, z: -0.31676063, w: 0.053805962} + outSlope: {x: 0.410423, y: 0.01082779, z: -0.31676063, w: 0.053805962} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.86666673 + value: {x: -0.12843622, y: 0.041397523, z: -0.059673894, w: 0.9890548} + inSlope: {x: 0.22625458, y: -0.0140646, z: 0.040844217, w: 0.03270775} + outSlope: {x: 0.22625458, y: -0.0140646, z: 0.040844217, w: 0.03270775} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0333334 + value: {x: -0.13546906, y: 0.039960567, z: -0.04852055, w: 0.9887856} + inSlope: {x: -0.19613653, y: 0.0025572604, z: 0.103783704, w: -0.02161143} + outSlope: {x: -0.19613653, y: 0.0025572604, z: 0.103783704, w: -0.02161143} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2 + value: {x: -0.110579506, y: 0.040555406, z: -0.05380243, w: 0.99158096} + inSlope: {x: 0.54201365, y: 0.012401038, z: -0.31752282, w: 0.04229669} + outSlope: {x: 0.54201365, y: 0.012401038, z: -0.31752282, w: 0.04229669} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.07622621, y: 0.028177485, z: -0.07646516, w: 0.99375486} + inSlope: {x: -0.34067893, y: -0.14399523, z: 0.35944077, w: 0.0022110525} + outSlope: {x: -0.34067893, y: -0.14399523, z: 0.35944077, w: 0.0022110525} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4333334 + value: {x: -0.13293123, y: 0.013846848, z: -0.03083027, w: 0.99054885} + inSlope: {x: -0.45552415, y: -0.1755811, z: 0.42127654, w: -0.044463024} + outSlope: {x: -0.45552415, y: -0.1755811, z: 0.42127654, w: -0.044463024} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7 + value: {x: -0.14392057, y: -0.052844547, z: 0.07302232, w: 0.9854756} + inSlope: {x: 0.4153629, y: -0.18796232, z: 0.21438862, w: 0.034551285} + outSlope: {x: 0.4153629, y: -0.18796232, z: 0.21438862, w: 0.034551285} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.8666668 + value: {x: -0.035504244, y: -0.07085527, z: 0.102318004, w: 0.99158967} + inSlope: {x: 0.89891183, y: 0.030362215, z: 0.01574754, w: 0.033293337} + outSlope: {x: 0.89891183, y: 0.030362215, z: 0.01574754, w: 0.033293337} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9333334 + value: {x: 0.008740377, y: -0.065066665, z: 0.09574496, w: 0.99323857} + inSlope: {x: 0.17896137, y: 0.07038943, z: -0.11177463, w: 0.015564852} + outSlope: {x: 0.17896137, y: 0.07038943, z: -0.11177463, w: 0.015564852} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.0333335 + value: {x: -0.008267243, y: -0.06869522, z: 0.09175948, w: 0.99337447} + inSlope: {x: -0.019759923, y: -0.09240496, z: 0.06267181, w: -0.012339034} + outSlope: {x: -0.019759923, y: -0.09240496, z: 0.06267181, w: -0.012339034} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.1333334 + value: {x: -0.006304923, y: -0.07456543, z: 0.10056643, w: 0.9921122} + inSlope: {x: -0.16584426, y: -0.030768432, z: -0.014143525, w: -0.0022825622} + outSlope: {x: -0.16584426, y: -0.030768432, z: -0.014143525, w: -0.0022825622} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.3666668 + value: {x: -0.044643104, y: -0.06182967, z: 0.01877731, w: 0.996911} + inSlope: {x: -0.2535013, y: 0.12311983, z: -0.38393086, w: 0.0034037265} + outSlope: {x: -0.2535013, y: 0.12311983, z: -0.38393086, w: 0.0034037265} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.6000001 + value: {x: -0.12019962, y: -0.028882245, z: -0.030371, w: 0.9918647} + inSlope: {x: -0.0015465207, y: 0.15085047, z: 0.06619351, w: 0.0061243833} + outSlope: {x: -0.0015465207, y: 0.15085047, z: 0.06619351, w: 0.0061243833} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.7333336 + value: {x: -0.12390108, y: -0.012236331, z: -0.00979917, w: 0.99217075} + inSlope: {x: -0.121296704, y: 0.09802127, z: 0.10942887, w: -0.012651049} + outSlope: {x: -0.121296704, y: 0.09802127, z: 0.10942887, w: -0.012651049} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.0333335 + value: {x: -0.13511407, y: 0.0012001084, z: -0.003971245, w: 0.9908214} + inSlope: {x: 0.045742214, y: -0.0072031105, z: 0.051741764, w: 0.0064605535} + outSlope: {x: 0.045742214, y: -0.0072031105, z: 0.051741764, w: 0.0064605535} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.3000002 + value: {x: -0.14668636, y: 0.013369825, z: 0.0016866348, w: 0.9890913} + inSlope: {x: -0.0067046345, y: 0.078683585, z: -0.041641183, w: -0.001977684} + outSlope: {x: -0.0067046345, y: 0.078683585, z: -0.041641183, w: -0.001977684} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.6333334 + value: {x: -0.117934674, y: 0.05260678, z: 0.004005655, w: 0.9916188} + inSlope: {x: 0.1098778, y: 0.14349094, z: 0.0052002603, w: 0.0054699234} + outSlope: {x: 0.1098778, y: 0.14349094, z: 0.0052002603, w: 0.0054699234} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.10511359, y: 0.07041236, z: 0.004896934, w: 0.99195224} + inSlope: {x: 0.013141048, y: 0.019504819, z: 0.001216369, w: 0.000010728846} + outSlope: {x: 0.013141048, y: 0.019504819, z: 0.001216369, w: 0.000010728846} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.26580057, y: -0.05060597, z: 0.040839784, w: 0.9618322} + inSlope: {x: 0.2663049, y: -0.053388808, z: -0.11367726, w: 0.074014656} + outSlope: {x: 0.2663049, y: -0.053388808, z: -0.11367726, w: 0.074014656} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: -0.17404506, y: -0.076822825, z: -0.00769344, w: 0.9817064} + inSlope: {x: 0.12213099, y: -0.09674267, z: -0.290438, w: 0.011462864} + outSlope: {x: 0.12213099, y: -0.09674267, z: -0.290438, w: 0.011462864} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: -0.14303033, y: -0.06669789, z: -0.071415745, w: 0.98488253} + inSlope: {x: 0.13775545, y: 0.26661605, z: -0.25181955, w: 0.019990487} + outSlope: {x: 0.13775545, y: 0.26661605, z: -0.25181955, w: 0.019990487} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.70000005 + value: {x: -0.15415998, y: 0.032533575, z: -0.10159457, w: 0.98227024} + inSlope: {x: -0.025582854, y: 0.81218004, z: -0.317581, w: -0.064099446} + outSlope: {x: -0.025582854, y: 0.81218004, z: -0.317581, w: -0.064099446} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000001 + value: {x: -0.12670647, y: 0.0942325, z: -0.14372833, w: 0.976938} + inSlope: {x: 0.6409024, y: 0.29853696, z: -0.46367306, w: -0.015708795} + outSlope: {x: 0.6409024, y: 0.29853696, z: -0.46367306, w: -0.015708795} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.90000004 + value: {x: -0.060936872, y: 0.11033383, z: -0.1703527, w: 0.97728866} + inSlope: {x: 0.29677278, y: -0.0186009, z: 0.07595427, w: 0.035094902} + outSlope: {x: 0.29677278, y: -0.0186009, z: 0.07595427, w: 0.035094902} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0333334 + value: {x: -0.06803155, y: 0.08797337, z: -0.12956631, w: 0.98531467} + inSlope: {x: -0.2750969, y: -0.07101759, z: 0.44976807, w: 0.045989998} + outSlope: {x: -0.2750969, y: -0.07101759, z: 0.44976807, w: 0.045989998} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.10502756, y: 0.08308128, z: -0.09356149, w: 0.98656625} + inSlope: {x: -0.12776747, y: 0.13792592, z: 0.14767832, w: -0.011148166} + outSlope: {x: -0.12776747, y: 0.13792592, z: 0.14767832, w: -0.011148166} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3000001 + value: {x: -0.09177914, y: 0.08545501, z: -0.08986296, w: 0.9880277} + inSlope: {x: 0.49105603, y: -0.033138387, z: -0.10700169, w: 0.037145056} + outSlope: {x: 0.49105603, y: -0.033138387, z: -0.10700169, w: 0.037145056} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4333334 + value: {x: -0.017387906, y: 0.07491915, z: -0.104723334, w: 0.99152297} + inSlope: {x: 0.39649892, y: -0.23525041, z: 0.0038477443, w: 0.025218153} + outSlope: {x: 0.39649892, y: -0.23525041, z: 0.0038477443, w: 0.025218153} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6000001 + value: {x: 0.030431302, y: -0.0035738393, z: -0.071843036, w: 0.9969452} + inSlope: {x: 0.01328047, y: -0.66470706, z: 0.25962913, w: 0.015886698} + outSlope: {x: 0.01328047, y: -0.66470706, z: 0.25962913, w: 0.015886698} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7666668 + value: {x: 0.03181343, y: -0.08986571, z: -0.032450438, w: 0.9949166} + inSlope: {x: 0.05037006, y: -0.35184592, z: 0.11017363, w: -0.02975109} + outSlope: {x: 0.05037006, y: -0.35184592, z: 0.11017363, w: -0.02975109} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9000001 + value: {x: 0.04498251, y: -0.11834315, z: -0.044837676, w: 0.9909395} + inSlope: {x: -0.02605366, y: 0.12852442, z: -0.023687057, w: 0.015153602} + outSlope: {x: -0.02605366, y: 0.12852442, z: -0.023687057, w: 0.015153602} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.026869446, y: -0.11650708, z: -0.03623162, w: 0.992165} + inSlope: {x: -0.12220141, y: -0.27553266, z: 0.010303709, w: -0.02901962} + outSlope: {x: -0.12220141, y: -0.27553266, z: 0.010303709, w: -0.02901962} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.1333334 + value: {x: 0.026888177, y: -0.14780907, z: -0.027628656, w: 0.9882642} + inSlope: {x: 0.126871, y: -0.023301264, z: 0.090405814, w: -0.0045597595} + outSlope: {x: 0.126871, y: -0.023301264, z: 0.090405814, w: -0.0045597595} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.3000002 + value: {x: 0.05881626, y: -0.110519715, z: -0.021530401, w: 0.9918984} + inSlope: {x: -0.0107584065, y: 0.41962507, z: 0.014129248, w: 0.047116622} + outSlope: {x: -0.0107584065, y: 0.41962507, z: 0.014129248, w: 0.047116622} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.5333335 + value: {x: 0.0028174338, y: 0.029974533, z: -0.01192838, w: 0.99947554} + inSlope: {x: -0.40590906, y: 0.6307357, z: 0.08704495, w: -0.016336456} + outSlope: {x: -0.40590906, y: 0.6307357, z: 0.08704495, w: -0.016336456} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.8000002 + value: {x: -0.04036232, y: 0.12749162, z: 0.029902846, w: 0.9905668} + inSlope: {x: -0.082788974, y: 0.07077719, z: 0.066970885, w: -0.014264001} + outSlope: {x: -0.082788974, y: 0.07077719, z: 0.066970885, w: -0.014264001} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.0666668 + value: {x: -0.043970693, y: 0.083460376, z: 0.011636885, w: 0.99547255} + inSlope: {x: -0.08765976, y: -0.3176531, z: -0.1104884, w: 0.024236463} + outSlope: {x: -0.08765976, y: -0.3176531, z: -0.1104884, w: 0.024236463} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.09006054, y: 0.04059892, z: -0.009644993, w: 0.99506176} + inSlope: {x: -0.13257703, y: -0.08031106, z: -0.084856875, w: -0.009367177} + outSlope: {x: -0.13257703, y: -0.08031106, z: -0.084856875, w: -0.009367177} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.8000002 + value: {x: -0.10154735, y: 0.046389867, z: -0.010713822, w: 0.9936908} + inSlope: {x: -0.003189038, y: 0.01149093, z: 0.00864467, w: -0.00076532434} + outSlope: {x: -0.003189038, y: 0.01149093, z: 0.00864467, w: -0.00076532434} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.101603456, y: 0.046593316, z: -0.010558511, w: 0.9936772} + inSlope: {x: -0.0016830878, y: 0.006103484, z: 0.004659337, w: -0.00040769615} + outSlope: {x: -0.0016830878, y: 0.006103484, z: 0.004659337, w: -0.00040769615} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.3723165, y: -0.5998495, z: 0.43411547, w: 0.5595577} + inSlope: {x: -0.021694599, y: -0.023421047, z: -0.012546479, w: -0.000976324} + outSlope: {x: -0.021694599, y: -0.023421047, z: -0.012546479, w: -0.000976324} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.36415535, y: -0.6012121, z: 0.4367038, w: 0.5614489} + inSlope: {x: -0.15922175, y: -0.06361217, z: 0.04887924, w: -0.0030201676} + outSlope: {x: -0.15922175, y: -0.06361217, z: 0.04887924, w: -0.0030201676} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: 0.31769437, y: -0.6265553, z: 0.44273153, w: 0.5572141} + inSlope: {x: -0.36095086, y: -0.25813144, z: 0.008543294, w: -0.09076958} + outSlope: {x: -0.36095086, y: -0.25813144, z: 0.008543294, w: -0.09076958} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5666667 + value: {x: 0.31070006, y: -0.6220328, z: 0.4594751, w: 0.55265117} + inSlope: {x: 0.35967988, y: 0.48669502, z: 0.36350554, w: 0.036277793} + outSlope: {x: 0.35967988, y: 0.48669502, z: 0.36350554, w: 0.036277793} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.41189128, y: -0.5003684, z: 0.5174721, w: 0.5587483} + inSlope: {x: 0.54156935, y: 0.6509087, z: 0.22869322, w: -0.024907878} + outSlope: {x: 0.54156935, y: 0.6509087, z: 0.22869322, w: -0.024907878} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.90000004 + value: {x: 0.4443254, y: -0.4526247, z: 0.53929895, w: 0.5539517} + inSlope: {x: -0.30653933, y: -0.2522411, z: 0.013571994, w: 0.023136733} + outSlope: {x: -0.30653933, y: -0.2522411, z: 0.013571994, w: 0.023136733} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.40563387, y: -0.4873362, z: 0.5425317, w: 0.5510208} + inSlope: {x: -0.2608447, y: -0.23405974, z: 0.090787314, w: -0.10284472} + outSlope: {x: -0.2608447, y: -0.23405974, z: 0.090787314, w: -0.10284472} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1333334 + value: {x: 0.38150907, y: -0.5125365, z: 0.5575928, w: 0.5299504} + inSlope: {x: -0.08758649, y: -0.1369427, z: 0.11176392, w: -0.18593231} + outSlope: {x: -0.08758649, y: -0.1369427, z: 0.11176392, w: -0.18593231} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2333333 + value: {x: 0.36902973, y: -0.5374306, z: 0.543269, w: 0.5290031} + inSlope: {x: -0.27163956, y: -0.46162474, z: -0.38826907, w: 0.11760406} + outSlope: {x: -0.27163956, y: -0.46162474, z: -0.38826907, w: 0.11760406} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3000001 + value: {x: 0.35504666, y: -0.56306165, z: 0.5253288, w: 0.5300312} + inSlope: {x: -0.0002758205, y: -0.117758036, z: 0.059746258, w: -0.18495995} + outSlope: {x: -0.0002758205, y: -0.117758036, z: 0.059746258, w: -0.18495995} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4000001 + value: {x: 0.38024637, y: -0.5439472, z: 0.5609301, w: 0.4948654} + inSlope: {x: 0.3552518, y: 0.28701988, z: 0.3031829, w: -0.29910368} + outSlope: {x: 0.3552518, y: 0.28701988, z: 0.3031829, w: -0.29910368} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.453235, y: -0.4802327, z: 0.59212154, w: 0.46189463} + inSlope: {x: 0.38401118, y: 0.37520325, z: 0.18589392, w: -0.22237907} + outSlope: {x: 0.38401118, y: 0.37520325, z: 0.18589392, w: -0.22237907} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.46455666, y: -0.47459832, z: 0.6061893, w: 0.43758208} + inSlope: {x: -0.18082309, y: -0.29743892, z: 0.098605245, w: -0.2677124} + outSlope: {x: -0.18082309, y: -0.29743892, z: 0.098605245, w: -0.2677124} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.8000001 + value: {x: 0.44976795, y: -0.5010582, z: 0.6150371, w: 0.41033992} + inSlope: {x: 0.07524364, y: 0.08569621, z: 0.14958784, w: -0.20324862} + outSlope: {x: 0.07524364, y: 0.08569621, z: 0.14958784, w: -0.20324862} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9333334 + value: {x: 0.45463765, y: -0.49320933, z: 0.63361216, w: 0.385467} + inSlope: {x: -0.044348955, y: -0.061219122, z: 0.081456855, w: -0.1597813} + outSlope: {x: -0.044348955, y: -0.061219122, z: 0.081456855, w: -0.1597813} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.0666668 + value: {x: 0.46835473, y: -0.48553926, z: 0.6375187, w: 0.37210935} + inSlope: {x: 0.21841696, y: 0.1175828, z: -0.05518829, w: -0.026158715} + outSlope: {x: 0.21841696, y: 0.1175828, z: -0.05518829, w: -0.026158715} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.2 + value: {x: 0.48682836, y: -0.49006066, z: 0.6205809, w: 0.37110397} + inSlope: {x: 0.11864092, y: -0.05995682, z: -0.13619824, w: -0.0070332056} + outSlope: {x: 0.11864092, y: -0.05995682, z: -0.13619824, w: -0.0070332056} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.266667 + value: {x: 0.48273966, y: -0.50326705, z: 0.61805534, w: 0.3628943} + inSlope: {x: -0.34753913, y: -0.40262914, z: 0.12483437, w: -0.31738433} + outSlope: {x: -0.34753913, y: -0.40262914, z: 0.12483437, w: -0.31738433} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.3000002 + value: {x: 0.4675734, y: -0.5188337, z: 0.6243439, w: 0.34983063} + inSlope: {x: -0.18124598, y: -0.22170892, z: 0.07662274, w: -0.20894295} + outSlope: {x: -0.18124598, y: -0.22170892, z: 0.07662274, w: -0.20894295} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.4706566, y: -0.51804763, z: 0.6231635, w: 0.34896478} + inSlope: {x: 0.2130664, y: 0.054110937, z: -0.27550247, w: 0.26846257} + outSlope: {x: 0.2130664, y: 0.054110937, z: -0.27550247, w: 0.26846257} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.4 + value: {x: 0.48981553, y: -0.51108015, z: 0.58949155, w: 0.38907266} + inSlope: {x: 0.2552379, y: 0.15599653, z: -0.53630996, w: 0.69053936} + outSlope: {x: 0.2552379, y: 0.15599653, z: -0.53630996, w: 0.69053936} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.5666668 + value: {x: 0.5298191, y: -0.46369725, z: 0.48516744, w: 0.5185454} + inSlope: {x: 0.095382124, y: 0.25862733, z: -0.6081915, w: 0.7057686} + outSlope: {x: 0.095382124, y: 0.25862733, z: -0.6081915, w: 0.7057686} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.6000001 + value: {x: 0.5309907, y: -0.4568234, z: 0.4652819, w: 0.54117835} + inSlope: {x: -0.1880418, y: -0.104994275, z: -0.3871245, w: 0.4356305} + outSlope: {x: -0.1880418, y: -0.104994275, z: -0.3871245, w: 0.4356305} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.5028817, y: -0.48560128, z: 0.45328495, w: 0.55302274} + inSlope: {x: -0.4151876, y: -0.42547923, z: -0.18450084, w: 0.15617892} + outSlope: {x: -0.4151876, y: -0.42547923, z: -0.18450084, w: 0.15617892} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.9 + value: {x: 0.4342679, y: -0.5530199, z: 0.41711712, w: 0.5758417} + inSlope: {x: -0.14099716, y: -0.12803894, z: -0.067659676, w: 0.0323582} + outSlope: {x: -0.14099716, y: -0.12803894, z: -0.067659676, w: 0.0323582} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.2333336 + value: {x: 0.40262744, y: -0.58482045, z: 0.40761214, w: 0.57421994} + inSlope: {x: -0.0009799012, y: 0.023544453, z: -0.0030398397, w: 0.026804235} + outSlope: {x: -0.0009799012, y: 0.023544453, z: -0.0030398397, w: 0.026804235} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.7000003 + value: {x: 0.39930156, y: -0.5856467, z: 0.41050765, w: 0.57363737} + inSlope: {x: 0.0153614255, y: 0.015811596, z: 0.019337775, w: -0.0083881235} + outSlope: {x: 0.0153614255, y: 0.015811596, z: 0.019337775, w: -0.0083881235} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.40146494, y: -0.582463, z: 0.411728, w: 0.5744935} + inSlope: {x: 0.008824476, y: 0.01426579, z: 0.0030836493, w: 0.0060975607} + outSlope: {x: 0.008824476, y: 0.01426579, z: 0.0030836493, w: 0.0060975607} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.5701225, y: 0.17553538, z: -0.015282603, w: 0.8024426} + inSlope: {x: 0.037769075, y: 0.06830335, z: -0.05168231, w: -0.042979714} + outSlope: {x: 0.037769075, y: 0.06830335, z: -0.05168231, w: -0.042979714} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.5719904, y: 0.15138477, z: 0.0039121555, w: 0.8061603} + inSlope: {x: -0.007254482, y: -0.2116547, z: 0.06465339, w: 0.04450411} + outSlope: {x: -0.007254482, y: -0.2116547, z: 0.06465339, w: 0.04450411} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.55384654, y: 0.12582551, z: 0.026147418, w: 0.822641} + inSlope: {x: -0.22244892, y: -0.06304594, z: 0.13131651, w: 0.15611613} + outSlope: {x: -0.22244892, y: -0.06304594, z: 0.13131651, w: 0.15611613} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: 0.5453301, y: 0.1297791, z: 0.020185636, w: 0.82786775} + inSlope: {x: -0.0058659725, y: 0.16264524, z: -0.37689513, w: -0.014878239} + outSlope: {x: -0.0058659725, y: 0.16264524, z: -0.37689513, w: -0.014878239} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: 0.5367465, y: 0.1495198, z: -0.010337111, w: 0.8303253} + inSlope: {x: -0.57361853, y: 0.51869005, z: -0.24441668, w: 0.26534268} + outSlope: {x: -0.57361853, y: 0.51869005, z: -0.24441668, w: 0.26534268} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6333334 + value: {x: 0.4261219, y: 0.2243812, z: -0.015382029, w: 0.87626284} + inSlope: {x: -1.2352806, y: 0.6740905, z: -0.16519557, w: 0.43046594} + outSlope: {x: -1.2352806, y: 0.6740905, z: -0.16519557, w: 0.43046594} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.3866042, y: 0.24316384, z: -0.023835974, w: 0.8892921} + inSlope: {x: -1.2110746, y: 0.51067054, z: -0.056190185, w: 0.38569453} + outSlope: {x: -1.2110746, y: 0.51067054, z: -0.056190185, w: 0.38569453} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.70000005 + value: {x: 0.34538358, y: 0.2584259, z: -0.01912803, w: 0.9019758} + inSlope: {x: -1.1149035, y: 0.44699484, z: -0.055528946, w: 0.3033265} + outSlope: {x: -1.1149035, y: 0.44699484, z: -0.055528946, w: 0.3033265} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7666667 + value: {x: 0.27767763, y: 0.29876673, z: -0.036794174, w: 0.91229373} + inSlope: {x: -1.0392985, y: 0.8647122, z: -0.09252605, w: 0.027187742} + outSlope: {x: -1.0392985, y: 0.8647122, z: -0.09252605, w: 0.027187742} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.86666673 + value: {x: 0.21116717, y: 0.3942351, z: -0.01835791, w: 0.89423156} + inSlope: {x: 0.11584308, y: 0.65458804, z: -0.4846724, w: -0.3310195} + outSlope: {x: 0.11584308, y: 0.65458804, z: -0.4846724, w: -0.3310195} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9666667 + value: {x: 0.27410367, y: 0.42735317, z: -0.13398013, w: 0.8510498} + inSlope: {x: 0.6719159, y: 0.121493004, z: -1.0457879, w: -0.43151242} + outSlope: {x: 0.6719159, y: 0.121493004, z: -1.0457879, w: -0.43151242} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0333334 + value: {x: 0.31490952, y: 0.40384358, z: -0.18411738, w: 0.8389536} + inSlope: {x: 0.6328614, y: -0.9314298, z: -0.5802627, w: 0.075827025} + outSlope: {x: 0.6328614, y: -0.9314298, z: -0.5802627, w: 0.075827025} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.35422504, y: 0.32948837, z: -0.21708618, w: 0.84784174} + inSlope: {x: 0.4400466, y: -0.97519386, z: -0.43456268, w: 0.08987453} + outSlope: {x: 0.4400466, y: -0.97519386, z: -0.43456268, w: 0.08987453} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.37839845, y: 0.27261308, z: -0.2525846, w: 0.84776044} + inSlope: {x: 0.36954707, y: -0.9666326, z: -0.7910265, w: -0.09915063} + outSlope: {x: 0.36954707, y: -0.9666326, z: -0.7910265, w: -0.09915063} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3000001 + value: {x: 0.39958057, y: 0.14979792, z: -0.37517568, w: 0.8228847} + inSlope: {x: -0.5465963, y: -0.35271215, z: -0.8653056, w: -0.06529397} + outSlope: {x: -0.5465963, y: -0.35271215, z: -0.8653056, w: -0.06529397} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3666668 + value: {x: 0.33797354, y: 0.16228752, z: -0.42327455, w: 0.82478803} + inSlope: {x: -1.159595, y: 0.7273047, z: -0.5123648, w: 0.061335817} + outSlope: {x: -1.159595, y: 0.7273047, z: -0.5123648, w: 0.061335817} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4666667 + value: {x: 0.20083505, y: 0.22024038, z: -0.45135128, w: 0.84109545} + inSlope: {x: -1.3878362, y: -0.4259045, z: -0.057456173, w: 0.40721422} + outSlope: {x: -1.3878362, y: -0.4259045, z: -0.057456173, w: 0.40721422} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5000001 + value: {x: 0.1575614, y: 0.18974733, z: -0.4499652, w: 0.85831326} + inSlope: {x: -1.2501072, y: -1.3256732, z: 0.12245093, w: 0.56644285} + outSlope: {x: -1.2501072, y: -1.3256732, z: 0.12245093, w: 0.56644285} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333334 + value: {x: 0.11749449, y: 0.13186215, z: -0.4431879, w: 0.8788583} + inSlope: {x: -1.1261058, y: -1.3700861, z: 0.30584902, w: 0.5331253} + outSlope: {x: -1.1261058, y: -1.3700861, z: 0.30584902, w: 0.5331253} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6000001 + value: {x: 0.039322563, y: 0.079470776, z: -0.41266543, w: 0.9065569} + inSlope: {x: -1.1837902, y: -0.5041533, z: 0.55141264, w: 0.3520521} + outSlope: {x: -1.1837902, y: -0.5041533, z: 0.55141264, w: 0.3520521} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.0054139607, y: 0.04024742, z: -0.37213475, w: 0.9272899} + inSlope: {x: 0.63628435, y: -0.8898161, z: 0.6022696, w: 0.25917763} + outSlope: {x: 0.63628435, y: -0.8898161, z: 0.6022696, w: 0.25917763} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7333335 + value: {x: 0.10118991, y: -0.030409465, z: -0.32366586, w: 0.9402533} + inSlope: {x: 1.4298592, y: -0.90477365, z: 0.93511665, w: 0.15365824} + outSlope: {x: 1.4298592, y: -0.90477365, z: 0.93511665, w: 0.15365824} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.18424746, y: -0.07687572, z: -0.19250669, w: 0.96077275} + inSlope: {x: 0.61495066, y: -0.18465106, z: 1.6143156, w: 0.1910921} + outSlope: {x: 0.61495066, y: -0.18465106, z: 1.6143156, w: 0.1910921} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9000001 + value: {x: 0.22403127, y: -0.08173247, z: -0.09612777, w: 0.96637946} + inSlope: {x: 0.5780702, y: -0.023615755, z: 0.8872692, w: -0.036025677} + outSlope: {x: 0.5780702, y: -0.023615755, z: 0.8872692, w: -0.036025677} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.0333335 + value: {x: 0.30214712, y: -0.08300778, z: -0.078248866, w: 0.94641113} + inSlope: {x: 0.612581, y: -0.0010618141, z: -0.11726627, w: -0.20560959} + outSlope: {x: 0.612581, y: -0.0010618141, z: -0.11726627, w: -0.20560959} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.2333333 + value: {x: 0.42562145, y: -0.08041389, z: -0.08340234, w: 0.8974542} + inSlope: {x: 0.59271973, y: 0.0149146225, z: 0.09322437, w: -0.2709748} + outSlope: {x: 0.59271973, y: 0.0149146225, z: 0.09322437, w: -0.2709748} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.6154875, y: -0.056082115, z: -0.009053791, w: 0.7860967} + inSlope: {x: 0.30626744, y: 0.12811477, z: 0.21246538, w: -0.22805324} + outSlope: {x: 0.30626744, y: 0.12811477, z: 0.21246538, w: -0.22805324} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.0666668 + value: {x: 0.6815268, y: 0.013548469, z: 0.08760094, w: 0.7264047} + inSlope: {x: 0.02107056, y: 0.19882764, z: 0.26433152, w: -0.055258922} + outSlope: {x: 0.02107056, y: 0.19882764, z: 0.26433152, w: -0.055258922} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.466667 + value: {x: 0.67914915, y: 0.05162539, z: 0.14238766, w: 0.718204} + inSlope: {x: 0.023803653, y: -0.033660166, z: -0.05807547, w: -0.008558023} + outSlope: {x: 0.023803653, y: -0.033660166, z: -0.05807547, w: -0.008558023} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.766667 + value: {x: 0.6894852, y: 0.027670112, z: 0.10288802, w: 0.71642077} + inSlope: {x: 0.05003755, y: -0.24544983, z: -0.34095067, w: 0.009533474} + outSlope: {x: 0.05003755, y: -0.24544983, z: -0.34095067, w: 0.009533474} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.8000002 + value: {x: 0.69114965, y: 0.01865816, z: 0.09053456, w: 0.7167758} + inSlope: {x: 0.08331486, y: -0.63243455, z: -0.8479028, w: 0.0136211645} + outSlope: {x: 0.08331486, y: -0.63243455, z: -0.8479028, w: 0.0136211645} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.6950395, y: -0.014492152, z: 0.04636122, w: 0.71732885} + inSlope: {x: 0.11669587, y: -0.9945103, z: -1.3252015, w: 0.01659216} + outSlope: {x: 0.11669587, y: -0.9945103, z: -1.3252015, w: 0.01659216} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.20928922, y: 0.05556451, z: -0.9102447, w: 0.35293806} + inSlope: {x: 0.016267598, y: -0.02745833, z: -0.06626129, w: -0.17796813} + outSlope: {x: 0.016267598, y: -0.02745833, z: -0.06626129, w: -0.17796813} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.21169089, y: 0.052481245, z: -0.9179825, w: 0.3312715} + inSlope: {x: 0.00094637286, y: 0.005252604, z: 0.008889736, w: 0.023220332} + outSlope: {x: 0.00094637286, y: 0.005252604, z: 0.008889736, w: 0.023220332} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: 0.21347383, y: 0.049336117, z: -0.9248829, w: 0.31078374} + inSlope: {x: 0.011117757, y: -0.02077561, z: -0.044064227, w: -0.13420703} + outSlope: {x: 0.011117757, y: -0.02077561, z: -0.044064227, w: -0.13420703} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5666667 + value: {x: 0.2123778, y: 0.049577523, z: -0.92411023, w: 0.31378028} + inSlope: {x: -0.019741736, y: -0.015173427, z: -0.024803285, w: -0.057314787} + outSlope: {x: -0.019741736, y: -0.015173427, z: -0.024803285, w: -0.057314787} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6333334 + value: {x: 0.2096874, y: 0.0487861, z: -0.92477345, w: 0.3137599} + inSlope: {x: -0.073949195, y: -0.004313549, z: 0.022922173, w: 0.11673695} + outSlope: {x: -0.073949195, y: -0.004313549, z: 0.022922173, w: 0.11673695} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.20659217, y: 0.048723374, z: -0.9234711, w: 0.3196042} + inSlope: {x: -0.06403509, y: -0.0518807, z: -0.07545848, w: -0.17616719} + outSlope: {x: -0.06403509, y: -0.0518807, z: -0.07545848, w: -0.17616719} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.70000005 + value: {x: 0.2054184, y: 0.045327384, z: -0.929804, w: 0.3020154} + inSlope: {x: -0.046857536, y: -0.085240096, z: -0.1529145, w: -0.42040893} + outSlope: {x: -0.046857536, y: -0.085240096, z: -0.1529145, w: -0.42040893} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000001 + value: {x: 0.2017692, y: 0.036231842, z: -0.9465053, w: 0.24920705} + inSlope: {x: -0.008536123, y: -0.128719, z: -0.23317519, w: -0.8734993} + outSlope: {x: -0.008536123, y: -0.128719, z: -0.23317519, w: -0.8734993} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.90000004 + value: {x: 0.1995122, y: 0.026252687, z: -0.96302605, w: 0.1791272} + inSlope: {x: -0.060644515, y: -0.02943634, z: -0.047388405, w: -0.17748259} + outSlope: {x: -0.060644515, y: -0.02943634, z: -0.047388405, w: -0.17748259} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0333334 + value: {x: 0.18091916, y: 0.028551571, z: -0.95705616, w: 0.22471452} + inSlope: {x: -0.23426062, y: 0.055608697, z: 0.17996007, w: 0.92571163} + outSlope: {x: -0.23426062, y: 0.055608697, z: 0.17996007, w: 0.92571163} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1333334 + value: {x: 0.15565899, y: 0.03251415, z: -0.9327243, w: 0.32363325} + inSlope: {x: -0.2675316, y: -0.00038927095, z: 0.26113254, w: 0.8768997} + outSlope: {x: -0.2675316, y: -0.00038927095, z: 0.26113254, w: 0.8768997} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3000001 + value: {x: 0.10599051, y: 0.02881131, z: -0.84730583, w: 0.5196237} + inSlope: {x: -0.2702962, y: -0.05239625, z: 0.6752137, w: 1.1609757} + outSlope: {x: -0.2702962, y: -0.05239625, z: 0.6752137, w: 1.1609757} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.044803277, y: 0.005186365, z: -0.5864179, w: 0.808752} + inSlope: {x: -0.07625287, y: -0.038571328, z: 0.6006366, w: 0.44105124} + outSlope: {x: -0.07625287, y: -0.038571328, z: 0.6006366, w: 0.44105124} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7333335 + value: {x: 0.041309416, y: 0.002864544, z: -0.56248295, w: 0.82577133} + inSlope: {x: -0.016779298, y: -0.02543656, z: -0.011600815, w: -0.007058859} + outSlope: {x: -0.016779298, y: -0.02543656, z: -0.011600815, w: -0.007058859} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9000001 + value: {x: 0.04201559, y: 0.0003170479, z: -0.5972158, w: 0.8009793} + inSlope: {x: -0.021142757, y: -0.00909646, z: 0.2033018, w: 0.15072508} + outSlope: {x: -0.021142757, y: -0.00909646, z: 0.2033018, w: 0.15072508} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.0333335 + value: {x: 0.03691683, y: 0.00016620081, z: -0.5262482, w: 0.84952927} + inSlope: {x: -0.037863296, y: -0.004767331, z: 0.4973498, w: 0.31110132} + outSlope: {x: -0.037863296, y: -0.004767331, z: 0.4973498, w: 0.31110132} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.4 + value: {x: 0.020528449, y: -0.008521531, z: -0.3373083, w: 0.94113183} + inSlope: {x: -0.04574805, y: -0.040414393, z: 0.5227872, w: 0.18821973} + outSlope: {x: -0.04574805, y: -0.040414393, z: 0.5227872, w: 0.18821973} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.8666668 + value: {x: 0.009501965, y: -0.029912602, z: -0.24359107, w: 0.96937007} + inSlope: {x: 0.0011798099, y: -0.04078906, z: -0.31041726, w: -0.07971801} + outSlope: {x: 0.0011798099, y: -0.04078906, z: -0.31041726, w: -0.07971801} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.2333336 + value: {x: 0.01202037, y: -0.03827471, z: -0.44290403, w: 0.895671} + inSlope: {x: 0.009103594, y: -0.0014344803, z: -0.5839483, w: -0.2886909} + outSlope: {x: 0.009103594, y: -0.0014344803, z: -0.5839483, w: -0.2886909} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.5333335 + value: {x: 0.0158438, y: -0.034265563, z: -0.550289, w: 0.83412045} + inSlope: {x: 0.033889968, y: 0.05001872, z: -0.0758297, w: -0.04858558} + outSlope: {x: 0.033889968, y: 0.05001872, z: -0.0758297, w: -0.04858558} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.766667 + value: {x: 0.029786604, y: -0.013229165, z: -0.55134284, w: 0.8336419} + inSlope: {x: 0.09669082, y: 0.15545508, z: 0.13306004, w: 0.08690455} + outSlope: {x: 0.09669082, y: 0.15545508, z: 0.13306004, w: 0.08690455} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.035550233, y: -0.0042413776, z: -0.54814816, w: 0.8356146} + inSlope: {x: 0.07430699, y: 0.10886431, z: -0.046736643, w: -0.032855302} + outSlope: {x: 0.07430699, y: 0.10886431, z: -0.046736643, w: -0.032855302} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.34279758, y: -0.548056, z: 0.169689, w: 0.7438616} + inSlope: {x: -0.05265623, y: 0.07462799, z: 0.1373434, w: 0.04725873} + outSlope: {x: -0.05265623, y: 0.07462799, z: 0.1373434, w: 0.04725873} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.28486538, y: -0.544139, z: 0.15570226, w: 0.7736415} + inSlope: {x: -0.35857964, y: 0.008444489, z: -0.13983631, w: 0.16613604} + outSlope: {x: -0.35857964, y: 0.008444489, z: -0.13983631, w: 0.16613604} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: 0.2286484, y: -0.53063273, z: 0.16453406, w: 0.79942316} + inSlope: {x: -0.2653094, y: 0.09553761, z: 0.12811103, w: 0.113709584} + outSlope: {x: -0.2653094, y: 0.09553761, z: 0.12811103, w: 0.113709584} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5666667 + value: {x: 0.19856, y: -0.52724516, z: 0.13601069, w: 0.8149157} + inSlope: {x: -0.30794495, y: 0.32170066, z: -0.5640174, w: 0.37277168} + outSlope: {x: -0.30794495, y: 0.32170066, z: -0.5640174, w: 0.37277168} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6333334 + value: {x: 0.16197187, y: -0.50134885, z: 0.09368003, w: 0.84477127} + inSlope: {x: -1.0871086, y: 0.3114898, z: -0.5463562, w: 0.44031143} + outSlope: {x: -1.0871086, y: 0.3114898, z: -0.5463562, w: 0.44031143} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.11259359, y: -0.4933835, z: 0.07879805, w: 0.85888666} + inSlope: {x: -1.4386733, y: 0.21085072, z: -0.13893747, w: 0.3279556} + outSlope: {x: -1.4386733, y: 0.21085072, z: -0.13893747, w: 0.3279556} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.044393897, y: -0.48096707, z: 0.08380845, w: 0.87159395} + inSlope: {x: 0.026765496, y: 0.5333199, z: -0.301378, w: 0.30905652} + outSlope: {x: 0.026765496, y: 0.5333199, z: -0.301378, w: 0.30905652} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7666667 + value: {x: 0.067844726, y: -0.45173746, z: 0.06432567, w: 0.88723874} + inSlope: {x: 0.44518587, y: 1.0137123, z: -0.055839077, w: 0.48605162} + outSlope: {x: 0.44518587, y: 1.0137123, z: -0.055839077, w: 0.48605162} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000001 + value: {x: 0.07407298, y: -0.4133862, z: 0.080085844, w: 0.9039974} + inSlope: {x: 0.24058159, y: 1.2578381, z: 0.6066766, w: 0.49345493} + outSlope: {x: 0.24058159, y: 1.2578381, z: 0.6066766, w: 0.49345493} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.86666673 + value: {x: 0.090117164, y: -0.33596867, z: 0.14165328, w: 0.9267893} + inSlope: {x: 0.085140385, y: 0.5553019, z: 1.2512143, w: 0.0036386922} + outSlope: {x: 0.085140385, y: 0.5553019, z: 1.2512143, w: 0.0036386922} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9666667 + value: {x: 0.0884256, y: -0.36392772, z: 0.26710945, w: 0.88791335} + inSlope: {x: -0.12755448, y: -0.62136024, z: 0.6800897, w: -0.4385264} + outSlope: {x: -0.12755448, y: -0.62136024, z: 0.6800897, w: -0.4385264} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.065113865, y: -0.44636494, z: 0.25206965, w: 0.85614216} + inSlope: {x: 0.03372132, y: -0.7799536, z: -0.5153854, w: -0.25353783} + outSlope: {x: 0.03372132, y: -0.7799536, z: -0.5153854, w: -0.25353783} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.07196811, y: -0.5041379, z: 0.18763126, w: 0.8399167} + inSlope: {x: -0.06371605, y: -0.6075929, z: -0.6732796, w: -0.20733674} + outSlope: {x: -0.06371605, y: -0.6075929, z: -0.6732796, w: -0.20733674} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666668 + value: {x: 0.06797705, y: -0.5405499, z: 0.1444894, w: 0.8260192} + inSlope: {x: 0.095583715, y: 0.2548611, z: -0.21649575, w: 0.1934303} + outSlope: {x: 0.095583715, y: 0.2548611, z: -0.21649575, w: 0.1934303} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.07954014, y: -0.49137968, z: 0.15152664, w: 0.85396665} + inSlope: {x: 0.55581695, y: 1.0479676, z: 0.7667827, w: 0.3933628} + outSlope: {x: 0.55581695, y: 1.0479676, z: 0.7667827, w: 0.3933628} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4000001 + value: {x: 0.15246518, y: -0.4157259, z: 0.2399601, w: 0.8639129} + inSlope: {x: 1.2071788, y: 1.0729678, z: 1.2190077, w: -0.01652868} + outSlope: {x: 1.2071788, y: 1.0729678, z: 1.2190077, w: -0.01652868} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4666667 + value: {x: 0.20513965, y: -0.3535412, z: 0.28098145, w: 0.8683178} + inSlope: {x: -0.017247722, y: 0.7089174, z: -0.03294547, w: 0.30482808} + outSlope: {x: -0.017247722, y: 0.7089174, z: -0.03294547, w: 0.30482808} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333334 + value: {x: 0.14365053, y: -0.31143177, z: 0.25899053, w: 0.9029389} + inSlope: {x: -1.665436, y: 0.96009266, z: -0.35346028, w: 0.6657723} + outSlope: {x: -1.665436, y: 0.96009266, z: -0.35346028, w: 0.6657723} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6000001 + value: {x: -0.005835474, y: -0.20589171, z: 0.232006, w: 0.95065653} + inSlope: {x: -2.292731, y: 2.3967607, z: -0.7421935, w: 0.65638065} + outSlope: {x: -2.292731, y: 2.3967607, z: -0.7421935, w: 0.65638065} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6333334 + value: {x: -0.07567788, y: -0.11072402, z: 0.19695483, w: 0.9711961} + inSlope: {x: -1.5905774, y: 2.3599765, z: -1.1161873, w: 0.43931407} + outSlope: {x: -1.5905774, y: 2.3599765, z: -1.1161873, w: 0.43931407} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.111873865, y: -0.04856009, z: 0.15759358, w: 0.9799441} + inSlope: {x: -0.37526244, y: 0.9281003, z: -1.0342308, w: 0.2136319} + outSlope: {x: -0.37526244, y: 0.9281003, z: -1.0342308, w: 0.2136319} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7333335 + value: {x: -0.07703378, y: -0.07621958, z: 0.10602827, w: 0.9884404} + inSlope: {x: 0.5750711, y: -0.59189343, z: -0.6091476, w: 0.072779864} + outSlope: {x: 0.5750711, y: -0.59189343, z: -0.6091476, w: 0.072779864} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.060248006, y: -0.08438247, z: 0.048697617, w: 0.9934175} + inSlope: {x: 0.12680182, y: -0.1369297, z: -0.57584536, w: 0.02325029} + outSlope: {x: 0.12680182, y: -0.1369297, z: -0.57584536, w: 0.02325029} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.8666668 + value: {x: -0.051606476, y: -0.09476776, z: 0.030050477, w: 0.99370664} + inSlope: {x: 0.5343405, y: -0.76459414, z: -0.43126625, w: -0.046910107} + outSlope: {x: 0.5343405, y: -0.76459414, z: -0.43126625, w: -0.046910107} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9000001 + value: {x: -0.02462531, y: -0.1353554, z: 0.019946495, w: 0.99029016} + inSlope: {x: 0.600054, y: -0.75044465, z: -0.29281884, w: -0.06553984} + outSlope: {x: 0.600054, y: -0.75044465, z: -0.29281884, w: -0.06553984} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9666668 + value: {x: -0.0069795125, y: -0.15202895, z: 0.006634931, w: 0.9883292} + inSlope: {x: 0.059940398, y: -0.3463426, z: -0.0086833425, w: -0.0541593} + outSlope: {x: 0.059940398, y: -0.3463426, z: -0.0086833425, w: -0.0541593} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.0666668 + value: {x: -0.018523924, y: -0.19912256, z: 0.040602524, w: 0.9789579} + inSlope: {x: -0.31434417, y: -0.0867302, z: 0.6177722, w: -0.049566373} + outSlope: {x: -0.31434417, y: -0.0867302, z: 0.6177722, w: -0.049566373} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.1333334 + value: {x: -0.050176907, y: -0.1809195, z: 0.078996636, w: 0.9790352} + inSlope: {x: -0.5392281, y: 0.31347364, z: 0.4919939, w: -0.007908948} + outSlope: {x: -0.5392281, y: 0.31347364, z: 0.4919939, w: -0.007908948} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.068020545, y: -0.17309593, z: 0.09422118, w: 0.97802526} + inSlope: {x: -0.47552553, y: 0.51373273, z: -0.061141238, w: 0.05856877} + outSlope: {x: -0.47552553, y: 0.51373273, z: -0.061141238, w: 0.05856877} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.2 + value: {x: -0.08187858, y: -0.14667068, z: 0.07492056, w: 0.9829398} + inSlope: {x: -0.3860715, y: 0.3487293, z: -0.26946816, w: 0.049047813} + outSlope: {x: -0.3860715, y: 0.3487293, z: -0.26946816, w: 0.049047813} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.2333333 + value: {x: -0.09375862, y: -0.14984733, z: 0.076256655, w: 0.9812951} + inSlope: {x: -0.3157342, y: 0.09034619, z: -0.21609868, w: -0.0015898235} + outSlope: {x: -0.3157342, y: 0.09034619, z: -0.21609868, w: -0.0015898235} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.3000002 + value: {x: -0.105751894, y: -0.1071635, z: 0.02328793, w: 0.98832697} + inSlope: {x: 0.13566402, y: 1.3684607, z: -1.4573495, w: 0.16270295} + outSlope: {x: 0.13566402, y: 1.3684607, z: -1.4573495, w: 0.16270295} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.09388331, y: -0.049416926, z: -0.036642663, w: 0.99368066} + inSlope: {x: 0.2658844, y: 0.6633354, z: -1.6296859, w: 0.031941563} + outSlope: {x: 0.2658844, y: 0.6633354, z: -1.6296859, w: 0.031941563} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.3666668 + value: {x: -0.088026285, y: -0.06294118, z: -0.08535769, w: 0.9904564} + inSlope: {x: 0.14614923, y: -0.41635305, z: -1.6341661, w: -0.16417727} + outSlope: {x: 0.14614923, y: -0.41635305, z: -1.6341661, w: -0.16417727} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.4 + value: {x: -0.08414004, y: -0.07717377, z: -0.14558697, w: 0.9827355} + inSlope: {x: 0.11348057, y: -0.47536278, z: -1.8202398, w: -0.29955566} + outSlope: {x: 0.11348057, y: -0.47536278, z: -1.8202398, w: -0.29955566} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.4333334 + value: {x: -0.08046092, y: -0.094632, z: -0.2067069, w: 0.97048604} + inSlope: {x: 0.053755656, y: -0.571113, z: -2.5741546, w: -0.67286766} + outSlope: {x: 0.053755656, y: -0.571113, z: -2.5741546, w: -0.67286766} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.4666667 + value: {x: -0.08055633, y: -0.115247935, z: -0.3171971, w: 0.9378777} + inSlope: {x: 0.08205329, y: -0.7151496, z: -2.1211152, w: -0.7040701} + outSlope: {x: 0.08205329, y: -0.7151496, z: -2.1211152, w: -0.7040701} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.5000002 + value: {x: -0.07499067, y: -0.14230879, z: -0.34811467, w: 0.923548} + inSlope: {x: 0.25484762, y: -0.84655404, z: -0.9178245, w: -0.457717} + outSlope: {x: 0.25484762, y: -0.84655404, z: -0.9178245, w: -0.457717} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.6333334 + value: {x: -0.0058129537, y: -0.24217317, z: -0.4414825, w: 0.86395115} + inSlope: {x: 0.57400596, y: -0.42320472, z: -0.35264736, w: -0.29047728} + outSlope: {x: 0.57400596, y: -0.42320472, z: -0.35264736, w: -0.29047728} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.8000002 + value: {x: 0.025681905, y: -0.20605123, z: -0.46827698, w: 0.8588365} + inSlope: {x: -0.037337393, y: 0.55250096, z: -0.022573493, w: 0.12135755} + outSlope: {x: -0.037337393, y: 0.55250096, z: -0.022573493, w: 0.12135755} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.0000002 + value: {x: 0.03791603, y: -0.111579485, z: -0.47576338, w: 0.87164307} + inSlope: {x: 0.11323688, y: 0.40179473, z: -0.042615425, w: 0.023454152} + outSlope: {x: 0.11323688, y: 0.40179473, z: -0.042615425, w: 0.023454152} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.0333335 + value: {x: 0.041514907, y: -0.09856715, z: -0.47708872, w: 0.87232304} + inSlope: {x: 0.23515636, y: 0.3595773, z: 0.5355652, w: 0.30650344} + outSlope: {x: 0.23515636, y: 0.3595773, z: 0.5355652, w: 0.30650344} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.0666668 + value: {x: 0.053593107, y: -0.08760769, z: -0.44005907, w: 0.8920766} + inSlope: {x: 0.42380637, y: 0.32079756, z: 1.5106997, w: 0.72425795} + outSlope: {x: 0.42380637, y: 0.32079756, z: 1.5106997, w: 0.72425795} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.1000001 + value: {x: 0.06976864, y: -0.07718067, z: -0.3763755, w: 0.92060685} + inSlope: {x: 0.37997973, y: 0.31067342, z: 1.4740996, w: 0.62983245} + outSlope: {x: 0.37997973, y: 0.31067342, z: 1.4740996, w: 0.62983245} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.08624545, y: -0.059525553, z: -0.31710398, w: 0.94258344} + inSlope: {x: 0.20468357, y: 0.16283154, z: 0.649112, w: 0.21279085} + outSlope: {x: 0.20468357, y: 0.16283154, z: 0.649112, w: 0.21279085} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.08807784, y: -0.05097724, z: -0.24797833, w: 0.9634056} + inSlope: {x: -0.18108729, y: 0.090478264, z: 0.31458318, w: 0.10257224} + outSlope: {x: -0.18108729, y: 0.090478264, z: 0.31458318, w: 0.10257224} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.5666668 + value: {x: 0.067627855, y: -0.063028306, z: -0.20636447, w: 0.9740984} + inSlope: {x: -0.01620391, y: -0.18612346, z: 0.08358844, w: 0.006782419} + outSlope: {x: -0.01620391, y: -0.18612346, z: 0.08358844, w: 0.006782419} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.766667 + value: {x: 0.058745958, y: -0.10200912, z: -0.18012425, w: 0.9765748} + inSlope: {x: -0.0084995935, y: -0.23166451, z: 0.09889202, w: -0.005511051} + outSlope: {x: -0.0084995935, y: -0.23166451, z: 0.09889202, w: -0.005511051} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.056720965, y: -0.118995175, z: -0.15938394, w: 0.97837603} + inSlope: {x: -0.05427768, y: -0.27119908, z: 0.5198984, w: 0.060827196} + outSlope: {x: -0.05427768, y: -0.27119908, z: 0.5198984, w: 0.060827196} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.16767853, y: -0.03957146, z: -0.24348336, w: 0.95448095} + inSlope: {x: -0.031457394, y: -0.08389703, z: -0.33469495, w: -0.08555531} + outSlope: {x: -0.031457394, y: -0.08389703, z: -0.33469495, w: -0.08555531} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: 0.15135574, y: -0.08723315, z: -0.40873346, w: 0.8957783} + inSlope: {x: -0.104987755, y: -0.1578426, z: -0.3496279, w: -0.15721151} + outSlope: {x: -0.104987755, y: -0.1578426, z: -0.3496279, w: -0.15721151} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6333334 + value: {x: 0.10264031, y: -0.12693158, z: -0.4263313, w: 0.8897162} + inSlope: {x: -0.44649452, y: -0.3060708, z: 0.18345688, w: 0.095275655} + outSlope: {x: -0.44649452, y: -0.3060708, z: 0.18345688, w: 0.095275655} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.04164492, y: -0.17158808, z: -0.38101697, w: 0.9075513} + inSlope: {x: -0.033320278, y: -0.028842492, z: 0.042226057, w: 0.013953759} + outSlope: {x: -0.033320278, y: -0.028842492, z: 0.042226057, w: 0.013953759} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666668 + value: {x: 0.043525215, y: -0.16995844, z: -0.38340172, w: 0.90676504} + inSlope: {x: 0.004196424, y: 0.0036174026, z: -0.005302275, w: -0.0017648919} + outSlope: {x: 0.004196424, y: 0.0036174026, z: -0.005302275, w: -0.0017648919} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.0333335 + value: {x: 0.04162639, y: -0.17160395, z: -0.3809935, w: 0.907559} + inSlope: {x: -0.008065801, y: 0.018609855, z: 0.0032123954, w: 0.005219584} + outSlope: {x: -0.008065801, y: 0.018609855, z: 0.0032123954, w: 0.005219584} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.3000002 + value: {x: 0.011822831, y: -0.10404727, z: -0.37095785, w: 0.9227268} + inSlope: {x: -0.20430067, y: 0.45509362, z: 0.05633896, w: 0.07621415} + outSlope: {x: -0.20430067, y: 0.45509362, z: 0.05633896, w: 0.07621415} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.4 + value: {x: -0.00067851564, y: -0.08980993, z: -0.36887094, w: 0.9251313} + inSlope: {x: 0.037759386, y: -0.42751056, z: -0.06615094, w: -0.0707022} + outSlope: {x: 0.037759386, y: -0.42751056, z: -0.06615094, w: -0.0707022} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.5666668 + value: {x: 0.039859384, y: -0.2165772, z: -0.3897777, w: 0.8941918} + inSlope: {x: 0.33173102, y: -0.55842865, z: -0.05889555, w: -0.17264503} + outSlope: {x: 0.33173102, y: -0.55842865, z: -0.05889555, w: -0.17264503} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.059145767, y: -0.22691967, z: -0.37670147, w: 0.8961614} + inSlope: {x: -0.01795601, y: 0.3428414, z: 0.3670924, w: 0.23972355} + outSlope: {x: -0.01795601, y: 0.3428414, z: 0.3670924, w: 0.23972355} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.8000002 + value: {x: 0.04859565, y: -0.17663853, z: -0.31422034, w: 0.9315057} + inSlope: {x: 0.025715426, y: 0.093502566, z: 0.54679346, w: 0.20072955} + outSlope: {x: 0.025715426, y: 0.093502566, z: 0.54679346, w: 0.20072955} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.9 + value: {x: 0.061208356, y: -0.18922876, z: -0.25595912, w: 0.9460079} + inSlope: {x: 0.116147354, y: -0.12277064, z: 0.5451575, w: 0.11583578} + outSlope: {x: 0.116147354, y: -0.12277064, z: 0.5451575, w: 0.11583578} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.966667 + value: {x: 0.06833707, y: -0.19709797, z: -0.22236505, w: 0.9523845} + inSlope: {x: 0.050938856, y: -0.057594493, z: 0.2401673, w: 0.04278991} + outSlope: {x: 0.050938856, y: -0.057594493, z: 0.2401673, w: 0.04278991} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.0666668 + value: {x: 0.06833714, y: -0.19709799, z: -0.22236529, w: 0.9523844} + inSlope: {x: 0.00000011175882, y: 0.0000011175881, z: 0.00000044703523, w: 0.0000008940705} + outSlope: {x: 0.00000011175882, y: 0.0000011175881, z: 0.00000044703523, w: 0.0000008940705} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 3.8333335 + value: {x: 0.068337105, y: -0.19709809, z: -0.22236522, w: 0.9523845} + inSlope: {x: -0.0000013411058, y: -0.000006705529, z: -0.00000044703526, w: 0} + outSlope: {x: -0.0000013411058, y: -0.000006705529, z: -0.00000044703526, + w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.08998484, y: -0.11116112, z: 0.294136, w: 0.9450027} + inSlope: {x: -0.025329439, y: -0.0020192564, z: -0.055016574, w: 0.019226072} + outSlope: {x: -0.025329439, y: -0.0020192564, z: -0.055016574, w: 0.019226072} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.084565446, y: -0.104012825, z: 0.26524132, w: 0.95481783} + inSlope: {x: 0.052751526, y: 0.035034098, z: 0.015584526, w: -0.005301832} + outSlope: {x: 0.052751526, y: 0.035034098, z: 0.015584526, w: -0.005301832} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7666667 + value: {x: 0.17456655, y: -0.032988016, z: 0.26807702, w: 0.9468754} + inSlope: {x: 0.27323687, y: 0.23444143, z: 0.008385472, w: -0.043697618} + outSlope: {x: 0.27323687, y: 0.23444143, z: 0.008385472, w: -0.043697618} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.1839568, y: -0.02483768, z: 0.26838356, w: 0.9452583} + inSlope: {x: -0.0054824306, y: -0.0048010377, z: -0.00018641337, w: 0.0009942045} + outSlope: {x: -0.0054824306, y: -0.0048010377, z: -0.00018641337, w: 0.0009942045} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.0666668 + value: {x: 0.18483812, y: -0.02425423, z: 0.26858553, w: 0.94504416} + inSlope: {x: 0.014433428, y: 0.0015996319, z: 0.010572384, w: -0.005792683} + outSlope: {x: 0.014433428, y: 0.0015996319, z: 0.010572384, w: -0.005792683} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.2008998, y: -0.022307469, z: 0.28036886, w: 0.93836826} + inSlope: {x: 0.045716956, y: -0.010365155, z: -0.011493277, w: -0.0065580076} + outSlope: {x: 0.045716956, y: -0.010365155, z: -0.011493277, w: -0.0065580076} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.5333335 + value: {x: 0.1441577, y: -0.052273136, z: 0.16874765, w: 0.9736582} + inSlope: {x: -0.41454497, y: -0.18272305, z: -0.76751435, w: 0.18597472} + outSlope: {x: -0.41454497, y: -0.18272305, z: -0.76751435, w: 0.18597472} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.11501469, y: -0.066159494, z: 0.10935446, w: 0.9851072} + inSlope: {x: 0.05560582, y: -0.01034082, z: 0.0024430454, w: -0.007559366} + outSlope: {x: 0.05560582, y: -0.01034082, z: 0.0024430454, w: -0.007559366} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.8666668 + value: {x: 0.12822202, y: -0.06527099, z: 0.12008344, w: 0.98228246} + inSlope: {x: -0.0000020116586, y: -0.0000011175881, z: 0.00000078231164, w: 0} + outSlope: {x: -0.0000020116586, y: -0.0000011175881, z: 0.00000078231164, + w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.12822214, y: -0.06527092, z: 0.12008344, w: 0.9822824} + inSlope: {x: 0.0000049173877, y: 0.0000006705529, z: 0.0000031292468, w: -0.000001788141} + outSlope: {x: 0.0000049173877, y: 0.0000006705529, z: 0.0000031292468, w: -0.000001788141} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.00000005924621, y: -0.043534093, z: -0.00000003789664, w: 0.999052} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: -0.00000005924621, y: -0.043534093, z: -0.00000003789664, w: 0.999052} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2/mixamorig:LeftHandThumb3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.20065321, y: -0.0065797158, z: 0.08744494, w: 0.97572964} + inSlope: {x: -0.036146786, y: -0.015956853, z: 0.08654303, w: -0.0005847215} + outSlope: {x: -0.036146786, y: -0.015956853, z: 0.08654303, w: -0.0005847215} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.16536212, y: -0.016106626, z: 0.1372296, w: 0.97650605} + inSlope: {x: -0.13821466, y: 0.018623728, z: 0.054626346, w: 0.015973443} + outSlope: {x: -0.13821466, y: 0.018623728, z: 0.054626346, w: 0.015973443} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7666667 + value: {x: 0.110942096, y: 0.07029025, z: 0.08948719, w: 0.98729086} + inSlope: {x: -0.0954556, y: 0.2732528, z: -0.18885529, w: 0.009192817} + outSlope: {x: -0.0954556, y: 0.2732528, z: -0.18885529, w: 0.009192817} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0333334 + value: {x: 0.15402327, y: 0.054269046, z: 0.08825953, w: 0.98261994} + inSlope: {x: 0.30792361, y: -0.18461072, z: 0.033212088, w: -0.04117188} + outSlope: {x: 0.30792361, y: -0.18461072, z: 0.033212088, w: -0.04117188} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.22009753, y: 0.013057312, z: 0.0930939, w: 0.9709378} + inSlope: {x: -0.3745954, y: 0.2207089, z: -0.015448946, w: 0.08292757} + outSlope: {x: -0.3745954, y: 0.2207089, z: -0.015448946, w: 0.08292757} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9000001 + value: {x: 0.10788979, y: 0.08042182, z: 0.0822615, w: 0.9874843} + inSlope: {x: -0.005722386, y: 0.01488035, z: -0.0014108432, w: -0.0004541878} + outSlope: {x: -0.005722386, y: 0.01488035, z: -0.0014108432, w: -0.0004541878} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.3000002 + value: {x: 0.1342472, y: 0.082968354, z: 0.07922986, w: 0.9842848} + inSlope: {x: 0.18271962, y: 0.015944518, z: -0.019681398, w: -0.024746085} + outSlope: {x: 0.18271962, y: 0.015944518, z: -0.019681398, w: -0.024746085} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.4 + value: {x: 0.18989907, y: 0.07645255, z: 0.08884938, w: 0.9747816} + inSlope: {x: 1.1670227, y: -0.21269055, z: 0.2910338, w: -0.24592215} + outSlope: {x: 1.1670227, y: -0.21269055, z: 0.2910338, w: -0.24592215} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.5333335 + value: {x: 0.40226352, y: 0.030743543, z: 0.13860767, w: 0.90444833} + inSlope: {x: 1.6442041, y: -0.37586653, z: 0.3167732, w: -0.7633717} + outSlope: {x: 1.6442041, y: -0.37586653, z: 0.3167732, w: -0.7633717} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.553984, y: 0.004377775, z: 0.15574037, w: 0.81781876} + inSlope: {x: 0.49528468, y: 0.059789255, z: -0.077181086, w: -0.31803608} + outSlope: {x: 0.49528468, y: 0.059789255, z: -0.077181086, w: -0.31803608} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.9333334 + value: {x: 0.6294315, y: 0.026945503, z: 0.124191634, w: 0.76659405} + inSlope: {x: 0.17418043, y: 0.044628456, z: -0.1057532, w: -0.12735096} + outSlope: {x: 0.17418043, y: 0.044628456, z: -0.1057532, w: -0.12735096} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.2000003 + value: {x: 0.63500947, y: 0.028236406, z: 0.12077739, w: 0.7624818} + inSlope: {x: 0.00000089406416, y: -0.0000007823067, z: -0.0000029057228, w: 0} + outSlope: {x: 0.00000089406416, y: -0.0000007823067, z: -0.0000029057228, + w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.63500947, y: 0.028236408, z: 0.12077749, w: 0.7624818} + inSlope: {x: 0.000001788141, y: -0.00000055879406, z: 0.0000029057292, w: -0.000003576282} + outSlope: {x: 0.000001788141, y: -0.00000055879406, z: 0.0000029057292, w: -0.000003576282} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.15709622, y: -0.0047635105, z: 0.020478716, w: 0.98735946} + inSlope: {x: 0.07776349, y: -0.0037109617, z: 0.0077747176, w: -0.0126582375} + outSlope: {x: 0.07776349, y: -0.0037109617, z: 0.0077747176, w: -0.0126582375} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.1754237, y: -0.015035656, z: 0.019676851, w: 0.9841815} + inSlope: {x: -0.113574095, y: 0.000009132782, z: -0.013685551, w: 0.020382103} + outSlope: {x: -0.113574095, y: 0.000009132782, z: -0.013685551, w: 0.020382103} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.86666673 + value: {x: 0.09876002, y: -0.010205026, z: 0.012329279, w: 0.9949826} + inSlope: {x: 0.13006884, y: 0.00030920847, z: 0.015145194, w: -0.013212565} + outSlope: {x: 0.13006884, y: 0.00030920847, z: 0.015145194, w: -0.013212565} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.2228643, y: -0.0100182695, z: 0.026795426, w: 0.97442967} + inSlope: {x: 0.16805884, y: 0.00012933271, z: 0.01951876, w: -0.038832106} + outSlope: {x: 0.16805884, y: 0.00012933271, z: 0.01951876, w: -0.038832106} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6000001 + value: {x: 0.19152941, y: -0.010051797, z: 0.023163058, w: 0.981162} + inSlope: {x: -0.40624797, y: -0.000489894, z: -0.04719687, w: 0.0801506} + outSlope: {x: -0.40624797, y: -0.000489894, z: -0.04719687, w: 0.0801506} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9000001 + value: {x: 0.09384552, y: -0.01021775, z: 0.0117608765, w: 0.99546486} + inSlope: {x: -0.020887498, y: -0.00001606533, z: -0.0025453768, w: 0.0020214934} + outSlope: {x: -0.020887498, y: -0.00001606533, z: -0.0025453768, w: 0.0020214934} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.3000002 + value: {x: 0.08629333, y: -0.01033599, z: 0.011986007, w: 0.99614406} + inSlope: {x: -0.048119992, y: -0.00077513116, z: 0.0017693655, w: 0.004137758} + outSlope: {x: -0.048119992, y: -0.00077513116, z: 0.0017693655, w: 0.004137758} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.3666668 + value: {x: 0.105968066, y: -0.012445317, z: 0.014280451, w: 0.9941891} + inSlope: {x: 1.2259285, y: -0.11399765, z: 0.11406495, w: -0.15873864} + outSlope: {x: 1.2259285, y: -0.11399765, z: 0.11406495, w: -0.15873864} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.4666667 + value: {x: 0.36132827, y: -0.03419178, z: 0.031513076, w: 0.9312785} + inSlope: {x: 3.2729278, y: -0.24232027, z: 0.12762368, w: -1.3050808} + outSlope: {x: 3.2729278, y: -0.24232027, z: 0.12762368, w: -1.3050808} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.5333335 + value: {x: 0.57946944, y: -0.047412988, z: 0.034671765, w: 0.81287456} + inSlope: {x: 2.9535253, y: -0.12601778, z: -0.034214795, w: -2.092082} + outSlope: {x: 2.9535253, y: -0.12601778, z: -0.034214795, w: -2.092082} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.6333334 + value: {x: 0.7841188, y: -0.04983572, z: 0.025513405, w: 0.61808026} + inSlope: {x: 0.94329274, y: 0.025372101, z: -0.0660871, w: -1.1450468} + outSlope: {x: 0.94329274, y: 0.025372101, z: -0.0660871, w: -1.1450468} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.7333336 + value: {x: 0.81152743, y: -0.04808498, z: 0.024637824, w: 0.581811} + inSlope: {x: 0.14383666, y: 0.015042014, z: 0.0053057587, w: -0.19969085} + outSlope: {x: 0.14383666, y: 0.015042014, z: 0.0053057587, w: -0.19969085} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.0000002 + value: {x: 0.84712976, y: -0.043802943, z: 0.025764624, w: 0.5289506} + inSlope: {x: 0, y: -0.000000055879404, z: -0.0000024866335, w: -0.000001788141} + outSlope: {x: 0, y: -0.000000055879404, z: -0.0000024866335, w: -0.000001788141} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.8471298, y: -0.04380302, z: 0.025764724, w: 0.52895045} + inSlope: {x: 0.000001788141, y: -0.0000022351762, z: 0.0000044703525, w: -0.000003576282} + outSlope: {x: 0.000001788141, y: -0.0000022351762, z: 0.0000044703525, w: -0.000003576282} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.000000032638912, y: 0.0000000047293596, z: 0.0000000010010148, + 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.033333335 + value: {x: -0.000000032638912, y: 0.0000000047293596, z: 0.0000000010010148, + 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: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2/mixamorig:LeftHandIndex3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.31765, y: -0.02235964, z: 0.029118175, w: 0.94749707} + inSlope: {x: 0.08254408, y: -0.064066626, z: -0.02781825, w: -0.02854943} + outSlope: {x: 0.08254408, y: -0.064066626, z: -0.02781825, w: -0.02854943} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: 0.3555643, y: -0.04623598, z: 0.016850559, w: 0.93335545} + inSlope: {x: -0.14152595, y: -0.05177035, z: -0.005643677, w: 0.051263303} + outSlope: {x: -0.14152595, y: -0.05177035, z: -0.005643677, w: 0.051263303} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6333334 + value: {x: 0.2655675, y: -0.039662007, z: 0.031143183, w: 0.96277255} + inSlope: {x: -0.8850602, y: 0.14515726, z: 0.1638955, w: 0.24401844} + outSlope: {x: -0.8850602, y: 0.14515726, z: 0.1638955, w: 0.24401844} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.13713188, y: -0.014827427, z: 0.053255424, w: 0.989009} + inSlope: {x: 0.018312894, y: 0.014770983, z: 0.010005994, w: -0.0029271687} + outSlope: {x: 0.018312894, y: 0.014770983, z: 0.010005994, w: -0.0029271687} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.26738682, y: -0.008328818, z: 0.053200647, w: 0.9620835} + inSlope: {x: 0.48349994, y: 0.025778435, z: 0.007839154, w: -0.13443512} + outSlope: {x: 0.48349994, y: 0.025778435, z: 0.007839154, w: -0.13443512} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333334 + value: {x: 0.32242712, y: -0.004998882, z: 0.05467065, w: 0.945001} + inSlope: {x: -0.4426637, y: -0.010714758, z: -0.010042256, w: 0.15061155} + outSlope: {x: -0.4426637, y: -0.010714758, z: -0.010042256, w: 0.15061155} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.8000001 + value: {x: 0.16083452, y: -0.01197918, z: 0.05323381, w: 0.98547196} + inSlope: {x: -0.4616578, y: -0.031778887, z: 0.0021433106, w: 0.075751916} + outSlope: {x: -0.4616578, y: -0.031778887, z: 0.0021433106, w: 0.075751916} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.0666668 + value: {x: 0.13592477, y: -0.015106343, z: 0.053252622, w: 0.9891716} + inSlope: {x: 0.030152306, y: 0.0059605306, z: 0.00066144456, w: -0.0041028894} + outSlope: {x: 0.030152306, y: 0.0059605306, z: 0.00066144456, w: -0.0041028894} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.3000002 + value: {x: 0.163266, y: -0.012158012, z: 0.053458244, w: 0.9850577} + inSlope: {x: 0.18660033, y: 0.012306085, z: 0.00014847158, w: -0.030832916} + outSlope: {x: 0.18660033, y: 0.012306085, z: 0.00014847158, w: -0.030832916} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.4 + value: {x: 0.22881489, y: -0.009196794, z: 0.04843831, w: 0.9722206} + inSlope: {x: 1.4294643, y: 0.06195496, z: -0.12989649, w: -0.341754} + outSlope: {x: 1.4294643, y: 0.06195496, z: -0.12989649, w: -0.341754} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.5000002 + value: {x: 0.4166541, y: 0.0011381714, z: 0.03306463, w: 0.9084629} + inSlope: {x: 2.008009, y: 0.14707647, z: -0.1292504, w: -0.9166169} + outSlope: {x: 2.008009, y: 0.14707647, z: -0.1292504, w: -0.9166169} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.6333334 + value: {x: 0.62220585, y: 0.022032183, z: 0.026902756, w: 0.782081} + inSlope: {x: 0.7318897, y: 0.13541013, z: 0.02575387, w: -0.5741229} + outSlope: {x: 0.7318897, y: 0.13541013, z: 0.02575387, w: -0.5741229} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.7333336 + value: {x: 0.64886814, y: 0.0343353, z: 0.03127834, w: 0.75948197} + inSlope: {x: 0.15560973, y: 0.12729546, z: 0.048237894, w: -0.14064482} + outSlope: {x: 0.15560973, y: 0.12729546, z: 0.048237894, w: -0.14064482} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.0666668 + value: {x: 0.6573727, y: 0.06154323, z: 0.0431637, w: 0.74980694} + inSlope: {x: 0, y: 0.0000027380909, z: -0.00000078231164, w: 0} + outSlope: {x: 0, y: 0.0000027380909, z: -0.00000078231164, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.6573726, y: 0.061543033, z: 0.04316382, w: 0.7498071} + inSlope: {x: -0.000001788141, y: -0.000004246835, z: 0.0000031292468, w: 0.000003576282} + outSlope: {x: -0.000001788141, y: -0.000004246835, z: 0.0000031292468, w: 0.000003576282} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.106274664, y: -0.013341376, z: 0.0006534002, w: 0.99424714} + inSlope: {x: 0.2483493, y: 0.0010501407, z: -0.0027033435, w: -0.027578471} + outSlope: {x: 0.2483493, y: 0.0010501407, z: -0.0027033435, w: -0.027578471} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.27488187, y: -0.01352311, z: -0.0010958231, w: 0.9613823} + inSlope: {x: 0.26406038, y: -0.007933276, z: -0.0022865608, w: -0.07550151} + outSlope: {x: 0.26406038, y: -0.007933276, z: -0.0022865608, w: -0.07550151} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.33201203, y: -0.01417614, z: -0.0016239439, w: 0.9431672} + inSlope: {x: 0.26489204, y: 0.0022677497, z: -0.0024173246, w: -0.09334257} + outSlope: {x: 0.26489204, y: 0.0022677497, z: -0.0024173246, w: -0.09334257} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.40444487, y: -0.013530112, z: -0.0022826733, w: 0.91445947} + inSlope: {x: -0.32805622, y: -0.0030425163, z: 0.002973264, w: 0.14469878} + outSlope: {x: -0.32805622, y: -0.0030425163, z: 0.002973264, w: 0.14469878} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9000001 + value: {x: 0.30114076, y: -0.014435569, z: -0.0013414709, w: 0.9534695} + inSlope: {x: -0.028726934, y: -0.00023773895, z: 0.00026287072, w: 0.009102532} + outSlope: {x: -0.028726934, y: -0.00023773895, z: 0.00026287072, w: 0.009102532} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.3000002 + value: {x: 0.29444662, y: -0.014544502, z: -0.0010882162, w: 0.95555663} + inSlope: {x: -0.04488726, y: -0.00072493753, z: 0.0016986153, w: 0.013819648} + outSlope: {x: -0.04488726, y: -0.00072493753, z: 0.0016986153, w: 0.013819648} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.3666668 + value: {x: 0.31141204, y: -0.0144020645, z: -0.0012439579, w: 0.95016503} + inSlope: {x: 1.0631549, y: 0.010422599, z: -0.013294614, w: -0.36974823} + outSlope: {x: 1.0631549, y: 0.010422599, z: -0.013294614, w: -0.36974823} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.4666667 + value: {x: 0.5277423, y: -0.011854545, z: -0.0040065465, w: 0.84931237} + inSlope: {x: 2.672689, y: 0.038019896, z: -0.033410598, w: -1.6771543} + outSlope: {x: 2.672689, y: 0.038019896, z: -0.033410598, w: -1.6771543} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.5333335 + value: {x: 0.7002166, y: -0.009008412, z: -0.0061042, w: 0.7138476} + inSlope: {x: 2.26174, y: 0.043135546, z: -0.026609132, w: -2.1981761} + outSlope: {x: 2.26174, y: 0.043135546, z: -0.026609132, w: -2.1981761} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.6333334 + value: {x: 0.84927285, y: -0.005645618, z: -0.0077653355, w: 0.5278669} + inSlope: {x: 0.60846686, y: 0.015362681, z: -0.0060427506, w: -0.9404129} + outSlope: {x: 0.60846686, y: 0.015362681, z: -0.0060427506, w: -0.9404129} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.7333336 + value: {x: 0.8573734, y: -0.0055450527, z: -0.007771131, w: 0.5146063} + inSlope: {x: -0.027058944, y: -0.0020208363, z: 0.0011112138, w: 0.045081552} + outSlope: {x: -0.027058944, y: -0.0020208363, z: 0.0011112138, w: 0.045081552} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.5666668 + value: {x: 0.8556745, y: -0.0056714206, z: -0.007701641, w: 0.51742595} + inSlope: {x: -0.0000008940705, y: -0.0000015436686, z: -0.0000011734676, w: 0.000001788141} + outSlope: {x: -0.0000008940705, y: -0.0000015436686, z: -0.0000011734676, + w: 0.000001788141} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.85567456, y: -0.0056714397, z: -0.007701505, w: 0.5174259} + inSlope: {x: 0.000001788141, y: -0.0000020535683, z: 0.0000032410057, w: -0.000003576282} + outSlope: {x: 0.000001788141, y: -0.0000020535683, z: 0.0000032410057, w: -0.000003576282} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.000001348863, y: 0.0029256695, z: 0.00044959306, w: 0.99999565} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: -0.000001348863, y: 0.0029256695, z: 0.00044959306, w: 0.99999565} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2/mixamorig:LeftHandMiddle3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.35293788, y: 0.021813879, z: 0.046348706, w: 0.9342435} + inSlope: {x: 0.0069522853, y: 0.0029608232, z: -0.006349012, w: -0.0023835895} + outSlope: {x: 0.0069522853, y: 0.0029608232, z: -0.006349012, w: -0.0023835895} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.37097505, y: 0.029839821, z: 0.029841967, w: 0.9276834} + inSlope: {x: -0.031029548, y: -0.021619227, z: -0.016479485, w: 0.0135585535} + outSlope: {x: -0.031029548, y: -0.021619227, z: -0.016479485, w: 0.0135585535} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7666667 + value: {x: 0.29799047, y: -0.022956362, z: 0.0046228073, w: 0.95428157} + inSlope: {x: -0.21543932, y: -0.17569262, z: -0.06909332, w: 0.06402338} + outSlope: {x: -0.21543932, y: -0.17569262, z: -0.06909332, w: 0.06402338} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0333334 + value: {x: 0.34133577, y: -0.026037103, z: -0.0027197525, w: 0.9395768} + inSlope: {x: 0.3386179, y: 0.022778949, z: -0.034898818, w: -0.122608155} + outSlope: {x: 0.3386179, y: 0.022778949, z: -0.034898818, w: -0.122608155} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.42575467, y: -0.021139506, z: -0.011539726, w: 0.90451807} + inSlope: {x: -0.31663805, y: -0.020416144, z: 0.04231724, w: 0.14870867} + outSlope: {x: -0.31663805, y: -0.020416144, z: 0.04231724, w: 0.14870867} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9000001 + value: {x: 0.3219965, y: -0.028647384, z: 0.00063603336, w: 0.9463072} + inSlope: {x: -0.02911183, y: -0.0023661298, z: 0.0030455522, w: 0.009866962} + outSlope: {x: -0.02911183, y: -0.0023661298, z: 0.0030455522, w: 0.009866962} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.3000002 + value: {x: 0.34862113, y: -0.027909681, z: -0.0006380667, w: 0.93684787} + inSlope: {x: 0.17740864, y: 0.0050165458, z: -0.008536963, w: -0.065926075} + outSlope: {x: 0.17740864, y: 0.0050165458, z: -0.008536963, w: -0.065926075} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.4 + value: {x: 0.38877153, y: -0.016706487, z: -0.012527169, w: 0.9210976} + inSlope: {x: 0.7624048, y: 0.29787698, z: -0.30345166, w: -0.32537013} + outSlope: {x: 0.7624048, y: 0.29787698, z: -0.30345166, w: -0.32537013} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.5333335 + value: {x: 0.52019215, y: 0.042786684, z: -0.06739598, w: 0.8503101} + inSlope: {x: 0.97990716, y: 0.48201728, z: -0.4022858, w: -0.6532651} + outSlope: {x: 0.97990716, y: 0.48201728, z: -0.4022858, w: -0.6532651} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.60741824, y: 0.082715474, z: -0.10063088, w: 0.7836292} + inSlope: {x: 0.24972731, y: 0.037855394, z: -0.06568904, w: -0.20449272} + outSlope: {x: 0.24972731, y: 0.037855394, z: -0.06568904, w: -0.20449272} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.0666668 + value: {x: 0.6289897, y: 0.0811882, z: -0.104628, w: 0.7660505} + inSlope: {x: 0, y: 0, z: 0.00000089407047, w: 0} + outSlope: {x: 0, y: 0, z: 0.00000089407047, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.62898964, y: 0.08118812, z: -0.10462799, w: 0.7660506} + inSlope: {x: -0.000003576282, y: -0.0000015646234, z: 0.000003576282, w: 0.000003576282} + outSlope: {x: -0.000003576282, y: -0.0000015646234, z: 0.000003576282, w: 0.000003576282} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.26429018, y: 0.00042302936, z: -0.039644286, w: 0.963628} + inSlope: {x: 0.18687128, y: 0.004136134, z: -0.027697606, w: -0.053061243} + outSlope: {x: 0.18687128, y: 0.004136134, z: -0.027697606, w: -0.053061243} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: 0.35074, y: 0.010033185, z: -0.049643703, w: 0.9351023} + inSlope: {x: -0.049657118, y: 0.007026021, z: 0.009498044, w: 0.01898469} + outSlope: {x: -0.049657118, y: 0.007026021, z: 0.009498044, w: 0.01898469} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6333334 + value: {x: 0.2769066, y: 0.0076190224, z: -0.039840218, w: 0.9600404} + inSlope: {x: -0.7836919, y: -0.031802453, z: 0.10471311, w: 0.22992969} + outSlope: {x: -0.7836919, y: -0.031802453, z: 0.10471311, w: 0.22992969} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.16149196, y: 0.002585684, z: -0.023841409, w: 0.98658264} + inSlope: {x: -0.0043893047, y: -0.0032650619, z: 0.00037854072, w: 0.0007528234} + outSlope: {x: -0.0043893047, y: -0.0032650619, z: 0.00037854072, w: 0.0007528234} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2 + value: {x: 0.25923595, y: 0.0028172825, z: -0.03877273, w: 0.9650314} + inSlope: {x: 0.3085974, y: 0.0007924748, z: -0.04726839, w: -0.084693514} + outSlope: {x: 0.3085974, y: 0.0007924748, z: -0.04726839, w: -0.084693514} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.27591246, y: 0.002811276, z: -0.041167684, w: 0.96029663} + inSlope: {x: -0.35432974, y: -0.001194427, z: 0.055389963, w: 0.10381123} + outSlope: {x: -0.35432974, y: -0.001194427, z: 0.055389963, w: 0.10381123} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9000001 + value: {x: 0.16463363, y: 0.0025053367, z: -0.023832805, w: 0.98606366} + inSlope: {x: -0.030741945, y: -0.00007034519, z: 0.0047859875, w: 0.0052812747} + outSlope: {x: -0.030741945, y: -0.00007034519, z: 0.0047859875, w: 0.0052812747} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.3000002 + value: {x: 0.15771551, y: 0.0026301823, z: -0.023562394, w: 0.98719996} + inSlope: {x: -0.04636471, y: 0.0008400002, z: 0.0018143763, w: 0.0074449256} + outSlope: {x: -0.04636471, y: 0.0008400002, z: 0.0018143763, w: 0.0074449256} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.3666668 + value: {x: 0.17591156, y: 0.004855066, z: -0.026504187, w: 0.98403716} + inSlope: {x: 1.1407241, y: 0.1209168, z: -0.16090302, w: -0.23159556} + outSlope: {x: 1.1407241, y: 0.1209168, z: -0.16090302, w: -0.23159556} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.4666667 + value: {x: 0.4118294, y: 0.028633522, z: -0.0538065, w: 0.90922034} + inSlope: {x: 2.9766772, y: 0.28031057, z: -0.25629547, w: -1.3895255} + outSlope: {x: 2.9766772, y: 0.28031057, z: -0.25629547, w: -1.3895255} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.5333335 + value: {x: 0.6075169, y: 0.045301642, z: -0.06550482, w: 0.7903038} + inSlope: {x: 2.6179056, y: 0.1892929, z: -0.081671275, w: -2.0101943} + outSlope: {x: 2.6179056, y: 0.1892929, z: -0.081671275, w: -2.0101943} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.6333334 + value: {x: 0.78472024, y: 0.054213293, z: -0.064209156, w: 0.6141272} + inSlope: {x: 0.7437254, y: 0.019532256, z: 0.036216337, w: -0.9118375} + outSlope: {x: 0.7437254, y: 0.019532256, z: 0.036216337, w: -0.9118375} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.7333336 + value: {x: 0.7948625, y: 0.054589175, z: -0.063081995, w: 0.60102767} + inSlope: {x: -0.031503353, y: 0.001793443, z: 0.004023526, w: 0.04192728} + outSlope: {x: -0.031503353, y: 0.001793443, z: 0.004023526, w: 0.04192728} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.5666668 + value: {x: 0.7928856, y: 0.054701157, z: -0.06282989, w: 0.6036494} + inSlope: {x: -0.0000008940705, y: 0.0000011734677, z: -0.0000013411058, w: 0.0000008940705} + outSlope: {x: -0.0000008940705, y: 0.0000011734677, z: -0.0000013411058, w: 0.0000008940705} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 3.8333335 + value: {x: 0.79288566, y: 0.05470125, z: -0.06282989, w: 0.6036493} + inSlope: {x: 0, y: 0.00000055879406, z: -0.0000049173877, w: -0.000003576282} + outSlope: {x: 0, y: 0.00000055879406, z: -0.0000049173877, w: -0.000003576282} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 1.05324294e-35, y: -6.071532e-18, z: 1.7347235e-18, 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.033333335 + value: {x: 1.05324294e-35, y: -6.071532e-18, z: 1.7347235e-18, 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: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2/mixamorig:LeftHandPinky3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.30533218, y: 0.43629676, z: -0.41766244, w: 0.73618984} + inSlope: {x: -0.008242428, y: 0.072243504, z: -0.0018131732, w: -0.04058182} + outSlope: {x: -0.008242428, y: 0.072243504, z: -0.0018131732, w: -0.04058182} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: 0.27707598, y: 0.46488202, z: -0.41330722, w: 0.73231876} + inSlope: {x: -0.111342534, y: 0.11086331, z: 0.018710645, w: -0.017851891} + outSlope: {x: -0.111342534, y: 0.11086331, z: 0.018710645, w: -0.017851891} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: 0.24728711, y: 0.49828497, z: -0.4181961, w: 0.7181039} + inSlope: {x: -0.2510547, y: 0.33596444, z: -0.088989854, w: -0.1974731} + outSlope: {x: -0.2510547, y: 0.33596444, z: -0.088989854, w: -0.1974731} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5666667 + value: {x: 0.30081612, y: 0.5136702, z: -0.42872277, w: 0.679595} + inSlope: {x: 0.8865448, y: -0.11409045, z: -0.11346191, w: -0.38109815} + outSlope: {x: 0.8865448, y: -0.11409045, z: -0.11346191, w: -0.38109815} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.38621807, y: 0.51076776, z: -0.43610775, w: 0.6322673} + inSlope: {x: 0.6288861, y: 0.13668354, z: -0.04602044, w: -0.5239937} + outSlope: {x: 0.6288861, y: 0.13668354, z: -0.04602044, w: -0.5239937} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7666667 + value: {x: 0.44942507, y: 0.5124552, z: -0.4614649, w: 0.56785285} + inSlope: {x: 1.0754254, y: -0.5958388, z: -0.55005133, w: -0.7893958} + outSlope: {x: 1.0754254, y: -0.5958388, z: -0.55005133, w: -0.7893958} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.5353296, y: 0.44284445, z: -0.49694857, w: 0.5199549} + inSlope: {x: 0.9604386, y: -0.9366629, z: -0.29644772, w: -0.43275315} + outSlope: {x: 0.9604386, y: -0.9366629, z: -0.29644772, w: -0.43275315} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.90000004 + value: {x: 0.5611705, y: 0.4150266, z: -0.50040555, w: 0.5122839} + inSlope: {x: 0.11053385, y: -0.12084829, z: 0.059736356, w: 0.035300538} + outSlope: {x: 0.11053385, y: -0.12084829, z: 0.059736356, w: 0.035300538} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9333334 + value: {x: 0.5643224, y: 0.4115522, z: -0.49781644, w: 0.51414376} + inSlope: {x: -0.22648694, y: 0.21187691, z: 0.16227284, w: 0.22372949} + outSlope: {x: -0.22648694, y: 0.21187691, z: 0.16227284, w: 0.22372949} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.5243962, y: 0.45017585, z: -0.4806829, w: 0.53971684} + inSlope: {x: -0.74736947, y: 0.7366299, z: 0.30566424, w: 0.37397474} + outSlope: {x: -0.74736947, y: 0.7366299, z: 0.30566424, w: 0.37397474} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.45283988, y: 0.51674813, z: -0.447087, w: 0.57273084} + inSlope: {x: -0.3785718, y: 0.18571189, z: 0.20789307, w: 0.30002448} + outSlope: {x: -0.3785718, y: 0.18571189, z: 0.20789307, w: 0.30002448} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2 + value: {x: 0.43502602, y: 0.4949048, z: -0.45320383, w: 0.6003565} + inSlope: {x: -0.19706967, y: -0.28512177, z: -0.24336824, w: 0.19494939} + outSlope: {x: -0.19706967, y: -0.28512177, z: -0.24336824, w: 0.19494939} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2333333 + value: {x: 0.42710587, y: 0.4874661, z: -0.4613863, w: 0.6058713} + inSlope: {x: -0.29096302, y: 0.043213904, z: -0.008506149, w: 0.16251582} + outSlope: {x: -0.29096302, y: 0.043213904, z: -0.008506149, w: 0.16251582} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666668 + value: {x: 0.41562846, y: 0.49778575, z: -0.45377088, w: 0.6111909} + inSlope: {x: -0.34200418, y: 0.3432179, z: 0.22316273, w: 0.11846674} + outSlope: {x: -0.34200418, y: 0.3432179, z: 0.22316273, w: 0.11846674} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3000001 + value: {x: 0.40430558, y: 0.5103473, z: -0.44650877, w: 0.6137691} + inSlope: {x: -0.39027476, y: 0.6574422, z: 0.5498686, w: 0.089380234} + outSlope: {x: -0.39027476, y: 0.6574422, z: 0.5498686, w: 0.089380234} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3666668 + value: {x: 0.37835062, y: 0.56885153, z: -0.38969526, w: 0.61757296} + inSlope: {x: -0.12265961, y: 0.5124163, z: 0.55882794, w: -0.02646898} + outSlope: {x: -0.12265961, y: 0.5124163, z: 0.55882794, w: -0.02646898} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333334 + value: {x: 0.5092343, y: 0.46689987, z: -0.4533627, w: 0.5631582} + inSlope: {x: 1.0357387, y: -0.96099484, z: -0.69987524, w: -0.69403744} + outSlope: {x: 1.0357387, y: -0.96099484, z: -0.69987524, w: -0.69403744} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.57938516, y: 0.39828676, z: -0.52100575, w: 0.48397672} + inSlope: {x: 0.058693048, y: -0.08320891, z: -0.37188148, w: -0.3999097} + outSlope: {x: 0.058693048, y: -0.08320891, z: -0.37188148, w: -0.3999097} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.8000001 + value: {x: 0.55322474, y: 0.4249989, z: -0.5495815, w: 0.4596504} + inSlope: {x: -0.5045204, y: 0.5487268, z: -0.03327909, w: 0.057967953} + outSlope: {x: -0.5045204, y: 0.5487268, z: -0.03327909, w: 0.057967953} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9000001 + value: {x: 0.5227983, y: 0.46198264, z: -0.5506569, w: 0.45829126} + inSlope: {x: -0.035415027, y: 0.11863421, z: 0.015881374, w: -0.059698433} + outSlope: {x: -0.035415027, y: 0.11863421, z: 0.015881374, w: -0.059698433} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.50341934, y: 0.4897917, z: -0.54269993, w: 0.46059725} + inSlope: {x: -0.39750433, y: 0.48844588, z: 0.08022404, w: 0.009099612} + outSlope: {x: -0.39750433, y: 0.48844588, z: 0.08022404, w: 0.009099612} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.4582688, y: 0.5482168, z: -0.5357719, w: 0.449885} + inSlope: {x: -0.3083524, y: 0.37737554, z: 0.098462194, w: -0.028240558} + outSlope: {x: -0.3083524, y: 0.37737554, z: 0.098462194, w: -0.028240558} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.3000002 + value: {x: 0.4384381, y: 0.5718712, z: -0.53626966, w: 0.4394886} + inSlope: {x: 0.05714541, y: -0.07626511, z: -0.12002987, w: -0.10495584} + outSlope: {x: 0.05714541, y: -0.07626511, z: -0.12002987, w: -0.10495584} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.4419173, y: 0.56738853, z: -0.5409734, w: 0.4360357} + inSlope: {x: -0.021336991, y: 0.043617226, z: -0.022790752, w: -0.06380668} + outSlope: {x: -0.021336991, y: 0.043617226, z: -0.022790752, w: -0.06380668} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.4666667 + value: {x: 0.42143983, y: 0.59782356, z: -0.5206233, w: 0.44039392} + inSlope: {x: -0.15220562, y: 0.21828748, z: 0.17582019, w: 0.057842188} + outSlope: {x: -0.15220562, y: 0.21828748, z: 0.17582019, w: 0.057842188} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.4061962, y: 0.62469465, z: -0.49085715, w: 0.45146483} + inSlope: {x: -0.101483256, y: 0.15000448, z: 0.23143329, w: 0.13495323} + outSlope: {x: -0.101483256, y: 0.15000448, z: 0.23143329, w: 0.13495323} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.8000002 + value: {x: 0.39822346, y: 0.6352183, z: -0.46545422, w: 0.47039145} + inSlope: {x: 0.06698421, y: -0.074594095, z: 0.12158555, w: 0.16458228} + outSlope: {x: 0.06698421, y: -0.074594095, z: 0.12158555, w: 0.16458228} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.0666668 + value: {x: 0.38783413, y: 0.65080494, z: -0.4514519, w: 0.4714115} + inSlope: {x: -0.06613931, y: 0.08483119, z: 0.06837136, w: 0.0027090337} + outSlope: {x: -0.06613931, y: 0.08483119, z: 0.06837136, w: 0.0027090337} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.466667 + value: {x: 0.3791624, y: 0.6606971, z: -0.44117278, w: 0.47442785} + inSlope: {x: -0.0515175, y: 0.05029218, z: 0.0102075515, w: -0.019376243} + outSlope: {x: -0.0515175, y: 0.05029218, z: 0.0102075515, w: -0.019376243} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.3837997, y: 0.655258, z: -0.44798878, w: 0.47184828} + inSlope: {x: 0.018864889, y: -0.021153709, z: -0.010134289, w: 0.0044426364} + outSlope: {x: 0.018864889, y: -0.021153709, z: -0.010134289, w: 0.0044426364} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.54177004, y: -0.3007452, z: 0.30427983, w: 0.7234994} + inSlope: {x: -0.12485682, y: 0.012213885, z: 0.04960298, w: 0.07715284} + outSlope: {x: -0.12485682, y: 0.012213885, z: 0.04960298, w: 0.07715284} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.54140854, y: -0.3055317, z: 0.31133404, w: 0.71874774} + inSlope: {x: 0.11401267, y: -0.09720818, z: 0.035382364, w: -0.14209093} + outSlope: {x: 0.11401267, y: -0.09720818, z: 0.035382364, w: -0.14209093} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: 0.5418684, y: -0.3058727, z: 0.31518865, w: 0.7165729} + inSlope: {x: 0.011470022, y: -0.016563984, z: 0.023982974, w: -0.026440324} + outSlope: {x: 0.011470022, y: -0.016563984, z: 0.023982974, w: -0.026440324} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: 0.55923337, y: -0.32600346, z: 0.31085825, w: 0.6959504} + inSlope: {x: 0.79287267, y: -0.41018534, z: -0.3640348, w: -0.68747705} + outSlope: {x: 0.79287267, y: -0.41018534, z: -0.3640348, w: -0.68747705} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.59734905, y: -0.3361659, z: 0.29083613, w: 0.6675185} + inSlope: {x: 1.2451308, y: 0.10249169, z: -0.6542226, w: -0.7850773} + outSlope: {x: 1.2451308, y: 0.10249169, z: -0.6542226, w: -0.7850773} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.6751131, y: -0.29618272, z: 0.25097844, w: 0.6273021} + inSlope: {x: 0.7763597, y: 0.4008849, z: -0.38045776, w: -0.47674012} + outSlope: {x: 0.7763597, y: 0.4008849, z: -0.38045776, w: -0.47674012} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: 0.6939994, y: -0.292445, z: 0.24187955, w: 0.6118292} + inSlope: {x: 0.5990893, y: 0.23905323, z: -0.41161764, w: -0.40711376} + outSlope: {x: 0.5990893, y: 0.23905323, z: -0.41161764, w: -0.40711376} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: 0.74440336, y: -0.27855253, z: 0.19109185, w: 0.5759827} + inSlope: {x: 0.0721764, y: -0.40414822, z: -0.01046598, w: -0.2907378} + outSlope: {x: 0.0721764, y: -0.40414822, z: -0.01046598, w: -0.2907378} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6333334 + value: {x: 0.69615996, y: -0.36288708, z: 0.25604856, w: 0.56401557} + inSlope: {x: -0.831146, y: -0.91848314, z: 0.855188, w: 0.045800537} + outSlope: {x: -0.831146, y: -0.91848314, z: 0.855188, w: 0.045800537} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.6664914, y: -0.39246792, z: 0.28429335, w: 0.5665117} + inSlope: {x: -0.63816124, y: -0.35756665, z: 0.26674134, w: 0.39162907} + outSlope: {x: -0.63816124, y: -0.35756665, z: 0.26674134, w: 0.39162907} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.70000005 + value: {x: 0.6536159, y: -0.38672483, z: 0.27383128, w: 0.5901242} + inSlope: {x: -0.4996447, y: 0.16831219, z: -0.10715318, w: 0.7113925} + outSlope: {x: -0.4996447, y: 0.16831219, z: -0.10715318, w: 0.7113925} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7666667 + value: {x: 0.5952442, y: -0.37287477, z: 0.28291535, w: 0.65315205} + inSlope: {x: -1.4642434, y: 0.26631898, z: 0.121542856, w: 1.3940725} + outSlope: {x: -1.4642434, y: 0.26631898, z: 0.121542856, w: 1.3940725} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.4707997, y: -0.35834035, z: 0.27806455, w: 0.75671655} + inSlope: {x: -1.6528097, y: 0.06350005, z: -0.3925702, w: 1.235112} + outSlope: {x: -1.6528097, y: 0.06350005, z: -0.3925702, w: 1.235112} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.90000004 + value: {x: 0.39189053, y: -0.36302122, z: 0.2391889, w: 0.81081814} + inSlope: {x: -1.172832, y: -0.113563836, z: -0.46485043, w: 0.6475657} + outSlope: {x: -1.172832, y: -0.113563836, z: -0.46485043, w: 0.6475657} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9333334 + value: {x: 0.34718934, y: -0.36683008, z: 0.22809128, w: 0.8323879} + inSlope: {x: -0.9482496, y: -0.13803366, z: -0.17574783, w: 0.4026754} + outSlope: {x: -0.9482496, y: -0.13803366, z: -0.17574783, w: 0.4026754} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.3127564, y: -0.38254294, z: 0.23075502, w: 0.8382103} + inSlope: {x: -0.42784873, y: -0.31093484, z: 0.12201823, w: -0.0151606705} + outSlope: {x: -0.42784873, y: -0.31093484, z: 0.12201823, w: -0.0151606705} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.27307168, y: -0.39348766, z: 0.24570131, w: 0.84275156} + inSlope: {x: -1.1534166, y: 0.23953536, z: 0.40970492, w: 0.34422073} + outSlope: {x: -1.1534166, y: 0.23953536, z: 0.40970492, w: 0.34422073} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1333334 + value: {x: 0.1597977, y: -0.3443163, z: 0.29057097, w: 0.87833905} + inSlope: {x: -2.1115687, y: 1.0790913, z: 0.590972, w: 0.5955528} + outSlope: {x: -2.1115687, y: 1.0790913, z: 0.590972, w: 0.5955528} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.08248489, y: -0.305044, z: 0.30231875, w: 0.89930403} + inSlope: {x: -2.397861, y: 1.3175542, z: 0.44996333, w: 0.5025302} + outSlope: {x: -2.397861, y: 1.3175542, z: 0.44996333, w: 0.5025302} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2 + value: {x: -0.000059551297, y: -0.25647944, z: 0.3205685, w: 0.91184103} + inSlope: {x: -1.1892766, y: 0.41176063, z: 0.2553273, w: 0.10141174} + outSlope: {x: -1.1892766, y: 0.41176063, z: 0.2553273, w: 0.10141174} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2333333 + value: {x: 0.0031998649, y: -0.2775933, z: 0.31934056, w: 0.9060648} + inSlope: {x: 0.5263227, y: -0.8459922, z: -0.13847321, w: -0.2281341} + outSlope: {x: 0.5263227, y: -0.8459922, z: -0.13847321, w: -0.2281341} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666668 + value: {x: 0.03502871, y: -0.312879, z: 0.31133693, w: 0.8966321} + inSlope: {x: 1.1498731, y: -0.991799, z: 0.07497002, w: -0.42606074} + outSlope: {x: 1.1498731, y: -0.991799, z: 0.07497002, w: -0.42606074} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3000001 + value: {x: 0.07985812, y: -0.3437133, z: 0.32433853, w: 0.87766075} + inSlope: {x: 1.7628567, y: -1.1520778, z: 0.24106286, w: -0.7420982} + outSlope: {x: 1.7628567, y: -1.1520778, z: 0.24106286, w: -0.7420982} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.15255238, y: -0.3896841, z: 0.32740778, w: 0.8471589} + inSlope: {x: 2.2427652, y: -1.2219408, z: 0.013567191, w: -0.9712019} + outSlope: {x: 2.2427652, y: -1.2219408, z: 0.013567191, w: -0.9712019} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4000001 + value: {x: 0.2858167, y: -0.43931946, z: 0.32677823, w: 0.7864625} + inSlope: {x: 1.2791293, y: -0.1492244, z: 0.037279613, w: -0.5336269} + outSlope: {x: 1.2791293, y: -0.1492244, z: 0.037279613, w: -0.5336269} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4333334 + value: {x: 0.31465113, y: -0.43512437, z: 0.3277283, w: 0.7773388} + inSlope: {x: 0.98517764, y: 0.68420357, z: -0.48829797, w: 0.15495135} + outSlope: {x: 0.98517764, y: 0.68420357, z: -0.48829797, w: 0.15495135} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4666667 + value: {x: 0.35149515, y: -0.39370593, z: 0.29422507, w: 0.79679257} + inSlope: {x: 0.7754968, y: 1.3800153, z: -1.0810382, w: 0.73369414} + outSlope: {x: 0.7754968, y: 1.3800153, z: -1.0810382, w: 0.73369414} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333334 + value: {x: 0.3667794, y: -0.27811897, z: 0.2226231, w: 0.8593961} + inSlope: {x: -0.19270708, y: 2.0437853, z: -0.947683, w: 0.98224556} + outSlope: {x: -0.19270708, y: 2.0437853, z: -0.947683, w: 0.98224556} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.3535038, y: -0.20687103, z: 0.1924802, w: 0.8917348} + inSlope: {x: -0.24857244, y: 1.9756694, z: -0.9918232, w: 0.7864475} + outSlope: {x: -0.24857244, y: 1.9756694, z: -0.9918232, w: 0.7864475} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6333334 + value: {x: 0.34231415, y: -0.0852567, z: 0.120424636, w: 0.927928} + inSlope: {x: -0.29500258, y: 1.8305504, z: -1.0810084, w: 0.41797885} + outSlope: {x: -0.29500258, y: 1.8305504, z: -1.0810084, w: 0.41797885} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7 + value: {x: 0.3081993, y: 0.029404638, z: 0.05077679, w: 0.9495106} + inSlope: {x: -0.7151925, y: 1.5926065, z: -0.9044546, w: 0.23504993} + outSlope: {x: -0.7151925, y: 1.5926065, z: -0.9044546, w: 0.23504993} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7666668 + value: {x: 0.27212965, y: 0.14032795, z: 0.012118489, w: 0.95189637} + inSlope: {x: -0.023401394, y: 1.9217297, z: 0.03171444, w: -0.29026714} + outSlope: {x: -0.023401394, y: 1.9217297, z: 0.03171444, w: -0.29026714} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.29907736, y: 0.2860019, z: 0.06682263, w: 0.9079044} + inSlope: {x: 0.496979, y: 2.2711437, z: 1.2993654, w: -0.98211026} + outSlope: {x: 0.496979, y: 2.2711437, z: 1.2993654, w: -0.98211026} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9000001 + value: {x: 0.33379525, y: 0.42198217, z: 0.14117026, w: 0.8310131} + inSlope: {x: 0.5329505, y: 1.3672122, z: 0.54510194, w: -0.95975786} + outSlope: {x: 0.5329505, y: 1.3672122, z: 0.54510194, w: -0.95975786} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9666668 + value: {x: 0.35761806, y: 0.45109582, z: 0.16779147, w: 0.8002924} + inSlope: {x: 0.4001584, y: -0.44739032, z: 0.95931745, w: -0.15402588} + outSlope: {x: 0.4001584, y: -0.44739032, z: 0.95931745, w: -0.15402588} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.0333335 + value: {x: 0.41369402, y: 0.3732299, z: 0.25601378, w: 0.7899454} + inSlope: {x: 1.148001, y: -1.6294346, z: 0.7474149, w: -0.068115875} + outSlope: {x: 1.148001, y: -1.6294346, z: 0.7474149, w: -0.068115875} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.1000001 + value: {x: 0.48247087, y: 0.26043192, z: 0.24725097, w: 0.7989143} + inSlope: {x: 0.7010872, y: -1.3989468, z: -0.4018094, w: 0.17584848} + outSlope: {x: 0.7010872, y: -1.3989468, z: -0.4018094, w: 0.17584848} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.5152796, y: 0.19161077, z: 0.23761548, w: 0.80081904} + inSlope: {x: 0.4742548, y: -0.7579838, z: 0.041195415, w: -0.1329} + outSlope: {x: 0.4742548, y: -0.7579838, z: 0.041195415, w: -0.1329} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.266667 + value: {x: 0.56145614, y: 0.13998245, z: 0.21243045, w: 0.7874295} + inSlope: {x: 0.34710532, y: -0.3515822, z: -0.66485095, w: -0.0070790425} + outSlope: {x: 0.34710532, y: -0.3515822, z: -0.66485095, w: -0.0070790425} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.5757264, y: 0.1227352, z: 0.15633418, w: 0.79311717} + inSlope: {x: 0.30106574, y: -0.29928955, z: -0.668313, w: -0.037087835} + outSlope: {x: 0.30106574, y: -0.29928955, z: -0.668313, w: -0.037087835} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.4333334 + value: {x: 0.6189172, y: 0.07122879, z: 0.12502158, w: 0.7721642} + inSlope: {x: 0.37155426, y: -0.7186457, z: -0.17881656, w: -0.20358075} + outSlope: {x: 0.37155426, y: -0.7186457, z: -0.17881656, w: -0.20358075} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.6000001 + value: {x: 0.66012746, y: -0.038018283, z: 0.056851417, w: 0.74803364} + inSlope: {x: 0.079809204, y: -0.33861944, z: -0.6753229, w: -0.035058293} + outSlope: {x: 0.079809204, y: -0.33861944, z: -0.6753229, w: -0.035058293} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.7 + value: {x: 0.6591057, y: -0.05950797, z: 0.01153918, w: 0.7496035} + inSlope: {x: 0.03291857, y: -0.21862495, z: -0.022896234, w: -0.046046153} + outSlope: {x: 0.03291857, y: -0.21862495, z: -0.022896234, w: -0.046046153} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.8000002 + value: {x: 0.6612557, y: -0.084330216, z: 0.026601376, w: 0.7449306} + inSlope: {x: -0.0045687007, y: -0.15870993, z: 0.058253475, w: -0.015133932} + outSlope: {x: -0.0045687007, y: -0.15870993, z: 0.058253475, w: -0.015133932} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.9 + value: {x: 0.67579, y: -0.08391937, z: 0.031236073, w: 0.731635} + inSlope: {x: 0.279794, y: 0.13647607, z: 0.15941615, w: -0.25032365} + outSlope: {x: 0.279794, y: 0.13647607, z: 0.15941615, w: -0.25032365} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.966667 + value: {x: 0.6907871, y: -0.08191401, z: 0.053283498, w: 0.7164246} + inSlope: {x: 0.13420923, y: -0.10280143, z: 0.48510572, w: -0.17701095} + outSlope: {x: 0.13420923, y: -0.10280143, z: 0.48510572, w: -0.17701095} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.2000003 + value: {x: 0.6901072, y: -0.057808302, z: 0.13957512, w: 0.7077634} + inSlope: {x: -0.10691258, y: 0.22220051, z: 0.008031409, w: 0.12081982} + outSlope: {x: -0.10691258, y: 0.22220051, z: 0.008031409, w: 0.12081982} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.466667 + value: {x: 0.65585893, y: 0.0053942055, z: 0.14688107, w: 0.7404363} + inSlope: {x: -0.2039314, y: 0.29441243, z: 0.17986917, w: 0.14271459} + outSlope: {x: -0.2039314, y: 0.29441243, z: 0.17986917, w: 0.14271459} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.6333334 + value: {x: 0.630497, y: 0.041655805, z: 0.14759047, w: 0.7608912} + inSlope: {x: -0.08381285, y: 0.13166496, z: -0.19307005, w: 0.09966472} + outSlope: {x: -0.08381285, y: 0.13166496, z: -0.19307005, w: 0.09966472} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.6104931, y: 0.06412422, z: 0.11096975, w: 0.781583} + inSlope: {x: -0.059160646, y: 0.03993299, z: -0.09551445, w: 0.05686825} + outSlope: {x: -0.059160646, y: 0.03993299, z: -0.09551445, w: 0.05686825} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.018203784, y: 0.006359515, z: 0.2876728, w: 0.9575346} + inSlope: {x: 0.002441704, y: -0.00127736, z: 0.030781029, w: -0.009303688} + outSlope: {x: 0.002441704, y: -0.00127736, z: 0.030781029, w: -0.009303688} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: 0.017420055, y: 0.0047748704, z: 0.26673296, w: 0.9636012} + inSlope: {x: -0.00022368509, y: -0.007169741, z: -0.04354075, w: 0.01205653} + outSlope: {x: -0.00022368509, y: -0.007169741, z: -0.04354075, w: 0.01205653} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.01738607, y: 0.0044549485, z: 0.26454103, w: 0.9642075} + inSlope: {x: -0.0059092143, y: -0.016532708, z: -0.16608642, w: 0.04512817} + outSlope: {x: -0.0059092143, y: -0.016532708, z: -0.16608642, w: 0.04512817} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: 0.017026108, y: 0.00367269, z: 0.25566053, w: 0.9666097} + inSlope: {x: 0.022765921, y: -0.01394402, z: 0.28145224, w: -0.08055389} + outSlope: {x: 0.022765921, y: -0.01394402, z: 0.28145224, w: -0.08055389} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.018903797, y: 0.0035253472, z: 0.2833045, w: 0.9588372} + inSlope: {x: 0.08248408, y: 0.014612686, z: 1.3360231, w: -0.42283776} + outSlope: {x: 0.08248408, y: 0.014612686, z: 1.3360231, w: -0.42283776} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.025540851, y: 0.004758189, z: 0.39260206, w: 0.91934144} + inSlope: {x: 0.061907753, y: 0.0015880689, z: 0.97957253, w: -0.4012797} + outSlope: {x: 0.061907753, y: 0.0015880689, z: 0.97957253, w: -0.4012797} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: 0.026652232, y: 0.0047527403, z: 0.4100336, w: 0.91166854} + inSlope: {x: 0.04287696, y: 0.00041432452, z: 0.67963517, w: -0.3117675} + outSlope: {x: 0.04287696, y: 0.00041432452, z: 0.67963517, w: -0.3117675} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.029437019, y: 0.004894896, z: 0.45541903, w: 0.889777} + inSlope: {x: 0.02499705, y: 0.0034523034, z: 0.4321223, w: -0.22015218} + outSlope: {x: 0.02499705, y: 0.0034523034, z: 0.4321223, w: -0.22015218} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: 0.030065784, y: 0.005015964, z: 0.4667192, w: 0.88388014} + inSlope: {x: -0.023114756, y: 0.005555486, z: -0.31312346, w: 0.15639053} + outSlope: {x: -0.023114756, y: 0.005555486, z: -0.31312346, w: 0.15639053} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.024676768, y: 0.00561416, z: 0.38633373, w: 0.9220118} + inSlope: {x: -0.10939791, y: 0.01141296, z: -1.6487646, w: 0.6809351} + outSlope: {x: -0.10939791, y: 0.01141296, z: -1.6487646, w: 0.6809351} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6333334 + value: {x: 0.020602839, y: 0.006026126, z: 0.32462648, w: 0.9455987} + inSlope: {x: -0.12430656, y: 0.012314156, z: -1.8916378, w: 0.6506368} + outSlope: {x: -0.12430656, y: 0.012314156, z: -1.8916378, w: 0.6506368} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.016389664, y: 0.0064351037, z: 0.26022455, w: 0.9653876} + inSlope: {x: -0.015714377, y: 0.03763392, z: -0.028119266, w: 0.0096654} + outSlope: {x: -0.015714377, y: 0.03763392, z: -0.028119266, w: 0.0096654} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.70000005 + value: {x: 0.01955522, y: 0.008535055, z: 0.32275197, w: 0.94624305} + inSlope: {x: 0.064995795, y: 0.049303487, z: 1.3482857, w: -0.43438184} + outSlope: {x: 0.064995795, y: 0.049303487, z: 1.3482857, w: -0.43438184} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.020722719, y: 0.009722004, z: 0.3501103, w: 0.9364288} + inSlope: {x: 0.044850804, y: 0.025275486, z: 0.9371763, w: -0.3563198} + outSlope: {x: 0.044850804, y: 0.025275486, z: 0.9371763, w: -0.3563198} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.86666673 + value: {x: 0.0332553, y: 0.0008193357, z: 0.48123652, w: 0.8759594} + inSlope: {x: 0.13559602, y: -0.18039751, z: 0.49074847, w: -0.27137154} + outSlope: {x: 0.13559602, y: -0.18039751, z: 0.49074847, w: -0.27137154} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9666667 + value: {x: 0.046305776, y: -0.021521095, z: 0.48322907, w: 0.8740036} + inSlope: {x: 0.08684045, y: -0.24521732, z: -0.53144896, w: 0.28055307} + outSlope: {x: 0.08684045, y: -0.24521732, z: -0.53144896, w: 0.28055307} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.04890294, y: -0.04505932, z: 0.40048248, w: 0.91388834} + inSlope: {x: -0.052558273, y: -0.19471431, z: -1.1107575, w: 0.47511354} + outSlope: {x: -0.052558273, y: -0.19471431, z: -1.1107575, w: 0.47511354} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.04607419, y: -0.05080064, z: 0.35972977, w: 0.93053263} + inSlope: {x: -0.18397617, y: -0.05180961, z: -1.5908005, w: 0.5977403} + outSlope: {x: -0.18397617, y: -0.05180961, z: -1.5908005, w: 0.5977403} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1333334 + value: {x: 0.03663784, y: -0.048513282, z: 0.29442897, w: 0.95373774} + inSlope: {x: -0.55208254, y: 1.3316183, z: -1.2213259, w: 0.43745315} + outSlope: {x: -0.55208254, y: 1.3316183, z: -1.2213259, w: 0.43745315} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.009268688, y: 0.037973836, z: 0.27830788, w: 0.95969623} + inSlope: {x: -0.1530504, y: 0.30311173, z: -0.5296371, w: 0.16995922} + outSlope: {x: -0.1530504, y: 0.30311173, z: -0.5296371, w: 0.16995922} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2 + value: {x: 0.02643449, y: -0.028305849, z: 0.25911987, w: 0.96506834} + inSlope: {x: 0.2313219, y: -0.93829584, z: -0.372392, w: 0.10524551} + outSlope: {x: 0.2313219, y: -0.93829584, z: -0.372392, w: 0.10524551} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2333333 + value: {x: 0.024690134, y: -0.024579158, z: 0.25348178, w: 0.9667126} + inSlope: {x: -0.03590754, y: 0.09688781, z: -0.05203815, w: 0.01732443} + outSlope: {x: -0.03590754, y: 0.09688781, z: -0.05203815, w: 0.01732443} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666668 + value: {x: 0.024040654, y: -0.021846658, z: 0.25565067, w: 0.9662233} + inSlope: {x: -0.0706255, y: 0.11578517, z: -0.40375185, w: 0.10398758} + outSlope: {x: -0.0706255, y: 0.11578517, z: -0.40375185, w: 0.10398758} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3000001 + value: {x: 0.01998177, y: -0.016860144, z: 0.22656502, w: 0.9736451} + inSlope: {x: -0.0863899, y: 0.111945644, z: -0.6192404, w: 0.15378997} + outSlope: {x: -0.0863899, y: 0.111945644, z: -0.6192404, w: 0.15378997} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.018281333, y: -0.0143836215, z: 0.21436802, w: 0.97647595} + inSlope: {x: -0.004605431, y: 0.041529294, z: 0.07748191, w: -0.017491382} + outSlope: {x: -0.004605431, y: 0.041529294, z: 0.07748191, w: -0.017491382} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4000001 + value: {x: 0.021314818, y: -0.013605843, z: 0.25251862, w: 0.96726155} + inSlope: {x: 0.039814778, y: 0.020532763, z: 0.53482693, w: -0.13848259} + outSlope: {x: 0.039814778, y: 0.020532763, z: 0.53482693, w: -0.13848259} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4333334 + value: {x: 0.022329062, y: -0.012722677, z: 0.26738563, w: 0.9632468} + inSlope: {x: 0.101517245, y: 0.030583385, z: 1.3153207, w: -0.4110212} + outSlope: {x: 0.101517245, y: 0.030583385, z: 1.3153207, w: -0.4110212} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4666667 + value: {x: 0.028082628, y: -0.011566953, z: 0.3402066, w: 0.93986017} + inSlope: {x: 0.17957082, y: 0.043875426, z: 2.3429923, w: -0.87139773} + outSlope: {x: 0.17957082, y: 0.043875426, z: 2.3429923, w: -0.87139773} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5000001 + value: {x: 0.03430046, y: -0.009797645, z: 0.42358527, w: 0.9051536} + inSlope: {x: 0.15804568, y: 0.046216004, z: 2.156225, w: -0.98491514} + outSlope: {x: 0.15804568, y: 0.046216004, z: 2.156225, w: -0.98491514} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6000001 + value: {x: 0.043766726, y: -0.006838506, z: 0.55931425, w: 0.82777125} + inSlope: {x: 0.05100885, y: 0.017223338, z: 0.7710117, w: -0.51767206} + outSlope: {x: 0.05100885, y: 0.017223338, z: 0.7710117, w: -0.51767206} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7 + value: {x: 0.047039207, y: -0.005696125, z: 0.61052805, w: 0.79057604} + inSlope: {x: 0.027273634, y: 0.008177765, z: 0.42294568, w: -0.3266741} + outSlope: {x: 0.027273634, y: 0.008177765, z: 0.42294568, w: -0.3266741} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.047900032, y: -0.0065831784, z: 0.61147165, w: 0.78978777} + inSlope: {x: -0.022246046, y: -0.030429281, z: -0.5862971, w: 0.45030212} + outSlope: {x: -0.022246046, y: -0.030429281, z: -0.5862971, w: 0.45030212} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9333334 + value: {x: 0.0445104, y: -0.01059244, z: 0.5345293, w: 0.8439106} + inSlope: {x: -0.061685473, y: -0.017230429, z: -0.84245867, w: 0.5338851} + outSlope: {x: -0.061685473, y: -0.017230429, z: -0.84245867, w: 0.5338851} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.037041992, y: -0.010091607, z: 0.4527268, w: 0.8908224} + inSlope: {x: -0.16408646, y: 0.02335234, z: -1.7760319, w: 0.8927464} + outSlope: {x: -0.16408646, y: 0.02335234, z: -1.7760319, w: 0.8927464} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.0666668 + value: {x: 0.025951615, y: -0.0070705013, z: 0.33544123, w: 0.9416771} + inSlope: {x: -0.10982899, y: 0.066088684, z: -1.0317838, w: 0.39145535} + outSlope: {x: -0.10982899, y: 0.066088684, z: -1.0317838, w: 0.39145535} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.022793187, y: -0.0002967465, z: 0.328877, w: 0.94409764} + inSlope: {x: 0.0011047919, y: 0.05494409, z: 0.30745387, w: -0.10790895} + outSlope: {x: 0.0011047919, y: 0.05494409, z: 0.30745387, w: -0.10790895} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.3000002 + value: {x: 0.02605134, y: 0.005276938, z: 0.41128102, w: 0.91112095} + inSlope: {x: 0.04674662, y: 0.026520774, z: 0.92246485, w: -0.41968477} + outSlope: {x: 0.04674662, y: 0.026520774, z: 0.92246485, w: -0.41968477} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.027709385, y: 0.0060260333, z: 0.44325987, w: 0.89594454} + inSlope: {x: 0.03222476, y: 0.024278458, z: 0.70579, w: -0.34222427} + outSlope: {x: 0.03222476, y: 0.024278458, z: 0.70579, w: -0.34222427} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.5000002 + value: {x: 0.029105501, y: 0.009080739, z: 0.49549353, w: 0.8680764} + inSlope: {x: 0.01937199, y: 0.008214184, z: 0.44088846, w: -0.25345477} + outSlope: {x: 0.01937199, y: 0.008214184, z: 0.44088846, w: -0.25345477} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.6333334 + value: {x: 0.033027858, y: 0.0094083315, z: 0.572447, w: 0.8192222} + inSlope: {x: 0.029561827, y: 0.0026305371, z: 0.61591715, w: -0.42941046} + outSlope: {x: 0.029561827, y: 0.0026305371, z: 0.61591715, w: -0.42941046} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.7333336 + value: {x: 0.033122454, y: 0.011032466, z: 0.6002843, w: 0.7990244} + inSlope: {x: -0.02920356, y: 0.03236714, z: -0.08442707, w: 0.0637204} + outSlope: {x: -0.02920356, y: 0.03236714, z: -0.08442707, w: 0.0637204} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.03036028, y: 0.013943662, z: 0.5874229, w: 0.80859023} + inSlope: {x: -0.010971, y: 0.012296418, z: -0.06661273, w: 0.04848366} + outSlope: {x: -0.010971, y: 0.012296418, z: -0.06661273, w: 0.04848366} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.966667 + value: {x: 0.026826518, y: 0.017058356, z: 0.5514347, w: 0.8336121} + inSlope: {x: -0.04316959, y: 0.033400092, z: -0.5208738, w: 0.34549886} + outSlope: {x: -0.04316959, y: 0.033400092, z: -0.5208738, w: 0.34549886} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.02302526, y: 0.019348728, z: 0.49444276, w: 0.8686897} + inSlope: {x: 0.018380048, y: -0.023930393, z: 0.1300812, w: -0.07442829} + outSlope: {x: 0.018380048, y: -0.023930393, z: 0.1300812, w: -0.07442829} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.3666668 + value: {x: 0.029823674, y: 0.011518529, z: 0.5415687, w: 0.8400484} + inSlope: {x: 0.035722785, y: -0.042160243, z: 0.17408091, w: -0.112829015} + outSlope: {x: 0.035722785, y: -0.042160243, z: 0.17408091, w: -0.112829015} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.039215427, y: 0.0003820143, z: 0.5727644, w: 0.8187814} + inSlope: {x: 0.036877926, y: -0.034955412, z: 0.17343831, w: -0.12313093} + outSlope: {x: 0.036877926, y: -0.034955412, z: 0.17343831, w: -0.12313093} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.045552753, y: -0.0058512674, z: 0.59615684, w: 0.80155337} + inSlope: {x: 0.02011748, y: -0.02369488, z: 0.027582075, w: -0.021783134} + outSlope: {x: 0.02011748, y: -0.02369488, z: 0.027582075, w: -0.021783134} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.15575597, y: 0.41298208, z: -0.019452369, w: 0.89711064} + inSlope: {x: -0.028877107, y: -0.13617754, z: -0.019316541, w: 0.056828853} + outSlope: {x: -0.028877107, y: -0.13617754, z: -0.019316541, w: 0.056828853} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: -0.16115396, y: 0.405061, z: -0.010207861, w: 0.89991707} + inSlope: {x: -0.027833734, y: 0.022178294, z: 0.1513102, w: -0.013116003} + outSlope: {x: -0.027833734, y: 0.022178294, z: 0.1513102, w: -0.013116003} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: -0.16211103, y: 0.39742947, z: -0.0049174153, w: 0.9031864} + inSlope: {x: 0.032859523, y: -0.07191718, z: 0.028168967, w: 0.037863854} + outSlope: {x: 0.032859523, y: -0.07191718, z: 0.028168967, w: 0.037863854} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: -0.15251538, y: 0.41468003, z: 0.009716157, w: 0.89704245} + inSlope: {x: 0.26954302, y: 0.6046236, z: 0.40289283, w: -0.24153027} + outSlope: {x: 0.26954302, y: 0.6046236, z: 0.40289283, w: -0.24153027} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.1419896, y: 0.4379513, z: 0.024248362, w: 0.8873836} + inSlope: {x: 0.22498417, y: 0.2992465, z: 0.49563354, w: -0.1203257} + outSlope: {x: 0.22498417, y: 0.2992465, z: 0.49563354, w: -0.1203257} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: -0.14076604, y: 0.40570647, z: 0.07645218, w: 0.8998568} + inSlope: {x: -0.08639816, y: -0.98263144, z: 1.1031379, w: 0.32783377} + outSlope: {x: -0.08639816, y: -0.98263144, z: 1.1031379, w: 0.32783377} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: -0.14327632, y: 0.36912102, z: 0.11630094, w: 0.91087633} + inSlope: {x: -0.36385173, y: -1.0078571, z: 1.1304317, w: 0.2099392} + outSlope: {x: -0.36385173, y: -1.0078571, z: 1.1304317, w: 0.2099392} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.18375932, y: 0.31635758, z: 0.18362662, w: 0.91237694} + inSlope: {x: -0.5253681, y: -0.41200545, z: 0.77160716, w: -0.10884399} + outSlope: {x: -0.5253681, y: -0.41200545, z: 0.77160716, w: -0.10884399} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: -0.20004736, y: 0.31104898, z: 0.20325474, w: 0.9065965} + inSlope: {x: -1.1418813, y: 0.61587495, z: -0.0034224987, w: -0.5139895} + outSlope: {x: -1.1418813, y: 0.61587495, z: -0.0034224987, w: -0.5139895} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5666667 + value: {x: -0.2598848, y: 0.35741594, z: 0.18339846, w: 0.87811095} + inSlope: {x: -1.9617217, y: 1.5513587, z: -0.51643944, w: -1.1366417} + outSlope: {x: -1.9617217, y: 1.5513587, z: -0.51643944, w: -1.1366417} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.3308288, y: 0.41447288, z: 0.16882545, w: 0.8308204} + inSlope: {x: -2.023142, y: 1.6115639, z: -0.1837975, w: -1.5644913} + outSlope: {x: -2.023142, y: 1.6115639, z: -0.1837975, w: -1.5644913} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6333334 + value: {x: -0.39476094, y: 0.46485353, z: 0.1711453, w: 0.7738115} + inSlope: {x: -1.6775674, y: 1.1912715, z: 0.28103313, w: -1.5944061} + outSlope: {x: -1.6775674, y: 1.1912715, z: 0.28103313, w: -1.5944061} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.44266662, y: 0.493891, z: 0.18756098, w: 0.72452664} + inSlope: {x: -0.86136335, y: 0.7412206, z: -0.07588096, w: -0.96380764} + outSlope: {x: -0.86136335, y: 0.7412206, z: -0.07588096, w: -0.96380764} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.70000005 + value: {x: -0.45218512, y: 0.5142682, z: 0.16608654, w: 0.7095577} + inSlope: {x: -0.2633232, y: 0.13422982, z: -0.44827586, w: -0.150646} + outSlope: {x: -0.2633232, y: 0.13422982, z: -0.44827586, w: -0.150646} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.4602215, y: 0.5028397, z: 0.1576759, w: 0.71448356} + inSlope: {x: -0.06766335, y: -0.3167305, z: -0.39246386, w: 0.26289037} + outSlope: {x: -0.06766335, y: -0.3167305, z: -0.39246386, w: 0.26289037} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.41413102, y: 0.48588502, z: 0.100493684, w: 0.76309395} + inSlope: {x: 0.81219125, y: -0.059285317, z: -0.30381882, w: 0.5215574} + outSlope: {x: 0.81219125, y: -0.059285317, z: -0.30381882, w: 0.5215574} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.90000004 + value: {x: -0.36618754, y: 0.47716466, z: 0.096080996, w: 0.79308826} + inSlope: {x: 0.5225427, y: -0.30842042, z: -0.065822706, w: 0.43504626} + outSlope: {x: 0.5225427, y: -0.30842042, z: -0.065822706, w: 0.43504626} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9666667 + value: {x: -0.34801504, y: 0.4443496, z: 0.09991967, w: 0.8194236} + inSlope: {x: 0.094678044, y: -0.5309621, z: 0.30379054, w: 0.29170036} + outSlope: {x: 0.094678044, y: -0.5309621, z: 0.30379054, w: 0.29170036} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.36173505, y: 0.3791652, z: 0.13658904, w: 0.84066933} + inSlope: {x: -0.5070542, y: -1.1299161, z: 0.16966486, w: 0.25173092} + outSlope: {x: -0.5070542, y: -1.1299161, z: 0.16966486, w: 0.25173092} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.38274565, y: 0.3340251, z: 0.13881059, w: 0.8500969} + inSlope: {x: -0.6709486, y: -1.6118226, z: 0.11937666, w: 0.2940208} + outSlope: {x: -0.6709486, y: -1.6118226, z: 0.11937666, w: 0.2940208} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1333334 + value: {x: -0.406465, y: 0.27171025, z: 0.14454749, w: 0.86027074} + inSlope: {x: 0.4495837, y: -3.6397629, z: -1.7392149, w: 1.2128856} + outSlope: {x: 0.4495837, y: -3.6397629, z: -1.7392149, w: 1.2128856} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.35277352, y: 0.09137426, z: 0.022863062, w: 0.9309559} + inSlope: {x: 2.2632587, y: -3.3170943, z: -2.745933, w: 1.566374} + outSlope: {x: 2.2632587, y: -3.3170943, z: -2.745933, w: 1.566374} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2 + value: {x: -0.25558123, y: 0.050570834, z: -0.038514532, w: 0.9646956} + inSlope: {x: 2.6916697, y: -0.09816378, z: -0.97344303, w: 0.74020904} + outSlope: {x: 2.6916697, y: -0.09816378, z: -0.97344303, w: 0.74020904} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2333333 + value: {x: -0.17332904, y: 0.084830016, z: -0.042033076, w: 0.9803031} + inSlope: {x: 2.2487268, y: 1.1063933, z: 0.08447236, w: 0.32032192} + outSlope: {x: 2.2487268, y: 1.1063933, z: 0.08447236, w: 0.32032192} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666668 + value: {x: -0.105666004, y: 0.12433045, z: -0.032883015, w: 0.98605037} + inSlope: {x: 1.6529629, y: 1.0779309, z: 0.61568236, w: 0.07986165} + outSlope: {x: 1.6529629, y: 1.0779309, z: 0.61568236, w: 0.07986165} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3000001 + value: {x: -0.06313137, y: 0.15669215, z: -0.0009875918, w: 0.98562723} + inSlope: {x: 0.6889994, y: 1.001507, z: 0.8513218, w: -0.09884039} + outSlope: {x: 0.6889994, y: 1.001507, z: 0.8513218, w: -0.09884039} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4000001 + value: {x: -0.10493567, y: 0.2640264, z: 0.043499205, w: 0.9578029} + inSlope: {x: -0.50058407, y: 1.0841314, z: 0.36837208, w: -0.36710447} + outSlope: {x: -0.50058407, y: 1.0841314, z: 0.36837208, w: -0.36710447} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4333334 + value: {x: -0.114283584, y: 0.29979673, z: 0.05799236, w: 0.9453561} + inSlope: {x: -0.16687189, y: 0.87696874, z: 0.2951334, w: -0.30748516} + outSlope: {x: -0.16687189, y: 0.87696874, z: 0.2951334, w: -0.30748516} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4666667 + value: {x: -0.11606045, y: 0.32249093, z: 0.06317475, w: 0.9373039} + inSlope: {x: 0.5195392, y: 0.91491956, z: 0.012190387, w: -0.2696878} + outSlope: {x: 0.5195392, y: 0.91491956, z: 0.012190387, w: -0.2696878} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5000001 + value: {x: -0.07964754, y: 0.36079144, z: 0.058805037, w: 0.92737687} + inSlope: {x: 0.77547765, y: 1.1338524, z: -0.49503064, w: -0.3406779} + outSlope: {x: 0.77547765, y: 1.1338524, z: -0.49503064, w: -0.3406779} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333334 + value: {x: -0.06436186, y: 0.39808115, z: 0.03017272, w: 0.914592} + inSlope: {x: 0.45578235, y: 0.40754414, z: -0.8015382, w: -0.105512835} + outSlope: {x: 0.45578235, y: 0.40754414, z: -0.8015382, w: -0.105512835} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.04926208, y: 0.38796103, z: 0.0053692046, w: 0.9203427} + inSlope: {x: 0.39522433, y: -0.37558037, z: -0.25640368, w: 0.18526357} + outSlope: {x: 0.39522433, y: -0.37558037, z: -0.25640368, w: 0.18526357} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6000001 + value: {x: -0.03801356, y: 0.37304243, z: 0.013079184, w: 0.92694294} + inSlope: {x: -0.027771935, y: -0.6508401, z: 0.46758956, w: 0.2446844} + outSlope: {x: -0.027771935, y: -0.6508401, z: 0.46758956, w: 0.2446844} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.071157746, y: 0.3074131, z: 0.06140604, w: 0.94692296} + inSlope: {x: -0.37710688, y: -1.2268744, z: 0.47149715, w: 0.34166816} + outSlope: {x: -0.37710688, y: -1.2268744, z: 0.47149715, w: 0.34166816} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7333335 + value: {x: -0.061799783, y: 0.21873468, z: 0.05907508, w: 0.97203195} + inSlope: {x: 0.58337146, y: -1.2214653, z: -0.41343278, w: 0.33666962} + outSlope: {x: 0.58337146, y: -1.2214653, z: -0.41343278, w: 0.33666962} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.8000001 + value: {x: -0.029640896, y: 0.14675969, z: 0.024573622, w: 0.9884226} + inSlope: {x: -0.061938018, y: -1.1123486, z: -0.39658493, w: 0.17094539} + outSlope: {x: -0.061938018, y: -1.1123486, z: -0.39658493, w: 0.17094539} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9000001 + value: {x: -0.07708966, y: 0.017834803, z: 0.012158615, w: 0.99679047} + inSlope: {x: -0.18105935, y: -1.1586, z: 0.24418147, w: 0.008846828} + outSlope: {x: -0.18105935, y: -1.1586, z: 0.24418147, w: 0.008846828} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9666668 + value: {x: -0.054601047, y: -0.051156793, z: 0.049365435, w: 0.9959743} + inSlope: {x: 0.59825397, y: -0.86310804, z: 0.8847331, w: -0.055409234} + outSlope: {x: 0.59825397, y: -0.86310804, z: 0.8847331, w: -0.055409234} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.0333335 + value: {x: -0.009025655, y: -0.06908724, z: 0.11688356, w: 0.9906986} + inSlope: {x: 0.88535404, y: 0.615377, z: 0.7872993, w: -0.049845964} + outSlope: {x: 0.88535404, y: 0.615377, z: 0.7872993, w: -0.049845964} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.1000001 + value: {x: 0.051904723, y: 0.009258092, z: 0.13961853, w: 0.98880076} + inSlope: {x: 0.6025202, y: 1.047408, z: -0.0019425899, w: -0.02877387} + outSlope: {x: 0.6025202, y: 1.047408, z: -0.0019425899, w: -0.02877387} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.2333333 + value: {x: 0.06384397, y: 0.0718547, z: 0.1277902, w: 0.9871325} + inSlope: {x: -0.17757067, y: 0.33374578, z: -0.06170076, w: -0.0051033334} + outSlope: {x: -0.17757067, y: 0.33374578, z: -0.06170076, w: -0.0051033334} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.3666668 + value: {x: 0.002715115, y: 0.09614676, z: 0.14990427, w: 0.98401076} + inSlope: {x: -0.6780623, y: -0.031965926, z: 0.53943187, w: -0.0784225} + outSlope: {x: -0.6780623, y: -0.031965926, z: 0.53943187, w: -0.0784225} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.5000002 + value: {x: -0.07277846, y: 0.078044325, z: 0.2175176, w: 0.9702054} + inSlope: {x: -0.3077034, y: -0.072925285, z: 0.2112922, w: -0.06327041} + outSlope: {x: -0.3077034, y: -0.072925285, z: 0.2112922, w: -0.06327041} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.6333334 + value: {x: -0.10345973, y: 0.08825886, z: 0.20900442, w: 0.96841294} + inSlope: {x: -0.20409574, y: 0.068549395, z: -0.35912153, w: 0.04920338} + outSlope: {x: -0.20409574, y: 0.068549395, z: -0.35912153, w: 0.04920338} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.121307634, y: 0.1181891, z: 0.14663674, w: 0.97458375} + inSlope: {x: 0.07319006, y: 0.41384614, z: -0.22183141, w: -0.008235284} + outSlope: {x: 0.07319006, y: 0.41384614, z: -0.22183141, w: -0.008235284} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.9333334 + value: {x: -0.10433534, y: 0.17225228, z: 0.14675678, w: 0.9684554} + inSlope: {x: 0.32387394, y: 0.3270952, z: 0.15848292, w: -0.045801446} + outSlope: {x: 0.32387394, y: 0.3270952, z: 0.15848292, w: -0.045801446} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.0333335 + value: {x: -0.06612309, y: 0.1718269, z: 0.16257943, w: 0.9693664} + inSlope: {x: 0.3238685, y: -0.10836895, z: 0.10394598, w: 0.023990594} + outSlope: {x: 0.3238685, y: -0.10836895, z: 0.10394598, w: 0.023990594} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.266667 + value: {x: 0.0039100903, y: 0.1266633, z: 0.1360937, w: 0.9825577} + inSlope: {x: 0.33971336, y: -0.20606661, z: -0.20543885, w: 0.053747945} + outSlope: {x: 0.33971336, y: -0.20606661, z: -0.20543885, w: 0.053747945} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.5000002 + value: {x: 0.052693445, y: 0.053745475, z: 0.10521857, w: 0.99159664} + inSlope: {x: 0.069762535, y: -0.3882704, z: -0.042236, w: 0.02212914} + outSlope: {x: 0.069762535, y: -0.3882704, z: -0.042236, w: 0.02212914} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.766667 + value: {x: 0.07132439, y: 0.0058309464, z: 0.089297004, w: 0.99343085} + inSlope: {x: -0.07553007, y: -0.10971333, z: 0.03329038, w: 0.003069344} + outSlope: {x: -0.07553007, y: -0.10971333, z: 0.03329038, w: 0.003069344} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.069458716, y: 0.00021178124, z: 0.09151107, w: 0.99337864} + inSlope: {x: 0.022912346, y: -0.062102403, z: 0.02574789, w: -0.0038766898} + outSlope: {x: 0.022912346, y: -0.062102403, z: 0.02574789, w: -0.0038766898} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.4656671, y: 0.17777519, z: 0.34557965, w: 0.7950628} + inSlope: {x: -0.0000026822088, y: 0.0000004470348, z: -0.0000026822088, w: 0.0000035762785} + outSlope: {x: -0.0000026822088, y: 0.0000004470348, z: -0.0000026822088, w: 0.0000035762785} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: 0.46566704, y: 0.17777511, z: 0.34557956, w: 0.7950629} + inSlope: {x: -0.03529385, y: -0.007561371, z: -0.009569676, w: 0.026434066} + outSlope: {x: -0.03529385, y: -0.007561371, z: -0.009569676, w: 0.026434066} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: 0.45397645, y: 0.17505136, z: 0.34228784, w: 0.80380434} + inSlope: {x: -0.59989846, y: -0.15025458, z: -0.17317627, w: 0.43213937} + outSlope: {x: -0.59989846, y: -0.15025458, z: -0.17317627, w: 0.43213937} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: 0.33176655, y: 0.1385358, z: 0.30553323, w: 0.8816963} + inSlope: {x: -1.4147842, y: -0.5317052, z: -0.44540828, w: 0.7735262} + outSlope: {x: -1.4147842, y: -0.5317052, z: -0.44540828, w: 0.7735262} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: 0.2514085, y: 0.09898067, z: 0.27860454, w: 0.9216161} + inSlope: {x: -0.72692406, y: -0.60551333, z: -0.3003334, w: 0.36476582} + outSlope: {x: -0.72692406, y: -0.60551333, z: -0.3003334, w: 0.36476582} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5666667 + value: {x: 0.23744681, y: 0.07903949, z: 0.27077848, w: 0.9295433} + inSlope: {x: 0.2168934, y: -0.69140065, z: 0.52204484, w: -0.17265147} + outSlope: {x: 0.2168934, y: -0.69140065, z: 0.52204484, w: -0.17265147} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.265868, y: 0.052887306, z: 0.31340748, w: 0.910106} + inSlope: {x: 1.3896029, y: -0.6629532, z: 2.0183163, w: -1.1664091} + outSlope: {x: 1.3896029, y: -0.6629532, z: 2.0183163, w: -1.1664091} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6333334 + value: {x: 0.33008704, y: 0.03484262, z: 0.40533292, w: 0.8517827} + inSlope: {x: 1.8836359, y: -0.15971872, z: 2.5778143, w: -1.9409354} + outSlope: {x: 1.8836359, y: -0.15971872, z: 2.5778143, w: -1.9409354} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.39144373, y: 0.042239368, z: 0.48526177, w: 0.78071034} + inSlope: {x: 1.3069499, y: 0.27566177, z: 1.6750457, w: -1.5938818} + outSlope: {x: 1.3069499, y: 0.27566177, z: 1.6750457, w: -1.5938818} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.70000005 + value: {x: 0.417217, y: 0.053220075, z: 0.5170026, w: 0.7455239} + inSlope: {x: 0.4229617, y: 0.17910628, z: 0.5277006, w: -0.5852836} + outSlope: {x: 0.4229617, y: 0.17910628, z: 0.5277006, w: -0.5852836} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.4196412, y: 0.054179795, z: 0.52044183, w: 0.7416914} + inSlope: {x: 0.045251574, y: 0.008354485, z: 0.07929686, w: -0.081583895} + outSlope: {x: 0.045251574, y: 0.008354485, z: 0.07929686, w: -0.081583895} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.4186585, y: 0.063071445, z: 0.50415987, w: 0.7527084} + inSlope: {x: 0.021051742, y: 0.1259478, z: -0.16461058, w: 0.08779934} + outSlope: {x: 0.021051742, y: 0.1259478, z: -0.16461058, w: 0.08779934} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.42190415, y: 0.079470456, z: 0.4826317, w: 0.76337934} + inSlope: {x: 0.048599787, y: 0.2090953, z: -0.2760281, w: 0.12541282} + outSlope: {x: 0.048599787, y: 0.2090953, z: -0.2760281, w: 0.12541282} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1333334 + value: {x: 0.4237489, y: 0.0869969, z: 0.4726742, w: 0.76775485} + inSlope: {x: 0.17767899, y: 0.5771412, z: -0.77374554, w: 0.28528425} + outSlope: {x: 0.17767899, y: 0.5771412, z: -0.77374554, w: 0.28528425} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.4337494, y: 0.11794653, z: 0.4310487, w: 0.7823983} + inSlope: {x: 0.35380024, y: 0.91125995, z: -1.246952, w: 0.3547055} + outSlope: {x: 0.35380024, y: 0.91125995, z: -1.246952, w: 0.3547055} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2333333 + value: {x: 0.42326415, y: 0.1621638, z: 0.35130787, w: 0.81922716} + inSlope: {x: -1.6452671, y: 0.12027943, z: -1.0662556, w: 1.2083496} + outSlope: {x: -1.6452671, y: 0.12027943, z: -1.0662556, w: 1.2083496} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666668 + value: {x: 0.3376509, y: 0.1557661, z: 0.31846038, w: 0.8719586} + inSlope: {x: -3.0025403, y: -0.43345356, z: -0.8823081, w: 1.5158293} + outSlope: {x: -3.0025403, y: -0.43345356, z: -0.8823081, w: 1.5158293} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3000001 + value: {x: 0.22309467, y: 0.1332669, z: 0.29248726, w: 0.92028254} + inSlope: {x: -3.209464, y: -0.65414655, z: -0.7429748, w: 1.1492893} + outSlope: {x: -3.209464, y: -0.65414655, z: -0.7429748, w: 1.1492893} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.123686835, y: 0.11215637, z: 0.26892877, w: 0.9485778} + inSlope: {x: -2.1259923, y: -0.45691198, z: -0.507612, w: 0.55126464} + outSlope: {x: -2.1259923, y: -0.45691198, z: -0.507612, w: 0.55126464} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4000001 + value: {x: 0.08136186, y: 0.10280603, z: 0.25864652, w: 0.9570335} + inSlope: {x: 0.0000007823117, y: 0.0000015646233, z: 0.000001788141, w: -0.0000008940705} + outSlope: {x: 0.0000007823117, y: 0.0000015646233, z: 0.000001788141, w: -0.0000008940705} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7666668 + value: {x: 0.095279895, y: 0.14234129, z: 0.24811801, w: 0.9534664} + inSlope: {x: 0.1599653, y: 0.4346819, z: -0.112287655, w: -0.05226379} + outSlope: {x: 0.1599653, y: 0.4346819, z: -0.112287655, w: -0.05226379} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.0666668 + value: {x: 0.17302953, y: 0.31914195, z: 0.2096982, w: 0.90787435} + inSlope: {x: 0.2904216, y: 0.5888822, z: -0.11831683, w: -0.23435287} + outSlope: {x: 0.2904216, y: 0.5888822, z: -0.11831683, w: -0.23435287} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.4666667 + value: {x: 0.19244364, y: 0.42073905, z: 0.1705775, w: 0.8699698} + inSlope: {x: -0.24386728, y: -0.12998116, z: -0.073651925, w: 0.13068932} + outSlope: {x: -0.24386728, y: -0.12998116, z: -0.073651925, w: 0.13068932} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.766667 + value: {x: 0.105577104, y: 0.36203384, z: 0.15446319, w: 0.91319555} + inSlope: {x: -0.25296152, y: -0.17155962, z: -0.02514819, w: 0.101654924} + outSlope: {x: -0.25296152, y: -0.17155962, z: -0.02514819, w: 0.101654924} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.0000002 + value: {x: 0.09743244, y: 0.35651442, z: 0.15372169, w: 0.91639185} + inSlope: {x: 0.0000012293469, y: 0.0000031292468, z: 0.0000026822115, w: -0.0000008940705} + outSlope: {x: 0.0000012293469, y: 0.0000031292468, z: 0.0000026822115, w: -0.0000008940705} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 3.8333335 + value: {x: 0.097432345, y: 0.3565144, z: 0.15372187, w: 0.91639185} + inSlope: {x: -0.0000011175881, y: -0.0000044703525, z: 0.0000008940705, w: 0} + outSlope: {x: -0.0000011175881, y: -0.0000044703525, z: 0.0000008940705, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.016815906, y: 0.12974669, z: -0.08770438, w: 0.9875176} + inSlope: {x: 0.00000257045, y: -0.0000013411044, z: 0.0000013411044, w: 0} + outSlope: {x: 0.00000257045, y: -0.0000013411044, z: 0.0000013411044, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.01681578, y: 0.1297466, z: -0.08770443, w: 0.9875176} + inSlope: {x: 0.000001341108, y: -0.0000022351724, z: 0.0000006705519, w: 0} + outSlope: {x: 0.000001341108, y: -0.0000022351724, z: 0.0000006705519, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.023683876, y: 0.13069715, z: -0.074194446, w: 0.9883585} + inSlope: {x: -0.22625402, y: 0.03073655, z: 0.4456159, w: 0.023205582} + outSlope: {x: -0.22625402, y: 0.03073655, z: 0.4456159, w: 0.023205582} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.038792983, y: 0.13252006, z: -0.047412165, w: 0.9892854} + inSlope: {x: -0.024489019, y: -0.00061042584, z: -0.010703469, w: -0.0013884904} + outSlope: {x: -0.024489019, y: -0.00061042584, z: -0.010703469, w: -0.0013884904} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.040632624, y: 0.13233052, z: -0.04822266, w: 0.9891978} + inSlope: {x: 0.068696365, y: 0.0056406804, z: 0.03021711, w: 0.0034761378} + outSlope: {x: 0.068696365, y: 0.0056406804, z: 0.03021711, w: 0.0034761378} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1333334 + value: {x: -0.03756486, y: 0.13252498, z: -0.0468763, w: 0.9893577} + inSlope: {x: 0.2934458, y: -0.019165752, z: -0.30443522, w: -0.006262079} + outSlope: {x: 0.2934458, y: -0.019165752, z: -0.30443522, w: -0.006262079} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2333333 + value: {x: 0.035563678, y: 0.12343108, z: -0.1393879, w: 0.9818712} + inSlope: {x: 0.99612504, y: -0.17315605, z: -1.204209, w: -0.18939143} + outSlope: {x: 0.99612504, y: -0.17315605, z: -1.204209, w: -0.18939143} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666668 + value: {x: 0.07058786, y: 0.11661431, z: -0.18099132, w: 0.9739921} + inSlope: {x: 1.5991559, y: -0.3908145, z: -1.762475, w: -0.46375573} + outSlope: {x: 1.5991559, y: -0.3908145, z: -1.762475, w: -0.46375573} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3000001 + value: {x: 0.1421741, y: 0.09737678, z: -0.25688627, w: 0.95095414} + inSlope: {x: 1.9358456, y: -0.6126665, z: -2.0566401, w: -0.7544516} + outSlope: {x: 1.9358456, y: -0.6126665, z: -2.0566401, w: -0.7544516} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.1996441, y: 0.075769916, z: -0.31810054, w: 0.9236954} + inSlope: {x: 1.2100396, y: -0.48124474, z: -1.2920048, w: -0.611717} + outSlope: {x: 1.2100396, y: -0.48124474, z: -1.2920048, w: -0.611717} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4000001 + value: {x: 0.22284351, y: 0.06529374, z: -0.3430198, w: 0.910173} + inSlope: {x: 0, y: -0.0000014528646, z: 0.0000031292468, w: 0.0000008940705} + outSlope: {x: 0, y: -0.0000014528646, z: 0.0000031292468, w: 0.0000008940705} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.8000001 + value: {x: 0.20178717, y: 0.06718562, z: -0.31064647, w: 0.9264269} + inSlope: {x: -0.19141513, y: 0.014769263, z: 0.29898387, w: 0.14056219} + outSlope: {x: -0.19141513, y: 0.014769263, z: 0.29898387, w: 0.14056219} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.2333333 + value: {x: 0.08362914, y: 0.06931606, z: -0.12528656, w: 0.9861566} + inSlope: {x: -0.31366912, y: -0.011412764, z: 0.42531693, w: 0.08165251} + outSlope: {x: -0.31366912, y: -0.011412764, z: 0.42531693, w: 0.08165251} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.5333335 + value: {x: 0.011050329, y: 0.0641096, z: -0.053368513, w: 0.9964535} + inSlope: {x: -0.15240973, y: -0.014010755, z: 0.03844453, w: 0.004649167} + outSlope: {x: -0.15240973, y: -0.014010755, z: 0.03844453, w: 0.004649167} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.9 + value: {x: -0.026388193, y: 0.05988635, z: -0.043814283, w: 0.996894} + inSlope: {x: -0.0000026822115, y: 0.0000004470353, z: -0.000003017488, w: 0} + outSlope: {x: -0.0000026822115, y: 0.0000004470353, z: -0.000003017488, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.026387986, y: 0.059886523, z: -0.043814152, w: 0.996894} + inSlope: {x: 0.0000021234175, y: 0.0000022351762, z: 0.000003576282, w: 0} + outSlope: {x: 0.0000021234175, y: 0.0000022351762, z: 0.000003576282, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.00000003199262, y: 0.04353423, z: -0.00000002833187, w: 0.9990519} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.00000003199262, y: 0.04353423, z: -0.00000002833187, w: 0.9990519} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2/mixamorig:RightHandThumb3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.04032007, y: 0.016040789, z: 0.12307715, w: 0.9914479} + inSlope: {x: -0.00019803642, y: 0.0037632508, z: -0.0153339645, w: 0.0018310546} + outSlope: {x: -0.00019803642, y: 0.0037632508, z: -0.0153339645, w: 0.0018310546} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: -0.040330704, y: 0.016238553, z: 0.12227059, w: 0.99154407} + inSlope: {x: 0.031454604, y: 0.0058850744, z: -0.014953987, w: 0.0029888751} + outSlope: {x: 0.031454604, y: 0.0058850744, z: -0.014953987, w: 0.0029888751} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: -0.0030958091, y: 0.020535814, z: 0.11561034, w: 0.9930775} + inSlope: {x: 0.95088303, y: 0.107221104, z: -0.15056342, w: 0.013427127} + outSlope: {x: 0.95088303, y: 0.107221104, z: -0.15056342, w: 0.013427127} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: 0.13464113, y: 0.037551742, z: 0.08804716, w: 0.9862603} + inSlope: {x: 0.5188756, y: 0.074702695, z: -0.23341647, w: -0.048341412} + outSlope: {x: 0.5188756, y: 0.074702695, z: -0.23341647, w: -0.048341412} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.11125797, y: 0.036030196, z: 0.0758473, w: 0.9902377} + inSlope: {x: -1.5264523, y: -0.1248717, z: -0.07272815, w: 0.15290827} + outSlope: {x: -1.5264523, y: -0.1248717, z: -0.07272815, w: 0.15290827} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6333334 + value: {x: 0.041802958, y: 0.030725202, z: 0.07530521, w: 0.99581003} + inSlope: {x: -2.0824423, y: -0.12347502, z: -0.020020682, w: 0.09320223} + outSlope: {x: -2.0824423, y: -0.12347502, z: -0.020020682, w: 0.09320223} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.027571501, y: 0.027798526, z: 0.074512586, w: 0.9964512} + inSlope: {x: -1.513311, y: -0.033736847, z: -0.0874926, w: -0.0057694092} + outSlope: {x: -1.513311, y: -0.033736847, z: -0.0874926, w: -0.0057694092} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.079462886, y: 0.029754179, z: 0.067777865, w: 0.9940858} + inSlope: {x: -0.63473153, y: 0.03930839, z: -0.011088735, w: -0.05166202} + outSlope: {x: -0.63473153, y: 0.03930839, z: -0.011088735, w: -0.05166202} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9333334 + value: {x: -0.15460163, y: 0.03336151, z: 0.08195149, w: 0.98400676} + inSlope: {x: 0.20310345, y: -0.005059766, z: -0.07461194, w: 0.037516076} + outSlope: {x: 0.20310345, y: -0.005059766, z: -0.07461194, w: 0.037516076} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.077882886, y: 0.03333179, z: 0.054275505, w: 0.99492586} + inSlope: {x: 0.45384455, y: 0.011560757, z: -0.16708799, w: 0.045099534} + outSlope: {x: 0.45384455, y: 0.011560757, z: -0.16708799, w: 0.045099534} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.06909564, y: 0.03373117, z: 0.049319446, w: 0.9958191} + inSlope: {x: -0.14141703, y: -0.0008372412, z: 0.0022898263, w: -0.009897361} + outSlope: {x: -0.14141703, y: -0.0008372412, z: 0.0022898263, w: -0.009897361} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2333333 + value: {x: -0.05334681, y: 0.020228818, z: 0.055852354, w: 0.99680763} + inSlope: {x: 1.1573831, y: -0.70108545, z: 0.28549716, w: 0.03130852} + outSlope: {x: 1.1573831, y: -0.70108545, z: 0.28549716, w: 0.03130852} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3000001 + value: {x: 0.07396376, y: -0.054556638, z: 0.078001246, w: 0.9927078} + inSlope: {x: 1.9604559, y: -1.1607802, z: 0.1920355, w: -0.21109632} + outSlope: {x: 1.9604559, y: -1.1607802, z: 0.1920355, w: -0.21109632} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.13404737, y: -0.0904212, z: 0.08123074, w: 0.9834922} + inSlope: {x: 1.2957886, y: -0.7663753, z: 0.045060717, w: -0.21999916} + outSlope: {x: 1.2957886, y: -0.7663753, z: 0.045060717, w: -0.21999916} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4333334 + value: {x: 0.1649931, y: -0.10564144, z: 0.07989466, w: 0.9773607} + inSlope: {x: 0.08119859, y: 0.00007029629, z: -0.019211005, w: -0.012145054} + outSlope: {x: 0.08119859, y: 0.00007029629, z: -0.019211005, w: -0.012145054} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7666668 + value: {x: 0.22603838, y: -0.101585716, z: 0.053957965, w: 0.9673032} + inSlope: {x: 0.35736448, y: 0.054349653, z: -0.21858874, w: -0.06609774} + outSlope: {x: 0.35736448, y: 0.054349653, z: -0.21858874, w: -0.06609774} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.1333334 + value: {x: 0.4153891, y: -0.051461853, z: -0.05766663, w: 0.9063543} + inSlope: {x: 0.532896, y: 0.20433575, z: -0.2982366, w: -0.25136077} + outSlope: {x: 0.532896, y: 0.20433575, z: -0.2982366, w: -0.25136077} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.5000002 + value: {x: 0.53066456, y: 0.002253788, z: -0.118947364, w: 0.839191} + inSlope: {x: 0.018211192, y: 0.010074832, z: -0.009081457, w: -0.012803893} + outSlope: {x: 0.018211192, y: 0.010074832, z: -0.009081457, w: -0.012803893} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.6000001 + value: {x: 0.53066456, y: 0.0022538092, z: -0.11894742, w: 0.839191} + inSlope: {x: 0.000001788141, y: -0.0000017846486, z: 0.00000022351787, w: -0.0000008940705} + outSlope: {x: 0.000001788141, y: -0.0000017846486, z: 0.00000022351787, w: -0.0000008940705} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 3.8333335 + value: {x: 0.53066444, y: 0.0022538526, z: -0.11894728, w: 0.8391911} + inSlope: {x: -0.000001788141, y: -0.0000010337691, z: -0.0000026822115, w: 0} + outSlope: {x: -0.000001788141, y: -0.0000010337691, z: -0.0000026822115, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.055660013, y: 0.0051042833, z: -0.0073933, w: 0.9984094} + inSlope: {x: -0.0000054761763, y: -0.000002402812, z: -0.0000017322599, w: 0} + outSlope: {x: -0.0000054761763, y: -0.000002402812, z: -0.0000017322599, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: 0.036319654, y: 0.005159995, z: -0.00578404, w: 0.9993102} + inSlope: {x: -0.24363467, y: 0.0006949716, z: 0.020281266, w: 0.00914544} + outSlope: {x: -0.24363467, y: 0.0006949716, z: 0.020281266, w: 0.00914544} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.01603021, y: 0.0052168565, z: -0.004090849, w: 0.99984956} + inSlope: {x: -0.2530408, y: 0.00070003566, z: 0.021291588, w: 0.004482866} + outSlope: {x: -0.2530408, y: 0.00070003566, z: 0.021291588, w: 0.004482866} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: 0.008938451, y: 0.0052364483, z: -0.003489316, w: 0.9999403} + inSlope: {x: 0.38840377, y: -0.001101367, z: -0.031786844, w: -0.011419048} + outSlope: {x: 0.38840377, y: -0.001101367, z: -0.031786844, w: -0.011419048} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: 0.0873207, y: 0.0050053396, z: -0.00994876, w: 0.996118} + inSlope: {x: 1.4294276, y: -0.0045559, z: -0.11761272, w: -0.12988509} + outSlope: {x: 1.4294276, y: -0.0045559, z: -0.11761272, w: -0.12988509} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: 0.21938266, y: 0.0045347787, z: -0.020789381, w: 0.9754069} + inSlope: {x: 0.7935702, y: -0.003104829, z: -0.06501748, w: -0.17206714} + outSlope: {x: 0.7935702, y: -0.003104829, z: -0.06501748, w: -0.17206714} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.21280596, y: 0.004559646, z: -0.020254, w: 0.97687393} + inSlope: {x: -1.2658074, y: 0.004789502, z: 0.10365565, w: 0.25322908} + outSlope: {x: -1.2658074, y: 0.004789502, z: 0.10365565, w: 0.25322908} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.08973601, y: 0.0049938033, z: -0.010157395, w: 0.9959013} + inSlope: {x: -1.3709098, y: 0.004476504, z: 0.11266652, w: 0.14842907} + outSlope: {x: -1.3709098, y: 0.004476504, z: 0.11266652, w: 0.14842907} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7666667 + value: {x: 0.057611, y: 0.0050928383, z: -0.007516523, w: 0.9982978} + inSlope: {x: 0.0043370165, y: -0.0000068521986, z: -0.00041174662, w: -0.00025570375} + outSlope: {x: 0.0043370165, y: -0.0000068521986, z: -0.00041174662, w: -0.00025570375} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.05233412, y: 0.0051006735, z: -0.00701954, w: 0.99859196} + inSlope: {x: -0.068367705, y: 0.00014720703, z: 0.006111435, w: 0.0036129323} + outSlope: {x: -0.068367705, y: 0.00014720703, z: 0.006111435, w: 0.0036129323} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.03959544, y: 0.00512858, z: -0.00588116, w: 0.9991853} + inSlope: {x: -0.30897182, y: 0.0006937778, z: 0.027612738, w: 0.012396287} + outSlope: {x: -0.30897182, y: 0.0006937778, z: 0.027612738, w: 0.012396287} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2333333 + value: {x: 0.041650128, y: 0.005233453, z: -0.005994981, w: 0.99910057} + inSlope: {x: 0.86369973, y: 0.0035761409, z: -0.07332317, w: -0.050819706} + outSlope: {x: 0.86369973, y: 0.0035761409, z: -0.07332317, w: -0.050819706} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3000001 + value: {x: 0.14469144, y: 0.005570963, z: -0.014745796, w: 0.9893513} + inSlope: {x: 1.6004078, y: 0.004960359, z: -0.13503593, w: -0.22896788} + outSlope: {x: 1.6004078, y: 0.004960359, z: -0.13503593, w: -0.22896788} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3666668 + value: {x: 0.21505982, y: 0.005784187, z: -0.020654766, w: 0.9763653} + inSlope: {x: 0.35405123, y: 0.00094495236, z: -0.030000776, w: -0.07492376} + outSlope: {x: 0.35405123, y: 0.00094495236, z: -0.030000776, w: -0.07492376} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4333334 + value: {x: 0.2197106, y: 0.0057843425, z: -0.021085307, w: 0.97532004} + inSlope: {x: 0.08255221, y: -0.0000072084435, z: -0.007593425, w: -0.01877727} + outSlope: {x: 0.08255221, y: -0.0000072084435, z: -0.007593425, w: -0.01877727} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7333335 + value: {x: 0.2940332, y: 0.010169275, z: -0.025829904, w: 0.955392} + inSlope: {x: 0.6693586, y: 0.06109435, z: -0.029730387, w: -0.20807311} + outSlope: {x: 0.6693586, y: 0.06109435, z: -0.029730387, w: -0.20807311} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.0333335 + value: {x: 0.58310854, y: 0.035003, z: -0.027614716, w: 0.8111699} + inSlope: {x: 1.0623567, y: 0.071874276, z: 0.036705367, w: -0.76587516} + outSlope: {x: 1.0623567, y: 0.071874276, z: 0.036705367, w: -0.76587516} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.3000002 + value: {x: 0.81257874, y: 0.042828314, z: -0.009968531, w: 0.5811903} + inSlope: {x: 0.56814426, y: -0.007863238, z: 0.07183436, w: -0.7896619} + outSlope: {x: 0.56814426, y: -0.007863238, z: 0.07183436, w: -0.7896619} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.5000002 + value: {x: 0.87437207, y: 0.04028851, z: -0.0014980057, w: 0.48357844} + inSlope: {x: 0.06689135, y: -0.0075396663, z: 0.0041460805, w: -0.11986433} + outSlope: {x: 0.06689135, y: -0.0075396663, z: 0.0041460805, w: -0.11986433} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.466667 + value: {x: 0.88639975, y: 0.038468316, z: -0.001537749, w: 0.4613169} + inSlope: {x: -0.00000089406416, y: -0.00000212341, z: -0.0000016833586, w: 0.00000089406416} + outSlope: {x: -0.00000089406416, y: -0.00000212341, z: -0.0000016833586, w: 0.00000089406416} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.8863998, y: 0.038468458, z: -0.0015375622, w: 0.46131685} + inSlope: {x: 0.000003576282, y: 0.000004246835, z: 0.0000055600012, w: -0.000005364423} + outSlope: {x: 0.000003576282, y: 0.000004246835, z: 0.0000055600012, w: -0.000005364423} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0, y: 0, z: 1.3877788e-17, 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.033333335 + value: {x: 0, y: 0, z: 1.3877788e-17, 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: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2/mixamorig:RightHandIndex3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.08712273, y: 0.04754908, z: 0.01516017, w: 0.9949467} + inSlope: {x: 0.0006242841, y: 0.0015396996, z: -0.005034478, w: 0.000057220455} + outSlope: {x: 0.0006242841, y: 0.0015396996, z: -0.005034478, w: 0.000057220455} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: -0.08709003, y: 0.047630038, z: 0.0148955565, w: 0.9949497} + inSlope: {x: 0.031285513, y: 0.00061986974, z: -0.0047922, w: 0.0027474763} + outSlope: {x: 0.031285513, y: 0.00061986974, z: -0.0047922, w: 0.0027474763} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: -0.050369695, y: 0.047402754, z: 0.012785027, w: 0.9975231} + inSlope: {x: 0.941857, y: -0.0024665124, z: -0.049266435, w: 0.043641306} + outSlope: {x: 0.941857, y: -0.0024665124, z: -0.049266435, w: 0.043641306} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: 0.09011482, y: 0.049632803, z: 0.0030639032, w: 0.99468917} + inSlope: {x: 0.59244406, y: 0.023895333, z: -0.083320424, w: -0.04994895} + outSlope: {x: 0.59244406, y: 0.023895333, z: -0.083320424, w: -0.04994895} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.07721185, y: 0.05009409, z: -0.0012486741, w: 0.9957547} + inSlope: {x: -1.2375307, y: -0.002098832, z: -0.028731795, w: 0.07566959} + outSlope: {x: -1.2375307, y: -0.002098832, z: -0.028731795, w: 0.07566959} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.038603295, y: 0.05152629, z: -0.0022670592, w: 0.9979227} + inSlope: {x: -1.267473, y: 0.043175183, z: -0.038061526, w: -0.031144908} + outSlope: {x: -1.267473, y: 0.043175183, z: -0.038061526, w: -0.031144908} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.08400972, y: 0.05374083, z: -0.005933838, w: 0.994997} + inSlope: {x: -0.60059977, y: 0.020924194, z: -0.043574706, w: -0.052659802} + outSlope: {x: -0.60059977, y: 0.020924194, z: -0.043574706, w: -0.052659802} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9333334 + value: {x: -0.15818469, y: 0.05560374, z: -0.00655408, w: 0.98582095} + inSlope: {x: 0.18453965, y: -0.0035101194, z: -0.009449084, w: 0.029137745} + outSlope: {x: 0.18453965, y: -0.0035101194, z: -0.009449084, w: 0.029137745} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.08683701, y: 0.054918278, z: -0.01010939, w: 0.9946563} + inSlope: {x: 0.40898788, y: 0.000365505, z: -0.021363195, w: 0.036177617} + outSlope: {x: 0.40898788, y: 0.000365505, z: -0.021363195, w: 0.036177617} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1333334 + value: {x: -0.07490178, y: 0.05495978, z: -0.010749288, w: 0.9956172} + inSlope: {x: 0.02835235, y: 0.00145398, z: -0.008043415, w: 0.0022834046} + outSlope: {x: 0.02835235, y: 0.00145398, z: -0.008043415, w: 0.0022834046} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2333333 + value: {x: -0.08128772, y: 0.045327056, z: -0.008406535, w: 0.995624} + inSlope: {x: 0.9283457, y: -0.4977706, z: 0.08190924, w: 0.07952827} + outSlope: {x: 0.9283457, y: -0.4977706, z: 0.08190924, w: 0.07952827} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3000001 + value: {x: 0.028632572, y: -0.0057716016, z: -0.004383826, w: 0.99956375} + inSlope: {x: 1.7094598, y: -0.75548095, z: -0.021147162, w: -0.043531403} + outSlope: {x: 1.7094598, y: -0.75548095, z: -0.021147162, w: -0.043531403} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3666668 + value: {x: 0.103679046, y: -0.037753236, z: -0.008160473, w: 0.99386054} + inSlope: {x: 0.36825246, y: -0.13867845, z: -0.02660314, w: -0.039281752} + outSlope: {x: 0.36825246, y: -0.13867845, z: -0.02660314, w: -0.039281752} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4333334 + value: {x: 0.10744755, y: -0.037643176, z: -0.008389779, w: 0.99346244} + inSlope: {x: 0.06363626, y: 0.0018855389, z: -0.003871088, w: -0.0068503683} + outSlope: {x: 0.06363626, y: 0.0018855389, z: -0.003871088, w: -0.0068503683} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.8000001 + value: {x: 0.17969769, y: -0.041421723, z: -0.012624934, w: 0.98276836} + inSlope: {x: 0.5151393, y: -0.035378315, z: -0.033018164, w: -0.0966678} + outSlope: {x: 0.5151393, y: -0.035378315, z: -0.033018164, w: -0.0966678} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.1333334 + value: {x: 0.40140077, y: -0.050634112, z: -0.031697076, w: 0.91395235} + inSlope: {x: 0.6669073, y: -0.0069471514, z: -0.071891814, w: -0.2954957} + outSlope: {x: 0.6669073, y: -0.0069471514, z: -0.071891814, w: -0.2954957} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.5000002 + value: {x: 0.54545563, y: -0.04836199, z: -0.049282, w: 0.83529073} + inSlope: {x: 0.02273605, y: 0.001019736, z: -0.0030959207, w: -0.014940706} + outSlope: {x: 0.02273605, y: 0.001019736, z: -0.0030959207, w: -0.014940706} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.5666668 + value: {x: 0.5454557, y: -0.04836207, z: -0.049281996, w: 0.8352907} + inSlope: {x: 0, y: -0.0000008381911, z: -0.0000020675382, w: 0} + outSlope: {x: 0, y: -0.0000008381911, z: -0.0000020675382, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.54545575, y: -0.04836206, z: -0.049282078, w: 0.8352907} + inSlope: {x: 0.000005364423, y: -0.0000032410057, z: -0.0000023469352, w: -0.000001788141} + outSlope: {x: 0.000005364423, y: -0.0000032410057, z: -0.0000023469352, w: -0.000001788141} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.012800711, y: 0.013669873, z: -0.0014980126, w: 0.9998235} + inSlope: {x: 0.000005224719, y: -0.00000094994897, z: -0.0000028847714, w: 0} + outSlope: {x: 0.000005224719, y: -0.00000094994897, z: -0.0000028847714, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: 0.0015868796, y: 0.013701243, z: -0.0017602016, w: 0.9999033} + inSlope: {x: -0.1406392, y: 0.00041565846, z: 0.00016449089, w: 0.00066965795} + outSlope: {x: -0.1406392, y: 0.00041565846, z: 0.00016449089, w: 0.00066965795} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: 0.0000652214, y: 0.013748322, z: -0.0006807984, w: 0.9999053} + inSlope: {x: 0.0005389779, y: -0.00037395806, z: -0.010312885, w: -0.000008046621} + outSlope: {x: 0.0005389779, y: -0.00037395806, z: -0.010312885, w: -0.000008046621} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.000114390445, y: 0.013706313, z: -0.0016167235, w: 0.99990475} + inSlope: {x: 0.5797184, y: -0.0023622154, z: -0.003153137, w: -0.011216105} + outSlope: {x: 0.5797184, y: -0.0023622154, z: -0.003153137, w: -0.011216105} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.13418259, y: 0.013219847, z: 0.001355814, w: 0.99086756} + inSlope: {x: 1.2234716, y: -0.0054795584, z: 0.028887922, w: -0.15903533} + outSlope: {x: 1.2234716, y: -0.0054795584, z: 0.028887922, w: -0.15903533} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.16337922, y: 0.0130809825, z: 0.0020463285, w: 0.9864745} + inSlope: {x: -1.2475059, y: 0.0058781295, z: -0.02949595, w: 0.1833656} + outSlope: {x: -1.2475059, y: 0.0058781295, z: -0.02949595, w: 0.1833656} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.042213205, y: 0.013579531, z: -0.0008089508, w: 0.99901605} + inSlope: {x: -1.3470306, y: 0.0047201873, z: -0.031630833, w: 0.07938093} + outSlope: {x: -1.3470306, y: 0.0047201873, z: -0.031630833, w: 0.07938093} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7666667 + value: {x: 0.010963366, y: 0.013675164, z: -0.0015409138, w: 0.9998452} + inSlope: {x: 0.009787234, y: -0.000028414628, z: 0.00022908246, w: -0.00011354675} + outSlope: {x: 0.009787234, y: -0.000028414628, z: 0.00022908246, w: -0.00011354675} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.002965417, y: 0.013697461, z: -0.0017281477, w: 0.99990034} + inSlope: {x: -0.08752493, y: 0.00023898226, z: -0.001743682, w: 0.0002601745} + outSlope: {x: -0.08752493, y: 0.00023898226, z: -0.001743682, w: 0.0002601745} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2 + value: {x: 0.000064108215, y: 0.013750343, z: -0.000654386, w: 0.9999053} + inSlope: {x: -0.00006383579, y: -0.000018426246, z: 0.0012209704, w: 0.000001788141} + outSlope: {x: -0.00006383579, y: -0.000018426246, z: 0.0012209704, w: 0.000001788141} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2333333 + value: {x: 0.00008592263, y: 0.013718237, z: -0.001072349, w: 0.99990535} + inSlope: {x: 0.6049787, y: -0.0028119413, z: -0.001154244, w: -0.012207596} + outSlope: {x: 0.6049787, y: -0.0028119413, z: -0.001154244, w: -0.012207596} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666668 + value: {x: 0.040396128, y: 0.0135628795, z: -0.0007313343, w: 0.99909145} + inSlope: {x: 1.8528937, y: -0.007662176, z: 0.035938393, w: -0.11495239} + outSlope: {x: 1.8528937, y: -0.007662176, z: 0.035938393, w: -0.11495239} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3000001 + value: {x: 0.123612195, y: 0.013207425, z: 0.0013235429, w: 0.99224186} + inSlope: {x: 2.3052526, y: -0.011174945, z: 0.05698732, w: -0.27291235} + outSlope: {x: 2.3052526, y: -0.011174945, z: 0.05698732, w: -0.27291235} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.19407949, y: 0.012817884, z: 0.0030678168, w: 0.9808973} + inSlope: {x: 1.5295854, y: -0.00884665, z: 0.03784755, w: -0.27161378} + outSlope: {x: 1.5295854, y: -0.00884665, z: 0.03784755, w: -0.27161378} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4333334 + value: {x: 0.23437925, y: 0.012562572, z: 0.0040548537, w: 0.9720556} + inSlope: {x: 0.15387446, y: -0.00097399205, z: 0.0036447833, w: -0.03715936} + outSlope: {x: 0.15387446, y: -0.00097399205, z: 0.0036447833, w: -0.03715936} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7 + value: {x: 0.30861515, y: 0.012055864, z: 0.0058065685, w: 0.95109284} + inSlope: {x: 0.6413674, y: -0.004703095, z: 0.015067147, w: -0.20968951} + outSlope: {x: 0.6413674, y: -0.004703095, z: 0.015067147, w: -0.20968951} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.57567245, y: 0.009514187, z: 0.012136199, w: 0.817535} + inSlope: {x: 1.0324208, y: -0.01255306, z: 0.024854014, w: -0.72775316} + outSlope: {x: 1.0324208, y: -0.01255306, z: 0.024854014, w: -0.72775316} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.266667 + value: {x: 0.8084974, y: 0.005640055, z: 0.018013619, w: 0.5881969} + inSlope: {x: 0.61639404, y: -0.014511117, z: 0.016581286, w: -0.8451036} + outSlope: {x: 0.61639404, y: -0.014511117, z: 0.016581286, w: -0.8451036} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.5000002 + value: {x: 0.8859259, y: 0.0032810313, z: 0.020259256, w: 0.4633726} + inSlope: {x: 0.063383035, y: -0.0040989826, z: 0.0029336286, w: -0.120833054} + outSlope: {x: 0.063383035, y: -0.0040989826, z: 0.0029336286, w: -0.120833054} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.466667 + value: {x: 0.8973753, y: 0.002300271, z: 0.020924607, w: 0.44076577} + inSlope: {x: 0, y: 0.0000011978964, z: 0.00000047496155, w: -0.00000089406416} + outSlope: {x: 0, y: 0.0000011978964, z: 0.00000047496155, w: -0.00000089406416} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.8973752, y: 0.0023002054, z: 0.020924514, w: 0.4407659} + inSlope: {x: -0.000001788141, y: -0.00000090105544, z: -0.0000020116586, w: 0.000003576282} + outSlope: {x: -0.000001788141, y: -0.00000090105544, z: -0.0000020116586, + w: 0.000003576282} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.0000013406552, y: -0.0029256125, z: -0.0004496098, w: 0.99999565} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: -0.0000013406552, y: -0.0029256125, z: -0.0004496098, w: 0.99999565} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2/mixamorig:RightHandMiddle3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.019272363, y: 0.023833567, z: -0.19643115, w: 0.98003846} + inSlope: {x: -0.002219528, y: -0.00372285, z: 0.0149931, w: 0.0030469892} + outSlope: {x: -0.002219528, y: -0.00372285, z: 0.0149931, w: 0.0030469892} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: -0.019388871, y: 0.02363796, z: -0.19564284, w: 0.98019856} + inSlope: {x: 0.026124913, y: -0.008634786, z: 0.0128911445, w: 0.003268719} + outSlope: {x: 0.026124913, y: -0.008634786, z: 0.0128911445, w: 0.003268719} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.013626238, y: 0.016139334, z: -0.19112562, w: 0.9813383} + inSlope: {x: 0.85677403, y: -0.18475512, z: 0.09721798, w: 0.00581681} + outSlope: {x: 0.85677403, y: -0.18475512, z: 0.09721798, w: 0.00581681} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: 0.14568624, y: -0.011023179, z: -0.17041223, w: 0.9744813} + inSlope: {x: 0.61930466, y: -0.12423468, z: 0.21960591, w: -0.051348165} + outSlope: {x: 0.61930466, y: -0.12423468, z: 0.21960591, w: -0.051348165} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.14545372, y: -0.011934877, z: -0.15542096, w: 0.9770082} + inSlope: {x: -0.80215526, y: 0.11221008, z: 0.19055063, w: 0.14063445} + outSlope: {x: -0.80215526, y: 0.11221008, z: 0.19055063, w: 0.14063445} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.06514974, y: -0.001317984, z: -0.14391597, w: 0.98744214} + inSlope: {x: -0.9122776, y: 0.096514165, z: 0.19746557, w: 0.09914969} + outSlope: {x: -0.9122776, y: 0.096514165, z: 0.19746557, w: 0.09914969} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.023143526, y: 0.0015456883, z: -0.1350241, w: 0.9905708} + inSlope: {x: -0.7093795, y: 0.047353454, z: 0.004001448, w: 0.01610042} + outSlope: {x: -0.7093795, y: 0.047353454, z: 0.004001448, w: 0.01610042} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9333334 + value: {x: -0.068872765, y: 0.008060871, z: -0.15117252, w: 0.98607224} + inSlope: {x: 0.17630254, y: -0.013591761, z: 0.07314075, w: 0.022888195} + outSlope: {x: 0.17630254, y: -0.013591761, z: 0.07314075, w: 0.022888195} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.0041489187, y: 0.00095367996, z: -0.12336899, w: 0.9923518} + inSlope: {x: 0.38154078, y: -0.0451817, z: 0.16406436, w: 0.01982867} + outSlope: {x: 0.38154078, y: -0.0451817, z: 0.16406436, w: 0.01982867} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1333334 + value: {x: 0.014600238, y: -0.00034906997, z: -0.11850402, w: 0.9928462} + inSlope: {x: -0.24095577, y: 0.024537494, z: 0.04098516, w: 0.004051901} + outSlope: {x: -0.24095577, y: 0.024537494, z: 0.04098516, w: 0.004051901} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2333333 + value: {x: -0.033948727, y: 0.009267913, z: -0.11577466, w: 0.99265194} + inSlope: {x: 0.8720338, y: 0.09770997, z: 0.4173841, w: 0.053602967} + outSlope: {x: 0.8720338, y: 0.09770997, z: 0.4173841, w: 0.053602967} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3000001 + value: {x: 0.09202725, y: 0.012001618, z: -0.06751797, w: 0.9933923} + inSlope: {x: 2.0128865, y: -0.03716753, z: 0.7768967, w: -0.12053412} + outSlope: {x: 2.0128865, y: -0.03716753, z: 0.7768967, w: -0.12053412} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.15330814, y: 0.009670705, z: -0.043166902, w: 0.9871878} + inSlope: {x: 1.3122978, y: -0.06012963, z: 0.5238458, w: -0.15314156} + outSlope: {x: 1.3122978, y: -0.06012963, z: 0.5238458, w: -0.15314156} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4333334 + value: {x: 0.18396123, y: 0.007330832, z: -0.032061245, w: 0.98238313} + inSlope: {x: 0.09528512, y: -0.014283741, z: 0.012388856, w: -0.01737626} + outSlope: {x: 0.09528512, y: -0.014283741, z: 0.012388856, w: -0.01737626} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9000001 + value: {x: 0.30367115, y: -0.027183242, z: 0.0015729724, w: 0.95238775} + inSlope: {x: 0.45261115, y: -0.169661, z: 0.15151855, w: -0.1496844} + outSlope: {x: 0.45261115, y: -0.169661, z: 0.15151855, w: -0.1496844} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.3000002 + value: {x: 0.4839495, y: -0.10271771, z: 0.05603967, w: 0.86723787} + inSlope: {x: 0.31960607, y: -0.1483206, z: 0.08442043, w: -0.20098168} + outSlope: {x: 0.31960607, y: -0.1483206, z: 0.08442043, w: -0.20098168} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.8000002 + value: {x: 0.5185558, y: -0.11910633, z: 0.0648606, w: 0.84421957} + inSlope: {x: -0.00000089407047, y: -0.0000006705529, z: -0.00000044703523, + w: -0.0000008940705} + outSlope: {x: -0.00000089407047, y: -0.0000006705529, z: -0.00000044703523, + w: -0.0000008940705} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 3.8333335 + value: {x: 0.5185558, y: -0.11910639, z: 0.06486054, w: 0.84421957} + inSlope: {x: -0.000001788141, y: -0.0000058114583, z: -0.000001788141, w: 0} + outSlope: {x: -0.000001788141, y: -0.0000058114583, z: -0.000001788141, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.00027745307, y: -0.00041259115, z: -0.009405134, w: 0.99995565} + inSlope: {x: 0.00000070809614, y: -0.0000009385985, z: -0.00000053085387, + w: 0} + outSlope: {x: 0.00000070809614, y: -0.0000009385985, z: -0.00000053085387, + w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: -0.00042073248, y: -0.0014111303, z: -0.01475574, w: 0.9998901} + inSlope: {x: 0.0011475899, y: 0.0083043575, z: 0.043170583, w: 0.0005462759} + outSlope: {x: 0.0011475899, y: 0.0083043575, z: 0.043170583, w: 0.0005462759} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: 0.012687466, y: 0.00010591879, z: -0.00048645152, w: 0.9999194} + inSlope: {x: 0.8997127, y: 0.0010468154, z: 0.13561568, w: -0.026675487} + outSlope: {x: 0.8997127, y: 0.0010468154, z: 0.13561568, w: -0.026675487} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.059807193, y: 0.00003465567, z: 0.0032296313, w: 0.99820477} + inSlope: {x: 1.2502614, y: -0.0018854381, z: 0.098633245, w: -0.068405256} + outSlope: {x: 1.2502614, y: -0.0018854381, z: 0.098633245, w: -0.068405256} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.08934748, y: -0.000008320339, z: 0.005563243, w: 0.99598503} + inSlope: {x: -1.2863767, y: 0.0019715666, z: -0.101454034, w: 0.09184062} + outSlope: {x: -1.2863767, y: 0.0019715666, z: -0.101454034, w: 0.09184062} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6333334 + value: {x: 0.027945787, y: 0.00008551487, z: 0.0007210331, w: 0.9996092} + inSlope: {x: -1.3426881, y: -0.00003350561, z: -0.1662623, w: 0.059995614} + outSlope: {x: -1.3426881, y: -0.00003350561, z: -0.1662623, w: 0.059995614} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.00027050488, y: -0.00037850908, z: -0.009158015, w: 0.999958} + inSlope: {x: -0.00016373927, y: -0.000756889, z: -0.0057859337, w: -0.000052750143} + outSlope: {x: -0.00016373927, y: -0.000756889, z: -0.0057859337, w: -0.000052750143} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2 + value: {x: -0.0003409235, y: -0.0007729702, z: -0.011696825, w: 0.9999313} + inSlope: {x: 0.00048863306, y: 0.0042448984, z: 0.018106118, w: 0.00018596667} + outSlope: {x: 0.00048863306, y: 0.0042448984, z: 0.018106118, w: 0.00018596667} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2333333 + value: {x: -0.00028286356, y: -0.00033205072, z: -0.009559259, w: 0.9999542} + inSlope: {x: 0.0037723964, y: 0.018310107, z: 0.13126907, w: 0.0009646999} + outSlope: {x: 0.0037723964, y: 0.018310107, z: 0.13126907, w: 0.0009646999} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666668 + value: {x: -0.000089429945, y: 0.00044770527, z: -0.0029455374, w: 0.9999956} + inSlope: {x: 0.8689851, y: 0.014692279, z: 0.19262457, w: -0.024343755} + outSlope: {x: 0.8689851, y: 0.014692279, z: 0.19262457, w: -0.024343755} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3000001 + value: {x: 0.057649422, y: 0.00064743636, z: 0.0032823908, w: 0.9983313} + inSlope: {x: 1.7552941, y: 0.004675133, z: 0.16684502, w: -0.103340246} + outSlope: {x: 1.7552941, y: 0.004675133, z: 0.16684502, w: -0.103340246} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.11693007, y: 0.0007593805, z: 0.008177454, w: 0.99310625} + inSlope: {x: 1.2729751, y: 0.0022309676, z: 0.105369404, w: -0.12888813} + outSlope: {x: 1.2729751, y: 0.0022309676, z: 0.105369404, w: -0.12888813} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4333334 + value: {x: 0.14589079, y: 0.0007830011, z: 0.0106156375, w: 0.98924345} + inSlope: {x: 0.060298126, y: -0.00023055931, z: 0.0054745474, w: -0.008960375} + outSlope: {x: 0.060298126, y: -0.00023055931, z: 0.0054745474, w: -0.008960375} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7333335 + value: {x: 0.21330315, y: -0.004038843, z: 0.01569557, w: 0.97685164} + inSlope: {x: 0.67256653, y: -0.066785276, z: 0.0437788, w: -0.14872304} + outSlope: {x: 0.67256653, y: -0.066785276, z: 0.0437788, w: -0.14872304} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.0333335 + value: {x: 0.51354223, y: -0.033967055, z: 0.024870206, w: 0.857031} + inSlope: {x: 1.123417, y: -0.10169065, z: -0.0082442155, w: -0.6772901} + outSlope: {x: 1.123417, y: -0.10169065, z: -0.0082442155, w: -0.6772901} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.3000002 + value: {x: 0.7616267, y: -0.051080275, z: 0.013453198, w: 0.64585954} + inSlope: {x: 0.63258886, y: -0.024321623, z: -0.056319013, w: -0.74412954} + outSlope: {x: 0.63258886, y: -0.024321623, z: -0.056319013, w: -0.74412954} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.5000002 + value: {x: 0.83138406, y: -0.052492455, z: 0.006792393, w: 0.55317175} + inSlope: {x: 0.07654458, y: 0.0028051944, z: -0.00083728065, w: -0.11437789} + outSlope: {x: 0.07654458, y: 0.0028051944, z: -0.00083728065, w: -0.11437789} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.466667 + value: {x: 0.8451879, y: -0.051531374, z: 0.0076072, w: 0.53192484} + inSlope: {x: -6.366463e-12, y: 0.0000015646287, z: 0.000000034920447, w: -0.00000089405137} + outSlope: {x: -6.366463e-12, y: 0.0000015646287, z: 0.000000034920447, w: -0.00000089405137} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.8451879, y: -0.05153145, z: 0.0076070023, w: 0.53192484} + inSlope: {x: 0, y: -0.0000022351762, z: -0.000008745127, w: -0.000001788141} + outSlope: {x: 0, y: -0.0000022351762, z: -0.000008745127, w: -0.000001788141} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -2.7755576e-17, y: 5.2041704e-18, z: 6.938894e-18, 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.033333335 + value: {x: -2.7755576e-17, y: 5.2041704e-18, z: 6.938894e-18, 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: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2/mixamorig:RightHandPinky3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.024779733, y: 0.6965185, z: 0.6521514, w: 0.29823905} + inSlope: {x: -0.051621847, y: 0.0021153688, z: 0.023031233, w: -0.05134016} + outSlope: {x: -0.051621847, y: 0.0021153688, z: 0.023031233, w: -0.05134016} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: -0.013429631, y: 0.69876117, z: 0.6591514, w: 0.27761835} + inSlope: {x: -0.2408678, y: 0.09046909, z: -0.07435885, w: -0.06376101} + outSlope: {x: -0.2408678, y: 0.09046909, z: -0.07435885, w: -0.06376101} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.042676535, y: 0.71037006, z: 0.65013343, w: 0.26623225} + inSlope: {x: -0.29052228, y: 0.27852228, z: -0.2535402, w: -0.17818496} + outSlope: {x: -0.29052228, y: 0.27852228, z: -0.2535402, w: -0.17818496} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.07640066, y: 0.74059474, z: 0.6243023, w: 0.23649305} + inSlope: {x: -0.3276795, y: 0.14880455, z: -0.06103015, w: -0.40846533} + outSlope: {x: -0.3276795, y: 0.14880455, z: -0.06103015, w: -0.40846533} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7666667 + value: {x: -0.09914662, y: 0.73564523, z: 0.6465228, w: 0.1760803} + inSlope: {x: -0.0013812259, y: -0.035705537, z: 0.06869668, w: -0.10106086} + outSlope: {x: -0.0013812259, y: -0.035705537, z: 0.06869668, w: -0.10106086} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.90000004 + value: {x: -0.08190618, y: 0.74337095, z: 0.6415684, w: 0.17053159} + inSlope: {x: 0.07140135, y: -0.11788127, z: 0.17791086, w: -0.12599982} + outSlope: {x: 0.07140135, y: -0.11788127, z: 0.17791086, w: -0.12599982} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.114351116, y: 0.69465965, z: 0.70586413, w: 0.078279495} + inSlope: {x: -0.18898594, y: -0.24520555, z: 0.28219676, w: -0.6446867} + outSlope: {x: -0.18898594, y: -0.24520555, z: 0.28219676, w: -0.6446867} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2333333 + value: {x: -0.12923251, y: 0.6662589, z: 0.73443377, w: -0.0022686878} + inSlope: {x: 0.12430263, y: -0.07112323, z: 0.08525579, w: -0.59547186} + outSlope: {x: 0.12430263, y: -0.07112323, z: 0.08525579, w: -0.59547186} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3666668 + value: {x: -0.12263745, y: 0.6576942, z: 0.7423496, w: -0.0362682} + inSlope: {x: -0.05819857, y: -0.1405102, z: 0.1259923, w: 0.26487923} + outSlope: {x: -0.05819857, y: -0.1405102, z: 0.1259923, w: 0.26487923} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4666667 + value: {x: -0.13758954, y: 0.6117169, z: 0.7790153, w: -0.0025824627} + inSlope: {x: -0.23697941, y: -0.74764985, z: 0.54412234, w: 0.34265563} + outSlope: {x: -0.23697941, y: -0.74764985, z: 0.54412234, w: 0.34265563} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6333334 + value: {x: -0.18523924, y: 0.4609276, z: 0.86606187, w: 0.056293786} + inSlope: {x: -0.25425914, y: -1.1823305, z: 0.5589917, w: 0.1950121} + outSlope: {x: -0.25425914, y: -1.1823305, z: 0.5589917, w: 0.1950121} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7666668 + value: {x: -0.19319606, y: 0.2894639, z: 0.9336101, w: 0.08519491} + inSlope: {x: 0.255404, y: -1.2250603, z: 0.40591338, w: 0.34675878} + outSlope: {x: 0.255404, y: -1.2250603, z: 0.40591338, w: 0.34675878} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9000001 + value: {x: -0.116840355, y: 0.17158367, z: 0.9689628, w: 0.13423304} + inSlope: {x: 0.664999, y: -0.77933156, z: 0.15867606, w: 0.4350146} + outSlope: {x: 0.664999, y: -0.77933156, z: 0.15867606, w: 0.4350146} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9666668 + value: {x: -0.06460823, y: 0.11894124, z: 0.9762552, w: 0.1691292} + inSlope: {x: 0.9175375, y: -0.8521366, z: 0.108457044, w: 0.3365316} + outSlope: {x: 0.9175375, y: -0.8521366, z: 0.108457044, w: 0.3365316} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.034648042, y: 0.089627914, z: 0.9801856, w: 0.17321214} + inSlope: {x: 0.74194074, y: -1.0074128, z: 0.15613106, w: -0.23338675} + outSlope: {x: 0.74194074, y: -1.0074128, z: 0.15613106, w: -0.23338675} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.0666668 + value: {x: -0.0014391621, y: 0.011251138, z: 0.9914146, w: 0.13026305} + inSlope: {x: 0.37165153, y: -1.1813114, z: 0.10773192, w: -0.69849986} + outSlope: {x: 0.37165153, y: -1.1813114, z: 0.10773192, w: -0.69849986} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.1333334 + value: {x: 0.017289469, y: -0.068578474, z: 0.99393135, w: 0.08425271} + inSlope: {x: 0.18337825, y: -1.3393843, z: -0.043215793, w: -0.65721035} + outSlope: {x: 0.18337825, y: -1.3393843, z: -0.043215793, w: -0.65721035} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.2 + value: {x: 0.02634808, y: -0.14243509, z: 0.988473, w: 0.04403576} + inSlope: {x: 0.25618684, y: -0.18081446, z: -0.01461269, w: -0.28782284} + outSlope: {x: 0.25618684, y: -0.18081446, z: -0.01461269, w: -0.28782284} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.2333333 + value: {x: 0.038935523, y: -0.12832022, z: 0.98999083, w: 0.044001173} + inSlope: {x: 0.3406494, y: 0.4333855, z: 0.04198184, w: 0.023837702} + outSlope: {x: 0.3406494, y: 0.4333855, z: 0.04198184, w: 0.023837702} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.052160963, y: -0.08010145, z: 0.99413514, w: 0.050580006} + inSlope: {x: 0.124971725, y: 0.47818714, z: 0.033272836, w: -0.016811263} + outSlope: {x: 0.124971725, y: 0.47818714, z: 0.033272836, w: -0.016811263} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.4 + value: {x: 0.04997353, y: -0.053580012, z: 0.9960502, w: 0.05015862} + inSlope: {x: -0.29577166, y: 0.23422831, z: 0.025489056, w: 0.030393984} + outSlope: {x: -0.29577166, y: 0.23422831, z: 0.025489056, w: 0.030393984} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.4333334 + value: {x: 0.035932727, y: -0.049304325, z: 0.99680775, w: 0.051499747} + inSlope: {x: -0.22369136, y: 0.001325734, z: 0.01112939, w: -0.030679528} + outSlope: {x: -0.22369136, y: 0.001325734, z: 0.01112939, w: -0.030679528} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.4666667 + value: {x: 0.035060786, y: -0.05349163, z: 0.99679214, w: 0.04811332} + inSlope: {x: -0.043148242, y: 0.062471107, z: 0.012831607, w: -0.18424664} + outSlope: {x: -0.043148242, y: 0.062471107, z: 0.012831607, w: -0.18424664} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.5666668 + value: {x: 0.0264468, y: -0.03170467, z: 0.9990133, w: 0.016366988} + inSlope: {x: -0.24109216, y: 0.24008986, z: 0.017460303, w: -0.23187794} + outSlope: {x: -0.24109216, y: 0.24008986, z: 0.017460303, w: -0.23187794} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.018522473, y: 0.0007421562, z: 0.99981165, w: 0.005750462} + inSlope: {x: 0.14969088, y: 0.25615138, z: -0.002204778, w: -0.0748399} + outSlope: {x: 0.14969088, y: 0.25615138, z: -0.002204778, w: -0.0748399} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.008844694, y: 0.017440358, z: 0.9994793, w: 0.02566614} + inSlope: {x: 0.024943171, y: -0.059463162, z: -0.005240147, w: 0.23156735} + outSlope: {x: 0.024943171, y: -0.059463162, z: -0.005240147, w: 0.23156735} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.0333335 + value: {x: 0.02512185, y: -0.00414811, z: 0.99712354, w: 0.071388304} + inSlope: {x: 0.0028131648, y: -0.13254252, z: -0.017970819, w: 0.24333817} + outSlope: {x: 0.0028131648, y: -0.13254252, z: -0.017970819, w: 0.24333817} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.2333336 + value: {x: 0.027949987, y: -0.030409053, z: 0.9933554, w: 0.10742036} + inSlope: {x: -0.105345786, y: -0.10595448, z: -0.018616337, w: 0.17103279} + outSlope: {x: -0.105345786, y: -0.10595448, z: -0.018616337, w: 0.17103279} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.015206495, y: -0.06516533, z: 0.9901206, w: 0.123221174} + inSlope: {x: 0.006463515, y: 0.009740898, z: 0.0014948859, w: -0.0076331273} + outSlope: {x: 0.006463515, y: 0.009740898, z: 0.0014948859, w: -0.0076331273} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:LeftUpLeg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.60442746, y: -0.06792543, z: 0.05666134, w: 0.7917342} + inSlope: {x: 0.028701423, y: 0.03183514, z: -0.04387747, w: 0.027687548} + outSlope: {x: 0.028701423, y: 0.03183514, z: -0.04387747, w: 0.027687548} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: -0.6014098, y: -0.048113734, z: 0.035900366, w: 0.7966822} + inSlope: {x: -0.004547239, y: 0.08746036, z: -0.08204409, w: 0.0054949527} + outSlope: {x: -0.004547239, y: 0.08746036, z: -0.08204409, w: 0.0054949527} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: -0.6281072, y: -0.032250635, z: 0.02411764, w: 0.77708405} + inSlope: {x: -0.6969607, y: 0.25885853, z: -0.17046794, w: -0.5534322} + outSlope: {x: -0.6969607, y: 0.25885853, z: -0.17046794, w: -0.5534322} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.73814046, y: -0.0017162487, z: 0.0014698128, w: 0.6746433} + inSlope: {x: -0.69379723, y: 0.12358604, z: -0.10811089, w: -0.75423634} + outSlope: {x: -0.69379723, y: 0.12358604, z: -0.10811089, w: -0.75423634} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.86666673 + value: {x: -0.81550694, y: 0.0075730747, z: -0.007924892, w: 0.57864344} + inSlope: {x: -0.33523056, y: -0.052057397, z: 0.0839439, w: -0.4720608} + outSlope: {x: -0.33523056, y: -0.052057397, z: 0.0839439, w: -0.4720608} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.8417139, y: 0.0009784307, z: 0.0032345867, w: 0.53991324} + inSlope: {x: 0.046925094, y: -0.0015392865, z: -0.0024605524, w: 0.072553515} + outSlope: {x: 0.046925094, y: -0.0015392865, z: -0.0024605524, w: 0.072553515} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2 + value: {x: -0.7788925, y: 0.012910732, z: -0.015069478, w: 0.62684345} + inSlope: {x: 0.50887007, y: 0.047683463, z: -0.06360515, w: 0.63186646} + outSlope: {x: 0.50887007, y: 0.047683463, z: -0.06360515, w: 0.63186646} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4666667 + value: {x: -0.63546973, y: 0.01530856, z: -0.018881552, w: 0.77174306} + inSlope: {x: 0.6627992, y: 0.04939127, z: -0.091140375, w: 0.54186654} + outSlope: {x: 0.6627992, y: 0.04939127, z: -0.091140375, w: 0.54186654} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7666668 + value: {x: -0.44135794, y: 0.0064751157, z: -0.037605286, w: 0.8965195} + inSlope: {x: 0.7681666, y: -0.08359748, z: -0.07803173, w: 0.37517345} + outSlope: {x: 0.7681666, y: -0.08359748, z: -0.07803173, w: 0.37517345} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9333334 + value: {x: -0.24173126, y: 0.00018624066, z: -0.03885027, w: 0.9695652} + inSlope: {x: 1.5370406, y: 0.07079716, z: -0.00837965, w: 0.3831882} + outSlope: {x: 1.5370406, y: 0.07079716, z: -0.00837965, w: 0.3831882} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9666668 + value: {x: -0.19038905, y: 0.0035570546, z: -0.040368922, w: 0.9808719} + inSlope: {x: 0.8680261, y: 0.08884196, z: -0.035922993, w: 0.18752986} + outSlope: {x: 0.8680261, y: 0.08884196, z: -0.035922993, w: 0.18752986} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.0333335 + value: {x: -0.21053939, y: 0.012263751, z: -0.040262092, w: 0.9766789} + inSlope: {x: -0.66422427, y: 0.11153176, z: 0.0034526829, w: -0.14097735} + outSlope: {x: -0.66422427, y: 0.11153176, z: 0.0034526829, w: -0.14097735} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.1000001 + value: {x: -0.24992494, y: 0.013910602, z: -0.04325605, w: 0.9671985} + inSlope: {x: -0.46385965, y: 0.0011355812, z: -0.07132375, w: -0.119864464} + outSlope: {x: -0.46385965, y: 0.0011355812, z: -0.07132375, w: -0.119864464} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.1333334 + value: {x: -0.25906846, y: 0.0136202285, z: -0.045769863, w: 0.96467775} + inSlope: {x: 0.06402618, y: -0.04003645, z: -0.04822287, w: 0.014679741} + outSlope: {x: 0.06402618, y: -0.04003645, z: -0.04822287, w: 0.014679741} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.24565654, y: 0.011241508, z: -0.046470907, w: 0.96817714} + inSlope: {x: -0.039783448, y: -0.121598214, z: -0.04764748, w: -0.011876833} + outSlope: {x: -0.039783448, y: -0.121598214, z: -0.04764748, w: -0.011876833} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.2333333 + value: {x: -0.27420256, y: 0.0015722689, z: -0.048411656, w: 0.96045136} + inSlope: {x: -0.30458844, y: -0.11078049, z: 0.020489994, w: -0.08492662} + outSlope: {x: -0.30458844, y: -0.11078049, z: 0.020489994, w: -0.08492662} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.4 + value: {x: -0.25032634, y: -0.0084663695, z: -0.043411832, w: 0.9671507} + inSlope: {x: 0.95215833, y: -0.0147837065, z: 0.06748238, w: 0.24101728} + outSlope: {x: 0.95215833, y: -0.0147837065, z: 0.06748238, w: 0.24101728} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.4666667 + value: {x: -0.16946119, y: 0.0011777413, z: -0.037360743, w: 0.98482776} + inSlope: {x: 0.7616997, y: 0.21365203, z: 0.043441758, w: 0.14584777} + outSlope: {x: 0.7616997, y: 0.21365203, z: 0.043441758, w: 0.14584777} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.5333335 + value: {x: -0.15593049, y: 0.006957534, z: -0.03675086, w: 0.98705965} + inSlope: {x: 0.066191174, y: 0.04730089, z: 0.011540718, w: 0.010683249} + outSlope: {x: 0.066191174, y: 0.04730089, z: 0.011540718, w: 0.010683249} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.6000001 + value: {x: -0.17122638, y: 0.00853799, z: -0.03637317, w: 0.98452306} + inSlope: {x: -0.5794232, y: -0.018861348, z: 0.0263705, w: -0.101764895} + outSlope: {x: -0.5794232, y: -0.018861348, z: 0.0263705, w: -0.101764895} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.8000002 + value: {x: -0.28219935, y: -0.003454509, z: -0.032633655, w: 0.95879436} + inSlope: {x: -0.34306827, y: -0.09657914, z: 0.052772902, w: -0.09914348} + outSlope: {x: -0.34306827, y: -0.09657914, z: 0.052772902, w: -0.09914348} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.2000003 + value: {x: -0.3407926, y: -0.01663358, z: -0.026233727, w: 0.9396252} + inSlope: {x: 0.0159846, y: -0.10557738, z: 0.069134414, w: 0.0058329008} + outSlope: {x: 0.0159846, y: -0.10557738, z: 0.069134414, w: 0.0058329008} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.7000003 + value: {x: -0.32492468, y: -0.023434727, z: -0.022525592, w: 0.94518113} + inSlope: {x: 0.025733039, y: 0.0268463, z: -0.019753411, w: 0.009043489} + outSlope: {x: 0.025733039, y: 0.0268463, z: -0.019753411, w: 0.009043489} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.32261992, y: -0.0017357175, z: -0.0365861, w: 0.9458197} + inSlope: {x: 0.010194192, y: 0.19849917, z: -0.13177247, w: -0.00025391602} + outSlope: {x: 0.010194192, y: 0.19849917, z: -0.13177247, w: -0.00025391602} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.37731013, y: 0.24051157, z: 0.24853642, w: 0.85908145} + inSlope: {x: -0.051865872, y: -0.08434697, z: -0.0045186277, w: 0.047467943} + outSlope: {x: -0.051865872, y: -0.08434697, z: -0.0045186277, w: 0.047467943} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: 0.3707397, y: 0.17076476, z: 0.23951027, w: 0.88092357} + inSlope: {x: 0.068318106, y: -0.3916542, z: -0.07037737, w: 0.06587685} + outSlope: {x: 0.068318106, y: -0.3916542, z: -0.07037737, w: 0.06587685} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5666667 + value: {x: 0.41849026, y: 0.09470302, z: 0.22650506, w: 0.8744099} + inSlope: {x: 0.7879616, y: -0.64676666, z: -0.12568519, w: -0.2767638} + outSlope: {x: 0.7879616, y: -0.64676666, z: -0.12568519, w: -0.2767638} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.5146955, y: 0.055550076, z: 0.21395315, w: 0.82838804} + inSlope: {x: 0.9902122, y: -0.11119434, z: -0.11597269, w: -0.5768511} + outSlope: {x: 0.9902122, y: -0.11119434, z: -0.11597269, w: -0.5768511} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.5679451, y: 0.04496946, z: 0.20501748, w: 0.7958542} + inSlope: {x: 0.46372998, y: -0.2643852, z: -0.17506197, w: -0.26627195} + outSlope: {x: 0.46372998, y: -0.2643852, z: -0.17506197, w: -0.26627195} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.90000004 + value: {x: 0.5831462, y: 0.024878573, z: 0.1494718, w: 0.7981102} + inSlope: {x: 0.28238827, y: 0.2291234, z: -0.53818965, w: -0.115931295} + outSlope: {x: 0.28238827, y: 0.2291234, z: -0.53818965, w: -0.115931295} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.67542285, y: 0.11508261, z: 0.019046841, w: 0.7281465} + inSlope: {x: 0.47154096, y: 0.61143816, z: -0.6102898, w: -0.51680046} + outSlope: {x: 0.47154096, y: 0.61143816, z: -0.6102898, w: -0.51680046} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2333333 + value: {x: 0.70484173, y: 0.18509093, z: -0.05551604, w: 0.6825375} + inSlope: {x: -0.005932999, y: 0.40455878, z: -0.56795746, w: -0.14748569} + outSlope: {x: -0.005932999, y: 0.40455878, z: -0.56795746, w: -0.14748569} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4333334 + value: {x: 0.71066636, y: 0.18260637, z: -0.1296843, w: 0.66692597} + inSlope: {x: 0.23613475, y: -0.19972955, z: -0.02013514, w: -0.20098436} + outSlope: {x: 0.23613475, y: -0.19972955, z: -0.02013514, w: -0.20098436} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6333334 + value: {x: 0.7429109, y: 0.18686815, z: -0.081934646, w: 0.6375346} + inSlope: {x: 0.0013777632, y: 0.23317628, z: 0.37709874, w: -0.022038838} + outSlope: {x: 0.0013777632, y: 0.23317628, z: 0.37709874, w: -0.022038838} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.8000001 + value: {x: 0.7089448, y: 0.2373286, z: -0.002245435, w: 0.664129} + inSlope: {x: -0.55616283, y: 0.4202708, z: 0.48575556, w: 0.44169408} + outSlope: {x: -0.55616283, y: 0.4202708, z: 0.48575556, w: 0.44169408} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9000001 + value: {x: 0.63415766, y: 0.2709672, z: 0.03145247, w: 0.7234857} + inSlope: {x: -0.8946928, y: 0.13422637, z: 0.34403118, w: 0.7160826} + outSlope: {x: -0.8946928, y: 0.13422637, z: 0.34403118, w: 0.7160826} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9333334 + value: {x: 0.602852, y: 0.27162895, z: 0.04339278, w: 0.7489354} + inSlope: {x: -0.96318847, y: 0.17358053, z: 0.2777991, w: 0.6971003} + outSlope: {x: -0.96318847, y: 0.17358053, z: 0.2777991, w: 0.6971003} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9666668 + value: {x: 0.56994504, y: 0.28253925, z: 0.049972415, w: 0.7699591} + inSlope: {x: -0.44366446, y: 0.22818744, z: -0.10340749, w: 0.265661} + outSlope: {x: -0.44366446, y: 0.22818744, z: -0.10340749, w: 0.265661} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.57327425, y: 0.28684145, z: 0.036499027, w: 0.7666462} + inSlope: {x: 0.63044095, y: -0.12310479, z: -0.71503687, w: -0.4228258} + outSlope: {x: 0.63044095, y: -0.12310479, z: -0.71503687, w: -0.4228258} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.0333335 + value: {x: 0.61197466, y: 0.27433217, z: 0.0023031372, w: 0.74177057} + inSlope: {x: 0.9385365, y: -0.26011685, z: -0.6004801, w: -0.651258} + outSlope: {x: 0.9385365, y: -0.26011685, z: -0.6004801, w: -0.651258} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.1000001 + value: {x: 0.6562561, y: 0.25677127, z: -0.0014609434, w: 0.7095029} + inSlope: {x: 0.539568, y: -0.4802902, z: 0.01742576, w: -0.32422394} + outSlope: {x: 0.539568, y: -0.4802902, z: 0.01742576, w: -0.32422394} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.6763689, y: 0.21812113, z: -0.009445949, w: 0.7034622} + inSlope: {x: -0.10502914, y: -0.4112456, z: -0.085535645, w: 0.22809796} + outSlope: {x: -0.10502914, y: -0.4112456, z: -0.085535645, w: 0.22809796} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.2 + value: {x: 0.6648128, y: 0.21006459, z: -0.008073841, w: 0.7168205} + inSlope: {x: -0.18393892, y: 0.009116836, z: 0.15889975, w: 0.17195748} + outSlope: {x: -0.18393892, y: 0.009116836, z: 0.15889975, w: 0.17195748} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.266667 + value: {x: 0.6670212, y: 0.2199011, z: 0.010708002, w: 0.7117665} + inSlope: {x: 0.13135652, y: -0.21593201, z: 0.35415262, w: -0.065551125} + outSlope: {x: 0.13135652, y: -0.21593201, z: 0.35415262, w: -0.065551125} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.67856705, y: 0.1903215, z: 0.034485247, w: 0.708615} + inSlope: {x: 0.19514072, y: -0.5241529, z: 0.26054716, w: -0.061172307} + outSlope: {x: 0.19514072, y: -0.5241529, z: 0.26054716, w: -0.061172307} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.4 + value: {x: 0.6943633, y: 0.13503492, z: 0.050499078, w: 0.70503545} + inSlope: {x: 0.22741309, y: -1.1563206, z: 0.26687676, w: -0.028372433} + outSlope: {x: 0.22741309, y: -1.1563206, z: 0.26687676, w: -0.028372433} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.4333334 + value: {x: 0.70103365, y: 0.09230201, z: 0.059919138, w: 0.70458627} + inSlope: {x: 0.105908915, y: -1.0216415, z: 0.2657063, w: 0.0191045} + outSlope: {x: 0.105908915, y: -1.0216415, z: 0.2657063, w: 0.0191045} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.5666668 + value: {x: 0.70104355, y: 0.02137002, z: 0.07796272, w: 0.7085218} + inSlope: {x: 0.055521782, y: -0.46445668, z: 0.06001415, w: -0.047856916} + outSlope: {x: 0.055521782, y: -0.46445668, z: 0.06001415, w: -0.047856916} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.7159231, y: 0.0010596456, z: 0.072094664, w: 0.6944461} + inSlope: {x: 0.16621664, y: 0.07888038, z: -0.18566805, w: -0.15215561} + outSlope: {x: 0.16621664, y: 0.07888038, z: -0.18566805, w: -0.15215561} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.74203455, y: 0.0032022167, z: 0.062391922, w: 0.66744417} + inSlope: {x: 0.1395197, y: 0.15555511, z: -0.06471774, w: -0.14981583} + outSlope: {x: 0.1395197, y: 0.15555511, z: -0.06471774, w: -0.14981583} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.7695158, y: 0.055301256, z: 0.06448325, w: 0.6329527} + inSlope: {x: 0.028810434, y: 0.072036944, z: -0.010833661, w: -0.04004172} + outSlope: {x: 0.028810434, y: 0.072036944, z: -0.010833661, w: -0.04004172} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.6000001 + value: {x: 0.7720019, y: 0.05428607, z: 0.072212055, w: 0.6291673} + inSlope: {x: -0.004614298, y: 0.02223587, z: -0.005418291, w: 0.0043675345} + outSlope: {x: -0.004614298, y: 0.02223587, z: -0.005418291, w: 0.0043675345} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.766667 + value: {x: 0.7701781, y: 0.05313613, z: 0.07961689, w: 0.6306056} + inSlope: {x: -0.034717653, y: -0.094841555, z: 0.22046036, w: 0.022359809} + outSlope: {x: -0.034717653, y: -0.094841555, z: 0.22046036, w: 0.022359809} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.76784986, y: 0.046740994, z: 0.094411954, w: 0.6319085} + inSlope: {x: -0.032604963, y: -0.09326944, z: 0.20821673, w: 0.016817467} + outSlope: {x: -0.032604963, y: -0.09326944, z: 0.20821673, w: 0.016817467} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.16647093, y: 0.16793856, z: -0.1291005, w: 0.96302503} + inSlope: {x: 0.000016540289, y: -0.000007152557, z: -0.0000017881392, w: -0.0000017881392} + outSlope: {x: 0.000016540289, y: -0.000007152557, z: -0.0000017881392, w: -0.0000017881392} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6333334 + value: {x: 0.16960588, y: 0.16954911, z: -0.12793818, w: 0.96235067} + inSlope: {x: 0.0013589872, y: -0.008115925, z: -0.0053610704, w: 0.00047832774} + outSlope: {x: 0.0013589872, y: -0.008115925, z: -0.0053610704, w: 0.00047832774} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9333334 + value: {x: 0.17577216, y: 0.1623968, z: -0.13234906, w: 0.9618811} + inSlope: {x: 0.07989469, y: -0.07673231, z: -0.044685543, w: -0.007842779} + outSlope: {x: 0.07989469, y: -0.07673231, z: -0.044685543, w: -0.007842779} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9666668 + value: {x: 0.17807424, y: 0.15908188, z: -0.13428888, w: 0.96174276} + inSlope: {x: -0.34603852, y: 0.06677693, z: 0.06713665, w: 0.056625277} + outSlope: {x: -0.34603852, y: 0.06677693, z: 0.06713665, w: 0.056625277} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.15270305, y: 0.16684856, z: -0.12787332, w: 0.9656561} + inSlope: {x: -0.6199584, y: 0.06135171, z: 0.13488692, w: 0.108981684} + outSlope: {x: -0.6199584, y: 0.06135171, z: 0.13488692, w: 0.108981684} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.1000001 + value: {x: 0.12163253, y: 0.13693605, z: -0.12663662, w: 0.97489345} + inSlope: {x: -0.058828052, y: -0.3221012, z: 0.0066657425, w: 0.055426113} + outSlope: {x: -0.058828052, y: -0.3221012, z: 0.0066657425, w: 0.055426113} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.1333334 + value: {x: 0.12509637, y: 0.13097587, z: -0.12569469, w: 0.97539586} + inSlope: {x: 0.45227543, y: 0.18993813, z: 0.053554825, w: -0.084722124} + outSlope: {x: 0.45227543, y: 0.18993813, z: 0.053554825, w: -0.084722124} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.1517842, y: 0.14959858, z: -0.123066306, w: 0.9692453} + inSlope: {x: 1.167588, y: 0.659966, z: 0.1899901, w: -0.279254} + outSlope: {x: 1.167588, y: 0.659966, z: 0.1899901, w: -0.279254} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.2 + value: {x: 0.20293549, y: 0.17497356, z: -0.1130287, w: 0.95677894} + inSlope: {x: 1.0794084, y: 0.2298767, z: 0.23051205, w: -0.22063604} + outSlope: {x: 1.0794084, y: 0.2298767, z: 0.23051205, w: -0.22063604} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.2333333 + value: {x: 0.22374469, y: 0.16492368, z: -0.10769885, w: 0.95453626} + inSlope: {x: 0.6456225, y: -0.41372636, z: 0.14341393, w: -0.06568624} + outSlope: {x: 0.6456225, y: -0.41372636, z: 0.14341393, w: -0.06568624} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.4 + value: {x: 0.2712981, y: 0.07847217, z: -0.1066725, w: 0.9533417} + inSlope: {x: -0.4482892, y: -0.39280128, z: -0.25800258, w: 0.12797368} + outSlope: {x: -0.4482892, y: -0.39280128, z: -0.25800258, w: 0.12797368} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.4666667 + value: {x: 0.23559645, y: 0.055030707, z: -0.12130175, w: 0.9626795} + inSlope: {x: -0.20153256, y: -0.3244539, z: -0.08105381, w: 0.059852652} + outSlope: {x: -0.20153256, y: -0.3244539, z: -0.08105381, w: 0.059852652} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.6000001 + value: {x: 0.2574716, y: 0.03814238, z: -0.12463983, w: 0.95745414} + inSlope: {x: 0.14631957, y: 0.009118457, z: -0.0014632582, w: -0.03978882} + outSlope: {x: 0.14631957, y: 0.009118457, z: -0.0014632582, w: -0.03978882} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.9 + value: {x: 0.28390488, y: 0.04195073, z: -0.1246315, w: 0.9497922} + inSlope: {x: -0.023012035, y: -0.0033091786, z: -0.00006392604, w: 0.00700236} + outSlope: {x: -0.023012035, y: -0.0033091786, z: -0.00006392604, w: 0.00700236} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.3000002 + value: {x: 0.27154413, y: 0.040171657, z: -0.12465244, w: 0.95347357} + inSlope: {x: -0.028119411, y: -0.0040496923, z: -0.000017546134, w: 0.008182533} + outSlope: {x: -0.028119411, y: -0.0040496923, z: -0.000017546134, w: 0.008182533} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.2696511, y: 0.039899014, z: -0.12465328, w: 0.954022} + inSlope: {x: 0.00947536, y: 0.0013710571, z: -0.000009164223, w: -0.0027340676} + outSlope: {x: 0.00947536, y: 0.0013710571, z: -0.000009164223, w: -0.0027340676} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot/mixamorig:LeftToeBase + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.019022241, y: -0.016064351, z: 0.71364856, w: -0.7000613} + inSlope: {x: -0.019161196, y: -0.025989542, z: -0.03902435, w: -0.039607283} + outSlope: {x: -0.019161196, y: -0.025989542, z: -0.03902435, w: -0.039607283} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: 0.0041200463, y: -0.029526768, z: 0.7009296, w: -0.7126072} + inSlope: {x: 0.019180143, y: -0.0066100536, z: 0.09269268, w: 0.09203286} + outSlope: {x: 0.019180143, y: -0.0066100536, z: 0.09269268, w: 0.09203286} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: 0.048237238, y: -0.014485352, z: 0.7741702, w: -0.63097054} + inSlope: {x: 0.24283913, y: 0.09158016, z: 0.30840194, w: 0.39103088} + outSlope: {x: 0.24283913, y: 0.09158016, z: 0.30840194, w: 0.39103088} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.05648755, y: -0.022296991, z: 0.78755856, w: -0.6132403} + inSlope: {x: 0.035539493, y: -0.09564474, z: 0.029430076, w: 0.044732966} + outSlope: {x: 0.035539493, y: -0.09564474, z: 0.029430076, w: 0.044732966} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.70000005 + value: {x: 0.057756282, y: -0.02602225, z: 0.78920346, w: -0.6108559} + inSlope: {x: -0.018639171, y: -0.35623705, z: 0.10101204, w: 0.14965215} + outSlope: {x: -0.018639171, y: -0.35623705, z: 0.10101204, w: 0.14965215} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.05524494, y: -0.04604611, z: 0.7942927, w: -0.6032635} + inSlope: {x: -0.15198737, y: -0.54750717, z: 0.09900665, w: 0.15635319} + outSlope: {x: -0.15198737, y: -0.54750717, z: 0.09900665, w: 0.15635319} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000001 + value: {x: 0.046554007, y: -0.08894705, z: 0.7979398, w: -0.5943175} + inSlope: {x: 0.035280272, y: -1.0079539, z: 0.026346413, w: 0.20143571} + outSlope: {x: 0.035280272, y: -1.0079539, z: 0.026346413, w: 0.20143571} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.86666673 + value: {x: 0.046740904, y: -0.1674584, z: 0.79252714, w: -0.5845286} + inSlope: {x: -0.3074041, y: -0.6393701, z: -0.2785064, w: -0.22736487} + outSlope: {x: -0.3074041, y: -0.6393701, z: -0.2785064, w: -0.22736487} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.90000004 + value: {x: 0.02948221, y: -0.17234433, z: 0.77899325, w: -0.60216093} + inSlope: {x: -0.46826392, y: -0.10619317, z: -0.38913584, w: -0.49866384} + outSlope: {x: -0.46826392, y: -0.10619317, z: -0.38913584, w: -0.49866384} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.00076413405, y: -0.14436355, z: 0.7638942, w: -0.6289868} + inSlope: {x: -0.22223115, y: 1.149107, z: 0.090527944, w: -0.13163294} + outSlope: {x: -0.22223115, y: 1.149107, z: 0.090527944, w: -0.13163294} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.012659118, y: -0.024894781, z: 0.7819622, w: -0.62269986} + inSlope: {x: -0.07484367, y: 2.1652503, z: 0.4721497, w: 0.52670497} + outSlope: {x: -0.07484367, y: 2.1652503, z: 0.4721497, w: 0.52670497} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1333334 + value: {x: -0.016803766, y: 0.12395568, z: 0.8152588, w: -0.5654253} + inSlope: {x: -0.19191156, y: 2.0564656, z: 0.31721365, w: 0.8904085} + outSlope: {x: -0.19191156, y: 2.0564656, z: 0.31721365, w: 0.8904085} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2 + value: {x: -0.035036292, y: 0.22551186, z: 0.8244292, w: -0.5179125} + inSlope: {x: -0.15943943, y: 0.73118335, z: 0.13733907, w: 0.5251878} + outSlope: {x: -0.15943943, y: 0.73118335, z: 0.13733907, w: 0.5251878} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3000001 + value: {x: -0.016763449, y: 0.21224831, z: 0.86485916, w: -0.45462984} + inSlope: {x: 0.22631662, y: -0.4086584, z: 0.67251897, w: 1.0971605} + outSlope: {x: 0.22631662, y: -0.4086584, z: 0.67251897, w: 1.0971605} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4000001 + value: {x: -0.05063651, y: 0.21112992, z: 0.92851907, w: -0.30118507} + inSlope: {x: -0.841429, y: 0.84498763, z: 0.26553893, w: 1.5700433} + outSlope: {x: -0.841429, y: 0.84498763, z: 0.26553893, w: 1.5700433} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5000001 + value: {x: -0.1252105, y: 0.3547288, z: 0.91209775, w: -0.16299571} + inSlope: {x: -0.525938, y: 1.4310054, z: -0.38322836, w: 1.3286417} + outSlope: {x: -0.525938, y: 1.4310054, z: -0.38322836, w: 1.3286417} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.1494879, y: 0.41779184, z: 0.89215386, w: -0.0846452} + inSlope: {x: -0.15889078, y: 0.1046378, z: 0.0069134682, w: 0.76669127} + outSlope: {x: -0.15889078, y: 0.1046378, z: 0.0069134682, w: 0.76669127} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6000001 + value: {x: -0.1512052, y: 0.40487278, z: 0.89924926, w: -0.06757039} + inSlope: {x: -0.08621177, y: -0.010408521, z: 0.0015177578, w: 0.1260988} + outSlope: {x: -0.08621177, y: -0.010408521, z: 0.0015177578, w: 0.1260988} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.15625511, y: 0.42288384, z: 0.8876169, w: -0.09428622} + inSlope: {x: 0.0071509983, y: 0.02784985, z: -0.07797815, w: -0.60940504} + outSlope: {x: 0.0071509983, y: 0.02784985, z: -0.07797815, w: -0.60940504} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7666668 + value: {x: -0.13536854, y: 0.37158826, z: 0.9032134, w: -0.16674273} + inSlope: {x: 0.4633468, y: -0.93608916, z: 0.3191179, w: -0.7183995} + outSlope: {x: 0.4633468, y: -0.93608916, z: 0.3191179, w: -0.7183995} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.8000001 + value: {x: -0.11791592, y: 0.3365629, z: 0.91527754, w: -0.18731873} + inSlope: {x: 0.353644, y: -0.54120636, z: 0.16939239, w: -0.44647783} + outSlope: {x: 0.353644, y: -0.54120636, z: 0.16939239, w: -0.44647783} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.8666668 + value: {x: -0.12173271, y: 0.3555453, z: 0.90716904, w: -0.18924326} + inSlope: {x: -0.2579862, y: 0.47731322, z: -0.14648859, w: 0.35492325} + outSlope: {x: -0.2579862, y: 0.47731322, z: -0.14648859, w: 0.35492325} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9333334 + value: {x: -0.12008833, y: 0.37000278, z: 0.9080769, w: -0.15515523} + inSlope: {x: 0.42008683, y: -0.039443426, z: 0.16359036, w: 0.5586475} + outSlope: {x: 0.42008683, y: -0.039443426, z: 0.16359036, w: 0.5586475} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.0333335 + value: {x: -0.07869743, y: 0.3555111, z: 0.9267041, w: -0.09294175} + inSlope: {x: 0.20938945, y: -0.028282352, z: 0.08184012, w: 0.50557286} + outSlope: {x: 0.20938945, y: -0.028282352, z: 0.08184012, w: 0.50557286} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.2 + value: {x: -0.036097545, y: 0.3680614, z: 0.9278772, w: -0.0476629} + inSlope: {x: 0.3573061, y: 0.17045857, z: -0.04441474, w: 0.17866033} + outSlope: {x: 0.3573061, y: 0.17045857, z: -0.04441474, w: 0.17866033} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.4333334 + value: {x: 0.05949361, y: 0.40369695, z: 0.9081164, w: -0.093882546} + inSlope: {x: 0.3631097, y: 0.15513375, z: -0.13390851, w: -0.39943272} + outSlope: {x: 0.3631097, y: 0.15513375, z: -0.13390851, w: -0.39943272} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.6333334 + value: {x: 0.09107648, y: 0.4046507, z: 0.8957225, w: -0.16013782} + inSlope: {x: 0.0009620199, y: -0.2134951, z: 0.07552393, w: -0.116377585} + outSlope: {x: 0.0009620199, y: -0.2134951, z: 0.07552393, w: -0.116377585} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.8666668 + value: {x: 0.105111726, y: 0.34552237, z: 0.92338616, w: -0.13009173} + inSlope: {x: 0.13405538, y: -0.26774418, z: 0.12786102, w: 0.30534387} + outSlope: {x: 0.13405538, y: -0.26774418, z: 0.12786102, w: 0.30534387} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.2333336 + value: {x: 0.108317904, y: 0.2582429, z: 0.9588986, w: -0.045732222} + inSlope: {x: -0.036269534, y: -0.12671751, z: 0.043456297, w: 0.107864186} + outSlope: {x: -0.036269534, y: -0.12671751, z: 0.043456297, w: 0.107864186} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.05409041, y: 0.23794858, z: 0.9689452, w: -0.039999165} + inSlope: {x: -0.07387693, y: 0.014547869, z: 0.00061690866, w: -0.00079304056} + outSlope: {x: -0.07387693, y: 0.014547869, z: 0.00061690866, w: -0.00079304056} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:RightUpLeg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.83568704, y: 0.24818817, z: -0.2953634, w: 0.39088413} + inSlope: {x: 0.0038301942, y: 0.010960846, z: -0.02301514, w: -0.016207695} + outSlope: {x: 0.0038301942, y: 0.010960846, z: -0.02301514, w: -0.016207695} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: -0.8349826, y: 0.24886812, z: -0.30076897, w: 0.38782316} + inSlope: {x: -0.023885954, y: -0.06098111, z: 0.06431129, w: 0.03733007} + outSlope: {x: -0.023885954, y: -0.06098111, z: 0.06431129, w: 0.03733007} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.84054685, y: 0.21604837, z: -0.22156198, w: 0.44465086} + inSlope: {x: 0.04671066, y: -0.14014745, z: 0.49952698, w: 0.40231213} + outSlope: {x: 0.04671066, y: -0.14014745, z: 0.49952698, w: 0.40231213} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.8351648, y: 0.20621644, z: -0.18287195, w: 0.47595423} + inSlope: {x: 0.09052457, y: -0.12094397, z: 0.51704395, w: 0.41614705} + outSlope: {x: 0.09052457, y: -0.12094397, z: 0.51704395, w: 0.41614705} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000001 + value: {x: -0.8326949, y: 0.19256926, z: -0.14466555, w: 0.49860623} + inSlope: {x: -0.020795178, y: -0.41846204, z: 0.89535904, w: 0.3731454} + outSlope: {x: -0.020795178, y: -0.41846204, z: 0.89535904, w: 0.3731454} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.86666673 + value: {x: -0.83279043, y: 0.1584364, z: -0.0757815, w: 0.52499074} + inSlope: {x: -0.028171293, y: -0.41274405, z: 0.75728387, w: 0.2057986} + outSlope: {x: -0.028171293, y: -0.41274405, z: 0.75728387, w: 0.2057986} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9333334 + value: {x: -0.8402305, y: 0.13637353, z: -0.042263478, w: 0.52309537} + inSlope: {x: -0.13814628, y: -0.3722493, z: 0.5314609, w: -0.08386821} + outSlope: {x: -0.13814628, y: -0.3722493, z: 0.5314609, w: -0.08386821} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0333334 + value: {x: -0.8500373, y: 0.097066596, z: 0.011066739, w: 0.5175831} + inSlope: {x: 0.03537034, y: -0.47226527, z: 0.684268, w: 0.12067975} + outSlope: {x: 0.03537034, y: -0.47226527, z: 0.684268, w: 0.12067975} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.81337243, y: 0.016639603, z: 0.13512635, w: 0.5655877} + inSlope: {x: 0.61115354, y: -0.50187385, z: 0.81147933, w: 0.6974537} + outSlope: {x: 0.61115354, y: -0.50187385, z: 0.81147933, w: 0.6974537} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666668 + value: {x: -0.7361403, y: -0.029372586, z: 0.20940746, w: 0.64294887} + inSlope: {x: 1.1298738, y: -0.48322827, z: 0.71748877, w: 1.0169616} + outSlope: {x: 1.1298738, y: -0.48322827, z: 0.71748877, w: 1.0169616} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.6363329, y: -0.073409535, z: 0.2645772, w: 0.7208955} + inSlope: {x: 1.7484035, y: -0.8645512, z: 0.9614166, w: 1.0950558} + outSlope: {x: 1.7484035, y: -0.8645512, z: 0.9614166, w: 1.0950558} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4000001 + value: {x: -0.53420615, y: -0.12779362, z: 0.32438973, w: 0.7701064} + inSlope: {x: 0.70076084, y: -0.3657761, z: 0.41309455, w: 0.28156248} + outSlope: {x: 0.70076084, y: -0.3657761, z: 0.41309455, w: 0.28156248} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5000001 + value: {x: -0.5590475, y: -0.10519091, z: 0.28753936, w: 0.7705335} + inSlope: {x: -0.3057382, y: 0.3491699, z: -0.6502706, w: 0.07180639} + outSlope: {x: -0.3057382, y: 0.3491699, z: -0.6502706, w: 0.07180639} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.55391747, y: -0.09062439, z: 0.24887018, w: 0.78932023} + inSlope: {x: 0.49018905, y: 0.051256124, z: -0.46339023, w: 0.49215353} + outSlope: {x: 0.49018905, y: 0.051256124, z: -0.46339023, w: 0.49215353} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6000001 + value: {x: -0.53146785, y: -0.0918743, z: 0.23584703, w: 0.8083794} + inSlope: {x: 0.558817, y: 0.15187627, z: -0.53141916, w: 0.53880167} + outSlope: {x: 0.558817, y: 0.15187627, z: -0.53141916, w: 0.53880167} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.4820766, y: -0.06792706, z: 0.18937992, w: 0.85271525} + inSlope: {x: 1.4188931, y: 0.37887132, z: -0.6851785, w: 0.95925903} + outSlope: {x: 1.4188931, y: 0.37887132, z: -0.6851785, w: 0.95925903} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7333335 + value: {x: -0.33756766, y: -0.04404855, z: 0.14550519, w: 0.9289435} + inSlope: {x: 2.8056521, y: 0.32292777, z: -1.091764, w: 1.1633804} + outSlope: {x: 2.8056521, y: 0.32292777, z: -1.091764, w: 1.1633804} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7666668 + value: {x: -0.23502657, y: -0.03371272, z: 0.09497942, w: 0.96674967} + inSlope: {x: 2.7379293, y: 0.14483842, z: -0.9986773, w: 0.82809347} + outSlope: {x: 2.7379293, y: 0.14483842, z: -0.9986773, w: 0.82809347} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.8000001 + value: {x: -0.1550392, y: -0.034392666, z: 0.078926764, w: 0.9841497} + inSlope: {x: 0.8348936, y: 0.18660043, z: -0.39015853, w: 0.21572222} + outSlope: {x: 0.8348936, y: 0.18660043, z: -0.39015853, w: 0.21572222} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.17936705, y: -0.021272702, z: 0.06896888, w: 0.98113114} + inSlope: {x: -1.1572901, y: 0.41300106, z: -0.35802466, w: -0.195952} + outSlope: {x: -1.1572901, y: 0.41300106, z: -0.35802466, w: -0.195952} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.8666668 + value: {x: -0.232192, y: -0.006859238, z: 0.055058427, w: 0.9710862} + inSlope: {x: -1.3639405, y: 0.37350968, z: -0.3714141, w: -0.2906448} + outSlope: {x: -1.3639405, y: 0.37350968, z: -0.3714141, w: -0.2906448} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9333334 + value: {x: -0.29654232, y: 0.010353006, z: 0.035939686, w: 0.9542871} + inSlope: {x: -0.82647145, y: 0.14335157, z: -0.18458936, w: -0.25210145} + outSlope: {x: -0.82647145, y: 0.14335157, z: -0.18458936, w: -0.25210145} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.34320715, y: 0.013723482, z: 0.031371452, w: 0.93863535} + inSlope: {x: -0.43425208, y: -0.006215252, z: 0.0012841811, w: -0.15701567} + outSlope: {x: -0.43425208, y: -0.006215252, z: 0.0012841811, w: -0.15701567} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.38106686, y: 0.009377033, z: 0.030817583, w: 0.92398614} + inSlope: {x: 0.07381447, y: -0.034235537, z: 0.00025198795, w: 0.030474395} + outSlope: {x: 0.07381447, y: -0.034235537, z: 0.00025198795, w: 0.030474395} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.39148363, y: 0.0064059445, z: 0.03133129, w: 0.9196292} + inSlope: {x: -0.21610892, y: -0.0020001545, z: -0.007473005, w: -0.09172806} + outSlope: {x: -0.21610892, y: -0.0020001545, z: -0.007473005, w: -0.09172806} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.6333334 + value: {x: -0.37628013, y: 0.0033445181, z: 0.037185937, w: 0.92575336} + inSlope: {x: 0.41379103, y: -0.048719734, z: 0.0028444852, w: 0.16784385} + outSlope: {x: 0.41379103, y: -0.048719734, z: 0.0028444852, w: 0.16784385} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.29937723, y: -0.01468103, z: 0.04086749, w: 0.95314616} + inSlope: {x: 0.2894343, y: -0.03859704, z: 0.0031131536, w: 0.09010443} + outSlope: {x: 0.2894343, y: -0.03859704, z: 0.0031131536, w: 0.09010443} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.21750537, y: -0.018490728, z: 0.041397676, w: 0.9750055} + inSlope: {x: 0.08299029, y: -0.04838877, z: 0.023841903, w: 0.016601058} + outSlope: {x: 0.08299029, y: -0.04838877, z: 0.023841903, w: 0.016601058} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.7000003 + value: {x: -0.22921285, y: -0.014151814, z: 0.040132407, w: 0.97244567} + inSlope: {x: -0.041487843, y: 0.04290758, z: -0.019440604, w: -0.008351481} + outSlope: {x: -0.041487843, y: 0.04290758, z: -0.019440604, w: -0.008351481} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.23444244, y: 0.008579971, z: 0.029145066, w: 0.97165513} + inSlope: {x: -0.025190437, y: 0.2036182, z: -0.09940053, w: -0.0040036477} + outSlope: {x: -0.025190437, y: 0.2036182, z: -0.09940053, w: -0.0040036477} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.6206804, y: 0.26040453, z: 0.063659996, w: 0.73681253} + inSlope: {x: -0.011703371, y: 0.012634992, z: 0.002897456, w: 0.005139112} + outSlope: {x: -0.011703371, y: 0.012634992, z: 0.002897456, w: 0.005139112} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.62756926, y: 0.24307062, z: 0.068817146, w: 0.7364359} + inSlope: {x: 0.117745355, y: -0.27241623, z: 0.04281105, w: -0.014529519} + outSlope: {x: 0.117745355, y: -0.27241623, z: 0.04281105, w: -0.014529519} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.65815395, y: 0.19677411, z: 0.05712722, w: 0.7244652} + inSlope: {x: 0.20112905, y: -0.103833504, z: -0.22397724, w: -0.13670416} + outSlope: {x: 0.20112905, y: -0.103833504, z: -0.22397724, w: -0.13670416} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.67556375, y: 0.1934333, z: 0.0022275716, w: 0.71147186} + inSlope: {x: 0.058416788, y: 0.041014057, z: -0.5321764, w: -0.06408427} + outSlope: {x: 0.058416788, y: 0.041014057, z: -0.5321764, w: -0.06408427} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7666667 + value: {x: 0.6753154, y: 0.1967155, z: -0.014602657, w: 0.7106609} + inSlope: {x: 0.19819094, y: -0.026482325, z: -0.24465987, w: -0.18652959} + outSlope: {x: 0.19819094, y: -0.026482325, z: -0.24465987, w: -0.18652959} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.7092154, y: 0.1596692, z: -0.015598346, w: 0.6864954} + inSlope: {x: 0.45896906, y: -1.3163025, z: -0.38615596, w: -0.2007957} + outSlope: {x: 0.45896906, y: -1.3163025, z: -0.38615596, w: -0.2007957} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.86666673 + value: {x: 0.7193744, y: 0.10391429, z: -0.03982685, w: 0.68565017} + inSlope: {x: 0.027554974, y: -1.026795, z: -0.54758966, w: 0.13128266} + outSlope: {x: 0.027554974, y: -1.026795, z: -0.54758966, w: 0.13128266} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.90000004 + value: {x: 0.7110524, y: 0.09121617, z: -0.05210433, w: 0.6952476} + inSlope: {x: 0.023240209, y: -0.5243397, z: -0.49757075, w: 0.0007521659} + outSlope: {x: 0.023240209, y: -0.5243397, z: -0.49757075, w: 0.0007521659} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9666667 + value: {x: 0.7376682, y: 0.032117274, z: -0.102797344, w: 0.66651845} + inSlope: {x: 0.3605876, y: -1.0753173, z: -0.8785385, w: -0.47554} + outSlope: {x: 0.3605876, y: -1.0753173, z: -0.8785385, w: -0.47554} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0333334 + value: {x: 0.7322768, y: -0.022372039, z: -0.14993727, w: 0.6639195} + inSlope: {x: -0.7229332, y: -0.48459637, z: -0.30928886, w: 0.6913959} + outSlope: {x: -0.7229332, y: -0.48459637, z: -0.30928886, w: 0.6913959} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.6513202, y: -0.04832629, z: -0.14176853, w: 0.74387383} + inSlope: {x: -1.4621646, y: -0.2992683, z: 0.37765482, w: 1.3258014} + outSlope: {x: -1.4621646, y: -0.2992683, z: 0.37765482, w: 1.3258014} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1333334 + value: {x: 0.59928966, y: -0.054987133, z: -0.1270097, w: 0.78847754} + inSlope: {x: -1.5450047, y: -0.01088015, z: 0.3751405, w: 1.2412455} + outSlope: {x: -1.5450047, y: -0.01088015, z: 0.3751405, w: 1.2412455} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2 + value: {x: 0.53062344, y: -0.051050607, z: -0.13510603, w: 0.83521193} + inSlope: {x: 0.13463363, y: -0.3860385, z: -1.0453153, w: -0.3146574} + outSlope: {x: 0.13463363, y: -0.3860385, z: -1.0453153, w: -0.3146574} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2333333 + value: {x: 0.5572954, y: -0.074787535, z: -0.18644676, w: 0.8056465} + inSlope: {x: 1.0167474, y: -0.8160471, z: -1.5966412, w: -1.1791825} + outSlope: {x: 1.0167474, y: -0.8160471, z: -1.5966412, w: -1.1791825} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666668 + value: {x: 0.5984067, y: -0.105453804, z: -0.24154887, w: 0.75659966} + inSlope: {x: 1.0745472, y: -0.8177996, z: -1.3494458, w: -1.3586806} + outSlope: {x: 1.0745472, y: -0.8177996, z: -1.3494458, w: -1.3586806} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.6350786, y: -0.14518978, z: -0.29016075, w: 0.7010006} + inSlope: {x: -0.29839644, y: -0.39482188, z: -0.2207844, w: 0.091629505} + outSlope: {x: -0.29839644, y: -0.39482188, z: -0.2207844, w: 0.091629505} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3666668 + value: {x: 0.6090388, y: -0.15562904, z: -0.29112887, w: 0.7211764} + inSlope: {x: -0.845083, y: -0.08975718, z: 0.05400236, w: 0.71086454} + outSlope: {x: -0.845083, y: -0.08975718, z: 0.05400236, w: 0.71086454} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4000001 + value: {x: 0.5787397, y: -0.15117362, z: -0.2865606, w: 0.74839157} + inSlope: {x: -0.6208417, y: -0.0041169673, z: 0.35027358, w: 0.6233692} + outSlope: {x: -0.6208417, y: -0.0041169673, z: 0.35027358, w: 0.6233692} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5000001 + value: {x: 0.5704574, y: -0.17622417, z: -0.19540754, w: 0.7780355} + inSlope: {x: 0.0072731655, y: -0.2869811, z: 1.2696412, w: 0.24661285} + outSlope: {x: 0.0072731655, y: -0.2869811, z: 1.2696412, w: 0.24661285} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.56815565, y: -0.1861468, z: -0.113211825, w: 0.79355633} + inSlope: {x: 0.107134245, y: 0.09427351, z: 0.95758426, w: 0.089269415} + outSlope: {x: 0.107134245, y: 0.09427351, z: 0.95758426, w: 0.089269415} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6000001 + value: {x: 0.5762461, y: -0.17839462, z: -0.08790185, w: 0.79270995} + inSlope: {x: 0.15897514, y: 0.35128146, z: 0.38723242, w: 0.011276063} + outSlope: {x: 0.15897514, y: 0.35128146, z: 0.38723242, w: 0.011276063} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.57533014, y: -0.14866064, z: -0.08846004, w: 0.79941857} + inSlope: {x: -0.32597634, y: 0.32561022, z: -0.066421166, w: 0.2844253} + outSlope: {x: -0.32597634, y: 0.32561022, z: -0.066421166, w: 0.2844253} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7333335 + value: {x: 0.5266437, y: -0.14066386, z: -0.09193493, w: 0.8333115} + inSlope: {x: -1.1002898, y: -0.0760501, z: 0.40433413, w: 0.7089155} + outSlope: {x: -1.1002898, y: -0.0760501, z: 0.40433413, w: 0.7089155} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7666668 + value: {x: 0.48366958, y: -0.1460907, z: -0.064868756, w: 0.8605308} + inSlope: {x: -0.5666203, y: -0.13991645, z: 0.40017155, w: 0.35359594} + outSlope: {x: -0.5666203, y: -0.13991645, z: 0.40017155, w: 0.35359594} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.8000001 + value: {x: 0.48886904, y: -0.14999162, z: -0.06525685, w: 0.85688454} + inSlope: {x: 0.70860994, y: -0.26122394, z: -0.5044822, w: -0.52321273} + outSlope: {x: 0.70860994, y: -0.26122394, z: -0.5044822, w: -0.52321273} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.5309102, y: -0.16350561, z: -0.09850087, w: 0.82565} + inSlope: {x: 1.2089517, y: -0.05252941, z: -0.9292634, w: -0.89114094} + outSlope: {x: 1.2089517, y: -0.05252941, z: -0.9292634, w: -0.89114094} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.8666668 + value: {x: 0.5694659, y: -0.15349354, z: -0.12720779, w: 0.7974751} + inSlope: {x: 0.5323168, y: 0.5265118, z: -0.4682367, w: -0.32975852} + outSlope: {x: 0.5323168, y: 0.5265118, z: -0.4682367, w: -0.32975852} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9333334 + value: {x: 0.5502101, y: -0.11347332, z: -0.11966637, w: 0.8185797} + inSlope: {x: -0.014199555, y: 0.17320824, z: 0.54959804, w: 0.11208733} + outSlope: {x: -0.014199555, y: 0.17320824, z: 0.54959804, w: 0.11208733} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9666668 + value: {x: 0.5654515, y: -0.11685763, z: -0.093076795, w: 0.81113845} + inSlope: {x: 0.37752455, y: 0.11292445, z: 0.66002107, w: -0.16680922} + outSlope: {x: 0.37752455, y: 0.11292445, z: 0.66002107, w: -0.16680922} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.0666668 + value: {x: 0.57883537, y: -0.07441848, z: -0.044615645, w: 0.810815} + inSlope: {x: 0.04453008, y: 0.2925544, z: 0.43931574, w: 0.02052607} + outSlope: {x: 0.04453008, y: 0.2925544, z: 0.43931574, w: 0.02052607} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.57553244, y: -0.064835414, z: -0.0032012328, w: 0.8151985} + inSlope: {x: -0.14355554, y: 0.12524648, z: 0.3323307, w: 0.11247408} + outSlope: {x: -0.14355554, y: 0.12524648, z: 0.3323307, w: 0.11247408} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.3666668 + value: {x: 0.59049296, y: -0.07106829, z: 0.018355798, w: 0.80369794} + inSlope: {x: 0.11337708, y: -0.24589488, z: -0.08746829, w: -0.10306487} + outSlope: {x: 0.11337708, y: -0.24589488, z: -0.08746829, w: -0.10306487} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.5666668 + value: {x: 0.5748678, y: -0.10085215, z: -0.023347879, w: 0.81167156} + inSlope: {x: -0.23674719, y: -0.011608947, z: -0.18434244, w: 0.16056433} + outSlope: {x: -0.23674719, y: -0.011608947, z: -0.18434244, w: 0.16056433} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.8000002 + value: {x: 0.5109281, y: -0.086705536, z: -0.039501924, w: 0.8543268} + inSlope: {x: -0.1420383, y: 0.20297736, z: -0.0025002123, w: 0.10551016} + outSlope: {x: -0.1420383, y: 0.20297736, z: -0.0025002123, w: 0.10551016} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.4796768, y: -0.055066623, z: -0.01624169, w: 0.875565} + inSlope: {x: 0.01039664, y: 0.016197758, z: 0.0193775, w: -0.0043219123} + outSlope: {x: 0.01039664, y: 0.016197758, z: 0.0193775, w: -0.0043219123} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.5000002 + value: {x: 0.4897339, y: -0.073321454, z: -0.0071444255, w: 0.8687541} + inSlope: {x: 0.035034154, y: -0.11128843, z: 0.034453873, w: -0.028827514} + outSlope: {x: 0.035034154, y: -0.11128843, z: 0.034453873, w: -0.028827514} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.766667 + value: {x: 0.49625993, y: -0.10907497, z: 0.006463256, w: 0.86127055} + inSlope: {x: 0.005788212, y: -0.28342742, z: 0.1950379, w: -0.040963627} + outSlope: {x: 0.005788212, y: -0.28342742, z: 0.1950379, w: -0.040963627} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.49617556, y: -0.12681559, z: 0.019205503, w: 0.858696} + inSlope: {x: -0.0038990416, y: -0.2335339, z: 0.17385486, w: -0.03445569} + outSlope: {x: -0.0038990416, y: -0.2335339, z: 0.17385486, w: -0.03445569} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.31116185, y: -0.15822595, z: -0.3927488, w: 0.850818} + inSlope: {x: -0.009505748, y: 0.013585388, z: 0.024895368, w: 0.010523199} + outSlope: {x: -0.009505748, y: 0.013585388, z: 0.024895368, w: 0.010523199} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: -0.3400857, y: -0.12630226, z: -0.32485715, w: 0.873417} + inSlope: {x: 0.015310483, y: -0.01556194, z: -0.036701977, w: -0.009995691} + outSlope: {x: 0.015310483, y: -0.01556194, z: -0.036701977, w: -0.009995691} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.31806096, y: -0.14834745, z: -0.37426093, w: 0.8583467} + inSlope: {x: 0.20506516, y: -0.25450295, z: -0.5035941, w: -0.18927184} + outSlope: {x: 0.20506516, y: -0.25450295, z: -0.5035941, w: -0.18927184} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7666667 + value: {x: -0.3111619, y: -0.15822536, z: -0.3927468, w: 0.85081905} + inSlope: {x: 0.049656585, y: 0.1580403, z: 0.037664443, w: 0.060871787} + outSlope: {x: 0.049656585, y: 0.1580403, z: 0.037664443, w: 0.060871787} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000001 + value: {x: -0.31475052, y: -0.13781142, z: -0.37174997, w: 0.8624048} + inSlope: {x: 2.8029196, y: 6.5131173, z: 12.941726, w: -0.32538566} + outSlope: {x: 2.8029196, y: 6.5131173, z: 12.941726, w: -0.32538566} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.12430078, y: 0.2759821, z: 0.47003412, w: 0.8291267} + inSlope: {x: 5.6780615, y: 6.80005, z: 13.187578, w: -0.9463979} + outSlope: {x: 5.6780615, y: 6.80005, z: 13.187578, w: -0.9463979} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.86666673 + value: {x: 0.0637869, y: 0.31552488, z: 0.50742114, w: 0.79931164} + inSlope: {x: 2.869805, y: 0.49265906, z: 0.13818204, w: -0.15467697} + outSlope: {x: 2.869805, y: 0.49265906, z: 0.13818204, w: -0.15467697} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.90000004 + value: {x: 0.06701973, y: 0.3088261, z: 0.47924632, w: 0.8188149} + inSlope: {x: 0.29648843, y: -0.65528566, z: -0.62976503, w: 0.5825356} + outSlope: {x: 0.29648843, y: -0.65528566, z: -0.62976503, w: 0.5825356} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9333334 + value: {x: 0.08355281, y: 0.27183914, z: 0.46543682, w: 0.83814734} + inSlope: {x: 9.175496, y: -4.903794, z: -3.3210406, w: -1.9711041} + outSlope: {x: 9.175496, y: -4.903794, z: -3.3210406, w: -1.9711041} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9666667 + value: {x: 0.6787189, y: -0.018093249, z: 0.2578438, w: 0.6874081} + inSlope: {x: 9.388409, y: -6.3047194, z: -4.1175685, w: -2.642868} + outSlope: {x: 9.388409, y: -6.3047194, z: -4.1175685, w: -2.642868} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.70944613, y: -0.14847508, z: 0.19093251, w: 0.6619563} + inSlope: {x: -0.12535462, y: -2.3017144, z: -1.5288424, w: 0.2623073} + outSlope: {x: -0.12535462, y: -2.3017144, z: -1.5288424, w: 0.2623073} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0333334 + value: {x: 0.6703618, y: -0.1715408, z: 0.15592094, w: 0.7048954} + inSlope: {x: -0.93046963, y: -0.2903189, z: -0.73377657, w: 1.0167427} + outSlope: {x: -0.93046963, y: -0.2903189, z: -0.73377657, w: 1.0167427} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.6432185, y: -0.1573778, z: 0.13620774, w: 0.73685116} + inSlope: {x: 0.017609328, y: 0.23978695, z: -0.14099987, w: 0.0632333} + outSlope: {x: 0.017609328, y: 0.23978695, z: -0.14099987, w: 0.0632333} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1333334 + value: {x: 0.6485887, y: -0.15184394, z: 0.132614, w: 0.7339548} + inSlope: {x: 0.14462456, y: 0.09704324, z: -0.08080657, w: -0.09263896} + outSlope: {x: 0.14462456, y: 0.09704324, z: -0.08080657, w: -0.09263896} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.65286016, y: -0.15090823, z: 0.13082063, w: 0.7306752} + inSlope: {x: -0.4666118, y: -0.22545038, z: -0.40620908, w: 0.41170606} + outSlope: {x: -0.4666118, y: -0.22545038, z: -0.40620908, w: 0.41170606} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2 + value: {x: 0.6174813, y: -0.16687395, z: 0.10553342, w: 0.76140183} + inSlope: {x: -1.863554, y: -0.4873317, z: -0.85243434, w: 1.4223545} + outSlope: {x: -1.863554, y: -0.4873317, z: -0.85243434, w: 1.4223545} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2333333 + value: {x: 0.52862334, y: -0.18339698, z: 0.07399173, w: 0.82549876} + inSlope: {x: -2.75189, y: -0.21871658, z: -0.5679175, w: 1.7765813} + outSlope: {x: -2.75189, y: -0.21871658, z: -0.5679175, w: 1.7765813} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3000001 + value: {x: 0.36149603, y: -0.17563893, z: 0.07258266, w: 0.9127998} + inSlope: {x: -1.8089215, y: 0.12521659, z: 0.14576076, w: 0.7597123} + outSlope: {x: -1.8089215, y: 0.12521659, z: 0.14576076, w: 0.7597123} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3666668 + value: {x: 0.29505908, y: -0.17255895, z: 0.07930035, w: 0.93641603} + inSlope: {x: -0.22884487, y: -0.0044822283, z: 0.03237274, w: 0.071460955} + outSlope: {x: -0.22884487, y: -0.0044822283, z: 0.03237274, w: 0.071460955} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4333334 + value: {x: 0.29723412, y: -0.1679139, z: 0.08137694, w: 0.93639445} + inSlope: {x: -0.060579985, y: 0.22008753, z: 0.07401551, w: 0.051678173} + outSlope: {x: -0.060579985, y: 0.22008753, z: 0.07401551, w: 0.051678173} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.28375322, y: -0.12805949, z: 0.098614715, w: 0.94517726} + inSlope: {x: -0.07184294, y: 0.2546129, z: 0.14799692, w: 0.04096} + outSlope: {x: -0.07184294, y: 0.2546129, z: 0.14799692, w: 0.04096} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.25660753, y: -0.09045029, z: 0.11098684, w: 0.95585215} + inSlope: {x: -0.561924, y: 0.55414665, z: 0.100277156, w: 0.18982011} + outSlope: {x: -0.561924, y: 0.55414665, z: 0.100277156, w: 0.18982011} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7666668 + value: {x: 0.20109734, y: -0.033515584, z: 0.12249116, w: 0.97130454} + inSlope: {x: -0.20721002, y: 0.2720418, z: 0.06581052, w: 0.04858737} + outSlope: {x: -0.20721002, y: 0.2720418, z: 0.06581052, w: 0.04858737} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.8000001 + value: {x: 0.20244613, y: -0.03371099, z: 0.12250589, w: 0.9710157} + inSlope: {x: -0.014967188, y: 0.0021829847, z: -0.00021647682, w: 0.0031927256} + outSlope: {x: -0.014967188, y: 0.0021829847, z: -0.00021647682, w: 0.0031927256} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.8666668 + value: {x: 0.2016267, y: -0.033591762, z: 0.1224951, w: 0.97119164} + inSlope: {x: 0.18207, y: -0.026436983, z: 0.0021151463, w: -0.03989073} + outSlope: {x: 0.18207, y: -0.026436983, z: 0.0021151463, w: -0.03989073} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9333334 + value: {x: 0.21617733, y: -0.03570473, z: 0.12266042, w: 0.9679602} + inSlope: {x: -0.121297896, y: 0.017603371, z: -0.0013457927, w: 0.02683896} + outSlope: {x: -0.121297896, y: 0.017603371, z: -0.0013457927, w: 0.02683896} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.0333335 + value: {x: 0.17978528, y: -0.030422252, z: 0.12220483, w: 0.9756115} + inSlope: {x: -0.16654046, y: 0.024172623, z: -0.0023879372, w: 0.032351755} + outSlope: {x: -0.16654046, y: 0.024172623, z: -0.0023879372, w: 0.032351755} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.3000002 + value: {x: 0.19405104, y: -0.032492932, z: 0.12240303, w: 0.9727826} + inSlope: {x: 0.09179199, y: -0.01332383, z: 0.0011966017, w: -0.018890817} + outSlope: {x: 0.09179199, y: -0.01332383, z: 0.0011966017, w: -0.018890817} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.6000001 + value: {x: 0.20384678, y: -0.033914704, z: 0.12252409, w: 0.9707132} + inSlope: {x: 0.027909975, y: -0.0040486865, z: 0.00032119482, w: -0.00603587} + outSlope: {x: 0.027909975, y: -0.0040486865, z: 0.00032119482, w: -0.00603587} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.9333334 + value: {x: 0.16970249, y: -0.028963031, z: 0.1220644, w: 0.97747767} + inSlope: {x: -0.0003030904, y: -0.00020256358, z: 0.000073874224, w: 0.00003755082} + outSlope: {x: -0.0003030904, y: -0.00020256358, z: 0.000073874224, w: 0.00003755082} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.266667 + value: {x: 0.18028428, y: -0.030493263, z: 0.122206934, w: 0.9755169} + inSlope: {x: -0.061472714, y: 0.008914777, z: -0.00087495975, w: 0.011739146} + outSlope: {x: -0.061472714, y: 0.008914777, z: -0.00087495975, w: 0.011739146} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.1697026, y: -0.028958976, z: 0.12205008, w: 0.9774795} + inSlope: {x: -0.000040233175, y: -0.00034499945, z: 0.0000049173877, w: -0.000003576282} + outSlope: {x: -0.000040233175, y: -0.00034499945, z: 0.0000049173877, w: -0.000003576282} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot/mixamorig:RightToeBase + m_CompressedRotationCurves: [] + m_EulerCurves: [] + m_PositionCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.0015125014, y: 0.0050366293, z: -0.00051459076} + inSlope: {x: 0.000097390344, y: -0.00015750268, z: -0.00034655558} + outSlope: {x: 0.000097390344, y: -0.00015750268, z: -0.00034655558} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.23333333 + value: {x: -0.0015446327, y: 0.0049814773, z: -0.00058403204} + inSlope: {x: -0.00013339346, y: 0.00003147254, z: -0.00009601535} + outSlope: {x: -0.00013338044, y: 0.000031524018, z: -0.000096004835} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: -0.0015340439, y: 0.0051106457, z: -0.0005199001} + inSlope: {x: 0.00009152291, y: 0.0024014863, z: 0.0013329714} + outSlope: {x: 0.00009155508, y: 0.002401396, z: 0.0013329606} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.46666667 + value: {x: -0.00154664, y: 0.0054541817, z: -0.0003237979} + inSlope: {x: -0.00012264334, y: 0.004008738, z: 0.0026397621} + outSlope: {x: -0.0001226553, y: 0.004008642, z: 0.002639758} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: -0.0015375813, y: 0.0057139187, z: -0.000106215724} + inSlope: {x: 0.00010719223, y: 0.0036635243, z: 0.003961544} + outSlope: {x: 0.000107253974, y: 0.003663615, z: 0.0039616055} + tangentMode: 0 + weightedMode: 0 + 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.0016428828, y: 0.0061916867, z: 0.00057364104} + inSlope: {x: -0.0021962055, y: 0.0038022455, z: 0.005948258} + outSlope: {x: -0.002196244, y: 0.0038023288, z: 0.005948334} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.73333335 + value: {x: -0.0018455687, y: 0.006370408, z: 0.0009350296} + inSlope: {x: -0.0038574766, y: 0.0006439023, z: 0.0028946893} + outSlope: {x: -0.0038575162, y: 0.00064406625, z: 0.002894741} + tangentMode: 0 + weightedMode: 0 + 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.0023585986, y: 0.006171364, z: 0.00077221583} + inSlope: {x: -0.00663312, y: -0.003809268, z: -0.004975967} + outSlope: {x: -0.0066330656, y: -0.0038092788, z: -0.004975891} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.8666667 + value: {x: -0.0026049062, y: 0.006040296, z: 0.0005803999} + inSlope: {x: -0.0078004007, y: -0.0030358667, z: -0.0048217443} + outSlope: {x: -0.0078004072, y: -0.0030358823, z: -0.0048218053} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.9 + value: {x: -0.0028786247, y: 0.005968968, z: 0.00045076254} + inSlope: {x: -0.009202139, y: 0.00011899426, z: -0.0045843604} + outSlope: {x: -0.009202092, y: 0.00011899603, z: -0.0045842947} + tangentMode: 0 + weightedMode: 0 + 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.003218383, y: 0.006048227, z: 0.0002747765} + inSlope: {x: -0.010303585, y: 0.004770879, z: -0.005810872} + outSlope: {x: -0.010303647, y: 0.004771024, z: -0.0058109234} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.96666664 + value: {x: -0.0035655303, y: 0.006287028, z: 0.00006336822} + inSlope: {x: -0.010351203, y: 0.009336147, z: -0.005994406} + outSlope: {x: -0.0103510115, y: 0.009335937, z: -0.0059943115} + tangentMode: 0 + weightedMode: 0 + 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.0039084572, y: 0.0066706273, z: -0.00012484858} + inSlope: {x: -0.010071509, y: 0.013320504, z: -0.005493992} + outSlope: {x: -0.010071622, y: 0.013320503, z: -0.005494038} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.0666667 + value: {x: -0.0046111024, y: 0.0077821217, z: -0.00045498664} + inSlope: {x: -0.012239895, y: 0.019147413, z: -0.0039857957} + outSlope: {x: -0.012240254, y: 0.019148014, z: -0.0039859368} + tangentMode: 0 + weightedMode: 0 + 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.005935855, y: 0.00982994, z: -0.0007020928} + inSlope: {x: -0.012289266, y: 0.019621326, z: -0.00130099} + outSlope: {x: -0.012288892, y: 0.01962079, z: -0.0013009548} + tangentMode: 0 + weightedMode: 0 + 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.0071036913, y: 0.011410234, z: -0.0007387503} + inSlope: {x: -0.010498307, y: 0.012988015, z: 0.00069113186} + outSlope: {x: -0.0104982145, y: 0.012988097, z: 0.00069111836} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.3 + value: {x: -0.007432758, y: 0.0118388245, z: -0.0007022042} + inSlope: {x: -0.008863428, y: 0.013575969, z: 0.0013113585} + outSlope: {x: -0.008863353, y: 0.013575585, z: 0.0013113242} + tangentMode: 0 + weightedMode: 0 + 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.007694587, y: 0.012315292, z: -0.0006513263} + inSlope: {x: -0.0066373814, y: 0.0149706695, z: 0.0019871646} + outSlope: {x: -0.0066374447, y: 0.014970842, z: 0.0019872135} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.3666667 + value: {x: -0.007875253, y: 0.012836874, z: -0.0005697245} + inSlope: {x: -0.0055343322, y: 0.016424175, z: 0.0041883085} + outSlope: {x: -0.005534311, y: 0.016424114, z: 0.00418832} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.4 + value: {x: -0.008063549, y: 0.013410234, z: -0.00037210548} + inSlope: {x: -0.005939112, y: 0.017425131, z: 0.008169323} + outSlope: {x: -0.0059390436, y: 0.017425137, z: 0.008169276} + tangentMode: 0 + weightedMode: 0 + 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.008271199, y: 0.013998547, z: -0.000025104997} + inSlope: {x: -0.00578322, y: 0.01735923, z: 0.011943442} + outSlope: {x: -0.0057830093, y: 0.017358793, z: 0.011943029} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.4666667 + value: {x: -0.008449098, y: 0.014567516, z: 0.00042411697} + inSlope: {x: -0.0043357275, y: 0.016515475, z: 0.0141737955} + outSlope: {x: -0.004335815, y: 0.016516378, z: 0.01417414} + tangentMode: 0 + weightedMode: 0 + 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.008560257, y: 0.01509962, z: 0.0009198331} + inSlope: {x: -0.0019081155, y: 0.014767406, z: 0.014805774} + outSlope: {x: -0.0019079966, y: 0.014767192, z: 0.014805775} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.5666667 + value: {x: -0.008548728, y: 0.015930321, z: 0.0019054296} + inSlope: {x: 0.0017732717, y: 0.00993497, z: 0.014742022} + outSlope: {x: 0.0017732813, y: 0.009935248, z: 0.014742517} + tangentMode: 0 + weightedMode: 0 + 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.008458088, y: 0.016214352, z: 0.0023939922} + inSlope: {x: 0.00416062, y: 0.0065728608, z: 0.013415419} + outSlope: {x: 0.0041605514, y: 0.0065733916, z: 0.013415511} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.6333333 + value: {x: -0.008271353, y: 0.016368525, z: 0.0027997908} + inSlope: {x: 0.006902112, y: 0.003974456, z: 0.012242405} + outSlope: {x: 0.006902374, y: 0.003974134, z: 0.012242302} + tangentMode: 0 + weightedMode: 0 + 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.00799794, y: 0.016479295, z: 0.0032101446} + inSlope: {x: 0.008980449, y: 0.0023705976, z: 0.011176486} + outSlope: {x: 0.008980159, y: 0.0023706048, z: 0.01117614} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.7333333 + value: {x: -0.007213993, y: 0.016514836, z: 0.003888952} + inSlope: {x: 0.014922372, y: -0.0005182866, z: 0.010368639} + outSlope: {x: 0.014922299, y: -0.0005185932, z: 0.010368641} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.8 + value: {x: -0.005979117, y: 0.016421158, z: 0.004508677} + inSlope: {x: 0.020816175, y: -0.0010794391, z: 0.006357784} + outSlope: {x: 0.020815503, y: -0.0010793793, z: 0.00635753} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.8666667 + value: {x: -0.0046359105, y: 0.016392088, z: 0.0048062815} + inSlope: {x: 0.019741906, y: -0.001029356, z: 0.004168485} + outSlope: {x: 0.01974192, y: -0.0010295586, z: 0.0041684746} + tangentMode: 0 + weightedMode: 0 + 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.0033652757, y: 0.016324969, z: 0.0050375727} + inSlope: {x: 0.016942501, y: -0.00052205875, z: 0.0022510295} + outSlope: {x: 0.016941968, y: -0.00052219146, z: 0.0022510025} + tangentMode: 0 + weightedMode: 0 + 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.0022827631, y: 0.016362304, z: 0.005067249} + inSlope: {x: 0.017731277, y: 0.0016898544, z: -0.0014637832} + outSlope: {x: 0.01773126, y: 0.0016899734, z: -0.0014638503} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.0333333 + value: {x: -0.0016624127, y: 0.016429253, z: 0.004990352} + inSlope: {x: 0.017136896, y: 0.0015731482, z: -0.0027192954} + outSlope: {x: 0.017136732, y: 0.0015730411, z: -0.0027192663} + tangentMode: 0 + weightedMode: 0 + 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.00114031, y: 0.01646717, z: 0.004885964} + inSlope: {x: 0.014929943, y: 0.00104869, z: -0.0037815925} + outSlope: {x: 0.014929682, y: 0.0010486322, z: -0.0037815543} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.1333334 + value: {x: -0.00024038629, y: 0.016516255, z: 0.0045584077} + inSlope: {x: 0.01201282, y: 0.00017985498, z: -0.0057797465} + outSlope: {x: 0.012013627, y: 0.00018000964, z: -0.0057801167} + tangentMode: 0 + weightedMode: 0 + 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.0001338034, y: 0.016511144, z: 0.004352914} + inSlope: {x: 0.010739782, y: 0.0002672028, z: -0.005635405} + outSlope: {x: 0.010740031, y: 0.00026708515, z: -0.005635567} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.2 + value: {x: 0.0004756063, y: 0.01653406, z: 0.004182711} + inSlope: {x: 0.008142426, y: 0.0005012465, z: -0.0030340778} + outSlope: {x: 0.008142533, y: 0.00050102, z: -0.0030340957} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.2333333 + value: {x: 0.0006766355, y: 0.01654455, z: 0.0041506425} + inSlope: {x: 0.0052690273, y: 0.00028678373, z: -0.0011746421} + outSlope: {x: 0.005269047, y: 0.00028693018, z: -0.0011746433} + tangentMode: 0 + weightedMode: 0 + 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.0009382062, y: 0.01657073, z: 0.003945961} + inSlope: {x: -0.00006437487, y: 0.00015269869, z: -0.0033652303} + outSlope: {x: -0.000064386055, y: 0.00015266635, z: -0.0033652314} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.4333334 + value: {x: 0.00071542955, y: 0.01653949, z: 0.0033973074} + inSlope: {x: -0.0039617866, y: -0.0010942571, z: -0.00739276} + outSlope: {x: -0.0039618597, y: -0.0010940066, z: -0.0073928363} + tangentMode: 0 + weightedMode: 0 + 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.0004157895, y: 0.016477397, z: 0.0029171675} + inSlope: {x: -0.0043328884, y: -0.00020184531, z: -0.006593106} + outSlope: {x: -0.0043328837, y: -0.00020208888, z: -0.006593141} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.5333333 + value: {x: 0.0002778409, y: 0.01647665, z: 0.0026973083} + inSlope: {x: -0.0037047088, y: 0.000014701923, z: -0.0065858606} + outSlope: {x: -0.0037046745, y: 0.000014647427, z: -0.0065858415} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.5666666 + value: {x: 0.00016881015, y: 0.016478386, z: 0.0024781108} + inSlope: {x: -0.0028291773, y: 0.00020589336, z: -0.0063189827} + outSlope: {x: -0.0028291293, y: 0.00020591205, z: -0.006318817} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.6 + value: {x: 0.00008923075, y: 0.016490392, z: 0.0022760495} + inSlope: {x: -0.0021139726, y: 0.00038370435, z: -0.0058333157} + outSlope: {x: -0.002113855, y: 0.00038371354, z: -0.0058329497} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.6333334 + value: {x: 0.000027880684, y: 0.01650397, z: 0.00208923} + inSlope: {x: -0.0016622439, y: 0.00036515103, z: -0.0053126044} + outSlope: {x: -0.0016623567, y: 0.00036536995, z: -0.0053129783} + tangentMode: 0 + weightedMode: 0 + 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.000021591135, y: 0.01651473, z: 0.0019218578} + inSlope: {x: -0.001191799, y: 0.00028294517, z: -0.0046173064} + outSlope: {x: -0.0011918256, y: 0.00028273402, z: -0.0046173576} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.7 + value: {x: -0.00005157344, y: 0.016522814, z: 0.0017814089} + inSlope: {x: -0.0005331677, y: 0.000059642134, z: -0.003810374} + outSlope: {x: -0.00053317397, y: 0.000059785238, z: -0.003810402} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.7333333 + value: {x: -0.000057135883, y: 0.016518714, z: 0.0016678317} + inSlope: {x: 0.0001745866, y: -0.000120391254, z: -0.0027639354} + outSlope: {x: 0.00017458873, y: -0.00012067225, z: -0.0027639717} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.7666667 + value: {x: -0.00003993431, y: 0.016514776, z: 0.0015971444} + inSlope: {x: 0.00074808765, y: -0.00012527034, z: -0.0013649003} + outSlope: {x: 0.00074808445, y: -0.00012530439, z: -0.001364872} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.8 + value: {x: -0.000007263576, y: 0.016510366, z: 0.0015768385} + inSlope: {x: 0.0011817821, y: -0.00014080161, z: -0.00014665836} + outSlope: {x: 0.0011817669, y: -0.00014102129, z: -0.00014667849} + tangentMode: 0 + weightedMode: 0 + 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.00003885053, y: 0.01650539, z: 0.0015873649} + inSlope: {x: 0.0017401142, y: -0.00012773796, z: 0.00039659705} + outSlope: {x: 0.0017400756, y: -0.00012760684, z: 0.00039653978} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.9 + value: {x: 0.00018976047, y: 0.016499024, z: 0.0016253528} + inSlope: {x: 0.0023819867, y: -0.00008217725, z: 0.0007662245} + outSlope: {x: 0.0023821353, y: -0.00008260359, z: 0.0007662622} + tangentMode: 0 + weightedMode: 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.00041188946, y: 0.016492702, z: 0.0017334449} + inSlope: {x: 0.0021304977, y: -0.000025289417, z: 0.0013780531} + outSlope: {x: 0.002130502, y: -0.000025270689, z: 0.0013780482} + tangentMode: 0 + weightedMode: 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.1 + value: {x: 0.00059981085, y: 0.016495734, z: 0.0018921555} + inSlope: {x: 0.0014593777, y: 0.00008043908, z: 0.001703255} + outSlope: {x: 0.0014592957, y: 0.00008018306, z: 0.0017031896} + tangentMode: 0 + weightedMode: 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.2333333 + value: {x: 0.0007429472, y: 0.016504968, z: 0.0021130845} + inSlope: {x: 0.00081727054, y: 0.000003816398, z: 0.0014602614} + outSlope: {x: 0.00081729144, y: 0.0000038862313, z: 0.0014602911} + tangentMode: 0 + weightedMode: 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.0008118164, y: 0.016495444, z: 0.0023682448} + inSlope: {x: -0.00012431218, y: -0.00004540856, z: 0.00054718} + outSlope: {x: -0.00012430505, y: -0.000045556717, z: 0.00054717215} + tangentMode: 0 + weightedMode: 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.7 + value: {x: 0.00076729833, y: 0.0164885, z: 0.0024353424} + inSlope: {x: -0.0002438463, y: -0.000021994132, z: 0.00015985042} + outSlope: {x: -0.00024384756, y: -0.000022029895, z: 0.00015986085} + tangentMode: 0 + weightedMode: 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.7333333 + value: {x: 0.00075945805, y: 0.016487855, z: 0.002439867} + inSlope: {x: 0.00030910308, y: -0.000034291435, z: 0.00009171991} + outSlope: {x: 0.00030911155, y: -0.00003406493, z: 0.00009168969} + tangentMode: 0 + weightedMode: 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.8 + value: {x: 0.0008221255, y: 0.016484516, z: 0.0024414482} + inSlope: {x: 0.0009298403, y: -0.000045202494, z: -0.000013876825} + outSlope: {x: 0.00092982716, y: -0.00004502709, z: -0.000013913436} + tangentMode: 0 + weightedMode: 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.0008498944, y: 0.016483217, z: 0.00244053} + inSlope: {x: 0.00083306525, y: -0.00003889632, z: -0.000027537366} + outSlope: {x: 0.00083306525, y: -0.00003889632, z: -0.000027537366} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips + m_ScaleCurves: [] + m_FloatCurves: [] + m_PPtrCurves: [] + m_SampleRate: 30 + 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: 3.8333335 + 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/Jammo-Character/Animations/Standing.anim.meta b/Assets/Jammo-Character/Animations/Standing.anim.meta new file mode 100644 index 0000000..fc5cfcd --- /dev/null +++ b/Assets/Jammo-Character/Animations/Standing.anim.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d85664db4b473f64fb198bcc5a3c7099 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 7400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Jammo-Character/Animations/Victory Idle.anim b/Assets/Jammo-Character/Animations/Victory Idle.anim new file mode 100644 index 0000000..7200f74 --- /dev/null +++ b/Assets/Jammo-Character/Animations/Victory Idle.anim @@ -0,0 +1,65867 @@ +%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: Victory 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, 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.033333335 + 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: Armature.001 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.081455395, y: 0.037796956, z: -0.059955887, w: 0.9941538} + inSlope: {x: 0.04139654, y: 0.0056362147, z: 0.023685804, w: 0.0045669074} + outSlope: {x: 0.04139654, y: 0.0056362147, z: 0.023685804, w: 0.0045669074} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.08916319, y: 0.09137111, z: -0.04642444, w: 0.99073005} + inSlope: {x: -0.15540934, y: 0.33413163, z: 0.082309455, w: -0.040959124} + outSlope: {x: -0.15540934, y: 0.33413163, z: 0.082309455, w: -0.040959124} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: -0.12221897, y: 0.070600174, z: -0.03479766, w: 0.98937726} + inSlope: {x: 0.06901541, y: -0.72683734, z: 0.054173425, w: 0.06007696} + outSlope: {x: 0.06901541, y: -0.72683734, z: 0.054173425, w: 0.06007696} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.08079047, y: -0.121565245, z: -0.030324277, w: 0.9888252} + inSlope: {x: 0.21083239, y: -0.86764324, z: -0.045850195, w: -0.08871317} + outSlope: {x: 0.21083239, y: -0.86764324, z: -0.045850195, w: -0.08871317} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.90000004 + value: {x: -0.0657643, y: -0.19377221, z: -0.04103169, w: 0.9779795} + inSlope: {x: -0.010845953, y: -0.00040657917, z: -0.054463595, w: -0.0031059976} + outSlope: {x: -0.010845953, y: -0.00040657917, z: -0.054463595, w: -0.0031059976} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2 + value: {x: -0.061399173, y: -0.11233371, z: -0.04688817, w: 0.9906628} + inSlope: {x: -0.0010502534, y: 0.1132727, z: 0.07514149, w: 0.016523317} + outSlope: {x: -0.0010502534, y: 0.1132727, z: 0.07514149, w: 0.016523317} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.099645734, y: -0.21034585, z: -0.015683088, w: 0.97240907} + inSlope: {x: -0.10028671, y: -0.39668992, z: -0.055074234, w: -0.09672038} + outSlope: {x: -0.10028671, y: -0.39668992, z: -0.055074234, w: -0.09672038} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9000001 + value: {x: -0.14383794, y: -0.20207603, z: -0.05592151, w: 0.9671343} + inSlope: {x: -0.070155255, y: 0.5000304, z: -0.05126237, w: 0.09043077} + outSlope: {x: -0.070155255, y: 0.5000304, z: -0.05126237, w: 0.09043077} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.2 + value: {x: -0.116400175, y: 0.007090719, z: -0.054392774, w: 0.9916865} + inSlope: {x: 0.14533341, y: 0.66558623, z: 0.016077511, w: 0.014010085} + outSlope: {x: 0.14533341, y: 0.66558623, z: 0.016077511, w: 0.014010085} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.4666667 + value: {x: -0.10685116, y: 0.0821049, z: -0.059280388, w: 0.9891044} + inSlope: {x: -0.0466237, y: -0.077060424, z: -0.04410182, w: -0.0013858133} + outSlope: {x: -0.0466237, y: -0.077060424, z: -0.04410182, w: -0.0013858133} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.8000002 + value: {x: -0.106585234, y: 0.045272473, z: -0.06488548, w: 0.9911508} + inSlope: {x: 0.057189666, y: -0.02325768, z: 0.0148772225, w: 0.008187003} + outSlope: {x: 0.057189666, y: -0.02325768, z: 0.0148772225, w: 0.008187003} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.08145539, y: 0.037796956, z: -0.059955895, w: 0.9941538} + inSlope: {x: 0.030927017, y: 0.004154299, z: 0.0061886446, w: 0.0027680423} + outSlope: {x: 0.030927017, y: 0.004154299, z: 0.0061886446, w: 0.0027680423} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.020465773, y: -0.008279159, z: 0.027742488, w: 0.9993713} + inSlope: {x: 0.028117092, y: 0.0060693915, z: -0.019435788, w: -0.0000053644176} + outSlope: {x: 0.028117092, y: 0.0060693915, z: -0.019435788, w: -0.0000053644176} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: 0.034040388, y: -0.003888948, z: 0.025888747, w: 0.99907756} + inSlope: {x: 0.04853137, y: -0.033940013, z: -0.016021777, w: -0.0013554092} + outSlope: {x: 0.04853137, y: -0.033940013, z: -0.016021777, w: -0.0013554092} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.015051369, y: 0.0056160334, z: 0.019618405, w: 0.9996785} + inSlope: {x: -0.10427936, y: 0.022595761, z: 0.020867907, w: 0.0010871894} + outSlope: {x: -0.10427936, y: 0.022595761, z: 0.020867907, w: 0.0010871894} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9666667 + value: {x: 0.034400243, y: -0.01067053, z: 0.05614152, w: 0.997773} + inSlope: {x: 0.11316846, y: -0.1253896, z: 0.09303893, w: -0.010393569} + outSlope: {x: 0.11316846, y: -0.1253896, z: 0.09303893, w: -0.010393569} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3000001 + value: {x: 0.02730836, y: -0.028031189, z: 0.04924133, w: 0.99801993} + inSlope: {x: -0.014814357, y: -0.05209419, z: -0.12871984, w: 0.0052857446} + outSlope: {x: -0.014814357, y: -0.05209419, z: -0.12871984, w: 0.0052857446} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.036202017, y: -0.04684348, z: 0.035116818, w: 0.99762815} + inSlope: {x: 0.06378668, y: -0.040363036, z: 0.014392579, w: -0.004703705} + outSlope: {x: 0.06378668, y: -0.040363036, z: 0.014392579, w: -0.004703705} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9666668 + value: {x: 0.041679054, y: -0.039316706, z: 0.031322096, w: 0.99786574} + inSlope: {x: -0.06795892, y: 0.019109005, z: 0.020681553, w: 0.0028958984} + outSlope: {x: -0.06795892, y: 0.019109005, z: 0.020681553, w: 0.0028958984} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.3000002 + value: {x: 0.013682785, y: -0.023823626, z: 0.028301518, w: 0.99922186} + inSlope: {x: -0.0026992268, y: 0.04888786, z: -0.006108709, w: 0.0013706102} + outSlope: {x: -0.0026992268, y: 0.04888786, z: -0.006108709, w: 0.0013706102} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.8000002 + value: {x: 0.0205128, y: -0.0072483625, z: 0.03232584, w: 0.9992406} + inSlope: {x: -0.005509067, y: -0.025388481, z: -0.0118806325, w: 0.00031471282} + outSlope: {x: -0.005509067, y: -0.025388481, z: -0.0118806325, w: 0.00031471282} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.020465767, y: -0.008279151, z: 0.027742501, w: 0.9993713} + inSlope: {x: -0.0038332716, y: -0.0062571806, z: -0.0034872103, w: 0.00012516987} + outSlope: {x: -0.0038332716, y: -0.0062571806, z: -0.0034872103, w: 0.00012516987} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.04032473, y: -0.016074743, z: 0.023812564, w: 0.9987735} + inSlope: {x: 0.025132855, y: 0.03627858, z: -0.019547155, w: -0.0000035762785} + outSlope: {x: 0.025132855, y: 0.03627858, z: -0.019547155, w: -0.0000035762785} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.069784224, y: 0.00404428, z: -0.0039819954, w: 0.99754596} + inSlope: {x: -0.025265297, y: 0.051343895, z: 0.017377498, w: 0.001611114} + outSlope: {x: -0.025265297, y: 0.051343895, z: 0.017377498, w: 0.001611114} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.030887747, y: 0.019977227, z: 0.012138147, w: 0.9992495} + inSlope: {x: -0.14260054, y: 0.018373316, z: 0.2176234, w: 0.0014117379} + outSlope: {x: -0.14260054, y: 0.018373316, z: 0.2176234, w: 0.0014117379} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.90000004 + value: {x: 0.054016024, y: -0.0075237644, z: 0.06761964, w: 0.99621946} + inSlope: {x: 0.23742938, y: -0.19979677, z: 0.19793865, w: -0.02768755} + outSlope: {x: 0.23742938, y: -0.19979677, z: 0.19793865, w: -0.02768755} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.05655937, y: -0.05765715, z: 0.091653995, w: 0.9925101} + inSlope: {x: -0.008610285, y: -0.12361028, z: -0.20300838, w: 0.011951913} + outSlope: {x: -0.008610285, y: -0.12361028, z: -0.20300838, w: 0.011951913} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7666668 + value: {x: 0.08203262, y: -0.08548201, z: 0.00737915, w: 0.9929295} + inSlope: {x: 0.114243776, y: 0.004738909, z: -0.04562683, w: -0.008619734} + outSlope: {x: 0.114243776, y: 0.004738909, z: -0.04562683, w: -0.008619734} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.0333335 + value: {x: 0.062541164, y: -0.06054991, z: 0.011821643, w: 0.9961338} + inSlope: {x: -0.20163615, y: 0.10288549, z: 0.02986665, w: 0.018587656} + outSlope: {x: -0.20163615, y: 0.10288549, z: 0.02986665, w: 0.018587656} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.4 + value: {x: 0.029176928, y: -0.03149521, z: 0.014425301, w: 0.9989738} + inSlope: {x: 0.051190987, y: 0.1451181, z: 0.023285257, w: 0.0027117159} + outSlope: {x: 0.051190987, y: 0.1451181, z: 0.023285257, w: 0.0027117159} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.766667 + value: {x: 0.041159924, y: -0.009405181, z: 0.02210078, w: 0.9988638} + inSlope: {x: -0.011972945, y: -0.030067354, z: -0.0007146697, w: 0.00022441169} + outSlope: {x: -0.011972945, y: -0.030067354, z: -0.0007146697, w: 0.00022441169} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.04032473, y: -0.016074741, z: 0.023812562, w: 0.9987735} + inSlope: {x: -0.0049447687, y: -0.014717686, z: 0.0059754644, w: -0.00017523782} + outSlope: {x: -0.0049447687, y: -0.014717686, z: 0.0059754644, w: -0.00017523782} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.027965004, y: -0.016023804, z: 0.023549711, w: 0.99920297} + inSlope: {x: 0.024836192, y: 0.036110744, z: -0.019526089, w: 0.00030755994} + outSlope: {x: 0.024836192, y: 0.036110744, z: -0.019526089, w: 0.00030755994} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.057240542, y: 0.004561551, z: -0.003637303, w: 0.9983434} + inSlope: {x: -0.025047032, y: 0.039974265, z: 0.0136455195, w: 0.0012865666} + outSlope: {x: -0.025047032, y: 0.039974265, z: 0.0136455195, w: 0.0012865666} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.01830854, y: 0.020150192, z: 0.012534178, w: 0.99955076} + inSlope: {x: -0.14150904, y: 0.020433506, z: 0.22006503, w: -0.0005623684} + outSlope: {x: -0.14150904, y: 0.020433506, z: 0.22006503, w: -0.0005623684} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.90000004 + value: {x: 0.042217907, y: -0.0076537216, z: 0.06708848, w: 0.9968241} + inSlope: {x: 0.24505535, y: -0.1954432, z: 0.19092262, w: -0.024606586} + outSlope: {x: 0.24505535, y: -0.1954432, z: 0.19092262, w: -0.024606586} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.04401128, y: -0.058305245, z: 0.09107768, w: 0.9931608} + inSlope: {x: -0.008558372, y: -0.11593419, z: -0.2025124, w: 0.012022545} + outSlope: {x: -0.008558372, y: -0.11593419, z: -0.2025124, w: 0.012022545} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7333335 + value: {x: 0.065931, y: -0.08494602, z: 0.008676847, w: 0.994164} + inSlope: {x: 0.12033078, y: -0.002434666, z: -0.07273046, w: -0.00754326} + outSlope: {x: 0.12033078, y: -0.002434666, z: -0.07273046, w: -0.00754326} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9666668 + value: {x: 0.0638503, y: -0.068058625, z: 0.008944598, w: 0.99559593} + inSlope: {x: -0.17662928, y: 0.13998428, z: 0.03158856, w: 0.020548422} + outSlope: {x: -0.17662928, y: 0.13998428, z: 0.03158856, w: 0.020548422} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.3666668 + value: {x: 0.015536648, y: -0.036153868, z: 0.013070554, w: 0.99913996} + inSlope: {x: 0.032033794, y: 0.13444133, z: 0.019931458, w: 0.004059974} + outSlope: {x: 0.032033794, y: 0.13444133, z: 0.019931458, w: 0.004059974} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.7333336 + value: {x: 0.029160067, y: -0.00840239, z: 0.0218232, w: 0.9993012} + inSlope: {x: -0.008541762, y: -0.02521786, z: 0.0028140978, w: -0.000027715783} + outSlope: {x: -0.008541762, y: -0.02521786, z: 0.0028140978, w: -0.000027715783} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.027965005, y: -0.016023807, z: 0.02354971, w: 0.99920297} + inSlope: {x: -0.0048271427, y: -0.014768955, z: 0.005899301, w: -0.00023782277} + outSlope: {x: -0.0048271427, y: -0.014768955, z: 0.005899301, w: -0.00023782277} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.001141899, y: 0.0041547767, z: 0.043889634, w: 0.99902713} + inSlope: {x: -0.2249079, y: -0.026386552, z: -0.03877144, w: 0.0011891125} + outSlope: {x: -0.2249079, y: -0.026386552, z: -0.03877144, w: 0.0011891125} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: -0.110982254, y: -0.011968542, z: 0.04730863, w: 0.9926236} + inSlope: {x: -0.3246653, y: -0.13176242, z: 0.008721595, w: -0.03713161} + outSlope: {x: -0.3246653, y: -0.13176242, z: 0.008721595, w: -0.03713161} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: -0.06551123, y: -0.06985317, z: 0.048385747, w: 0.9942272} + inSlope: {x: 0.3802647, y: -0.31635, z: 0.14227462, w: -0.0035360518} + outSlope: {x: 0.3802647, y: -0.31635, z: 0.14227462, w: -0.0035360518} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.70000005 + value: {x: -0.056029238, y: -0.10766881, z: 0.11290867, w: 0.9861642} + inSlope: {x: -0.27778733, y: 0.105786934, z: 0.429067, w: -0.053936545} + outSlope: {x: -0.27778733, y: 0.105786934, z: 0.429067, w: -0.053936545} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9333334 + value: {x: -0.123205245, y: -0.04487716, z: 0.15942533, w: 0.9784631} + inSlope: {x: -0.25723624, y: 0.33791387, z: -0.31413126, w: 0.033389937} + outSlope: {x: -0.25723624, y: 0.33791387, z: -0.31413126, w: 0.033389937} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.1365459, y: 0.00024882224, z: 0.03558655, w: 0.98999435} + inSlope: {x: 0.22293246, y: 0.18142566, z: -0.44542402, w: 0.047121093} + outSlope: {x: 0.22293246, y: 0.18142566, z: -0.44542402, w: 0.047121093} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4333334 + value: {x: -0.09844012, y: 0.073318094, z: 0.03729313, w: 0.9917375} + inSlope: {x: -0.10498355, y: 0.35603866, z: 0.32358378, w: -0.049297262} + outSlope: {x: -0.10498355, y: 0.35603866, z: 0.32358378, w: -0.049297262} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6000001 + value: {x: -0.124828525, y: 0.13356096, z: 0.09972049, w: 0.9780773} + inSlope: {x: -0.09560094, y: 0.31182832, z: 0.328883, w: -0.087169915} + outSlope: {x: -0.09560094, y: 0.31182832, z: 0.328883, w: -0.087169915} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.09967535, y: 0.15871374, z: 0.112482116, w: 0.97581893} + inSlope: {x: 0.3637304, y: -0.07028133, z: -0.20046175, w: 0.070849575} + outSlope: {x: 0.3637304, y: -0.07028133, z: -0.20046175, w: 0.070849575} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.0666668 + value: {x: 0.032769367, y: 0.085244946, z: 0.08474295, w: 0.9922087} + inSlope: {x: 0.40728262, y: -0.4210814, z: -0.022981748, w: 0.026053216} + outSlope: {x: 0.40728262, y: -0.4210814, z: -0.022981748, w: 0.026053216} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.4 + value: {x: 0.0010305828, y: -0.020087723, z: 0.060935017, w: 0.99793905} + inSlope: {x: -0.20349604, y: -0.11226626, z: -0.14616986, w: 0.0070086187} + outSlope: {x: -0.20349604, y: -0.11226626, z: -0.14616986, w: 0.0070086187} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.7333336 + value: {x: 0.0018579972, y: -0.0103828395, z: 0.030386114, w: 0.99948263} + inSlope: {x: 0.1097895, y: 0.068886176, z: 0.005859603, w: 0.00036835394} + outSlope: {x: 0.1097895, y: 0.068886176, z: 0.005859603, w: 0.00036835394} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.266667 + value: {x: -0.0008434659, y: 0.0033857129, z: 0.043138348, w: 0.999063} + inSlope: {x: 0.027355116, y: 0.015390768, z: 0.011382692, w: -0.0005283957} + outSlope: {x: 0.027355116, y: 0.015390768, z: 0.011382692, w: -0.0005283957} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.001141901, y: 0.004154776, z: 0.04388962, w: 0.99902713} + inSlope: {x: 0.024384063, y: 0.008145457, z: 0.008714729, w: -0.00043273013} + outSlope: {x: 0.024384063, y: 0.008145457, z: 0.008714729, w: -0.00043273013} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.040946912, y: 0.018186338, z: -0.019533737, w: 0.9988048} + inSlope: {x: -0.11525787, y: -0.092058636, z: 0.28783578, w: 0.010283588} + outSlope: {x: -0.11525787, y: -0.092058636, z: 0.28783578, w: 0.010283588} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: -0.024902282, y: -0.041916415, z: 0.09655203, w: 0.9941331} + inSlope: {x: -0.36655766, y: -0.26556146, z: 0.2427091, w: -0.043819252} + outSlope: {x: -0.36655766, y: -0.26556146, z: 0.2427091, w: -0.043819252} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: -0.061664388, y: -0.100734636, z: 0.12101571, w: 0.9855989} + inSlope: {x: 0.20786282, y: -0.16311885, z: -0.038306493, w: 0.00067233946} + outSlope: {x: 0.20786282, y: -0.16311885, z: -0.038306493, w: 0.00067233946} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7666667 + value: {x: 0.039463468, y: -0.06826606, z: 0.017185988, w: 0.9967382} + inSlope: {x: 0.42814294, y: 0.46904415, z: -0.7302264, w: 0.027662493} + outSlope: {x: 0.42814294, y: 0.46904415, z: -0.7302264, w: 0.027662493} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9666667 + value: {x: 0.099165335, y: 0.009453626, z: -0.07927165, w: 0.99186337} + inSlope: {x: 0.20635998, y: 0.10039665, z: -0.13315928, w: -0.031805664} + outSlope: {x: 0.20635998, y: 0.10039665, z: -0.13315928, w: -0.031805664} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3000001 + value: {x: 0.15300885, y: 0.045193896, z: -0.095294796, w: 0.98258066} + inSlope: {x: 0.17302075, y: 0.3249064, z: -0.12859684, w: -0.054686718} + outSlope: {x: 0.17302075, y: 0.3249064, z: -0.12859684, w: -0.054686718} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.1562328, y: 0.1552421, z: -0.109413095, w: 0.9692884} + inSlope: {x: -0.3067299, y: 0.28445655, z: 0.07763914, w: 0.01228181} + outSlope: {x: -0.3067299, y: 0.28445655, z: 0.07763914, w: 0.01228181} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.041824486, y: 0.19031222, z: -0.08376164, w: 0.9772492} + inSlope: {x: -0.16030835, y: -0.18468374, z: 0.10315375, w: 0.051776424} + outSlope: {x: -0.16030835, y: -0.18468374, z: 0.10315375, w: 0.051776424} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.1000001 + value: {x: 0.08524209, y: 0.09764211, z: -0.022635259, w: 0.99130595} + inSlope: {x: 0.2995476, y: -0.44452572, z: 0.3675682, w: 0.026653137} + outSlope: {x: 0.2995476, y: -0.44452572, z: 0.3675682, w: 0.026653137} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.4 + value: {x: 0.09384214, y: -0.0006459028, z: 0.018714178, w: 0.995411} + inSlope: {x: -0.173138, y: -0.17117363, z: -0.023952372, w: 0.01679422} + outSlope: {x: -0.173138, y: -0.17117363, z: -0.023952372, w: 0.01679422} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.966667 + value: {x: 0.045269437, y: 0.011456271, z: -0.01021847, w: 0.99885684} + inSlope: {x: -0.04138754, y: 0.025602965, z: -0.028194815, w: 0.0013017615} + outSlope: {x: -0.04138754, y: 0.025602965, z: -0.028194815, w: 0.0013017615} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.04094691, y: 0.01818634, z: -0.01953373, w: 0.9988048} + inSlope: {x: -0.008596041, y: 0.012684179, z: -0.0077353306, w: -0.000025033974} + outSlope: {x: -0.008596041, y: 0.012684179, z: -0.0077353306, w: -0.000025033974} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.5581913, y: -0.4452813, z: 0.4464845, w: 0.5392575} + inSlope: {x: 0.095416896, y: 0.12144058, z: 0.09120046, w: -0.07517158} + outSlope: {x: 0.095416896, y: 0.12144058, z: 0.09120046, w: -0.07517158} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.57281584, y: -0.42482093, z: 0.45751926, w: 0.531117} + inSlope: {x: -0.28615418, y: -0.3105833, z: -0.27984607, w: 0.2965826} + outSlope: {x: -0.28615418, y: -0.3105833, z: -0.27984607, w: 0.2965826} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: 0.48561564, y: -0.49447653, z: 0.38253352, w: 0.61101437} + inSlope: {x: -0.5217523, y: -0.26214752, z: -0.46054292, w: 0.49436963} + outSlope: {x: -0.5217523, y: -0.26214752, z: -0.46054292, w: 0.49436963} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.45561576, y: -0.5075597, z: 0.3461766, w: 0.64417326} + inSlope: {x: 0.061668895, y: -0.06480842, z: 0.17437038, w: -0.18941846} + outSlope: {x: 0.061668895, y: -0.06480842, z: 0.17437038, w: -0.18941846} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.86666673 + value: {x: 0.48738733, y: -0.50499254, z: 0.41701782, w: 0.5775225} + inSlope: {x: 0.24103627, y: 0.1651463, z: 0.38055402, w: -0.33248037} + outSlope: {x: 0.24103627, y: 0.1651463, z: 0.38055402, w: -0.33248037} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1333334 + value: {x: 0.51210624, y: -0.49856827, z: 0.48639458, w: 0.50259054} + inSlope: {x: -0.03145514, y: -0.070424914, z: 0.205723, w: -0.23648031} + outSlope: {x: -0.03145514, y: -0.070424914, z: 0.205723, w: -0.23648031} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3666668 + value: {x: 0.52348405, y: -0.48722097, z: 0.5168655, w: 0.47056392} + inSlope: {x: 0.058142178, y: 0.08671347, z: 0.03553204, w: -0.013673859} + outSlope: {x: 0.058142178, y: 0.08671347, z: 0.03553204, w: -0.013673859} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.52880317, y: -0.48208207, z: 0.498921, w: 0.48891914} + inSlope: {x: 0.048143014, y: 0.07773228, z: -0.015122308, w: 0.0400253} + outSlope: {x: 0.048143014, y: 0.07773228, z: -0.015122308, w: 0.0400253} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.0333335 + value: {x: 0.55005014, y: -0.46193966, z: 0.5330547, w: 0.4471121} + inSlope: {x: -0.050605148, y: -0.031806953, z: 0.10545431, w: -0.096279845} + outSlope: {x: -0.050605148, y: -0.031806953, z: 0.10545431, w: -0.096279845} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.2333333 + value: {x: 0.51767135, y: -0.50916183, z: 0.5123965, w: 0.458498} + inSlope: {x: -0.113041446, y: -0.14540675, z: -0.13361396, w: 0.116116114} + outSlope: {x: -0.113041446, y: -0.14540675, z: -0.13361396, w: 0.116116114} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.6333334 + value: {x: 0.54782295, y: -0.46164462, z: 0.50037634, w: 0.48620752} + inSlope: {x: 0.010558078, y: 0.029028233, z: -0.026413972, w: 0.042948913} + outSlope: {x: 0.010558078, y: 0.029028233, z: -0.026413972, w: 0.042948913} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.0666668 + value: {x: 0.54714257, y: -0.46280402, z: 0.4872775, w: 0.4990072} + inSlope: {x: 0.029361278, y: 0.05360847, z: -0.13364789, w: 0.14779434} + outSlope: {x: 0.029361278, y: 0.05360847, z: -0.13364789, w: 0.14779434} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.5581913, y: -0.44528124, z: 0.44648442, w: 0.5392576} + inSlope: {x: 0.020361561, y: 0.032086402, z: -0.06445801, w: 0.059067663} + outSlope: {x: 0.020361561, y: 0.032086402, z: -0.06445801, w: 0.059067663} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.5347247, y: 0.0540365, z: 0.14279495, w: 0.83111924} + inSlope: {x: 0.13797283, y: 0.15721376, z: -0.5376635, w: -0.013293027} + outSlope: {x: 0.13797283, y: 0.15721376, z: -0.5376635, w: -0.013293027} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: 0.5438292, y: 0.06744005, z: 0.10532661, w: 0.82982403} + inSlope: {x: -0.042181298, y: 0.1752876, z: -0.28474364, w: 0.053012066} + outSlope: {x: -0.042181298, y: 0.1752876, z: -0.28474364, w: 0.053012066} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.5019926, y: 0.077261075, z: 0.11672433, w: 0.85346913} + inSlope: {x: -0.61767644, y: 0.11539823, z: 0.21859273, w: 0.3218972} + outSlope: {x: -0.61767644, y: 0.11539823, z: 0.21859273, w: 0.3218972} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.40940264, y: 0.08512342, z: 0.1666786, w: 0.89295113} + inSlope: {x: -0.4939552, y: 0.018249305, z: 0.3167745, w: 0.16531439} + outSlope: {x: -0.4939552, y: 0.018249305, z: 0.3167745, w: 0.16531439} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: 0.3242807, y: 0.10412525, z: 0.17988704, w: 0.9228438} + inSlope: {x: -0.77910876, y: 0.38543648, z: -0.27020285, w: 0.28014347} + outSlope: {x: -0.77910876, y: 0.38543648, z: -0.27020285, w: 0.28014347} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6333334 + value: {x: 0.26380855, y: 0.20922108, z: -0.035387184, w: 0.940946} + inSlope: {x: 0.29825148, y: 0.7650123, z: -2.218856, w: -0.3484924} + outSlope: {x: 0.29825148, y: 0.7650123, z: -2.218856, w: -0.3484924} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.320259, y: 0.2749084, z: -0.26925665, w: 0.8656561} + inSlope: {x: 0.72998375, y: 0.44415203, z: -2.0725212, w: -1.0415035} + outSlope: {x: 0.72998375, y: 0.44415203, z: -2.0725212, w: -1.0415035} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.86666673 + value: {x: 0.40090835, y: 0.29529333, z: -0.43146783, w: 0.7522698} + inSlope: {x: 0.22124413, y: -0.029339802, z: -0.41234213, w: -0.33613253} + outSlope: {x: 0.22124413, y: -0.029339802, z: -0.41234213, w: -0.33613253} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0333334 + value: {x: 0.3277051, y: 0.3121257, z: -0.41657838, w: 0.78844744} + inSlope: {x: -0.97487724, y: 0.17468452, z: 0.38055027, w: 0.53296256} + outSlope: {x: -0.97487724, y: 0.17468452, z: 0.38055027, w: 0.53296256} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2 + value: {x: 0.16055924, y: 0.32404646, z: -0.307268, w: 0.8802278} + inSlope: {x: -0.7676447, y: -0.07032714, z: 0.82690346, w: 0.45682803} + outSlope: {x: -0.7676447, y: -0.07032714, z: 0.82690346, w: 0.45682803} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.16163702, y: 0.21043319, z: 0.021807339, w: 0.9639065} + inSlope: {x: 0.45155883, y: -0.43531567, z: 0.8466956, w: 0.00032280106} + outSlope: {x: 0.45155883, y: -0.43531567, z: 0.8466956, w: 0.00032280106} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.8000001 + value: {x: 0.34072897, y: 0.10752356, z: 0.16036668, w: 0.92012227} + inSlope: {x: 1.1148183, y: -0.43820274, z: 0.23024842, w: -0.40320078} + outSlope: {x: 1.1148183, y: -0.43820274, z: 0.23024842, w: -0.40320078} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.530519, y: 0.05089029, z: 0.15360507, w: 0.8320849} + inSlope: {x: 0.44754928, y: -0.04447364, z: -0.24366689, w: -0.2343466} + outSlope: {x: 0.44754928, y: -0.04447364, z: -0.24366689, w: -0.2343466} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.1000001 + value: {x: 0.56381047, y: 0.048313238, z: 0.13186258, w: 0.81387705} + inSlope: {x: 0.43459338, y: -0.09698983, z: -0.14154053, w: -0.2723419} + outSlope: {x: 0.43459338, y: -0.09698983, z: -0.14154053, w: -0.2723419} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.3000002 + value: {x: 0.598229, y: 0.02920351, z: 0.14695477, w: 0.78719354} + inSlope: {x: -0.23797564, y: 0.07499659, z: 0.035134736, w: 0.17013536} + outSlope: {x: -0.23797564, y: 0.07499659, z: 0.035134736, w: 0.17013536} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.5333335 + value: {x: 0.49220204, y: 0.07963606, z: 0.11829304, w: 0.85872114} + inSlope: {x: -0.4224255, y: 0.25604147, z: -0.26466835, w: 0.25528306} + outSlope: {x: -0.4224255, y: 0.25604147, z: -0.26466835, w: 0.25528306} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.8000002 + value: {x: 0.46828502, y: 0.12559633, z: 0.027787447, w: 0.874164} + inSlope: {x: 0.09594941, y: 0.05361361, z: -0.21584877, w: -0.05168622} + outSlope: {x: 0.09594941, y: 0.05361361, z: -0.21584877, w: -0.05168622} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.266667 + value: {x: 0.5276458, y: 0.06327918, z: 0.12768176, w: 0.8374265} + inSlope: {x: 0.14334811, y: -0.18507975, z: 0.3049918, w: -0.12266737} + outSlope: {x: 0.14334811, y: -0.18507975, z: 0.3049918, w: -0.12266737} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.5347248, y: 0.0540365, z: 0.14279498, w: 0.83111924} + inSlope: {x: 0.073732205, y: -0.09657269, z: 0.15717357, w: -0.0672806} + outSlope: {x: 0.073732205, y: -0.09657269, z: 0.15717357, w: -0.0672806} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.14711785, y: -0.013491823, z: -0.1667998, w: 0.9748601} + inSlope: {x: -0.4034717, y: 0.17929915, z: 0.8175918, w: 0.18789767} + outSlope: {x: -0.4034717, y: 0.17929915, z: 0.8175918, w: 0.18789767} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.1336688, y: -0.0075151846, z: -0.13954674, w: 0.9811233} + inSlope: {x: -0.40733433, y: 0.16903977, z: 0.8208859, w: 0.17354427} + outSlope: {x: -0.40733433, y: 0.16903977, z: 0.8208859, w: 0.17354427} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: 0.11996223, y: -0.0022225047, z: -0.11207407, w: 0.9864297} + inSlope: {x: -0.020421907, y: 0.027090862, z: 0.21632846, w: 0.032093525} + outSlope: {x: -0.020421907, y: 0.027090862, z: 0.21632846, w: 0.032093525} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.16264468, y: -0.014893723, z: -0.15224235, w: 0.9747549} + inSlope: {x: 1.1433603, y: -0.3691869, z: -0.8636157, w: -0.34412923} + outSlope: {x: 1.1433603, y: -0.3691869, z: -0.8636157, w: -0.34412923} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.35393208, y: -0.12794794, z: -0.33210516, w: 0.86490905} + inSlope: {x: 1.0760907, y: -1.3956534, z: -1.9510148, w: -1.4156585} + outSlope: {x: 1.0760907, y: -1.3956534, z: -1.9510148, w: -1.4156585} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: 0.38804656, y: -0.2923533, z: -0.55624306, w: 0.6741981} + inSlope: {x: -0.4873481, y: -1.5744505, z: -2.3099515, w: -2.3065531} + outSlope: {x: -0.4873481, y: -1.5744505, z: -2.3099515, w: -2.3065531} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: 0.3257489, y: -0.37374908, z: -0.69904286, w: 0.51530415} + inSlope: {x: -1.1097444, y: -0.85164213, z: -1.8102462, w: -2.330449} + outSlope: {x: -1.1097444, y: -0.85164213, z: -1.8102462, w: -2.330449} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: 0.22597562, y: -0.39409244, z: -0.8249473, w: 0.33628583} + inSlope: {x: -0.718128, y: 0.28275198, z: -0.80030704, w: -1.1068001} + outSlope: {x: -0.718128, y: 0.28275198, z: -0.80030704, w: -1.1068001} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6333334 + value: {x: 0.19676338, y: -0.36284298, z: -0.85895765, w: 0.3030197} + inSlope: {x: 0.10425801, y: 0.16489235, z: 0.09795796, w: 0.39748612} + outSlope: {x: 0.10425801, y: 0.16489235, z: 0.09795796, w: 0.39748612} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.24576321, y: -0.37110528, z: -0.8023756, w: 0.39758626} + inSlope: {x: 0.83150244, y: -0.2521849, z: 1.0013525, w: 1.2539623} + outSlope: {x: 0.83150244, y: -0.2521849, z: 1.0013525, w: 1.2539623} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.33477238, y: -0.3906531, z: -0.69273883, w: 0.5054013} + inSlope: {x: 0.7346983, y: -0.14934184, z: 0.9041201, w: 0.6539415} + outSlope: {x: 0.7346983, y: -0.14934184, z: 0.9041201, w: 0.6539415} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.3751295, y: -0.41530773, z: -0.64918876, w: 0.5151226} + inSlope: {x: -0.051138498, y: -0.0781126, z: -0.08839571, w: -0.1368498} + outSlope: {x: -0.051138498, y: -0.0781126, z: -0.08839571, w: -0.1368498} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2 + value: {x: 0.37700427, y: -0.44435915, z: -0.65134895, w: 0.4859602} + inSlope: {x: 0.21016648, y: -0.21540439, z: 0.2403959, w: -0.039324798} + outSlope: {x: 0.21016648, y: -0.21540439, z: 0.2403959, w: -0.039324798} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4000001 + value: {x: 0.4421893, y: -0.44622508, z: -0.5703135, w: 0.52923936} + inSlope: {x: 0.15210822, y: 0.17055647, z: 0.22027484, w: 0.25626028} + outSlope: {x: 0.15210822, y: 0.17055647, z: 0.22027484, w: 0.25626028} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.4560272, y: -0.3996876, z: -0.5386787, w: 0.5849053} + inSlope: {x: 0.23985806, y: 0.5269306, z: 0.54038405, w: 0.66065955} + outSlope: {x: 0.23985806, y: 0.5269306, z: 0.54038405, w: 0.66065955} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7 + value: {x: 0.47589096, y: -0.27177328, z: -0.4144016, w: 0.7265938} + inSlope: {x: -0.3130016, y: 1.2563161, z: 1.0400074, w: 1.266058} + outSlope: {x: -0.3130016, y: 1.2563161, z: 1.0400074, w: 1.266058} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.8666668 + value: {x: 0.27313805, y: -0.08293817, z: -0.30777445, w: 0.9076297} + inSlope: {x: -1.8022501, y: 0.9394999, z: 0.5175869, w: 0.8030705} + outSlope: {x: -1.8022501, y: 0.9394999, z: 0.5175869, w: 0.8030705} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.06688882, y: 0.0022214954, z: -0.1943443, w: 0.97864765} + inSlope: {x: -0.858165, y: 0.26546013, z: 1.1464672, w: 0.29298395} + outSlope: {x: -0.858165, y: 0.26546013, z: 1.1464672, w: 0.29298395} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.1333334 + value: {x: 0.043070458, y: 0.011645307, z: -0.08959486, w: 0.9949784} + inSlope: {x: 0.073908344, y: -0.002968761, z: 0.044208206, w: 0.0011408338} + outSlope: {x: 0.073908344, y: -0.002968761, z: 0.044208206, w: 0.0011408338} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.266667 + value: {x: 0.07512318, y: 0.004958605, z: -0.123485535, w: 0.98948634} + inSlope: {x: 0.4677073, y: -0.08830179, z: -0.10822221, w: -0.04889831} + outSlope: {x: 0.4677073, y: -0.08830179, z: -0.10822221, w: -0.04889831} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.4666667 + value: {x: 0.15441714, y: -0.003970871, z: -0.085251346, w: 0.98431283} + inSlope: {x: 0.10656321, y: 0.019079551, z: 0.28840202, w: 0.008677793} + outSlope: {x: 0.10656321, y: 0.019079551, z: 0.28840202, w: 0.008677793} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.7333336 + value: {x: 0.0942577, y: 0.004984998, z: -0.049982715, w: 0.99427986} + inSlope: {x: -0.36375207, y: 0.02406509, z: -0.029400945, w: 0.033246763} + outSlope: {x: -0.36375207, y: 0.02406509, z: -0.029400945, w: 0.033246763} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.966667 + value: {x: 0.08865348, y: 0.000011827416, z: -0.12147875, w: 0.9886271} + inSlope: {x: 0.23955074, y: -0.06114044, z: -0.39659905, w: -0.07010293} + outSlope: {x: 0.23955074, y: -0.06114044, z: -0.39659905, w: -0.07010293} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.3000002 + value: {x: 0.14689098, y: -0.013897917, z: -0.17007674, w: 0.97432226} + inSlope: {x: 0.02221676, y: 0.009742728, z: 0.09985069, w: 0.014234496} + outSlope: {x: 0.02221676, y: 0.009742728, z: 0.09985069, w: 0.014234496} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.14711782, y: -0.013491661, z: -0.16679977, w: 0.9748601} + inSlope: {x: 0.006805218, y: 0.01218769, z: 0.098309316, w: 0.016134396} + outSlope: {x: 0.006805218, y: 0.01218769, z: 0.098309316, w: 0.016134396} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.056775067, y: -0.1741072, z: -0.010359076, w: 0.9830341} + inSlope: {x: 0.026573313, y: -0.87023777, z: -0.67108643, w: -0.18070756} + outSlope: {x: 0.026573313, y: -0.87023777, z: -0.67108643, w: -0.18070756} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: -0.05588929, y: -0.20311512, z: -0.032728624, w: 0.9770105} + inSlope: {x: -0.023044419, y: -1.1462513, z: -0.76369846, w: -0.2793869} + outSlope: {x: -0.023044419, y: -1.1462513, z: -0.76369846, w: -0.2793869} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: -0.05831136, y: -0.25052395, z: -0.06127231, w: 0.9644083} + inSlope: {x: -0.09534374, y: -1.2949308, z: -0.5540105, w: -0.36577815} + outSlope: {x: -0.09534374, y: -1.2949308, z: -0.5540105, w: -0.36577815} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.0771453, y: -0.34084377, z: -0.07181445, w: 0.93419313} + inSlope: {x: -0.35757828, y: -0.38783446, z: 0.08628574, w: -0.16221552} + outSlope: {x: -0.35757828, y: -0.38783446, z: 0.08628574, w: -0.16221552} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.11146115, y: -0.28993613, z: -0.046250056, w: 0.9494074} + inSlope: {x: -0.27092168, y: 1.6880198, z: 0.40407202, w: 0.47763085} + outSlope: {x: -0.27092168, y: 1.6880198, z: 0.40407202, w: 0.47763085} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: -0.124784745, y: -0.0075765303, z: 0.0038977833, w: 0.99214727} + inSlope: {x: 0.029964484, y: 3.6899147, z: 0.52711976, w: 0.012638666} + outSlope: {x: 0.029964484, y: 3.6899147, z: 0.52711976, w: 0.012638666} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: -0.11523219, y: 0.2453348, z: 0.035156928, w: 0.9619233} + inSlope: {x: 0.26843774, y: 3.5277026, z: 0.37963045, w: -0.85853946} + outSlope: {x: 0.26843774, y: 3.5277026, z: 0.37963045, w: -0.85853946} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: -0.0749814, y: 0.49175698, z: 0.056351755, w: 0.86566585} + inSlope: {x: 0.51093936, y: 1.2826622, z: 0.10610838, w: -0.6683192} + outSlope: {x: 0.51093936, y: 1.2826622, z: 0.10610838, w: -0.6683192} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6333334 + value: {x: -0.012986031, y: 0.52047646, z: 0.061905663, w: 0.85152996} + inSlope: {x: 0.72039247, y: -0.5551728, z: 0.027396401, w: 0.3402035} + outSlope: {x: 0.72039247, y: -0.5551728, z: 0.027396401, w: 0.3402035} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7666667 + value: {x: 0.06275372, y: 0.32214937, z: 0.028304044, w: 0.9441825} + inSlope: {x: 0.31788364, y: -2.152344, z: -0.5568227, w: 0.7280278} + outSlope: {x: 0.31788364, y: -2.152344, z: -0.5568227, w: 0.7280278} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.90000004 + value: {x: 0.083717376, y: 0.09244666, z: -0.02820666, w: 0.991791} + inSlope: {x: 0.031249192, y: -0.7528729, z: -0.10957622, w: 0.07278714} + outSlope: {x: 0.031249192, y: -0.7528729, z: -0.10957622, w: 0.07278714} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.087017834, y: 0.077572785, z: -0.023777295, w: 0.99289733} + inSlope: {x: 0.08397692, y: 0.075456604, z: 0.12277922, w: -0.010654603} + outSlope: {x: 0.08397692, y: 0.075456604, z: 0.12277922, w: -0.010654603} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2 + value: {x: 0.1177172, y: 0.08592754, z: -0.0047111986, w: 0.98931134} + inSlope: {x: 0.08145966, y: -0.49090093, z: 0.1313783, w: 0.03125313} + outSlope: {x: 0.08145966, y: -0.49090093, z: 0.1313783, w: 0.03125313} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3666668 + value: {x: 0.108621776, y: -0.049792707, z: 0.040992223, w: 0.9919887} + inSlope: {x: -0.14476484, y: -0.78783125, z: 0.3068124, w: -0.03494291} + outSlope: {x: -0.14476484, y: -0.78783125, z: 0.3068124, w: -0.03494291} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333334 + value: {x: 0.09027691, y: -0.1549517, z: 0.059313454, w: 0.981999} + inSlope: {x: -0.056182496, y: -0.949517, z: -0.06912305, w: -0.14673038} + outSlope: {x: -0.056182496, y: -0.949517, z: -0.06912305, w: -0.14673038} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6333334 + value: {x: 0.08353082, y: -0.303001, z: 0.048494775, w: 0.948083} + inSlope: {x: -0.09270662, y: -1.8941841, z: -0.09966065, w: -0.5960411} + outSlope: {x: -0.09270662, y: -1.8941841, z: -0.09966065, w: -0.5960411} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7333335 + value: {x: 0.069378495, y: -0.47420764, z: 0.03931331, w: 0.87679434} + inSlope: {x: -0.22810307, y: -1.1224623, z: -0.12397958, w: -0.5678855} + outSlope: {x: -0.22810307, y: -1.1224623, z: -0.12397958, w: -0.5678855} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.043360006, y: -0.5027175, z: 0.01993917, w: 0.8631324} + inSlope: {x: -0.30336094, y: 0.44596794, z: -0.2952463, w: 0.27665603} + outSlope: {x: -0.30336094, y: 0.44596794, z: -0.2952463, w: 0.27665603} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9666668 + value: {x: 0.0030237476, y: -0.35568106, z: -0.03662008, w: 0.9338848} + inSlope: {x: -0.31800747, y: 1.4895797, z: -0.48588568, w: 0.54948485} + outSlope: {x: -0.31800747, y: 1.4895797, z: -0.48588568, w: 0.54948485} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.1333334 + value: {x: -0.038287688, y: -0.18780246, z: -0.0871442, w: 0.9775839} + inSlope: {x: 0.016997341, y: 0.11853766, z: -0.027373645, w: 0.021811746} + outSlope: {x: 0.016997341, y: 0.11853766, z: -0.027373645, w: 0.021811746} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.3000002 + value: {x: -0.020548124, y: -0.26466316, z: -0.10049064, w: 0.9588706} + inSlope: {x: -0.005769074, y: -0.72847366, z: -0.28707665, w: -0.2317565} + outSlope: {x: -0.005769074, y: -0.72847366, z: -0.28707665, w: -0.2317565} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.4666667 + value: {x: -0.026223421, y: -0.36072624, z: -0.14176357, w: 0.9214619} + inSlope: {x: -0.0038720379, y: -0.33900455, z: -0.00592681, w: -0.13308021} + outSlope: {x: -0.0038720379, y: -0.33900455, z: -0.00592681, w: -0.13308021} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.7333336 + value: {x: -0.05835265, y: -0.3958988, z: -0.082953066, w: 0.9126763} + inSlope: {x: -0.29608306, y: 0.025980795, z: 0.13626787, w: 0.0048002624} + outSlope: {x: -0.29608306, y: 0.025980795, z: 0.13626787, w: 0.0048002624} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.0000002 + value: {x: -0.10520994, y: -0.30984002, z: -0.08094998, w: 0.94147605} + inSlope: {x: 0.025861325, y: 0.618974, z: 0.019479562, w: 0.20774713} + outSlope: {x: 0.025861325, y: 0.618974, z: 0.019479562, w: 0.20774713} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.266667 + value: {x: -0.066970505, y: -0.17218715, z: -0.02861277, w: 0.98236847} + inSlope: {x: 0.18829635, y: 0.08723491, z: 0.32207, w: 0.037638582} + outSlope: {x: 0.18829635, y: 0.08723491, z: 0.32207, w: 0.037638582} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.056775037, y: -0.17410727, z: -0.01035909, w: 0.9830341} + inSlope: {x: 0.111954615, y: -0.0223084, z: 0.20488621, w: 0.00560761} + outSlope: {x: 0.111954615, y: -0.0223084, z: 0.20488621, w: 0.00560761} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.19585045, y: 0.06724088, z: -0.23561035, w: 0.94953096} + inSlope: {x: -0.018851457, y: 0.021103395, z: -0.089908086, w: -0.020079015} + outSlope: {x: -0.018851457, y: 0.021103395, z: -0.089908086, w: -0.020079015} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: 0.17440768, y: 0.08916596, z: -0.3311448, w: 0.92302465} + inSlope: {x: -0.03591277, y: 0.035482164, z: -0.15096681, w: -0.05037636} + outSlope: {x: -0.03591277, y: 0.035482164, z: -0.15096681, w: -0.05037636} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5666667 + value: {x: 0.17371085, y: 0.089822814, z: -0.3340474, w: 0.92204595} + inSlope: {x: -0.0000011175881, y: -0.0000010058284, z: 0.000006705529, w: 0.0000026822115} + outSlope: {x: -0.0000011175881, y: -0.0000010058284, z: 0.000006705529, w: 0.0000026822115} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.17371096, y: 0.08982291, z: -0.3340472, w: 0.922046} + inSlope: {x: -0.014452427, y: 0.006440325, z: -0.017554628, w: -0.00428528} + outSlope: {x: -0.014452427, y: 0.006440325, z: -0.017554628, w: -0.00428528} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9000001 + value: {x: 0.1623916, y: 0.11571367, z: -0.3740048, w: 0.9057371} + inSlope: {x: 0.01632975, y: 0.18316029, z: -0.18850136, w: -0.10369251} + outSlope: {x: 0.01632975, y: 0.18316029, z: -0.18850136, w: -0.10369251} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.0666668 + value: {x: 0.16472843, y: 0.12131192, z: -0.35820782, w: 0.91095287} + inSlope: {x: -0.035902742, y: -0.1115192, z: 0.4490769, w: 0.19709428} + outSlope: {x: -0.035902742, y: -0.1115192, z: 0.4490769, w: 0.19709428} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.3000002 + value: {x: 0.17786272, y: 0.085278615, z: -0.24462365, w: 0.9493428} + inSlope: {x: 0.22829354, y: -0.23142067, z: 0.23323596, w: 0.03852818} + outSlope: {x: 0.22829354, y: -0.23142067, z: 0.23323596, w: 0.03852818} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.4666667 + value: {x: 0.19585027, y: 0.06724087, z: -0.23561023, w: 0.949531} + inSlope: {x: -9.549694e-12, y: -0.000001564629, z: -0.000002011641, w: 6.366463e-12} + outSlope: {x: -9.549694e-12, y: -0.000001564629, z: -0.000002011641, w: 6.366463e-12} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.1958505, y: 0.06724098, z: -0.23561035, w: 0.94953096} + inSlope: {x: 0.000010728846, y: -0.0000013411058, z: -0.00000044703526, w: -0.000001788141} + outSlope: {x: 0.000010728846, y: -0.0000013411058, z: -0.00000044703526, w: -0.000001788141} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.053263444, y: -0.11393379, z: 0.22920008, w: 0.96521986} + inSlope: {x: 0.059478987, y: 0.010915696, z: 0.10243892, w: -0.026575325} + outSlope: {x: 0.059478987, y: 0.010915696, z: 0.10243892, w: -0.026575325} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.06497846, y: -0.12271738, z: 0.27915236, w: 0.9501538} + inSlope: {x: 0.17679285, y: 0.04165918, z: 0.28991374, w: -0.09172619} + outSlope: {x: 0.17679285, y: 0.04165918, z: 0.28991374, w: -0.09172619} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.063838616, y: -0.124663055, z: 0.28077537, w: 0.9494993} + inSlope: {x: -0.18771604, y: -0.06997326, z: -0.25203067, w: 0.078079104} + outSlope: {x: -0.18771604, y: -0.06997326, z: -0.25203067, w: 0.078079104} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.06497857, y: -0.12271775, z: 0.27915227, w: 0.95015377} + inSlope: {x: 0.11449242, y: 0.049188934, z: 0.13675739, w: -0.041255966} + outSlope: {x: 0.11449242, y: 0.049188934, z: 0.13675739, w: -0.041255966} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7666667 + value: {x: 0.06426556, y: -0.12306142, z: 0.27822208, w: 0.9504306} + inSlope: {x: -0.15530068, y: -0.064395204, z: -0.19506706, w: 0.05886192} + outSlope: {x: -0.15530068, y: -0.064395204, z: -0.19506706, w: 0.05886192} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.90000004 + value: {x: 0.057331193, y: -0.12588479, z: 0.2694861, w: 0.95301807} + inSlope: {x: 0.089730725, y: 0.03692474, z: 0.11354102, w: -0.032798048} + outSlope: {x: 0.089730725, y: 0.03692474, z: 0.11354102, w: -0.032798048} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.06497859, y: -0.122717574, z: 0.27915245, w: 0.9501537} + inSlope: {x: -0.013656256, y: -0.0056479545, z: -0.017065568, w: 0.005235676} + outSlope: {x: -0.013656256, y: -0.0056479545, z: -0.017065568, w: 0.005235676} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.06480502, y: -0.12280077, z: 0.27892447, w: 0.9502218} + inSlope: {x: 0.08452505, y: 0.034963682, z: 0.10611391, w: -0.032393903} + outSlope: {x: 0.08452505, y: 0.034963682, z: 0.10611391, w: -0.032393903} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7 + value: {x: 0.05821059, y: -0.12659934, z: 0.27049994, w: 0.9525828} + inSlope: {x: -0.22297108, y: -0.14438538, z: -0.28260666, w: 0.074159436} + outSlope: {x: -0.22297108, y: -0.14438538, z: -0.28260666, w: 0.074159436} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9666668 + value: {x: 0.0077128564, y: -0.17170814, z: 0.21856816, w: 0.96056485} + inSlope: {x: -0.2051717, y: -0.10518773, z: -0.2155864, w: 0.032746203} + outSlope: {x: -0.2051717, y: -0.10518773, z: -0.2155864, w: 0.032746203} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.0666668 + value: {x: 0.02372718, y: -0.16307119, z: 0.23255603, w: 0.958521} + inSlope: {x: 0.5220885, y: 0.28575724, z: 0.5064585, w: -0.09143302} + outSlope: {x: 0.5220885, y: 0.28575724, z: 0.5064585, w: -0.09143302} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.1333334 + value: {x: 0.06261852, y: -0.13874225, z: 0.2668517, w: 0.95164055} + inSlope: {x: 0.40245953, y: 0.34330922, z: 0.20670418, w: -0.030172199} + outSlope: {x: 0.40245953, y: 0.34330922, z: 0.20670418, w: -0.030172199} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.2333333 + value: {x: 0.064529754, y: -0.11936942, z: 0.25282708, w: 0.9579485} + inSlope: {x: -0.2584775, y: 0.06141968, z: -0.47866935, w: 0.15014158} + outSlope: {x: -0.2584775, y: 0.06141968, z: -0.47866935, w: 0.15014158} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.3000002 + value: {x: 0.0537755, y: -0.11512855, z: 0.2295755, w: 0.96496046} + inSlope: {x: -0.03674926, y: 0.058788713, z: -0.09458998, w: 0.03183338} + outSlope: {x: -0.03674926, y: 0.058788713, z: -0.09458998, w: 0.03183338} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.5333335 + value: {x: 0.05161547, y: -0.114671074, z: 0.2269395, w: 0.9657561} + inSlope: {x: -0.015770286, y: -0.006903007, z: -0.021500608, w: 0.0051131896} + outSlope: {x: -0.015770286, y: -0.006903007, z: -0.021500608, w: 0.0051131896} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.06360449, y: -0.109303944, z: 0.24326655, w: 0.96168005} + inSlope: {x: -0.024629127, y: -0.011086698, z: -0.033328265, w: 0.008771726} + outSlope: {x: -0.024629127, y: -0.011086698, z: -0.033328265, w: 0.008771726} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.1000001 + value: {x: 0.053830557, y: -0.113682166, z: 0.22997467, w: 0.9650338} + inSlope: {x: 0.011365034, y: 0.0050612213, z: 0.015537158, w: -0.003739897} + outSlope: {x: 0.011365034, y: 0.0050612213, z: 0.015537158, w: -0.003739897} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.053264916, y: -0.11394106, z: 0.22919956, w: 0.9652191} + inSlope: {x: 0.0004279245, y: 0.0000735373, z: 0.00054046564, w: -0.00014305128} + outSlope: {x: 0.0004279245, y: 0.0000735373, z: 0.00054046564, w: -0.00014305128} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.0000000079843785, y: -0.043534204, z: -0.000000032449943, w: 0.9990519} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: -0.0000000079843785, y: -0.043534204, z: -0.000000032449943, w: 0.9990519} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2/mixamorig:LeftHandThumb3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.060331937, y: 0.053493477, z: 0.08011826, w: 0.99351877} + inSlope: {x: 0.81948245, y: -0.25295275, z: 0.21521306, w: -0.06668866} + outSlope: {x: 0.81948245, y: -0.25295275, z: 0.21521306, w: -0.06668866} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.08764802, y: 0.04506172, z: 0.08729203, w: 0.9912958} + inSlope: {x: 1.1600962, y: -0.3296638, z: 0.27513057, w: -0.12676209} + outSlope: {x: 1.1600962, y: -0.3296638, z: 0.27513057, w: -0.12676209} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.24102978, y: 0.009957477, z: 0.10999508, w: 0.96421295} + inSlope: {x: 1.2644101, y: -0.27625412, z: 0.08983322, w: -0.31186315} + outSlope: {x: 1.2644101, y: -0.27625412, z: 0.08983322, w: -0.31186315} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: 0.34201694, y: -0.01571568, z: 0.1028833, w: 0.93391246} + inSlope: {x: 0.32460544, y: -0.064858586, z: -0.057620563, w: -0.11317045} + outSlope: {x: 0.32460544, y: -0.064858586, z: -0.057620563, w: -0.11317045} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: 0.37677923, y: -0.019191744, z: 0.10163819, w: 0.92051005} + inSlope: {x: 0.021241289, y: -0.014180799, z: 0.030116487, w: -0.012249639} + outSlope: {x: 0.021241289, y: -0.014180799, z: 0.030116487, w: -0.012249639} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6333334 + value: {x: 0.36002123, y: -0.018340211, z: 0.10199929, w: 0.92717016} + inSlope: {x: -0.29322174, y: 0.029619412, z: -0.025608614, w: 0.117833} + outSlope: {x: -0.29322174, y: 0.029619412, z: -0.025608614, w: 0.117833} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.35597143, y: -0.01781314, z: 0.10171773, w: 0.9287737} + inSlope: {x: -0.021152796, y: 0.005497774, z: -0.0061554466, w: 0.0088861585} + outSlope: {x: -0.021152796, y: 0.005497774, z: -0.0061554466, w: 0.0088861585} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0333334 + value: {x: 0.34843233, y: -0.017063115, z: 0.100817494, w: 0.9317401} + inSlope: {x: -0.081529215, y: 0.0071343593, z: -0.0086484365, w: 0.031619627} + outSlope: {x: -0.081529215, y: 0.0071343593, z: -0.0086484365, w: 0.031619627} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2333333 + value: {x: 0.34515202, y: -0.01639183, z: 0.1000508, w: 0.9330548} + inSlope: {x: -0.0069478196, y: 0.0027755278, z: -0.0031816573, w: 0.00296116} + outSlope: {x: -0.0069478196, y: 0.0027755278, z: -0.0031816573, w: 0.00296116} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5000001 + value: {x: 0.37511465, y: -0.020444524, z: 0.10681867, w: 0.92057633} + inSlope: {x: 0.17333306, y: -0.018673543, z: 0.031295527, w: -0.07434001} + outSlope: {x: 0.17333306, y: -0.018673543, z: 0.031295527, w: -0.07434001} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.3700853, y: -0.019206319, z: 0.10584687, w: 0.9227483} + inSlope: {x: -0.33340043, y: 0.053006884, z: -0.06356705, w: 0.14134243} + outSlope: {x: -0.33340043, y: 0.053006884, z: -0.06356705, w: 0.14134243} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.35178617, y: -0.017353646, z: 0.10117035, w: 0.93043536} + inSlope: {x: -0.037509836, y: 0.024564924, z: -0.06135045, w: 0.02124401} + outSlope: {x: -0.037509836, y: 0.024564924, z: -0.06135045, w: 0.02124401} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7666668 + value: {x: 0.3229916, y: 0.0029541622, z: 0.079555675, w: 0.9430475} + inSlope: {x: -0.9960759, y: 0.42056915, z: -0.4518709, w: 0.36662614} + outSlope: {x: -0.9960759, y: 0.42056915, z: -0.4518709, w: 0.36662614} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9000001 + value: {x: 0.14058569, y: 0.061987657, z: 0.0002483574, w: 0.9881261} + inSlope: {x: -1.4905183, y: 0.37647444, z: -0.62975454, w: 0.18884736} + outSlope: {x: -1.4905183, y: 0.37647444, z: -0.62975454, w: 0.18884736} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.0333335 + value: {x: -0.04742081, y: 0.09849477, z: -0.059896115, w: 0.99220085} + inSlope: {x: -0.85046625, y: 0.26524666, z: -0.1439325, w: -0.06658117} + outSlope: {x: -0.85046625, y: 0.26524666, z: -0.1439325, w: -0.06658117} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.015581568, y: 0.09488086, z: -0.00638921, w: 0.9953462} + inSlope: {x: 0.8579422, y: -0.37756443, z: 0.8178339, w: 0.05270814} + outSlope: {x: 0.8579422, y: -0.37756443, z: 0.8178339, w: 0.05270814} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.06344147, y: 0.058284458, z: 0.07665887, w: 0.9933285} + inSlope: {x: -0.07213092, y: 0.04579664, z: -0.021518603, w: 0.0028681788} + outSlope: {x: -0.07213092, y: 0.04579664, z: -0.021518603, w: 0.0028681788} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.4333334 + value: {x: 0.036867723, y: 0.066392004, z: 0.0656314, w: 0.99494994} + inSlope: {x: -0.0763914, y: 0.000633896, z: -0.007957116, w: 0.0034529003} + outSlope: {x: -0.0763914, y: 0.000633896, z: -0.007957116, w: 0.0034529003} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.6000001 + value: {x: 0.066688135, y: 0.043292936, z: 0.09139882, w: 0.99263525} + inSlope: {x: 0.2012142, y: -0.05619965, z: 0.062474407, w: -0.016470566} + outSlope: {x: 0.2012142, y: -0.05619965, z: 0.062474407, w: -0.016470566} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.8000002 + value: {x: 0.09906672, y: 0.04196199, z: 0.09389385, w: 0.98975194} + inSlope: {x: 0.14882407, y: -0.024310056, z: 0.027801123, w: -0.016379371} + outSlope: {x: 0.14882407, y: -0.024310056, z: 0.027801123, w: -0.016379371} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.1000001 + value: {x: 0.07950625, y: 0.049874734, z: 0.08490114, w: 0.9919592} + inSlope: {x: -0.21716079, y: 0.03336062, z: -0.04539118, w: 0.019645412} + outSlope: {x: -0.21716079, y: 0.03336062, z: -0.04539118, w: 0.019645412} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.06033196, y: 0.053493496, z: 0.08011824, w: 0.99351877} + inSlope: {x: 0.02354043, y: -0.022018163, z: 0.024865666, w: -0.0022226593} + outSlope: {x: 0.02354043, y: -0.022018163, z: 0.024865666, w: -0.0022226593} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.25314823, y: -0.012801537, z: 0.072528444, w: 0.96462} + inSlope: {x: 0.8545133, y: -0.06122804, z: 0.16494556, w: -0.2517128} + outSlope: {x: 0.8545133, y: -0.06122804, z: 0.16494556, w: -0.2517128} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.281632, y: -0.014842472, z: 0.07802663, w: 0.95622957} + inSlope: {x: 1.125457, y: -0.08413453, z: 0.21979585, w: -0.36324352} + outSlope: {x: 1.125457, y: -0.08413453, z: 0.21979585, w: -0.36324352} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: 0.3281787, y: -0.018410506, z: 0.0871815, w: 0.94040376} + inSlope: {x: 1.2265213, y: -0.097517304, z: 0.24325946, w: -0.4443186} + outSlope: {x: 1.2265213, y: -0.097517304, z: 0.24325946, w: -0.4443186} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.44083694, y: -0.02795481, z: 0.109470636, w: 0.8904479} + inSlope: {x: 1.2002915, y: -0.10508025, z: 0.23300558, w: -0.62439406} + outSlope: {x: 1.2002915, y: -0.10508025, z: 0.23300558, w: -0.62439406} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: 0.57056665, y: -0.039882068, z: 0.13376907, w: 0.80930156} + inSlope: {x: 0.2543118, y: -0.02091061, z: 0.043238986, w: -0.18605317} + outSlope: {x: 0.2543118, y: -0.02091061, z: 0.043238986, w: -0.18605317} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: 0.55785483, y: -0.038926143, z: 0.13153535, w: 0.81852376} + inSlope: {x: -0.05620028, y: 0.0053773215, z: -0.008850835, w: 0.040107932} + outSlope: {x: -0.05620028, y: 0.0053773215, z: -0.008850835, w: 0.040107932} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.70000005 + value: {x: 0.5659978, y: -0.039399825, z: 0.13299313, w: 0.8126543} + inSlope: {x: 0.18487394, y: -0.013051517, z: 0.031792223, w: -0.1343742} + outSlope: {x: 0.18487394, y: -0.013051517, z: 0.031792223, w: -0.1343742} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.86666673 + value: {x: 0.56097347, y: -0.03902558, z: 0.13211761, w: 0.81629086} + inSlope: {x: -0.15675542, y: 0.011122504, z: -0.026984135, w: 0.11302023} + outSlope: {x: -0.15675542, y: 0.011122504, z: -0.026984135, w: 0.11302023} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.557301, y: -0.038849305, z: 0.13152635, w: 0.81890607} + inSlope: {x: -0.0022521643, y: -0.00081075437, z: 0.00030465447, w: 0.0014483938} + outSlope: {x: -0.0022521643, y: -0.00081075437, z: 0.00030465447, w: 0.0014483938} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666668 + value: {x: 0.5644189, y: -0.03937166, z: 0.13276894, w: 0.81378967} + inSlope: {x: -0.065591626, y: 0.005931983, z: -0.01228161, w: 0.04767447} + outSlope: {x: -0.065591626, y: 0.005931983, z: -0.01228161, w: 0.04767447} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4666667 + value: {x: 0.5714143, y: -0.03981861, z: 0.13393918, w: 0.8086783} + inSlope: {x: 0.37040183, y: -0.027794184, z: 0.06437002, w: -0.27653894} + outSlope: {x: 0.37040183, y: -0.027794184, z: 0.06437002, w: -0.27653894} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333334 + value: {x: 0.5985331, y: -0.041935284, z: 0.13867626, w: 0.7878886} + inSlope: {x: 0.11551839, y: -0.009406684, z: 0.020349938, w: -0.09010353} + outSlope: {x: 0.11551839, y: -0.009406684, z: 0.020349938, w: -0.09010353} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.5591922, y: -0.038935367, z: 0.13181931, w: 0.81756455} + inSlope: {x: -0.3232208, y: 0.022547118, z: -0.059604555, w: 0.23400955} + outSlope: {x: -0.3232208, y: 0.022547118, z: -0.059604555, w: 0.23400955} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7666668 + value: {x: 0.5155241, y: -0.03605844, z: 0.123061374, w: 0.8472253} + inSlope: {x: -0.93803954, y: 0.063025884, z: -0.18397424, w: 0.59118986} + outSlope: {x: -0.93803954, y: 0.063025884, z: -0.18397424, w: 0.59118986} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.8666668 + value: {x: 0.3625007, y: -0.025675293, z: 0.09366505, w: 0.9269093} + inSlope: {x: -1.730814, y: 0.11429837, z: -0.33044314, w: 0.72270787} + outSlope: {x: -1.730814, y: 0.11429837, z: -0.33044314, w: 0.72270787} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9333334 + value: {x: 0.2555714, y: -0.018525839, z: 0.07311999, w: 0.9638431} + inSlope: {x: -1.7520812, y: 0.11942232, z: -0.33532894, w: 0.4814803} + outSlope: {x: -1.7520812, y: 0.11942232, z: -0.33532894, w: 0.4814803} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.15311944, y: -0.0115583865, z: 0.053720903, w: 0.9866787} + inSlope: {x: -0.2771953, y: 0.018921934, z: -0.05160731, w: 0.054808173} + outSlope: {x: -0.2771953, y: 0.018921934, z: -0.05160731, w: 0.054808173} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.0666668 + value: {x: 0.20466709, y: -0.014885214, z: 0.06346776, w: 0.9766584} + inSlope: {x: 0.90943265, y: -0.05437708, z: 0.17341085, w: -0.20127137} + outSlope: {x: 0.90943265, y: -0.05437708, z: 0.17341085, w: -0.20127137} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.1000001 + value: {x: 0.23349649, y: -0.016463796, z: 0.0689829, w: 0.96976787} + inSlope: {x: 0.6821128, y: -0.036835272, z: 0.13080129, w: -0.1694943} + outSlope: {x: 0.6821128, y: -0.036835272, z: 0.13080129, w: -0.1694943} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.1333334 + value: {x: 0.25014123, y: -0.017340897, z: 0.07218784, w: 0.9653588} + inSlope: {x: -0.3549858, y: 0.03323879, z: -0.06562523, w: 0.085933596} + outSlope: {x: -0.3549858, y: 0.03323879, z: -0.06562523, w: 0.085933596} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.2 + value: {x: 0.16905636, y: -0.010543932, z: 0.05715399, w: 0.98389137} + inSlope: {x: -0.60486263, y: 0.070143856, z: -0.11110469, w: 0.124864995} + outSlope: {x: -0.60486263, y: 0.070143856, z: -0.11110469, w: 0.124864995} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.2333333 + value: {x: 0.16950665, y: -0.009571626, z: 0.057200916, w: 0.9838211} + inSlope: {x: 0.05410747, y: 0.016951686, z: 0.007873525, w: -0.009687193} + outSlope: {x: 0.05410747, y: 0.016951686, z: 0.007873525, w: -0.009687193} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.1987885, y: -0.009880113, z: 0.062456638, w: 0.97800034} + inSlope: {x: 0.17058732, y: 0.0016713112, z: 0.031182049, w: -0.03551874} + outSlope: {x: 0.17058732, y: 0.0016713112, z: 0.031182049, w: -0.03551874} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.4333334 + value: {x: 0.20090845, y: -0.00934347, z: 0.062771216, w: 0.9775522} + inSlope: {x: 0.1018695, y: -0.006814843, z: 0.019173399, w: -0.022303484} + outSlope: {x: 0.1018695, y: -0.006814843, z: 0.019173399, w: -0.022303484} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.766667 + value: {x: 0.24054387, y: -0.01200422, z: 0.0702258, w: 0.9680201} + inSlope: {x: 0.29629585, y: -0.020350665, z: 0.056132205, w: -0.07795222} + outSlope: {x: 0.29629585, y: -0.020350665, z: 0.056132205, w: -0.07795222} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.1000001 + value: {x: 0.24724582, y: -0.01240644, z: 0.071423866, w: 0.9662371} + inSlope: {x: -0.07305875, y: 0.0052070944, z: -0.014067641, w: 0.019869823} + outSlope: {x: -0.07305875, y: 0.0052070944, z: -0.014067641, w: 0.019869823} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.25314808, y: -0.012801437, z: 0.07252847, w: 0.96462005} + inSlope: {x: 0.0025033974, y: -0.00016448104, z: 0.0004705046, w: -0.0006937987} + outSlope: {x: 0.0025033974, y: -0.00016448104, z: 0.0004705046, w: -0.0006937987} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.000000024555883, y: 0.00000008177395, z: -0.000000056592295, + 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.033333335 + value: {x: -0.000000024555883, y: 0.00000008177395, z: -0.000000056592295, + 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: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2/mixamorig:LeftHandIndex3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.0848038, y: 0.11132288, z: 0.026197067, w: 0.98981273} + inSlope: {x: 1.0804222, y: -0.13644688, z: 0.3137389, w: -0.107343785} + outSlope: {x: 1.0804222, y: -0.13644688, z: 0.3137389, w: -0.107343785} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.12081787, y: 0.10677465, z: 0.03665503, w: 0.9862346} + inSlope: {x: 1.4390115, y: -0.12900554, z: 0.42206472, w: -0.19756077} + outSlope: {x: 1.4390115, y: -0.12900554, z: 0.42206472, w: -0.19756077} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: 0.1807379, y: 0.10272251, z: 0.054334715, w: 0.976642} + inSlope: {x: 1.6569037, y: -0.041211247, z: 0.46649253, w: -0.31950468} + outSlope: {x: 1.6569037, y: -0.041211247, z: 0.46649253, w: -0.31950468} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: 0.35091367, y: 0.12491898, z: 0.100551635, w: 0.92257476} + inSlope: {x: 0.38761768, y: 0.18459746, z: 0.1118412, w: -0.18297406} + outSlope: {x: 0.38761768, y: 0.18459746, z: 0.1118412, w: -0.18297406} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.38130492, y: 0.13748421, z: 0.10599716, w: 0.9080029} + inSlope: {x: 0.04521848, y: -0.013496203, z: 0.024347305, w: -0.019770566} + outSlope: {x: 0.04521848, y: -0.013496203, z: 0.024347305, w: -0.019770566} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.3711442, y: 0.13720062, z: 0.10473334, w: 0.9123919} + inSlope: {x: -0.12419036, y: 0.0116191115, z: -0.033965833, w: 0.05301925} + outSlope: {x: -0.12419036, y: 0.0116191115, z: -0.033965833, w: 0.05301925} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0333334 + value: {x: 0.36887044, y: 0.13743378, z: 0.10409097, w: 0.9133519} + inSlope: {x: -0.058185093, y: 0.006099784, z: -0.016615484, w: 0.024501055} + outSlope: {x: -0.058185093, y: 0.006099784, z: -0.016615484, w: 0.024501055} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666668 + value: {x: 0.36531392, y: 0.13806948, z: 0.10262229, w: 0.9148504} + inSlope: {x: 0.03220442, y: -0.005143812, z: 0.011444216, w: -0.013419106} + outSlope: {x: 0.03220442, y: -0.005143812, z: 0.011444216, w: -0.013419106} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5000001 + value: {x: 0.39910966, y: 0.13528721, z: 0.11389528, w: 0.899687} + inSlope: {x: 0.18243065, y: -0.013236907, z: 0.057402886, w: -0.08575905} + outSlope: {x: 0.18243065, y: -0.013236907, z: 0.057402886, w: -0.08575905} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.39412358, y: 0.13651927, z: 0.11203766, w: 0.90192944} + inSlope: {x: -0.34322715, y: 0.043418676, z: -0.11492437, w: 0.15668732} + outSlope: {x: -0.34322715, y: 0.043418676, z: -0.11492437, w: 0.15668732} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7 + value: {x: 0.3706919, y: 0.13516231, z: 0.102866456, w: 0.9130921} + inSlope: {x: -0.010645684, y: -0.067905866, z: -0.09838371, w: 0.025285155} + outSlope: {x: -0.010645684, y: -0.067905866, z: -0.09838371, w: 0.025285155} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7666668 + value: {x: 0.35639095, y: 0.13084678, z: 0.0859356, w: 0.9211296} + inSlope: {x: -0.5786576, y: -0.054051258, z: -0.4288835, w: 0.26679152} + outSlope: {x: -0.5786576, y: -0.054051258, z: -0.4288835, w: 0.26679152} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9666668 + value: {x: 0.15882118, y: 0.110744044, z: -0.023062108, w: 0.9808057} + inSlope: {x: -1.3222778, y: -0.08055289, z: -0.46342695, w: 0.21602964} + outSlope: {x: -1.3222778, y: -0.08055289, z: -0.46342695, w: 0.21602964} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.0666668 + value: {x: 0.07192601, y: 0.10916255, z: -0.042543087, w: 0.99050504} + inSlope: {x: -0.11205934, y: -0.022006541, z: 0.08356732, w: 0.014858558} + outSlope: {x: -0.11205934, y: -0.022006541, z: 0.08356732, w: 0.014858558} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.2 + value: {x: 0.1183679, y: 0.09708556, z: 0.008185763, w: 0.9881784} + inSlope: {x: 0.20745632, y: -0.047124892, z: 0.3526731, w: -0.021028537} + outSlope: {x: 0.20745632, y: -0.047124892, z: 0.3526731, w: -0.021028537} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.3666668 + value: {x: 0.08573859, y: 0.11483837, z: 0.021499563, w: 0.9894437} + inSlope: {x: -0.49679846, y: 0.1794052, z: -0.17853111, w: 0.026527967} + outSlope: {x: -0.49679846, y: 0.1794052, z: -0.17853111, w: 0.026527967} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.5000002 + value: {x: 0.06794914, y: 0.11617483, z: 0.018501025, w: 0.99072903} + inSlope: {x: 0.23714462, y: -0.1444995, z: 0.19852692, w: -0.004063551} + outSlope: {x: 0.23714462, y: -0.1444995, z: 0.19852692, w: -0.004063551} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.7 + value: {x: 0.12689742, y: 0.098599605, z: 0.046496913, w: 0.9859073} + inSlope: {x: 0.23134074, y: -0.022331359, z: 0.057850983, w: -0.030171197} + outSlope: {x: 0.23134074, y: -0.022331359, z: 0.057850983, w: -0.030171197} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.0333335 + value: {x: 0.13305992, y: 0.1080794, z: 0.037911467, w: 0.9844677} + inSlope: {x: -0.32421377, y: 0.049421757, z: -0.106227145, w: 0.042357486} + outSlope: {x: -0.32421377, y: 0.049421757, z: -0.106227145, w: 0.042357486} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.0848038, y: 0.11132293, z: 0.026197057, w: 0.98981273} + inSlope: {x: 0.008040376, y: -0.010493482, z: 0.015022061, w: 0.0001001359} + outSlope: {x: 0.008040376, y: -0.010493482, z: 0.015022061, w: 0.0001001359} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.3331308, y: -0.026532242, z: 0.08532969, w: 0.93863666} + inSlope: {x: 0.4757425, y: -0.048938967, z: 0.11925212, w: -0.18599866} + outSlope: {x: 0.4757425, y: -0.048938967, z: 0.11925212, w: -0.18599866} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: 0.37891787, y: -0.03166632, z: 0.097008444, w: 0.9197869} + inSlope: {x: 0.9616916, y: -0.12297486, z: 0.252406, w: -0.4303273} + outSlope: {x: 0.9616916, y: -0.12297486, z: 0.252406, w: -0.4303273} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: 0.47881404, y: -0.050013702, z: 0.12731859, w: 0.8671942} + inSlope: {x: 0.11694023, y: -0.10115369, z: 0.09449766, w: -0.08280959} + outSlope: {x: 0.11694023, y: -0.10115369, z: 0.09449766, w: -0.08280959} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.46087617, y: -0.055795882, z: 0.12983003, w: 0.8761416} + inSlope: {x: -0.10748685, y: -0.0062925187, z: -0.015230479, w: 0.058642037} + outSlope: {x: -0.10748685, y: -0.0062925187, z: -0.015230479, w: 0.058642037} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.70000005 + value: {x: 0.46368802, y: -0.05604672, z: 0.13032897, w: 0.87456656} + inSlope: {x: 0.06987735, y: -0.006388686, z: 0.0123303365, w: -0.039243393} + outSlope: {x: 0.06987735, y: -0.006388686, z: 0.0123303365, w: -0.039243393} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.4640808, y: -0.056108836, z: 0.13041538, w: 0.8743413} + inSlope: {x: 0.07712416, y: -0.007280067, z: 0.013841527, w: -0.04349555} + outSlope: {x: 0.07712416, y: -0.007280067, z: 0.013841527, w: -0.04349555} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4000001 + value: {x: 0.45521504, y: -0.05539456, z: 0.12878072, w: 0.879276} + inSlope: {x: -0.0797265, y: 0.0041376464, z: -0.015424058, w: 0.04380767} + outSlope: {x: -0.0797265, y: 0.0041376464, z: -0.015424058, w: 0.04380767} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.46087632, y: -0.055795774, z: 0.12982993, w: 0.87614155} + inSlope: {x: -0.07066242, y: 0.00999012, z: -0.023989923, w: 0.041067343} + outSlope: {x: -0.07066242, y: 0.00999012, z: -0.023989923, w: 0.041067343} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.8000001 + value: {x: 0.37614852, y: -0.049711227, z: 0.10505214, w: 0.9192416} + inSlope: {x: -1.1964397, y: 0.093363985, z: -0.3302166, w: 0.5277636} + outSlope: {x: -1.1964397, y: 0.093363985, z: -0.3302166, w: 0.5277636} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9000001 + value: {x: 0.2401123, y: -0.037856378, z: 0.06956508, w: 0.96750903} + inSlope: {x: -1.4202077, y: 0.13291633, z: -0.34467417, w: 0.38080162} + outSlope: {x: -1.4202077, y: 0.13291633, z: -0.34467417, w: 0.38080162} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9666668 + value: {x: 0.13077287, y: -0.027834237, z: 0.04550111, w: 0.98997647} + inSlope: {x: -1.6891878, y: 0.1522213, z: -0.33896267, w: 0.25146693} + outSlope: {x: -1.6891878, y: 0.1522213, z: -0.33896267, w: 0.25146693} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.07877754, y: -0.023102729, z: 0.03555048, w: 0.9959902} + inSlope: {x: -1.0869048, y: 0.11210361, z: -0.19706015, w: 0.11384215} + outSlope: {x: -1.0869048, y: 0.11210361, z: -0.19706015, w: 0.11384215} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.1000001 + value: {x: 0.08017344, y: -0.020302206, z: 0.037457358, w: 0.99587} + inSlope: {x: 1.0298672, y: -0.0375815, z: 0.21025862, w: -0.10164151} + outSlope: {x: 1.0298672, y: -0.0375815, z: 0.21025862, w: -0.10164151} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.16245702, y: -0.02316528, z: 0.053828187, w: 0.9849739} + inSlope: {x: 1.1776273, y: -0.03870705, z: 0.22636017, w: -0.20830056} + outSlope: {x: 1.1776273, y: -0.03870705, z: 0.22636017, w: -0.20830056} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.3231768, y: -0.02707616, z: 0.083615616, w: 0.94224846} + inSlope: {x: 0.3595491, y: 0.004155668, z: 0.06535689, w: -0.12661827} + outSlope: {x: 0.3595491, y: 0.004155668, z: 0.06535689, w: -0.12661827} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.5000002 + value: {x: 0.32810485, y: -0.026177375, z: 0.084323056, w: 0.94050604} + inSlope: {x: 0.0379067, y: -0.0027072942, z: 0.0076998267, w: -0.014004683} + outSlope: {x: 0.0379067, y: -0.0027072942, z: 0.0076998267, w: -0.014004683} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.1333334 + value: {x: 0.3354341, y: -0.026697317, z: 0.085800655, w: 0.93776834} + inSlope: {x: -0.03138411, y: 0.0022652114, z: -0.0063612, w: 0.011882197} + outSlope: {x: -0.03138411, y: 0.0022652114, z: -0.0063612, w: 0.011882197} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.33313295, y: -0.02658792, z: 0.08531426, w: 0.9386357} + inSlope: {x: -0.0075656245, y: -0.00007739298, z: -0.0015941277, w: 0.0028288392} + outSlope: {x: -0.0075656245, y: -0.00007739298, z: -0.0015941277, w: 0.0028288392} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.0000013048725, y: 0.0029256267, z: 0.000449561, w: 0.99999565} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: -0.0000013048725, y: 0.0029256267, z: 0.000449561, w: 0.99999565} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2/mixamorig:LeftHandMiddle3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.2869033, y: 0.21400952, z: 0.009154017, w: 0.9337037} + inSlope: {x: 0.9045302, y: -0.09763732, z: 0.46609896, w: -0.28018177} + outSlope: {x: 0.9045302, y: -0.09763732, z: 0.46609896, w: -0.28018177} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.3170543, y: 0.21075495, z: 0.02469065, w: 0.9243643} + inSlope: {x: 1.1019404, y: -0.10438732, z: 0.60319823, w: -0.38253844} + outSlope: {x: 1.1019404, y: -0.10438732, z: 0.60319823, w: -0.38253844} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: 0.360366, y: 0.20705037, z: 0.049367234, w: 0.90820116} + inSlope: {x: 0.9916626, y: -0.10344675, z: 0.63093853, w: -0.38906687} + outSlope: {x: 0.9916626, y: -0.10344675, z: 0.63093853, w: -0.38906687} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: 0.3966573, y: 0.19696873, z: 0.10411364, w: 0.89052045} + inSlope: {x: -0.17950729, y: -0.014500909, z: 0.23423582, w: 0.05526424} + outSlope: {x: -0.17950729, y: -0.014500909, z: 0.23423582, w: 0.05526424} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: 0.3269497, y: 0.19905064, z: 0.11318886, w: 0.9168812} + inSlope: {x: -0.2699759, y: 0.02153612, z: -0.030931778, w: 0.09599802} + outSlope: {x: -0.2699759, y: 0.02153612, z: -0.030931778, w: 0.09599802} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.3231279, y: 0.19929986, z: 0.113280654, w: 0.9181696} + inSlope: {x: 0.3254677, y: -0.04135742, z: 0.099408686, w: -0.11900066} + outSlope: {x: 0.3254677, y: -0.04135742, z: 0.099408686, w: -0.11900066} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.35745817, y: 0.19504206, z: 0.12309957, w: 0.90500206} + inSlope: {x: 0.0059475526, y: 0.00423898, z: -0.020316318, w: -0.0005150661} + outSlope: {x: 0.0059475526, y: 0.00423898, z: -0.020316318, w: -0.0005150661} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.31722233, y: 0.20116298, z: 0.10618519, w: 0.92066723} + inSlope: {x: -0.15210684, y: 0.01960808, z: -0.054582432, w: 0.05514089} + outSlope: {x: -0.15210684, y: 0.01960808, z: -0.054582432, w: 0.05514089} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0333334 + value: {x: 0.33576912, y: 0.19867112, z: 0.11316089, w: 0.9137743} + inSlope: {x: -0.058240097, y: 0.011641225, z: -0.028276829, w: 0.022370499} + outSlope: {x: -0.058240097, y: 0.011641225, z: -0.028276829, w: 0.022370499} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.33770823, y: 0.19829959, z: 0.114103116, w: 0.91302294} + inSlope: {x: 0.019903721, y: -0.006581235, z: 0.01553845, w: -0.00790087} + outSlope: {x: 0.019903721, y: -0.006581235, z: 0.01553845, w: -0.00790087} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4333334 + value: {x: 0.35709694, y: 0.19484492, z: 0.12296285, w: 0.9052057} + inSlope: {x: 0.37670544, y: -0.06368174, z: 0.16444305, w: -0.15732244} + outSlope: {x: 0.37670544, y: -0.06368174, z: 0.16444305, w: -0.15732244} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333334 + value: {x: 0.37870586, y: 0.19109115, z: 0.13270558, w: 0.8957987} + inSlope: {x: -0.1976173, y: 0.026937898, z: -0.07418573, w: 0.08609631} + outSlope: {x: -0.1976173, y: 0.026937898, z: -0.07418573, w: 0.08609631} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6000001 + value: {x: 0.34319714, y: 0.19684508, z: 0.11825669, w: 0.9107596} + inSlope: {x: -0.37356618, y: 0.07063541, z: -0.1742216, w: 0.15230447} + outSlope: {x: -0.37356618, y: 0.07063541, z: -0.1742216, w: 0.15230447} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7666668 + value: {x: 0.33708683, y: 0.18655309, z: 0.11995332, w: 0.9149763} + inSlope: {x: -0.37746584, y: -0.1400928, z: 0.015148908, w: 0.16336279} + outSlope: {x: -0.37746584, y: -0.1400928, z: 0.015148908, w: 0.16336279} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9333334 + value: {x: 0.19571272, y: 0.17954035, z: 0.10770705, w: 0.9580506} + inSlope: {x: -1.3475745, y: 0.13745162, z: -0.3201623, w: 0.2766419} + outSlope: {x: -1.3475745, y: 0.13745162, z: -0.3201623, w: 0.2766419} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.10137765, y: 0.19300365, z: 0.07820722, w: 0.97280824} + inSlope: {x: -0.9509953, y: 0.19625387, z: -0.45306486, w: 0.109185785} + outSlope: {x: -0.9509953, y: 0.19625387, z: -0.45306486, w: 0.109185785} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.1000001 + value: {x: 0.09921701, y: 0.19945222, z: 0.054351993, w: 0.97335535} + inSlope: {x: 0.8650929, y: -0.07976808, z: -0.016714703, w: -0.07745601} + outSlope: {x: 0.8650929, y: -0.07976808, z: -0.016714703, w: -0.07745601} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.2 + value: {x: 0.19309431, y: 0.19005194, z: 0.05275536, w: 0.96115124} + inSlope: {x: 0.6683148, y: 0.0051051416, z: -0.12057804, w: -0.1257081} + outSlope: {x: 0.6683148, y: 0.0051051416, z: -0.12057804, w: -0.1257081} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.3000002 + value: {x: 0.24788514, y: 0.20406884, z: 0.02370592, w: 0.946756} + inSlope: {x: 0.60253644, y: 0.1819818, z: -0.29396492, w: -0.18869448} + outSlope: {x: 0.60253644, y: 0.1819818, z: -0.29396492, w: -0.18869448} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.4333334 + value: {x: 0.2765848, y: 0.21818599, z: -0.0010935722, w: 0.93589234} + inSlope: {x: -0.07247425, y: -0.014042718, z: -0.00011022913, w: 0.024679922} + outSlope: {x: -0.07247425, y: -0.014042718, z: -0.00011022913, w: 0.024679922} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.6000001 + value: {x: 0.28812125, y: 0.20852925, z: 0.020415055, w: 0.9343902} + inSlope: {x: 0.25636488, y: -0.02424384, z: 0.12980674, w: -0.07642515} + outSlope: {x: 0.25636488, y: -0.02424384, z: 0.12980674, w: -0.07642515} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.9 + value: {x: 0.34206125, y: 0.20885032, z: 0.036358185, w: 0.9154528} + inSlope: {x: 0.049979884, y: 0.0247434, z: -0.027022108, w: -0.023222588} + outSlope: {x: 0.049979884, y: 0.0247434, z: -0.027022108, w: -0.023222588} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.0666668 + value: {x: 0.30831292, y: 0.21401155, z: 0.016251814, w: 0.92675674} + inSlope: {x: -0.26999053, y: 0.014467401, z: -0.109450206, w: 0.08930513} + outSlope: {x: -0.26999053, y: 0.014467401, z: -0.109450206, w: 0.08930513} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.2869034, y: 0.2140094, z: 0.009153978, w: 0.9337037} + inSlope: {x: -0.02118232, y: -0.0024828338, z: -0.001979975, w: 0.0071060727} + outSlope: {x: -0.02118232, y: -0.0024828338, z: -0.001979975, w: 0.0071060727} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.2096519, y: -0.011825243, z: 0.031191515, w: 0.97720695} + inSlope: {x: 0.6475912, y: -0.06597658, z: 0.13283488, w: -0.15189527} + outSlope: {x: 0.6475912, y: -0.06597658, z: 0.13283488, w: -0.15189527} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.23123828, y: -0.014024463, z: 0.035619345, w: 0.97214377} + inSlope: {x: 0.8855959, y: -0.08801621, z: 0.17891788, w: -0.22663501} + outSlope: {x: 0.8855959, y: -0.08801621, z: 0.17891788, w: -0.22663501} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: 0.3005596, y: -0.02057217, z: 0.049159825, w: 0.95227313} + inSlope: {x: 1.0227414, y: -0.090130374, z: 0.19669598, w: -0.337919} + outSlope: {x: 1.0227414, y: -0.090130374, z: 0.19669598, w: -0.337919} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: 0.47285005, y: -0.035525724, z: 0.0836639, w: 0.8764423} + inSlope: {x: 1.1928356, y: -0.101446345, z: 0.24707842, w: -0.667356} + outSlope: {x: 1.1928356, y: -0.101446345, z: 0.24707842, w: -0.667356} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.5860681, y: -0.04574426, z: 0.108572416, w: 0.8016506} + inSlope: {x: 0.06924203, y: -0.0075269397, z: 0.017698871, w: -0.05279564} + outSlope: {x: 0.06924203, y: -0.0075269397, z: 0.017698871, w: -0.05279564} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5666667 + value: {x: 0.5701259, y: -0.04414914, z: 0.104891576, w: 0.81363696} + inSlope: {x: -0.06461799, y: 0.0062186457, z: -0.016592368, w: 0.047772825} + outSlope: {x: -0.06461799, y: 0.0062186457, z: -0.016592368, w: 0.047772825} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0333334 + value: {x: 0.5633458, y: -0.043468785, z: 0.10328914, w: 0.8185862} + inSlope: {x: 0.026992861, y: -0.005996695, z: 0.012049154, w: -0.020443799} + outSlope: {x: 0.026992861, y: -0.005996695, z: 0.012049154, w: -0.020443799} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2 + value: {x: 0.59131205, y: -0.046897825, z: 0.11054156, w: 0.7974529} + inSlope: {x: -0.11113208, y: 0.013783885, z: -0.029376028, w: 0.08625009} + outSlope: {x: -0.11113208, y: 0.013783885, z: -0.029376028, w: 0.08625009} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3000001 + value: {x: 0.5664863, y: -0.043856032, z: 0.104050905, w: 0.81629854} + inSlope: {x: -0.12769651, y: 0.016005594, z: -0.035002302, w: 0.09411791} + outSlope: {x: -0.12769651, y: 0.016005594, z: -0.035002302, w: 0.09411791} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4666667 + value: {x: 0.56099015, y: -0.042510785, z: 0.1036305, w: 0.8202095} + inSlope: {x: 0.35773543, y: -0.030960789, z: 0.09080056, w: -0.26192707} + outSlope: {x: 0.35773543, y: -0.030960789, z: 0.09080056, w: -0.26192707} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333334 + value: {x: 0.5917572, y: -0.045491062, z: 0.111040935, w: 0.7971348} + inSlope: {x: 0.18492328, y: -0.017741432, z: 0.042725507, w: -0.14165208} + outSlope: {x: 0.18492328, y: -0.017741432, z: 0.042725507, w: -0.14165208} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7 + value: {x: 0.55774784, y: -0.04322914, z: 0.10185336, w: 0.82260233} + inSlope: {x: -0.17421734, y: 0.007049842, z: -0.042454183, w: 0.123543315} + outSlope: {x: -0.17421734, y: 0.007049842, z: -0.042454183, w: 0.123543315} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.8666668 + value: {x: 0.44818658, y: -0.02962147, z: 0.07998254, w: 0.8898619} + inSlope: {x: -1.2738316, y: 0.1618832, z: -0.26219416, w: 0.66269827} + outSlope: {x: -1.2738316, y: 0.1618832, z: -0.26219416, w: 0.66269827} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9666668 + value: {x: 0.292896, y: -0.010873668, z: 0.047172848, w: 0.954918} + inSlope: {x: -1.598541, y: 0.18139327, z: -0.34320745, w: 0.5155557} + outSlope: {x: -1.598541, y: 0.18139327, z: -0.34320745, w: 0.5155557} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.0666668 + value: {x: 0.18830502, y: -0.00032746542, z: 0.025152348, w: 0.98178846} + inSlope: {x: -0.24609897, y: 0.010443664, z: -0.047275513, w: 0.050785888} + outSlope: {x: -0.24609897, y: 0.010443664, z: -0.047275513, w: 0.050785888} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.20801179, y: -0.0053382013, z: 0.03039774, w: 0.9776393} + inSlope: {x: 0.42888606, y: -0.08136769, z: 0.09934912, w: -0.09406784} + outSlope: {x: 0.42888606, y: -0.08136769, z: 0.09934912, w: -0.09406784} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.4333334 + value: {x: 0.19719182, y: -0.010504585, z: 0.028570179, w: 0.97989225} + inSlope: {x: -0.01348996, y: 0.0014689299, z: -0.0029329704, w: 0.0028207926} + outSlope: {x: -0.01348996, y: 0.0014689299, z: -0.0029329704, w: 0.0028207926} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.7 + value: {x: 0.2024381, y: -0.011053928, z: 0.029679129, w: 0.97878283} + inSlope: {x: -0.012977179, y: 0.0013736105, z: -0.0030153291, w: 0.0027930697} + outSlope: {x: -0.012977179, y: 0.0013736105, z: -0.0030153291, w: 0.0027930697} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.0666668 + value: {x: 0.21088046, y: -0.011959588, z: 0.03145843, w: 0.97693235} + inSlope: {x: -0.027903717, y: 0.0030258978, z: -0.005998319, w: 0.0062656463} + outSlope: {x: -0.027903717, y: 0.0030258978, z: -0.005998319, w: 0.0062656463} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.2096488, y: -0.011819593, z: 0.031212874, w: 0.977207} + inSlope: {x: -0.02756643, y: 0.003219995, z: -0.004875255, w: 0.0061243833} + outSlope: {x: -0.02756643, y: 0.003219995, z: -0.004875255, w: 0.0061243833} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.00000005062325, y: -0.00000010534877, z: -0.000000019823897, + 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.033333335 + value: {x: -0.00000005062325, y: -0.00000010534877, z: -0.000000019823897, + 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: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2/mixamorig:LeftHandPinky3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.6114056, y: -0.04921142, z: -0.08838324, w: 0.7848247} + inSlope: {x: -0.10427355, y: -0.4650416, z: 0.9770681, w: 0.13661206} + outSlope: {x: -0.10427355, y: -0.4650416, z: 0.9770681, w: 0.13661206} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.6079298, y: -0.06471281, z: -0.055814303, w: 0.78937846} + inSlope: {x: -0.16333757, y: -0.47312737, z: 0.9714041, w: 0.15523195} + outSlope: {x: -0.16333757, y: -0.47312737, z: 0.9714041, w: 0.15523195} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: 0.60051644, y: -0.080753244, z: -0.023622965, w: 0.7951735} + inSlope: {x: -0.24069604, y: -0.18839312, z: 0.26224345, w: 0.1802471} + outSlope: {x: -0.24069604, y: -0.18839312, z: 0.26224345, w: 0.1802471} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.5792699, y: -0.07337171, z: -0.060838, w: 0.8095442} + inSlope: {x: -0.48435247, y: 0.03403824, z: -0.564867, w: 0.30699137} + outSlope: {x: -0.48435247, y: 0.03403824, z: -0.564867, w: 0.30699137} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: 0.36643645, y: -0.14912784, z: -0.045208044, w: 0.9173012} + inSlope: {x: -1.111376, y: -0.5958042, z: 0.67664814, w: 0.38006443} + outSlope: {x: -1.111376, y: -0.5958042, z: 0.67664814, w: 0.38006443} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.22326985, y: -0.21452679, z: 0.021865945, w: 0.95060545} + inSlope: {x: -0.91236603, y: -0.28311974, z: 0.14534847, w: 0.149636} + outSlope: {x: -0.91236603, y: -0.28311974, z: 0.14534847, w: 0.149636} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6333334 + value: {x: 0.12528682, y: -0.24538131, z: 0.042595398, w: 0.9603525} + inSlope: {x: -0.84941757, y: -0.3434491, z: 0.4168234, w: 0.0013518166} + outSlope: {x: -0.84941757, y: -0.3434491, z: 0.4168234, w: 0.0013518166} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7666667 + value: {x: -0.02833766, y: -0.29824823, z: 0.10739322, w: 0.94800407} + inSlope: {x: -1.1379242, y: -0.31355935, z: 0.34528998, w: -0.16615734} + outSlope: {x: -1.1379242, y: -0.31355935, z: 0.34528998, w: -0.16615734} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.86666673 + value: {x: -0.08349713, y: -0.31290746, z: 0.12324371, w: 0.93804485} + inSlope: {x: 0.2777673, y: 0.047928467, z: 0.028407713, w: 0.032714065} + outSlope: {x: 0.2777673, y: 0.047928467, z: 0.028407713, w: 0.032714065} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9333334 + value: {x: -0.03231621, y: -0.3000193, z: 0.110295825, w: 0.9469842} + inSlope: {x: 0.37370804, y: 0.41294456, z: -1.0271727, w: 0.24407662} + outSlope: {x: 0.37370804, y: 0.41294456, z: -1.0271727, w: 0.24407662} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9666667 + value: {x: -0.03557094, y: -0.2811227, z: 0.055303913, w: 0.9574165} + inSlope: {x: -0.16279241, y: 0.5027618, z: -1.4491801, w: 0.23678653} + outSlope: {x: -0.16279241, y: 0.5027618, z: -1.4491801, w: 0.23678653} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.04316903, y: -0.26650187, z: 0.013683903, w: 0.9627699} + inSlope: {x: -0.57517844, y: 0.027899712, z: -0.26505172, w: -0.011863992} + outSlope: {x: -0.57517844, y: 0.027899712, z: -0.26505172, w: -0.011863992} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0333334 + value: {x: -0.07391624, y: -0.27926278, z: 0.0376339, w: 0.9566255} + inSlope: {x: -0.96400476, y: -0.55162877, z: 1.0777922, w: -0.29722536} + outSlope: {x: -0.96400476, y: -0.55162877, z: 1.0777922, w: -0.29722536} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.10743606, y: -0.30327713, z: 0.08553673, w: 0.9429549} + inSlope: {x: -0.34405935, y: -0.65495807, z: 1.6336205, w: -0.399679} + outSlope: {x: -0.34405935, y: -0.65495807, z: 1.6336205, w: -0.399679} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1333334 + value: {x: -0.071519114, y: -0.34108824, z: 0.21472971, w: 0.9123787} + inSlope: {x: 0.7596345, y: -0.5138419, z: 2.002389, w: -0.601679} + outSlope: {x: 0.7596345, y: -0.5138419, z: 2.002389, w: -0.601679} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666668 + value: {x: 0.07446901, y: -0.3818708, z: 0.45521042, w: 0.8008824} + inSlope: {x: 1.9006853, y: 0.033091024, z: 1.3640547, w: -0.9455923} + outSlope: {x: 1.9006853, y: 0.033091024, z: 1.3640547, w: -0.9455923} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3666668 + value: {x: 0.31214926, y: -0.34143874, z: 0.5172794, w: 0.7200031} + inSlope: {x: 2.3903675, y: 0.6997942, z: -0.22238483, w: -0.52843744} + outSlope: {x: 2.3903675, y: 0.6997942, z: -0.22238483, w: -0.52843744} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4333334 + value: {x: 0.44402584, y: -0.2835163, z: 0.47274044, w: 0.7063824} + inSlope: {x: 1.5920129, y: 0.7521659, z: -1.0920271, w: 0.040048994} + outSlope: {x: 1.5920129, y: 0.7521659, z: -1.0920271, w: 0.040048994} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5000001 + value: {x: 0.5210627, y: -0.24632595, z: 0.38436714, w: 0.7211651} + inSlope: {x: 0.66131157, y: 0.5998837, z: -1.4571779, w: 0.5002211} + outSlope: {x: 0.66131157, y: 0.5998837, z: -1.4571779, w: 0.5002211} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.4954915, y: -0.18473572, z: 0.15705472, w: 0.83408314} + inSlope: {x: -0.588669, y: 0.17216825, z: -1.0625892, w: 0.5918648} + outSlope: {x: -0.588669, y: 0.17216825, z: -1.0625892, w: 0.5918648} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.8666668 + value: {x: 0.44050193, y: -0.15217815, z: 0.019322114, w: 0.8845488} + inSlope: {x: 0.23136777, y: 0.20640206, z: -0.35032278, w: -0.07211569} + outSlope: {x: 0.23136777, y: 0.20640206, z: -0.35032278, w: -0.07211569} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.0333335 + value: {x: 0.5128993, y: -0.1185178, z: -0.0062493263, w: 0.85020524} + inSlope: {x: 0.39398015, y: 0.11660026, z: 0.04217423, w: -0.22109662} + outSlope: {x: 0.39398015, y: 0.11660026, z: 0.04217423, w: -0.22109662} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.2 + value: {x: 0.577103, y: -0.10895476, z: 0.025582159, w: 0.8089664} + inSlope: {x: 0.18046814, y: 0.012676802, z: 0.14617679, w: -0.13107699} + outSlope: {x: 0.18046814, y: 0.012676802, z: 0.14617679, w: -0.13107699} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.5333335 + value: {x: 0.5812271, y: -0.0962553, z: -0.0024093396, w: 0.8080248} + inSlope: {x: 0.02301427, y: 0.08693215, z: -0.1967648, w: -0.0069031185} + outSlope: {x: 0.02301427, y: 0.08693215, z: -0.1967648, w: -0.0069031185} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.8000002 + value: {x: 0.5882341, y: -0.06519165, z: -0.07176524, w: 0.80285764} + inSlope: {x: -0.02504381, y: 0.099703446, z: -0.26329562, w: 0.0032097131} + outSlope: {x: -0.02504381, y: 0.099703446, z: -0.26329562, w: 0.0032097131} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.1333334 + value: {x: 0.5888242, y: -0.056028314, z: -0.092873365, w: 0.80095035} + inSlope: {x: 0.123693764, y: 0.0658669, z: -0.043079782, w: -0.091364175} + outSlope: {x: 0.123693764, y: 0.0658669, z: -0.043079782, w: -0.091364175} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.61140543, y: -0.049211346, z: -0.08838317, w: 0.78482485} + inSlope: {x: 0.039464273, y: -0.004264046, z: 0.04582715, w: -0.02575996} + outSlope: {x: 0.039464273, y: -0.004264046, z: 0.04582715, w: -0.02575996} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.067169055, y: -0.0051383013, z: 0.09386365, w: 0.99330336} + inSlope: {x: -0.09766459, y: -0.085464336, z: -1.22158, w: 0.09612142} + outSlope: {x: -0.09766459, y: -0.085464336, z: -1.22158, w: 0.09612142} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.06391357, y: -0.007987113, z: 0.053144313, w: 0.9965074} + inSlope: {x: -0.11478658, y: -0.085428655, z: -1.2216787, w: 0.07181882} + outSlope: {x: -0.11478658, y: -0.085428655, z: -1.2216787, w: 0.07181882} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: 0.059516616, y: -0.010833546, z: 0.0124184, w: 0.9980913} + inSlope: {x: -0.21916947, y: -0.005169697, z: 0.33283895, w: -0.009050665} + outSlope: {x: -0.21916947, y: -0.005169697, z: 0.33283895, w: -0.009050665} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: 0.04930227, y: -0.008331759, z: 0.07533358, w: 0.995904} + inSlope: {x: -0.24246928, y: 0.070859954, z: 2.5335598, w: -0.23463787} + outSlope: {x: -0.24246928, y: 0.070859954, z: 2.5335598, w: -0.23463787} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: 0.043351997, y: -0.0061095483, z: 0.18132238, w: 0.98244876} + inSlope: {x: 0.075479485, y: 0.09664866, z: 2.9138973, w: -0.516986} + outSlope: {x: 0.075479485, y: 0.09664866, z: 2.9138973, w: -0.516986} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: 0.10022081, y: 0.022269305, z: 0.4388925, w: 0.89265513} + inSlope: {x: 0.8096124, y: 0.55435175, z: 2.3806539, w: -1.2744365} + outSlope: {x: 0.8096124, y: 0.55435175, z: 2.3806539, w: -1.2744365} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.15879284, y: 0.08618624, z: 0.64832556, w: 0.73961526} + inSlope: {x: 0.083197445, y: 0.38267615, z: 1.7613817, w: -1.5906019} + outSlope: {x: 0.083197445, y: 0.38267615, z: 1.7613817, w: -1.5906019} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: 0.09416165, y: 0.033080615, z: 0.80716854, w: 0.58182317} + inSlope: {x: -0.94155633, y: -1.2725503, z: 0.5696898, w: -0.5741646} + outSlope: {x: -0.94155633, y: -1.2725503, z: 0.5696898, w: -0.5741646} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6333334 + value: {x: -0.14166331, y: -0.24828161, z: 0.7447883, w: 0.6029744} + inSlope: {x: -1.9566314, y: -1.237551, z: -1.5912039, w: 0.96911454} + outSlope: {x: -1.9566314, y: -1.237551, z: -1.5912039, w: 0.96911454} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.21039481, y: -0.2790117, z: 0.68200374, w: 0.642462} + inSlope: {x: -2.1669014, y: -0.41346455, z: -2.3255787, w: 1.5006903} + outSlope: {x: -2.1669014, y: -0.41346455, z: -2.3255787, w: 1.5006903} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.70000005 + value: {x: -0.2861234, y: -0.2758459, z: 0.5897497, w: 0.70302045} + inSlope: {x: -2.0534968, y: 0.5987907, z: -2.9643135, w: 1.8612771} + outSlope: {x: -2.0534968, y: 0.5987907, z: -2.9643135, w: 1.8612771} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7666667 + value: {x: -0.37738365, y: -0.17891999, z: 0.3745139, w: 0.82783365} + inSlope: {x: -0.5860568, y: 1.750237, z: -3.1855466, w: 1.593509} + outSlope: {x: -0.5860568, y: 1.750237, z: -3.1855466, w: 1.593509} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.37607545, y: -0.08433364, z: 0.19976652, w: 0.9008599} + inSlope: {x: 0.4491461, y: 0.82240605, z: -1.560473, w: 0.6574686} + outSlope: {x: 0.4491461, y: 0.82240605, z: -1.560473, w: 0.6574686} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.86666673 + value: {x: -0.356422, y: -0.06758274, z: 0.16798143, w: 0.9166124} + inSlope: {x: 0.42762893, y: 0.23627445, z: -0.42786866, w: 0.27707115} + outSlope: {x: 0.42762893, y: 0.23627445, z: -0.42786866, w: 0.27707115} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.90000004 + value: {x: -0.34756684, y: -0.068582, z: 0.17124191, w: 0.9193313} + inSlope: {x: 0.48152876, y: -0.12355767, z: 0.4349912, w: 0.082297325} + outSlope: {x: 0.48152876, y: -0.12355767, z: 0.4349912, w: 0.082297325} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9333334 + value: {x: -0.32432008, y: -0.075819924, z: 0.19698086, w: 0.9220989} + inSlope: {x: 1.8789794, y: -0.27244925, z: 1.8888882, w: 0.07792264} + outSlope: {x: 1.8789794, y: -0.27244925, z: 1.8888882, w: 0.07792264} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9666667 + value: {x: -0.22230162, y: -0.08674528, z: 0.29716772, w: 0.92452615} + inSlope: {x: 3.6054325, y: 0.24048862, z: 2.8650682, w: -0.093218476} + outSlope: {x: 3.6054325, y: 0.24048862, z: 2.8650682, w: -0.093218476} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.08395815, y: -0.059787367, z: 0.38798523, w: 0.9158843} + inSlope: {x: 4.2019663, y: 1.3012744, z: 1.4608858, w: -0.11216389} + outSlope: {x: 4.2019663, y: 1.3012744, z: 1.4608858, w: -0.11216389} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0333334 + value: {x: 0.057829708, y: 0.0000064833775, z: 0.39456004, w: 0.9170486} + inSlope: {x: 3.9448376, y: 1.7190576, z: -0.059576742, w: -0.17610244} + outSlope: {x: 3.9448376, y: 1.7190576, z: -0.059576742, w: -0.17610244} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.17903128, y: 0.054816574, z: 0.38401347, w: 0.90414417} + inSlope: {x: 2.545332, y: 1.1808631, z: -0.20458882, w: -0.3650365} + outSlope: {x: 2.545332, y: 1.1808631, z: -0.20458882, w: -0.3650365} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.22751835, y: 0.07873062, z: 0.3809208, w: 0.89271283} + inSlope: {x: 0.9612247, y: 0.50157034, z: -0.005331937, w: -0.26439598} + outSlope: {x: 0.9612247, y: 0.50157034, z: -0.005331937, w: -0.26439598} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.2509672, y: 0.095783696, z: 0.39414394, w: 0.87891495} + inSlope: {x: 0.12628478, y: 0.17231566, z: 0.33698502, w: -0.20519188} + outSlope: {x: 0.12628478, y: 0.17231566, z: 0.33698502, w: -0.20519188} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.23287323, y: 0.09305994, z: 0.42027086, w: 0.87205637} + inSlope: {x: -0.03644526, y: -0.01833943, z: 0.009202189, w: 0.0073680654} + outSlope: {x: -0.03644526, y: -0.01833943, z: 0.009202189, w: 0.0073680654} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5000001 + value: {x: 0.27709118, y: 0.12947202, z: 0.45070305, w: 0.83864427} + inSlope: {x: 0.49769378, y: 0.43813127, z: 0.3012516, w: -0.39478332} + outSlope: {x: 0.49769378, y: 0.43813127, z: 0.3012516, w: -0.39478332} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7333335 + value: {x: 0.38093022, y: 0.18946409, z: 0.41625753, w: 0.8035703} + inSlope: {x: 0.19442543, y: -0.25788698, z: -0.7730868, w: 0.36539894} + outSlope: {x: 0.19442543, y: -0.25788698, z: -0.7730868, w: 0.36539894} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9000001 + value: {x: 0.34623137, y: 0.10547298, z: 0.27175245, w: 0.8917118} + inSlope: {x: -0.6502356, y: -0.5329836, z: -0.65533674, w: 0.5168005} + outSlope: {x: -0.6502356, y: -0.5329836, z: -0.65533674, w: 0.5168005} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.1000001 + value: {x: 0.25173846, y: 0.051745888, z: 0.21168104, w: 0.94294286} + inSlope: {x: -0.103151605, y: -0.02909339, z: 0.114477016, w: 0.003544095} + outSlope: {x: -0.103151605, y: -0.02909339, z: 0.114477016, w: 0.003544095} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.3666668 + value: {x: 0.25658953, y: 0.06639288, z: 0.26788774, w: 0.9262775} + inSlope: {x: -0.13004121, y: -0.03560021, z: 0.069423236, w: 0.018305201} + outSlope: {x: -0.13004121, y: -0.03560021, z: 0.069423236, w: 0.018305201} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.7 + value: {x: 0.1450355, y: 0.020468356, z: 0.21031676, w: 0.9665985} + inSlope: {x: -0.31676918, y: -0.12905492, z: -0.36048925, w: 0.12865093} + outSlope: {x: -0.31676918, y: -0.12905492, z: -0.36048925, w: 0.12865093} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.966667 + value: {x: 0.076050684, y: -0.0039705015, z: 0.08787805, w: 0.993216} + inSlope: {x: -0.10294196, y: -0.04400506, z: -0.46343148, w: 0.049517885} + outSlope: {x: -0.10294196, y: -0.04400506, z: -0.46343148, w: 0.049517885} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.06515367, y: -0.0060003693, z: 0.07988458, w: 0.9946545} + inSlope: {x: -0.027558975, y: 0.0065863347, z: 0.19756788, w: -0.013997516} + outSlope: {x: -0.027558975, y: 0.0065863347, z: 0.19756788, w: -0.013997516} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.06716997, y: -0.0051466958, z: 0.0938641, w: 0.99330324} + inSlope: {x: 0.040501393, y: 0.0038320702, z: -0.012010496, w: -0.0015521065} + outSlope: {x: 0.040501393, y: 0.0038320702, z: -0.012010496, w: -0.0015521065} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.051585913, y: 0.08495934, z: -0.018486572, w: 0.99487644} + inSlope: {x: 0.16031115, y: -0.68450373, z: 1.2844019, w: 0.054665204} + outSlope: {x: 0.16031115, y: -0.68450373, z: 1.2844019, w: 0.054665204} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: -0.046242207, y: 0.06214255, z: 0.024326827, w: 0.9966986} + inSlope: {x: 0.21410704, y: -0.95241463, z: 1.2727592, w: 0.029851196} + outSlope: {x: 0.21410704, y: -0.95241463, z: 1.2727592, w: 0.029851196} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: -0.03731211, y: 0.02146503, z: 0.06636404, w: 0.9968665} + inSlope: {x: 0.13339944, y: -1.2507124, z: 0.5947443, w: 0.004912018} + outSlope: {x: 0.13339944, y: -1.2507124, z: 0.5947443, w: 0.004912018} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: -0.03734891, y: -0.021238284, z: 0.06397645, w: 0.9970261} + inSlope: {x: -0.13760705, y: -1.3074095, z: -0.06858565, w: -0.030409995} + outSlope: {x: -0.13760705, y: -1.3074095, z: -0.06858565, w: -0.030409995} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: -0.12671189, y: -0.16775572, z: 0.085378855, w: 0.9739161} + inSlope: {x: -1.0392399, y: -0.7574161, z: 0.26691368, w: -0.28701964} + outSlope: {x: -1.0392399, y: -0.7574161, z: 0.26691368, w: -0.28701964} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.22981013, y: -0.20497361, z: 0.07058909, w: 0.9487836} + inSlope: {x: -0.9014398, y: 0.07620782, z: -0.6275041, w: -0.15820922} + outSlope: {x: -0.9014398, y: 0.07620782, z: -0.6275041, w: -0.15820922} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: -0.27520365, y: -0.17837396, z: 0.01676344, w: 0.94454473} + inSlope: {x: -0.34310305, y: 0.7399745, z: -0.52723587, w: 0.051013835} + outSlope: {x: -0.34310305, y: 0.7399745, z: -0.52723587, w: 0.051013835} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: -0.28108153, y: -0.11286751, z: 0.0100714, w: 0.9529705} + inSlope: {x: 0.14090417, y: 1.0638824, z: 0.5315937, w: 0.15198478} + outSlope: {x: 0.14090417, y: 1.0638824, z: 0.5315937, w: 0.15198478} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: -0.2612894, y: -0.061039366, z: 0.088270396, w: 0.959276} + inSlope: {x: 0.2409936, y: 0.053585798, z: 1.3187318, w: -0.049126405} + outSlope: {x: 0.2409936, y: 0.053585798, z: 1.3187318, w: -0.049126405} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5666667 + value: {x: -0.25528672, y: -0.07316305, z: 0.13076867, w: 0.9551835} + inSlope: {x: 0.09246014, y: -0.36242187, z: 1.2076511, w: -0.16549323} + outSlope: {x: 0.09246014, y: -0.36242187, z: 1.2076511, w: -0.16549323} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.25512537, y: -0.085200824, z: 0.16878048, w: 0.94824314} + inSlope: {x: -0.16068207, y: -0.75139725, z: 0.6645334, w: -0.22932619} + outSlope: {x: -0.16068207, y: -0.75139725, z: 0.6645334, w: -0.22932619} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.70000005 + value: {x: -0.28938124, y: -0.28537592, z: 0.11979955, w: 0.9057964} + inSlope: {x: -0.25237572, y: -2.8166952, z: -1.2905145, w: -0.820217} + outSlope: {x: -0.25237572, y: -2.8166952, z: -1.2905145, w: -0.820217} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7666667 + value: {x: -0.28918108, y: -0.47875085, z: 0.034662325, w: 0.82823336} + inSlope: {x: 0.54076505, y: -2.6807375, z: -0.92257464, w: -1.2990115} + outSlope: {x: 0.54076505, y: -2.6807375, z: -0.92257464, w: -1.2990115} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000001 + value: {x: -0.260119, y: -0.5610812, z: 0.009550021, w: 0.7857703} + inSlope: {x: 1.2174966, y: -2.11851, z: -0.34019065, w: -1.076863} + outSlope: {x: 1.2174966, y: -2.11851, z: -0.34019065, w: -1.076863} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.20801467, y: -0.61998487, z: 0.011982924, w: 0.7564425} + inSlope: {x: 1.41314, y: -1.3476424, z: 0.06651825, w: -0.67666256} + outSlope: {x: 1.41314, y: -1.3476424, z: 0.06651825, w: -0.67666256} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.86666673 + value: {x: -0.16590966, y: -0.65092397, z: 0.01398457, w: 0.7406595} + inSlope: {x: 1.5820168, y: -0.38385314, z: 0.19639482, w: -0.0011609793} + outSlope: {x: 1.5820168, y: -0.38385314, z: 0.19639482, w: -0.0011609793} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.90000004 + value: {x: -0.1025469, y: -0.6455751, z: 0.025075903, w: 0.75636506} + inSlope: {x: 2.252011, y: 0.31502712, z: 0.5306066, w: 0.5140239} + outSlope: {x: 2.252011, y: 0.31502712, z: 0.5306066, w: 0.5140239} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9333334 + value: {x: -0.015775574, y: -0.62992215, z: 0.049358357, w: 0.77492774} + inSlope: {x: 1.7169671, y: 1.0253581, z: 0.7179084, w: 0.85310996} + outSlope: {x: 1.7169671, y: 1.0253581, z: 0.7179084, w: 0.85310996} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9666667 + value: {x: 0.011917624, y: -0.57721794, z: 0.07293646, w: 0.81323904} + inSlope: {x: 0.61180586, y: 2.3383985, z: 0.72391844, w: 1.4969387} + outSlope: {x: 0.61180586, y: 2.3383985, z: 0.72391844, w: 1.4969387} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0333334 + value: {x: 0.03535324, y: -0.3462514, z: 0.119313404, w: 0.92985183} + inSlope: {x: 0.32656863, y: 4.122433, z: 0.5170462, w: 1.4274683} + outSlope: {x: 0.32656863, y: 4.122433, z: 0.5170462, w: 1.4274683} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.046782702, y: -0.19919997, z: 0.13208933, w: 0.9698882} + inSlope: {x: 0.7033859, y: 4.532337, z: -0.016267389, w: 0.88109577} + outSlope: {x: 0.7033859, y: 4.532337, z: -0.016267389, w: 0.88109577} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.08224559, y: -0.04409589, z: 0.11822891, w: 0.9885915} + inSlope: {x: 1.1983972, y: 4.31497, z: -0.65627545, w: 0.21219268} + outSlope: {x: 1.1983972, y: 4.31497, z: -0.65627545, w: 0.21219268} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1333334 + value: {x: 0.12667593, y: 0.0884649, z: 0.08833757, w: 0.98403436} + inSlope: {x: 1.3370354, y: 3.222866, z: -0.5947077, w: -0.32228446} + outSlope: {x: 1.3370354, y: 3.222866, z: -0.5947077, w: -0.32228446} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2 + value: {x: 0.21033166, y: 0.20787776, z: 0.08138376, w: 0.95180047} + inSlope: {x: 1.0144801, y: 0.53664196, z: 0.07853437, w: -0.33028486} + outSlope: {x: 1.0144801, y: 0.53664196, z: 0.07853437, w: -0.33028486} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666668 + value: {x: 0.25171944, y: 0.19803709, z: 0.08678976, w: 0.9433378} + inSlope: {x: 0.07207481, y: -0.24302223, z: -0.029594783, w: 0.03516657} + outSlope: {x: 0.07207481, y: -0.24302223, z: -0.029594783, w: 0.03516657} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3666668 + value: {x: 0.20150357, y: 0.19601832, z: 0.08538244, w: 0.9558677} + inSlope: {x: -0.70664585, y: 0.5369598, z: 0.24664944, w: 0.014389912} + outSlope: {x: -0.70664585, y: 0.5369598, z: 0.24664944, w: 0.014389912} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5000001 + value: {x: 0.1753832, y: 0.29358593, z: 0.1357521, w: 0.92984915} + inSlope: {x: 0.30666867, y: 0.59163034, z: 0.16538492, w: -0.26779687} + outSlope: {x: 0.30666867, y: 0.59163034, z: 0.16538492, w: -0.26779687} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.21073417, y: 0.3528261, z: 0.09099733, w: 0.9070967} + inSlope: {x: -0.16622402, y: 0.21462208, z: -0.57977104, w: 0.012486588} + outSlope: {x: -0.16622402, y: 0.21462208, z: -0.57977104, w: 0.012486588} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.09630532, y: 0.35087013, z: 0.051944204, w: 0.93000925} + inSlope: {x: -0.66829, y: -0.29586345, z: 0.27377594, w: 0.16707826} + outSlope: {x: -0.66829, y: -0.29586345, z: 0.27377594, w: 0.16707826} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9666668 + value: {x: 0.072480984, y: 0.32330027, z: 0.097322494, w: 0.9384838} + inSlope: {x: 0.19775009, y: 0.18343991, z: 0.16634113, w: -0.09648463} + outSlope: {x: 0.19775009, y: 0.18343991, z: 0.16634113, w: -0.09648463} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.0994645, y: 0.43125013, z: 0.06441293, w: 0.8944167} + inSlope: {x: -0.0052158963, y: 0.5202364, z: -0.301704, w: -0.22726378} + outSlope: {x: -0.0052158963, y: 0.5202364, z: -0.301704, w: -0.22726378} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.4 + value: {x: 0.05657217, y: 0.4325553, z: 0.0382752, w: 0.89901644} + inSlope: {x: -0.30411384, y: -0.5210187, z: 0.11822088, w: 0.26330018} + outSlope: {x: -0.30411384, y: -0.5210187, z: 0.11822088, w: 0.26330018} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.6333334 + value: {x: 0.0054044905, y: 0.28453138, z: 0.06960175, w: 0.9561215} + inSlope: {x: -0.13779634, y: -0.4569478, z: -0.02892195, w: 0.13972266} + outSlope: {x: -0.13779634, y: -0.4569478, z: -0.02892195, w: 0.13972266} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.9333334 + value: {x: -0.02537006, y: 0.24560155, z: 0.021097928, w: 0.9688091} + inSlope: {x: -0.102647066, y: -0.13776894, z: -0.065582335, w: 0.033499777} + outSlope: {x: -0.102647066, y: -0.13776894, z: -0.065582335, w: 0.033499777} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.043324336, y: 0.15416166, z: -0.0067936103, w: 0.987072} + inSlope: {x: -0.054909423, y: -0.55217016, z: -0.16341424, w: 0.082754} + outSlope: {x: -0.054909423, y: -0.55217016, z: -0.16341424, w: 0.082754} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.051585697, y: 0.08495898, z: -0.018486578, w: 0.99487644} + inSlope: {x: -0.023127481, y: -0.15263438, z: 0.0014784015, w: 0.01226486} + outSlope: {x: -0.023127481, y: -0.15263438, z: 0.0014784015, w: 0.01226486} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.19585463, y: -0.06724082, z: 0.23561525, w: 0.9495289} + inSlope: {x: -0.029620973, y: -0.0329154, z: 0.140609, w: -0.031508803} + outSlope: {x: -0.029620973, y: -0.0329154, z: 0.140609, w: -0.031508803} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.18093088, y: -0.082549706, z: 0.30330032, w: 0.9319112} + inSlope: {x: -0.115994796, y: -0.11681923, z: 0.5045302, w: -0.1512998} + outSlope: {x: -0.115994796, y: -0.11681923, z: 0.5045302, w: -0.1512998} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: 0.17371514, y: -0.08982191, z: 0.33405218, w: 0.9220435} + inSlope: {x: -0.0000037997988, y: -0.00000033527635, z: 0.0000013411058, w: 0} + outSlope: {x: -0.0000037997988, y: -0.00000033527635, z: 0.0000013411058, + w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.8000001 + value: {x: 0.17371494, y: -0.08982176, z: 0.33405215, w: 0.92204356} + inSlope: {x: -0.0028071578, y: -0.011411581, z: 0.013998462, w: -0.0056684073} + outSlope: {x: -0.0028071578, y: -0.011411581, z: 0.013998462, w: -0.0056684073} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.3000002 + value: {x: 0.16684526, y: -0.1228245, z: 0.37318224, w: 0.9043295} + inSlope: {x: 0.03373082, y: 0.07399126, z: -0.1669945, w: 0.07234819} + outSlope: {x: 0.03373082, y: 0.07399126, z: -0.1669945, w: 0.07234819} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.6000001 + value: {x: 0.19166882, y: -0.0784665, z: 0.25499365, w: 0.9445022} + inSlope: {x: 0.06261109, y: 0.12541775, z: -0.2973348, w: 0.07868983} + outSlope: {x: 0.06261109, y: 0.12541775, z: -0.2973348, w: 0.07868983} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.9333334 + value: {x: 0.19585449, y: -0.06724073, z: 0.23561521, w: 0.94952893} + inSlope: {x: 0.0000033527485, y: -0.0000021234223, z: -0.00000089406734, w: -0.0000008940705} + outSlope: {x: 0.0000033527485, y: -0.0000021234223, z: -0.00000089406734, + w: -0.0000008940705} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 3.3333335 + value: {x: 0.19585474, y: -0.067240536, z: 0.23561521, w: 0.9495289} + inSlope: {x: 0.000003576282, y: 0.00000044703526, z: -0.00000044703526, w: -0.000001788141} + outSlope: {x: 0.000003576282, y: 0.00000044703526, z: -0.00000044703526, w: -0.000001788141} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.053260088, y: 0.1139333, z: -0.22920915, w: 0.965218} + inSlope: {x: -0.21086453, y: 0.12289143, z: 0.21128966, w: 0.045467015} + outSlope: {x: -0.21086453, y: 0.12289143, z: 0.21128966, w: 0.045467015} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: 0.039422788, y: 0.122977495, z: -0.21492109, w: 0.9680554} + inSlope: {x: -0.05934622, y: 0.09628056, z: -0.014656693, w: -0.012738703} + outSlope: {x: -0.05934622, y: 0.09628056, z: -0.014656693, w: -0.012738703} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.046741143, y: 0.12732401, z: -0.24413879, w: 0.96020836} + inSlope: {x: 0.041413408, y: 0.040208098, z: -0.24727952, w: -0.07031946} + outSlope: {x: 0.041413408, y: 0.040208098, z: -0.24727952, w: -0.07031946} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.09670721, y: 0.11110613, z: -0.31659278, w: 0.9370551} + inSlope: {x: 0.48583725, y: -0.17330022, z: -0.56468153, w: -0.22030325} + outSlope: {x: 0.48583725, y: -0.17330022, z: -0.56468153, w: -0.22030325} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: 0.10955179, y: 0.10860559, z: -0.33276188, w: 0.93030787} + inSlope: {x: -0.5081539, y: 0.20744443, z: 0.60972106, w: 0.24178702} + outSlope: {x: -0.5081539, y: 0.20744443, z: 0.60972106, w: 0.24178702} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: 0.066445425, y: 0.12387086, z: -0.279962, w: 0.94966435} + inSlope: {x: -0.29787424, y: 0.077722974, z: 0.35260916, w: 0.1222371} + outSlope: {x: -0.29787424, y: 0.077722974, z: 0.35260916, w: 0.1222371} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5666667 + value: {x: 0.06533904, y: 0.12335491, z: -0.27921045, w: 0.95002943} + inSlope: {x: -0.022049539, y: -0.017314892, z: 0.012008688, w: 0.0073063346} + outSlope: {x: -0.022049539, y: -0.017314892, z: 0.012008688, w: 0.0073063346} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.064975455, y: 0.12271653, z: -0.27916142, w: 0.95015144} + inSlope: {x: 0.4095695, y: -0.151365, z: -0.5169712, w: -0.17762467} + outSlope: {x: 0.4095695, y: -0.151365, z: -0.5169712, w: -0.17762467} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6333334 + value: {x: 0.09264369, y: 0.113263905, z: -0.31367522, w: 0.9381878} + inSlope: {x: 0.81489646, y: -0.31735432, z: -1.0269012, w: -0.38548714} + outSlope: {x: 0.81489646, y: -0.31735432, z: -1.0269012, w: -0.38548714} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.119301885, y: 0.10155958, z: -0.3476215, w: 0.9244523} + inSlope: {x: 0.00042316318, y: 0.0010653138, z: 0.00006836653, w: -0.00014789402} + outSlope: {x: 0.00042316318, y: 0.0010653138, z: 0.00006836653, w: -0.00014789402} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.70000005 + value: {x: 0.09267186, y: 0.11333495, z: -0.3136706, w: 0.93817794} + inSlope: {x: -0.8148948, y: 0.31735194, z: 1.0269043, w: 0.38548797} + outSlope: {x: -0.8148948, y: 0.31735194, z: 1.0269043, w: 0.38548797} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.06497557, y: 0.122716375, z: -0.2791612, w: 0.9501515} + inSlope: {x: -0.20606609, y: 0.056556255, z: 0.2617481, w: 0.096647374} + outSlope: {x: -0.20606609, y: 0.056556255, z: 0.2617481, w: 0.096647374} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7666667 + value: {x: 0.078934155, y: 0.11710535, z: -0.29622078, w: 0.9446211} + inSlope: {x: 0.59630036, y: -0.25132656, z: -0.712986, w: -0.25255927} + outSlope: {x: 0.59630036, y: -0.25132656, z: -0.712986, w: -0.25255927} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.1383391, y: 0.0897807, z: -0.36370015, w: 0.9168009} + inSlope: {x: 0.81883335, y: -0.42476252, z: -0.90134096, w: -0.42501757} + outSlope: {x: 0.81883335, y: -0.42476252, z: -0.90134096, w: -0.42501757} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.86666673 + value: {x: 0.15931784, y: 0.07764376, z: -0.38678303, w: 0.9049797} + inSlope: {x: -0.036937952, y: 0.011335909, z: 0.052939445, w: 0.025285527} + outSlope: {x: -0.036937952, y: 0.011335909, z: 0.052939445, w: 0.025285527} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9333334 + value: {x: 0.09955605, y: 0.106882125, z: -0.31952384, w: 0.93625283} + inSlope: {x: -0.8941524, y: 0.4022802, z: 1.0134833, w: 0.41172886} + outSlope: {x: -0.8941524, y: 0.4022802, z: 1.0134833, w: 0.41172886} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.064975485, y: 0.12271641, z: -0.2791614, w: 0.9501515} + inSlope: {x: 0.118700825, y: -0.051060032, z: -0.14163597, w: -0.0444961} + outSlope: {x: 0.118700825, y: -0.051060032, z: -0.14163597, w: -0.0444961} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1333334 + value: {x: 0.08118756, y: 0.11540681, z: -0.29875445, w: 0.9438409} + inSlope: {x: 0.13279474, y: -0.064160414, z: -0.16560546, w: -0.054430835} + outSlope: {x: 0.13279474, y: -0.064160414, z: -0.16560546, w: -0.054430835} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2333333 + value: {x: 0.075253844, y: 0.1179333, z: -0.29193777, w: 0.9461506} + inSlope: {x: -0.22181131, y: 0.098061904, z: 0.2669448, w: 0.087233394} + outSlope: {x: -0.22181131, y: 0.098061904, z: 0.2669448, w: 0.087233394} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4333334 + value: {x: 0.061631106, y: 0.12483071, z: -0.27434117, w: 0.9515019} + inSlope: {x: -0.008383084, y: 0.009229714, z: 0.016198322, w: 0.0040116943} + outSlope: {x: -0.008383084, y: 0.009229714, z: 0.016198322, w: 0.0040116943} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.059163414, y: 0.12624449, z: -0.27082577, w: 0.9524786} + inSlope: {x: -0.116872296, y: 0.048208535, z: 0.14725763, w: 0.04274007} + outSlope: {x: -0.116872296, y: 0.048208535, z: 0.14725763, w: 0.04274007} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6333334 + value: {x: 0.06100637, y: 0.12542112, z: -0.2731971, w: 0.9517937} + inSlope: {x: 0.23647535, y: -0.10071939, z: -0.29972285, w: -0.089481264} + outSlope: {x: 0.23647535, y: -0.10071939, z: -0.29972285, w: -0.089481264} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7 + value: {x: 0.08246353, y: 0.11615997, z: -0.3003455, w: 0.94313264} + inSlope: {x: 0.27792034, y: -0.1227471, z: -0.35151854, w: -0.11924827} + outSlope: {x: 0.27792034, y: -0.1227471, z: -0.35151854, w: -0.11924827} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7333335 + value: {x: 0.08954677, y: 0.11292246, z: -0.30932763, w: 0.9399715} + inSlope: {x: -0.07752434, y: 0.025533035, z: 0.09039369, w: 0.03186037} + outSlope: {x: -0.07752434, y: 0.025533035, z: 0.09039369, w: 0.03186037} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.8000001 + value: {x: 0.0649754, y: 0.12271643, z: -0.27916145, w: 0.95015144} + inSlope: {x: -0.18250057, y: 0.08137036, z: 0.21650141, w: 0.06895965} + outSlope: {x: -0.18250057, y: 0.08137036, z: 0.21650141, w: 0.06895965} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9000001 + value: {x: 0.062037557, y: 0.12832499, z: -0.27634707, w: 0.9504296} + inSlope: {x: -0.16428825, y: 0.14820537, z: 0.18825147, w: 0.044502363} + outSlope: {x: -0.16428825, y: 0.14820537, z: 0.18825147, w: 0.044502363} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.1333334 + value: {x: 0.0068040714, y: 0.17046572, z: -0.21648046, w: 0.9612655} + inSlope: {x: -0.12761441, y: 0.10117235, z: 0.11471797, w: 0.009164223} + outSlope: {x: -0.12761441, y: 0.10117235, z: 0.11471797, w: 0.009164223} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.004830981, y: 0.16706735, z: -0.20813859, w: 0.9637134} + inSlope: {x: 0.011358272, y: -0.08768619, z: 0.104956284, w: 0.037770905} + outSlope: {x: 0.011358272, y: -0.08768619, z: 0.104956284, w: 0.037770905} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.7 + value: {x: 0.05082825, y: 0.11746522, z: -0.22605698, w: 0.96566904} + inSlope: {x: 0.11225532, y: -0.084003806, z: -0.13150078, w: -0.026406277} + outSlope: {x: 0.11225532, y: -0.084003806, z: -0.13150078, w: -0.026406277} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.1000001 + value: {x: 0.05681823, y: 0.11246917, z: -0.23388311, w: 0.9640649} + inSlope: {x: -0.006750568, y: 0.002054686, z: 0.007915877, w: 0.0020760316} + outSlope: {x: -0.006750568, y: 0.002054686, z: 0.007915877, w: 0.0020760316} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.05326001, y: 0.11393319, z: -0.22920926, w: 0.96521795} + inSlope: {x: -0.004072603, y: 0.0017526017, z: 0.0054086796, w: 0.0013017667} + outSlope: {x: -0.004072603, y: 0.0017526017, z: 0.0054086796, w: 0.0013017667} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.000000005924815, y: 0.043534096, z: 0.00000005575778, w: 0.999052} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.000000005924815, y: 0.043534096, z: 0.00000005575778, w: 0.999052} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2/mixamorig:RightHandThumb3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.060330532, y: -0.053493496, z: -0.080122344, w: 0.99351853} + inSlope: {x: 0.6302927, y: 0.08685227, z: -0.05446851, w: -0.044864412} + outSlope: {x: 0.6302927, y: 0.08685227, z: -0.05446851, w: -0.044864412} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: 0.12406664, y: -0.043575495, z: -0.08561044, w: 0.987613} + inSlope: {x: 1.4458367, y: 0.27439615, z: -0.13294546, w: -0.19011584} + outSlope: {x: 1.4458367, y: 0.27439615, z: -0.13294546, w: -0.19011584} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.2745562, y: -0.008401635, z: -0.09790699, w: 0.95653677} + inSlope: {x: 1.1446204, y: 0.30711734, z: -0.035485737, w: -0.3243094} + outSlope: {x: 1.1446204, y: 0.30711734, z: -0.035485737, w: -0.3243094} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: 0.3672711, y: 0.025567405, z: -0.10430694, w: 0.92389303} + inSlope: {x: 0.3414153, y: 0.19145799, z: -0.0791568, w: -0.14775844} + outSlope: {x: 0.3414153, y: 0.19145799, z: -0.0791568, w: -0.14775844} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.3562561, y: 0.028028702, z: -0.103496686, w: 0.92821574} + inSlope: {x: -0.5855601, y: -0.14822134, z: 0.11221075, w: 0.2363097} + outSlope: {x: -0.5855601, y: -0.14822134, z: 0.11221075, w: 0.2363097} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: 0.31191888, y: 0.010332555, z: -0.09404833, w: 0.94538605} + inSlope: {x: -0.26986647, y: -0.19726206, z: 0.06995638, w: 0.10193647} + outSlope: {x: -0.26986647, y: -0.19726206, z: 0.06995638, w: 0.10193647} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.31227824, y: 0.0066678203, z: -0.093523026, w: 0.9453525} + inSlope: {x: 0.027757721, y: -0.070109196, z: 0.005482333, w: -0.008051092} + outSlope: {x: 0.027757721, y: -0.070109196, z: 0.005482333, w: -0.008051092} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: 0.3137694, y: 0.0056586107, z: -0.09368284, w: 0.9448493} + inSlope: {x: 0.31941327, y: 0.06235982, z: -0.057716507, w: -0.115988456} + outSlope: {x: 0.31941327, y: 0.06235982, z: -0.057716507, w: -0.115988456} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.35178494, y: 0.017354054, z: -0.101174176, w: 0.9304354} + inSlope: {x: 0.2582961, y: 0.11806702, z: -0.06310874, w: -0.10319631} + outSlope: {x: 0.2582961, y: 0.11806702, z: -0.06310874, w: -0.10319631} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.3498852, y: 0.018818108, z: -0.10174587, w: 0.9310607} + inSlope: {x: -0.0094177, y: -0.0100819925, z: 0.00030822586, w: 0.00377745} + outSlope: {x: -0.0094177, y: -0.0100819925, z: 0.00030822586, w: 0.00377745} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7666667 + value: {x: 0.37169182, y: 0.021858266, z: -0.106035605, w: 0.9220216} + inSlope: {x: 0.78886473, y: 0.19021513, z: -0.21045421, w: -0.3543678} + outSlope: {x: 0.78886473, y: 0.19021513, z: -0.21045421, w: -0.3543678} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.86666673 + value: {x: 0.46542642, y: 0.04733068, z: -0.13368635, w: 0.87365097} + inSlope: {x: 0.5491736, y: 0.116510384, z: -0.1392944, w: -0.3118049} + outSlope: {x: 0.5491736, y: 0.116510384, z: -0.1392944, w: -0.3118049} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.90000004 + value: {x: 0.47483853, y: 0.047953207, z: -0.1349095, w: 0.868348} + inSlope: {x: 0.1689851, y: -0.0245928, z: -0.00326249, w: -0.090617605} + outSlope: {x: 0.1689851, y: -0.0245928, z: -0.00326249, w: -0.090617605} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9333334 + value: {x: 0.47669208, y: 0.04569116, z: -0.13390385, w: 0.8676098} + inSlope: {x: -0.8821486, y: -0.2733245, z: 0.27417117, w: 0.49504328} + outSlope: {x: -0.8821486, y: -0.2733245, z: 0.27417117, w: 0.49504328} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9666667 + value: {x: 0.41602868, y: 0.029731588, z: -0.11663143, w: 0.90135086} + inSlope: {x: -1.8736088, y: -0.42506036, z: 0.49094406, w: 0.9423843} + outSlope: {x: -1.8736088, y: -0.42506036, z: 0.49094406, w: 0.9423843} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.35178494, y: 0.017353829, z: -0.10117427, w: 0.93043536} + inSlope: {x: -0.9636556, y: -0.1856639, z: 0.23186041, w: 0.43626797} + outSlope: {x: -0.9636556, y: -0.1856639, z: 0.23186041, w: 0.43626797} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0333334 + value: {x: 0.35178503, y: 0.017354008, z: -0.10117409, w: 0.93043536} + inSlope: {x: 0.000001341101, y: 0.00000086612124, z: 0.0000020116488, w: 0} + outSlope: {x: 0.000001341101, y: 0.00000086612124, z: 0.0000020116488, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.35178503, y: 0.017353887, z: -0.10117414, w: 0.93043536} + inSlope: {x: 0.3464492, y: 0.08166401, z: -0.08576036, w: -0.14741792} + outSlope: {x: 0.3464492, y: 0.08166401, z: -0.08576036, w: -0.14741792} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1333334 + value: {x: 0.3975634, y: 0.02841814, z: -0.11280042, w: 0.91017133} + inSlope: {x: 0.19197585, y: 0.07288821, z: -0.07503813, w: -0.09072077} + outSlope: {x: 0.19197585, y: 0.07288821, z: -0.07503813, w: -0.09072077} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2 + value: {x: 0.373284, y: 0.026419979, z: -0.11007197, w: 0.9207851} + inSlope: {x: -0.31437442, y: -0.048002593, z: 0.05952956, w: 0.13749374} + outSlope: {x: -0.31437442, y: -0.048002593, z: 0.05952956, w: 0.13749374} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3666668 + value: {x: 0.34327233, y: 0.015410083, z: -0.09904482, w: 0.9338719} + inSlope: {x: -0.26726854, y: -0.05464656, z: 0.06155944, w: 0.105562724} + outSlope: {x: -0.26726854, y: -0.05464656, z: 0.06155944, w: 0.105562724} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5000001 + value: {x: 0.3072787, y: 0.008946287, z: -0.09157471, w: 0.94716096} + inSlope: {x: -0.2480392, y: -0.050825633, z: 0.055506684, w: 0.086967826} + outSlope: {x: -0.2480392, y: -0.050825633, z: 0.055506684, w: 0.086967826} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333334 + value: {x: 0.30105752, y: 0.007636169, z: -0.09016247, w: 0.9493033} + inSlope: {x: 0.25591785, y: 0.07355811, z: -0.06753428, w: -0.09321132} + outSlope: {x: 0.25591785, y: 0.07355811, z: -0.06753428, w: -0.09321132} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6333334 + value: {x: 0.39186773, y: 0.03590562, z: -0.11446162, w: 0.9121672} + inSlope: {x: 0.7258677, y: 0.27344668, z: -0.2048994, w: -0.340758} + outSlope: {x: 0.7258677, y: 0.27344668, z: -0.2048994, w: -0.340758} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.4091906, y: 0.04284303, z: -0.11952574, w: 0.90357137} + inSlope: {x: -0.043786228, y: 0.03887061, z: -0.037270337, w: 0.012423113} + outSlope: {x: -0.043786228, y: 0.03887061, z: -0.037270337, w: 0.012423113} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7333335 + value: {x: 0.36157292, y: 0.031638514, z: -0.11074646, w: 0.92520225} + inSlope: {x: -0.5225613, y: -0.20524053, z: 0.17629418, w: 0.23912388} + outSlope: {x: -0.5225613, y: -0.20524053, z: 0.17629418, w: 0.23912388} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.8666668 + value: {x: 0.347883, y: 0.004343122, z: -0.093321584, w: 0.9328717} + inSlope: {x: -0.41827777, y: -0.2552303, z: 0.18234098, w: 0.16902037} + outSlope: {x: -0.41827777, y: -0.2552303, z: 0.18234098, w: 0.16902037} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9666668 + value: {x: 0.22943896, y: -0.02987692, z: -0.055829342, w: 0.97126114} + inSlope: {x: -1.599496, y: -0.3784945, z: 0.530599, w: 0.39331222} + outSlope: {x: -1.599496, y: -0.3784945, z: 0.530599, w: 0.39331222} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.00218138, y: -0.08698639, z: 0.047530673, w: 0.9950726} + inSlope: {x: -0.37872517, y: -0.09721285, z: 0.22513534, w: -0.017168837} + outSlope: {x: -0.37872517, y: -0.09721285, z: 0.22513534, w: -0.017168837} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.4 + value: {x: 0.014792861, y: -0.07649624, z: 0.0078350995, w: 0.99692935} + inSlope: {x: -0.11784703, y: 0.025377745, z: -0.29585516, w: 0.005870467} + outSlope: {x: -0.11784703, y: 0.025377745, z: -0.29585516, w: 0.005870467} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.6000001 + value: {x: 0.016212335, y: -0.07259184, z: -0.05194237, w: 0.9958763} + inSlope: {x: 0.6604245, y: 0.16961814, z: -0.38936257, w: -0.021363815} + outSlope: {x: 0.6604245, y: 0.16961814, z: -0.38936257, w: -0.021363815} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.7333336 + value: {x: 0.10674745, y: -0.047133166, z: -0.090322174, w: 0.9890528} + inSlope: {x: 0.40547386, y: 0.11710234, z: -0.13811833, w: -0.049330138} + outSlope: {x: 0.40547386, y: 0.11710234, z: -0.13811833, w: -0.049330138} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.9333334 + value: {x: 0.11382568, y: -0.044188242, z: -0.0932724, w: 0.9881252} + inSlope: {x: -0.19653846, y: -0.043850455, z: 0.060597725, w: 0.02615682} + outSlope: {x: -0.19653846, y: -0.043850455, z: 0.060597725, w: 0.02615682} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.2000003 + value: {x: 0.060276624, y: -0.053628623, z: -0.079972334, w: 0.99352664} + inSlope: {x: -0.029085018, y: -0.009311644, z: 0.011911424, w: 0.0022378466} + outSlope: {x: -0.029085018, y: -0.009311644, z: 0.011911424, w: 0.0022378466} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.060330488, y: -0.05349322, z: -0.08012235, w: 0.9935186} + inSlope: {x: 0.00808575, y: 0.0056614783, z: -0.008399122, w: -0.00086009584} + outSlope: {x: 0.00808575, y: 0.0056614783, z: -0.008399122, w: -0.00086009584} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.2531508, y: 0.012800704, z: -0.07251786, w: 0.9646201} + inSlope: {x: 1.1893843, y: 0.086099155, z: -0.22914736, w: -0.35820004} + outSlope: {x: 1.1893843, y: 0.086099155, z: -0.22914736, w: -0.35820004} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.29279694, y: 0.015670676, z: -0.0801561, w: 0.9526801} + inSlope: {x: 1.5653353, y: 0.11862405, z: -0.304981, w: -0.5335092} + outSlope: {x: 1.5653353, y: 0.11862405, z: -0.304981, w: -0.5335092} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: 0.35750648, y: 0.020708974, z: -0.092849925, w: 0.9290528} + inSlope: {x: 1.7546706, y: 0.13490546, z: -0.34290048, w: -0.69997156} + outSlope: {x: 1.7546706, y: 0.13490546, z: -0.34290048, w: -0.69997156} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: 0.54551536, y: 0.037741028, z: -0.1293322, w: 0.8272012} + inSlope: {x: 0.4981131, y: 0.047131836, z: -0.092368804, w: -0.34249577} + outSlope: {x: 0.4981131, y: 0.047131836, z: -0.092368804, w: -0.34249577} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: 0.5779909, y: 0.04033448, z: -0.1351115, w: 0.803769} + inSlope: {x: -0.22304448, y: -0.016606843, z: 0.03852256, w: 0.16728492} + outSlope: {x: -0.22304448, y: -0.016606843, z: 0.03852256, w: 0.16728492} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6333334 + value: {x: 0.55337983, y: 0.038496014, z: -0.13079959, w: 0.82169354} + inSlope: {x: -0.14205691, y: -0.010518951, z: 0.024664026, w: 0.10037808} + outSlope: {x: -0.14205691, y: -0.010518951, z: 0.024664026, w: 0.10037808} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.70000005 + value: {x: 0.55446875, y: 0.038573764, z: -0.13099022, w: 0.8209251} + inSlope: {x: 0.14205962, y: 0.010520519, z: -0.024665149, w: -0.10037989} + outSlope: {x: 0.14205962, y: 0.010520519, z: -0.024665149, w: -0.10037989} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7666667 + value: {x: 0.5495826, y: 0.038195882, z: -0.13017318, w: 0.82435125} + inSlope: {x: -0.35138875, y: -0.025258843, z: 0.05971106, w: 0.24354616} + outSlope: {x: -0.35138875, y: -0.025258843, z: 0.05971106, w: 0.24354616} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.90000004 + value: {x: 0.53754354, y: 0.03738257, z: -0.12825531, w: 0.8325864} + inSlope: {x: 0.39592442, y: 0.029103976, z: -0.06833217, w: -0.26891914} + outSlope: {x: 0.39592442, y: 0.029103976, z: -0.06833217, w: -0.26891914} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9666667 + value: {x: 0.5579963, y: 0.038902987, z: -0.13167849, w: 0.81840545} + inSlope: {x: 0.096953005, y: 0.005716687, z: -0.014173923, w: -0.068288215} + outSlope: {x: 0.096953005, y: 0.005716687, z: -0.014173923, w: -0.068288215} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2666668 + value: {x: 0.5597236, y: 0.038962606, z: -0.13187969, w: 0.8171899} + inSlope: {x: 0.011129347, y: 0.0008344999, z: -0.0019492899, w: -0.007967926} + outSlope: {x: 0.011129347, y: 0.0008344999, z: -0.0019492899, w: -0.007967926} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4666667 + value: {x: 0.525156, y: 0.036432166, z: -0.12594664, w: 0.84084564} + inSlope: {x: -0.49176452, y: -0.03765727, z: 0.08624185, w: 0.31818736} + outSlope: {x: -0.49176452, y: -0.03765727, z: 0.08624185, w: 0.31818736} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333334 + value: {x: 0.49081972, y: 0.03388325, z: -0.1198983, w: 0.8623064} + inSlope: {x: 0.12861206, y: 0.008887229, z: -0.022503197, w: -0.08049853} + outSlope: {x: 0.12861206, y: 0.008887229, z: -0.022503197, w: -0.08049853} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6333334 + value: {x: 0.5882204, y: 0.04095396, z: -0.13692307, w: 0.7959721} + inSlope: {x: 0.9089327, y: 0.06767231, z: -0.15661836, w: -0.688707} + outSlope: {x: 0.9089327, y: 0.06767231, z: -0.15661836, w: -0.688707} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.61080337, y: 0.042814888, z: -0.14078029, w: 0.7779891} + inSlope: {x: 0.13055487, y: 0.010819538, z: -0.02189646, w: -0.1019759} + outSlope: {x: 0.13055487, y: 0.010819538, z: -0.02189646, w: -0.1019759} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7333335 + value: {x: 0.57636636, y: 0.040221803, z: -0.13481116, w: 0.80499065} + inSlope: {x: -0.44760102, y: -0.032739162, z: 0.078480646, w: 0.34038877} + outSlope: {x: -0.44760102, y: -0.032739162, z: 0.078480646, w: 0.34038877} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9000001 + value: {x: 0.50756073, y: 0.03728289, z: -0.12385835, w: 0.8518517} + inSlope: {x: -0.96219516, y: -0.039440133, z: 0.15717112, w: 0.59134364} + outSlope: {x: -0.96219516, y: -0.039440133, z: 0.15717112, w: 0.59134364} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.0333335 + value: {x: 0.3172019, y: 0.025288312, z: -0.08883619, w: 0.9438493} + inSlope: {x: -1.743808, y: -0.13269673, z: 0.3458807, w: 0.6246873} + outSlope: {x: -1.743808, y: -0.13269673, z: 0.3458807, w: 0.6246873} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.15827873, y: 0.012277193, z: -0.055177692, w: 0.9857751} + inSlope: {x: -0.35671693, y: -0.036240045, z: 0.08752112, w: 0.06529307} + outSlope: {x: -0.35671693, y: -0.036240045, z: 0.08752112, w: 0.06529307} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.17202061, y: 0.01381466, z: -0.05968251, w: 0.9831867} + inSlope: {x: 0.11482257, y: 0.014129052, z: -0.055651475, w: -0.023535512} + outSlope: {x: 0.11482257, y: 0.014129052, z: -0.055651475, w: -0.023535512} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.6000001 + value: {x: 0.19620103, y: 0.011071088, z: -0.06556655, w: 0.97830653} + inSlope: {x: 0.531096, y: 0.011009738, z: -0.06841874, w: -0.11243115} + outSlope: {x: 0.531096, y: 0.011009738, z: -0.06841874, w: -0.11243115} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.766667 + value: {x: 0.27686253, y: 0.014611465, z: -0.07713005, w: 0.9576976} + inSlope: {x: 0.04733254, y: -0.0014634118, z: -0.0007367141, w: -0.013657821} + outSlope: {x: 0.04733254, y: -0.0014634118, z: -0.0007367141, w: -0.013657821} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.966667 + value: {x: 0.2714513, y: 0.014078974, z: -0.07600808, w: 0.9593429} + inSlope: {x: -0.07260461, y: -0.005079147, z: 0.013840402, w: 0.021644503} + outSlope: {x: -0.07260461, y: -0.005079147, z: 0.013840402, w: 0.021644503} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.2531507, y: 0.0128007345, z: -0.07251786, w: 0.9646202} + inSlope: {x: 0.053130142, y: 0.0037093868, z: -0.010110373, w: -0.014698519} + outSlope: {x: 0.053130142, y: 0.0037093868, z: -0.010110373, w: -0.014698519} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.00000014877547, y: 0.00000005329535, z: 0.000000041878472, 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.033333335 + value: {x: -0.00000014877547, y: 0.00000005329535, z: 0.000000041878472, 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: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2/mixamorig:RightHandIndex3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.08479771, y: -0.11132268, z: -0.026193956, w: 0.9898134} + inSlope: {x: 1.140135, y: 0.090073936, z: -0.31563336, w: -0.11984288} + outSlope: {x: 1.140135, y: 0.090073936, z: -0.31563336, w: -0.11984288} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.12280221, y: -0.108320214, z: -0.036715068, w: 0.9858186} + inSlope: {x: 1.4969667, y: 0.081269585, z: -0.42003602, w: -0.21338491} + outSlope: {x: 1.4969667, y: 0.081269585, z: -0.42003602, w: -0.21338491} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: 0.1845955, y: -0.105904706, z: -0.054196358, w: 0.9755877} + inSlope: {x: 1.661864, y: -0.0242095, z: -0.4477875, w: -0.33022457} + outSlope: {x: 1.661864, y: -0.0242095, z: -0.4477875, w: -0.33022457} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: 0.357144, y: -0.13457823, z: -0.10056128, w: 0.9188168} + inSlope: {x: 0.4997269, y: -0.11288883, z: -0.14784348, w: -0.22498551} + outSlope: {x: 0.4997269, y: -0.11288883, z: -0.14784348, w: -0.22498551} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.38183543, y: -0.13893951, z: -0.10726015, w: 0.9074099} + inSlope: {x: -0.20906071, y: -0.022678517, z: 0.06726956, w: 0.09173868} + outSlope: {x: -0.20906071, y: -0.022678517, z: 0.06726956, w: 0.09173868} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: 0.3643501, y: -0.13897048, z: -0.10219938, w: 0.91514564} + inSlope: {x: 0.04871782, y: 0.028287224, z: -0.02258977, w: -0.017750844} + outSlope: {x: 0.04871782, y: 0.028287224, z: -0.02258977, w: -0.017750844} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.369807, y: -0.13730597, z: -0.10441924, w: 0.9129548} + inSlope: {x: -0.007126194, y: -0.0004544118, z: 0.002450983, w: 0.0031024269} + outSlope: {x: -0.007126194, y: -0.0004544118, z: 0.002450983, w: 0.0031024269} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7666667 + value: {x: 0.38147777, y: -0.136024, z: -0.10815742, w: 0.9078955} + inSlope: {x: 0.36987317, y: 0.043442808, z: -0.12356837, w: -0.16472235} + outSlope: {x: 0.36987317, y: 0.043442808, z: -0.12356837, w: -0.16472235} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9333334 + value: {x: 0.4071098, y: -0.13270773, z: -0.11637868, w: 0.896162} + inSlope: {x: -0.3463561, y: -0.04081364, z: 0.11553891, w: 0.16220939} + outSlope: {x: -0.3463561, y: -0.04081364, z: 0.11553891, w: 0.16220939} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.37113875, y: -0.13720216, z: -0.10473003, w: 0.9123943} + inSlope: {x: -0.2474671, y: -0.031395063, z: 0.07900253, w: 0.10793845} + outSlope: {x: -0.2474671, y: -0.031395063, z: 0.07900253, w: 0.10793845} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.3794818, y: -0.13609508, z: -0.10743808, w: 0.9088062} + inSlope: {x: 0.24968663, y: 0.033283282, z: -0.08139637, w: -0.1088976} + outSlope: {x: 0.24968663, y: 0.033283282, z: -0.08139637, w: -0.1088976} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.38151816, y: -0.13581344, z: -0.10809195, w: 0.90791786} + inSlope: {x: -0.20808956, y: -0.02755123, z: 0.06818372, w: 0.0912399} + outSlope: {x: -0.20808956, y: -0.02755123, z: 0.06818372, w: 0.0912399} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4000001 + value: {x: 0.36321142, y: -0.13829157, z: -0.10208982, w: 0.91571313} + inSlope: {x: -0.137749, y: -0.019251127, z: 0.046469316, w: 0.056920998} + outSlope: {x: -0.137749, y: -0.019251127, z: 0.046469316, w: 0.056920998} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6333334 + value: {x: 0.3528759, y: -0.14006832, z: -0.09827446, w: 0.9198922} + inSlope: {x: 0.16382948, y: 0.020424593, z: -0.053216644, w: -0.06547099} + outSlope: {x: 0.16382948, y: 0.020424593, z: -0.053216644, w: -0.06547099} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.8000001 + value: {x: 0.3711388, y: -0.13720195, z: -0.10473024, w: 0.9123942} + inSlope: {x: 0.15577614, y: 0.038501583, z: -0.038111098, w: -0.061815143} + outSlope: {x: 0.15577614, y: 0.038501583, z: -0.038111098, w: -0.061815143} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9000001 + value: {x: 0.36627114, y: -0.13391623, z: -0.09392066, w: 0.916019} + inSlope: {x: -0.626629, y: 0.0065765595, z: 0.37245995, w: 0.2820855} + outSlope: {x: -0.626629, y: 0.0065765595, z: 0.37245995, w: 0.2820855} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.0333335 + value: {x: 0.21899526, y: -0.12731677, z: -0.018361697, w: 0.9672096} + inSlope: {x: -1.1670429, y: 0.12551503, z: 0.5853087, w: 0.2948123} + outSlope: {x: -1.1670429, y: 0.12551503, z: 0.5853087, w: 0.2948123} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.2 + value: {x: 0.1162643, y: -0.10871519, z: 0.03576897, w: 0.98660237} + inSlope: {x: -0.02406659, y: 0.011259141, z: 0.019123275, w: 0.0035038623} + outSlope: {x: -0.02406659, y: 0.011259141, z: 0.019123275, w: 0.0035038623} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.4 + value: {x: 0.12307819, y: -0.105126046, z: 0.018553393, w: 0.9866388} + inSlope: {x: -0.16403869, y: 0.061416164, z: -0.09923123, w: 0.028489556} + outSlope: {x: -0.16403869, y: 0.061416164, z: -0.09923123, w: 0.028489556} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.6000001 + value: {x: 0.07968877, y: -0.09627324, z: -0.009184557, w: 0.99211735} + inSlope: {x: 0.20048402, y: 0.04868862, z: -0.28845757, w: -0.01521261} + outSlope: {x: 0.20048402, y: 0.04868862, z: -0.28845757, w: -0.01521261} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.766667 + value: {x: 0.12915945, y: -0.09766482, z: -0.04639603, w: 0.98571134} + inSlope: {x: 0.08517866, y: -0.021292401, z: -0.060904644, w: -0.015922502} + outSlope: {x: 0.08517866, y: -0.021292401, z: -0.060904644, w: -0.015922502} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.2000003 + value: {x: 0.08499245, y: -0.11083566, z: -0.026793173, w: 0.9898353} + inSlope: {x: -0.009663847, y: -0.0072104246, z: 0.009823641, w: 0.00029146494} + outSlope: {x: -0.009663847, y: -0.0072104246, z: 0.009823641, w: 0.00029146494} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.0847977, y: -0.11132248, z: -0.026193911, w: 0.9898134} + inSlope: {x: 0.0002648684, y: -0.0016276554, z: 0.0018209981, w: -0.00015735641} + outSlope: {x: 0.0002648684, y: -0.0016276554, z: 0.0018209981, w: -0.00015735641} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.33314452, y: 0.026530448, z: -0.085332125, w: 0.93863165} + inSlope: {x: 0.88937306, y: 0.08222009, z: -0.20897268, w: -0.3541517} + outSlope: {x: 0.88937306, y: 0.08222009, z: -0.20897268, w: -0.3541517} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.3627903, y: 0.029271118, z: -0.09229788, w: 0.9268266} + inSlope: {x: 1.1152232, y: 0.12172657, z: -0.27521485, w: -0.47984266} + outSlope: {x: 1.1152232, y: 0.12172657, z: -0.27521485, w: -0.47984266} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: 0.40749273, y: 0.034645554, z: -0.10367978, w: 0.90664214} + inSlope: {x: 1.1049068, y: 0.16029808, z: -0.30074167, w: -0.52552515} + outSlope: {x: 1.1049068, y: 0.16029808, z: -0.30074167, w: -0.52552515} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: 0.46542373, y: 0.054911822, z: -0.12960796, w: 0.87382334} + inSlope: {x: -0.11833818, y: 0.04428428, z: -0.018177109, w: 0.057484217} + outSlope: {x: -0.11833818, y: 0.04428428, z: -0.018177109, w: 0.057484217} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: 0.45893088, y: 0.055778816, z: -0.12946059, w: 0.8772179} + inSlope: {x: 0.07917159, y: 0.0033594081, z: -0.015289919, w: -0.043752156} + outSlope: {x: 0.07917159, y: 0.0033594081, z: -0.015289919, w: -0.043752156} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6333334 + value: {x: 0.45639065, y: 0.05536644, z: -0.12902415, w: 0.8786324} + inSlope: {x: -0.13516277, y: -0.0126201855, z: 0.024216771, w: 0.07455915} + outSlope: {x: -0.13516277, y: -0.0126201855, z: 0.024216771, w: 0.07455915} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.86666673 + value: {x: 0.47335413, y: 0.056957193, z: -0.132058, w: 0.8690526} + inSlope: {x: -0.03359694, y: -0.003169257, z: 0.006005696, w: 0.019348584} + outSlope: {x: -0.03359694, y: -0.003169257, z: 0.006005696, w: 0.019348584} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.46088925, y: 0.055792414, z: -0.12983184, w: 0.8761347} + inSlope: {x: -0.0051190006, y: -0.0006219378, z: 0.000982807, w: 0.002876225} + outSlope: {x: -0.0051190006, y: -0.0006219378, z: 0.000982807, w: 0.002876225} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4000001 + value: {x: 0.4598617, y: 0.05569555, z: -0.12964395, w: 0.87670845} + inSlope: {x: -0.05972436, y: -0.0055354144, z: 0.010765279, w: 0.03317091} + outSlope: {x: -0.05972436, y: -0.0055354144, z: 0.010765279, w: 0.03317091} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5000001 + value: {x: 0.44237489, y: 0.054057933, z: -0.12650208, w: 0.88621634} + inSlope: {x: -0.23015025, y: -0.021374553, z: 0.04130843, w: 0.12259558} + outSlope: {x: -0.23015025, y: -0.021374553, z: 0.04130843, w: 0.12259558} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6333334 + value: {x: 0.4672798, y: 0.056323882, z: -0.13090317, w: 0.8725489} + inSlope: {x: 0.37700897, y: 0.034677587, z: -0.06676538, w: -0.21265826} + outSlope: {x: 0.37700897, y: 0.034677587, z: -0.06676538, w: -0.21265826} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.8000001 + value: {x: 0.46088886, y: 0.05579231, z: -0.1298318, w: 0.87613493} + inSlope: {x: -0.22494859, y: -0.014622634, z: 0.041288175, w: 0.12505811} + outSlope: {x: -0.22494859, y: -0.014622634, z: 0.041288175, w: 0.12505811} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9333334 + value: {x: 0.37939906, y: 0.050521016, z: -0.11267504, w: 0.916956} + inSlope: {x: -1.123046, y: -0.080027916, z: 0.25111204, w: 0.4943977} + outSlope: {x: -1.123046, y: -0.080027916, z: 0.25111204, w: 0.4943977} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.0333335 + value: {x: 0.23370758, y: 0.03788833, z: -0.07791597, w: 0.96843916} + inSlope: {x: -1.6779222, y: -0.15314841, z: 0.4135706, w: 0.44587743} + outSlope: {x: -1.6779222, y: -0.15314841, z: 0.4135706, w: 0.44587743} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.08272798, y: 0.023702713, z: -0.03699748, w: 0.9956031} + inSlope: {x: -0.3029748, y: -0.034163468, z: 0.10449025, w: 0.032001466} + outSlope: {x: -0.3029748, y: -0.034163468, z: 0.10449025, w: 0.032001466} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.3000002 + value: {x: 0.09520281, y: 0.024206255, z: -0.041333433, w: 0.99430484} + inSlope: {x: 0.2503347, y: 0.0014834864, z: -0.09211592, w: -0.028375115} + outSlope: {x: 0.2503347, y: 0.0014834864, z: -0.09211592, w: -0.028375115} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.5333335 + value: {x: 0.2511172, y: 0.02305124, z: -0.07457275, w: 0.96480453} + inSlope: {x: 0.7726211, y: 0.0029403744, z: -0.11966944, w: -0.21037659} + outSlope: {x: 0.7726211, y: 0.0029403744, z: -0.11966944, w: -0.21037659} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.766667 + value: {x: 0.3751273, y: 0.029508164, z: -0.09395866, w: 0.921727} + inSlope: {x: 0.068081684, y: 0.0074433326, z: -0.00817024, w: -0.028628139} + outSlope: {x: 0.068081684, y: 0.0074433326, z: -0.00817024, w: -0.028628139} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.0333335 + value: {x: 0.34787482, y: 0.027585678, z: -0.088337846, w: 0.93296224} + inSlope: {x: -0.12365219, y: -0.008857781, z: 0.02520273, w: 0.04879211} + outSlope: {x: -0.12365219, y: -0.008857781, z: 0.02520273, w: 0.04879211} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.3331404, y: 0.026561944, z: -0.08534274, w: 0.93863124} + inSlope: {x: -0.024844432, y: -0.0014056466, z: 0.004932587, w: 0.009319792} + outSlope: {x: -0.024844432, y: -0.0014056466, z: 0.004932587, w: 0.009319792} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.0000012746311, y: -0.0029256423, z: -0.00044973136, w: 0.99999565} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: -0.0000012746311, y: -0.0029256423, z: -0.00044973136, w: 0.99999565} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2/mixamorig:RightHandMiddle3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.28689414, y: -0.21401185, z: -0.009143928, w: 0.9337061} + inSlope: {x: 0.9714755, y: 0.06338462, z: -0.48545277, w: -0.31158146} + outSlope: {x: 0.9714755, y: 0.06338462, z: -0.48545277, w: -0.31158146} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.31927666, y: -0.21189903, z: -0.025325688, w: 0.92332006} + inSlope: {x: 1.1496837, y: 0.065441206, z: -0.62824225, w: -0.4118961} + outSlope: {x: 1.1496837, y: 0.065441206, z: -0.62824225, w: -0.4118961} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: 0.36353973, y: -0.2096491, z: -0.051026747, w: 0.90624636} + inSlope: {x: 0.9534197, y: 0.078739144, z: -0.6719334, w: -0.3847298} + outSlope: {x: 0.9534197, y: 0.078739144, z: -0.6719334, w: -0.3847298} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: 0.34988502, y: -0.19885248, z: -0.11051058, w: 0.90874946} + inSlope: {x: -0.38853723, y: 0.023214968, z: -0.13688275, w: 0.13856114} + outSlope: {x: -0.38853723, y: 0.023214968, z: -0.13688275, w: 0.13856114} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: 0.32061845, y: -0.19859363, z: -0.11585766, w: 0.9188805} + inSlope: {x: -0.15365075, y: -0.020186521, z: 0.045745056, w: 0.05526243} + outSlope: {x: -0.15365075, y: -0.020186521, z: 0.045745056, w: 0.05526243} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5666667 + value: {x: 0.33378386, y: -0.1987085, z: -0.113187425, w: 0.9144899} + inSlope: {x: 0.14889164, y: 0.0142306825, z: -0.030562205, w: -0.054837756} + outSlope: {x: 0.14889164, y: 0.0142306825, z: -0.030562205, w: -0.054837756} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.3376996, y: -0.198302, z: -0.11409312, w: 0.9130269} + inSlope: {x: 0.40580952, y: 0.06651853, z: -0.15748437, w: -0.16040497} + outSlope: {x: 0.40580952, y: 0.06651853, z: -0.15748437, w: -0.16040497} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000001 + value: {x: 0.37732428, y: -0.1923908, z: -0.12994601, w: 0.8965078} + inSlope: {x: 0.18372433, y: 0.023727449, z: -0.07627643, w: -0.080054864} + outSlope: {x: 0.18372433, y: 0.023727449, z: -0.07627643, w: -0.080054864} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.90000004 + value: {x: 0.337156, y: -0.19839601, z: -0.11389531, w: 0.913232} + inSlope: {x: -0.57357043, y: -0.08320281, z: 0.2284903, w: 0.2251268} + outSlope: {x: -0.57357043, y: -0.08320281, z: 0.2284903, w: 0.2251268} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9333334 + value: {x: 0.3214593, y: -0.20071346, z: -0.10771472, w: 0.91911674} + inSlope: {x: -0.11342226, y: -0.016466705, z: 0.045033723, w: 0.04329163} + outSlope: {x: -0.11342226, y: -0.016466705, z: 0.045033723, w: 0.04329163} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.33769965, y: -0.19830209, z: -0.114093326, w: 0.91302687} + inSlope: {x: 0.1215775, y: 0.01787694, z: -0.0480003, w: -0.04636918} + outSlope: {x: 0.1215775, y: 0.01787694, z: -0.0480003, w: -0.04636918} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.34047917, y: -0.19783424, z: -0.11525048, w: 0.91195005} + inSlope: {x: 0.08332767, y: 0.013978992, z: -0.034763187, w: -0.032470793} + outSlope: {x: 0.08332767, y: 0.013978992, z: -0.034763187, w: -0.032470793} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2333333 + value: {x: 0.3327468, y: -0.19895367, z: -0.11219596, w: 0.91493666} + inSlope: {x: 0.068144575, y: 0.009123524, z: -0.026126139, w: -0.02604422} + outSlope: {x: 0.068144575, y: 0.009123524, z: -0.026126139, w: -0.02604422} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4000001 + value: {x: 0.3264759, y: -0.19993852, z: -0.10965393, w: 0.9172863} + inSlope: {x: -0.2271766, y: -0.032480016, z: 0.08981252, w: 0.08443334} + outSlope: {x: -0.2271766, y: -0.032480016, z: 0.08981252, w: 0.08443334} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.29699808, y: -0.20398077, z: -0.0980477, w: 0.9276695} + inSlope: {x: 0.02346797, y: 0.0036531657, z: -0.009677067, w: -0.007732802} + outSlope: {x: 0.02346797, y: 0.0036531657, z: -0.009677067, w: -0.007732802} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7 + value: {x: 0.29361698, y: -0.2044075, z: -0.09671752, w: 0.9287908} + inSlope: {x: 0.04254466, y: 0.0053653005, z: -0.016324671, w: -0.014031499} + outSlope: {x: 0.04254466, y: 0.0053653005, z: -0.016324671, w: -0.014031499} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7666668 + value: {x: 0.31460097, y: -0.20160024, z: -0.10460818, w: 0.92165107} + inSlope: {x: 0.6240134, y: 0.08688891, z: -0.24634996, w: -0.22417298} + outSlope: {x: 0.6240134, y: 0.08688891, z: -0.24634996, w: -0.22417298} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.8666668 + value: {x: 0.3510394, y: -0.1945683, z: -0.123840645, w: 0.907512} + inSlope: {x: -0.114023656, y: 0.020553496, z: -0.041077103, w: 0.042009767} + outSlope: {x: -0.114023656, y: 0.020553496, z: -0.041077103, w: 0.042009767} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.0333335 + value: {x: 0.19699173, y: -0.19883718, z: -0.09399118, w: 0.95541805} + inSlope: {x: -1.1786485, y: -0.01332109, z: 0.26956594, w: 0.26963985} + outSlope: {x: -1.1786485, y: -0.01332109, z: 0.26956594, w: 0.26963985} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.2 + value: {x: 0.10136874, y: -0.19300269, z: -0.078196675, w: 0.9728102} + inSlope: {x: -0.025153223, y: 0.0044062026, z: 0.005019647, w: 0.0039383806} + outSlope: {x: -0.025153223, y: 0.0044062026, z: 0.005019647, w: 0.0039383806} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.3666668 + value: {x: 0.1468638, y: -0.20421627, z: -0.06606877, w: 0.9655888} + inSlope: {x: 0.6221206, y: -0.100011624, z: 0.1133402, w: -0.108600065} + outSlope: {x: 0.6221206, y: -0.100011624, z: 0.1133402, w: -0.108600065} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.5666668 + value: {x: 0.24892296, y: -0.22093078, z: -0.02327644, w: 0.942701} + inSlope: {x: 0.5771923, y: -0.008957022, z: 0.134103, w: -0.15116766} + outSlope: {x: 0.5771923, y: -0.008957022, z: 0.134103, w: -0.15116766} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.7333336 + value: {x: 0.3083929, y: -0.21652238, z: -0.014841772, w: 0.9261704} + inSlope: {x: 0.04561965, y: 0.023546135, z: 0.03604997, w: -0.009037193} + outSlope: {x: 0.04561965, y: 0.023546135, z: 0.03604997, w: -0.009037193} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.1333334 + value: {x: 0.28015286, y: -0.21409602, z: -0.0067578414, w: 0.9357519} + inSlope: {x: 0.07479437, y: 0.003098178, z: -0.030863518, w: -0.02193155} + outSlope: {x: 0.07479437, y: 0.003098178, z: -0.030863518, w: -0.02193155} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.28689414, y: -0.21401173, z: -0.009143873, w: 0.9337061} + inSlope: {x: -0.010811995, y: 0.0015905515, z: 0.0007828426, w: 0.0036960875} + outSlope: {x: -0.010811995, y: 0.0015905515, z: 0.0007828426, w: 0.0036960875} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.20965117, y: 0.01182252, z: -0.031202221, w: 0.97720677} + inSlope: {x: 1.1403165, y: 0.112881266, z: -0.23501788, w: -0.2781719} + outSlope: {x: 1.1403165, y: 0.112881266, z: -0.23501788, w: -0.2781719} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.24766172, y: 0.015585229, z: -0.03903615, w: 0.96793437} + inSlope: {x: 1.5461383, y: 0.15348728, z: -0.3230796, w: -0.43628362} + outSlope: {x: 1.5461383, y: 0.15348728, z: -0.3230796, w: -0.43628362} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: 0.31272706, y: 0.022055006, z: -0.05274086, w: 0.9481212} + inSlope: {x: 1.8536054, y: 0.17486021, z: -0.38396606, w: -0.63072765} + outSlope: {x: 1.8536054, y: 0.17486021, z: -0.38396606, w: -0.63072765} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: 0.51949507, y: 0.039889447, z: -0.09442178, w: 0.84830314} + inSlope: {x: 1.064101, y: 0.08759009, z: -0.21134719, w: -0.6698172} + outSlope: {x: 1.064101, y: 0.08759009, z: -0.21134719, w: -0.6698172} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.36666667 + value: {x: 0.55957353, y: 0.043032877, z: -0.102369815, w: 0.82130754} + inSlope: {x: -0.14143014, y: -0.015193645, z: 0.03179545, w: 0.10093774} + outSlope: {x: -0.14143014, y: -0.015193645, z: 0.03179545, w: 0.10093774} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.55803066, y: 0.04286679, z: -0.102044664, w: 0.8224057} + inSlope: {x: 0.16830058, y: 0.018084683, z: -0.038148165, w: -0.11987419} + outSlope: {x: 0.16830058, y: 0.018084683, z: -0.038148165, w: -0.11987419} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.70000005 + value: {x: 0.5583539, y: 0.04290432, z: -0.102046005, w: 0.82218415} + inSlope: {x: 0.078903496, y: 0.008479809, z: -0.018217241, w: -0.056580346} + outSlope: {x: 0.078903496, y: 0.008479809, z: -0.018217241, w: -0.056580346} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.59053135, y: 0.04637334, z: -0.10944113, w: 0.79821366} + inSlope: {x: 0.03841552, y: 0.0041564773, z: -0.00882291, w: -0.029793998} + outSlope: {x: 0.03841552, y: 0.0041564773, z: -0.00882291, w: -0.029793998} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.90000004 + value: {x: 0.57962084, y: 0.045167446, z: -0.10691528, w: 0.8065784} + inSlope: {x: -0.37314445, y: -0.040286668, z: 0.08578934, w: 0.28092206} + outSlope: {x: -0.37314445, y: -0.040286668, z: 0.08578934, w: 0.28092206} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9666667 + value: {x: 0.56330127, y: 0.043435227, z: -0.10318641, w: 0.8186316} + inSlope: {x: -0.045843467, y: -0.0049170526, z: 0.010433802, w: 0.033222765} + outSlope: {x: -0.045843467, y: -0.0049170526, z: 0.010433802, w: 0.033222765} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2 + value: {x: 0.5640388, y: 0.04351152, z: -0.103353016, w: 0.8180985} + inSlope: {x: -0.0067770546, y: -0.0007196709, z: 0.0015468537, w: 0.0049173883} + outSlope: {x: -0.0067770546, y: -0.0007196709, z: 0.0015468537, w: 0.0049173883} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4000001 + value: {x: 0.5510857, y: 0.04212435, z: -0.10037964, w: 0.8273174} + inSlope: {x: -0.2239593, y: -0.02407296, z: 0.05152707, w: 0.15638903} + outSlope: {x: -0.2239593, y: -0.02407296, z: 0.05152707, w: 0.15638903} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6333334 + value: {x: 0.5282717, y: 0.039682664, z: -0.09510067, w: 0.842799} + inSlope: {x: 0.21448126, y: 0.022865295, z: -0.04893069, w: -0.14185233} + outSlope: {x: 0.21448126, y: 0.022865295, z: -0.04893069, w: -0.14185233} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7666668 + value: {x: 0.5621853, y: 0.043320134, z: -0.10291567, w: 0.8194385} + inSlope: {x: 0.069167085, y: 0.0074688415, z: -0.016546115, w: -0.049715687} + outSlope: {x: 0.069167085, y: 0.0074688415, z: -0.016546115, w: -0.049715687} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9333334 + value: {x: 0.50367403, y: 0.037263375, z: -0.093239084, w: 0.85803866} + inSlope: {x: -1.0670921, y: -0.1240917, z: 0.21134084, w: 0.6462302} + outSlope: {x: -1.0670921, y: -0.1240917, z: 0.21134084, w: 0.6462302} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.0333335 + value: {x: 0.3661359, y: 0.021198964, z: -0.064601935, w: 0.9280742} + inSlope: {x: -1.4484122, y: -0.17584738, z: 0.3154353, w: 0.6012878} + outSlope: {x: -1.4484122, y: -0.17584738, z: 0.3154353, w: 0.6012878} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.24636786, y: 0.0057948357, z: -0.037491363, w: 0.9684337} + inSlope: {x: -0.24385662, y: -0.0355836, z: 0.060902964, w: 0.06578928} + outSlope: {x: -0.24385662, y: -0.0355836, z: 0.060902964, w: 0.06578928} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.22790782, y: 0.005441829, z: -0.034402482, w: 0.97305954} + inSlope: {x: -0.24704756, y: 0.0051061697, z: 0.028628698, w: 0.058615264} + outSlope: {x: -0.24704756, y: 0.0051061697, z: 0.028628698, w: 0.058615264} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.5000002 + value: {x: 0.15749966, y: 0.0036597848, z: -0.023337591, w: 0.9872365} + inSlope: {x: -0.46436337, y: -0.022456884, z: 0.0921726, w: 0.07733588} + outSlope: {x: -0.46436337, y: -0.022456884, z: 0.0921726, w: 0.07733588} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.15990797, y: 0.0065673613, z: -0.022005534, w: 0.98686475} + inSlope: {x: 0.40863872, y: 0.044792306, z: -0.06942795, w: -0.06815678} + outSlope: {x: 0.40863872, y: 0.044792306, z: -0.06942795, w: -0.06815678} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.18972994, y: 0.0096863825, z: -0.026968572, w: 0.9814181} + inSlope: {x: -0.09294243, y: -0.010028118, z: 0.019874237, w: 0.018551964} + outSlope: {x: -0.09294243, y: -0.010028118, z: 0.019874237, w: 0.018551964} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.1333334 + value: {x: 0.19951503, y: 0.01073253, z: -0.02904205, w: 0.9794055} + inSlope: {x: 0.15270658, y: 0.016440727, z: -0.032568753, w: -0.03218296} + outSlope: {x: 0.15270658, y: 0.016440727, z: -0.032568753, w: -0.03218296} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.209651, y: 0.011822612, z: -0.03120225, w: 0.9772068} + inSlope: {x: -0.018930156, y: -0.0020432025, z: 0.0040477924, w: 0.004221801} + outSlope: {x: -0.018930156, y: -0.0020432025, z: 0.0040477924, w: 0.004221801} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.00000005166413, y: 0.00000013996026, z: -0.000000035786478, + 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.033333335 + value: {x: -0.00000005166413, y: 0.00000013996026, z: -0.000000035786478, + 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: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2/mixamorig:RightHandPinky3 + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.13801248, y: -0.07935199, z: 0.9822718, w: -0.09898471} + inSlope: {x: 0.27275652, y: 0.07045716, z: 0.03922462, w: -0.033726543} + outSlope: {x: 0.27275652, y: 0.07045716, z: 0.03922462, w: -0.033726543} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: -0.11519729, y: -0.075682186, z: 0.9852243, w: -0.101660825} + inSlope: {x: 0.34012285, y: -0.09754678, z: 0.025586484, w: -0.068137266} + outSlope: {x: 0.34012285, y: -0.09754678, z: 0.025586484, w: -0.068137266} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: -0.10624574, y: -0.08350654, z: 0.98528504, w: -0.104651414} + inSlope: {x: 0.18978202, y: 0.010589391, z: 0.017135741, w: -0.04427924} + outSlope: {x: 0.18978202, y: 0.010589391, z: 0.017135741, w: -0.04427924} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.10519806, y: -0.06065702, z: 0.9873056, w: -0.10238084} + inSlope: {x: -0.13809551, y: 0.6680093, z: 0.0335285, w: 0.12645416} + outSlope: {x: -0.13809551, y: 0.6680093, z: 0.0335285, w: 0.12645416} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: -0.12229478, y: -0.0059354124, z: 0.9882778, w: -0.09119087} + inSlope: {x: -0.33446166, y: 0.6429956, z: -0.019065144, w: 0.18289861} + outSlope: {x: -0.33446166, y: 0.6429956, z: -0.019065144, w: 0.18289861} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: -0.17390421, y: 0.027610235, z: 0.9829907, w: -0.05219457} + inSlope: {x: -0.060738627, y: -0.16818711, z: 0.0005221367, w: 0.12076317} + outSlope: {x: -0.060738627, y: -0.16818711, z: 0.0005221367, w: 0.12076317} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: -0.16327092, y: 0.005434135, z: 0.9856843, w: -0.041708454} + inSlope: {x: 0.38097978, y: -0.29533833, z: 0.06685848, w: 0.08576211} + outSlope: {x: 0.38097978, y: -0.29533833, z: 0.06685848, w: 0.08576211} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6333334 + value: {x: -0.11647546, y: 0.008223924, z: 0.9924631, w: -0.037186068} + inSlope: {x: 0.37303025, y: 0.5770409, z: 0.04033237, w: 0.12681039} + outSlope: {x: 0.37303025, y: 0.5770409, z: 0.04033237, w: 0.12681039} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.70000005 + value: {x: -0.09382594, y: 0.049124148, z: 0.99401975, w: -0.026614778} + inSlope: {x: 0.23972538, y: 0.29828262, z: 0.012279151, w: 0.067624286} + outSlope: {x: 0.23972538, y: 0.29828262, z: 0.012279151, w: 0.067624286} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.088539355, y: 0.05305414, z: 0.99431396, w: -0.026187548} + inSlope: {x: -0.104584016, y: 0.35624358, z: -0.027762622, w: 0.2281842} + outSlope: {x: -0.104584016, y: 0.35624358, z: -0.027762622, w: 0.2281842} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000001 + value: {x: -0.11308139, y: 0.09570727, z: 0.9889596, w: 0.0034196628} + inSlope: {x: -0.15425801, y: 0.67701674, z: -0.08085875, w: 0.19862403} + outSlope: {x: -0.15425801, y: 0.67701674, z: -0.08085875, w: 0.19862403} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.86666673 + value: {x: -0.09960938, y: 0.13283895, z: 0.9861192, w: -0.000836451} + inSlope: {x: 0.73650736, y: 0.45646107, z: 0.0029817428, w: -0.037969884} + outSlope: {x: 0.73650736, y: 0.45646107, z: 0.0029817428, w: -0.037969884} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9333334 + value: {x: -0.017345153, y: 0.1634814, z: 0.98639315, w: 0.0012440236} + inSlope: {x: 1.1361511, y: 0.42045814, z: -0.041814767, w: 0.10559834} + outSlope: {x: 1.1361511, y: 0.42045814, z: -0.041814767, w: 0.10559834} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.0542623, y: 0.19438304, z: 0.97882175, w: 0.034334313} + inSlope: {x: 0.04231216, y: -0.014632124, z: -0.006049268, w: 0.19201033} + outSlope: {x: 0.04231216, y: -0.014632124, z: -0.006049268, w: 0.19201033} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3000001 + value: {x: 0.046097003, y: 0.15765102, z: 0.9847803, w: 0.056824014} + inSlope: {x: 0.18421686, y: -0.2052055, z: 0.023041092, w: 0.014489809} + outSlope: {x: 0.18421686, y: -0.2052055, z: 0.023041092, w: 0.014489809} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4000001 + value: {x: 0.07813681, y: 0.14293744, z: 0.9852785, w: 0.051864397} + inSlope: {x: 0.5594731, y: -0.07928349, z: -0.030027358, w: -0.10987328} + outSlope: {x: 0.5594731, y: -0.07928349, z: -0.030027358, w: -0.10987328} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4666667 + value: {x: 0.11676921, y: 0.13814437, z: 0.9827543, w: 0.03840671} + inSlope: {x: 0.15563546, y: -0.22360663, z: 0.028140724, w: -0.44831103} + outSlope: {x: 0.15563546, y: -0.22360663, z: 0.028140724, w: -0.44831103} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5000001 + value: {x: 0.11224419, y: 0.12640251, z: 0.98545724, w: 0.017255124} + inSlope: {x: -0.16489285, y: -0.24355245, z: 0.058953077, w: -0.87747145} + outSlope: {x: -0.16489285, y: -0.24355245, z: 0.058953077, w: -0.87747145} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333334 + value: {x: 0.10577635, y: 0.12190752, z: 0.9866845, w: -0.020091407} + inSlope: {x: -0.117281705, y: 0.070074566, z: -0.004276341, w: -0.8101225} + outSlope: {x: -0.117281705, y: 0.070074566, z: -0.004276341, w: -0.8101225} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6000001 + value: {x: 0.10877732, y: 0.14947028, z: 0.9816912, w: -0.04591946} + inSlope: {x: 0.30330783, y: 0.2255652, z: -0.08236069, w: -0.3154732} + outSlope: {x: 0.30330783, y: 0.2255652, z: -0.08236069, w: -0.3154732} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.14289911, y: 0.14529958, z: 0.97647977, w: -0.07039325} + inSlope: {x: 0.41794086, y: 0.13456967, z: -0.10616462, w: -0.36398908} + outSlope: {x: 0.41794086, y: 0.13456967, z: -0.10616462, w: -0.36398908} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.8000001 + value: {x: 0.14214449, y: 0.1794553, z: 0.967188, w: -0.11017353} + inSlope: {x: -0.2711593, y: -0.07184349, z: 0.03505293, w: -0.15530027} + outSlope: {x: -0.2711593, y: -0.07184349, z: 0.03505293, w: -0.15530027} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.0666668 + value: {x: 0.0041211643, y: 0.024168601, z: 0.99423546, w: -0.1043779} + inSlope: {x: -0.7178575, y: -0.7834692, z: 0.03585312, w: 0.12129833} + outSlope: {x: -0.7178575, y: -0.7834692, z: 0.03585312, w: 0.12129833} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.3000002 + value: {x: -0.14775576, y: -0.08519941, z: 0.9816926, w: -0.08478742} + inSlope: {x: -0.45575535, y: -0.116277225, z: -0.0740657, w: 0.04432355} + outSlope: {x: -0.45575535, y: -0.116277225, z: -0.0740657, w: 0.04432355} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.5666668 + value: {x: -0.17531613, y: -0.10386898, z: 0.9752602, w: -0.08569145} + inSlope: {x: 0.13312286, y: -0.055465676, z: 0.014418676, w: -0.04166402} + outSlope: {x: 0.13312286, y: -0.055465676, z: 0.014418676, w: -0.04166402} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.0666668 + value: {x: -0.14323695, y: -0.098403595, z: 0.9800436, w: -0.09651139} + inSlope: {x: 0.043985587, y: 0.01609137, z: 0.005538767, w: -0.025420772} + outSlope: {x: 0.043985587, y: 0.01609137, z: 0.005538767, w: -0.025420772} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.13801205, y: -0.07935907, z: 0.98227113, w: -0.09898585} + inSlope: {x: -0.0041431226, y: 0.05554279, z: 0.0037461554, w: -0.0020934662} + outSlope: {x: -0.0041431226, y: 0.05554279, z: 0.0037461554, w: -0.0020934662} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:LeftUpLeg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.1121424, y: 0.008025533, z: -0.042176604, w: 0.99276423} + inSlope: {x: 0.0027083603, y: 0.016504973, z: -0.0029959155, w: 0.0000411272} + outSlope: {x: 0.0027083603, y: 0.016504973, z: -0.0029959155, w: 0.0000411272} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: -0.10840767, y: 0.0084872665, z: -0.042191423, w: 0.99317455} + inSlope: {x: 0.33535933, y: -0.039256506, z: 0.005516689, w: 0.034555785} + outSlope: {x: 0.33535933, y: -0.039256506, z: 0.005516689, w: 0.034555785} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.10000001 + value: {x: -0.08969483, y: 0.0059585976, z: -0.04190869, w: 0.9950693} + inSlope: {x: 0.037524506, y: -0.07355802, z: 0.016439874, w: 0.0051838085} + outSlope: {x: 0.037524506, y: -0.07355802, z: 0.016439874, w: 0.0051838085} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: -0.10590603, y: 0.0035833982, z: -0.041095432, w: 0.99352014} + inSlope: {x: -0.72447073, y: -0.05917859, z: 0.023575725, w: -0.08189768} + outSlope: {x: -0.72447073, y: -0.05917859, z: 0.023575725, w: -0.08189768} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.13799287, y: 0.0020133585, z: -0.040336974, w: 0.9896095} + inSlope: {x: -1.5283588, y: -0.0019676778, z: -0.001757903, w: -0.24334155} + outSlope: {x: -1.5283588, y: -0.0019676778, z: -0.001757903, w: -0.24334155} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.20000002 + value: {x: -0.20779665, y: 0.0034522202, z: -0.041212626, w: 0.97729737} + inSlope: {x: -1.9607568, y: 0.03834913, z: -0.09453093, w: -0.41293496} + outSlope: {x: -1.9607568, y: 0.03834913, z: -0.09453093, w: -0.41293496} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: -0.43350363, y: 0.00617336, z: -0.04363894, w: 0.9000734} + inSlope: {x: -0.17365366, y: -0.0002024232, z: 0.004019173, w: -0.08202278} + outSlope: {x: -0.17365366, y: -0.0002024232, z: 0.004019173, w: -0.08202278} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: -0.37994614, y: 0.0004122386, z: -0.042798452, w: 0.9240179} + inSlope: {x: 1.1072882, y: -0.08111559, z: -0.008408272, w: 0.44967198} + outSlope: {x: 1.1072882, y: -0.08111559, z: -0.008408272, w: 0.44967198} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.31325838, y: -0.0026147251, z: -0.04461336, w: 0.94861585} + inSlope: {x: 0.50179106, y: -0.056595154, z: -0.01134448, w: 0.17023453} + outSlope: {x: 0.50179106, y: -0.056595154, z: -0.01134448, w: 0.17023453} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.30371633, y: -0.013268747, z: -0.04113615, w: 0.9517816} + inSlope: {x: 0.33028075, y: -0.27766275, z: 0.1529247, w: 0.10363959} + outSlope: {x: 0.33028075, y: -0.27766275, z: 0.1529247, w: 0.10363959} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.70000005 + value: {x: -0.28349802, y: -0.024827255, z: -0.03405484, w: 0.9580463} + inSlope: {x: 0.68109345, y: -0.52614903, z: 0.2722451, w: 0.19194336} + outSlope: {x: 0.68109345, y: -0.52614903, z: 0.2722451, w: 0.19194336} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.2583101, y: -0.04834534, z: -0.02298648, w: 0.9645778} + inSlope: {x: 0.5827973, y: -0.1465785, z: 0.045659497, w: 0.15678947} + outSlope: {x: 0.5827973, y: -0.1465785, z: 0.045659497, w: 0.15678947} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7666667 + value: {x: -0.24464488, y: -0.03459912, z: -0.031010892, w: 0.96849895} + inSlope: {x: 0.54662055, y: 0.4290363, z: -0.1494801, w: 0.14612752} + outSlope: {x: 0.54662055, y: 0.4290363, z: -0.1494801, w: 0.14612752} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000001 + value: {x: -0.22186871, y: -0.019742895, z: -0.032951828, w: 0.97431964} + inSlope: {x: 0.3620423, y: 0.262253, z: -0.03892314, w: 0.09235018} + outSlope: {x: 0.3620423, y: 0.262253, z: -0.03892314, w: 0.09235018} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.22050871, y: -0.01711558, z: -0.03360577, w: 0.9746556} + inSlope: {x: 0.161951, y: 0.08436933, z: -0.027079297, w: 0.036461033} + outSlope: {x: 0.161951, y: 0.08436933, z: -0.027079297, w: 0.036461033} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9333334 + value: {x: -0.1975906, y: -0.013420965, z: -0.03573834, w: 0.97954106} + inSlope: {x: 0.07490358, y: -0.01108148, z: -0.005146823, w: 0.014828142} + outSlope: {x: 0.07490358, y: -0.01108148, z: -0.005146823, w: 0.014828142} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.20296629, y: -0.014620373, z: -0.03662823, w: 0.9783912} + inSlope: {x: 0.09839582, y: -0.01083376, z: 0.01341022, w: 0.020625312} + outSlope: {x: 0.09839582, y: -0.01083376, z: 0.01341022, w: 0.020625312} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4000001 + value: {x: -0.24454571, y: -0.022344356, z: -0.031442873, w: 0.9688702} + inSlope: {x: -0.50125057, y: -0.051954076, z: 0.029779479, w: -0.12747657} + outSlope: {x: -0.50125057, y: -0.051954076, z: 0.029779479, w: -0.12747657} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4666667 + value: {x: -0.27906495, y: -0.025520993, z: -0.030603232, w: 0.9594451} + inSlope: {x: -0.3449772, y: 0.024415238, z: -0.013194478, w: -0.09820997} + outSlope: {x: -0.3449772, y: 0.024415238, z: -0.013194478, w: -0.09820997} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5000001 + value: {x: -0.28551888, y: -0.022694798, z: -0.0314808, w: 0.957587} + inSlope: {x: -0.7392722, y: -0.041874003, z: -0.022161419, w: -0.23787719} + outSlope: {x: -0.7392722, y: -0.041874003, z: -0.022161419, w: -0.23787719} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333334 + value: {x: -0.32834974, y: -0.02831258, z: -0.03208066, w: 0.94358665} + inSlope: {x: -1.1415596, y: 0.0511621, z: -0.14560252, w: -0.39558595} + outSlope: {x: -1.1415596, y: 0.0511621, z: -0.14560252, w: -0.39558595} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.36162278, y: -0.019283995, z: -0.041187625, w: 0.93121463} + inSlope: {x: -1.2190206, y: 0.29586583, z: -0.25157574, w: -0.4901829} + outSlope: {x: -1.2190206, y: 0.29586583, z: -0.25157574, w: -0.4901829} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6000001 + value: {x: -0.40961787, y: -0.008588173, z: -0.048852388, w: 0.91090775} + inSlope: {x: -0.93630385, y: 0.20103021, z: -0.049962655, w: -0.40029842} + outSlope: {x: -0.93630385, y: 0.20103021, z: -0.049962655, w: -0.40029842} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.43144903, y: -0.0067064837, z: -0.04041984, w: 0.90120643} + inSlope: {x: -0.47582972, y: -0.031345017, z: 0.11404557, w: -0.22844216} + outSlope: {x: -0.47582972, y: -0.031345017, z: 0.11404557, w: -0.22844216} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7666668 + value: {x: -0.51156783, y: -0.008664639, z: -0.031410936, w: 0.8586249} + inSlope: {x: -0.55299336, y: -0.014551437, z: 0.06388335, w: -0.32155246} + outSlope: {x: -0.55299336, y: -0.014551437, z: 0.06388335, w: -0.32155246} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9333334 + value: {x: -0.48549566, y: -0.0067269527, z: -0.03394719, w: 0.8735538} + inSlope: {x: 0.77310216, y: 0.023788475, z: -0.07226031, w: 0.4236241} + outSlope: {x: 0.77310216, y: 0.023788475, z: -0.07226031, w: 0.4236241} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.0666668 + value: {x: -0.3330004, y: -0.0028325825, z: -0.046310563, w: 0.9417845} + inSlope: {x: 1.281955, y: 0.026323952, z: -0.021841474, w: 0.4572178} + outSlope: {x: 1.281955, y: 0.026323952, z: -0.021841474, w: 0.4572178} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.266667 + value: {x: -0.15529053, y: 0.001387673, z: -0.04000536, w: 0.9870575} + inSlope: {x: 0.2884217, y: 0.005574452, z: -0.009975315, w: 0.046123073} + outSlope: {x: 0.2884217, y: 0.005574452, z: -0.009975315, w: 0.046123073} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.5333335 + value: {x: -0.12961216, y: -0.000041651692, z: -0.040478233, w: 0.9907382} + inSlope: {x: 0.19751069, y: -0.006067022, z: -0.002587943, w: 0.025584722} + outSlope: {x: 0.19751069, y: -0.006067022, z: -0.002587943, w: 0.025584722} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.9 + value: {x: -0.097171605, y: 0.0016935791, z: -0.04107109, w: 0.99441844} + inSlope: {x: 0.073858276, y: 0.009649787, z: -0.0025317841, w: 0.007101602} + outSlope: {x: 0.073858276, y: 0.009649787, z: -0.0025317841, w: 0.007101602} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.2333336 + value: {x: -0.099234566, y: 0.0065280907, z: -0.042022515, w: 0.99415493} + inSlope: {x: -0.14643277, y: 0.01962088, z: -0.0023013935, w: -0.014825477} + outSlope: {x: -0.14643277, y: 0.01962088, z: -0.0023013935, w: -0.014825477} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.112126805, y: 0.008024984, z: -0.042176772, w: 0.992766} + inSlope: {x: -0.08873426, y: 0.011543233, z: -0.0015985981, w: -0.010045776} + outSlope: {x: -0.08873426, y: 0.011543233, z: -0.0015985981, w: -0.010045776} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.6314047, y: -0.0173209, z: -0.027771633, w: 0.7747625} + inSlope: {x: -0.024393795, y: 0.22677082, z: -0.14107123, w: 0.018337367} + outSlope: {x: -0.024393795, y: 0.22677082, z: -0.14107123, w: 0.018337367} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.06666667 + value: {x: 0.6282265, y: 0.003435703, z: -0.04084656, w: 0.77694994} + inSlope: {x: -0.13579755, y: 0.38544852, z: -0.2513926, w: 0.09448348} + outSlope: {x: -0.13579755, y: 0.38544852, z: -0.2513926, w: 0.09448348} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.6383257, y: 0.036403257, z: -0.060403142, w: 0.7665289} + inSlope: {x: 0.58861333, y: 0.24130191, z: -0.058653712, w: -0.5168428} + outSlope: {x: 0.58861333, y: 0.24130191, z: -0.058653712, w: -0.5168428} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: 0.6913252, y: 0.05012614, z: -0.056487717, w: 0.7185861} + inSlope: {x: 0.71180826, y: 0.1472221, z: 0.100935504, w: -0.68441755} + outSlope: {x: 0.71180826, y: 0.1472221, z: 0.100935504, w: -0.68441755} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: 0.7640193, y: 0.036044113, z: -0.036490437, w: 0.6431514} + inSlope: {x: -0.12809168, y: -0.32763922, z: 0.11730994, w: 0.17495526} + outSlope: {x: -0.12809168, y: -0.32763922, z: 0.11730994, w: 0.17495526} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: 0.7419531, y: 0.010392144, z: -0.027432581, w: 0.6698097} + inSlope: {x: -0.6911609, y: -0.27799058, z: 0.42280474, w: 0.7655072} + outSlope: {x: -0.6911609, y: -0.27799058, z: 0.42280474, w: 0.7655072} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5666667 + value: {x: 0.7107368, y: 0.005238513, z: -0.0042479527, w: 0.7034257} + inSlope: {x: -0.98236275, y: -0.38916677, z: 0.32804725, w: 0.99723554} + outSlope: {x: -0.98236275, y: -0.38916677, z: 0.32804725, w: 0.99723554} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6333334 + value: {x: 0.6317971, y: -0.044254594, z: -0.0051600807, w: 0.7738523} + inSlope: {x: -1.5012765, y: -0.84752584, z: 0.1484003, w: 1.1654611} + outSlope: {x: -1.5012765, y: -0.84752584, z: 0.1484003, w: 1.1654611} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.70000005 + value: {x: 0.51423967, y: -0.08506601, z: 0.008309034, w: 0.853377} + inSlope: {x: -1.8535764, y: -0.25095206, z: 0.1715526, w: 1.0957253} + outSlope: {x: -1.8535764, y: -0.25095206, z: 0.1715526, w: 1.0957253} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.4528054, y: -0.08878416, z: 0.015767438, w: 0.8870378} + inSlope: {x: -1.8314219, y: 0.82744926, z: 1.5736952, w: 0.88563514} + outSlope: {x: -1.8314219, y: 0.82744926, z: 1.5736952, w: 0.88563514} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7666667 + value: {x: 0.3921449, y: -0.029902674, z: 0.11322212, w: 0.9124193} + inSlope: {x: -1.6619704, y: 1.4533602, z: 2.288729, w: 0.56131256} + outSlope: {x: -1.6619704, y: 1.4533602, z: 2.288729, w: 0.56131256} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000001 + value: {x: 0.34200728, y: 0.008106602, z: 0.16834949, w: 0.9244587} + inSlope: {x: -1.0797716, y: 0.44408208, z: 0.62536174, w: 0.33288896} + outSlope: {x: -1.0797716, y: 0.44408208, z: 0.62536174, w: 0.33288896} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.3201601, y: -0.00029716332, z: 0.15491296, w: 0.9346119} + inSlope: {x: -0.7105752, y: -0.32112703, z: -0.43557733, w: 0.3127259} + outSlope: {x: -0.7105752, y: -0.32112703, z: -0.43557733, w: 0.3127259} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.86666673 + value: {x: 0.2946356, y: -0.013301869, z: 0.139311, w: 0.9453071} + inSlope: {x: -0.5451709, y: -0.36504233, z: -0.22715542, w: 0.20558766} + outSlope: {x: -0.5451709, y: -0.36504233, z: -0.22715542, w: 0.20558766} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9666667 + value: {x: 0.28972065, y: -0.039531667, z: 0.14655288, w: 0.94499815} + inSlope: {x: 0.40823707, y: -0.113886364, z: 0.069238834, w: -0.14298065} + outSlope: {x: 0.40823707, y: -0.113886364, z: 0.069238834, w: -0.14298065} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0333334 + value: {x: 0.34490177, y: -0.038409922, z: 0.14324853, w: 0.92684805} + inSlope: {x: 1.1423726, y: 0.13278505, z: -0.187181, w: -0.39403057} + outSlope: {x: 1.1423726, y: 0.13278505, z: -0.187181, w: -0.39403057} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.1333334 + value: {x: 0.42926085, y: -0.019639095, z: 0.13068485, w: 0.8934601} + inSlope: {x: 0.1403544, y: 0.19185722, z: -0.019050097, w: -0.05842715} + outSlope: {x: 0.1403544, y: 0.19185722, z: -0.019050097, w: -0.05842715} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2333333 + value: {x: 0.3965459, y: 0.0016386372, z: 0.14014444, w: 0.90725315} + inSlope: {x: -0.43271858, y: 0.21710613, z: 0.24989241, w: 0.14966267} + outSlope: {x: -0.43271858, y: 0.21710613, z: 0.24989241, w: 0.14966267} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4000001 + value: {x: 0.33889845, y: 0.024080155, z: 0.17625071, w: 0.9238526} + inSlope: {x: 0.07737644, y: 0.2602726, z: 0.12223978, w: -0.0601173} + outSlope: {x: 0.07737644, y: 0.2602726, z: 0.12223978, w: -0.0601173} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4666667 + value: {x: 0.35961065, y: 0.04631867, z: 0.17888254, w: 0.9146233} + inSlope: {x: 0.2936423, y: -0.008491144, z: -0.2779734, w: -0.062259533} + outSlope: {x: 0.2936423, y: -0.008491144, z: -0.2779734, w: -0.062259533} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5000001 + value: {x: 0.3670084, y: 0.03580925, z: 0.16149873, w: 0.915391} + inSlope: {x: 1.4483465, y: -0.94692785, z: -1.6597173, w: -0.41262433} + outSlope: {x: 1.4483465, y: -0.94692785, z: -1.6597173, w: -0.41262433} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333334 + value: {x: 0.456167, y: -0.016809832, z: 0.06823476, w: 0.88711506} + inSlope: {x: 2.1212502, y: -1.0748883, z: -2.075946, w: -0.8301239} + outSlope: {x: 2.1212502, y: -1.0748883, z: -2.075946, w: -0.8301239} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.50842494, y: -0.035849907, z: 0.023102451, w: 0.8600495} + inSlope: {x: 1.599715, y: -0.11000404, z: -0.729591, w: -0.91675484} + outSlope: {x: 1.599715, y: -0.11000404, z: -0.729591, w: -0.91675484} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6000001 + value: {x: 0.5628148, y: -0.024143387, z: 0.019595386, w: 0.825998} + inSlope: {x: 1.6254585, y: 0.4729285, z: -0.26075193, w: -1.0943012} + outSlope: {x: 1.6254585, y: 0.4729285, z: -0.26075193, w: -1.0943012} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.6532634, y: 0.0123275975, z: -0.0048542223, w: 0.7570148} + inSlope: {x: 0.92684984, y: 0.42029864, z: -0.20142002, w: -0.79487073} + outSlope: {x: 0.92684984, y: 0.42029864, z: -0.20142002, w: -0.79487073} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7 + value: {x: 0.67857885, y: 0.023698552, z: -0.0077089947, w: 0.7341047} + inSlope: {x: 0.70795333, y: 0.20209703, z: -0.20939526, w: -0.6605722} + outSlope: {x: 0.70795333, y: 0.20209703, z: -0.20939526, w: -0.6605722} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7666668 + value: {x: 0.70951164, y: 0.026755089, z: -0.024216784, w: 0.7037691} + inSlope: {x: 0.2027913, y: 0.009961678, z: -0.14450437, w: -0.20833722} + outSlope: {x: 0.2027913, y: 0.009961678, z: -0.14450437, w: -0.20833722} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.0666668 + value: {x: 0.67418337, y: 0.019531531, z: -0.046754804, w: 0.7368238} + inSlope: {x: -0.2927071, y: -0.08605319, z: 0.00033762353, w: 0.27108666} + outSlope: {x: -0.2927071, y: -0.08605319, z: 0.00033762353, w: 0.27108666} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.3000002 + value: {x: 0.64597076, y: 0.004052164, z: -0.03550091, w: 0.7625255} + inSlope: {x: 0.0537095, y: -0.046625104, z: 0.09652503, w: -0.040769614} + outSlope: {x: 0.0537095, y: -0.046625104, z: 0.09652503, w: -0.040769614} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.5666668 + value: {x: 0.635288, y: -0.012641265, z: -0.019650538, w: 0.77192175} + inSlope: {x: -0.099383086, y: -0.035142757, z: 0.0077734403, w: 0.081610754} + outSlope: {x: -0.099383086, y: -0.035142757, z: 0.0077734403, w: 0.081610754} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.0666668 + value: {x: 0.6198389, y: -0.015142227, z: -0.025187062, w: 0.7841786} + inSlope: {x: -0.006897754, y: -0.0014588716, z: -0.015620446, w: 0.0049236463} + outSlope: {x: -0.006897754, y: -0.0014588716, z: -0.015620446, w: 0.0049236463} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.63139737, y: -0.017320987, z: -0.027771678, w: 0.7747684} + inSlope: {x: 0.042704385, y: -0.007637877, z: -0.002592581, w: -0.034999285} + outSlope: {x: 0.042704385, y: -0.007637877, z: -0.002592581, w: -0.034999285} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.16970254, y: 0.02895891, z: -0.122050114, w: 0.9774795} + inSlope: {x: 0.0000017881392, y: 0.0000011734663, z: 0.0000004470348, w: 0} + outSlope: {x: 0.0000017881392, y: 0.0000011734663, z: 0.0000004470348, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: 0.16970263, y: 0.028958917, z: -0.12205005, w: 0.9774795} + inSlope: {x: 0.02241699, y: -0.0123898955, z: -0.004779357, w: -0.004145798} + outSlope: {x: 0.02241699, y: -0.0123898955, z: -0.004779357, w: -0.004145798} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.19208892, y: 0.024642555, z: -0.124425404, w: 0.9731459} + inSlope: {x: 1.0637103, y: 0.16530707, z: -0.015235884, w: -0.23442945} + outSlope: {x: 1.0637103, y: 0.16530707, z: -0.015235884, w: -0.23442945} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6333334 + value: {x: 0.24211115, y: 0.039153438, z: -0.12338449, w: 0.9615745} + inSlope: {x: 1.4535332, y: 0.29256728, z: 0.0055116937, w: -0.3737015} + outSlope: {x: 1.4535332, y: 0.29256728, z: 0.0055116937, w: -0.3737015} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.70000005 + value: {x: 0.3274669, y: 0.044840135, z: -0.124606684, w: 0.9355362} + inSlope: {x: 1.008359, y: -0.20585683, z: -0.026702408, w: -0.3426093} + outSlope: {x: 1.008359, y: -0.20585683, z: -0.026702408, w: -0.3426093} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.35621506, y: 0.030423274, z: -0.12583812, w: 0.92539185} + inSlope: {x: -0.06734854, y: -1.5124255, z: -0.18368985, w: -0.011271805} + outSlope: {x: -0.06734854, y: -1.5124255, z: -0.18368985, w: -0.011271805} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7666667 + value: {x: 0.32297695, y: -0.055988293, z: -0.13685268, w: 0.93478477} + inSlope: {x: -1.3467956, y: -0.7745342, z: -0.13717432, w: 0.43092513} + outSlope: {x: -1.3467956, y: -0.7745342, z: -0.13717432, w: 0.43092513} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000001 + value: {x: 0.26642862, y: -0.02121239, z: -0.13498308, w: 0.9541202} + inSlope: {x: -2.2991178, y: 1.2742088, z: 0.22203766, w: 0.6404213} + outSlope: {x: -2.2991178, y: 1.2742088, z: 0.22203766, w: 0.6404213} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.16970247, y: 0.028958933, z: -0.12205018, w: 0.9774795} + inSlope: {x: -1.4508905, y: 0.7525719, z: 0.19399475, w: 0.3503898} + outSlope: {x: -1.4508905, y: 0.7525719, z: 0.19399475, w: 0.3503898} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.86666673 + value: {x: 0.16970268, y: 0.02895902, z: -0.12205011, w: 0.9774795} + inSlope: {x: 0.0000037997943, y: -0.00000044703756, z: -0.0000003352784, w: -0.0000008940705} + outSlope: {x: 0.0000037997943, y: -0.00000044703756, z: -0.0000003352784, + w: -0.0000008940705} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4000001 + value: {x: 0.16970263, y: 0.02895885, z: -0.12205014, w: 0.9774795} + inSlope: {x: 0.0000024586939, y: 0.00000030733668, z: -0.0000010058293, w: 0} + outSlope: {x: 0.0000024586939, y: 0.00000030733668, z: -0.0000010058293, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4333334 + value: {x: 0.16970274, y: 0.028958982, z: -0.12205016, w: 0.9774795} + inSlope: {x: 0.1843455, y: -0.09708323, z: -0.036500763, w: -0.035254095} + outSlope: {x: 0.1843455, y: -0.09708323, z: -0.036500763, w: -0.035254095} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4666667 + value: {x: 0.18199232, y: 0.02248664, z: -0.12448352, w: 0.97512925} + inSlope: {x: 2.2178588, y: -1.2244505, z: -0.22290285, w: -0.60985065} + outSlope: {x: 2.2178588, y: -1.2244505, z: -0.22290285, w: -0.60985065} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5000001 + value: {x: 0.31756034, y: -0.05267124, z: -0.13691038, w: 0.9368227} + inSlope: {x: 2.182797, y: -0.29888135, z: -0.07387471, w: -0.58784664} + outSlope: {x: 2.182797, y: -0.29888135, z: -0.07387471, w: -0.58784664} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333334 + value: {x: 0.32751247, y: 0.0025609657, z: -0.12940854, w: 0.9359394} + inSlope: {x: 0.15873732, y: 1.5183495, z: 0.19055638, w: -0.02483281} + outSlope: {x: 0.15873732, y: 1.5183495, z: 0.19055638, w: -0.02483281} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.32814282, y: 0.048551966, z: -0.12420663, w: 0.9351672} + inSlope: {x: -0.47538093, y: 0.66430765, z: 0.08362899, w: 0.15126541} + outSlope: {x: -0.47538093, y: 0.66430765, z: 0.08362899, w: 0.15126541} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6000001 + value: {x: 0.29582033, y: 0.046848096, z: -0.12383328, w: 0.94602376} + inSlope: {x: -1.2633729, y: -0.12885363, z: 0.013615444, w: 0.38892454} + outSlope: {x: -1.2633729, y: -0.12885363, z: 0.013615444, w: 0.38892454} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.20012426, y: 0.033555184, z: -0.12263173, w: 0.9714864} + inSlope: {x: -1.0456685, y: -0.20253779, z: 0.004443307, w: 0.2331414} + outSlope: {x: -1.0456685, y: -0.20253779, z: 0.004443307, w: 0.2331414} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.8000001 + value: {x: 0.1697026, y: 0.028958937, z: -0.12205007, w: 0.9774795} + inSlope: {x: 0.0000033527645, y: 0.00000089407047, z: -0.0000016763822, w: -0.0000008940705} + outSlope: {x: 0.0000033527645, y: 0.00000089407047, z: -0.0000016763822, w: -0.0000008940705} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 3.3333335 + value: {x: 0.16970259, y: 0.028958911, z: -0.12205013, w: 0.9774795} + inSlope: {x: 0.0000013411058, y: -0.00000055879406, z: -0.0000011175881, w: 0} + outSlope: {x: 0.0000013411058, y: -0.00000055879406, z: -0.0000011175881, + w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot/mixamorig:LeftToeBase + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.127639, y: 0.052954268, z: 0.973447, w: -0.18249694} + inSlope: {x: 0.030447988, y: 0.020944027, z: 0.0014913081, w: 0.035572797} + outSlope: {x: 0.030447988, y: 0.020944027, z: 0.0014913081, w: 0.035572797} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.10464032, y: 0.076845564, z: 0.9778889, w: -0.16394699} + inSlope: {x: -0.38496867, y: 0.40143195, z: 0.039726194, w: 0.18858609} + outSlope: {x: -0.38496867, y: 0.40143195, z: 0.039726194, w: 0.18858609} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.43333337 + value: {x: 0.02221786, y: 0.14708135, z: 0.977816, w: -0.14747658} + inSlope: {x: 0.26191005, y: -0.3280505, z: 0.03497601, w: -0.043578077} + outSlope: {x: 0.26191005, y: -0.3280505, z: 0.03497601, w: -0.043578077} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6333334 + value: {x: 0.18643211, y: 0.024101546, z: 0.9694657, w: -0.15747537} + inSlope: {x: 1.2061448, y: -0.6964029, z: -0.23751862, w: -0.11724457} + outSlope: {x: 1.2061448, y: -0.6964029, z: -0.23751862, w: -0.11724457} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.22887988, y: 0.00051902805, z: 0.9595649, w: -0.16385636} + inSlope: {x: 1.5608016, y: -0.7869549, z: -0.42773, w: -0.21098143} + outSlope: {x: 1.5608016, y: -0.7869549, z: -0.42773, w: -0.21098143} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.34223646, y: -0.060104817, z: 0.92272544, w: -0.16685124} + inSlope: {x: 1.0488617, y: -1.0017387, z: -0.39498317, w: 0.22399122} + outSlope: {x: 1.0488617, y: -1.0017387, z: -0.39498317, w: 0.22399122} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7666667 + value: {x: 0.36040965, y: -0.0951447, z: 0.91461813, w: -0.15660805} + inSlope: {x: 0.30654627, y: -0.6753824, z: -0.14790851, w: 0.17444469} + outSlope: {x: 0.30654627, y: -0.6753824, z: -0.14790851, w: 0.17444469} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.34543568, y: -0.1082749, z: 0.92011315, w: -0.14947422} + inSlope: {x: -0.6453626, y: 0.08162361, z: 0.2773815, w: 0.1826857} + outSlope: {x: -0.6453626, y: 0.08162361, z: 0.2773815, w: 0.1826857} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.90000004 + value: {x: 0.30540785, y: -0.083065026, z: 0.93766487, w: -0.14356518} + inSlope: {x: -0.34826347, y: 0.5637591, z: 0.16098264, w: -0.014552774} + outSlope: {x: -0.34826347, y: 0.5637591, z: 0.16098264, w: -0.014552774} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.28230187, y: 0.012746454, z: 0.9500635, w: -0.13237253} + inSlope: {x: -0.15479818, y: 0.18105052, z: 0.06568008, w: 0.15664285} + outSlope: {x: -0.15479818, y: 0.18105052, z: 0.06568008, w: 0.15664285} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4333334 + value: {x: 0.29628992, y: -0.065181196, z: 0.94752246, w: -0.100820914} + inSlope: {x: 0.20311718, y: -0.33149093, z: -0.091199666, w: -0.04565113} + outSlope: {x: 0.20311718, y: -0.33149093, z: -0.091199666, w: -0.04565113} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5000001 + value: {x: 0.3175185, y: -0.088043466, z: 0.9385415, w: -0.102812134} + inSlope: {x: 0.3755594, y: -0.21825759, z: -0.15016153, w: -0.039173033} + outSlope: {x: 0.3755594, y: -0.21825759, z: -0.15016153, w: -0.039173033} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333334 + value: {x: 0.32898062, y: -0.09013148, z: 0.9340894, w: -0.10547515} + inSlope: {x: 0.16325325, y: 0.36828744, z: -0.058576822, w: -0.26878253} + outSlope: {x: 0.16325325, y: 0.36828744, z: -0.058576822, w: -0.26878253} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.32840204, y: -0.063490994, z: 0.93463635, w: -0.12073095} + inSlope: {x: 0.0005891593, y: 0.5216749, z: -0.016332792, w: -0.44103116} + outSlope: {x: 0.0005891593, y: 0.5216749, z: -0.016332792, w: -0.44103116} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6000001 + value: {x: 0.3290199, y: -0.055353157, z: 0.93300056, w: -0.13487725} + inSlope: {x: 0.272442, y: -0.014703535, z: -0.15789725, w: -0.40158466} + outSlope: {x: 0.272442, y: -0.014703535, z: -0.15789725, w: -0.40158466} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.36743212, y: -0.07423066, z: 0.91377026, w: -0.15654822} + inSlope: {x: 0.40081182, y: -0.18871605, z: -0.22613636, w: -0.31430513} + outSlope: {x: 0.40081182, y: -0.18871605, z: -0.22613636, w: -0.31430513} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.32823327, y: -0.05654629, z: 0.9195151, w: -0.20870431} + inSlope: {x: -0.4814722, y: 0.17625697, z: 0.14976726, w: -0.14498919} + outSlope: {x: -0.4814722, y: 0.17625697, z: 0.14976726, w: -0.14498919} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.1592768, y: -0.0007701331, z: 0.97193044, w: -0.17315173} + inSlope: {x: -0.58220065, y: 0.360336, z: 0.11873972, w: 0.12971085} + outSlope: {x: -0.58220065, y: 0.360336, z: 0.11873972, w: 0.12971085} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.4 + value: {x: 0.0675732, y: 0.06966336, z: 0.98332566, w: -0.15379062} + inSlope: {x: -0.05556, y: 0.080203936, z: -0.0038713252, w: -0.01400025} + outSlope: {x: -0.05556, y: 0.080203936, z: -0.0038713252, w: -0.01400025} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.7 + value: {x: 0.09832026, y: 0.05110031, z: 0.97939426, w: -0.1688455} + inSlope: {x: 0.09154101, y: -0.04822251, z: -0.011095376, w: -0.025867606} + outSlope: {x: 0.09154101, y: -0.04822251, z: -0.011095376, w: -0.025867606} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.2333336 + value: {x: 0.1257229, y: 0.050627336, z: 0.9741306, w: -0.18083206} + inSlope: {x: 0.022983648, y: 0.017955897, z: -0.0073608826, w: -0.0186521} + outSlope: {x: 0.022983648, y: 0.017955897, z: -0.0073608826, w: -0.0186521} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.12763901, y: 0.052954763, z: 0.973447, w: -0.1824966} + inSlope: {x: 0.012995762, y: 0.019840207, z: -0.0050175237, w: -0.011984568} + outSlope: {x: 0.012995762, y: 0.019840207, z: -0.0050175237, w: -0.011984568} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:RightUpLeg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.3641008, y: 0.011887915, z: 0.029797208, w: 0.9308069} + inSlope: {x: 0.069190264, y: -0.017000064, z: 0.005740206, w: 0.02699375} + outSlope: {x: 0.069190264, y: -0.017000064, z: 0.005740206, w: 0.02699375} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.13333334 + value: {x: -0.36257377, y: 0.010673149, z: 0.038940016, w: 0.93108004} + inSlope: {x: -0.3327531, y: -0.01686129, z: 0.19966164, w: -0.13879628} + outSlope: {x: -0.3327531, y: -0.01686129, z: 0.19966164, w: -0.13879628} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.3 + value: {x: -0.49329314, y: 0.00969857, z: 0.0360616, w: 0.86906123} + inSlope: {x: -0.79033935, y: 0.0024411038, z: -0.103549704, w: -0.4419494} + outSlope: {x: -0.79033935, y: 0.0024411038, z: -0.103549704, w: -0.4419494} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: -0.5381203, y: 0.010865596, z: 0.029299345, w: 0.8422886} + inSlope: {x: 0.3385898, y: -0.036196068, z: 0.057249058, w: 0.21221116} + outSlope: {x: 0.3385898, y: -0.036196068, z: 0.057249058, w: 0.21221116} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.43871975, y: 0.0118106725, z: 0.040999305, w: 0.8976105} + inSlope: {x: 1.088132, y: 0.046787072, z: 0.15285534, w: 0.52221715} + outSlope: {x: 1.088132, y: 0.046787072, z: 0.15285534, w: 0.52221715} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6333334 + value: {x: -0.40083596, y: 0.013496851, z: 0.04707072, w: 0.9148403} + inSlope: {x: 1.1860006, y: 0.07863389, z: -0.020444877, w: 0.51716125} + outSlope: {x: 1.1860006, y: 0.07863389, z: -0.020444877, w: 0.51716125} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.35965306, y: 0.01705293, z: 0.039636325, w: 0.9320879} + inSlope: {x: 1.5476044, y: 0.20697539, z: -0.18403569, w: 0.58208764} + outSlope: {x: 1.5476044, y: 0.20697539, z: -0.18403569, w: 0.58208764} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.2264022, y: 0.038762886, z: 0.029994704, w: 0.9728} + inSlope: {x: 2.1657307, y: 0.13401675, z: -0.01383087, w: 0.49936393} + outSlope: {x: 2.1657307, y: 0.13401675, z: -0.01383087, w: 0.49936393} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7666667 + value: {x: -0.15328027, y: 0.03622965, z: 0.033879627, w: 0.98693705} + inSlope: {x: 1.1680812, y: -0.08532429, z: 0.070421286, w: 0.2241851} + outSlope: {x: 1.1680812, y: -0.08532429, z: 0.070421286, w: 0.2241851} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000001 + value: {x: -0.14853005, y: 0.033074595, z: 0.03468946, w: 0.9877457} + inSlope: {x: -0.04712882, y: -0.13479842, z: 0.019379739, w: -0.0037381304} + outSlope: {x: -0.04712882, y: -0.13479842, z: 0.019379739, w: -0.0037381304} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.90000004 + value: {x: -0.21913557, y: 0.018428596, z: 0.03412834, w: 0.97492325} + inSlope: {x: -1.2014668, y: -0.06900574, z: 0.012585954, w: -0.27094957} + outSlope: {x: -1.2014668, y: -0.06900574, z: 0.012585954, w: -0.27094957} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0333334 + value: {x: -0.32584623, y: 0.0076385858, z: 0.045075417, w: 0.94431674} + inSlope: {x: -0.2380828, y: -0.08121744, z: 0.047040798, w: -0.082859576} + outSlope: {x: -0.2380828, y: -0.08121744, z: 0.047040798, w: -0.082859576} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.3022171, y: 0.0060334825, z: 0.041763768, w: 0.95230466} + inSlope: {x: 0.5227827, y: 0.022672009, z: -0.082555115, w: 0.16893642} + outSlope: {x: 0.5227827, y: 0.022672009, z: -0.082555115, w: 0.16893642} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.3666668 + value: {x: -0.24490239, y: 0.012009687, z: 0.037518006, w: 0.96874714} + inSlope: {x: 0.08169018, y: 0.08822972, z: -0.010991024, w: 0.019942205} + outSlope: {x: 0.08169018, y: 0.08822972, z: -0.010991024, w: 0.019942205} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5000001 + value: {x: -0.23321764, y: 0.025709556, z: 0.03440538, w: 0.9714756} + inSlope: {x: -0.015370183, y: 0.06565369, z: -0.016187942, w: -0.004889722} + outSlope: {x: -0.015370183, y: 0.06565369, z: -0.016187942, w: -0.004889722} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333334 + value: {x: -0.2381974, y: 0.027365604, z: 0.034139026, w: 0.97023076} + inSlope: {x: -1.4285376, y: -0.066990584, z: 0.111001536, w: -0.4218037} + outSlope: {x: -1.4285376, y: -0.066990584, z: 0.111001536, w: -0.4218037} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.3284534, y: 0.021243522, z: 0.041805476, w: 0.9433554} + inSlope: {x: -2.2913294, y: -0.15984422, z: 0.14749883, w: -0.7653419} + outSlope: {x: -2.2913294, y: -0.15984422, z: 0.14749883, w: -0.7653419} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6000001 + value: {x: -0.39095277, y: 0.016709317, z: 0.04397228, w: 0.91920793} + inSlope: {x: -1.1199939, y: -0.107168384, z: -0.043119743, w: -0.4371786} + outSlope: {x: -1.1199939, y: -0.107168384, z: -0.043119743, w: -0.4371786} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.40535563, y: 0.013754544, z: 0.035207998, w: 0.9133773} + inSlope: {x: -0.21945989, y: -0.0067251846, z: -0.086022936, w: -0.095363356} + outSlope: {x: -0.21945989, y: -0.0067251846, z: -0.086022936, w: -0.095363356} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7666668 + value: {x: -0.45608437, y: 0.017416786, z: 0.028108397, w: 0.889322} + inSlope: {x: -0.73927385, y: 0.042557407, z: -0.06558438, w: -0.37767684} + outSlope: {x: -0.73927385, y: 0.042557407, z: -0.06558438, w: -0.37767684} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9333334 + value: {x: -0.48706368, y: 0.016051576, z: 0.028041132, w: 0.8727686} + inSlope: {x: 0.39999962, y: -0.037646618, z: 0.075130075, w: 0.22009379} + outSlope: {x: 0.39999962, y: -0.037646618, z: 0.075130075, w: 0.22009379} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.1000001 + value: {x: -0.38905776, y: 0.010778782, z: 0.04556108, w: 0.92002285} + inSlope: {x: 0.3967961, y: -0.01052754, z: 0.078279674, w: 0.16533509} + outSlope: {x: 0.3967961, y: -0.01052754, z: 0.078279674, w: 0.16533509} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.38788137, y: 0.008600326, z: 0.04861303, w: 0.92038625} + inSlope: {x: -0.18906686, y: -0.009606844, z: 0.02769741, w: -0.08090891} + outSlope: {x: -0.18906686, y: -0.009606844, z: 0.02769741, w: -0.08090891} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.0666668 + value: {x: -0.3692555, y: 0.009918668, z: 0.035759576, w: 0.92858666} + inSlope: {x: 0.0534909, y: 0.0037823655, z: -0.02961173, w: 0.022376798} + outSlope: {x: 0.0534909, y: 0.0037823655, z: -0.02961173, w: 0.022376798} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.36410147, y: 0.011887647, z: 0.02979722, w: 0.9308066} + inSlope: {x: -0.0012633216, y: 0.00764584, z: -0.010353728, w: -0.00025928044} + outSlope: {x: -0.0012633216, y: 0.00764584, z: -0.010353728, w: -0.00025928044} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.69807935, y: -0.12937085, z: -0.042812422, w: 0.7029335} + inSlope: {x: -0.03537476, y: 0.03483519, z: -0.008937008, w: 0.04089832} + outSlope: {x: -0.03537476, y: 0.03483519, z: -0.008937008, w: 0.04089832} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.6938287, y: -0.1307592, z: -0.04063213, w: 0.70700276} + inSlope: {x: 0.14664169, y: -0.06657823, z: 0.0071815, w: -0.15691812} + outSlope: {x: 0.14664169, y: -0.06657823, z: 0.0071815, w: -0.15691812} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.40000004 + value: {x: 0.7480811, y: -0.13039647, z: -0.030824576, w: 0.6499394} + inSlope: {x: 0.085869975, y: 0.051470682, z: 0.002390682, w: -0.0880524} + outSlope: {x: 0.085869975, y: 0.051470682, z: 0.002390682, w: -0.0880524} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: 0.75086945, y: -0.12663212, z: -0.03166505, w: 0.64742315} + inSlope: {x: -0.014510779, y: 0.090631455, z: 0.05627161, w: 0.0367338} + outSlope: {x: -0.014510779, y: 0.090631455, z: 0.05627161, w: 0.0367338} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: 0.7348996, y: -0.123048164, z: -0.032990437, w: 0.6661031} + inSlope: {x: -0.5214406, y: -0.06404842, z: -0.20181608, w: 0.54768246} + outSlope: {x: -0.5214406, y: -0.06404842, z: -0.20181608, w: 0.54768246} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.6822598, y: -0.1351259, z: -0.052334666, w: 0.71660566} + inSlope: {x: -1.1637146, y: -0.3635416, z: -0.45346308, w: 0.9856107} + outSlope: {x: -1.1637146, y: -0.3635416, z: -0.45346308, w: 0.9856107} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6333334 + value: {x: 0.63636184, y: -0.15079452, z: -0.070939206, w: 0.7531748} + inSlope: {x: -1.4428918, y: -0.34422636, z: -0.35724849, w: 1.1164641} + outSlope: {x: -1.4428918, y: -0.34422636, z: -0.35724849, w: 1.1164641} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.70000005 + value: {x: 0.52689236, y: -0.15894517, z: -0.08300095, w: 0.83080184} + inSlope: {x: -1.8389835, y: 0.021265045, z: -0.12325984, w: 1.1554348} + outSlope: {x: -1.8389835, y: 0.021265045, z: -0.12325984, w: 1.1554348} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.46346813, y: -0.15665667, z: -0.08436857, w: 0.8680656} + inSlope: {x: -1.9992511, y: -0.014417917, z: -0.36113983, w: 1.0215999} + outSlope: {x: -1.9992511, y: -0.014417917, z: -0.36113983, w: 1.0215999} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7666667 + value: {x: 0.39360896, y: -0.15990637, z: -0.10707696, w: 0.8989085} + inSlope: {x: -1.1325457, y: 0.2882583, z: -0.22022593, w: 0.5685742} + outSlope: {x: -1.1325457, y: 0.2882583, z: -0.22022593, w: 0.5685742} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000001 + value: {x: 0.38796502, y: -0.13743943, z: -0.09905031, w: 0.9059706} + inSlope: {x: -0.10845776, y: 0.8654634, z: 0.447181, w: 0.21733673} + outSlope: {x: -0.10845776, y: 0.8654634, z: 0.447181, w: 0.21733673} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.86666673 + value: {x: 0.38895184, y: -0.06754255, z: -0.05089022, w: 0.91736835} + inSlope: {x: 0.27684617, y: 0.8176144, z: 0.6411243, w: -0.013585504} + outSlope: {x: 0.27684617, y: 0.8176144, z: 0.6411243, w: -0.013585504} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9666667 + value: {x: 0.4847809, y: -0.043672334, z: -0.009456804, w: 0.87349343} + inSlope: {x: 1.4549978, y: -0.0874919, z: 0.39529163, w: -0.81198055} + outSlope: {x: 1.4549978, y: -0.0874919, z: 0.39529163, w: -0.81198055} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.6364447, y: -0.084883876, z: 0.010997339, w: 0.7665585} + inSlope: {x: 0.5595775, y: -0.4299438, z: -0.20750356, w: -0.50104904} + outSlope: {x: 0.5595775, y: -0.4299438, z: -0.20750356, w: -0.50104904} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.2333333 + value: {x: 0.64524055, y: -0.12316025, z: -0.012609731, w: 0.75388145} + inSlope: {x: 0.027526593, y: -0.19055973, z: -0.13001636, w: -0.05680556} + outSlope: {x: 0.027526593, y: -0.19055973, z: -0.13001636, w: -0.05680556} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4000001 + value: {x: 0.6045855, y: -0.16342981, z: -0.040109847, w: 0.77856165} + inSlope: {x: -0.86165154, y: -0.26844156, z: -0.2505452, w: 0.5931139} + outSlope: {x: -0.86165154, y: -0.26844156, z: -0.2505452, w: 0.5931139} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4666667 + value: {x: 0.53581333, y: -0.17585503, z: -0.056183662, w: 0.82390684} + inSlope: {x: -1.0626993, y: -0.048284106, z: -0.20302668, w: 0.66806173} + outSlope: {x: -1.0626993, y: -0.048284106, z: -0.20302668, w: 0.66806173} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5000001 + value: {x: 0.5005442, y: -0.17495698, z: -0.06178825, w: 0.84559315} + inSlope: {x: -0.6655478, y: 0.09656225, z: 0.014714137, w: 0.42869848} + outSlope: {x: -0.6655478, y: 0.09656225, z: 0.014714137, w: 0.42869848} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333334 + value: {x: 0.4914434, y: -0.16941755, z: -0.05520274, w: 0.8524868} + inSlope: {x: 0.83686167, y: -0.09665082, z: -0.12562612, w: -0.5657687} + outSlope: {x: 0.83686167, y: -0.09665082, z: -0.12562612, w: -0.5657687} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.5563349, y: -0.18140036, z: -0.07016332, w: 0.8078753} + inSlope: {x: 1.7261167, y: -0.34307238, z: -0.4405372, w: -1.2850436} + outSlope: {x: 1.7261167, y: -0.34307238, z: -0.4405372, w: -1.2850436} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6000001 + value: {x: 0.6065179, y: -0.19228905, z: -0.08457191, w: 0.76681715} + inSlope: {x: 1.6118232, y: 0.016641483, z: -0.0948896, w: -1.2907925} + outSlope: {x: 1.6118232, y: 0.016641483, z: -0.0948896, w: -1.2907925} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.71430165, y: -0.1641788, z: -0.060475923, w: 0.67761433} + inSlope: {x: 1.2447321, y: 0.28896558, z: 0.34184685, w: -1.1815267} + outSlope: {x: 1.2447321, y: 0.28896558, z: 0.34184685, w: -1.1815267} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.8000001 + value: {x: 0.78750455, y: -0.17634499, z: -0.055626888, w: 0.58791554} + inSlope: {x: 0.12478095, y: -0.16830766, z: 0.012595274, w: -0.21411557} + outSlope: {x: 0.12478095, y: -0.16830766, z: 0.012595274, w: -0.21411557} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.0333335 + value: {x: 0.7430198, y: -0.17110658, z: -0.04281693, w: 0.6456089} + inSlope: {x: -0.38649905, y: 0.157186, z: 0.03813982, w: 0.48929173} + outSlope: {x: -0.38649905, y: 0.157186, z: 0.03813982, w: 0.48929173} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.4 + value: {x: 0.6994431, y: -0.13684611, z: -0.03319425, w: 0.7006787} + inSlope: {x: 0.041874684, y: 0.020024497, z: 0.00678471, w: -0.037588514} + outSlope: {x: 0.041874684, y: 0.020024497, z: 0.00678471, w: -0.037588514} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.9333334 + value: {x: 0.70011747, y: -0.13309395, z: -0.035214823, w: 0.70062935} + inSlope: {x: -0.023860876, y: 0.03057509, z: -0.013741594, w: 0.028966002} + outSlope: {x: -0.023860876, y: 0.03057509, z: -0.013741594, w: 0.028966002} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.6980795, y: -0.12937033, z: -0.042811032, w: 0.7029335} + inSlope: {x: 0.006426579, y: 0.0050000893, z: -0.01675477, w: -0.0064730705} + outSlope: {x: 0.006426579, y: 0.0050000893, z: -0.01675477, w: -0.0064730705} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.16970412, y: -0.028960787, z: 0.122049764, w: 0.9774792} + inSlope: {x: 0, y: 0.0000034086404, z: -0.0000008940696, w: 0.0000017881392} + outSlope: {x: 0, y: 0.0000034086404, z: -0.0000008940696, w: 0.0000017881392} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.4666667 + value: {x: 0.1697045, y: -0.028961126, z: 0.122049585, w: 0.9774792} + inSlope: {x: 0.0099284295, y: -0.011826569, z: -0.0026216384, w: -0.0017550604} + outSlope: {x: 0.0099284295, y: -0.011826569, z: -0.0026216384, w: -0.0017550604} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.53333336 + value: {x: 0.17681125, y: -0.03744815, z: 0.120221145, w: 0.9761569} + inSlope: {x: 0.23477155, y: -0.26232648, z: -0.05315955, w: -0.046677552} + outSlope: {x: 0.23477155, y: -0.26232648, z: -0.05315955, w: -0.046677552} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.5666667 + value: {x: 0.1860179, y: -0.047238156, z: 0.11833088, w: 0.9742503} + inSlope: {x: 0.7046217, y: -0.1485432, z: 0.008531829, w: -0.15288511} + outSlope: {x: 0.7046217, y: -0.1485432, z: 0.008531829, w: -0.15288511} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.6333334 + value: {x: 0.2777497, y: -0.046368852, z: 0.123392195, w: 0.9515668} + inSlope: {x: 1.4770563, y: -0.06928311, z: 0.044222333, w: -0.43310884} + outSlope: {x: 1.4770563, y: -0.06928311, z: 0.044222333, w: -0.43310884} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.70000005 + value: {x: 0.35800442, y: -0.056630254, z: 0.12372395, w: 0.92375225} + inSlope: {x: 1.0878012, y: -0.12982278, z: -0.0038192454, w: -0.43005025} + outSlope: {x: 1.0878012, y: -0.12982278, z: -0.0038192454, w: -0.43005025} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.3947765, y: -0.060624756, z: 0.12348347, w: 0.9084206} + inSlope: {x: 0.76673174, y: 0.12586871, z: -0.0011998471, w: -0.31463042} + outSlope: {x: 0.76673174, y: 0.12586871, z: -0.0011998471, w: -0.31463042} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.7666667 + value: {x: 0.40911984, y: -0.048238993, z: 0.12364396, w: 0.9027769} + inSlope: {x: -1.293011, y: 0.06649643, z: -0.008604407, w: 0.49694318} + outSlope: {x: -1.293011, y: 0.06649643, z: -0.008604407, w: 0.49694318} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.8000001 + value: {x: 0.3085757, y: -0.056191657, z: 0.122909844, w: 0.9415502} + inSlope: {x: -2.9843147, y: -0.38534856, z: -0.14564005, w: 0.98113406} + outSlope: {x: -2.9843147, y: -0.38534856, z: -0.14564005, w: 0.98113406} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.21016555, y: -0.073928885, z: 0.11393463, w: 0.96818584} + inSlope: {x: -1.9061464, y: 0.19782573, z: -0.05730246, w: 0.50483495} + outSlope: {x: -1.9061464, y: 0.19782573, z: -0.05730246, w: 0.50483495} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.86666673 + value: {x: 0.18149933, y: -0.04300323, z: 0.11908969, w: 0.97520584} + inSlope: {x: -0.6069421, y: 0.67454886, z: 0.12173304, w: 0.13940418} + outSlope: {x: -0.6069421, y: 0.67454886, z: 0.12173304, w: 0.13940418} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.9666667 + value: {x: 0.16970257, y: -0.028958965, z: 0.122050114, w: 0.9774795} + inSlope: {x: 0.00000022351765, y: -0.0000014528646, z: 0.0000016763822, w: 0} + outSlope: {x: 0.00000022351765, y: -0.0000014528646, z: 0.0000016763822, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4333334 + value: {x: 0.16970259, y: -0.028958917, z: 0.122050144, w: 0.9774795} + inSlope: {x: 0, y: 0.0000014249249, z: -0.0000020116588, w: 0} + outSlope: {x: 0, y: 0.0000014249249, z: -0.0000020116588, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.4666667 + value: {x: 0.1697026, y: -0.028958809, z: 0.12205, w: 0.9774795} + inSlope: {x: 0.87339586, y: 0.06158185, z: 0.05653601, w: -0.18427622} + outSlope: {x: 0.87339586, y: 0.06158185, z: 0.05653601, w: -0.18427622} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5000001 + value: {x: 0.22792913, y: -0.02485345, z: 0.12581922, w: 0.9651944} + inSlope: {x: 3.4063773, y: -0.5022031, z: 0.020295087, w: -1.0507593} + outSlope: {x: 3.4063773, y: -0.5022031, z: 0.020295087, w: -1.0507593} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.5333334 + value: {x: 0.3967944, y: -0.06243897, z: 0.12340302, w: 0.9074289} + inSlope: {x: 2.1995335, y: -0.52592653, z: -0.033774182, w: -0.7232959} + outSlope: {x: 2.1995335, y: -0.52592653, z: -0.033774182, w: -0.7232959} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.37456456, y: -0.059915185, z: 0.12356761, w: 0.9169747} + inSlope: {x: -0.6042535, y: 0.074097194, z: 0.0036480268, w: 0.25286332} + outSlope: {x: -0.6042535, y: 0.074097194, z: 0.0036480268, w: 0.25286332} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6000001 + value: {x: 0.35651082, y: -0.05749915, z: 0.12364622, w: 0.9242865} + inSlope: {x: -1.1997772, y: 0.12018463, z: -0.00731149, w: 0.43905976} + outSlope: {x: -1.1997772, y: 0.12018463, z: -0.00731149, w: 0.43905976} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.6333334 + value: {x: 0.29457942, y: -0.051902875, z: 0.12308018, w: 0.9462454} + inSlope: {x: -1.9740082, y: 0.124227405, z: -0.047875464, w: 0.62048227} + outSlope: {x: -1.9740082, y: 0.124227405, z: -0.047875464, w: 0.62048227} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.2249104, y: -0.049217332, z: 0.12045453, w: 0.9656519} + inSlope: {x: -1.6674979, y: 0.09771967, z: -0.06702556, w: 0.4282875} + outSlope: {x: -1.6674979, y: 0.09771967, z: -0.06702556, w: 0.4282875} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7 + value: {x: 0.183413, y: -0.045388237, z: 0.11861181, w: 0.97479784} + inSlope: {x: -0.79021823, y: 0.25869328, z: 0.014003903, w: 0.17061178} + outSlope: {x: -0.79021823, y: 0.25869328, z: 0.014003903, w: 0.17061178} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.7666668 + value: {x: 0.16970451, y: -0.028961057, z: 0.12204965, w: 0.97747916} + inSlope: {x: -0.037872158, y: 0.045149777, z: 0.009921836, w: 0.006797618} + outSlope: {x: -0.037872158, y: 0.045149777, z: 0.009921836, w: 0.006797618} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.2333333 + value: {x: 0.16970429, y: -0.02896093, z: 0.122049525, w: 0.9774792} + inSlope: {x: -0.0000037998093, y: 0.0000052806145, z: -7.1622708e-12, w: 0.0000008940705} + outSlope: {x: -0.0000037998093, y: 0.0000052806145, z: -7.1622708e-12, w: 0.0000008940705} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 3.3333335 + value: {x: 0.16970414, y: -0.028960843, z: 0.12204972, w: 0.9774792} + inSlope: {x: -0.0000031292468, y: 0.00000050291465, z: -0.000001788141, w: 0} + outSlope: {x: -0.0000031292468, y: 0.00000050291465, z: -0.000001788141, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot/mixamorig:RightToeBase + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: -0.5555307, y: -0.44830337, z: 0.4532977, w: -0.53378916} + inSlope: {x: 0, y: 0, z: 0, w: 0} + outSlope: {x: -0.027843881, y: -0.07548502, z: 0.2277323, w: 0.28559136} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.23333335 + value: {x: -0.5640678, y: -0.44627488, z: 0.5251014, w: -0.45490086} + inSlope: {x: 0.016859598, y: -0.07574047, z: 0.10498932, w: 0.17421585} + outSlope: {x: 0.035986308, y: -0.09477139, z: 0.12204052, w: 0.18909575} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.5577931, y: -0.44507185, z: 0.55051726, w: -0.43325353} + inSlope: {x: 0.050067905, y: -0.7996336, z: -0.5713106, w: 0.031068923} + outSlope: {x: 0.03665685, y: -0.78454596, z: -0.5888938, w: 0.010579822} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.70000005 + value: {x: -0.504101, y: -0.5002217, z: 0.5253744, w: -0.46866} + inSlope: {x: -0.027120108, y: 0.036358826, z: -0.005960463, w: -0.016391274} + outSlope: {x: -0.028610226, y: 0.037193295, z: -0.0071525564, w: -0.017523764} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 0.86666673 + value: {x: -0.4593859, y: -0.5314341, z: 0.42185605, w: -0.5732188} + inSlope: {x: 0.16540287, y: 0.053644173, z: -0.68128103, w: -0.6834268} + outSlope: {x: 0.1630783, y: 0.055432312, z: -0.6794929, w: -0.6819963} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.0333334 + value: {x: -0.5101955, y: -0.4755066, z: 0.3846991, w: -0.6046492} + inSlope: {x: 0.43487543, y: -0.2455115, z: -0.7692574, w: -0.66375726} + outSlope: {x: 0.43619427, y: -0.24676324, z: -0.77130276, w: -0.6640703} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.5487239, y: -0.39770737, z: 0.32598433, w: -0.65913975} + inSlope: {x: -0.28297308, y: 0.7382222, z: 1.1735783, w: 0.36958608} + outSlope: {x: -0.28533593, y: 0.73569155, z: 1.1716144, w: 0.3737211} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.8000001 + value: {x: -0.6141955, y: -0.3603183, z: 0.4523101, w: -0.53698254} + inSlope: {x: 0.021202222, y: -0.11673994, z: 0.31177485, w: 0.3157343} + outSlope: {x: 0.023961056, y: -0.11605019, z: 0.3125666, w: 0.31507} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 1.9666668 + value: {x: -0.5737802, y: -0.4234351, z: 0.49009183, w: -0.5012874} + inSlope: {x: 0.49781775, y: -0.5083678, z: 0.15842907, w: 0.0135898525} + outSlope: {x: 0.50291425, y: -0.50559646, z: 0.16160311, w: 0.009834767} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.1000001 + value: {x: -0.51557964, y: -0.48862827, z: 0.48023745, w: -0.5145795} + inSlope: {x: 0.071972616, y: -0.57980424, z: -0.43429437, w: 0.072866686} + outSlope: {x: 0.077400886, y: -0.5851047, z: -0.4338792, w: 0.07254736} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.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.50758874, y: -0.50249106, z: 0.43857646, w: -0.5454421} + inSlope: {x: -0.24625231, y: 0.29223305, z: 0.06871564, w: 0.01481601} + outSlope: {x: -0.24408104, y: 0.29258433, z: 0.07018448, w: 0.014305116} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.6000001 + value: {x: -0.56573886, y: -0.43047804, z: 0.45929176, w: -0.53261554} + inSlope: {x: -0.07063151, y: 0.091195114, z: -0.007040799, w: -0.004470349} + outSlope: {x: -0.06675721, y: 0.08781753, z: -0.002185504, w: -0.0017881396} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 2.9 + value: {x: -0.5745709, y: -0.42105386, z: 0.46051311, w: -0.5296316} + inSlope: {x: -0.02821287, y: 0.0273188, z: 0.023643179, w: 0.029007599} + outSlope: {x: -0.03868882, y: 0.04193998, z: 0.009997321, w: 0.017231155} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 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.266667 + value: {x: -0.5596028, y: -0.4429327, z: 0.45440614, w: -0.5330764} + inSlope: {x: 0.03364952, y: -0.13467936, z: -0.08574938, w: 0.0034137194} + outSlope: {x: 0.045597598, y: -0.14930978, z: -0.07241971, w: 0.016093269} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + - serializedVersion: 3 + time: 3.3333335 + value: {x: -0.555531, y: -0.448303, z: 0.45329744, w: -0.5337895} + inSlope: {x: 0.040233172, y: -0.05677348, z: -0.010728846, w: -0.005364423} + outSlope: {x: 0, y: 0, z: 0, w: 0} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder + m_CompressedRotationCurves: [] + m_EulerCurves: [] + m_PositionCurves: + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: {x: 0.00049868977, y: 0.017185917, z: -0.00031098042} + inSlope: {x: 0.00004339169, y: 0.00023391072, z: -0.00027151845} + outSlope: {x: 0.00004339169, y: 0.00023391072, z: -0.00027151845} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.033333335 + value: {x: 0.00050013635, y: 0.017193716, z: -0.00032003078} + inSlope: {x: 0.00006655767, y: 0.0004568321, z: -0.00050067966} + outSlope: {x: 0.000066564644, y: 0.0004568916, z: -0.0005006802} + tangentMode: 0 + weightedMode: 0 + 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.0005394501, y: 0.016988505, z: -0.0005382883} + inSlope: {x: 0.0005108824, y: -0.005773649, z: -0.00176986} + outSlope: {x: 0.00051088363, y: -0.005773917, z: -0.0017698575} + tangentMode: 0 + weightedMode: 0 + 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.0006260722, y: 0.016113738, z: -0.0007220758} + inSlope: {x: 0.00076743454, y: -0.005694041, z: -0.0004820545} + outSlope: {x: 0.0007674344, y: -0.0056942306, z: -0.0004820812} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.46666667 + value: {x: 0.00074206386, y: 0.015907338, z: -0.0006241972} + inSlope: {x: 0.0010696426, y: 0.0031834363, z: 0.002224424} + outSlope: {x: 0.001069642, y: 0.0031834801, z: 0.0022244214} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.56666666 + value: {x: 0.000873127, y: 0.016715938, z: -0.00027644204} + inSlope: {x: 0.0014675674, y: 0.012151127, z: 0.004424661} + outSlope: {x: 0.0014675526, y: 0.01215106, z: 0.004424616} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.6 + value: {x: 0.0009229263, y: 0.017162759, z: -0.00011972599} + inSlope: {x: 0.0017260236, y: 0.014426764, z: 0.005413633} + outSlope: {x: 0.0017260585, y: 0.014427054, z: 0.005413709} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.6333333 + value: {x: 0.0009881966, y: 0.017677745, z: 0.00008447029} + inSlope: {x: 0.0018783485, y: 0.01601969, z: 0.006218835} + outSlope: {x: 0.0018783177, y: 0.016019592, z: 0.0062187696} + tangentMode: 0 + weightedMode: 0 + 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.0010481488, y: 0.018230733, z: 0.00029486226} + inSlope: {x: 0.0016206236, y: 0.016311996, z: 0.005988553} + outSlope: {x: 0.0016206359, y: 0.016312238, z: 0.0059886468} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.7 + value: {x: 0.0010962395, y: 0.018765213, z: 0.0004837116} + inSlope: {x: 0.0013023467, y: 0.016256038, z: 0.0035353252} + outSlope: {x: 0.0013023566, y: 0.0162558, z: 0.0035352837} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.73333335 + value: {x: 0.0011349729, y: 0.01931446, z: 0.0005305495} + inSlope: {x: 0.000953989, y: 0.017283894, z: -0.00074097863} + outSlope: {x: 0.0009539975, y: 0.01728421, z: -0.00074097514} + tangentMode: 0 + weightedMode: 0 + 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.0011598391, y: 0.01991748, z: 0.00043431408} + inSlope: {x: 0.00072189036, y: 0.017688332, z: -0.0024223758} + outSlope: {x: 0.00072188757, y: 0.01768814, z: -0.0024223458} + tangentMode: 0 + weightedMode: 0 + 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.0011945615, y: 0.021032464, z: 0.00032291684} + inSlope: {x: 0.00019535127, y: 0.016009998, z: -0.0013929522} + outSlope: {x: 0.00019533798, y: 0.01601, z: -0.0013929332} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.8666667 + value: {x: 0.0011961219, y: 0.021561017, z: 0.00027619532} + inSlope: {x: 0.00027711334, y: 0.015221516, z: -0.0017044684} + outSlope: {x: 0.00027714018, y: 0.015221611, z: -0.0017044856} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.9 + value: {x: 0.0012130372, y: 0.022047238, z: 0.00020928474} + inSlope: {x: 0.00072659156, y: 0.013748524, z: -0.0021788327} + outSlope: {x: 0.00072658487, y: 0.01374851, z: -0.0021787982} + tangentMode: 0 + weightedMode: 0 + 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.001244561, y: 0.022477593, z: 0.00013094039} + inSlope: {x: 0.00077877083, y: 0.012230806, z: -0.0022325395} + outSlope: {x: 0.00077879365, y: 0.012231012, z: -0.0022325604} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 0.96666664 + value: {x: 0.0012649561, y: 0.022862647, z: 0.00006044755} + inSlope: {x: 0.000650899, y: 0.010863851, z: -0.0020418954} + outSlope: {x: 0.0006508691, y: 0.010863181, z: -0.0020418623} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.0333333 + value: {x: 0.0013121963, y: 0.02349062, z: -0.00006496572} + inSlope: {x: 0.0006105583, y: 0.0076560015, z: -0.0016887138} + outSlope: {x: 0.0006105515, y: 0.0076560113, z: -0.0016886725} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.0666667 + value: {x: 0.0013286594, y: 0.023712235, z: -0.000117765674} + inSlope: {x: 0.000547094, y: 0.005956092, z: -0.0012448113} + outSlope: {x: 0.0005470827, y: 0.005956641, z: -0.0012448571} + tangentMode: 0 + weightedMode: 0 + 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.0013486694, y: 0.023887724, z: -0.00014795552} + inSlope: {x: 0.000657245, y: 0.003857874, z: -0.00048523385} + outSlope: {x: 0.00065731583, y: 0.0038579702, z: -0.00048523815} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.1333333 + value: {x: 0.0013724789, y: 0.02396944, z: -0.00015011472} + inSlope: {x: 0.0007175166, y: 0.001092312, z: 0.0002966358} + outSlope: {x: 0.0007175098, y: 0.0010928301, z: 0.0002966358} + tangentMode: 0 + weightedMode: 0 + 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.0013965019, y: 0.023960585, z: -0.00012817976} + inSlope: {x: 0.00065769226, y: -0.0005236494, z: 0.00079058576} + outSlope: {x: 0.00065767433, y: -0.0005239438, z: 0.0007905607} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.2 + value: {x: 0.0014163246, y: 0.023934511, z: -0.00009740946} + inSlope: {x: 0.00049284665, y: -0.0022490679, z: 0.0010118516} + outSlope: {x: 0.0004928759, y: -0.002248643, z: 0.0010118819} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.2333333 + value: {x: 0.0014293598, y: 0.023810655, z: -0.000060721526} + inSlope: {x: 0.0003493563, y: -0.0054557165, z: 0.001253531} + outSlope: {x: 0.00034935866, y: -0.005456135, z: 0.0012535362} + tangentMode: 0 + weightedMode: 0 + 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.0014396145, y: 0.023570778, z: -0.000013840645} + inSlope: {x: 0.00022974478, y: -0.008263687, z: 0.0014740251} + outSlope: {x: 0.00022973416, y: -0.008263952, z: 0.0014740187} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.3 + value: {x: 0.0014446761, y: 0.02325975, z: 0.000037546517} + inSlope: {x: 0.00019233221, y: -0.010578318, z: 0.0016392189} + outSlope: {x: 0.00019231172, y: -0.010577891, z: 0.001639169} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.3666667 + value: {x: 0.0014594008, y: 0.022376375, z: 0.00015508893} + inSlope: {x: 0.00017768606, y: -0.015747827, z: 0.0016949584} + outSlope: {x: 0.0001776452, y: -0.015747257, z: 0.0016949637} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.4 + value: {x: 0.0014642815, y: 0.021815754, z: 0.00020843714} + inSlope: {x: 0.00012491632, y: -0.017738733, z: 0.001562358} + outSlope: {x: 0.00012492314, y: -0.017739082, z: 0.0015623454} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.4666667 + value: {x: 0.0014820802, y: 0.020529954, z: 0.0002859406} + inSlope: {x: 0.0013066377, y: -0.02043683, z: 0.00006406356} + outSlope: {x: 0.0013066622, y: -0.020436382, z: 0.00006407419} + tangentMode: 0 + weightedMode: 0 + 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.0015548416, y: 0.019831331, z: 0.0002635172} + inSlope: {x: 0.0023810582, y: -0.02101046, z: 0.000015174388} + outSlope: {x: 0.0023810503, y: -0.021010935, z: 0.000015172597} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.5333333 + value: {x: 0.0016408172, y: 0.01912923, z: 0.00028695216} + inSlope: {x: 0.0017009181, y: -0.020475686, z: 0.000022971766} + outSlope: {x: 0.0017008968, y: -0.02047526, z: 0.000022974884} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.5666667 + value: {x: 0.0016682367, y: 0.018466303, z: 0.00026504818} + inSlope: {x: 0.000592232, y: -0.019287769, z: -0.0025267212} + outSlope: {x: 0.00059223414, y: -0.019288246, z: -0.0025267734} + tangentMode: 0 + weightedMode: 0 + 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.0016803005, y: 0.01784336, z: 0.00011850245} + inSlope: {x: -0.00038113186, y: -0.018377146, z: -0.005710779} + outSlope: {x: -0.000381157, y: -0.018377056, z: -0.0057108295} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.6333333 + value: {x: 0.0016428271, y: 0.017241172, z: -0.00011567183} + inSlope: {x: -0.0019501656, y: -0.017099133, z: -0.0072386106} + outSlope: {x: -0.0019501502, y: -0.017099483, z: -0.0072385934} + tangentMode: 0 + weightedMode: 0 + 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.0015502903, y: 0.016703404, z: -0.00036407053} + inSlope: {x: -0.0024939792, y: -0.014712229, z: -0.006457631} + outSlope: {x: -0.0024938956, y: -0.014711638, z: -0.0064574606} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.7 + value: {x: 0.0014765642, y: 0.016260374, z: -0.00054617715} + inSlope: {x: -0.0021156413, y: -0.01199163, z: -0.004916881} + outSlope: {x: -0.0021157213, y: -0.011992439, z: -0.004917045} + tangentMode: 0 + weightedMode: 0 + 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.0013430209, y: 0.015648594, z: -0.00079192396} + inSlope: {x: -0.0020327491, y: -0.0059894095, z: -0.0025352752} + outSlope: {x: -0.0020327321, y: -0.005989403, z: -0.002535274} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 1.8666667 + value: {x: 0.00112299, y: 0.015469703, z: -0.0009503611} + inSlope: {x: -0.0023248743, y: 0.0014489017, z: -0.000736018} + outSlope: {x: -0.0023248678, y: 0.001449024, z: -0.0007360094} + tangentMode: 0 + weightedMode: 0 + 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.000821023, y: 0.016175104, z: -0.000896744} + inSlope: {x: -0.001969735, y: 0.0072531006, z: 0.0014373873} + outSlope: {x: -0.0019697284, y: 0.007253108, z: 0.0014373848} + tangentMode: 0 + weightedMode: 0 + 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.00062542385, y: 0.017044438, z: -0.00059582014} + inSlope: {x: -0.00032100445, y: 0.0024644479, z: 0.0015745689} + outSlope: {x: -0.0003209982, y: 0.002464453, z: 0.001574598} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.3 + value: {x: 0.0006521185, y: 0.017142378, z: -0.0004776796} + inSlope: {x: 0.00056778174, y: -0.00038640533, z: 0.0001720501} + outSlope: {x: 0.0005677672, y: -0.00038621965, z: 0.0001720447} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.5333333 + value: {x: 0.000778509, y: 0.01710474, z: -0.00056700513} + inSlope: {x: 0.00026173666, y: 0.00035470072, z: -0.0003655726} + outSlope: {x: 0.0002617222, y: 0.00035489822, z: -0.0003655779} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + - serializedVersion: 3 + time: 2.9 + value: {x: 0.0007135042, y: 0.017206553, z: -0.0005143357} + inSlope: {x: -0.00041939403, y: 0.0002331123, z: 0.00028592502} + outSlope: {x: -0.0004194082, y: 0.00023306967, z: 0.0002859369} + tangentMode: 0 + weightedMode: 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.2 + value: {x: 0.0005645885, y: 0.017222775, z: -0.0003958663} + inSlope: {x: -0.0005396923, y: -0.00023375258, z: 0.0005908982} + outSlope: {x: -0.00053968997, y: -0.00023396034, z: 0.00059090613} + tangentMode: 0 + weightedMode: 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.2666667 + value: {x: 0.00052894006, y: 0.017203689, z: -0.00035390104} + inSlope: {x: -0.0005508351, y: -0.0003212744, z: 0.0007225986} + outSlope: {x: -0.0005508374, y: -0.00032114497, z: 0.0007225948} + tangentMode: 0 + weightedMode: 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.3 + value: {x: 0.0005096991, y: 0.01719244, z: -0.00032712685} + inSlope: {x: -0.00045375086, y: -0.00026647895, z: 0.00064381014} + outSlope: {x: -0.00045374004, y: -0.0002665675, z: 0.00064380764} + tangentMode: 0 + weightedMode: 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.00049869006, y: 0.017185913, z: -0.00031098048} + inSlope: {x: -0.00033026785, y: -0.00019589339, z: 0.00048439702} + outSlope: {x: -0.00033026785, y: -0.00019589339, z: 0.00048439702} + tangentMode: 0 + weightedMode: 0 + inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + path: Armature.001/mixamorig:Hips + m_ScaleCurves: [] + m_FloatCurves: [] + m_PPtrCurves: [] + m_SampleRate: 30 + 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: 1083781737 + attribute: 1 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1083781737 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 408225041 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3001700786 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3132553515 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 168334831 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 215603437 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1852142506 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1775379527 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1207142558 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3198065886 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 10533847 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2486468252 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1714668715 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2119318601 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1454392865 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2471676248 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2364716999 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3092991833 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3106263194 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 688943277 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2140469971 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 971364194 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1021604224 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1601611806 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 4126269581 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3984737358 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3155596823 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3048725362 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1185900278 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1886386198 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 395264987 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 4080340377 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 3974837130 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1014061991 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1587372701 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 357817416 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1651132406 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 407569882 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1915810720 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1925155201 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2334650127 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 565509406 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2853632173 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 733358149 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2280639224 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 1692231856 + attribute: 2 + script: {fileID: 0} + typeID: 4 + customType: 0 + isPPtrCurve: 0 + - serializedVersion: 2 + path: 2828911296 + 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: 3.3333335 + 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 + - serializedVersion: 3 + time: 0.033333335 + value: 0 + inSlope: 0 + 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: Armature.001 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_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.033333335 + value: -0 + inSlope: 0 + 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: Armature.001 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_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.033333335 + value: -0 + inSlope: 0 + 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: Armature.001 + 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.033333335 + value: 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: Armature.001 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.081455395 + inSlope: 0.04139654 + outSlope: 0.04139654 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.08916319 + inSlope: -0.15540934 + outSlope: -0.15540934 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.12221897 + inSlope: 0.06901541 + outSlope: 0.06901541 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.08079047 + inSlope: 0.21083239 + outSlope: 0.21083239 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.0657643 + inSlope: -0.010845953 + outSlope: -0.010845953 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.061399173 + inSlope: -0.0010502534 + outSlope: -0.0010502534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: -0.099645734 + inSlope: -0.10028671 + outSlope: -0.10028671 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9000001 + value: -0.14383794 + inSlope: -0.070155255 + outSlope: -0.070155255 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: -0.116400175 + inSlope: 0.14533341 + outSlope: 0.14533341 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4666667 + value: -0.10685116 + inSlope: -0.0466237 + outSlope: -0.0466237 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: -0.106585234 + inSlope: 0.057189666 + outSlope: 0.057189666 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: -0.08145539 + inSlope: 0.030927017 + outSlope: 0.030927017 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: Armature.001/mixamorig:Hips + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.037796956 + inSlope: 0.0056362147 + outSlope: 0.0056362147 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.09137111 + inSlope: 0.33413163 + outSlope: 0.33413163 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.070600174 + inSlope: -0.72683734 + outSlope: -0.72683734 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.121565245 + inSlope: -0.86764324 + outSlope: -0.86764324 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.19377221 + inSlope: -0.00040657917 + outSlope: -0.00040657917 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.11233371 + inSlope: 0.1132727 + outSlope: 0.1132727 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: -0.21034585 + inSlope: -0.39668992 + outSlope: -0.39668992 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9000001 + value: -0.20207603 + inSlope: 0.5000304 + outSlope: 0.5000304 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: 0.007090719 + inSlope: 0.66558623 + outSlope: 0.66558623 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4666667 + value: 0.0821049 + inSlope: -0.077060424 + outSlope: -0.077060424 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: 0.045272473 + inSlope: -0.02325768 + outSlope: -0.02325768 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 0.037796956 + inSlope: 0.004154299 + outSlope: 0.004154299 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: Armature.001/mixamorig:Hips + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.059955887 + inSlope: 0.023685804 + outSlope: 0.023685804 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.04642444 + inSlope: 0.082309455 + outSlope: 0.082309455 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.03479766 + inSlope: 0.054173425 + outSlope: 0.054173425 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.030324277 + inSlope: -0.045850195 + outSlope: -0.045850195 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.04103169 + inSlope: -0.054463595 + outSlope: -0.054463595 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.04688817 + inSlope: 0.07514149 + outSlope: 0.07514149 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: -0.015683088 + inSlope: -0.055074234 + outSlope: -0.055074234 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9000001 + value: -0.05592151 + inSlope: -0.05126237 + outSlope: -0.05126237 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: -0.054392774 + inSlope: 0.016077511 + outSlope: 0.016077511 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4666667 + value: -0.059280388 + inSlope: -0.04410182 + outSlope: -0.04410182 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: -0.06488548 + inSlope: 0.0148772225 + outSlope: 0.0148772225 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: -0.059955895 + inSlope: 0.0061886446 + outSlope: 0.0061886446 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: Armature.001/mixamorig:Hips + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9941538 + inSlope: 0.0045669074 + outSlope: 0.0045669074 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.99073005 + inSlope: -0.040959124 + outSlope: -0.040959124 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.98937726 + inSlope: 0.06007696 + outSlope: 0.06007696 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.9888252 + inSlope: -0.08871317 + outSlope: -0.08871317 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.9779795 + inSlope: -0.0031059976 + outSlope: -0.0031059976 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.9906628 + inSlope: 0.016523317 + outSlope: 0.016523317 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 0.97240907 + inSlope: -0.09672038 + outSlope: -0.09672038 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9000001 + value: 0.9671343 + inSlope: 0.09043077 + outSlope: 0.09043077 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: 0.9916865 + inSlope: 0.014010085 + outSlope: 0.014010085 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4666667 + value: 0.9891044 + inSlope: -0.0013858133 + outSlope: -0.0013858133 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: 0.9911508 + inSlope: 0.008187003 + outSlope: 0.008187003 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 0.9941538 + inSlope: 0.0027680423 + outSlope: 0.0027680423 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: Armature.001/mixamorig:Hips + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.020465773 + inSlope: 0.028117092 + outSlope: 0.028117092 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.034040388 + inSlope: 0.04853137 + outSlope: 0.04853137 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.015051369 + inSlope: -0.10427936 + outSlope: -0.10427936 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.034400243 + inSlope: 0.11316846 + outSlope: 0.11316846 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: 0.02730836 + inSlope: -0.014814357 + outSlope: -0.014814357 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 0.036202017 + inSlope: 0.06378668 + outSlope: 0.06378668 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666668 + value: 0.041679054 + inSlope: -0.06795892 + outSlope: -0.06795892 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3000002 + value: 0.013682785 + inSlope: -0.0026992268 + outSlope: -0.0026992268 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: 0.0205128 + inSlope: -0.005509067 + outSlope: -0.005509067 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 0.020465767 + inSlope: -0.0038332716 + outSlope: -0.0038332716 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: Armature.001/mixamorig:Hips/mixamorig:Spine + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.008279159 + inSlope: 0.0060693915 + outSlope: 0.0060693915 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.003888948 + inSlope: -0.033940013 + outSlope: -0.033940013 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.0056160334 + inSlope: 0.022595761 + outSlope: 0.022595761 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.01067053 + inSlope: -0.1253896 + outSlope: -0.1253896 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: -0.028031189 + inSlope: -0.05209419 + outSlope: -0.05209419 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: -0.04684348 + inSlope: -0.040363036 + outSlope: -0.040363036 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666668 + value: -0.039316706 + inSlope: 0.019109005 + outSlope: 0.019109005 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3000002 + value: -0.023823626 + inSlope: 0.04888786 + outSlope: 0.04888786 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: -0.0072483625 + inSlope: -0.025388481 + outSlope: -0.025388481 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: -0.008279151 + inSlope: -0.0062571806 + outSlope: -0.0062571806 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: Armature.001/mixamorig:Hips/mixamorig:Spine + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.027742488 + inSlope: -0.019435788 + outSlope: -0.019435788 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.025888747 + inSlope: -0.016021777 + outSlope: -0.016021777 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.019618405 + inSlope: 0.020867907 + outSlope: 0.020867907 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.05614152 + inSlope: 0.09303893 + outSlope: 0.09303893 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: 0.04924133 + inSlope: -0.12871984 + outSlope: -0.12871984 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 0.035116818 + inSlope: 0.014392579 + outSlope: 0.014392579 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666668 + value: 0.031322096 + inSlope: 0.020681553 + outSlope: 0.020681553 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3000002 + value: 0.028301518 + inSlope: -0.006108709 + outSlope: -0.006108709 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: 0.03232584 + inSlope: -0.0118806325 + outSlope: -0.0118806325 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 0.027742501 + inSlope: -0.0034872103 + outSlope: -0.0034872103 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: Armature.001/mixamorig:Hips/mixamorig:Spine + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9993713 + inSlope: -0.0000053644176 + outSlope: -0.0000053644176 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.99907756 + inSlope: -0.0013554092 + outSlope: -0.0013554092 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.9996785 + inSlope: 0.0010871894 + outSlope: 0.0010871894 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.997773 + inSlope: -0.010393569 + outSlope: -0.010393569 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: 0.99801993 + inSlope: 0.0052857446 + outSlope: 0.0052857446 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 0.99762815 + inSlope: -0.004703705 + outSlope: -0.004703705 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666668 + value: 0.99786574 + inSlope: 0.0028958984 + outSlope: 0.0028958984 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3000002 + value: 0.99922186 + inSlope: 0.0013706102 + outSlope: 0.0013706102 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: 0.9992406 + inSlope: 0.00031471282 + outSlope: 0.00031471282 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 0.9993713 + inSlope: 0.00012516987 + outSlope: 0.00012516987 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: Armature.001/mixamorig:Hips/mixamorig:Spine + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.04032473 + inSlope: 0.025132855 + outSlope: 0.025132855 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.069784224 + inSlope: -0.025265297 + outSlope: -0.025265297 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.030887747 + inSlope: -0.14260054 + outSlope: -0.14260054 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.054016024 + inSlope: 0.23742938 + outSlope: 0.23742938 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.05655937 + inSlope: -0.008610285 + outSlope: -0.008610285 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: 0.08203262 + inSlope: 0.114243776 + outSlope: 0.114243776 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: 0.062541164 + inSlope: -0.20163615 + outSlope: -0.20163615 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: 0.029176928 + inSlope: 0.051190987 + outSlope: 0.051190987 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.766667 + value: 0.041159924 + inSlope: -0.011972945 + outSlope: -0.011972945 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 0.04032473 + inSlope: -0.0049447687 + outSlope: -0.0049447687 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.016074743 + inSlope: 0.03627858 + outSlope: 0.03627858 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.00404428 + inSlope: 0.051343895 + outSlope: 0.051343895 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.019977227 + inSlope: 0.018373316 + outSlope: 0.018373316 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.0075237644 + inSlope: -0.19979677 + outSlope: -0.19979677 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.05765715 + inSlope: -0.12361028 + outSlope: -0.12361028 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: -0.08548201 + inSlope: 0.004738909 + outSlope: 0.004738909 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: -0.06054991 + inSlope: 0.10288549 + outSlope: 0.10288549 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: -0.03149521 + inSlope: 0.1451181 + outSlope: 0.1451181 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.766667 + value: -0.009405181 + inSlope: -0.030067354 + outSlope: -0.030067354 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: -0.016074741 + inSlope: -0.014717686 + outSlope: -0.014717686 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.023812564 + inSlope: -0.019547155 + outSlope: -0.019547155 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.0039819954 + inSlope: 0.017377498 + outSlope: 0.017377498 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.012138147 + inSlope: 0.2176234 + outSlope: 0.2176234 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.06761964 + inSlope: 0.19793865 + outSlope: 0.19793865 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.091653995 + inSlope: -0.20300838 + outSlope: -0.20300838 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: 0.00737915 + inSlope: -0.04562683 + outSlope: -0.04562683 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: 0.011821643 + inSlope: 0.02986665 + outSlope: 0.02986665 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: 0.014425301 + inSlope: 0.023285257 + outSlope: 0.023285257 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.766667 + value: 0.02210078 + inSlope: -0.0007146697 + outSlope: -0.0007146697 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 0.023812562 + inSlope: 0.0059754644 + outSlope: 0.0059754644 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9987735 + inSlope: -0.0000035762785 + outSlope: -0.0000035762785 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.99754596 + inSlope: 0.001611114 + outSlope: 0.001611114 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.9992495 + inSlope: 0.0014117379 + outSlope: 0.0014117379 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.99621946 + inSlope: -0.02768755 + outSlope: -0.02768755 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.9925101 + inSlope: 0.011951913 + outSlope: 0.011951913 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: 0.9929295 + inSlope: -0.008619734 + outSlope: -0.008619734 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: 0.9961338 + inSlope: 0.018587656 + outSlope: 0.018587656 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: 0.9989738 + inSlope: 0.0027117159 + outSlope: 0.0027117159 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.766667 + value: 0.9988638 + inSlope: 0.00022441169 + outSlope: 0.00022441169 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 0.9987735 + inSlope: -0.00017523782 + outSlope: -0.00017523782 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.027965004 + inSlope: 0.024836192 + outSlope: 0.024836192 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.057240542 + inSlope: -0.025047032 + outSlope: -0.025047032 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.01830854 + inSlope: -0.14150904 + outSlope: -0.14150904 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.042217907 + inSlope: 0.24505535 + outSlope: 0.24505535 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.04401128 + inSlope: -0.008558372 + outSlope: -0.008558372 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: 0.065931 + inSlope: 0.12033078 + outSlope: 0.12033078 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666668 + value: 0.0638503 + inSlope: -0.17662928 + outSlope: -0.17662928 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3666668 + value: 0.015536648 + inSlope: 0.032033794 + outSlope: 0.032033794 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7333336 + value: 0.029160067 + inSlope: -0.008541762 + outSlope: -0.008541762 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 0.027965005 + inSlope: -0.0048271427 + outSlope: -0.0048271427 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.016023804 + inSlope: 0.036110744 + outSlope: 0.036110744 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.004561551 + inSlope: 0.039974265 + outSlope: 0.039974265 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.020150192 + inSlope: 0.020433506 + outSlope: 0.020433506 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.0076537216 + inSlope: -0.1954432 + outSlope: -0.1954432 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.058305245 + inSlope: -0.11593419 + outSlope: -0.11593419 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: -0.08494602 + inSlope: -0.002434666 + outSlope: -0.002434666 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666668 + value: -0.068058625 + inSlope: 0.13998428 + outSlope: 0.13998428 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3666668 + value: -0.036153868 + inSlope: 0.13444133 + outSlope: 0.13444133 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7333336 + value: -0.00840239 + inSlope: -0.02521786 + outSlope: -0.02521786 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: -0.016023807 + inSlope: -0.014768955 + outSlope: -0.014768955 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.023549711 + inSlope: -0.019526089 + outSlope: -0.019526089 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.003637303 + inSlope: 0.0136455195 + outSlope: 0.0136455195 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.012534178 + inSlope: 0.22006503 + outSlope: 0.22006503 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.06708848 + inSlope: 0.19092262 + outSlope: 0.19092262 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.09107768 + inSlope: -0.2025124 + outSlope: -0.2025124 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: 0.008676847 + inSlope: -0.07273046 + outSlope: -0.07273046 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666668 + value: 0.008944598 + inSlope: 0.03158856 + outSlope: 0.03158856 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3666668 + value: 0.013070554 + inSlope: 0.019931458 + outSlope: 0.019931458 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7333336 + value: 0.0218232 + inSlope: 0.0028140978 + outSlope: 0.0028140978 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 0.02354971 + inSlope: 0.005899301 + outSlope: 0.005899301 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.99920297 + inSlope: 0.00030755994 + outSlope: 0.00030755994 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.9983434 + inSlope: 0.0012865666 + outSlope: 0.0012865666 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.99955076 + inSlope: -0.0005623684 + outSlope: -0.0005623684 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.9968241 + inSlope: -0.024606586 + outSlope: -0.024606586 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.9931608 + inSlope: 0.012022545 + outSlope: 0.012022545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: 0.994164 + inSlope: -0.00754326 + outSlope: -0.00754326 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666668 + value: 0.99559593 + inSlope: 0.020548422 + outSlope: 0.020548422 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3666668 + value: 0.99913996 + inSlope: 0.004059974 + outSlope: 0.004059974 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7333336 + value: 0.9993012 + inSlope: -0.000027715783 + outSlope: -0.000027715783 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 0.99920297 + inSlope: -0.00023782277 + outSlope: -0.00023782277 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.001141899 + inSlope: -0.2249079 + outSlope: -0.2249079 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.110982254 + inSlope: -0.3246653 + outSlope: -0.3246653 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.06551123 + inSlope: 0.3802647 + outSlope: 0.3802647 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.056029238 + inSlope: -0.27778733 + outSlope: -0.27778733 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.123205245 + inSlope: -0.25723624 + outSlope: -0.25723624 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -0.1365459 + inSlope: 0.22293246 + outSlope: 0.22293246 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: -0.09844012 + inSlope: -0.10498355 + outSlope: -0.10498355 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: -0.124828525 + inSlope: -0.09560094 + outSlope: -0.09560094 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: -0.09967535 + inSlope: 0.3637304 + outSlope: 0.3637304 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: 0.032769367 + inSlope: 0.40728262 + outSlope: 0.40728262 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: 0.0010305828 + inSlope: -0.20349604 + outSlope: -0.20349604 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7333336 + value: 0.0018579972 + inSlope: 0.1097895 + outSlope: 0.1097895 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: -0.0008434659 + inSlope: 0.027355116 + outSlope: 0.027355116 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 0.001141901 + inSlope: 0.024384063 + outSlope: 0.024384063 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0041547767 + inSlope: -0.026386552 + outSlope: -0.026386552 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.011968542 + inSlope: -0.13176242 + outSlope: -0.13176242 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.06985317 + inSlope: -0.31635 + outSlope: -0.31635 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.10766881 + inSlope: 0.105786934 + outSlope: 0.105786934 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.04487716 + inSlope: 0.33791387 + outSlope: 0.33791387 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 0.00024882224 + inSlope: 0.18142566 + outSlope: 0.18142566 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: 0.073318094 + inSlope: 0.35603866 + outSlope: 0.35603866 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0.13356096 + inSlope: 0.31182832 + outSlope: 0.31182832 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: 0.15871374 + inSlope: -0.07028133 + outSlope: -0.07028133 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: 0.085244946 + inSlope: -0.4210814 + outSlope: -0.4210814 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: -0.020087723 + inSlope: -0.11226626 + outSlope: -0.11226626 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7333336 + value: -0.0103828395 + inSlope: 0.068886176 + outSlope: 0.068886176 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: 0.0033857129 + inSlope: 0.015390768 + outSlope: 0.015390768 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 0.004154776 + inSlope: 0.008145457 + outSlope: 0.008145457 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.043889634 + inSlope: -0.03877144 + outSlope: -0.03877144 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.04730863 + inSlope: 0.008721595 + outSlope: 0.008721595 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.048385747 + inSlope: 0.14227462 + outSlope: 0.14227462 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.11290867 + inSlope: 0.429067 + outSlope: 0.429067 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.15942533 + inSlope: -0.31413126 + outSlope: -0.31413126 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 0.03558655 + inSlope: -0.44542402 + outSlope: -0.44542402 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: 0.03729313 + inSlope: 0.32358378 + outSlope: 0.32358378 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0.09972049 + inSlope: 0.328883 + outSlope: 0.328883 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: 0.112482116 + inSlope: -0.20046175 + outSlope: -0.20046175 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: 0.08474295 + inSlope: -0.022981748 + outSlope: -0.022981748 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: 0.060935017 + inSlope: -0.14616986 + outSlope: -0.14616986 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7333336 + value: 0.030386114 + inSlope: 0.005859603 + outSlope: 0.005859603 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: 0.043138348 + inSlope: 0.011382692 + outSlope: 0.011382692 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 0.04388962 + inSlope: 0.008714729 + outSlope: 0.008714729 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.99902713 + inSlope: 0.0011891125 + outSlope: 0.0011891125 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.9926236 + inSlope: -0.03713161 + outSlope: -0.03713161 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.9942272 + inSlope: -0.0035360518 + outSlope: -0.0035360518 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.9861642 + inSlope: -0.053936545 + outSlope: -0.053936545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.9784631 + inSlope: 0.033389937 + outSlope: 0.033389937 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 0.98999435 + inSlope: 0.047121093 + outSlope: 0.047121093 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: 0.9917375 + inSlope: -0.049297262 + outSlope: -0.049297262 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0.9780773 + inSlope: -0.087169915 + outSlope: -0.087169915 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: 0.97581893 + inSlope: 0.070849575 + outSlope: 0.070849575 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: 0.9922087 + inSlope: 0.026053216 + outSlope: 0.026053216 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: 0.99793905 + inSlope: 0.0070086187 + outSlope: 0.0070086187 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7333336 + value: 0.99948263 + inSlope: 0.00036835394 + outSlope: 0.00036835394 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: 0.999063 + inSlope: -0.0005283957 + outSlope: -0.0005283957 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 0.99902713 + inSlope: -0.00043273013 + outSlope: -0.00043273013 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.040946912 + inSlope: -0.11525787 + outSlope: -0.11525787 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.024902282 + inSlope: -0.36655766 + outSlope: -0.36655766 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.061664388 + inSlope: 0.20786282 + outSlope: 0.20786282 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.039463468 + inSlope: 0.42814294 + outSlope: 0.42814294 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.099165335 + inSlope: 0.20635998 + outSlope: 0.20635998 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: 0.15300885 + inSlope: 0.17302075 + outSlope: 0.17302075 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 0.1562328 + inSlope: -0.3067299 + outSlope: -0.3067299 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: 0.041824486 + inSlope: -0.16030835 + outSlope: -0.16030835 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1000001 + value: 0.08524209 + inSlope: 0.2995476 + outSlope: 0.2995476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: 0.09384214 + inSlope: -0.173138 + outSlope: -0.173138 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.966667 + value: 0.045269437 + inSlope: -0.04138754 + outSlope: -0.04138754 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 0.04094691 + inSlope: -0.008596041 + outSlope: -0.008596041 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.018186338 + inSlope: -0.092058636 + outSlope: -0.092058636 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.041916415 + inSlope: -0.26556146 + outSlope: -0.26556146 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.100734636 + inSlope: -0.16311885 + outSlope: -0.16311885 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.06826606 + inSlope: 0.46904415 + outSlope: 0.46904415 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.009453626 + inSlope: 0.10039665 + outSlope: 0.10039665 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: 0.045193896 + inSlope: 0.3249064 + outSlope: 0.3249064 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 0.1552421 + inSlope: 0.28445655 + outSlope: 0.28445655 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: 0.19031222 + inSlope: -0.18468374 + outSlope: -0.18468374 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1000001 + value: 0.09764211 + inSlope: -0.44452572 + outSlope: -0.44452572 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: -0.0006459028 + inSlope: -0.17117363 + outSlope: -0.17117363 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.966667 + value: 0.011456271 + inSlope: 0.025602965 + outSlope: 0.025602965 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 0.01818634 + inSlope: 0.012684179 + outSlope: 0.012684179 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.019533737 + inSlope: 0.28783578 + outSlope: 0.28783578 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.09655203 + inSlope: 0.2427091 + outSlope: 0.2427091 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.12101571 + inSlope: -0.038306493 + outSlope: -0.038306493 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.017185988 + inSlope: -0.7302264 + outSlope: -0.7302264 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.07927165 + inSlope: -0.13315928 + outSlope: -0.13315928 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: -0.095294796 + inSlope: -0.12859684 + outSlope: -0.12859684 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: -0.109413095 + inSlope: 0.07763914 + outSlope: 0.07763914 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: -0.08376164 + inSlope: 0.10315375 + outSlope: 0.10315375 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1000001 + value: -0.022635259 + inSlope: 0.3675682 + outSlope: 0.3675682 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: 0.018714178 + inSlope: -0.023952372 + outSlope: -0.023952372 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.966667 + value: -0.01021847 + inSlope: -0.028194815 + outSlope: -0.028194815 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: -0.01953373 + inSlope: -0.0077353306 + outSlope: -0.0077353306 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9988048 + inSlope: 0.010283588 + outSlope: 0.010283588 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.9941331 + inSlope: -0.043819252 + outSlope: -0.043819252 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.9855989 + inSlope: 0.00067233946 + outSlope: 0.00067233946 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.9967382 + inSlope: 0.027662493 + outSlope: 0.027662493 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.99186337 + inSlope: -0.031805664 + outSlope: -0.031805664 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: 0.98258066 + inSlope: -0.054686718 + outSlope: -0.054686718 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 0.9692884 + inSlope: 0.01228181 + outSlope: 0.01228181 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: 0.9772492 + inSlope: 0.051776424 + outSlope: 0.051776424 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1000001 + value: 0.99130595 + inSlope: 0.026653137 + outSlope: 0.026653137 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: 0.995411 + inSlope: 0.01679422 + outSlope: 0.01679422 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.966667 + value: 0.99885684 + inSlope: 0.0013017615 + outSlope: 0.0013017615 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 0.9988048 + inSlope: -0.000025033974 + outSlope: -0.000025033974 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.5581913 + inSlope: 0.095416896 + outSlope: 0.095416896 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.57281584 + inSlope: -0.28615418 + outSlope: -0.28615418 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.48561564 + inSlope: -0.5217523 + outSlope: -0.5217523 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.45561576 + inSlope: 0.061668895 + outSlope: 0.061668895 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.48738733 + inSlope: 0.24103627 + outSlope: 0.24103627 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333334 + value: 0.51210624 + inSlope: -0.03145514 + outSlope: -0.03145514 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666668 + value: 0.52348405 + inSlope: 0.058142178 + outSlope: 0.058142178 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 0.52880317 + inSlope: 0.048143014 + outSlope: 0.048143014 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: 0.55005014 + inSlope: -0.050605148 + outSlope: -0.050605148 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2333333 + value: 0.51767135 + inSlope: -0.113041446 + outSlope: -0.113041446 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6333334 + value: 0.54782295 + inSlope: 0.010558078 + outSlope: 0.010558078 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0666668 + value: 0.54714257 + inSlope: 0.029361278 + outSlope: 0.029361278 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 0.5581913 + inSlope: 0.020361561 + outSlope: 0.020361561 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.4452813 + inSlope: 0.12144058 + outSlope: 0.12144058 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.42482093 + inSlope: -0.3105833 + outSlope: -0.3105833 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.49447653 + inSlope: -0.26214752 + outSlope: -0.26214752 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.5075597 + inSlope: -0.06480842 + outSlope: -0.06480842 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.50499254 + inSlope: 0.1651463 + outSlope: 0.1651463 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333334 + value: -0.49856827 + inSlope: -0.070424914 + outSlope: -0.070424914 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666668 + value: -0.48722097 + inSlope: 0.08671347 + outSlope: 0.08671347 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: -0.48208207 + inSlope: 0.07773228 + outSlope: 0.07773228 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: -0.46193966 + inSlope: -0.031806953 + outSlope: -0.031806953 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2333333 + value: -0.50916183 + inSlope: -0.14540675 + outSlope: -0.14540675 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6333334 + value: -0.46164462 + inSlope: 0.029028233 + outSlope: 0.029028233 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0666668 + value: -0.46280402 + inSlope: 0.05360847 + outSlope: 0.05360847 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: -0.44528124 + inSlope: 0.032086402 + outSlope: 0.032086402 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.4464845 + inSlope: 0.09120046 + outSlope: 0.09120046 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.45751926 + inSlope: -0.27984607 + outSlope: -0.27984607 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.38253352 + inSlope: -0.46054292 + outSlope: -0.46054292 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.3461766 + inSlope: 0.17437038 + outSlope: 0.17437038 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.41701782 + inSlope: 0.38055402 + outSlope: 0.38055402 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333334 + value: 0.48639458 + inSlope: 0.205723 + outSlope: 0.205723 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666668 + value: 0.5168655 + inSlope: 0.03553204 + outSlope: 0.03553204 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 0.498921 + inSlope: -0.015122308 + outSlope: -0.015122308 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: 0.5330547 + inSlope: 0.10545431 + outSlope: 0.10545431 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2333333 + value: 0.5123965 + inSlope: -0.13361396 + outSlope: -0.13361396 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6333334 + value: 0.50037634 + inSlope: -0.026413972 + outSlope: -0.026413972 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0666668 + value: 0.4872775 + inSlope: -0.13364789 + outSlope: -0.13364789 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 0.44648442 + inSlope: -0.06445801 + outSlope: -0.06445801 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.5392575 + inSlope: -0.07517158 + outSlope: -0.07517158 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.531117 + inSlope: 0.2965826 + outSlope: 0.2965826 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.61101437 + inSlope: 0.49436963 + outSlope: 0.49436963 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.64417326 + inSlope: -0.18941846 + outSlope: -0.18941846 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.5775225 + inSlope: -0.33248037 + outSlope: -0.33248037 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333334 + value: 0.50259054 + inSlope: -0.23648031 + outSlope: -0.23648031 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666668 + value: 0.47056392 + inSlope: -0.013673859 + outSlope: -0.013673859 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 0.48891914 + inSlope: 0.0400253 + outSlope: 0.0400253 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: 0.4471121 + inSlope: -0.096279845 + outSlope: -0.096279845 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2333333 + value: 0.458498 + inSlope: 0.116116114 + outSlope: 0.116116114 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6333334 + value: 0.48620752 + inSlope: 0.042948913 + outSlope: 0.042948913 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0666668 + value: 0.4990072 + inSlope: 0.14779434 + outSlope: 0.14779434 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 0.5392576 + inSlope: 0.059067663 + outSlope: 0.059067663 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.5347247 + inSlope: 0.13797283 + outSlope: 0.13797283 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.5438292 + inSlope: -0.042181298 + outSlope: -0.042181298 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.5019926 + inSlope: -0.61767644 + outSlope: -0.61767644 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.40940264 + inSlope: -0.4939552 + outSlope: -0.4939552 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.3242807 + inSlope: -0.77910876 + outSlope: -0.77910876 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.26380855 + inSlope: 0.29825148 + outSlope: 0.29825148 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.320259 + inSlope: 0.72998375 + outSlope: 0.72998375 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.40090835 + inSlope: 0.22124413 + outSlope: 0.22124413 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.3277051 + inSlope: -0.97487724 + outSlope: -0.97487724 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.16055924 + inSlope: -0.7676447 + outSlope: -0.7676447 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 0.16163702 + inSlope: 0.45155883 + outSlope: 0.45155883 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: 0.34072897 + inSlope: 1.1148183 + outSlope: 1.1148183 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: 0.530519 + inSlope: 0.44754928 + outSlope: 0.44754928 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1000001 + value: 0.56381047 + inSlope: 0.43459338 + outSlope: 0.43459338 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3000002 + value: 0.598229 + inSlope: -0.23797564 + outSlope: -0.23797564 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5333335 + value: 0.49220204 + inSlope: -0.4224255 + outSlope: -0.4224255 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: 0.46828502 + inSlope: 0.09594941 + outSlope: 0.09594941 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: 0.5276458 + inSlope: 0.14334811 + outSlope: 0.14334811 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 0.5347248 + inSlope: 0.073732205 + outSlope: 0.073732205 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0540365 + inSlope: 0.15721376 + outSlope: 0.15721376 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.06744005 + inSlope: 0.1752876 + outSlope: 0.1752876 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.077261075 + inSlope: 0.11539823 + outSlope: 0.11539823 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.08512342 + inSlope: 0.018249305 + outSlope: 0.018249305 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.10412525 + inSlope: 0.38543648 + outSlope: 0.38543648 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.20922108 + inSlope: 0.7650123 + outSlope: 0.7650123 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.2749084 + inSlope: 0.44415203 + outSlope: 0.44415203 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.29529333 + inSlope: -0.029339802 + outSlope: -0.029339802 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.3121257 + inSlope: 0.17468452 + outSlope: 0.17468452 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.32404646 + inSlope: -0.07032714 + outSlope: -0.07032714 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 0.21043319 + inSlope: -0.43531567 + outSlope: -0.43531567 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: 0.10752356 + inSlope: -0.43820274 + outSlope: -0.43820274 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: 0.05089029 + inSlope: -0.04447364 + outSlope: -0.04447364 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1000001 + value: 0.048313238 + inSlope: -0.09698983 + outSlope: -0.09698983 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3000002 + value: 0.02920351 + inSlope: 0.07499659 + outSlope: 0.07499659 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5333335 + value: 0.07963606 + inSlope: 0.25604147 + outSlope: 0.25604147 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: 0.12559633 + inSlope: 0.05361361 + outSlope: 0.05361361 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: 0.06327918 + inSlope: -0.18507975 + outSlope: -0.18507975 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 0.0540365 + inSlope: -0.09657269 + outSlope: -0.09657269 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.14279495 + inSlope: -0.5376635 + outSlope: -0.5376635 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.10532661 + inSlope: -0.28474364 + outSlope: -0.28474364 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.11672433 + inSlope: 0.21859273 + outSlope: 0.21859273 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.1666786 + inSlope: 0.3167745 + outSlope: 0.3167745 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.17988704 + inSlope: -0.27020285 + outSlope: -0.27020285 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.035387184 + inSlope: -2.218856 + outSlope: -2.218856 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.26925665 + inSlope: -2.0725212 + outSlope: -2.0725212 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.43146783 + inSlope: -0.41234213 + outSlope: -0.41234213 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.41657838 + inSlope: 0.38055027 + outSlope: 0.38055027 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.307268 + inSlope: 0.82690346 + outSlope: 0.82690346 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 0.021807339 + inSlope: 0.8466956 + outSlope: 0.8466956 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: 0.16036668 + inSlope: 0.23024842 + outSlope: 0.23024842 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: 0.15360507 + inSlope: -0.24366689 + outSlope: -0.24366689 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1000001 + value: 0.13186258 + inSlope: -0.14154053 + outSlope: -0.14154053 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3000002 + value: 0.14695477 + inSlope: 0.035134736 + outSlope: 0.035134736 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5333335 + value: 0.11829304 + inSlope: -0.26466835 + outSlope: -0.26466835 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: 0.027787447 + inSlope: -0.21584877 + outSlope: -0.21584877 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: 0.12768176 + inSlope: 0.3049918 + outSlope: 0.3049918 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 0.14279498 + inSlope: 0.15717357 + outSlope: 0.15717357 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.83111924 + inSlope: -0.013293027 + outSlope: -0.013293027 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.82982403 + inSlope: 0.053012066 + outSlope: 0.053012066 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.85346913 + inSlope: 0.3218972 + outSlope: 0.3218972 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.89295113 + inSlope: 0.16531439 + outSlope: 0.16531439 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.9228438 + inSlope: 0.28014347 + outSlope: 0.28014347 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.940946 + inSlope: -0.3484924 + outSlope: -0.3484924 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.8656561 + inSlope: -1.0415035 + outSlope: -1.0415035 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.7522698 + inSlope: -0.33613253 + outSlope: -0.33613253 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.78844744 + inSlope: 0.53296256 + outSlope: 0.53296256 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.8802278 + inSlope: 0.45682803 + outSlope: 0.45682803 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 0.9639065 + inSlope: 0.00032280106 + outSlope: 0.00032280106 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: 0.92012227 + inSlope: -0.40320078 + outSlope: -0.40320078 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: 0.8320849 + inSlope: -0.2343466 + outSlope: -0.2343466 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1000001 + value: 0.81387705 + inSlope: -0.2723419 + outSlope: -0.2723419 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3000002 + value: 0.78719354 + inSlope: 0.17013536 + outSlope: 0.17013536 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5333335 + value: 0.85872114 + inSlope: 0.25528306 + outSlope: 0.25528306 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: 0.874164 + inSlope: -0.05168622 + outSlope: -0.05168622 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: 0.8374265 + inSlope: -0.12266737 + outSlope: -0.12266737 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 0.83111924 + inSlope: -0.0672806 + outSlope: -0.0672806 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.14711785 + inSlope: -0.4034717 + outSlope: -0.4034717 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.1336688 + inSlope: -0.40733433 + outSlope: -0.40733433 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.11996223 + inSlope: -0.020421907 + outSlope: -0.020421907 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.16264468 + inSlope: 1.1433603 + outSlope: 1.1433603 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.35393208 + inSlope: 1.0760907 + outSlope: 1.0760907 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.38804656 + inSlope: -0.4873481 + outSlope: -0.4873481 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.3257489 + inSlope: -1.1097444 + outSlope: -1.1097444 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.22597562 + inSlope: -0.718128 + outSlope: -0.718128 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.19676338 + inSlope: 0.10425801 + outSlope: 0.10425801 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.24576321 + inSlope: 0.83150244 + outSlope: 0.83150244 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.33477238 + inSlope: 0.7346983 + outSlope: 0.7346983 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.3751295 + inSlope: -0.051138498 + outSlope: -0.051138498 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.37700427 + inSlope: 0.21016648 + outSlope: 0.21016648 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: 0.4421893 + inSlope: 0.15210822 + outSlope: 0.15210822 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 0.4560272 + inSlope: 0.23985806 + outSlope: 0.23985806 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: 0.47589096 + inSlope: -0.3130016 + outSlope: -0.3130016 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: 0.27313805 + inSlope: -1.8022501 + outSlope: -1.8022501 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: 0.06688882 + inSlope: -0.858165 + outSlope: -0.858165 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1333334 + value: 0.043070458 + inSlope: 0.073908344 + outSlope: 0.073908344 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.266667 + value: 0.07512318 + inSlope: 0.4677073 + outSlope: 0.4677073 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4666667 + value: 0.15441714 + inSlope: 0.10656321 + outSlope: 0.10656321 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7333336 + value: 0.0942577 + inSlope: -0.36375207 + outSlope: -0.36375207 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.966667 + value: 0.08865348 + inSlope: 0.23955074 + outSlope: 0.23955074 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3000002 + value: 0.14689098 + inSlope: 0.02221676 + outSlope: 0.02221676 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 0.14711782 + inSlope: 0.006805218 + outSlope: 0.006805218 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.013491823 + inSlope: 0.17929915 + outSlope: 0.17929915 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.0075151846 + inSlope: 0.16903977 + outSlope: 0.16903977 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.0022225047 + inSlope: 0.027090862 + outSlope: 0.027090862 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.014893723 + inSlope: -0.3691869 + outSlope: -0.3691869 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.12794794 + inSlope: -1.3956534 + outSlope: -1.3956534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.2923533 + inSlope: -1.5744505 + outSlope: -1.5744505 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.37374908 + inSlope: -0.85164213 + outSlope: -0.85164213 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.39409244 + inSlope: 0.28275198 + outSlope: 0.28275198 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.36284298 + inSlope: 0.16489235 + outSlope: 0.16489235 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.37110528 + inSlope: -0.2521849 + outSlope: -0.2521849 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.3906531 + inSlope: -0.14934184 + outSlope: -0.14934184 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.41530773 + inSlope: -0.0781126 + outSlope: -0.0781126 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.44435915 + inSlope: -0.21540439 + outSlope: -0.21540439 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: -0.44622508 + inSlope: 0.17055647 + outSlope: 0.17055647 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: -0.3996876 + inSlope: 0.5269306 + outSlope: 0.5269306 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: -0.27177328 + inSlope: 1.2563161 + outSlope: 1.2563161 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: -0.08293817 + inSlope: 0.9394999 + outSlope: 0.9394999 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: 0.0022214954 + inSlope: 0.26546013 + outSlope: 0.26546013 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1333334 + value: 0.011645307 + inSlope: -0.002968761 + outSlope: -0.002968761 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.266667 + value: 0.004958605 + inSlope: -0.08830179 + outSlope: -0.08830179 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4666667 + value: -0.003970871 + inSlope: 0.019079551 + outSlope: 0.019079551 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7333336 + value: 0.004984998 + inSlope: 0.02406509 + outSlope: 0.02406509 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.966667 + value: 0.000011827416 + inSlope: -0.06114044 + outSlope: -0.06114044 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3000002 + value: -0.013897917 + inSlope: 0.009742728 + outSlope: 0.009742728 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: -0.013491661 + inSlope: 0.01218769 + outSlope: 0.01218769 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.1667998 + inSlope: 0.8175918 + outSlope: 0.8175918 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.13954674 + inSlope: 0.8208859 + outSlope: 0.8208859 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.11207407 + inSlope: 0.21632846 + outSlope: 0.21632846 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.15224235 + inSlope: -0.8636157 + outSlope: -0.8636157 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.33210516 + inSlope: -1.9510148 + outSlope: -1.9510148 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.55624306 + inSlope: -2.3099515 + outSlope: -2.3099515 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.69904286 + inSlope: -1.8102462 + outSlope: -1.8102462 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.8249473 + inSlope: -0.80030704 + outSlope: -0.80030704 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.85895765 + inSlope: 0.09795796 + outSlope: 0.09795796 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.8023756 + inSlope: 1.0013525 + outSlope: 1.0013525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.69273883 + inSlope: 0.9041201 + outSlope: 0.9041201 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.64918876 + inSlope: -0.08839571 + outSlope: -0.08839571 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.65134895 + inSlope: 0.2403959 + outSlope: 0.2403959 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: -0.5703135 + inSlope: 0.22027484 + outSlope: 0.22027484 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: -0.5386787 + inSlope: 0.54038405 + outSlope: 0.54038405 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: -0.4144016 + inSlope: 1.0400074 + outSlope: 1.0400074 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: -0.30777445 + inSlope: 0.5175869 + outSlope: 0.5175869 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: -0.1943443 + inSlope: 1.1464672 + outSlope: 1.1464672 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1333334 + value: -0.08959486 + inSlope: 0.044208206 + outSlope: 0.044208206 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.266667 + value: -0.123485535 + inSlope: -0.10822221 + outSlope: -0.10822221 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4666667 + value: -0.085251346 + inSlope: 0.28840202 + outSlope: 0.28840202 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7333336 + value: -0.049982715 + inSlope: -0.029400945 + outSlope: -0.029400945 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.966667 + value: -0.12147875 + inSlope: -0.39659905 + outSlope: -0.39659905 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3000002 + value: -0.17007674 + inSlope: 0.09985069 + outSlope: 0.09985069 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: -0.16679977 + inSlope: 0.098309316 + outSlope: 0.098309316 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9748601 + inSlope: 0.18789767 + outSlope: 0.18789767 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.9811233 + inSlope: 0.17354427 + outSlope: 0.17354427 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.9864297 + inSlope: 0.032093525 + outSlope: 0.032093525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.9747549 + inSlope: -0.34412923 + outSlope: -0.34412923 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.86490905 + inSlope: -1.4156585 + outSlope: -1.4156585 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.6741981 + inSlope: -2.3065531 + outSlope: -2.3065531 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.51530415 + inSlope: -2.330449 + outSlope: -2.330449 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.33628583 + inSlope: -1.1068001 + outSlope: -1.1068001 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.3030197 + inSlope: 0.39748612 + outSlope: 0.39748612 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.39758626 + inSlope: 1.2539623 + outSlope: 1.2539623 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.5054013 + inSlope: 0.6539415 + outSlope: 0.6539415 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.5151226 + inSlope: -0.1368498 + outSlope: -0.1368498 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.4859602 + inSlope: -0.039324798 + outSlope: -0.039324798 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: 0.52923936 + inSlope: 0.25626028 + outSlope: 0.25626028 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 0.5849053 + inSlope: 0.66065955 + outSlope: 0.66065955 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: 0.7265938 + inSlope: 1.266058 + outSlope: 1.266058 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: 0.9076297 + inSlope: 0.8030705 + outSlope: 0.8030705 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: 0.97864765 + inSlope: 0.29298395 + outSlope: 0.29298395 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1333334 + value: 0.9949784 + inSlope: 0.0011408338 + outSlope: 0.0011408338 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.266667 + value: 0.98948634 + inSlope: -0.04889831 + outSlope: -0.04889831 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4666667 + value: 0.98431283 + inSlope: 0.008677793 + outSlope: 0.008677793 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7333336 + value: 0.99427986 + inSlope: 0.033246763 + outSlope: 0.033246763 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.966667 + value: 0.9886271 + inSlope: -0.07010293 + outSlope: -0.07010293 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3000002 + value: 0.97432226 + inSlope: 0.014234496 + outSlope: 0.014234496 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 0.9748601 + inSlope: 0.016134396 + outSlope: 0.016134396 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.056775067 + inSlope: 0.026573313 + outSlope: 0.026573313 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.05588929 + inSlope: -0.023044419 + outSlope: -0.023044419 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.05831136 + inSlope: -0.09534374 + outSlope: -0.09534374 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.0771453 + inSlope: -0.35757828 + outSlope: -0.35757828 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.11146115 + inSlope: -0.27092168 + outSlope: -0.27092168 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.124784745 + inSlope: 0.029964484 + outSlope: 0.029964484 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.11523219 + inSlope: 0.26843774 + outSlope: 0.26843774 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.0749814 + inSlope: 0.51093936 + outSlope: 0.51093936 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.012986031 + inSlope: 0.72039247 + outSlope: 0.72039247 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.06275372 + inSlope: 0.31788364 + outSlope: 0.31788364 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.083717376 + inSlope: 0.031249192 + outSlope: 0.031249192 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.087017834 + inSlope: 0.08397692 + outSlope: 0.08397692 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.1177172 + inSlope: 0.08145966 + outSlope: 0.08145966 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666668 + value: 0.108621776 + inSlope: -0.14476484 + outSlope: -0.14476484 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 0.09027691 + inSlope: -0.056182496 + outSlope: -0.056182496 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.08353082 + inSlope: -0.09270662 + outSlope: -0.09270662 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: 0.069378495 + inSlope: -0.22810307 + outSlope: -0.22810307 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: 0.043360006 + inSlope: -0.30336094 + outSlope: -0.30336094 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666668 + value: 0.0030237476 + inSlope: -0.31800747 + outSlope: -0.31800747 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1333334 + value: -0.038287688 + inSlope: 0.016997341 + outSlope: 0.016997341 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3000002 + value: -0.020548124 + inSlope: -0.005769074 + outSlope: -0.005769074 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4666667 + value: -0.026223421 + inSlope: -0.0038720379 + outSlope: -0.0038720379 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7333336 + value: -0.05835265 + inSlope: -0.29608306 + outSlope: -0.29608306 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0000002 + value: -0.10520994 + inSlope: 0.025861325 + outSlope: 0.025861325 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: -0.066970505 + inSlope: 0.18829635 + outSlope: 0.18829635 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: -0.056775037 + inSlope: 0.111954615 + outSlope: 0.111954615 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.1741072 + inSlope: -0.87023777 + outSlope: -0.87023777 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.20311512 + inSlope: -1.1462513 + outSlope: -1.1462513 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.25052395 + inSlope: -1.2949308 + outSlope: -1.2949308 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.34084377 + inSlope: -0.38783446 + outSlope: -0.38783446 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.28993613 + inSlope: 1.6880198 + outSlope: 1.6880198 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.0075765303 + inSlope: 3.6899147 + outSlope: 3.6899147 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.2453348 + inSlope: 3.5277026 + outSlope: 3.5277026 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.49175698 + inSlope: 1.2826622 + outSlope: 1.2826622 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.52047646 + inSlope: -0.5551728 + outSlope: -0.5551728 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.32214937 + inSlope: -2.152344 + outSlope: -2.152344 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.09244666 + inSlope: -0.7528729 + outSlope: -0.7528729 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.077572785 + inSlope: 0.075456604 + outSlope: 0.075456604 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.08592754 + inSlope: -0.49090093 + outSlope: -0.49090093 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666668 + value: -0.049792707 + inSlope: -0.78783125 + outSlope: -0.78783125 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: -0.1549517 + inSlope: -0.949517 + outSlope: -0.949517 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: -0.303001 + inSlope: -1.8941841 + outSlope: -1.8941841 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: -0.47420764 + inSlope: -1.1224623 + outSlope: -1.1224623 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: -0.5027175 + inSlope: 0.44596794 + outSlope: 0.44596794 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666668 + value: -0.35568106 + inSlope: 1.4895797 + outSlope: 1.4895797 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1333334 + value: -0.18780246 + inSlope: 0.11853766 + outSlope: 0.11853766 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3000002 + value: -0.26466316 + inSlope: -0.72847366 + outSlope: -0.72847366 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4666667 + value: -0.36072624 + inSlope: -0.33900455 + outSlope: -0.33900455 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7333336 + value: -0.3958988 + inSlope: 0.025980795 + outSlope: 0.025980795 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0000002 + value: -0.30984002 + inSlope: 0.618974 + outSlope: 0.618974 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: -0.17218715 + inSlope: 0.08723491 + outSlope: 0.08723491 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: -0.17410727 + inSlope: -0.0223084 + outSlope: -0.0223084 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.010359076 + inSlope: -0.67108643 + outSlope: -0.67108643 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.032728624 + inSlope: -0.76369846 + outSlope: -0.76369846 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.06127231 + inSlope: -0.5540105 + outSlope: -0.5540105 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.07181445 + inSlope: 0.08628574 + outSlope: 0.08628574 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -0.046250056 + inSlope: 0.40407202 + outSlope: 0.40407202 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.0038977833 + inSlope: 0.52711976 + outSlope: 0.52711976 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.035156928 + inSlope: 0.37963045 + outSlope: 0.37963045 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.056351755 + inSlope: 0.10610838 + outSlope: 0.10610838 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.061905663 + inSlope: 0.027396401 + outSlope: 0.027396401 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.028304044 + inSlope: -0.5568227 + outSlope: -0.5568227 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.02820666 + inSlope: -0.10957622 + outSlope: -0.10957622 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.023777295 + inSlope: 0.12277922 + outSlope: 0.12277922 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.0047111986 + inSlope: 0.1313783 + outSlope: 0.1313783 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666668 + value: 0.040992223 + inSlope: 0.3068124 + outSlope: 0.3068124 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 0.059313454 + inSlope: -0.06912305 + outSlope: -0.06912305 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.048494775 + inSlope: -0.09966065 + outSlope: -0.09966065 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: 0.03931331 + inSlope: -0.12397958 + outSlope: -0.12397958 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: 0.01993917 + inSlope: -0.2952463 + outSlope: -0.2952463 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666668 + value: -0.03662008 + inSlope: -0.48588568 + outSlope: -0.48588568 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1333334 + value: -0.0871442 + inSlope: -0.027373645 + outSlope: -0.027373645 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3000002 + value: -0.10049064 + inSlope: -0.28707665 + outSlope: -0.28707665 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4666667 + value: -0.14176357 + inSlope: -0.00592681 + outSlope: -0.00592681 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7333336 + value: -0.082953066 + inSlope: 0.13626787 + outSlope: 0.13626787 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0000002 + value: -0.08094998 + inSlope: 0.019479562 + outSlope: 0.019479562 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: -0.02861277 + inSlope: 0.32207 + outSlope: 0.32207 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: -0.01035909 + inSlope: 0.20488621 + outSlope: 0.20488621 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9830341 + inSlope: -0.18070756 + outSlope: -0.18070756 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.9770105 + inSlope: -0.2793869 + outSlope: -0.2793869 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.9644083 + inSlope: -0.36577815 + outSlope: -0.36577815 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.93419313 + inSlope: -0.16221552 + outSlope: -0.16221552 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 0.9494074 + inSlope: 0.47763085 + outSlope: 0.47763085 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.99214727 + inSlope: 0.012638666 + outSlope: 0.012638666 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.9619233 + inSlope: -0.85853946 + outSlope: -0.85853946 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.86566585 + inSlope: -0.6683192 + outSlope: -0.6683192 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.85152996 + inSlope: 0.3402035 + outSlope: 0.3402035 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.9441825 + inSlope: 0.7280278 + outSlope: 0.7280278 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.991791 + inSlope: 0.07278714 + outSlope: 0.07278714 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.99289733 + inSlope: -0.010654603 + outSlope: -0.010654603 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.98931134 + inSlope: 0.03125313 + outSlope: 0.03125313 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666668 + value: 0.9919887 + inSlope: -0.03494291 + outSlope: -0.03494291 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 0.981999 + inSlope: -0.14673038 + outSlope: -0.14673038 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.948083 + inSlope: -0.5960411 + outSlope: -0.5960411 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: 0.87679434 + inSlope: -0.5678855 + outSlope: -0.5678855 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: 0.8631324 + inSlope: 0.27665603 + outSlope: 0.27665603 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666668 + value: 0.9338848 + inSlope: 0.54948485 + outSlope: 0.54948485 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1333334 + value: 0.9775839 + inSlope: 0.021811746 + outSlope: 0.021811746 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3000002 + value: 0.9588706 + inSlope: -0.2317565 + outSlope: -0.2317565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4666667 + value: 0.9214619 + inSlope: -0.13308021 + outSlope: -0.13308021 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7333336 + value: 0.9126763 + inSlope: 0.0048002624 + outSlope: 0.0048002624 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0000002 + value: 0.94147605 + inSlope: 0.20774713 + outSlope: 0.20774713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: 0.98236847 + inSlope: 0.037638582 + outSlope: 0.037638582 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 0.9830341 + inSlope: 0.00560761 + outSlope: 0.00560761 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.19585045 + inSlope: -0.018851457 + outSlope: -0.018851457 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.17440768 + inSlope: -0.03591277 + outSlope: -0.03591277 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.17371085 + inSlope: -0.0000011175881 + outSlope: -0.0000011175881 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 0.17371096 + inSlope: -0.014452427 + outSlope: -0.014452427 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9000001 + value: 0.1623916 + inSlope: 0.01632975 + outSlope: 0.01632975 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: 0.16472843 + inSlope: -0.035902742 + outSlope: -0.035902742 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3000002 + value: 0.17786272 + inSlope: 0.22829354 + outSlope: 0.22829354 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4666667 + value: 0.19585027 + inSlope: -9.549694e-12 + outSlope: -9.549694e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 0.1958505 + inSlope: 0.000010728846 + outSlope: 0.000010728846 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.06724088 + inSlope: 0.021103395 + outSlope: 0.021103395 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.08916596 + inSlope: 0.035482164 + outSlope: 0.035482164 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.089822814 + inSlope: -0.0000010058284 + outSlope: -0.0000010058284 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 0.08982291 + inSlope: 0.006440325 + outSlope: 0.006440325 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9000001 + value: 0.11571367 + inSlope: 0.18316029 + outSlope: 0.18316029 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: 0.12131192 + inSlope: -0.1115192 + outSlope: -0.1115192 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3000002 + value: 0.085278615 + inSlope: -0.23142067 + outSlope: -0.23142067 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4666667 + value: 0.06724087 + inSlope: -0.000001564629 + outSlope: -0.000001564629 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 0.06724098 + inSlope: -0.0000013411058 + outSlope: -0.0000013411058 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.23561035 + inSlope: -0.089908086 + outSlope: -0.089908086 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.3311448 + inSlope: -0.15096681 + outSlope: -0.15096681 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.3340474 + inSlope: 0.000006705529 + outSlope: 0.000006705529 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: -0.3340472 + inSlope: -0.017554628 + outSlope: -0.017554628 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9000001 + value: -0.3740048 + inSlope: -0.18850136 + outSlope: -0.18850136 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: -0.35820782 + inSlope: 0.4490769 + outSlope: 0.4490769 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3000002 + value: -0.24462365 + inSlope: 0.23323596 + outSlope: 0.23323596 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4666667 + value: -0.23561023 + inSlope: -0.000002011641 + outSlope: -0.000002011641 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: -0.23561035 + inSlope: -0.00000044703526 + outSlope: -0.00000044703526 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.94953096 + inSlope: -0.020079015 + outSlope: -0.020079015 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.92302465 + inSlope: -0.05037636 + outSlope: -0.05037636 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.92204595 + inSlope: 0.0000026822115 + outSlope: 0.0000026822115 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 0.922046 + inSlope: -0.00428528 + outSlope: -0.00428528 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9000001 + value: 0.9057371 + inSlope: -0.10369251 + outSlope: -0.10369251 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: 0.91095287 + inSlope: 0.19709428 + outSlope: 0.19709428 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3000002 + value: 0.9493428 + inSlope: 0.03852818 + outSlope: 0.03852818 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4666667 + value: 0.949531 + inSlope: 6.366463e-12 + outSlope: 6.366463e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 0.94953096 + inSlope: -0.000001788141 + outSlope: -0.000001788141 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.053263444 + inSlope: 0.059478987 + outSlope: 0.059478987 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.06497846 + inSlope: 0.17679285 + outSlope: 0.17679285 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.063838616 + inSlope: -0.18771604 + outSlope: -0.18771604 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.06497857 + inSlope: 0.11449242 + outSlope: 0.11449242 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.06426556 + inSlope: -0.15530068 + outSlope: -0.15530068 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.057331193 + inSlope: 0.089730725 + outSlope: 0.089730725 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.06497859 + inSlope: -0.013656256 + outSlope: -0.013656256 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 0.06480502 + inSlope: 0.08452505 + outSlope: 0.08452505 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: 0.05821059 + inSlope: -0.22297108 + outSlope: -0.22297108 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666668 + value: 0.0077128564 + inSlope: -0.2051717 + outSlope: -0.2051717 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: 0.02372718 + inSlope: 0.5220885 + outSlope: 0.5220885 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1333334 + value: 0.06261852 + inSlope: 0.40245953 + outSlope: 0.40245953 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2333333 + value: 0.064529754 + inSlope: -0.2584775 + outSlope: -0.2584775 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3000002 + value: 0.0537755 + inSlope: -0.03674926 + outSlope: -0.03674926 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5333335 + value: 0.05161547 + inSlope: -0.015770286 + outSlope: -0.015770286 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8333335 + value: 0.06360449 + inSlope: -0.024629127 + outSlope: -0.024629127 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.053830557 + inSlope: 0.011365034 + outSlope: 0.011365034 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 0.053264916 + inSlope: 0.0004279245 + outSlope: 0.0004279245 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.11393379 + inSlope: 0.010915696 + outSlope: 0.010915696 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.12271738 + inSlope: 0.04165918 + outSlope: 0.04165918 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.124663055 + inSlope: -0.06997326 + outSlope: -0.06997326 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.12271775 + inSlope: 0.049188934 + outSlope: 0.049188934 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.12306142 + inSlope: -0.064395204 + outSlope: -0.064395204 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.12588479 + inSlope: 0.03692474 + outSlope: 0.03692474 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -0.122717574 + inSlope: -0.0056479545 + outSlope: -0.0056479545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: -0.12280077 + inSlope: 0.034963682 + outSlope: 0.034963682 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: -0.12659934 + inSlope: -0.14438538 + outSlope: -0.14438538 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666668 + value: -0.17170814 + inSlope: -0.10518773 + outSlope: -0.10518773 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: -0.16307119 + inSlope: 0.28575724 + outSlope: 0.28575724 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1333334 + value: -0.13874225 + inSlope: 0.34330922 + outSlope: 0.34330922 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2333333 + value: -0.11936942 + inSlope: 0.06141968 + outSlope: 0.06141968 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3000002 + value: -0.11512855 + inSlope: 0.058788713 + outSlope: 0.058788713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5333335 + value: -0.114671074 + inSlope: -0.006903007 + outSlope: -0.006903007 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8333335 + value: -0.109303944 + inSlope: -0.011086698 + outSlope: -0.011086698 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: -0.113682166 + inSlope: 0.0050612213 + outSlope: 0.0050612213 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: -0.11394106 + inSlope: 0.0000735373 + outSlope: 0.0000735373 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.22920008 + inSlope: 0.10243892 + outSlope: 0.10243892 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.27915236 + inSlope: 0.28991374 + outSlope: 0.28991374 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.28077537 + inSlope: -0.25203067 + outSlope: -0.25203067 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.27915227 + inSlope: 0.13675739 + outSlope: 0.13675739 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.27822208 + inSlope: -0.19506706 + outSlope: -0.19506706 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.2694861 + inSlope: 0.11354102 + outSlope: 0.11354102 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.27915245 + inSlope: -0.017065568 + outSlope: -0.017065568 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 0.27892447 + inSlope: 0.10611391 + outSlope: 0.10611391 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: 0.27049994 + inSlope: -0.28260666 + outSlope: -0.28260666 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666668 + value: 0.21856816 + inSlope: -0.2155864 + outSlope: -0.2155864 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: 0.23255603 + inSlope: 0.5064585 + outSlope: 0.5064585 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1333334 + value: 0.2668517 + inSlope: 0.20670418 + outSlope: 0.20670418 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2333333 + value: 0.25282708 + inSlope: -0.47866935 + outSlope: -0.47866935 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3000002 + value: 0.2295755 + inSlope: -0.09458998 + outSlope: -0.09458998 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5333335 + value: 0.2269395 + inSlope: -0.021500608 + outSlope: -0.021500608 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8333335 + value: 0.24326655 + inSlope: -0.033328265 + outSlope: -0.033328265 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.22997467 + inSlope: 0.015537158 + outSlope: 0.015537158 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 0.22919956 + inSlope: 0.00054046564 + outSlope: 0.00054046564 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.96521986 + inSlope: -0.026575325 + outSlope: -0.026575325 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.9501538 + inSlope: -0.09172619 + outSlope: -0.09172619 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.9494993 + inSlope: 0.078079104 + outSlope: 0.078079104 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.95015377 + inSlope: -0.041255966 + outSlope: -0.041255966 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.9504306 + inSlope: 0.05886192 + outSlope: 0.05886192 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.95301807 + inSlope: -0.032798048 + outSlope: -0.032798048 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.9501537 + inSlope: 0.005235676 + outSlope: 0.005235676 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 0.9502218 + inSlope: -0.032393903 + outSlope: -0.032393903 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: 0.9525828 + inSlope: 0.074159436 + outSlope: 0.074159436 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666668 + value: 0.96056485 + inSlope: 0.032746203 + outSlope: 0.032746203 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: 0.958521 + inSlope: -0.09143302 + outSlope: -0.09143302 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1333334 + value: 0.95164055 + inSlope: -0.030172199 + outSlope: -0.030172199 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2333333 + value: 0.9579485 + inSlope: 0.15014158 + outSlope: 0.15014158 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3000002 + value: 0.96496046 + inSlope: 0.03183338 + outSlope: 0.03183338 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5333335 + value: 0.9657561 + inSlope: 0.0051131896 + outSlope: 0.0051131896 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8333335 + value: 0.96168005 + inSlope: 0.008771726 + outSlope: 0.008771726 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.9650338 + inSlope: -0.003739897 + outSlope: -0.003739897 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 0.9652191 + inSlope: -0.00014305128 + outSlope: -0.00014305128 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0000000079843785 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.0000000079843785 + inSlope: 0 + 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: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2/mixamorig:LeftHandThumb3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.043534204 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.043534204 + inSlope: 0 + 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: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2/mixamorig:LeftHandThumb3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.000000032449943 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.000000032449943 + inSlope: 0 + 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: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2/mixamorig:LeftHandThumb3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9990519 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.9990519 + inSlope: 0 + 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: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2/mixamorig:LeftHandThumb3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.060331937 + inSlope: 0.81948245 + outSlope: 0.81948245 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.08764802 + inSlope: 1.1600962 + outSlope: 1.1600962 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.24102978 + inSlope: 1.2644101 + outSlope: 1.2644101 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.34201694 + inSlope: 0.32460544 + outSlope: 0.32460544 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.37677923 + inSlope: 0.021241289 + outSlope: 0.021241289 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.36002123 + inSlope: -0.29322174 + outSlope: -0.29322174 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.35597143 + inSlope: -0.021152796 + outSlope: -0.021152796 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.34843233 + inSlope: -0.081529215 + outSlope: -0.081529215 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2333333 + value: 0.34515202 + inSlope: -0.0069478196 + outSlope: -0.0069478196 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: 0.37511465 + inSlope: 0.17333306 + outSlope: 0.17333306 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 0.3700853 + inSlope: -0.33340043 + outSlope: -0.33340043 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 0.35178617 + inSlope: -0.037509836 + outSlope: -0.037509836 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: 0.3229916 + inSlope: -0.9960759 + outSlope: -0.9960759 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9000001 + value: 0.14058569 + inSlope: -1.4905183 + outSlope: -1.4905183 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: -0.04742081 + inSlope: -0.85046625 + outSlope: -0.85046625 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: -0.015581568 + inSlope: 0.8579422 + outSlope: 0.8579422 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: 0.06344147 + inSlope: -0.07213092 + outSlope: -0.07213092 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4333334 + value: 0.036867723 + inSlope: -0.0763914 + outSlope: -0.0763914 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6000001 + value: 0.066688135 + inSlope: 0.2012142 + outSlope: 0.2012142 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: 0.09906672 + inSlope: 0.14882407 + outSlope: 0.14882407 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.07950625 + inSlope: -0.21716079 + outSlope: -0.21716079 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 0.06033196 + inSlope: 0.02354043 + outSlope: 0.02354043 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.053493477 + inSlope: -0.25295275 + outSlope: -0.25295275 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.04506172 + inSlope: -0.3296638 + outSlope: -0.3296638 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.009957477 + inSlope: -0.27625412 + outSlope: -0.27625412 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.01571568 + inSlope: -0.064858586 + outSlope: -0.064858586 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.019191744 + inSlope: -0.014180799 + outSlope: -0.014180799 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.018340211 + inSlope: 0.029619412 + outSlope: 0.029619412 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.01781314 + inSlope: 0.005497774 + outSlope: 0.005497774 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.017063115 + inSlope: 0.0071343593 + outSlope: 0.0071343593 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2333333 + value: -0.01639183 + inSlope: 0.0027755278 + outSlope: 0.0027755278 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: -0.020444524 + inSlope: -0.018673543 + outSlope: -0.018673543 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: -0.019206319 + inSlope: 0.053006884 + outSlope: 0.053006884 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: -0.017353646 + inSlope: 0.024564924 + outSlope: 0.024564924 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: 0.0029541622 + inSlope: 0.42056915 + outSlope: 0.42056915 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9000001 + value: 0.061987657 + inSlope: 0.37647444 + outSlope: 0.37647444 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: 0.09849477 + inSlope: 0.26524666 + outSlope: 0.26524666 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: 0.09488086 + inSlope: -0.37756443 + outSlope: -0.37756443 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: 0.058284458 + inSlope: 0.04579664 + outSlope: 0.04579664 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4333334 + value: 0.066392004 + inSlope: 0.000633896 + outSlope: 0.000633896 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6000001 + value: 0.043292936 + inSlope: -0.05619965 + outSlope: -0.05619965 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: 0.04196199 + inSlope: -0.024310056 + outSlope: -0.024310056 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.049874734 + inSlope: 0.03336062 + outSlope: 0.03336062 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 0.053493496 + inSlope: -0.022018163 + outSlope: -0.022018163 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.08011826 + inSlope: 0.21521306 + outSlope: 0.21521306 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.08729203 + inSlope: 0.27513057 + outSlope: 0.27513057 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.10999508 + inSlope: 0.08983322 + outSlope: 0.08983322 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.1028833 + inSlope: -0.057620563 + outSlope: -0.057620563 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.10163819 + inSlope: 0.030116487 + outSlope: 0.030116487 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.10199929 + inSlope: -0.025608614 + outSlope: -0.025608614 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.10171773 + inSlope: -0.0061554466 + outSlope: -0.0061554466 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.100817494 + inSlope: -0.0086484365 + outSlope: -0.0086484365 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2333333 + value: 0.1000508 + inSlope: -0.0031816573 + outSlope: -0.0031816573 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: 0.10681867 + inSlope: 0.031295527 + outSlope: 0.031295527 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 0.10584687 + inSlope: -0.06356705 + outSlope: -0.06356705 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 0.10117035 + inSlope: -0.06135045 + outSlope: -0.06135045 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: 0.079555675 + inSlope: -0.4518709 + outSlope: -0.4518709 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9000001 + value: 0.0002483574 + inSlope: -0.62975454 + outSlope: -0.62975454 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: -0.059896115 + inSlope: -0.1439325 + outSlope: -0.1439325 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: -0.00638921 + inSlope: 0.8178339 + outSlope: 0.8178339 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: 0.07665887 + inSlope: -0.021518603 + outSlope: -0.021518603 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4333334 + value: 0.0656314 + inSlope: -0.007957116 + outSlope: -0.007957116 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6000001 + value: 0.09139882 + inSlope: 0.062474407 + outSlope: 0.062474407 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: 0.09389385 + inSlope: 0.027801123 + outSlope: 0.027801123 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.08490114 + inSlope: -0.04539118 + outSlope: -0.04539118 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 0.08011824 + inSlope: 0.024865666 + outSlope: 0.024865666 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.99351877 + inSlope: -0.06668866 + outSlope: -0.06668866 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.9912958 + inSlope: -0.12676209 + outSlope: -0.12676209 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.96421295 + inSlope: -0.31186315 + outSlope: -0.31186315 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.93391246 + inSlope: -0.11317045 + outSlope: -0.11317045 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.92051005 + inSlope: -0.012249639 + outSlope: -0.012249639 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.92717016 + inSlope: 0.117833 + outSlope: 0.117833 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.9287737 + inSlope: 0.0088861585 + outSlope: 0.0088861585 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.9317401 + inSlope: 0.031619627 + outSlope: 0.031619627 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2333333 + value: 0.9330548 + inSlope: 0.00296116 + outSlope: 0.00296116 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: 0.92057633 + inSlope: -0.07434001 + outSlope: -0.07434001 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 0.9227483 + inSlope: 0.14134243 + outSlope: 0.14134243 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 0.93043536 + inSlope: 0.02124401 + outSlope: 0.02124401 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: 0.9430475 + inSlope: 0.36662614 + outSlope: 0.36662614 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9000001 + value: 0.9881261 + inSlope: 0.18884736 + outSlope: 0.18884736 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: 0.99220085 + inSlope: -0.06658117 + outSlope: -0.06658117 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: 0.9953462 + inSlope: 0.05270814 + outSlope: 0.05270814 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: 0.9933285 + inSlope: 0.0028681788 + outSlope: 0.0028681788 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4333334 + value: 0.99494994 + inSlope: 0.0034529003 + outSlope: 0.0034529003 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6000001 + value: 0.99263525 + inSlope: -0.016470566 + outSlope: -0.016470566 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: 0.98975194 + inSlope: -0.016379371 + outSlope: -0.016379371 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.9919592 + inSlope: 0.019645412 + outSlope: 0.019645412 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 0.99351877 + inSlope: -0.0022226593 + outSlope: -0.0022226593 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.25314823 + inSlope: 0.8545133 + outSlope: 0.8545133 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.281632 + inSlope: 1.125457 + outSlope: 1.125457 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.3281787 + inSlope: 1.2265213 + outSlope: 1.2265213 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.44083694 + inSlope: 1.2002915 + outSlope: 1.2002915 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.57056665 + inSlope: 0.2543118 + outSlope: 0.2543118 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.55785483 + inSlope: -0.05620028 + outSlope: -0.05620028 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.5659978 + inSlope: 0.18487394 + outSlope: 0.18487394 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.56097347 + inSlope: -0.15675542 + outSlope: -0.15675542 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.557301 + inSlope: -0.0022521643 + outSlope: -0.0022521643 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: 0.5644189 + inSlope: -0.065591626 + outSlope: -0.065591626 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.5714143 + inSlope: 0.37040183 + outSlope: 0.37040183 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 0.5985331 + inSlope: 0.11551839 + outSlope: 0.11551839 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 0.5591922 + inSlope: -0.3232208 + outSlope: -0.3232208 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: 0.5155241 + inSlope: -0.93803954 + outSlope: -0.93803954 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: 0.3625007 + inSlope: -1.730814 + outSlope: -1.730814 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: 0.2555714 + inSlope: -1.7520812 + outSlope: -1.7520812 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: 0.15311944 + inSlope: -0.2771953 + outSlope: -0.2771953 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: 0.20466709 + inSlope: 0.90943265 + outSlope: 0.90943265 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1000001 + value: 0.23349649 + inSlope: 0.6821128 + outSlope: 0.6821128 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1333334 + value: 0.25014123 + inSlope: -0.3549858 + outSlope: -0.3549858 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: 0.16905636 + inSlope: -0.60486263 + outSlope: -0.60486263 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2333333 + value: 0.16950665 + inSlope: 0.05410747 + outSlope: 0.05410747 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: 0.1987885 + inSlope: 0.17058732 + outSlope: 0.17058732 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4333334 + value: 0.20090845 + inSlope: 0.1018695 + outSlope: 0.1018695 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.766667 + value: 0.24054387 + inSlope: 0.29629585 + outSlope: 0.29629585 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.24724582 + inSlope: -0.07305875 + outSlope: -0.07305875 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 0.25314808 + inSlope: 0.0025033974 + outSlope: 0.0025033974 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.012801537 + inSlope: -0.06122804 + outSlope: -0.06122804 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.014842472 + inSlope: -0.08413453 + outSlope: -0.08413453 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.018410506 + inSlope: -0.097517304 + outSlope: -0.097517304 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.02795481 + inSlope: -0.10508025 + outSlope: -0.10508025 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.039882068 + inSlope: -0.02091061 + outSlope: -0.02091061 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.038926143 + inSlope: 0.0053773215 + outSlope: 0.0053773215 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.039399825 + inSlope: -0.013051517 + outSlope: -0.013051517 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.03902558 + inSlope: 0.011122504 + outSlope: 0.011122504 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.038849305 + inSlope: -0.00081075437 + outSlope: -0.00081075437 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: -0.03937166 + inSlope: 0.005931983 + outSlope: 0.005931983 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.03981861 + inSlope: -0.027794184 + outSlope: -0.027794184 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: -0.041935284 + inSlope: -0.009406684 + outSlope: -0.009406684 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: -0.038935367 + inSlope: 0.022547118 + outSlope: 0.022547118 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: -0.03605844 + inSlope: 0.063025884 + outSlope: 0.063025884 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: -0.025675293 + inSlope: 0.11429837 + outSlope: 0.11429837 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: -0.018525839 + inSlope: 0.11942232 + outSlope: 0.11942232 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: -0.0115583865 + inSlope: 0.018921934 + outSlope: 0.018921934 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: -0.014885214 + inSlope: -0.05437708 + outSlope: -0.05437708 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1000001 + value: -0.016463796 + inSlope: -0.036835272 + outSlope: -0.036835272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1333334 + value: -0.017340897 + inSlope: 0.03323879 + outSlope: 0.03323879 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: -0.010543932 + inSlope: 0.070143856 + outSlope: 0.070143856 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2333333 + value: -0.009571626 + inSlope: 0.016951686 + outSlope: 0.016951686 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: -0.009880113 + inSlope: 0.0016713112 + outSlope: 0.0016713112 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4333334 + value: -0.00934347 + inSlope: -0.006814843 + outSlope: -0.006814843 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.766667 + value: -0.01200422 + inSlope: -0.020350665 + outSlope: -0.020350665 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: -0.01240644 + inSlope: 0.0052070944 + outSlope: 0.0052070944 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: -0.012801437 + inSlope: -0.00016448104 + outSlope: -0.00016448104 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.072528444 + inSlope: 0.16494556 + outSlope: 0.16494556 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.07802663 + inSlope: 0.21979585 + outSlope: 0.21979585 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.0871815 + inSlope: 0.24325946 + outSlope: 0.24325946 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.109470636 + inSlope: 0.23300558 + outSlope: 0.23300558 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.13376907 + inSlope: 0.043238986 + outSlope: 0.043238986 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.13153535 + inSlope: -0.008850835 + outSlope: -0.008850835 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.13299313 + inSlope: 0.031792223 + outSlope: 0.031792223 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.13211761 + inSlope: -0.026984135 + outSlope: -0.026984135 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.13152635 + inSlope: 0.00030465447 + outSlope: 0.00030465447 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: 0.13276894 + inSlope: -0.01228161 + outSlope: -0.01228161 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.13393918 + inSlope: 0.06437002 + outSlope: 0.06437002 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 0.13867626 + inSlope: 0.020349938 + outSlope: 0.020349938 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 0.13181931 + inSlope: -0.059604555 + outSlope: -0.059604555 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: 0.123061374 + inSlope: -0.18397424 + outSlope: -0.18397424 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: 0.09366505 + inSlope: -0.33044314 + outSlope: -0.33044314 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: 0.07311999 + inSlope: -0.33532894 + outSlope: -0.33532894 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: 0.053720903 + inSlope: -0.05160731 + outSlope: -0.05160731 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: 0.06346776 + inSlope: 0.17341085 + outSlope: 0.17341085 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1000001 + value: 0.0689829 + inSlope: 0.13080129 + outSlope: 0.13080129 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1333334 + value: 0.07218784 + inSlope: -0.06562523 + outSlope: -0.06562523 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: 0.05715399 + inSlope: -0.11110469 + outSlope: -0.11110469 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2333333 + value: 0.057200916 + inSlope: 0.007873525 + outSlope: 0.007873525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: 0.062456638 + inSlope: 0.031182049 + outSlope: 0.031182049 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4333334 + value: 0.062771216 + inSlope: 0.019173399 + outSlope: 0.019173399 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.766667 + value: 0.0702258 + inSlope: 0.056132205 + outSlope: 0.056132205 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.071423866 + inSlope: -0.014067641 + outSlope: -0.014067641 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 0.07252847 + inSlope: 0.0004705046 + outSlope: 0.0004705046 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.96462 + inSlope: -0.2517128 + outSlope: -0.2517128 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.95622957 + inSlope: -0.36324352 + outSlope: -0.36324352 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.94040376 + inSlope: -0.4443186 + outSlope: -0.4443186 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.8904479 + inSlope: -0.62439406 + outSlope: -0.62439406 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.80930156 + inSlope: -0.18605317 + outSlope: -0.18605317 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.81852376 + inSlope: 0.040107932 + outSlope: 0.040107932 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.8126543 + inSlope: -0.1343742 + outSlope: -0.1343742 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.81629086 + inSlope: 0.11302023 + outSlope: 0.11302023 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.81890607 + inSlope: 0.0014483938 + outSlope: 0.0014483938 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: 0.81378967 + inSlope: 0.04767447 + outSlope: 0.04767447 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.8086783 + inSlope: -0.27653894 + outSlope: -0.27653894 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 0.7878886 + inSlope: -0.09010353 + outSlope: -0.09010353 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 0.81756455 + inSlope: 0.23400955 + outSlope: 0.23400955 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: 0.8472253 + inSlope: 0.59118986 + outSlope: 0.59118986 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: 0.9269093 + inSlope: 0.72270787 + outSlope: 0.72270787 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: 0.9638431 + inSlope: 0.4814803 + outSlope: 0.4814803 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: 0.9866787 + inSlope: 0.054808173 + outSlope: 0.054808173 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: 0.9766584 + inSlope: -0.20127137 + outSlope: -0.20127137 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1000001 + value: 0.96976787 + inSlope: -0.1694943 + outSlope: -0.1694943 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1333334 + value: 0.9653588 + inSlope: 0.085933596 + outSlope: 0.085933596 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: 0.98389137 + inSlope: 0.124864995 + outSlope: 0.124864995 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2333333 + value: 0.9838211 + inSlope: -0.009687193 + outSlope: -0.009687193 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: 0.97800034 + inSlope: -0.03551874 + outSlope: -0.03551874 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4333334 + value: 0.9775522 + inSlope: -0.022303484 + outSlope: -0.022303484 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.766667 + value: 0.9680201 + inSlope: -0.07795222 + outSlope: -0.07795222 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.9662371 + inSlope: 0.019869823 + outSlope: 0.019869823 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 0.96462005 + inSlope: -0.0006937987 + outSlope: -0.0006937987 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.000000024555883 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.000000024555883 + inSlope: 0 + 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: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2/mixamorig:LeftHandIndex3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.00000008177395 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.00000008177395 + inSlope: 0 + 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: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2/mixamorig:LeftHandIndex3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.000000056592295 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.000000056592295 + inSlope: 0 + 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: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2/mixamorig:LeftHandIndex3 + 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.033333335 + value: 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: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2/mixamorig:LeftHandIndex3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0848038 + inSlope: 1.0804222 + outSlope: 1.0804222 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.12081787 + inSlope: 1.4390115 + outSlope: 1.4390115 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.1807379 + inSlope: 1.6569037 + outSlope: 1.6569037 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.35091367 + inSlope: 0.38761768 + outSlope: 0.38761768 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.38130492 + inSlope: 0.04521848 + outSlope: 0.04521848 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.3711442 + inSlope: -0.12419036 + outSlope: -0.12419036 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.36887044 + inSlope: -0.058185093 + outSlope: -0.058185093 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: 0.36531392 + inSlope: 0.03220442 + outSlope: 0.03220442 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: 0.39910966 + inSlope: 0.18243065 + outSlope: 0.18243065 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 0.39412358 + inSlope: -0.34322715 + outSlope: -0.34322715 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: 0.3706919 + inSlope: -0.010645684 + outSlope: -0.010645684 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: 0.35639095 + inSlope: -0.5786576 + outSlope: -0.5786576 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666668 + value: 0.15882118 + inSlope: -1.3222778 + outSlope: -1.3222778 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: 0.07192601 + inSlope: -0.11205934 + outSlope: -0.11205934 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: 0.1183679 + inSlope: 0.20745632 + outSlope: 0.20745632 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3666668 + value: 0.08573859 + inSlope: -0.49679846 + outSlope: -0.49679846 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5000002 + value: 0.06794914 + inSlope: 0.23714462 + outSlope: 0.23714462 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7 + value: 0.12689742 + inSlope: 0.23134074 + outSlope: 0.23134074 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0333335 + value: 0.13305992 + inSlope: -0.32421377 + outSlope: -0.32421377 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 0.0848038 + inSlope: 0.008040376 + outSlope: 0.008040376 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.11132288 + inSlope: -0.13644688 + outSlope: -0.13644688 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.10677465 + inSlope: -0.12900554 + outSlope: -0.12900554 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.10272251 + inSlope: -0.041211247 + outSlope: -0.041211247 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.12491898 + inSlope: 0.18459746 + outSlope: 0.18459746 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.13748421 + inSlope: -0.013496203 + outSlope: -0.013496203 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.13720062 + inSlope: 0.0116191115 + outSlope: 0.0116191115 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.13743378 + inSlope: 0.006099784 + outSlope: 0.006099784 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: 0.13806948 + inSlope: -0.005143812 + outSlope: -0.005143812 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: 0.13528721 + inSlope: -0.013236907 + outSlope: -0.013236907 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 0.13651927 + inSlope: 0.043418676 + outSlope: 0.043418676 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: 0.13516231 + inSlope: -0.067905866 + outSlope: -0.067905866 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: 0.13084678 + inSlope: -0.054051258 + outSlope: -0.054051258 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666668 + value: 0.110744044 + inSlope: -0.08055289 + outSlope: -0.08055289 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: 0.10916255 + inSlope: -0.022006541 + outSlope: -0.022006541 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: 0.09708556 + inSlope: -0.047124892 + outSlope: -0.047124892 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3666668 + value: 0.11483837 + inSlope: 0.1794052 + outSlope: 0.1794052 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5000002 + value: 0.11617483 + inSlope: -0.1444995 + outSlope: -0.1444995 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7 + value: 0.098599605 + inSlope: -0.022331359 + outSlope: -0.022331359 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0333335 + value: 0.1080794 + inSlope: 0.049421757 + outSlope: 0.049421757 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 0.11132293 + inSlope: -0.010493482 + outSlope: -0.010493482 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.026197067 + inSlope: 0.3137389 + outSlope: 0.3137389 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.03665503 + inSlope: 0.42206472 + outSlope: 0.42206472 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.054334715 + inSlope: 0.46649253 + outSlope: 0.46649253 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.100551635 + inSlope: 0.1118412 + outSlope: 0.1118412 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.10599716 + inSlope: 0.024347305 + outSlope: 0.024347305 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.10473334 + inSlope: -0.033965833 + outSlope: -0.033965833 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.10409097 + inSlope: -0.016615484 + outSlope: -0.016615484 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: 0.10262229 + inSlope: 0.011444216 + outSlope: 0.011444216 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: 0.11389528 + inSlope: 0.057402886 + outSlope: 0.057402886 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 0.11203766 + inSlope: -0.11492437 + outSlope: -0.11492437 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: 0.102866456 + inSlope: -0.09838371 + outSlope: -0.09838371 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: 0.0859356 + inSlope: -0.4288835 + outSlope: -0.4288835 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666668 + value: -0.023062108 + inSlope: -0.46342695 + outSlope: -0.46342695 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: -0.042543087 + inSlope: 0.08356732 + outSlope: 0.08356732 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: 0.008185763 + inSlope: 0.3526731 + outSlope: 0.3526731 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3666668 + value: 0.021499563 + inSlope: -0.17853111 + outSlope: -0.17853111 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5000002 + value: 0.018501025 + inSlope: 0.19852692 + outSlope: 0.19852692 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7 + value: 0.046496913 + inSlope: 0.057850983 + outSlope: 0.057850983 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0333335 + value: 0.037911467 + inSlope: -0.106227145 + outSlope: -0.106227145 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 0.026197057 + inSlope: 0.015022061 + outSlope: 0.015022061 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.98981273 + inSlope: -0.107343785 + outSlope: -0.107343785 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.9862346 + inSlope: -0.19756077 + outSlope: -0.19756077 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.976642 + inSlope: -0.31950468 + outSlope: -0.31950468 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.92257476 + inSlope: -0.18297406 + outSlope: -0.18297406 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.9080029 + inSlope: -0.019770566 + outSlope: -0.019770566 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.9123919 + inSlope: 0.05301925 + outSlope: 0.05301925 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.9133519 + inSlope: 0.024501055 + outSlope: 0.024501055 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: 0.9148504 + inSlope: -0.013419106 + outSlope: -0.013419106 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: 0.899687 + inSlope: -0.08575905 + outSlope: -0.08575905 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 0.90192944 + inSlope: 0.15668732 + outSlope: 0.15668732 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: 0.9130921 + inSlope: 0.025285155 + outSlope: 0.025285155 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: 0.9211296 + inSlope: 0.26679152 + outSlope: 0.26679152 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666668 + value: 0.9808057 + inSlope: 0.21602964 + outSlope: 0.21602964 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: 0.99050504 + inSlope: 0.014858558 + outSlope: 0.014858558 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: 0.9881784 + inSlope: -0.021028537 + outSlope: -0.021028537 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3666668 + value: 0.9894437 + inSlope: 0.026527967 + outSlope: 0.026527967 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5000002 + value: 0.99072903 + inSlope: -0.004063551 + outSlope: -0.004063551 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7 + value: 0.9859073 + inSlope: -0.030171197 + outSlope: -0.030171197 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0333335 + value: 0.9844677 + inSlope: 0.042357486 + outSlope: 0.042357486 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 0.98981273 + inSlope: 0.0001001359 + outSlope: 0.0001001359 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.3331308 + inSlope: 0.4757425 + outSlope: 0.4757425 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.37891787 + inSlope: 0.9616916 + outSlope: 0.9616916 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.47881404 + inSlope: 0.11694023 + outSlope: 0.11694023 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.46087617 + inSlope: -0.10748685 + outSlope: -0.10748685 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.46368802 + inSlope: 0.06987735 + outSlope: 0.06987735 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: 0.4640808 + inSlope: 0.07712416 + outSlope: 0.07712416 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: 0.45521504 + inSlope: -0.0797265 + outSlope: -0.0797265 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 0.46087632 + inSlope: -0.07066242 + outSlope: -0.07066242 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: 0.37614852 + inSlope: -1.1964397 + outSlope: -1.1964397 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9000001 + value: 0.2401123 + inSlope: -1.4202077 + outSlope: -1.4202077 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666668 + value: 0.13077287 + inSlope: -1.6891878 + outSlope: -1.6891878 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: 0.07877754 + inSlope: -1.0869048 + outSlope: -1.0869048 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1000001 + value: 0.08017344 + inSlope: 1.0298672 + outSlope: 1.0298672 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: 0.16245702 + inSlope: 1.1776273 + outSlope: 1.1776273 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: 0.3231768 + inSlope: 0.3595491 + outSlope: 0.3595491 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5000002 + value: 0.32810485 + inSlope: 0.0379067 + outSlope: 0.0379067 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1333334 + value: 0.3354341 + inSlope: -0.03138411 + outSlope: -0.03138411 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 0.33313295 + inSlope: -0.0075656245 + outSlope: -0.0075656245 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.026532242 + inSlope: -0.048938967 + outSlope: -0.048938967 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.03166632 + inSlope: -0.12297486 + outSlope: -0.12297486 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.050013702 + inSlope: -0.10115369 + outSlope: -0.10115369 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.055795882 + inSlope: -0.0062925187 + outSlope: -0.0062925187 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.05604672 + inSlope: -0.006388686 + outSlope: -0.006388686 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: -0.056108836 + inSlope: -0.007280067 + outSlope: -0.007280067 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: -0.05539456 + inSlope: 0.0041376464 + outSlope: 0.0041376464 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: -0.055795774 + inSlope: 0.00999012 + outSlope: 0.00999012 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: -0.049711227 + inSlope: 0.093363985 + outSlope: 0.093363985 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9000001 + value: -0.037856378 + inSlope: 0.13291633 + outSlope: 0.13291633 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666668 + value: -0.027834237 + inSlope: 0.1522213 + outSlope: 0.1522213 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: -0.023102729 + inSlope: 0.11210361 + outSlope: 0.11210361 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1000001 + value: -0.020302206 + inSlope: -0.0375815 + outSlope: -0.0375815 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: -0.02316528 + inSlope: -0.03870705 + outSlope: -0.03870705 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: -0.02707616 + inSlope: 0.004155668 + outSlope: 0.004155668 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5000002 + value: -0.026177375 + inSlope: -0.0027072942 + outSlope: -0.0027072942 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1333334 + value: -0.026697317 + inSlope: 0.0022652114 + outSlope: 0.0022652114 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: -0.02658792 + inSlope: -0.00007739298 + outSlope: -0.00007739298 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.08532969 + inSlope: 0.11925212 + outSlope: 0.11925212 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.097008444 + inSlope: 0.252406 + outSlope: 0.252406 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.12731859 + inSlope: 0.09449766 + outSlope: 0.09449766 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.12983003 + inSlope: -0.015230479 + outSlope: -0.015230479 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.13032897 + inSlope: 0.0123303365 + outSlope: 0.0123303365 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: 0.13041538 + inSlope: 0.013841527 + outSlope: 0.013841527 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: 0.12878072 + inSlope: -0.015424058 + outSlope: -0.015424058 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 0.12982993 + inSlope: -0.023989923 + outSlope: -0.023989923 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: 0.10505214 + inSlope: -0.3302166 + outSlope: -0.3302166 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9000001 + value: 0.06956508 + inSlope: -0.34467417 + outSlope: -0.34467417 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666668 + value: 0.04550111 + inSlope: -0.33896267 + outSlope: -0.33896267 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: 0.03555048 + inSlope: -0.19706015 + outSlope: -0.19706015 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1000001 + value: 0.037457358 + inSlope: 0.21025862 + outSlope: 0.21025862 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: 0.053828187 + inSlope: 0.22636017 + outSlope: 0.22636017 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: 0.083615616 + inSlope: 0.06535689 + outSlope: 0.06535689 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5000002 + value: 0.084323056 + inSlope: 0.0076998267 + outSlope: 0.0076998267 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1333334 + value: 0.085800655 + inSlope: -0.0063612 + outSlope: -0.0063612 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 0.08531426 + inSlope: -0.0015941277 + outSlope: -0.0015941277 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.93863666 + inSlope: -0.18599866 + outSlope: -0.18599866 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.9197869 + inSlope: -0.4303273 + outSlope: -0.4303273 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.8671942 + inSlope: -0.08280959 + outSlope: -0.08280959 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.8761416 + inSlope: 0.058642037 + outSlope: 0.058642037 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.87456656 + inSlope: -0.039243393 + outSlope: -0.039243393 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: 0.8743413 + inSlope: -0.04349555 + outSlope: -0.04349555 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: 0.879276 + inSlope: 0.04380767 + outSlope: 0.04380767 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 0.87614155 + inSlope: 0.041067343 + outSlope: 0.041067343 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: 0.9192416 + inSlope: 0.5277636 + outSlope: 0.5277636 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9000001 + value: 0.96750903 + inSlope: 0.38080162 + outSlope: 0.38080162 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666668 + value: 0.98997647 + inSlope: 0.25146693 + outSlope: 0.25146693 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: 0.9959902 + inSlope: 0.11384215 + outSlope: 0.11384215 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1000001 + value: 0.99587 + inSlope: -0.10164151 + outSlope: -0.10164151 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: 0.9849739 + inSlope: -0.20830056 + outSlope: -0.20830056 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: 0.94224846 + inSlope: -0.12661827 + outSlope: -0.12661827 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5000002 + value: 0.94050604 + inSlope: -0.014004683 + outSlope: -0.014004683 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1333334 + value: 0.93776834 + inSlope: 0.011882197 + outSlope: 0.011882197 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 0.9386357 + inSlope: 0.0028288392 + outSlope: 0.0028288392 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0000013048725 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.0000013048725 + inSlope: 0 + 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: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2/mixamorig:LeftHandMiddle3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0029256267 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.0029256267 + inSlope: 0 + 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: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2/mixamorig:LeftHandMiddle3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.000449561 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.000449561 + inSlope: 0 + 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: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2/mixamorig:LeftHandMiddle3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.99999565 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.99999565 + inSlope: 0 + 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: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2/mixamorig:LeftHandMiddle3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.2869033 + inSlope: 0.9045302 + outSlope: 0.9045302 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.3170543 + inSlope: 1.1019404 + outSlope: 1.1019404 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.360366 + inSlope: 0.9916626 + outSlope: 0.9916626 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.3966573 + inSlope: -0.17950729 + outSlope: -0.17950729 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.3269497 + inSlope: -0.2699759 + outSlope: -0.2699759 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.3231279 + inSlope: 0.3254677 + outSlope: 0.3254677 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.35745817 + inSlope: 0.0059475526 + outSlope: 0.0059475526 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.31722233 + inSlope: -0.15210684 + outSlope: -0.15210684 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.33576912 + inSlope: -0.058240097 + outSlope: -0.058240097 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.33770823 + inSlope: 0.019903721 + outSlope: 0.019903721 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: 0.35709694 + inSlope: 0.37670544 + outSlope: 0.37670544 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 0.37870586 + inSlope: -0.1976173 + outSlope: -0.1976173 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0.34319714 + inSlope: -0.37356618 + outSlope: -0.37356618 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: 0.33708683 + inSlope: -0.37746584 + outSlope: -0.37746584 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: 0.19571272 + inSlope: -1.3475745 + outSlope: -1.3475745 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: 0.10137765 + inSlope: -0.9509953 + outSlope: -0.9509953 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1000001 + value: 0.09921701 + inSlope: 0.8650929 + outSlope: 0.8650929 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: 0.19309431 + inSlope: 0.6683148 + outSlope: 0.6683148 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3000002 + value: 0.24788514 + inSlope: 0.60253644 + outSlope: 0.60253644 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4333334 + value: 0.2765848 + inSlope: -0.07247425 + outSlope: -0.07247425 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6000001 + value: 0.28812125 + inSlope: 0.25636488 + outSlope: 0.25636488 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9 + value: 0.34206125 + inSlope: 0.049979884 + outSlope: 0.049979884 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0666668 + value: 0.30831292 + inSlope: -0.26999053 + outSlope: -0.26999053 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 0.2869034 + inSlope: -0.02118232 + outSlope: -0.02118232 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.21400952 + inSlope: -0.09763732 + outSlope: -0.09763732 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.21075495 + inSlope: -0.10438732 + outSlope: -0.10438732 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.20705037 + inSlope: -0.10344675 + outSlope: -0.10344675 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.19696873 + inSlope: -0.014500909 + outSlope: -0.014500909 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.19905064 + inSlope: 0.02153612 + outSlope: 0.02153612 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.19929986 + inSlope: -0.04135742 + outSlope: -0.04135742 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.19504206 + inSlope: 0.00423898 + outSlope: 0.00423898 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.20116298 + inSlope: 0.01960808 + outSlope: 0.01960808 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.19867112 + inSlope: 0.011641225 + outSlope: 0.011641225 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.19829959 + inSlope: -0.006581235 + outSlope: -0.006581235 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: 0.19484492 + inSlope: -0.06368174 + outSlope: -0.06368174 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 0.19109115 + inSlope: 0.026937898 + outSlope: 0.026937898 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0.19684508 + inSlope: 0.07063541 + outSlope: 0.07063541 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: 0.18655309 + inSlope: -0.1400928 + outSlope: -0.1400928 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: 0.17954035 + inSlope: 0.13745162 + outSlope: 0.13745162 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: 0.19300365 + inSlope: 0.19625387 + outSlope: 0.19625387 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1000001 + value: 0.19945222 + inSlope: -0.07976808 + outSlope: -0.07976808 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: 0.19005194 + inSlope: 0.0051051416 + outSlope: 0.0051051416 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3000002 + value: 0.20406884 + inSlope: 0.1819818 + outSlope: 0.1819818 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4333334 + value: 0.21818599 + inSlope: -0.014042718 + outSlope: -0.014042718 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6000001 + value: 0.20852925 + inSlope: -0.02424384 + outSlope: -0.02424384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9 + value: 0.20885032 + inSlope: 0.0247434 + outSlope: 0.0247434 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0666668 + value: 0.21401155 + inSlope: 0.014467401 + outSlope: 0.014467401 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 0.2140094 + inSlope: -0.0024828338 + outSlope: -0.0024828338 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.009154017 + inSlope: 0.46609896 + outSlope: 0.46609896 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.02469065 + inSlope: 0.60319823 + outSlope: 0.60319823 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.049367234 + inSlope: 0.63093853 + outSlope: 0.63093853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.10411364 + inSlope: 0.23423582 + outSlope: 0.23423582 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.11318886 + inSlope: -0.030931778 + outSlope: -0.030931778 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.113280654 + inSlope: 0.099408686 + outSlope: 0.099408686 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.12309957 + inSlope: -0.020316318 + outSlope: -0.020316318 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.10618519 + inSlope: -0.054582432 + outSlope: -0.054582432 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.11316089 + inSlope: -0.028276829 + outSlope: -0.028276829 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.114103116 + inSlope: 0.01553845 + outSlope: 0.01553845 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: 0.12296285 + inSlope: 0.16444305 + outSlope: 0.16444305 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 0.13270558 + inSlope: -0.07418573 + outSlope: -0.07418573 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0.11825669 + inSlope: -0.1742216 + outSlope: -0.1742216 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: 0.11995332 + inSlope: 0.015148908 + outSlope: 0.015148908 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: 0.10770705 + inSlope: -0.3201623 + outSlope: -0.3201623 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: 0.07820722 + inSlope: -0.45306486 + outSlope: -0.45306486 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1000001 + value: 0.054351993 + inSlope: -0.016714703 + outSlope: -0.016714703 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: 0.05275536 + inSlope: -0.12057804 + outSlope: -0.12057804 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3000002 + value: 0.02370592 + inSlope: -0.29396492 + outSlope: -0.29396492 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4333334 + value: -0.0010935722 + inSlope: -0.00011022913 + outSlope: -0.00011022913 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6000001 + value: 0.020415055 + inSlope: 0.12980674 + outSlope: 0.12980674 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9 + value: 0.036358185 + inSlope: -0.027022108 + outSlope: -0.027022108 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0666668 + value: 0.016251814 + inSlope: -0.109450206 + outSlope: -0.109450206 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 0.009153978 + inSlope: -0.001979975 + outSlope: -0.001979975 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9337037 + inSlope: -0.28018177 + outSlope: -0.28018177 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.9243643 + inSlope: -0.38253844 + outSlope: -0.38253844 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.90820116 + inSlope: -0.38906687 + outSlope: -0.38906687 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.89052045 + inSlope: 0.05526424 + outSlope: 0.05526424 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.9168812 + inSlope: 0.09599802 + outSlope: 0.09599802 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.9181696 + inSlope: -0.11900066 + outSlope: -0.11900066 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.90500206 + inSlope: -0.0005150661 + outSlope: -0.0005150661 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.92066723 + inSlope: 0.05514089 + outSlope: 0.05514089 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.9137743 + inSlope: 0.022370499 + outSlope: 0.022370499 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.91302294 + inSlope: -0.00790087 + outSlope: -0.00790087 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: 0.9052057 + inSlope: -0.15732244 + outSlope: -0.15732244 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 0.8957987 + inSlope: 0.08609631 + outSlope: 0.08609631 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0.9107596 + inSlope: 0.15230447 + outSlope: 0.15230447 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: 0.9149763 + inSlope: 0.16336279 + outSlope: 0.16336279 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: 0.9580506 + inSlope: 0.2766419 + outSlope: 0.2766419 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: 0.97280824 + inSlope: 0.109185785 + outSlope: 0.109185785 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1000001 + value: 0.97335535 + inSlope: -0.07745601 + outSlope: -0.07745601 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: 0.96115124 + inSlope: -0.1257081 + outSlope: -0.1257081 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3000002 + value: 0.946756 + inSlope: -0.18869448 + outSlope: -0.18869448 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4333334 + value: 0.93589234 + inSlope: 0.024679922 + outSlope: 0.024679922 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6000001 + value: 0.9343902 + inSlope: -0.07642515 + outSlope: -0.07642515 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9 + value: 0.9154528 + inSlope: -0.023222588 + outSlope: -0.023222588 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0666668 + value: 0.92675674 + inSlope: 0.08930513 + outSlope: 0.08930513 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 0.9337037 + inSlope: 0.0071060727 + outSlope: 0.0071060727 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.2096519 + inSlope: 0.6475912 + outSlope: 0.6475912 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.23123828 + inSlope: 0.8855959 + outSlope: 0.8855959 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.3005596 + inSlope: 1.0227414 + outSlope: 1.0227414 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.47285005 + inSlope: 1.1928356 + outSlope: 1.1928356 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.5860681 + inSlope: 0.06924203 + outSlope: 0.06924203 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.5701259 + inSlope: -0.06461799 + outSlope: -0.06461799 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.5633458 + inSlope: 0.026992861 + outSlope: 0.026992861 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.59131205 + inSlope: -0.11113208 + outSlope: -0.11113208 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: 0.5664863 + inSlope: -0.12769651 + outSlope: -0.12769651 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.56099015 + inSlope: 0.35773543 + outSlope: 0.35773543 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 0.5917572 + inSlope: 0.18492328 + outSlope: 0.18492328 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: 0.55774784 + inSlope: -0.17421734 + outSlope: -0.17421734 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: 0.44818658 + inSlope: -1.2738316 + outSlope: -1.2738316 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666668 + value: 0.292896 + inSlope: -1.598541 + outSlope: -1.598541 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: 0.18830502 + inSlope: -0.24609897 + outSlope: -0.24609897 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: 0.20801179 + inSlope: 0.42888606 + outSlope: 0.42888606 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4333334 + value: 0.19719182 + inSlope: -0.01348996 + outSlope: -0.01348996 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7 + value: 0.2024381 + inSlope: -0.012977179 + outSlope: -0.012977179 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0666668 + value: 0.21088046 + inSlope: -0.027903717 + outSlope: -0.027903717 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 0.2096488 + inSlope: -0.02756643 + outSlope: -0.02756643 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.011825243 + inSlope: -0.06597658 + outSlope: -0.06597658 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.014024463 + inSlope: -0.08801621 + outSlope: -0.08801621 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.02057217 + inSlope: -0.090130374 + outSlope: -0.090130374 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.035525724 + inSlope: -0.101446345 + outSlope: -0.101446345 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.04574426 + inSlope: -0.0075269397 + outSlope: -0.0075269397 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.04414914 + inSlope: 0.0062186457 + outSlope: 0.0062186457 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.043468785 + inSlope: -0.005996695 + outSlope: -0.005996695 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.046897825 + inSlope: 0.013783885 + outSlope: 0.013783885 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: -0.043856032 + inSlope: 0.016005594 + outSlope: 0.016005594 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.042510785 + inSlope: -0.030960789 + outSlope: -0.030960789 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: -0.045491062 + inSlope: -0.017741432 + outSlope: -0.017741432 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: -0.04322914 + inSlope: 0.007049842 + outSlope: 0.007049842 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: -0.02962147 + inSlope: 0.1618832 + outSlope: 0.1618832 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666668 + value: -0.010873668 + inSlope: 0.18139327 + outSlope: 0.18139327 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: -0.00032746542 + inSlope: 0.010443664 + outSlope: 0.010443664 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: -0.0053382013 + inSlope: -0.08136769 + outSlope: -0.08136769 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4333334 + value: -0.010504585 + inSlope: 0.0014689299 + outSlope: 0.0014689299 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7 + value: -0.011053928 + inSlope: 0.0013736105 + outSlope: 0.0013736105 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0666668 + value: -0.011959588 + inSlope: 0.0030258978 + outSlope: 0.0030258978 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: -0.011819593 + inSlope: 0.003219995 + outSlope: 0.003219995 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.031191515 + inSlope: 0.13283488 + outSlope: 0.13283488 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.035619345 + inSlope: 0.17891788 + outSlope: 0.17891788 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.049159825 + inSlope: 0.19669598 + outSlope: 0.19669598 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.0836639 + inSlope: 0.24707842 + outSlope: 0.24707842 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.108572416 + inSlope: 0.017698871 + outSlope: 0.017698871 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.104891576 + inSlope: -0.016592368 + outSlope: -0.016592368 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.10328914 + inSlope: 0.012049154 + outSlope: 0.012049154 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.11054156 + inSlope: -0.029376028 + outSlope: -0.029376028 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: 0.104050905 + inSlope: -0.035002302 + outSlope: -0.035002302 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.1036305 + inSlope: 0.09080056 + outSlope: 0.09080056 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 0.111040935 + inSlope: 0.042725507 + outSlope: 0.042725507 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: 0.10185336 + inSlope: -0.042454183 + outSlope: -0.042454183 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: 0.07998254 + inSlope: -0.26219416 + outSlope: -0.26219416 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666668 + value: 0.047172848 + inSlope: -0.34320745 + outSlope: -0.34320745 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: 0.025152348 + inSlope: -0.047275513 + outSlope: -0.047275513 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: 0.03039774 + inSlope: 0.09934912 + outSlope: 0.09934912 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4333334 + value: 0.028570179 + inSlope: -0.0029329704 + outSlope: -0.0029329704 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7 + value: 0.029679129 + inSlope: -0.0030153291 + outSlope: -0.0030153291 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0666668 + value: 0.03145843 + inSlope: -0.005998319 + outSlope: -0.005998319 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 0.031212874 + inSlope: -0.004875255 + outSlope: -0.004875255 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.97720695 + inSlope: -0.15189527 + outSlope: -0.15189527 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.97214377 + inSlope: -0.22663501 + outSlope: -0.22663501 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.95227313 + inSlope: -0.337919 + outSlope: -0.337919 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.8764423 + inSlope: -0.667356 + outSlope: -0.667356 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.8016506 + inSlope: -0.05279564 + outSlope: -0.05279564 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.81363696 + inSlope: 0.047772825 + outSlope: 0.047772825 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.8185862 + inSlope: -0.020443799 + outSlope: -0.020443799 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.7974529 + inSlope: 0.08625009 + outSlope: 0.08625009 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: 0.81629854 + inSlope: 0.09411791 + outSlope: 0.09411791 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.8202095 + inSlope: -0.26192707 + outSlope: -0.26192707 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 0.7971348 + inSlope: -0.14165208 + outSlope: -0.14165208 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: 0.82260233 + inSlope: 0.123543315 + outSlope: 0.123543315 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: 0.8898619 + inSlope: 0.66269827 + outSlope: 0.66269827 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666668 + value: 0.954918 + inSlope: 0.5155557 + outSlope: 0.5155557 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: 0.98178846 + inSlope: 0.050785888 + outSlope: 0.050785888 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: 0.9776393 + inSlope: -0.09406784 + outSlope: -0.09406784 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4333334 + value: 0.97989225 + inSlope: 0.0028207926 + outSlope: 0.0028207926 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7 + value: 0.97878283 + inSlope: 0.0027930697 + outSlope: 0.0027930697 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0666668 + value: 0.97693235 + inSlope: 0.0062656463 + outSlope: 0.0062656463 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 0.977207 + inSlope: 0.0061243833 + outSlope: 0.0061243833 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.00000005062325 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.00000005062325 + inSlope: 0 + 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: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2/mixamorig:LeftHandPinky3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.00000010534877 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.00000010534877 + inSlope: 0 + 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: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2/mixamorig:LeftHandPinky3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.000000019823897 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.000000019823897 + inSlope: 0 + 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: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2/mixamorig:LeftHandPinky3 + 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.033333335 + value: 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: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2/mixamorig:LeftHandPinky3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.6114056 + inSlope: -0.10427355 + outSlope: -0.10427355 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.6079298 + inSlope: -0.16333757 + outSlope: -0.16333757 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.60051644 + inSlope: -0.24069604 + outSlope: -0.24069604 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.5792699 + inSlope: -0.48435247 + outSlope: -0.48435247 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.36643645 + inSlope: -1.111376 + outSlope: -1.111376 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.22326985 + inSlope: -0.91236603 + outSlope: -0.91236603 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.12528682 + inSlope: -0.84941757 + outSlope: -0.84941757 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.02833766 + inSlope: -1.1379242 + outSlope: -1.1379242 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.08349713 + inSlope: 0.2777673 + outSlope: 0.2777673 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.03231621 + inSlope: 0.37370804 + outSlope: 0.37370804 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.03557094 + inSlope: -0.16279241 + outSlope: -0.16279241 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.04316903 + inSlope: -0.57517844 + outSlope: -0.57517844 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.07391624 + inSlope: -0.96400476 + outSlope: -0.96400476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.10743606 + inSlope: -0.34405935 + outSlope: -0.34405935 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333334 + value: -0.071519114 + inSlope: 0.7596345 + outSlope: 0.7596345 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: 0.07446901 + inSlope: 1.9006853 + outSlope: 1.9006853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666668 + value: 0.31214926 + inSlope: 2.3903675 + outSlope: 2.3903675 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: 0.44402584 + inSlope: 1.5920129 + outSlope: 1.5920129 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: 0.5210627 + inSlope: 0.66131157 + outSlope: 0.66131157 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 0.4954915 + inSlope: -0.588669 + outSlope: -0.588669 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: 0.44050193 + inSlope: 0.23136777 + outSlope: 0.23136777 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: 0.5128993 + inSlope: 0.39398015 + outSlope: 0.39398015 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: 0.577103 + inSlope: 0.18046814 + outSlope: 0.18046814 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5333335 + value: 0.5812271 + inSlope: 0.02301427 + outSlope: 0.02301427 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: 0.5882341 + inSlope: -0.02504381 + outSlope: -0.02504381 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1333334 + value: 0.5888242 + inSlope: 0.123693764 + outSlope: 0.123693764 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 0.61140543 + inSlope: 0.039464273 + outSlope: 0.039464273 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.04921142 + inSlope: -0.4650416 + outSlope: -0.4650416 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.06471281 + inSlope: -0.47312737 + outSlope: -0.47312737 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.080753244 + inSlope: -0.18839312 + outSlope: -0.18839312 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.07337171 + inSlope: 0.03403824 + outSlope: 0.03403824 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.14912784 + inSlope: -0.5958042 + outSlope: -0.5958042 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.21452679 + inSlope: -0.28311974 + outSlope: -0.28311974 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.24538131 + inSlope: -0.3434491 + outSlope: -0.3434491 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.29824823 + inSlope: -0.31355935 + outSlope: -0.31355935 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.31290746 + inSlope: 0.047928467 + outSlope: 0.047928467 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.3000193 + inSlope: 0.41294456 + outSlope: 0.41294456 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.2811227 + inSlope: 0.5027618 + outSlope: 0.5027618 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.26650187 + inSlope: 0.027899712 + outSlope: 0.027899712 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.27926278 + inSlope: -0.55162877 + outSlope: -0.55162877 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.30327713 + inSlope: -0.65495807 + outSlope: -0.65495807 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333334 + value: -0.34108824 + inSlope: -0.5138419 + outSlope: -0.5138419 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: -0.3818708 + inSlope: 0.033091024 + outSlope: 0.033091024 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666668 + value: -0.34143874 + inSlope: 0.6997942 + outSlope: 0.6997942 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: -0.2835163 + inSlope: 0.7521659 + outSlope: 0.7521659 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: -0.24632595 + inSlope: 0.5998837 + outSlope: 0.5998837 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: -0.18473572 + inSlope: 0.17216825 + outSlope: 0.17216825 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: -0.15217815 + inSlope: 0.20640206 + outSlope: 0.20640206 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: -0.1185178 + inSlope: 0.11660026 + outSlope: 0.11660026 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: -0.10895476 + inSlope: 0.012676802 + outSlope: 0.012676802 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5333335 + value: -0.0962553 + inSlope: 0.08693215 + outSlope: 0.08693215 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: -0.06519165 + inSlope: 0.099703446 + outSlope: 0.099703446 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1333334 + value: -0.056028314 + inSlope: 0.0658669 + outSlope: 0.0658669 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: -0.049211346 + inSlope: -0.004264046 + outSlope: -0.004264046 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.08838324 + inSlope: 0.9770681 + outSlope: 0.9770681 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.055814303 + inSlope: 0.9714041 + outSlope: 0.9714041 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.023622965 + inSlope: 0.26224345 + outSlope: 0.26224345 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.060838 + inSlope: -0.564867 + outSlope: -0.564867 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.045208044 + inSlope: 0.67664814 + outSlope: 0.67664814 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.021865945 + inSlope: 0.14534847 + outSlope: 0.14534847 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.042595398 + inSlope: 0.4168234 + outSlope: 0.4168234 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.10739322 + inSlope: 0.34528998 + outSlope: 0.34528998 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.12324371 + inSlope: 0.028407713 + outSlope: 0.028407713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.110295825 + inSlope: -1.0271727 + outSlope: -1.0271727 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.055303913 + inSlope: -1.4491801 + outSlope: -1.4491801 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.013683903 + inSlope: -0.26505172 + outSlope: -0.26505172 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.0376339 + inSlope: 1.0777922 + outSlope: 1.0777922 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.08553673 + inSlope: 1.6336205 + outSlope: 1.6336205 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333334 + value: 0.21472971 + inSlope: 2.002389 + outSlope: 2.002389 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: 0.45521042 + inSlope: 1.3640547 + outSlope: 1.3640547 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666668 + value: 0.5172794 + inSlope: -0.22238483 + outSlope: -0.22238483 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: 0.47274044 + inSlope: -1.0920271 + outSlope: -1.0920271 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: 0.38436714 + inSlope: -1.4571779 + outSlope: -1.4571779 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 0.15705472 + inSlope: -1.0625892 + outSlope: -1.0625892 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: 0.019322114 + inSlope: -0.35032278 + outSlope: -0.35032278 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: -0.0062493263 + inSlope: 0.04217423 + outSlope: 0.04217423 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: 0.025582159 + inSlope: 0.14617679 + outSlope: 0.14617679 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5333335 + value: -0.0024093396 + inSlope: -0.1967648 + outSlope: -0.1967648 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: -0.07176524 + inSlope: -0.26329562 + outSlope: -0.26329562 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1333334 + value: -0.092873365 + inSlope: -0.043079782 + outSlope: -0.043079782 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: -0.08838317 + inSlope: 0.04582715 + outSlope: 0.04582715 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.7848247 + inSlope: 0.13661206 + outSlope: 0.13661206 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.78937846 + inSlope: 0.15523195 + outSlope: 0.15523195 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.7951735 + inSlope: 0.1802471 + outSlope: 0.1802471 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.8095442 + inSlope: 0.30699137 + outSlope: 0.30699137 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.9173012 + inSlope: 0.38006443 + outSlope: 0.38006443 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.95060545 + inSlope: 0.149636 + outSlope: 0.149636 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.9603525 + inSlope: 0.0013518166 + outSlope: 0.0013518166 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.94800407 + inSlope: -0.16615734 + outSlope: -0.16615734 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.93804485 + inSlope: 0.032714065 + outSlope: 0.032714065 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.9469842 + inSlope: 0.24407662 + outSlope: 0.24407662 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.9574165 + inSlope: 0.23678653 + outSlope: 0.23678653 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.9627699 + inSlope: -0.011863992 + outSlope: -0.011863992 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.9566255 + inSlope: -0.29722536 + outSlope: -0.29722536 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.9429549 + inSlope: -0.399679 + outSlope: -0.399679 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333334 + value: 0.9123787 + inSlope: -0.601679 + outSlope: -0.601679 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: 0.8008824 + inSlope: -0.9455923 + outSlope: -0.9455923 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666668 + value: 0.7200031 + inSlope: -0.52843744 + outSlope: -0.52843744 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: 0.7063824 + inSlope: 0.040048994 + outSlope: 0.040048994 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: 0.7211651 + inSlope: 0.5002211 + outSlope: 0.5002211 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 0.83408314 + inSlope: 0.5918648 + outSlope: 0.5918648 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: 0.8845488 + inSlope: -0.07211569 + outSlope: -0.07211569 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: 0.85020524 + inSlope: -0.22109662 + outSlope: -0.22109662 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: 0.8089664 + inSlope: -0.13107699 + outSlope: -0.13107699 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5333335 + value: 0.8080248 + inSlope: -0.0069031185 + outSlope: -0.0069031185 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: 0.80285764 + inSlope: 0.0032097131 + outSlope: 0.0032097131 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1333334 + value: 0.80095035 + inSlope: -0.091364175 + outSlope: -0.091364175 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 0.78482485 + inSlope: -0.02575996 + outSlope: -0.02575996 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.067169055 + inSlope: -0.09766459 + outSlope: -0.09766459 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.06391357 + inSlope: -0.11478658 + outSlope: -0.11478658 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.059516616 + inSlope: -0.21916947 + outSlope: -0.21916947 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.04930227 + inSlope: -0.24246928 + outSlope: -0.24246928 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.043351997 + inSlope: 0.075479485 + outSlope: 0.075479485 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.10022081 + inSlope: 0.8096124 + outSlope: 0.8096124 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.15879284 + inSlope: 0.083197445 + outSlope: 0.083197445 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.09416165 + inSlope: -0.94155633 + outSlope: -0.94155633 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.14166331 + inSlope: -1.9566314 + outSlope: -1.9566314 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.21039481 + inSlope: -2.1669014 + outSlope: -2.1669014 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.2861234 + inSlope: -2.0534968 + outSlope: -2.0534968 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.37738365 + inSlope: -0.5860568 + outSlope: -0.5860568 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.37607545 + inSlope: 0.4491461 + outSlope: 0.4491461 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.356422 + inSlope: 0.42762893 + outSlope: 0.42762893 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.34756684 + inSlope: 0.48152876 + outSlope: 0.48152876 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.32432008 + inSlope: 1.8789794 + outSlope: 1.8789794 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.22230162 + inSlope: 3.6054325 + outSlope: 3.6054325 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.08395815 + inSlope: 4.2019663 + outSlope: 4.2019663 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.057829708 + inSlope: 3.9448376 + outSlope: 3.9448376 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.17903128 + inSlope: 2.545332 + outSlope: 2.545332 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: 0.22751835 + inSlope: 0.9612247 + outSlope: 0.9612247 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 0.2509672 + inSlope: 0.12628478 + outSlope: 0.12628478 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.23287323 + inSlope: -0.03644526 + outSlope: -0.03644526 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: 0.27709118 + inSlope: 0.49769378 + outSlope: 0.49769378 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: 0.38093022 + inSlope: 0.19442543 + outSlope: 0.19442543 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9000001 + value: 0.34623137 + inSlope: -0.6502356 + outSlope: -0.6502356 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1000001 + value: 0.25173846 + inSlope: -0.103151605 + outSlope: -0.103151605 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3666668 + value: 0.25658953 + inSlope: -0.13004121 + outSlope: -0.13004121 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7 + value: 0.1450355 + inSlope: -0.31676918 + outSlope: -0.31676918 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.966667 + value: 0.076050684 + inSlope: -0.10294196 + outSlope: -0.10294196 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1666667 + value: 0.06515367 + inSlope: -0.027558975 + outSlope: -0.027558975 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 0.06716997 + inSlope: 0.040501393 + outSlope: 0.040501393 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0051383013 + inSlope: -0.085464336 + outSlope: -0.085464336 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.007987113 + inSlope: -0.085428655 + outSlope: -0.085428655 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.010833546 + inSlope: -0.005169697 + outSlope: -0.005169697 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.008331759 + inSlope: 0.070859954 + outSlope: 0.070859954 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.0061095483 + inSlope: 0.09664866 + outSlope: 0.09664866 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.022269305 + inSlope: 0.55435175 + outSlope: 0.55435175 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.08618624 + inSlope: 0.38267615 + outSlope: 0.38267615 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.033080615 + inSlope: -1.2725503 + outSlope: -1.2725503 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.24828161 + inSlope: -1.237551 + outSlope: -1.237551 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.2790117 + inSlope: -0.41346455 + outSlope: -0.41346455 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.2758459 + inSlope: 0.5987907 + outSlope: 0.5987907 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.17891999 + inSlope: 1.750237 + outSlope: 1.750237 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.08433364 + inSlope: 0.82240605 + outSlope: 0.82240605 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.06758274 + inSlope: 0.23627445 + outSlope: 0.23627445 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.068582 + inSlope: -0.12355767 + outSlope: -0.12355767 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.075819924 + inSlope: -0.27244925 + outSlope: -0.27244925 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.08674528 + inSlope: 0.24048862 + outSlope: 0.24048862 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.059787367 + inSlope: 1.3012744 + outSlope: 1.3012744 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.0000064833775 + inSlope: 1.7190576 + outSlope: 1.7190576 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.054816574 + inSlope: 1.1808631 + outSlope: 1.1808631 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: 0.07873062 + inSlope: 0.50157034 + outSlope: 0.50157034 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 0.095783696 + inSlope: 0.17231566 + outSlope: 0.17231566 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.09305994 + inSlope: -0.01833943 + outSlope: -0.01833943 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: 0.12947202 + inSlope: 0.43813127 + outSlope: 0.43813127 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: 0.18946409 + inSlope: -0.25788698 + outSlope: -0.25788698 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9000001 + value: 0.10547298 + inSlope: -0.5329836 + outSlope: -0.5329836 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1000001 + value: 0.051745888 + inSlope: -0.02909339 + outSlope: -0.02909339 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3666668 + value: 0.06639288 + inSlope: -0.03560021 + outSlope: -0.03560021 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7 + value: 0.020468356 + inSlope: -0.12905492 + outSlope: -0.12905492 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.966667 + value: -0.0039705015 + inSlope: -0.04400506 + outSlope: -0.04400506 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1666667 + value: -0.0060003693 + inSlope: 0.0065863347 + outSlope: 0.0065863347 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: -0.0051466958 + inSlope: 0.0038320702 + outSlope: 0.0038320702 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.09386365 + inSlope: -1.22158 + outSlope: -1.22158 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.053144313 + inSlope: -1.2216787 + outSlope: -1.2216787 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.0124184 + inSlope: 0.33283895 + outSlope: 0.33283895 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.07533358 + inSlope: 2.5335598 + outSlope: 2.5335598 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.18132238 + inSlope: 2.9138973 + outSlope: 2.9138973 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.4388925 + inSlope: 2.3806539 + outSlope: 2.3806539 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.64832556 + inSlope: 1.7613817 + outSlope: 1.7613817 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.80716854 + inSlope: 0.5696898 + outSlope: 0.5696898 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.7447883 + inSlope: -1.5912039 + outSlope: -1.5912039 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.68200374 + inSlope: -2.3255787 + outSlope: -2.3255787 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.5897497 + inSlope: -2.9643135 + outSlope: -2.9643135 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.3745139 + inSlope: -3.1855466 + outSlope: -3.1855466 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.19976652 + inSlope: -1.560473 + outSlope: -1.560473 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.16798143 + inSlope: -0.42786866 + outSlope: -0.42786866 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.17124191 + inSlope: 0.4349912 + outSlope: 0.4349912 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.19698086 + inSlope: 1.8888882 + outSlope: 1.8888882 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.29716772 + inSlope: 2.8650682 + outSlope: 2.8650682 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.38798523 + inSlope: 1.4608858 + outSlope: 1.4608858 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.39456004 + inSlope: -0.059576742 + outSlope: -0.059576742 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.38401347 + inSlope: -0.20458882 + outSlope: -0.20458882 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: 0.3809208 + inSlope: -0.005331937 + outSlope: -0.005331937 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 0.39414394 + inSlope: 0.33698502 + outSlope: 0.33698502 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.42027086 + inSlope: 0.009202189 + outSlope: 0.009202189 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: 0.45070305 + inSlope: 0.3012516 + outSlope: 0.3012516 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: 0.41625753 + inSlope: -0.7730868 + outSlope: -0.7730868 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9000001 + value: 0.27175245 + inSlope: -0.65533674 + outSlope: -0.65533674 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1000001 + value: 0.21168104 + inSlope: 0.114477016 + outSlope: 0.114477016 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3666668 + value: 0.26788774 + inSlope: 0.069423236 + outSlope: 0.069423236 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7 + value: 0.21031676 + inSlope: -0.36048925 + outSlope: -0.36048925 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.966667 + value: 0.08787805 + inSlope: -0.46343148 + outSlope: -0.46343148 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1666667 + value: 0.07988458 + inSlope: 0.19756788 + outSlope: 0.19756788 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 0.0938641 + inSlope: -0.012010496 + outSlope: -0.012010496 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.99330336 + inSlope: 0.09612142 + outSlope: 0.09612142 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.9965074 + inSlope: 0.07181882 + outSlope: 0.07181882 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.9980913 + inSlope: -0.009050665 + outSlope: -0.009050665 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.995904 + inSlope: -0.23463787 + outSlope: -0.23463787 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.98244876 + inSlope: -0.516986 + outSlope: -0.516986 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.89265513 + inSlope: -1.2744365 + outSlope: -1.2744365 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.73961526 + inSlope: -1.5906019 + outSlope: -1.5906019 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.58182317 + inSlope: -0.5741646 + outSlope: -0.5741646 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.6029744 + inSlope: 0.96911454 + outSlope: 0.96911454 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.642462 + inSlope: 1.5006903 + outSlope: 1.5006903 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.70302045 + inSlope: 1.8612771 + outSlope: 1.8612771 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.82783365 + inSlope: 1.593509 + outSlope: 1.593509 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.9008599 + inSlope: 0.6574686 + outSlope: 0.6574686 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.9166124 + inSlope: 0.27707115 + outSlope: 0.27707115 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.9193313 + inSlope: 0.082297325 + outSlope: 0.082297325 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.9220989 + inSlope: 0.07792264 + outSlope: 0.07792264 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.92452615 + inSlope: -0.093218476 + outSlope: -0.093218476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.9158843 + inSlope: -0.11216389 + outSlope: -0.11216389 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.9170486 + inSlope: -0.17610244 + outSlope: -0.17610244 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.90414417 + inSlope: -0.3650365 + outSlope: -0.3650365 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: 0.89271283 + inSlope: -0.26439598 + outSlope: -0.26439598 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 0.87891495 + inSlope: -0.20519188 + outSlope: -0.20519188 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 0.87205637 + inSlope: 0.0073680654 + outSlope: 0.0073680654 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: 0.83864427 + inSlope: -0.39478332 + outSlope: -0.39478332 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: 0.8035703 + inSlope: 0.36539894 + outSlope: 0.36539894 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9000001 + value: 0.8917118 + inSlope: 0.5168005 + outSlope: 0.5168005 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1000001 + value: 0.94294286 + inSlope: 0.003544095 + outSlope: 0.003544095 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3666668 + value: 0.9262775 + inSlope: 0.018305201 + outSlope: 0.018305201 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7 + value: 0.9665985 + inSlope: 0.12865093 + outSlope: 0.12865093 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.966667 + value: 0.993216 + inSlope: 0.049517885 + outSlope: 0.049517885 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1666667 + value: 0.9946545 + inSlope: -0.013997516 + outSlope: -0.013997516 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 0.99330324 + inSlope: -0.0015521065 + outSlope: -0.0015521065 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.051585913 + inSlope: 0.16031115 + outSlope: 0.16031115 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.046242207 + inSlope: 0.21410704 + outSlope: 0.21410704 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.03731211 + inSlope: 0.13339944 + outSlope: 0.13339944 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.03734891 + inSlope: -0.13760705 + outSlope: -0.13760705 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.12671189 + inSlope: -1.0392399 + outSlope: -1.0392399 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.22981013 + inSlope: -0.9014398 + outSlope: -0.9014398 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.27520365 + inSlope: -0.34310305 + outSlope: -0.34310305 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.28108153 + inSlope: 0.14090417 + outSlope: 0.14090417 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.2612894 + inSlope: 0.2409936 + outSlope: 0.2409936 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.25528672 + inSlope: 0.09246014 + outSlope: 0.09246014 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.25512537 + inSlope: -0.16068207 + outSlope: -0.16068207 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.28938124 + inSlope: -0.25237572 + outSlope: -0.25237572 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.28918108 + inSlope: 0.54076505 + outSlope: 0.54076505 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.260119 + inSlope: 1.2174966 + outSlope: 1.2174966 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.20801467 + inSlope: 1.41314 + outSlope: 1.41314 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.16590966 + inSlope: 1.5820168 + outSlope: 1.5820168 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.1025469 + inSlope: 2.252011 + outSlope: 2.252011 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.015775574 + inSlope: 1.7169671 + outSlope: 1.7169671 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.011917624 + inSlope: 0.61180586 + outSlope: 0.61180586 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.03535324 + inSlope: 0.32656863 + outSlope: 0.32656863 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.046782702 + inSlope: 0.7033859 + outSlope: 0.7033859 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: 0.08224559 + inSlope: 1.1983972 + outSlope: 1.1983972 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333334 + value: 0.12667593 + inSlope: 1.3370354 + outSlope: 1.3370354 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.21033166 + inSlope: 1.0144801 + outSlope: 1.0144801 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: 0.25171944 + inSlope: 0.07207481 + outSlope: 0.07207481 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666668 + value: 0.20150357 + inSlope: -0.70664585 + outSlope: -0.70664585 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: 0.1753832 + inSlope: 0.30666867 + outSlope: 0.30666867 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 0.21073417 + inSlope: -0.16622402 + outSlope: -0.16622402 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: 0.09630532 + inSlope: -0.66829 + outSlope: -0.66829 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666668 + value: 0.072480984 + inSlope: 0.19775009 + outSlope: 0.19775009 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: 0.0994645 + inSlope: -0.0052158963 + outSlope: -0.0052158963 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: 0.05657217 + inSlope: -0.30411384 + outSlope: -0.30411384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6333334 + value: 0.0054044905 + inSlope: -0.13779634 + outSlope: -0.13779634 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9333334 + value: -0.02537006 + inSlope: -0.102647066 + outSlope: -0.102647066 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1666667 + value: -0.043324336 + inSlope: -0.054909423 + outSlope: -0.054909423 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: -0.051585697 + inSlope: -0.023127481 + outSlope: -0.023127481 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.08495934 + inSlope: -0.68450373 + outSlope: -0.68450373 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.06214255 + inSlope: -0.95241463 + outSlope: -0.95241463 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.02146503 + inSlope: -1.2507124 + outSlope: -1.2507124 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.021238284 + inSlope: -1.3074095 + outSlope: -1.3074095 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.16775572 + inSlope: -0.7574161 + outSlope: -0.7574161 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.20497361 + inSlope: 0.07620782 + outSlope: 0.07620782 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.17837396 + inSlope: 0.7399745 + outSlope: 0.7399745 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.11286751 + inSlope: 1.0638824 + outSlope: 1.0638824 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.061039366 + inSlope: 0.053585798 + outSlope: 0.053585798 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.07316305 + inSlope: -0.36242187 + outSlope: -0.36242187 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.085200824 + inSlope: -0.75139725 + outSlope: -0.75139725 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.28537592 + inSlope: -2.8166952 + outSlope: -2.8166952 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.47875085 + inSlope: -2.6807375 + outSlope: -2.6807375 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.5610812 + inSlope: -2.11851 + outSlope: -2.11851 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.61998487 + inSlope: -1.3476424 + outSlope: -1.3476424 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.65092397 + inSlope: -0.38385314 + outSlope: -0.38385314 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.6455751 + inSlope: 0.31502712 + outSlope: 0.31502712 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.62992215 + inSlope: 1.0253581 + outSlope: 1.0253581 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.57721794 + inSlope: 2.3383985 + outSlope: 2.3383985 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.3462514 + inSlope: 4.122433 + outSlope: 4.122433 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.19919997 + inSlope: 4.532337 + outSlope: 4.532337 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: -0.04409589 + inSlope: 4.31497 + outSlope: 4.31497 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333334 + value: 0.0884649 + inSlope: 3.222866 + outSlope: 3.222866 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.20787776 + inSlope: 0.53664196 + outSlope: 0.53664196 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: 0.19803709 + inSlope: -0.24302223 + outSlope: -0.24302223 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666668 + value: 0.19601832 + inSlope: 0.5369598 + outSlope: 0.5369598 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: 0.29358593 + inSlope: 0.59163034 + outSlope: 0.59163034 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 0.3528261 + inSlope: 0.21462208 + outSlope: 0.21462208 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: 0.35087013 + inSlope: -0.29586345 + outSlope: -0.29586345 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666668 + value: 0.32330027 + inSlope: 0.18343991 + outSlope: 0.18343991 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: 0.43125013 + inSlope: 0.5202364 + outSlope: 0.5202364 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: 0.4325553 + inSlope: -0.5210187 + outSlope: -0.5210187 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6333334 + value: 0.28453138 + inSlope: -0.4569478 + outSlope: -0.4569478 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9333334 + value: 0.24560155 + inSlope: -0.13776894 + outSlope: -0.13776894 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1666667 + value: 0.15416166 + inSlope: -0.55217016 + outSlope: -0.55217016 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 0.08495898 + inSlope: -0.15263438 + outSlope: -0.15263438 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.018486572 + inSlope: 1.2844019 + outSlope: 1.2844019 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.024326827 + inSlope: 1.2727592 + outSlope: 1.2727592 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.06636404 + inSlope: 0.5947443 + outSlope: 0.5947443 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.06397645 + inSlope: -0.06858565 + outSlope: -0.06858565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.085378855 + inSlope: 0.26691368 + outSlope: 0.26691368 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.07058909 + inSlope: -0.6275041 + outSlope: -0.6275041 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.01676344 + inSlope: -0.52723587 + outSlope: -0.52723587 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.0100714 + inSlope: 0.5315937 + outSlope: 0.5315937 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.088270396 + inSlope: 1.3187318 + outSlope: 1.3187318 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.13076867 + inSlope: 1.2076511 + outSlope: 1.2076511 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.16878048 + inSlope: 0.6645334 + outSlope: 0.6645334 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.11979955 + inSlope: -1.2905145 + outSlope: -1.2905145 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.034662325 + inSlope: -0.92257464 + outSlope: -0.92257464 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.009550021 + inSlope: -0.34019065 + outSlope: -0.34019065 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.011982924 + inSlope: 0.06651825 + outSlope: 0.06651825 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.01398457 + inSlope: 0.19639482 + outSlope: 0.19639482 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.025075903 + inSlope: 0.5306066 + outSlope: 0.5306066 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.049358357 + inSlope: 0.7179084 + outSlope: 0.7179084 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.07293646 + inSlope: 0.72391844 + outSlope: 0.72391844 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.119313404 + inSlope: 0.5170462 + outSlope: 0.5170462 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.13208933 + inSlope: -0.016267389 + outSlope: -0.016267389 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: 0.11822891 + inSlope: -0.65627545 + outSlope: -0.65627545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333334 + value: 0.08833757 + inSlope: -0.5947077 + outSlope: -0.5947077 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.08138376 + inSlope: 0.07853437 + outSlope: 0.07853437 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: 0.08678976 + inSlope: -0.029594783 + outSlope: -0.029594783 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666668 + value: 0.08538244 + inSlope: 0.24664944 + outSlope: 0.24664944 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: 0.1357521 + inSlope: 0.16538492 + outSlope: 0.16538492 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 0.09099733 + inSlope: -0.57977104 + outSlope: -0.57977104 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: 0.051944204 + inSlope: 0.27377594 + outSlope: 0.27377594 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666668 + value: 0.097322494 + inSlope: 0.16634113 + outSlope: 0.16634113 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: 0.06441293 + inSlope: -0.301704 + outSlope: -0.301704 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: 0.0382752 + inSlope: 0.11822088 + outSlope: 0.11822088 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6333334 + value: 0.06960175 + inSlope: -0.02892195 + outSlope: -0.02892195 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9333334 + value: 0.021097928 + inSlope: -0.065582335 + outSlope: -0.065582335 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1666667 + value: -0.0067936103 + inSlope: -0.16341424 + outSlope: -0.16341424 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: -0.018486578 + inSlope: 0.0014784015 + outSlope: 0.0014784015 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.99487644 + inSlope: 0.054665204 + outSlope: 0.054665204 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.9966986 + inSlope: 0.029851196 + outSlope: 0.029851196 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.9968665 + inSlope: 0.004912018 + outSlope: 0.004912018 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.9970261 + inSlope: -0.030409995 + outSlope: -0.030409995 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.9739161 + inSlope: -0.28701964 + outSlope: -0.28701964 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.9487836 + inSlope: -0.15820922 + outSlope: -0.15820922 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.94454473 + inSlope: 0.051013835 + outSlope: 0.051013835 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.9529705 + inSlope: 0.15198478 + outSlope: 0.15198478 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.959276 + inSlope: -0.049126405 + outSlope: -0.049126405 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.9551835 + inSlope: -0.16549323 + outSlope: -0.16549323 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.94824314 + inSlope: -0.22932619 + outSlope: -0.22932619 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.9057964 + inSlope: -0.820217 + outSlope: -0.820217 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.82823336 + inSlope: -1.2990115 + outSlope: -1.2990115 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.7857703 + inSlope: -1.076863 + outSlope: -1.076863 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.7564425 + inSlope: -0.67666256 + outSlope: -0.67666256 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.7406595 + inSlope: -0.0011609793 + outSlope: -0.0011609793 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.75636506 + inSlope: 0.5140239 + outSlope: 0.5140239 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.77492774 + inSlope: 0.85310996 + outSlope: 0.85310996 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.81323904 + inSlope: 1.4969387 + outSlope: 1.4969387 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.92985183 + inSlope: 1.4274683 + outSlope: 1.4274683 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.9698882 + inSlope: 0.88109577 + outSlope: 0.88109577 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: 0.9885915 + inSlope: 0.21219268 + outSlope: 0.21219268 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333334 + value: 0.98403436 + inSlope: -0.32228446 + outSlope: -0.32228446 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.95180047 + inSlope: -0.33028486 + outSlope: -0.33028486 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: 0.9433378 + inSlope: 0.03516657 + outSlope: 0.03516657 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666668 + value: 0.9558677 + inSlope: 0.014389912 + outSlope: 0.014389912 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: 0.92984915 + inSlope: -0.26779687 + outSlope: -0.26779687 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 0.9070967 + inSlope: 0.012486588 + outSlope: 0.012486588 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: 0.93000925 + inSlope: 0.16707826 + outSlope: 0.16707826 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666668 + value: 0.9384838 + inSlope: -0.09648463 + outSlope: -0.09648463 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: 0.8944167 + inSlope: -0.22726378 + outSlope: -0.22726378 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: 0.89901644 + inSlope: 0.26330018 + outSlope: 0.26330018 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6333334 + value: 0.9561215 + inSlope: 0.13972266 + outSlope: 0.13972266 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9333334 + value: 0.9688091 + inSlope: 0.033499777 + outSlope: 0.033499777 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1666667 + value: 0.987072 + inSlope: 0.082754 + outSlope: 0.082754 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 0.99487644 + inSlope: 0.01226486 + outSlope: 0.01226486 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.19585463 + inSlope: -0.029620973 + outSlope: -0.029620973 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.18093088 + inSlope: -0.115994796 + outSlope: -0.115994796 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.17371514 + inSlope: -0.0000037997988 + outSlope: -0.0000037997988 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: 0.17371494 + inSlope: -0.0028071578 + outSlope: -0.0028071578 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3000002 + value: 0.16684526 + inSlope: 0.03373082 + outSlope: 0.03373082 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6000001 + value: 0.19166882 + inSlope: 0.06261109 + outSlope: 0.06261109 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9333334 + value: 0.19585449 + inSlope: 0.0000033527485 + outSlope: 0.0000033527485 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 0.19585474 + inSlope: 0.000003576282 + outSlope: 0.000003576282 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.06724082 + inSlope: -0.0329154 + outSlope: -0.0329154 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.082549706 + inSlope: -0.11681923 + outSlope: -0.11681923 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.08982191 + inSlope: -0.00000033527635 + outSlope: -0.00000033527635 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: -0.08982176 + inSlope: -0.011411581 + outSlope: -0.011411581 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3000002 + value: -0.1228245 + inSlope: 0.07399126 + outSlope: 0.07399126 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6000001 + value: -0.0784665 + inSlope: 0.12541775 + outSlope: 0.12541775 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9333334 + value: -0.06724073 + inSlope: -0.0000021234223 + outSlope: -0.0000021234223 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: -0.067240536 + inSlope: 0.00000044703526 + outSlope: 0.00000044703526 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.23561525 + inSlope: 0.140609 + outSlope: 0.140609 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.30330032 + inSlope: 0.5045302 + outSlope: 0.5045302 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.33405218 + inSlope: 0.0000013411058 + outSlope: 0.0000013411058 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: 0.33405215 + inSlope: 0.013998462 + outSlope: 0.013998462 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3000002 + value: 0.37318224 + inSlope: -0.1669945 + outSlope: -0.1669945 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6000001 + value: 0.25499365 + inSlope: -0.2973348 + outSlope: -0.2973348 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9333334 + value: 0.23561521 + inSlope: -0.00000089406734 + outSlope: -0.00000089406734 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 0.23561521 + inSlope: -0.00000044703526 + outSlope: -0.00000044703526 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9495289 + inSlope: -0.031508803 + outSlope: -0.031508803 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.9319112 + inSlope: -0.1512998 + outSlope: -0.1512998 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.9220435 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: 0.92204356 + inSlope: -0.0056684073 + outSlope: -0.0056684073 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3000002 + value: 0.9043295 + inSlope: 0.07234819 + outSlope: 0.07234819 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6000001 + value: 0.9445022 + inSlope: 0.07868983 + outSlope: 0.07868983 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9333334 + value: 0.94952893 + inSlope: -0.0000008940705 + outSlope: -0.0000008940705 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 0.9495289 + inSlope: -0.000001788141 + outSlope: -0.000001788141 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.053260088 + inSlope: -0.21086453 + outSlope: -0.21086453 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.039422788 + inSlope: -0.05934622 + outSlope: -0.05934622 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.046741143 + inSlope: 0.041413408 + outSlope: 0.041413408 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.09670721 + inSlope: 0.48583725 + outSlope: 0.48583725 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.10955179 + inSlope: -0.5081539 + outSlope: -0.5081539 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.066445425 + inSlope: -0.29787424 + outSlope: -0.29787424 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.06533904 + inSlope: -0.022049539 + outSlope: -0.022049539 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.064975455 + inSlope: 0.4095695 + outSlope: 0.4095695 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.09264369 + inSlope: 0.81489646 + outSlope: 0.81489646 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.119301885 + inSlope: 0.00042316318 + outSlope: 0.00042316318 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.09267186 + inSlope: -0.8148948 + outSlope: -0.8148948 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.06497557 + inSlope: -0.20606609 + outSlope: -0.20606609 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.078934155 + inSlope: 0.59630036 + outSlope: 0.59630036 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.1383391 + inSlope: 0.81883335 + outSlope: 0.81883335 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.15931784 + inSlope: -0.036937952 + outSlope: -0.036937952 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.09955605 + inSlope: -0.8941524 + outSlope: -0.8941524 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.064975485 + inSlope: 0.118700825 + outSlope: 0.118700825 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333334 + value: 0.08118756 + inSlope: 0.13279474 + outSlope: 0.13279474 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2333333 + value: 0.075253844 + inSlope: -0.22181131 + outSlope: -0.22181131 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: 0.061631106 + inSlope: -0.008383084 + outSlope: -0.008383084 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 0.059163414 + inSlope: -0.116872296 + outSlope: -0.116872296 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.06100637 + inSlope: 0.23647535 + outSlope: 0.23647535 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: 0.08246353 + inSlope: 0.27792034 + outSlope: 0.27792034 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: 0.08954677 + inSlope: -0.07752434 + outSlope: -0.07752434 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: 0.0649754 + inSlope: -0.18250057 + outSlope: -0.18250057 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9000001 + value: 0.062037557 + inSlope: -0.16428825 + outSlope: -0.16428825 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1333334 + value: 0.0068040714 + inSlope: -0.12761441 + outSlope: -0.12761441 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: 0.004830981 + inSlope: 0.011358272 + outSlope: 0.011358272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7 + value: 0.05082825 + inSlope: 0.11225532 + outSlope: 0.11225532 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.05681823 + inSlope: -0.006750568 + outSlope: -0.006750568 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 0.05326001 + inSlope: -0.004072603 + outSlope: -0.004072603 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.1139333 + inSlope: 0.12289143 + outSlope: 0.12289143 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.122977495 + inSlope: 0.09628056 + outSlope: 0.09628056 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.12732401 + inSlope: 0.040208098 + outSlope: 0.040208098 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.11110613 + inSlope: -0.17330022 + outSlope: -0.17330022 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.10860559 + inSlope: 0.20744443 + outSlope: 0.20744443 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.12387086 + inSlope: 0.077722974 + outSlope: 0.077722974 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.12335491 + inSlope: -0.017314892 + outSlope: -0.017314892 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.12271653 + inSlope: -0.151365 + outSlope: -0.151365 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.113263905 + inSlope: -0.31735432 + outSlope: -0.31735432 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.10155958 + inSlope: 0.0010653138 + outSlope: 0.0010653138 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.11333495 + inSlope: 0.31735194 + outSlope: 0.31735194 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.122716375 + inSlope: 0.056556255 + outSlope: 0.056556255 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.11710535 + inSlope: -0.25132656 + outSlope: -0.25132656 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.0897807 + inSlope: -0.42476252 + outSlope: -0.42476252 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.07764376 + inSlope: 0.011335909 + outSlope: 0.011335909 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.106882125 + inSlope: 0.4022802 + outSlope: 0.4022802 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.12271641 + inSlope: -0.051060032 + outSlope: -0.051060032 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333334 + value: 0.11540681 + inSlope: -0.064160414 + outSlope: -0.064160414 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2333333 + value: 0.1179333 + inSlope: 0.098061904 + outSlope: 0.098061904 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: 0.12483071 + inSlope: 0.009229714 + outSlope: 0.009229714 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 0.12624449 + inSlope: 0.048208535 + outSlope: 0.048208535 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.12542112 + inSlope: -0.10071939 + outSlope: -0.10071939 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: 0.11615997 + inSlope: -0.1227471 + outSlope: -0.1227471 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: 0.11292246 + inSlope: 0.025533035 + outSlope: 0.025533035 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: 0.12271643 + inSlope: 0.08137036 + outSlope: 0.08137036 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9000001 + value: 0.12832499 + inSlope: 0.14820537 + outSlope: 0.14820537 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1333334 + value: 0.17046572 + inSlope: 0.10117235 + outSlope: 0.10117235 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: 0.16706735 + inSlope: -0.08768619 + outSlope: -0.08768619 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7 + value: 0.11746522 + inSlope: -0.084003806 + outSlope: -0.084003806 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.11246917 + inSlope: 0.002054686 + outSlope: 0.002054686 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 0.11393319 + inSlope: 0.0017526017 + outSlope: 0.0017526017 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.22920915 + inSlope: 0.21128966 + outSlope: 0.21128966 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.21492109 + inSlope: -0.014656693 + outSlope: -0.014656693 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.24413879 + inSlope: -0.24727952 + outSlope: -0.24727952 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.31659278 + inSlope: -0.56468153 + outSlope: -0.56468153 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.33276188 + inSlope: 0.60972106 + outSlope: 0.60972106 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.279962 + inSlope: 0.35260916 + outSlope: 0.35260916 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.27921045 + inSlope: 0.012008688 + outSlope: 0.012008688 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.27916142 + inSlope: -0.5169712 + outSlope: -0.5169712 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.31367522 + inSlope: -1.0269012 + outSlope: -1.0269012 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.3476215 + inSlope: 0.00006836653 + outSlope: 0.00006836653 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.3136706 + inSlope: 1.0269043 + outSlope: 1.0269043 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.2791612 + inSlope: 0.2617481 + outSlope: 0.2617481 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.29622078 + inSlope: -0.712986 + outSlope: -0.712986 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.36370015 + inSlope: -0.90134096 + outSlope: -0.90134096 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.38678303 + inSlope: 0.052939445 + outSlope: 0.052939445 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.31952384 + inSlope: 1.0134833 + outSlope: 1.0134833 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.2791614 + inSlope: -0.14163597 + outSlope: -0.14163597 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333334 + value: -0.29875445 + inSlope: -0.16560546 + outSlope: -0.16560546 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2333333 + value: -0.29193777 + inSlope: 0.2669448 + outSlope: 0.2669448 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: -0.27434117 + inSlope: 0.016198322 + outSlope: 0.016198322 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: -0.27082577 + inSlope: 0.14725763 + outSlope: 0.14725763 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: -0.2731971 + inSlope: -0.29972285 + outSlope: -0.29972285 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: -0.3003455 + inSlope: -0.35151854 + outSlope: -0.35151854 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: -0.30932763 + inSlope: 0.09039369 + outSlope: 0.09039369 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: -0.27916145 + inSlope: 0.21650141 + outSlope: 0.21650141 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9000001 + value: -0.27634707 + inSlope: 0.18825147 + outSlope: 0.18825147 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1333334 + value: -0.21648046 + inSlope: 0.11471797 + outSlope: 0.11471797 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: -0.20813859 + inSlope: 0.104956284 + outSlope: 0.104956284 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7 + value: -0.22605698 + inSlope: -0.13150078 + outSlope: -0.13150078 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: -0.23388311 + inSlope: 0.007915877 + outSlope: 0.007915877 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: -0.22920926 + inSlope: 0.0054086796 + outSlope: 0.0054086796 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.965218 + inSlope: 0.045467015 + outSlope: 0.045467015 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.9680554 + inSlope: -0.012738703 + outSlope: -0.012738703 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.96020836 + inSlope: -0.07031946 + outSlope: -0.07031946 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.9370551 + inSlope: -0.22030325 + outSlope: -0.22030325 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.93030787 + inSlope: 0.24178702 + outSlope: 0.24178702 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.94966435 + inSlope: 0.1222371 + outSlope: 0.1222371 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.95002943 + inSlope: 0.0073063346 + outSlope: 0.0073063346 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.95015144 + inSlope: -0.17762467 + outSlope: -0.17762467 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.9381878 + inSlope: -0.38548714 + outSlope: -0.38548714 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.9244523 + inSlope: -0.00014789402 + outSlope: -0.00014789402 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.93817794 + inSlope: 0.38548797 + outSlope: 0.38548797 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.9501515 + inSlope: 0.096647374 + outSlope: 0.096647374 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.9446211 + inSlope: -0.25255927 + outSlope: -0.25255927 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.9168009 + inSlope: -0.42501757 + outSlope: -0.42501757 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.9049797 + inSlope: 0.025285527 + outSlope: 0.025285527 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.93625283 + inSlope: 0.41172886 + outSlope: 0.41172886 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.9501515 + inSlope: -0.0444961 + outSlope: -0.0444961 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333334 + value: 0.9438409 + inSlope: -0.054430835 + outSlope: -0.054430835 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2333333 + value: 0.9461506 + inSlope: 0.087233394 + outSlope: 0.087233394 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: 0.9515019 + inSlope: 0.0040116943 + outSlope: 0.0040116943 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 0.9524786 + inSlope: 0.04274007 + outSlope: 0.04274007 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.9517937 + inSlope: -0.089481264 + outSlope: -0.089481264 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: 0.94313264 + inSlope: -0.11924827 + outSlope: -0.11924827 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: 0.9399715 + inSlope: 0.03186037 + outSlope: 0.03186037 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: 0.95015144 + inSlope: 0.06895965 + outSlope: 0.06895965 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9000001 + value: 0.9504296 + inSlope: 0.044502363 + outSlope: 0.044502363 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1333334 + value: 0.9612655 + inSlope: 0.009164223 + outSlope: 0.009164223 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: 0.9637134 + inSlope: 0.037770905 + outSlope: 0.037770905 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7 + value: 0.96566904 + inSlope: -0.026406277 + outSlope: -0.026406277 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.9640649 + inSlope: 0.0020760316 + outSlope: 0.0020760316 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 0.96521795 + inSlope: 0.0013017667 + outSlope: 0.0013017667 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.000000005924815 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.000000005924815 + inSlope: 0 + 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: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2/mixamorig:RightHandThumb3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.043534096 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.043534096 + inSlope: 0 + 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: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2/mixamorig:RightHandThumb3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.00000005575778 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.00000005575778 + inSlope: 0 + 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: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2/mixamorig:RightHandThumb3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.999052 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.999052 + inSlope: 0 + 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: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2/mixamorig:RightHandThumb3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.060330532 + inSlope: 0.6302927 + outSlope: 0.6302927 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.12406664 + inSlope: 1.4458367 + outSlope: 1.4458367 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.2745562 + inSlope: 1.1446204 + outSlope: 1.1446204 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.3672711 + inSlope: 0.3414153 + outSlope: 0.3414153 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.3562561 + inSlope: -0.5855601 + outSlope: -0.5855601 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.31191888 + inSlope: -0.26986647 + outSlope: -0.26986647 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.31227824 + inSlope: 0.027757721 + outSlope: 0.027757721 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.3137694 + inSlope: 0.31941327 + outSlope: 0.31941327 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.35178494 + inSlope: 0.2582961 + outSlope: 0.2582961 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.3498852 + inSlope: -0.0094177 + outSlope: -0.0094177 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.37169182 + inSlope: 0.78886473 + outSlope: 0.78886473 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.46542642 + inSlope: 0.5491736 + outSlope: 0.5491736 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.47483853 + inSlope: 0.1689851 + outSlope: 0.1689851 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.47669208 + inSlope: -0.8821486 + outSlope: -0.8821486 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.41602868 + inSlope: -1.8736088 + outSlope: -1.8736088 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.35178494 + inSlope: -0.9636556 + outSlope: -0.9636556 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.35178503 + inSlope: 0.000001341101 + outSlope: 0.000001341101 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.35178503 + inSlope: 0.3464492 + outSlope: 0.3464492 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333334 + value: 0.3975634 + inSlope: 0.19197585 + outSlope: 0.19197585 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.373284 + inSlope: -0.31437442 + outSlope: -0.31437442 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666668 + value: 0.34327233 + inSlope: -0.26726854 + outSlope: -0.26726854 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: 0.3072787 + inSlope: -0.2480392 + outSlope: -0.2480392 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 0.30105752 + inSlope: 0.25591785 + outSlope: 0.25591785 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.39186773 + inSlope: 0.7258677 + outSlope: 0.7258677 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 0.4091906 + inSlope: -0.043786228 + outSlope: -0.043786228 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: 0.36157292 + inSlope: -0.5225613 + outSlope: -0.5225613 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: 0.347883 + inSlope: -0.41827777 + outSlope: -0.41827777 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666668 + value: 0.22943896 + inSlope: -1.599496 + outSlope: -1.599496 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: -0.00218138 + inSlope: -0.37872517 + outSlope: -0.37872517 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: 0.014792861 + inSlope: -0.11784703 + outSlope: -0.11784703 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6000001 + value: 0.016212335 + inSlope: 0.6604245 + outSlope: 0.6604245 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7333336 + value: 0.10674745 + inSlope: 0.40547386 + outSlope: 0.40547386 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9333334 + value: 0.11382568 + inSlope: -0.19653846 + outSlope: -0.19653846 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2000003 + value: 0.060276624 + inSlope: -0.029085018 + outSlope: -0.029085018 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 0.060330488 + inSlope: 0.00808575 + outSlope: 0.00808575 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.053493496 + inSlope: 0.08685227 + outSlope: 0.08685227 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.043575495 + inSlope: 0.27439615 + outSlope: 0.27439615 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.008401635 + inSlope: 0.30711734 + outSlope: 0.30711734 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.025567405 + inSlope: 0.19145799 + outSlope: 0.19145799 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.028028702 + inSlope: -0.14822134 + outSlope: -0.14822134 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.010332555 + inSlope: -0.19726206 + outSlope: -0.19726206 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.0066678203 + inSlope: -0.070109196 + outSlope: -0.070109196 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.0056586107 + inSlope: 0.06235982 + outSlope: 0.06235982 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.017354054 + inSlope: 0.11806702 + outSlope: 0.11806702 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.018818108 + inSlope: -0.0100819925 + outSlope: -0.0100819925 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.021858266 + inSlope: 0.19021513 + outSlope: 0.19021513 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.04733068 + inSlope: 0.116510384 + outSlope: 0.116510384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.047953207 + inSlope: -0.0245928 + outSlope: -0.0245928 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.04569116 + inSlope: -0.2733245 + outSlope: -0.2733245 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.029731588 + inSlope: -0.42506036 + outSlope: -0.42506036 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.017353829 + inSlope: -0.1856639 + outSlope: -0.1856639 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.017354008 + inSlope: 0.00000086612124 + outSlope: 0.00000086612124 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.017353887 + inSlope: 0.08166401 + outSlope: 0.08166401 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333334 + value: 0.02841814 + inSlope: 0.07288821 + outSlope: 0.07288821 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.026419979 + inSlope: -0.048002593 + outSlope: -0.048002593 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666668 + value: 0.015410083 + inSlope: -0.05464656 + outSlope: -0.05464656 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: 0.008946287 + inSlope: -0.050825633 + outSlope: -0.050825633 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 0.007636169 + inSlope: 0.07355811 + outSlope: 0.07355811 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.03590562 + inSlope: 0.27344668 + outSlope: 0.27344668 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 0.04284303 + inSlope: 0.03887061 + outSlope: 0.03887061 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: 0.031638514 + inSlope: -0.20524053 + outSlope: -0.20524053 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: 0.004343122 + inSlope: -0.2552303 + outSlope: -0.2552303 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666668 + value: -0.02987692 + inSlope: -0.3784945 + outSlope: -0.3784945 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: -0.08698639 + inSlope: -0.09721285 + outSlope: -0.09721285 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: -0.07649624 + inSlope: 0.025377745 + outSlope: 0.025377745 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6000001 + value: -0.07259184 + inSlope: 0.16961814 + outSlope: 0.16961814 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7333336 + value: -0.047133166 + inSlope: 0.11710234 + outSlope: 0.11710234 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9333334 + value: -0.044188242 + inSlope: -0.043850455 + outSlope: -0.043850455 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2000003 + value: -0.053628623 + inSlope: -0.009311644 + outSlope: -0.009311644 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: -0.05349322 + inSlope: 0.0056614783 + outSlope: 0.0056614783 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.080122344 + inSlope: -0.05446851 + outSlope: -0.05446851 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.08561044 + inSlope: -0.13294546 + outSlope: -0.13294546 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.09790699 + inSlope: -0.035485737 + outSlope: -0.035485737 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.10430694 + inSlope: -0.0791568 + outSlope: -0.0791568 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.103496686 + inSlope: 0.11221075 + outSlope: 0.11221075 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.09404833 + inSlope: 0.06995638 + outSlope: 0.06995638 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.093523026 + inSlope: 0.005482333 + outSlope: 0.005482333 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.09368284 + inSlope: -0.057716507 + outSlope: -0.057716507 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.101174176 + inSlope: -0.06310874 + outSlope: -0.06310874 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.10174587 + inSlope: 0.00030822586 + outSlope: 0.00030822586 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.106035605 + inSlope: -0.21045421 + outSlope: -0.21045421 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.13368635 + inSlope: -0.1392944 + outSlope: -0.1392944 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.1349095 + inSlope: -0.00326249 + outSlope: -0.00326249 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.13390385 + inSlope: 0.27417117 + outSlope: 0.27417117 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.11663143 + inSlope: 0.49094406 + outSlope: 0.49094406 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.10117427 + inSlope: 0.23186041 + outSlope: 0.23186041 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.10117409 + inSlope: 0.0000020116488 + outSlope: 0.0000020116488 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.10117414 + inSlope: -0.08576036 + outSlope: -0.08576036 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333334 + value: -0.11280042 + inSlope: -0.07503813 + outSlope: -0.07503813 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.11007197 + inSlope: 0.05952956 + outSlope: 0.05952956 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666668 + value: -0.09904482 + inSlope: 0.06155944 + outSlope: 0.06155944 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: -0.09157471 + inSlope: 0.055506684 + outSlope: 0.055506684 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: -0.09016247 + inSlope: -0.06753428 + outSlope: -0.06753428 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: -0.11446162 + inSlope: -0.2048994 + outSlope: -0.2048994 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: -0.11952574 + inSlope: -0.037270337 + outSlope: -0.037270337 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: -0.11074646 + inSlope: 0.17629418 + outSlope: 0.17629418 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: -0.093321584 + inSlope: 0.18234098 + outSlope: 0.18234098 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666668 + value: -0.055829342 + inSlope: 0.530599 + outSlope: 0.530599 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: 0.047530673 + inSlope: 0.22513534 + outSlope: 0.22513534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: 0.0078350995 + inSlope: -0.29585516 + outSlope: -0.29585516 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6000001 + value: -0.05194237 + inSlope: -0.38936257 + outSlope: -0.38936257 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7333336 + value: -0.090322174 + inSlope: -0.13811833 + outSlope: -0.13811833 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9333334 + value: -0.0932724 + inSlope: 0.060597725 + outSlope: 0.060597725 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2000003 + value: -0.079972334 + inSlope: 0.011911424 + outSlope: 0.011911424 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: -0.08012235 + inSlope: -0.008399122 + outSlope: -0.008399122 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.99351853 + inSlope: -0.044864412 + outSlope: -0.044864412 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.987613 + inSlope: -0.19011584 + outSlope: -0.19011584 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.95653677 + inSlope: -0.3243094 + outSlope: -0.3243094 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.92389303 + inSlope: -0.14775844 + outSlope: -0.14775844 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.92821574 + inSlope: 0.2363097 + outSlope: 0.2363097 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.94538605 + inSlope: 0.10193647 + outSlope: 0.10193647 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.9453525 + inSlope: -0.008051092 + outSlope: -0.008051092 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.9448493 + inSlope: -0.115988456 + outSlope: -0.115988456 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.9304354 + inSlope: -0.10319631 + outSlope: -0.10319631 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.9310607 + inSlope: 0.00377745 + outSlope: 0.00377745 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.9220216 + inSlope: -0.3543678 + outSlope: -0.3543678 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.87365097 + inSlope: -0.3118049 + outSlope: -0.3118049 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.868348 + inSlope: -0.090617605 + outSlope: -0.090617605 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.8676098 + inSlope: 0.49504328 + outSlope: 0.49504328 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.90135086 + inSlope: 0.9423843 + outSlope: 0.9423843 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.93043536 + inSlope: 0.43626797 + outSlope: 0.43626797 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.93043536 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.93043536 + inSlope: -0.14741792 + outSlope: -0.14741792 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333334 + value: 0.91017133 + inSlope: -0.09072077 + outSlope: -0.09072077 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.9207851 + inSlope: 0.13749374 + outSlope: 0.13749374 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666668 + value: 0.9338719 + inSlope: 0.105562724 + outSlope: 0.105562724 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: 0.94716096 + inSlope: 0.086967826 + outSlope: 0.086967826 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 0.9493033 + inSlope: -0.09321132 + outSlope: -0.09321132 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.9121672 + inSlope: -0.340758 + outSlope: -0.340758 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 0.90357137 + inSlope: 0.012423113 + outSlope: 0.012423113 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: 0.92520225 + inSlope: 0.23912388 + outSlope: 0.23912388 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: 0.9328717 + inSlope: 0.16902037 + outSlope: 0.16902037 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666668 + value: 0.97126114 + inSlope: 0.39331222 + outSlope: 0.39331222 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: 0.9950726 + inSlope: -0.017168837 + outSlope: -0.017168837 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: 0.99692935 + inSlope: 0.005870467 + outSlope: 0.005870467 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6000001 + value: 0.9958763 + inSlope: -0.021363815 + outSlope: -0.021363815 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7333336 + value: 0.9890528 + inSlope: -0.049330138 + outSlope: -0.049330138 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9333334 + value: 0.9881252 + inSlope: 0.02615682 + outSlope: 0.02615682 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2000003 + value: 0.99352664 + inSlope: 0.0022378466 + outSlope: 0.0022378466 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 0.9935186 + inSlope: -0.00086009584 + outSlope: -0.00086009584 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.2531508 + inSlope: 1.1893843 + outSlope: 1.1893843 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.29279694 + inSlope: 1.5653353 + outSlope: 1.5653353 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.35750648 + inSlope: 1.7546706 + outSlope: 1.7546706 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.54551536 + inSlope: 0.4981131 + outSlope: 0.4981131 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.5779909 + inSlope: -0.22304448 + outSlope: -0.22304448 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.55337983 + inSlope: -0.14205691 + outSlope: -0.14205691 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.55446875 + inSlope: 0.14205962 + outSlope: 0.14205962 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.5495826 + inSlope: -0.35138875 + outSlope: -0.35138875 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.53754354 + inSlope: 0.39592442 + outSlope: 0.39592442 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.5579963 + inSlope: 0.096953005 + outSlope: 0.096953005 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: 0.5597236 + inSlope: 0.011129347 + outSlope: 0.011129347 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.525156 + inSlope: -0.49176452 + outSlope: -0.49176452 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 0.49081972 + inSlope: 0.12861206 + outSlope: 0.12861206 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.5882204 + inSlope: 0.9089327 + outSlope: 0.9089327 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 0.61080337 + inSlope: 0.13055487 + outSlope: 0.13055487 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: 0.57636636 + inSlope: -0.44760102 + outSlope: -0.44760102 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9000001 + value: 0.50756073 + inSlope: -0.96219516 + outSlope: -0.96219516 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: 0.3172019 + inSlope: -1.743808 + outSlope: -1.743808 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: 0.15827873 + inSlope: -0.35671693 + outSlope: -0.35671693 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: 0.17202061 + inSlope: 0.11482257 + outSlope: 0.11482257 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6000001 + value: 0.19620103 + inSlope: 0.531096 + outSlope: 0.531096 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.766667 + value: 0.27686253 + inSlope: 0.04733254 + outSlope: 0.04733254 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.966667 + value: 0.2714513 + inSlope: -0.07260461 + outSlope: -0.07260461 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 0.2531507 + inSlope: 0.053130142 + outSlope: 0.053130142 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.012800704 + inSlope: 0.086099155 + outSlope: 0.086099155 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.015670676 + inSlope: 0.11862405 + outSlope: 0.11862405 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.020708974 + inSlope: 0.13490546 + outSlope: 0.13490546 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.037741028 + inSlope: 0.047131836 + outSlope: 0.047131836 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.04033448 + inSlope: -0.016606843 + outSlope: -0.016606843 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.038496014 + inSlope: -0.010518951 + outSlope: -0.010518951 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.038573764 + inSlope: 0.010520519 + outSlope: 0.010520519 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.038195882 + inSlope: -0.025258843 + outSlope: -0.025258843 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.03738257 + inSlope: 0.029103976 + outSlope: 0.029103976 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.038902987 + inSlope: 0.005716687 + outSlope: 0.005716687 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: 0.038962606 + inSlope: 0.0008344999 + outSlope: 0.0008344999 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.036432166 + inSlope: -0.03765727 + outSlope: -0.03765727 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 0.03388325 + inSlope: 0.008887229 + outSlope: 0.008887229 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.04095396 + inSlope: 0.06767231 + outSlope: 0.06767231 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 0.042814888 + inSlope: 0.010819538 + outSlope: 0.010819538 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: 0.040221803 + inSlope: -0.032739162 + outSlope: -0.032739162 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9000001 + value: 0.03728289 + inSlope: -0.039440133 + outSlope: -0.039440133 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: 0.025288312 + inSlope: -0.13269673 + outSlope: -0.13269673 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: 0.012277193 + inSlope: -0.036240045 + outSlope: -0.036240045 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: 0.01381466 + inSlope: 0.014129052 + outSlope: 0.014129052 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6000001 + value: 0.011071088 + inSlope: 0.011009738 + outSlope: 0.011009738 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.766667 + value: 0.014611465 + inSlope: -0.0014634118 + outSlope: -0.0014634118 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.966667 + value: 0.014078974 + inSlope: -0.005079147 + outSlope: -0.005079147 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 0.0128007345 + inSlope: 0.0037093868 + outSlope: 0.0037093868 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.07251786 + inSlope: -0.22914736 + outSlope: -0.22914736 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.0801561 + inSlope: -0.304981 + outSlope: -0.304981 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.092849925 + inSlope: -0.34290048 + outSlope: -0.34290048 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.1293322 + inSlope: -0.092368804 + outSlope: -0.092368804 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.1351115 + inSlope: 0.03852256 + outSlope: 0.03852256 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.13079959 + inSlope: 0.024664026 + outSlope: 0.024664026 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.13099022 + inSlope: -0.024665149 + outSlope: -0.024665149 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.13017318 + inSlope: 0.05971106 + outSlope: 0.05971106 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.12825531 + inSlope: -0.06833217 + outSlope: -0.06833217 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.13167849 + inSlope: -0.014173923 + outSlope: -0.014173923 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: -0.13187969 + inSlope: -0.0019492899 + outSlope: -0.0019492899 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.12594664 + inSlope: 0.08624185 + outSlope: 0.08624185 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: -0.1198983 + inSlope: -0.022503197 + outSlope: -0.022503197 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: -0.13692307 + inSlope: -0.15661836 + outSlope: -0.15661836 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: -0.14078029 + inSlope: -0.02189646 + outSlope: -0.02189646 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: -0.13481116 + inSlope: 0.078480646 + outSlope: 0.078480646 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9000001 + value: -0.12385835 + inSlope: 0.15717112 + outSlope: 0.15717112 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: -0.08883619 + inSlope: 0.3458807 + outSlope: 0.3458807 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: -0.055177692 + inSlope: 0.08752112 + outSlope: 0.08752112 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: -0.05968251 + inSlope: -0.055651475 + outSlope: -0.055651475 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6000001 + value: -0.06556655 + inSlope: -0.06841874 + outSlope: -0.06841874 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.766667 + value: -0.07713005 + inSlope: -0.0007367141 + outSlope: -0.0007367141 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.966667 + value: -0.07600808 + inSlope: 0.013840402 + outSlope: 0.013840402 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: -0.07251786 + inSlope: -0.010110373 + outSlope: -0.010110373 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9646201 + inSlope: -0.35820004 + outSlope: -0.35820004 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.9526801 + inSlope: -0.5335092 + outSlope: -0.5335092 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.9290528 + inSlope: -0.69997156 + outSlope: -0.69997156 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.8272012 + inSlope: -0.34249577 + outSlope: -0.34249577 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.803769 + inSlope: 0.16728492 + outSlope: 0.16728492 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.82169354 + inSlope: 0.10037808 + outSlope: 0.10037808 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.8209251 + inSlope: -0.10037989 + outSlope: -0.10037989 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.82435125 + inSlope: 0.24354616 + outSlope: 0.24354616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.8325864 + inSlope: -0.26891914 + outSlope: -0.26891914 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.81840545 + inSlope: -0.068288215 + outSlope: -0.068288215 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: 0.8171899 + inSlope: -0.007967926 + outSlope: -0.007967926 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.84084564 + inSlope: 0.31818736 + outSlope: 0.31818736 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 0.8623064 + inSlope: -0.08049853 + outSlope: -0.08049853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.7959721 + inSlope: -0.688707 + outSlope: -0.688707 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 0.7779891 + inSlope: -0.1019759 + outSlope: -0.1019759 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: 0.80499065 + inSlope: 0.34038877 + outSlope: 0.34038877 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9000001 + value: 0.8518517 + inSlope: 0.59134364 + outSlope: 0.59134364 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: 0.9438493 + inSlope: 0.6246873 + outSlope: 0.6246873 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: 0.9857751 + inSlope: 0.06529307 + outSlope: 0.06529307 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: 0.9831867 + inSlope: -0.023535512 + outSlope: -0.023535512 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6000001 + value: 0.97830653 + inSlope: -0.11243115 + outSlope: -0.11243115 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.766667 + value: 0.9576976 + inSlope: -0.013657821 + outSlope: -0.013657821 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.966667 + value: 0.9593429 + inSlope: 0.021644503 + outSlope: 0.021644503 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 0.9646202 + inSlope: -0.014698519 + outSlope: -0.014698519 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.00000014877547 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.00000014877547 + inSlope: 0 + 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: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2/mixamorig:RightHandIndex3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.00000005329535 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.00000005329535 + inSlope: 0 + 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: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2/mixamorig:RightHandIndex3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.000000041878472 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.000000041878472 + inSlope: 0 + 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: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2/mixamorig:RightHandIndex3 + 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.033333335 + value: 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: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2/mixamorig:RightHandIndex3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.08479771 + inSlope: 1.140135 + outSlope: 1.140135 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.12280221 + inSlope: 1.4969667 + outSlope: 1.4969667 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.1845955 + inSlope: 1.661864 + outSlope: 1.661864 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.357144 + inSlope: 0.4997269 + outSlope: 0.4997269 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.38183543 + inSlope: -0.20906071 + outSlope: -0.20906071 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.3643501 + inSlope: 0.04871782 + outSlope: 0.04871782 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.369807 + inSlope: -0.007126194 + outSlope: -0.007126194 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.38147777 + inSlope: 0.36987317 + outSlope: 0.36987317 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.4071098 + inSlope: -0.3463561 + outSlope: -0.3463561 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.37113875 + inSlope: -0.2474671 + outSlope: -0.2474671 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: 0.3794818 + inSlope: 0.24968663 + outSlope: 0.24968663 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 0.38151816 + inSlope: -0.20808956 + outSlope: -0.20808956 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: 0.36321142 + inSlope: -0.137749 + outSlope: -0.137749 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.3528759 + inSlope: 0.16382948 + outSlope: 0.16382948 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: 0.3711388 + inSlope: 0.15577614 + outSlope: 0.15577614 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9000001 + value: 0.36627114 + inSlope: -0.626629 + outSlope: -0.626629 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: 0.21899526 + inSlope: -1.1670429 + outSlope: -1.1670429 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: 0.1162643 + inSlope: -0.02406659 + outSlope: -0.02406659 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: 0.12307819 + inSlope: -0.16403869 + outSlope: -0.16403869 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6000001 + value: 0.07968877 + inSlope: 0.20048402 + outSlope: 0.20048402 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.766667 + value: 0.12915945 + inSlope: 0.08517866 + outSlope: 0.08517866 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2000003 + value: 0.08499245 + inSlope: -0.009663847 + outSlope: -0.009663847 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 0.0847977 + inSlope: 0.0002648684 + outSlope: 0.0002648684 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.11132268 + inSlope: 0.090073936 + outSlope: 0.090073936 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.108320214 + inSlope: 0.081269585 + outSlope: 0.081269585 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.105904706 + inSlope: -0.0242095 + outSlope: -0.0242095 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.13457823 + inSlope: -0.11288883 + outSlope: -0.11288883 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.13893951 + inSlope: -0.022678517 + outSlope: -0.022678517 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.13897048 + inSlope: 0.028287224 + outSlope: 0.028287224 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.13730597 + inSlope: -0.0004544118 + outSlope: -0.0004544118 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.136024 + inSlope: 0.043442808 + outSlope: 0.043442808 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.13270773 + inSlope: -0.04081364 + outSlope: -0.04081364 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.13720216 + inSlope: -0.031395063 + outSlope: -0.031395063 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: -0.13609508 + inSlope: 0.033283282 + outSlope: 0.033283282 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -0.13581344 + inSlope: -0.02755123 + outSlope: -0.02755123 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: -0.13829157 + inSlope: -0.019251127 + outSlope: -0.019251127 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: -0.14006832 + inSlope: 0.020424593 + outSlope: 0.020424593 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: -0.13720195 + inSlope: 0.038501583 + outSlope: 0.038501583 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9000001 + value: -0.13391623 + inSlope: 0.0065765595 + outSlope: 0.0065765595 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: -0.12731677 + inSlope: 0.12551503 + outSlope: 0.12551503 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: -0.10871519 + inSlope: 0.011259141 + outSlope: 0.011259141 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: -0.105126046 + inSlope: 0.061416164 + outSlope: 0.061416164 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6000001 + value: -0.09627324 + inSlope: 0.04868862 + outSlope: 0.04868862 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.766667 + value: -0.09766482 + inSlope: -0.021292401 + outSlope: -0.021292401 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2000003 + value: -0.11083566 + inSlope: -0.0072104246 + outSlope: -0.0072104246 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: -0.11132248 + inSlope: -0.0016276554 + outSlope: -0.0016276554 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.026193956 + inSlope: -0.31563336 + outSlope: -0.31563336 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.036715068 + inSlope: -0.42003602 + outSlope: -0.42003602 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.054196358 + inSlope: -0.4477875 + outSlope: -0.4477875 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.10056128 + inSlope: -0.14784348 + outSlope: -0.14784348 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.10726015 + inSlope: 0.06726956 + outSlope: 0.06726956 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.10219938 + inSlope: -0.02258977 + outSlope: -0.02258977 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.10441924 + inSlope: 0.002450983 + outSlope: 0.002450983 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.10815742 + inSlope: -0.12356837 + outSlope: -0.12356837 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.11637868 + inSlope: 0.11553891 + outSlope: 0.11553891 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.10473003 + inSlope: 0.07900253 + outSlope: 0.07900253 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: -0.10743808 + inSlope: -0.08139637 + outSlope: -0.08139637 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -0.10809195 + inSlope: 0.06818372 + outSlope: 0.06818372 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: -0.10208982 + inSlope: 0.046469316 + outSlope: 0.046469316 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: -0.09827446 + inSlope: -0.053216644 + outSlope: -0.053216644 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: -0.10473024 + inSlope: -0.038111098 + outSlope: -0.038111098 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9000001 + value: -0.09392066 + inSlope: 0.37245995 + outSlope: 0.37245995 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: -0.018361697 + inSlope: 0.5853087 + outSlope: 0.5853087 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: 0.03576897 + inSlope: 0.019123275 + outSlope: 0.019123275 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: 0.018553393 + inSlope: -0.09923123 + outSlope: -0.09923123 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6000001 + value: -0.009184557 + inSlope: -0.28845757 + outSlope: -0.28845757 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.766667 + value: -0.04639603 + inSlope: -0.060904644 + outSlope: -0.060904644 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2000003 + value: -0.026793173 + inSlope: 0.009823641 + outSlope: 0.009823641 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: -0.026193911 + inSlope: 0.0018209981 + outSlope: 0.0018209981 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9898134 + inSlope: -0.11984288 + outSlope: -0.11984288 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.9858186 + inSlope: -0.21338491 + outSlope: -0.21338491 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.9755877 + inSlope: -0.33022457 + outSlope: -0.33022457 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.9188168 + inSlope: -0.22498551 + outSlope: -0.22498551 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.9074099 + inSlope: 0.09173868 + outSlope: 0.09173868 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.91514564 + inSlope: -0.017750844 + outSlope: -0.017750844 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.9129548 + inSlope: 0.0031024269 + outSlope: 0.0031024269 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.9078955 + inSlope: -0.16472235 + outSlope: -0.16472235 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.896162 + inSlope: 0.16220939 + outSlope: 0.16220939 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.9123943 + inSlope: 0.10793845 + outSlope: 0.10793845 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: 0.9088062 + inSlope: -0.1088976 + outSlope: -0.1088976 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 0.90791786 + inSlope: 0.0912399 + outSlope: 0.0912399 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: 0.91571313 + inSlope: 0.056920998 + outSlope: 0.056920998 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.9198922 + inSlope: -0.06547099 + outSlope: -0.06547099 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: 0.9123942 + inSlope: -0.061815143 + outSlope: -0.061815143 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9000001 + value: 0.916019 + inSlope: 0.2820855 + outSlope: 0.2820855 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: 0.9672096 + inSlope: 0.2948123 + outSlope: 0.2948123 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: 0.98660237 + inSlope: 0.0035038623 + outSlope: 0.0035038623 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: 0.9866388 + inSlope: 0.028489556 + outSlope: 0.028489556 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6000001 + value: 0.99211735 + inSlope: -0.01521261 + outSlope: -0.01521261 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.766667 + value: 0.98571134 + inSlope: -0.015922502 + outSlope: -0.015922502 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2000003 + value: 0.9898353 + inSlope: 0.00029146494 + outSlope: 0.00029146494 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 0.9898134 + inSlope: -0.00015735641 + outSlope: -0.00015735641 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.33314452 + inSlope: 0.88937306 + outSlope: 0.88937306 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.3627903 + inSlope: 1.1152232 + outSlope: 1.1152232 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.40749273 + inSlope: 1.1049068 + outSlope: 1.1049068 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.46542373 + inSlope: -0.11833818 + outSlope: -0.11833818 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.45893088 + inSlope: 0.07917159 + outSlope: 0.07917159 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.45639065 + inSlope: -0.13516277 + outSlope: -0.13516277 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.47335413 + inSlope: -0.03359694 + outSlope: -0.03359694 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.46088925 + inSlope: -0.0051190006 + outSlope: -0.0051190006 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: 0.4598617 + inSlope: -0.05972436 + outSlope: -0.05972436 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: 0.44237489 + inSlope: -0.23015025 + outSlope: -0.23015025 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.4672798 + inSlope: 0.37700897 + outSlope: 0.37700897 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: 0.46088886 + inSlope: -0.22494859 + outSlope: -0.22494859 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: 0.37939906 + inSlope: -1.123046 + outSlope: -1.123046 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: 0.23370758 + inSlope: -1.6779222 + outSlope: -1.6779222 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: 0.08272798 + inSlope: -0.3029748 + outSlope: -0.3029748 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3000002 + value: 0.09520281 + inSlope: 0.2503347 + outSlope: 0.2503347 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5333335 + value: 0.2511172 + inSlope: 0.7726211 + outSlope: 0.7726211 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.766667 + value: 0.3751273 + inSlope: 0.068081684 + outSlope: 0.068081684 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0333335 + value: 0.34787482 + inSlope: -0.12365219 + outSlope: -0.12365219 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 0.3331404 + inSlope: -0.024844432 + outSlope: -0.024844432 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.026530448 + inSlope: 0.08222009 + outSlope: 0.08222009 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.029271118 + inSlope: 0.12172657 + outSlope: 0.12172657 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.034645554 + inSlope: 0.16029808 + outSlope: 0.16029808 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.054911822 + inSlope: 0.04428428 + outSlope: 0.04428428 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.055778816 + inSlope: 0.0033594081 + outSlope: 0.0033594081 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.05536644 + inSlope: -0.0126201855 + outSlope: -0.0126201855 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.056957193 + inSlope: -0.003169257 + outSlope: -0.003169257 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.055792414 + inSlope: -0.0006219378 + outSlope: -0.0006219378 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: 0.05569555 + inSlope: -0.0055354144 + outSlope: -0.0055354144 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: 0.054057933 + inSlope: -0.021374553 + outSlope: -0.021374553 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.056323882 + inSlope: 0.034677587 + outSlope: 0.034677587 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: 0.05579231 + inSlope: -0.014622634 + outSlope: -0.014622634 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: 0.050521016 + inSlope: -0.080027916 + outSlope: -0.080027916 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: 0.03788833 + inSlope: -0.15314841 + outSlope: -0.15314841 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: 0.023702713 + inSlope: -0.034163468 + outSlope: -0.034163468 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3000002 + value: 0.024206255 + inSlope: 0.0014834864 + outSlope: 0.0014834864 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5333335 + value: 0.02305124 + inSlope: 0.0029403744 + outSlope: 0.0029403744 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.766667 + value: 0.029508164 + inSlope: 0.0074433326 + outSlope: 0.0074433326 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0333335 + value: 0.027585678 + inSlope: -0.008857781 + outSlope: -0.008857781 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 0.026561944 + inSlope: -0.0014056466 + outSlope: -0.0014056466 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.085332125 + inSlope: -0.20897268 + outSlope: -0.20897268 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.09229788 + inSlope: -0.27521485 + outSlope: -0.27521485 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.10367978 + inSlope: -0.30074167 + outSlope: -0.30074167 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.12960796 + inSlope: -0.018177109 + outSlope: -0.018177109 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.12946059 + inSlope: -0.015289919 + outSlope: -0.015289919 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.12902415 + inSlope: 0.024216771 + outSlope: 0.024216771 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.132058 + inSlope: 0.006005696 + outSlope: 0.006005696 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.12983184 + inSlope: 0.000982807 + outSlope: 0.000982807 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: -0.12964395 + inSlope: 0.010765279 + outSlope: 0.010765279 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: -0.12650208 + inSlope: 0.04130843 + outSlope: 0.04130843 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: -0.13090317 + inSlope: -0.06676538 + outSlope: -0.06676538 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: -0.1298318 + inSlope: 0.041288175 + outSlope: 0.041288175 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: -0.11267504 + inSlope: 0.25111204 + outSlope: 0.25111204 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: -0.07791597 + inSlope: 0.4135706 + outSlope: 0.4135706 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: -0.03699748 + inSlope: 0.10449025 + outSlope: 0.10449025 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3000002 + value: -0.041333433 + inSlope: -0.09211592 + outSlope: -0.09211592 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5333335 + value: -0.07457275 + inSlope: -0.11966944 + outSlope: -0.11966944 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.766667 + value: -0.09395866 + inSlope: -0.00817024 + outSlope: -0.00817024 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0333335 + value: -0.088337846 + inSlope: 0.02520273 + outSlope: 0.02520273 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: -0.08534274 + inSlope: 0.004932587 + outSlope: 0.004932587 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.93863165 + inSlope: -0.3541517 + outSlope: -0.3541517 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.9268266 + inSlope: -0.47984266 + outSlope: -0.47984266 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.90664214 + inSlope: -0.52552515 + outSlope: -0.52552515 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.87382334 + inSlope: 0.057484217 + outSlope: 0.057484217 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.8772179 + inSlope: -0.043752156 + outSlope: -0.043752156 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.8786324 + inSlope: 0.07455915 + outSlope: 0.07455915 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.8690526 + inSlope: 0.019348584 + outSlope: 0.019348584 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.8761347 + inSlope: 0.002876225 + outSlope: 0.002876225 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: 0.87670845 + inSlope: 0.03317091 + outSlope: 0.03317091 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: 0.88621634 + inSlope: 0.12259558 + outSlope: 0.12259558 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.8725489 + inSlope: -0.21265826 + outSlope: -0.21265826 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: 0.87613493 + inSlope: 0.12505811 + outSlope: 0.12505811 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: 0.916956 + inSlope: 0.4943977 + outSlope: 0.4943977 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: 0.96843916 + inSlope: 0.44587743 + outSlope: 0.44587743 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: 0.9956031 + inSlope: 0.032001466 + outSlope: 0.032001466 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3000002 + value: 0.99430484 + inSlope: -0.028375115 + outSlope: -0.028375115 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5333335 + value: 0.96480453 + inSlope: -0.21037659 + outSlope: -0.21037659 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.766667 + value: 0.921727 + inSlope: -0.028628139 + outSlope: -0.028628139 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0333335 + value: 0.93296224 + inSlope: 0.04879211 + outSlope: 0.04879211 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 0.93863124 + inSlope: 0.009319792 + outSlope: 0.009319792 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0000012746311 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.0000012746311 + inSlope: 0 + 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: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2/mixamorig:RightHandMiddle3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0029256423 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.0029256423 + inSlope: 0 + 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: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2/mixamorig:RightHandMiddle3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.00044973136 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.00044973136 + inSlope: 0 + 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: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2/mixamorig:RightHandMiddle3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.99999565 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.99999565 + inSlope: 0 + 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: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2/mixamorig:RightHandMiddle3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.28689414 + inSlope: 0.9714755 + outSlope: 0.9714755 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.31927666 + inSlope: 1.1496837 + outSlope: 1.1496837 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.36353973 + inSlope: 0.9534197 + outSlope: 0.9534197 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.34988502 + inSlope: -0.38853723 + outSlope: -0.38853723 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.32061845 + inSlope: -0.15365075 + outSlope: -0.15365075 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.33378386 + inSlope: 0.14889164 + outSlope: 0.14889164 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.3376996 + inSlope: 0.40580952 + outSlope: 0.40580952 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.37732428 + inSlope: 0.18372433 + outSlope: 0.18372433 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.337156 + inSlope: -0.57357043 + outSlope: -0.57357043 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.3214593 + inSlope: -0.11342226 + outSlope: -0.11342226 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.33769965 + inSlope: 0.1215775 + outSlope: 0.1215775 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: 0.34047917 + inSlope: 0.08332767 + outSlope: 0.08332767 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2333333 + value: 0.3327468 + inSlope: 0.068144575 + outSlope: 0.068144575 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: 0.3264759 + inSlope: -0.2271766 + outSlope: -0.2271766 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 0.29699808 + inSlope: 0.02346797 + outSlope: 0.02346797 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: 0.29361698 + inSlope: 0.04254466 + outSlope: 0.04254466 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: 0.31460097 + inSlope: 0.6240134 + outSlope: 0.6240134 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: 0.3510394 + inSlope: -0.114023656 + outSlope: -0.114023656 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: 0.19699173 + inSlope: -1.1786485 + outSlope: -1.1786485 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: 0.10136874 + inSlope: -0.025153223 + outSlope: -0.025153223 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3666668 + value: 0.1468638 + inSlope: 0.6221206 + outSlope: 0.6221206 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5666668 + value: 0.24892296 + inSlope: 0.5771923 + outSlope: 0.5771923 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7333336 + value: 0.3083929 + inSlope: 0.04561965 + outSlope: 0.04561965 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1333334 + value: 0.28015286 + inSlope: 0.07479437 + outSlope: 0.07479437 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 0.28689414 + inSlope: -0.010811995 + outSlope: -0.010811995 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.21401185 + inSlope: 0.06338462 + outSlope: 0.06338462 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.21189903 + inSlope: 0.065441206 + outSlope: 0.065441206 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.2096491 + inSlope: 0.078739144 + outSlope: 0.078739144 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.19885248 + inSlope: 0.023214968 + outSlope: 0.023214968 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.19859363 + inSlope: -0.020186521 + outSlope: -0.020186521 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.1987085 + inSlope: 0.0142306825 + outSlope: 0.0142306825 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.198302 + inSlope: 0.06651853 + outSlope: 0.06651853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.1923908 + inSlope: 0.023727449 + outSlope: 0.023727449 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.19839601 + inSlope: -0.08320281 + outSlope: -0.08320281 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.20071346 + inSlope: -0.016466705 + outSlope: -0.016466705 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.19830209 + inSlope: 0.01787694 + outSlope: 0.01787694 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: -0.19783424 + inSlope: 0.013978992 + outSlope: 0.013978992 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2333333 + value: -0.19895367 + inSlope: 0.009123524 + outSlope: 0.009123524 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: -0.19993852 + inSlope: -0.032480016 + outSlope: -0.032480016 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: -0.20398077 + inSlope: 0.0036531657 + outSlope: 0.0036531657 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: -0.2044075 + inSlope: 0.0053653005 + outSlope: 0.0053653005 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: -0.20160024 + inSlope: 0.08688891 + outSlope: 0.08688891 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: -0.1945683 + inSlope: 0.020553496 + outSlope: 0.020553496 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: -0.19883718 + inSlope: -0.01332109 + outSlope: -0.01332109 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: -0.19300269 + inSlope: 0.0044062026 + outSlope: 0.0044062026 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3666668 + value: -0.20421627 + inSlope: -0.100011624 + outSlope: -0.100011624 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5666668 + value: -0.22093078 + inSlope: -0.008957022 + outSlope: -0.008957022 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7333336 + value: -0.21652238 + inSlope: 0.023546135 + outSlope: 0.023546135 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1333334 + value: -0.21409602 + inSlope: 0.003098178 + outSlope: 0.003098178 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: -0.21401173 + inSlope: 0.0015905515 + outSlope: 0.0015905515 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.009143928 + inSlope: -0.48545277 + outSlope: -0.48545277 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.025325688 + inSlope: -0.62824225 + outSlope: -0.62824225 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.051026747 + inSlope: -0.6719334 + outSlope: -0.6719334 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.11051058 + inSlope: -0.13688275 + outSlope: -0.13688275 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.11585766 + inSlope: 0.045745056 + outSlope: 0.045745056 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.113187425 + inSlope: -0.030562205 + outSlope: -0.030562205 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.11409312 + inSlope: -0.15748437 + outSlope: -0.15748437 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.12994601 + inSlope: -0.07627643 + outSlope: -0.07627643 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.11389531 + inSlope: 0.2284903 + outSlope: 0.2284903 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.10771472 + inSlope: 0.045033723 + outSlope: 0.045033723 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -0.114093326 + inSlope: -0.0480003 + outSlope: -0.0480003 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: -0.11525048 + inSlope: -0.034763187 + outSlope: -0.034763187 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2333333 + value: -0.11219596 + inSlope: -0.026126139 + outSlope: -0.026126139 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: -0.10965393 + inSlope: 0.08981252 + outSlope: 0.08981252 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: -0.0980477 + inSlope: -0.009677067 + outSlope: -0.009677067 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: -0.09671752 + inSlope: -0.016324671 + outSlope: -0.016324671 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: -0.10460818 + inSlope: -0.24634996 + outSlope: -0.24634996 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: -0.123840645 + inSlope: -0.041077103 + outSlope: -0.041077103 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: -0.09399118 + inSlope: 0.26956594 + outSlope: 0.26956594 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: -0.078196675 + inSlope: 0.005019647 + outSlope: 0.005019647 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3666668 + value: -0.06606877 + inSlope: 0.1133402 + outSlope: 0.1133402 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5666668 + value: -0.02327644 + inSlope: 0.134103 + outSlope: 0.134103 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7333336 + value: -0.014841772 + inSlope: 0.03604997 + outSlope: 0.03604997 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1333334 + value: -0.0067578414 + inSlope: -0.030863518 + outSlope: -0.030863518 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: -0.009143873 + inSlope: 0.0007828426 + outSlope: 0.0007828426 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9337061 + inSlope: -0.31158146 + outSlope: -0.31158146 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.92332006 + inSlope: -0.4118961 + outSlope: -0.4118961 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.90624636 + inSlope: -0.3847298 + outSlope: -0.3847298 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.90874946 + inSlope: 0.13856114 + outSlope: 0.13856114 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.9188805 + inSlope: 0.05526243 + outSlope: 0.05526243 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.9144899 + inSlope: -0.054837756 + outSlope: -0.054837756 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.9130269 + inSlope: -0.16040497 + outSlope: -0.16040497 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.8965078 + inSlope: -0.080054864 + outSlope: -0.080054864 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.913232 + inSlope: 0.2251268 + outSlope: 0.2251268 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.91911674 + inSlope: 0.04329163 + outSlope: 0.04329163 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0.91302687 + inSlope: -0.04636918 + outSlope: -0.04636918 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: 0.91195005 + inSlope: -0.032470793 + outSlope: -0.032470793 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2333333 + value: 0.91493666 + inSlope: -0.02604422 + outSlope: -0.02604422 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: 0.9172863 + inSlope: 0.08443334 + outSlope: 0.08443334 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 0.9276695 + inSlope: -0.007732802 + outSlope: -0.007732802 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: 0.9287908 + inSlope: -0.014031499 + outSlope: -0.014031499 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: 0.92165107 + inSlope: -0.22417298 + outSlope: -0.22417298 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: 0.907512 + inSlope: 0.042009767 + outSlope: 0.042009767 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: 0.95541805 + inSlope: 0.26963985 + outSlope: 0.26963985 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: 0.9728102 + inSlope: 0.0039383806 + outSlope: 0.0039383806 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3666668 + value: 0.9655888 + inSlope: -0.108600065 + outSlope: -0.108600065 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5666668 + value: 0.942701 + inSlope: -0.15116766 + outSlope: -0.15116766 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7333336 + value: 0.9261704 + inSlope: -0.009037193 + outSlope: -0.009037193 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1333334 + value: 0.9357519 + inSlope: -0.02193155 + outSlope: -0.02193155 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 0.9337061 + inSlope: 0.0036960875 + outSlope: 0.0036960875 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.20965117 + inSlope: 1.1403165 + outSlope: 1.1403165 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.24766172 + inSlope: 1.5461383 + outSlope: 1.5461383 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.31272706 + inSlope: 1.8536054 + outSlope: 1.8536054 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.51949507 + inSlope: 1.064101 + outSlope: 1.064101 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.55957353 + inSlope: -0.14143014 + outSlope: -0.14143014 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.55803066 + inSlope: 0.16830058 + outSlope: 0.16830058 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.5583539 + inSlope: 0.078903496 + outSlope: 0.078903496 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.59053135 + inSlope: 0.03841552 + outSlope: 0.03841552 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.57962084 + inSlope: -0.37314445 + outSlope: -0.37314445 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.56330127 + inSlope: -0.045843467 + outSlope: -0.045843467 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.5640388 + inSlope: -0.0067770546 + outSlope: -0.0067770546 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: 0.5510857 + inSlope: -0.2239593 + outSlope: -0.2239593 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.5282717 + inSlope: 0.21448126 + outSlope: 0.21448126 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: 0.5621853 + inSlope: 0.069167085 + outSlope: 0.069167085 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: 0.50367403 + inSlope: -1.0670921 + outSlope: -1.0670921 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: 0.3661359 + inSlope: -1.4484122 + outSlope: -1.4484122 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: 0.24636786 + inSlope: -0.24385662 + outSlope: -0.24385662 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: 0.22790782 + inSlope: -0.24704756 + outSlope: -0.24704756 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5000002 + value: 0.15749966 + inSlope: -0.46436337 + outSlope: -0.46436337 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: 0.15990797 + inSlope: 0.40863872 + outSlope: 0.40863872 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8333335 + value: 0.18972994 + inSlope: -0.09294243 + outSlope: -0.09294243 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1333334 + value: 0.19951503 + inSlope: 0.15270658 + outSlope: 0.15270658 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 0.209651 + inSlope: -0.018930156 + outSlope: -0.018930156 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.01182252 + inSlope: 0.112881266 + outSlope: 0.112881266 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.015585229 + inSlope: 0.15348728 + outSlope: 0.15348728 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.022055006 + inSlope: 0.17486021 + outSlope: 0.17486021 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.039889447 + inSlope: 0.08759009 + outSlope: 0.08759009 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.043032877 + inSlope: -0.015193645 + outSlope: -0.015193645 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.04286679 + inSlope: 0.018084683 + outSlope: 0.018084683 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.04290432 + inSlope: 0.008479809 + outSlope: 0.008479809 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.04637334 + inSlope: 0.0041564773 + outSlope: 0.0041564773 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.045167446 + inSlope: -0.040286668 + outSlope: -0.040286668 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.043435227 + inSlope: -0.0049170526 + outSlope: -0.0049170526 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.04351152 + inSlope: -0.0007196709 + outSlope: -0.0007196709 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: 0.04212435 + inSlope: -0.02407296 + outSlope: -0.02407296 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.039682664 + inSlope: 0.022865295 + outSlope: 0.022865295 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: 0.043320134 + inSlope: 0.0074688415 + outSlope: 0.0074688415 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: 0.037263375 + inSlope: -0.1240917 + outSlope: -0.1240917 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: 0.021198964 + inSlope: -0.17584738 + outSlope: -0.17584738 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: 0.0057948357 + inSlope: -0.0355836 + outSlope: -0.0355836 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: 0.005441829 + inSlope: 0.0051061697 + outSlope: 0.0051061697 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5000002 + value: 0.0036597848 + inSlope: -0.022456884 + outSlope: -0.022456884 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: 0.0065673613 + inSlope: 0.044792306 + outSlope: 0.044792306 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8333335 + value: 0.0096863825 + inSlope: -0.010028118 + outSlope: -0.010028118 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1333334 + value: 0.01073253 + inSlope: 0.016440727 + outSlope: 0.016440727 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 0.011822612 + inSlope: -0.0020432025 + outSlope: -0.0020432025 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.031202221 + inSlope: -0.23501788 + outSlope: -0.23501788 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.03903615 + inSlope: -0.3230796 + outSlope: -0.3230796 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.05274086 + inSlope: -0.38396606 + outSlope: -0.38396606 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.09442178 + inSlope: -0.21134719 + outSlope: -0.21134719 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.102369815 + inSlope: 0.03179545 + outSlope: 0.03179545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.102044664 + inSlope: -0.038148165 + outSlope: -0.038148165 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.102046005 + inSlope: -0.018217241 + outSlope: -0.018217241 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.10944113 + inSlope: -0.00882291 + outSlope: -0.00882291 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.10691528 + inSlope: 0.08578934 + outSlope: 0.08578934 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.10318641 + inSlope: 0.010433802 + outSlope: 0.010433802 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.103353016 + inSlope: 0.0015468537 + outSlope: 0.0015468537 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: -0.10037964 + inSlope: 0.05152707 + outSlope: 0.05152707 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: -0.09510067 + inSlope: -0.04893069 + outSlope: -0.04893069 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: -0.10291567 + inSlope: -0.016546115 + outSlope: -0.016546115 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: -0.093239084 + inSlope: 0.21134084 + outSlope: 0.21134084 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: -0.064601935 + inSlope: 0.3154353 + outSlope: 0.3154353 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: -0.037491363 + inSlope: 0.060902964 + outSlope: 0.060902964 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: -0.034402482 + inSlope: 0.028628698 + outSlope: 0.028628698 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5000002 + value: -0.023337591 + inSlope: 0.0921726 + outSlope: 0.0921726 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: -0.022005534 + inSlope: -0.06942795 + outSlope: -0.06942795 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8333335 + value: -0.026968572 + inSlope: 0.019874237 + outSlope: 0.019874237 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1333334 + value: -0.02904205 + inSlope: -0.032568753 + outSlope: -0.032568753 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: -0.03120225 + inSlope: 0.0040477924 + outSlope: 0.0040477924 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.97720677 + inSlope: -0.2781719 + outSlope: -0.2781719 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.96793437 + inSlope: -0.43628362 + outSlope: -0.43628362 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.9481212 + inSlope: -0.63072765 + outSlope: -0.63072765 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.84830314 + inSlope: -0.6698172 + outSlope: -0.6698172 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.82130754 + inSlope: 0.10093774 + outSlope: 0.10093774 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.8224057 + inSlope: -0.11987419 + outSlope: -0.11987419 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.82218415 + inSlope: -0.056580346 + outSlope: -0.056580346 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.79821366 + inSlope: -0.029793998 + outSlope: -0.029793998 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.8065784 + inSlope: 0.28092206 + outSlope: 0.28092206 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.8186316 + inSlope: 0.033222765 + outSlope: 0.033222765 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.8180985 + inSlope: 0.0049173883 + outSlope: 0.0049173883 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: 0.8273174 + inSlope: 0.15638903 + outSlope: 0.15638903 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.842799 + inSlope: -0.14185233 + outSlope: -0.14185233 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: 0.8194385 + inSlope: -0.049715687 + outSlope: -0.049715687 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: 0.85803866 + inSlope: 0.6462302 + outSlope: 0.6462302 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: 0.9280742 + inSlope: 0.6012878 + outSlope: 0.6012878 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: 0.9684337 + inSlope: 0.06578928 + outSlope: 0.06578928 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: 0.97305954 + inSlope: 0.058615264 + outSlope: 0.058615264 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5000002 + value: 0.9872365 + inSlope: 0.07733588 + outSlope: 0.07733588 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: 0.98686475 + inSlope: -0.06815678 + outSlope: -0.06815678 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8333335 + value: 0.9814181 + inSlope: 0.018551964 + outSlope: 0.018551964 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1333334 + value: 0.9794055 + inSlope: -0.03218296 + outSlope: -0.03218296 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 0.9772068 + inSlope: 0.004221801 + outSlope: 0.004221801 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.00000005166413 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.00000005166413 + inSlope: 0 + 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: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2/mixamorig:RightHandPinky3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.00000013996026 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.00000013996026 + inSlope: 0 + 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: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2/mixamorig:RightHandPinky3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.000000035786478 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.000000035786478 + inSlope: 0 + 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: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2/mixamorig:RightHandPinky3 + 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.033333335 + value: 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: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2/mixamorig:RightHandPinky3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.13801248 + inSlope: 0.27275652 + outSlope: 0.27275652 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.11519729 + inSlope: 0.34012285 + outSlope: 0.34012285 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.10624574 + inSlope: 0.18978202 + outSlope: 0.18978202 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.10519806 + inSlope: -0.13809551 + outSlope: -0.13809551 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.12229478 + inSlope: -0.33446166 + outSlope: -0.33446166 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.17390421 + inSlope: -0.060738627 + outSlope: -0.060738627 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.16327092 + inSlope: 0.38097978 + outSlope: 0.38097978 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.11647546 + inSlope: 0.37303025 + outSlope: 0.37303025 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.09382594 + inSlope: 0.23972538 + outSlope: 0.23972538 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.088539355 + inSlope: -0.104584016 + outSlope: -0.104584016 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.11308139 + inSlope: -0.15425801 + outSlope: -0.15425801 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.09960938 + inSlope: 0.73650736 + outSlope: 0.73650736 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.017345153 + inSlope: 1.1361511 + outSlope: 1.1361511 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: 0.0542623 + inSlope: 0.04231216 + outSlope: 0.04231216 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: 0.046097003 + inSlope: 0.18421686 + outSlope: 0.18421686 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: 0.07813681 + inSlope: 0.5594731 + outSlope: 0.5594731 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.11676921 + inSlope: 0.15563546 + outSlope: 0.15563546 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: 0.11224419 + inSlope: -0.16489285 + outSlope: -0.16489285 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 0.10577635 + inSlope: -0.117281705 + outSlope: -0.117281705 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0.10877732 + inSlope: 0.30330783 + outSlope: 0.30330783 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 0.14289911 + inSlope: 0.41794086 + outSlope: 0.41794086 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: 0.14214449 + inSlope: -0.2711593 + outSlope: -0.2711593 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: 0.0041211643 + inSlope: -0.7178575 + outSlope: -0.7178575 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3000002 + value: -0.14775576 + inSlope: -0.45575535 + outSlope: -0.45575535 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5666668 + value: -0.17531613 + inSlope: 0.13312286 + outSlope: 0.13312286 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0666668 + value: -0.14323695 + inSlope: 0.043985587 + outSlope: 0.043985587 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: -0.13801205 + inSlope: -0.0041431226 + outSlope: -0.0041431226 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: Armature.001/mixamorig:Hips/mixamorig:LeftUpLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.07935199 + inSlope: 0.07045716 + outSlope: 0.07045716 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.075682186 + inSlope: -0.09754678 + outSlope: -0.09754678 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.08350654 + inSlope: 0.010589391 + outSlope: 0.010589391 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.06065702 + inSlope: 0.6680093 + outSlope: 0.6680093 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.0059354124 + inSlope: 0.6429956 + outSlope: 0.6429956 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.027610235 + inSlope: -0.16818711 + outSlope: -0.16818711 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.005434135 + inSlope: -0.29533833 + outSlope: -0.29533833 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.008223924 + inSlope: 0.5770409 + outSlope: 0.5770409 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.049124148 + inSlope: 0.29828262 + outSlope: 0.29828262 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.05305414 + inSlope: 0.35624358 + outSlope: 0.35624358 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.09570727 + inSlope: 0.67701674 + outSlope: 0.67701674 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.13283895 + inSlope: 0.45646107 + outSlope: 0.45646107 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.1634814 + inSlope: 0.42045814 + outSlope: 0.42045814 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: 0.19438304 + inSlope: -0.014632124 + outSlope: -0.014632124 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: 0.15765102 + inSlope: -0.2052055 + outSlope: -0.2052055 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: 0.14293744 + inSlope: -0.07928349 + outSlope: -0.07928349 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.13814437 + inSlope: -0.22360663 + outSlope: -0.22360663 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: 0.12640251 + inSlope: -0.24355245 + outSlope: -0.24355245 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 0.12190752 + inSlope: 0.070074566 + outSlope: 0.070074566 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0.14947028 + inSlope: 0.2255652 + outSlope: 0.2255652 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 0.14529958 + inSlope: 0.13456967 + outSlope: 0.13456967 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: 0.1794553 + inSlope: -0.07184349 + outSlope: -0.07184349 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: 0.024168601 + inSlope: -0.7834692 + outSlope: -0.7834692 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3000002 + value: -0.08519941 + inSlope: -0.116277225 + outSlope: -0.116277225 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5666668 + value: -0.10386898 + inSlope: -0.055465676 + outSlope: -0.055465676 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0666668 + value: -0.098403595 + inSlope: 0.01609137 + outSlope: 0.01609137 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: -0.07935907 + inSlope: 0.05554279 + outSlope: 0.05554279 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: Armature.001/mixamorig:Hips/mixamorig:LeftUpLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9822718 + inSlope: 0.03922462 + outSlope: 0.03922462 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.9852243 + inSlope: 0.025586484 + outSlope: 0.025586484 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.98528504 + inSlope: 0.017135741 + outSlope: 0.017135741 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.9873056 + inSlope: 0.0335285 + outSlope: 0.0335285 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.9882778 + inSlope: -0.019065144 + outSlope: -0.019065144 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.9829907 + inSlope: 0.0005221367 + outSlope: 0.0005221367 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.9856843 + inSlope: 0.06685848 + outSlope: 0.06685848 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.9924631 + inSlope: 0.04033237 + outSlope: 0.04033237 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.99401975 + inSlope: 0.012279151 + outSlope: 0.012279151 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.99431396 + inSlope: -0.027762622 + outSlope: -0.027762622 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.9889596 + inSlope: -0.08085875 + outSlope: -0.08085875 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.9861192 + inSlope: 0.0029817428 + outSlope: 0.0029817428 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.98639315 + inSlope: -0.041814767 + outSlope: -0.041814767 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: 0.97882175 + inSlope: -0.006049268 + outSlope: -0.006049268 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: 0.9847803 + inSlope: 0.023041092 + outSlope: 0.023041092 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: 0.9852785 + inSlope: -0.030027358 + outSlope: -0.030027358 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.9827543 + inSlope: 0.028140724 + outSlope: 0.028140724 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: 0.98545724 + inSlope: 0.058953077 + outSlope: 0.058953077 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 0.9866845 + inSlope: -0.004276341 + outSlope: -0.004276341 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0.9816912 + inSlope: -0.08236069 + outSlope: -0.08236069 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 0.97647977 + inSlope: -0.10616462 + outSlope: -0.10616462 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: 0.967188 + inSlope: 0.03505293 + outSlope: 0.03505293 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: 0.99423546 + inSlope: 0.03585312 + outSlope: 0.03585312 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3000002 + value: 0.9816926 + inSlope: -0.0740657 + outSlope: -0.0740657 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5666668 + value: 0.9752602 + inSlope: 0.014418676 + outSlope: 0.014418676 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0666668 + value: 0.9800436 + inSlope: 0.005538767 + outSlope: 0.005538767 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 0.98227113 + inSlope: 0.0037461554 + outSlope: 0.0037461554 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: Armature.001/mixamorig:Hips/mixamorig:LeftUpLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.09898471 + inSlope: -0.033726543 + outSlope: -0.033726543 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.101660825 + inSlope: -0.068137266 + outSlope: -0.068137266 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.104651414 + inSlope: -0.04427924 + outSlope: -0.04427924 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.10238084 + inSlope: 0.12645416 + outSlope: 0.12645416 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.09119087 + inSlope: 0.18289861 + outSlope: 0.18289861 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.05219457 + inSlope: 0.12076317 + outSlope: 0.12076317 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.041708454 + inSlope: 0.08576211 + outSlope: 0.08576211 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.037186068 + inSlope: 0.12681039 + outSlope: 0.12681039 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.026614778 + inSlope: 0.067624286 + outSlope: 0.067624286 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.026187548 + inSlope: 0.2281842 + outSlope: 0.2281842 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.0034196628 + inSlope: 0.19862403 + outSlope: 0.19862403 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.000836451 + inSlope: -0.037969884 + outSlope: -0.037969884 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.0012440236 + inSlope: 0.10559834 + outSlope: 0.10559834 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: 0.034334313 + inSlope: 0.19201033 + outSlope: 0.19201033 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: 0.056824014 + inSlope: 0.014489809 + outSlope: 0.014489809 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: 0.051864397 + inSlope: -0.10987328 + outSlope: -0.10987328 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.03840671 + inSlope: -0.44831103 + outSlope: -0.44831103 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: 0.017255124 + inSlope: -0.87747145 + outSlope: -0.87747145 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: -0.020091407 + inSlope: -0.8101225 + outSlope: -0.8101225 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: -0.04591946 + inSlope: -0.3154732 + outSlope: -0.3154732 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: -0.07039325 + inSlope: -0.36398908 + outSlope: -0.36398908 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: -0.11017353 + inSlope: -0.15530027 + outSlope: -0.15530027 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: -0.1043779 + inSlope: 0.12129833 + outSlope: 0.12129833 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3000002 + value: -0.08478742 + inSlope: 0.04432355 + outSlope: 0.04432355 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5666668 + value: -0.08569145 + inSlope: -0.04166402 + outSlope: -0.04166402 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0666668 + value: -0.09651139 + inSlope: -0.025420772 + outSlope: -0.025420772 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: -0.09898585 + inSlope: -0.0020934662 + outSlope: -0.0020934662 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: Armature.001/mixamorig:Hips/mixamorig:LeftUpLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.1121424 + inSlope: 0.0027083603 + outSlope: 0.0027083603 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.10840767 + inSlope: 0.33535933 + outSlope: 0.33535933 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.08969483 + inSlope: 0.037524506 + outSlope: 0.037524506 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.10590603 + inSlope: -0.72447073 + outSlope: -0.72447073 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.13799287 + inSlope: -1.5283588 + outSlope: -1.5283588 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.20779665 + inSlope: -1.9607568 + outSlope: -1.9607568 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.43350363 + inSlope: -0.17365366 + outSlope: -0.17365366 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.37994614 + inSlope: 1.1072882 + outSlope: 1.1072882 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.31325838 + inSlope: 0.50179106 + outSlope: 0.50179106 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.30371633 + inSlope: 0.33028075 + outSlope: 0.33028075 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.28349802 + inSlope: 0.68109345 + outSlope: 0.68109345 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.2583101 + inSlope: 0.5827973 + outSlope: 0.5827973 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.24464488 + inSlope: 0.54662055 + outSlope: 0.54662055 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.22186871 + inSlope: 0.3620423 + outSlope: 0.3620423 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.22050871 + inSlope: 0.161951 + outSlope: 0.161951 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.1975906 + inSlope: 0.07490358 + outSlope: 0.07490358 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -0.20296629 + inSlope: 0.09839582 + outSlope: 0.09839582 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: -0.24454571 + inSlope: -0.50125057 + outSlope: -0.50125057 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.27906495 + inSlope: -0.3449772 + outSlope: -0.3449772 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: -0.28551888 + inSlope: -0.7392722 + outSlope: -0.7392722 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: -0.32834974 + inSlope: -1.1415596 + outSlope: -1.1415596 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: -0.36162278 + inSlope: -1.2190206 + outSlope: -1.2190206 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: -0.40961787 + inSlope: -0.93630385 + outSlope: -0.93630385 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: -0.43144903 + inSlope: -0.47582972 + outSlope: -0.47582972 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: -0.51156783 + inSlope: -0.55299336 + outSlope: -0.55299336 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: -0.48549566 + inSlope: 0.77310216 + outSlope: 0.77310216 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: -0.3330004 + inSlope: 1.281955 + outSlope: 1.281955 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.266667 + value: -0.15529053 + inSlope: 0.2884217 + outSlope: 0.2884217 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5333335 + value: -0.12961216 + inSlope: 0.19751069 + outSlope: 0.19751069 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9 + value: -0.097171605 + inSlope: 0.073858276 + outSlope: 0.073858276 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2333336 + value: -0.099234566 + inSlope: -0.14643277 + outSlope: -0.14643277 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: -0.112126805 + inSlope: -0.08873426 + outSlope: -0.08873426 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: Armature.001/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.008025533 + inSlope: 0.016504973 + outSlope: 0.016504973 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.0084872665 + inSlope: -0.039256506 + outSlope: -0.039256506 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.0059585976 + inSlope: -0.07355802 + outSlope: -0.07355802 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.0035833982 + inSlope: -0.05917859 + outSlope: -0.05917859 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.0020133585 + inSlope: -0.0019676778 + outSlope: -0.0019676778 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.0034522202 + inSlope: 0.03834913 + outSlope: 0.03834913 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.00617336 + inSlope: -0.0002024232 + outSlope: -0.0002024232 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.0004122386 + inSlope: -0.08111559 + outSlope: -0.08111559 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.0026147251 + inSlope: -0.056595154 + outSlope: -0.056595154 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.013268747 + inSlope: -0.27766275 + outSlope: -0.27766275 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.024827255 + inSlope: -0.52614903 + outSlope: -0.52614903 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.04834534 + inSlope: -0.1465785 + outSlope: -0.1465785 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.03459912 + inSlope: 0.4290363 + outSlope: 0.4290363 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.019742895 + inSlope: 0.262253 + outSlope: 0.262253 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.01711558 + inSlope: 0.08436933 + outSlope: 0.08436933 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.013420965 + inSlope: -0.01108148 + outSlope: -0.01108148 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -0.014620373 + inSlope: -0.01083376 + outSlope: -0.01083376 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: -0.022344356 + inSlope: -0.051954076 + outSlope: -0.051954076 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.025520993 + inSlope: 0.024415238 + outSlope: 0.024415238 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: -0.022694798 + inSlope: -0.041874003 + outSlope: -0.041874003 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: -0.02831258 + inSlope: 0.0511621 + outSlope: 0.0511621 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: -0.019283995 + inSlope: 0.29586583 + outSlope: 0.29586583 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: -0.008588173 + inSlope: 0.20103021 + outSlope: 0.20103021 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: -0.0067064837 + inSlope: -0.031345017 + outSlope: -0.031345017 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: -0.008664639 + inSlope: -0.014551437 + outSlope: -0.014551437 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: -0.0067269527 + inSlope: 0.023788475 + outSlope: 0.023788475 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: -0.0028325825 + inSlope: 0.026323952 + outSlope: 0.026323952 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.266667 + value: 0.001387673 + inSlope: 0.005574452 + outSlope: 0.005574452 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5333335 + value: -0.000041651692 + inSlope: -0.006067022 + outSlope: -0.006067022 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9 + value: 0.0016935791 + inSlope: 0.009649787 + outSlope: 0.009649787 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2333336 + value: 0.0065280907 + inSlope: 0.01962088 + outSlope: 0.01962088 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 0.008024984 + inSlope: 0.011543233 + outSlope: 0.011543233 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: Armature.001/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.042176604 + inSlope: -0.0029959155 + outSlope: -0.0029959155 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.042191423 + inSlope: 0.005516689 + outSlope: 0.005516689 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.04190869 + inSlope: 0.016439874 + outSlope: 0.016439874 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.041095432 + inSlope: 0.023575725 + outSlope: 0.023575725 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.040336974 + inSlope: -0.001757903 + outSlope: -0.001757903 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -0.041212626 + inSlope: -0.09453093 + outSlope: -0.09453093 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.04363894 + inSlope: 0.004019173 + outSlope: 0.004019173 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.042798452 + inSlope: -0.008408272 + outSlope: -0.008408272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.04461336 + inSlope: -0.01134448 + outSlope: -0.01134448 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.04113615 + inSlope: 0.1529247 + outSlope: 0.1529247 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.03405484 + inSlope: 0.2722451 + outSlope: 0.2722451 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.02298648 + inSlope: 0.045659497 + outSlope: 0.045659497 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.031010892 + inSlope: -0.1494801 + outSlope: -0.1494801 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.032951828 + inSlope: -0.03892314 + outSlope: -0.03892314 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.03360577 + inSlope: -0.027079297 + outSlope: -0.027079297 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.03573834 + inSlope: -0.005146823 + outSlope: -0.005146823 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -0.03662823 + inSlope: 0.01341022 + outSlope: 0.01341022 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: -0.031442873 + inSlope: 0.029779479 + outSlope: 0.029779479 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.030603232 + inSlope: -0.013194478 + outSlope: -0.013194478 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: -0.0314808 + inSlope: -0.022161419 + outSlope: -0.022161419 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: -0.03208066 + inSlope: -0.14560252 + outSlope: -0.14560252 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: -0.041187625 + inSlope: -0.25157574 + outSlope: -0.25157574 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: -0.048852388 + inSlope: -0.049962655 + outSlope: -0.049962655 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: -0.04041984 + inSlope: 0.11404557 + outSlope: 0.11404557 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: -0.031410936 + inSlope: 0.06388335 + outSlope: 0.06388335 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: -0.03394719 + inSlope: -0.07226031 + outSlope: -0.07226031 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: -0.046310563 + inSlope: -0.021841474 + outSlope: -0.021841474 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.266667 + value: -0.04000536 + inSlope: -0.009975315 + outSlope: -0.009975315 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5333335 + value: -0.040478233 + inSlope: -0.002587943 + outSlope: -0.002587943 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9 + value: -0.04107109 + inSlope: -0.0025317841 + outSlope: -0.0025317841 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2333336 + value: -0.042022515 + inSlope: -0.0023013935 + outSlope: -0.0023013935 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: -0.042176772 + inSlope: -0.0015985981 + outSlope: -0.0015985981 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: Armature.001/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.99276423 + inSlope: 0.0000411272 + outSlope: 0.0000411272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.99317455 + inSlope: 0.034555785 + outSlope: 0.034555785 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 0.9950693 + inSlope: 0.0051838085 + outSlope: 0.0051838085 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.99352014 + inSlope: -0.08189768 + outSlope: -0.08189768 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.9896095 + inSlope: -0.24334155 + outSlope: -0.24334155 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 0.97729737 + inSlope: -0.41293496 + outSlope: -0.41293496 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.9000734 + inSlope: -0.08202278 + outSlope: -0.08202278 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.9240179 + inSlope: 0.44967198 + outSlope: 0.44967198 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.94861585 + inSlope: 0.17023453 + outSlope: 0.17023453 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.9517816 + inSlope: 0.10363959 + outSlope: 0.10363959 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.9580463 + inSlope: 0.19194336 + outSlope: 0.19194336 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.9645778 + inSlope: 0.15678947 + outSlope: 0.15678947 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.96849895 + inSlope: 0.14612752 + outSlope: 0.14612752 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.97431964 + inSlope: 0.09235018 + outSlope: 0.09235018 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.9746556 + inSlope: 0.036461033 + outSlope: 0.036461033 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.97954106 + inSlope: 0.014828142 + outSlope: 0.014828142 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 0.9783912 + inSlope: 0.020625312 + outSlope: 0.020625312 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: 0.9688702 + inSlope: -0.12747657 + outSlope: -0.12747657 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.9594451 + inSlope: -0.09820997 + outSlope: -0.09820997 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: 0.957587 + inSlope: -0.23787719 + outSlope: -0.23787719 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 0.94358665 + inSlope: -0.39558595 + outSlope: -0.39558595 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 0.93121463 + inSlope: -0.4901829 + outSlope: -0.4901829 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0.91090775 + inSlope: -0.40029842 + outSlope: -0.40029842 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 0.90120643 + inSlope: -0.22844216 + outSlope: -0.22844216 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: 0.8586249 + inSlope: -0.32155246 + outSlope: -0.32155246 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: 0.8735538 + inSlope: 0.4236241 + outSlope: 0.4236241 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: 0.9417845 + inSlope: 0.4572178 + outSlope: 0.4572178 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.266667 + value: 0.9870575 + inSlope: 0.046123073 + outSlope: 0.046123073 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5333335 + value: 0.9907382 + inSlope: 0.025584722 + outSlope: 0.025584722 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9 + value: 0.99441844 + inSlope: 0.007101602 + outSlope: 0.007101602 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2333336 + value: 0.99415493 + inSlope: -0.014825477 + outSlope: -0.014825477 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 0.992766 + inSlope: -0.010045776 + outSlope: -0.010045776 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: Armature.001/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.6314047 + inSlope: -0.024393795 + outSlope: -0.024393795 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.6282265 + inSlope: -0.13579755 + outSlope: -0.13579755 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.6383257 + inSlope: 0.58861333 + outSlope: 0.58861333 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.6913252 + inSlope: 0.71180826 + outSlope: 0.71180826 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.7640193 + inSlope: -0.12809168 + outSlope: -0.12809168 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.7419531 + inSlope: -0.6911609 + outSlope: -0.6911609 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.7107368 + inSlope: -0.98236275 + outSlope: -0.98236275 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.6317971 + inSlope: -1.5012765 + outSlope: -1.5012765 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.51423967 + inSlope: -1.8535764 + outSlope: -1.8535764 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.4528054 + inSlope: -1.8314219 + outSlope: -1.8314219 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.3921449 + inSlope: -1.6619704 + outSlope: -1.6619704 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.34200728 + inSlope: -1.0797716 + outSlope: -1.0797716 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.3201601 + inSlope: -0.7105752 + outSlope: -0.7105752 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.2946356 + inSlope: -0.5451709 + outSlope: -0.5451709 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.28972065 + inSlope: 0.40823707 + outSlope: 0.40823707 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.34490177 + inSlope: 1.1423726 + outSlope: 1.1423726 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333334 + value: 0.42926085 + inSlope: 0.1403544 + outSlope: 0.1403544 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2333333 + value: 0.3965459 + inSlope: -0.43271858 + outSlope: -0.43271858 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: 0.33889845 + inSlope: 0.07737644 + outSlope: 0.07737644 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.35961065 + inSlope: 0.2936423 + outSlope: 0.2936423 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: 0.3670084 + inSlope: 1.4483465 + outSlope: 1.4483465 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 0.456167 + inSlope: 2.1212502 + outSlope: 2.1212502 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 0.50842494 + inSlope: 1.599715 + outSlope: 1.599715 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0.5628148 + inSlope: 1.6254585 + outSlope: 1.6254585 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 0.6532634 + inSlope: 0.92684984 + outSlope: 0.92684984 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: 0.67857885 + inSlope: 0.70795333 + outSlope: 0.70795333 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: 0.70951164 + inSlope: 0.2027913 + outSlope: 0.2027913 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: 0.67418337 + inSlope: -0.2927071 + outSlope: -0.2927071 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3000002 + value: 0.64597076 + inSlope: 0.0537095 + outSlope: 0.0537095 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5666668 + value: 0.635288 + inSlope: -0.099383086 + outSlope: -0.099383086 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0666668 + value: 0.6198389 + inSlope: -0.006897754 + outSlope: -0.006897754 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 0.63139737 + inSlope: 0.042704385 + outSlope: 0.042704385 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: Armature.001/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0173209 + inSlope: 0.22677082 + outSlope: 0.22677082 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.003435703 + inSlope: 0.38544852 + outSlope: 0.38544852 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.036403257 + inSlope: 0.24130191 + outSlope: 0.24130191 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.05012614 + inSlope: 0.1472221 + outSlope: 0.1472221 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.036044113 + inSlope: -0.32763922 + outSlope: -0.32763922 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.010392144 + inSlope: -0.27799058 + outSlope: -0.27799058 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.005238513 + inSlope: -0.38916677 + outSlope: -0.38916677 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.044254594 + inSlope: -0.84752584 + outSlope: -0.84752584 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.08506601 + inSlope: -0.25095206 + outSlope: -0.25095206 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.08878416 + inSlope: 0.82744926 + outSlope: 0.82744926 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.029902674 + inSlope: 1.4533602 + outSlope: 1.4533602 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.008106602 + inSlope: 0.44408208 + outSlope: 0.44408208 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.00029716332 + inSlope: -0.32112703 + outSlope: -0.32112703 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.013301869 + inSlope: -0.36504233 + outSlope: -0.36504233 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.039531667 + inSlope: -0.113886364 + outSlope: -0.113886364 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.038409922 + inSlope: 0.13278505 + outSlope: 0.13278505 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333334 + value: -0.019639095 + inSlope: 0.19185722 + outSlope: 0.19185722 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2333333 + value: 0.0016386372 + inSlope: 0.21710613 + outSlope: 0.21710613 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: 0.024080155 + inSlope: 0.2602726 + outSlope: 0.2602726 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.04631867 + inSlope: -0.008491144 + outSlope: -0.008491144 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: 0.03580925 + inSlope: -0.94692785 + outSlope: -0.94692785 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: -0.016809832 + inSlope: -1.0748883 + outSlope: -1.0748883 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: -0.035849907 + inSlope: -0.11000404 + outSlope: -0.11000404 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: -0.024143387 + inSlope: 0.4729285 + outSlope: 0.4729285 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 0.0123275975 + inSlope: 0.42029864 + outSlope: 0.42029864 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: 0.023698552 + inSlope: 0.20209703 + outSlope: 0.20209703 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: 0.026755089 + inSlope: 0.009961678 + outSlope: 0.009961678 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: 0.019531531 + inSlope: -0.08605319 + outSlope: -0.08605319 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3000002 + value: 0.004052164 + inSlope: -0.046625104 + outSlope: -0.046625104 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5666668 + value: -0.012641265 + inSlope: -0.035142757 + outSlope: -0.035142757 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0666668 + value: -0.015142227 + inSlope: -0.0014588716 + outSlope: -0.0014588716 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: -0.017320987 + inSlope: -0.007637877 + outSlope: -0.007637877 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: Armature.001/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.027771633 + inSlope: -0.14107123 + outSlope: -0.14107123 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -0.04084656 + inSlope: -0.2513926 + outSlope: -0.2513926 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.060403142 + inSlope: -0.058653712 + outSlope: -0.058653712 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.056487717 + inSlope: 0.100935504 + outSlope: 0.100935504 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.036490437 + inSlope: 0.11730994 + outSlope: 0.11730994 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.027432581 + inSlope: 0.42280474 + outSlope: 0.42280474 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.0042479527 + inSlope: 0.32804725 + outSlope: 0.32804725 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.0051600807 + inSlope: 0.1484003 + outSlope: 0.1484003 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.008309034 + inSlope: 0.1715526 + outSlope: 0.1715526 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.015767438 + inSlope: 1.5736952 + outSlope: 1.5736952 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.11322212 + inSlope: 2.288729 + outSlope: 2.288729 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.16834949 + inSlope: 0.62536174 + outSlope: 0.62536174 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.15491296 + inSlope: -0.43557733 + outSlope: -0.43557733 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.139311 + inSlope: -0.22715542 + outSlope: -0.22715542 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.14655288 + inSlope: 0.069238834 + outSlope: 0.069238834 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.14324853 + inSlope: -0.187181 + outSlope: -0.187181 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333334 + value: 0.13068485 + inSlope: -0.019050097 + outSlope: -0.019050097 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2333333 + value: 0.14014444 + inSlope: 0.24989241 + outSlope: 0.24989241 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: 0.17625071 + inSlope: 0.12223978 + outSlope: 0.12223978 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.17888254 + inSlope: -0.2779734 + outSlope: -0.2779734 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: 0.16149873 + inSlope: -1.6597173 + outSlope: -1.6597173 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 0.06823476 + inSlope: -2.075946 + outSlope: -2.075946 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 0.023102451 + inSlope: -0.729591 + outSlope: -0.729591 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0.019595386 + inSlope: -0.26075193 + outSlope: -0.26075193 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: -0.0048542223 + inSlope: -0.20142002 + outSlope: -0.20142002 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: -0.0077089947 + inSlope: -0.20939526 + outSlope: -0.20939526 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: -0.024216784 + inSlope: -0.14450437 + outSlope: -0.14450437 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: -0.046754804 + inSlope: 0.00033762353 + outSlope: 0.00033762353 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3000002 + value: -0.03550091 + inSlope: 0.09652503 + outSlope: 0.09652503 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5666668 + value: -0.019650538 + inSlope: 0.0077734403 + outSlope: 0.0077734403 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0666668 + value: -0.025187062 + inSlope: -0.015620446 + outSlope: -0.015620446 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: -0.027771678 + inSlope: -0.002592581 + outSlope: -0.002592581 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: Armature.001/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.7747625 + inSlope: 0.018337367 + outSlope: 0.018337367 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.77694994 + inSlope: 0.09448348 + outSlope: 0.09448348 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.7665289 + inSlope: -0.5168428 + outSlope: -0.5168428 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.7185861 + inSlope: -0.68441755 + outSlope: -0.68441755 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.6431514 + inSlope: 0.17495526 + outSlope: 0.17495526 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.6698097 + inSlope: 0.7655072 + outSlope: 0.7655072 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.7034257 + inSlope: 0.99723554 + outSlope: 0.99723554 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.7738523 + inSlope: 1.1654611 + outSlope: 1.1654611 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.853377 + inSlope: 1.0957253 + outSlope: 1.0957253 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.8870378 + inSlope: 0.88563514 + outSlope: 0.88563514 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.9124193 + inSlope: 0.56131256 + outSlope: 0.56131256 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.9244587 + inSlope: 0.33288896 + outSlope: 0.33288896 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.9346119 + inSlope: 0.3127259 + outSlope: 0.3127259 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.9453071 + inSlope: 0.20558766 + outSlope: 0.20558766 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.94499815 + inSlope: -0.14298065 + outSlope: -0.14298065 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.92684805 + inSlope: -0.39403057 + outSlope: -0.39403057 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333334 + value: 0.8934601 + inSlope: -0.05842715 + outSlope: -0.05842715 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2333333 + value: 0.90725315 + inSlope: 0.14966267 + outSlope: 0.14966267 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: 0.9238526 + inSlope: -0.0601173 + outSlope: -0.0601173 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.9146233 + inSlope: -0.062259533 + outSlope: -0.062259533 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: 0.915391 + inSlope: -0.41262433 + outSlope: -0.41262433 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 0.88711506 + inSlope: -0.8301239 + outSlope: -0.8301239 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 0.8600495 + inSlope: -0.91675484 + outSlope: -0.91675484 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0.825998 + inSlope: -1.0943012 + outSlope: -1.0943012 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 0.7570148 + inSlope: -0.79487073 + outSlope: -0.79487073 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: 0.7341047 + inSlope: -0.6605722 + outSlope: -0.6605722 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: 0.7037691 + inSlope: -0.20833722 + outSlope: -0.20833722 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: 0.7368238 + inSlope: 0.27108666 + outSlope: 0.27108666 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3000002 + value: 0.7625255 + inSlope: -0.040769614 + outSlope: -0.040769614 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5666668 + value: 0.77192175 + inSlope: 0.081610754 + outSlope: 0.081610754 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0666668 + value: 0.7841786 + inSlope: 0.0049236463 + outSlope: 0.0049236463 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 0.7747684 + inSlope: -0.034999285 + outSlope: -0.034999285 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: Armature.001/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.16970254 + inSlope: 0.0000017881392 + outSlope: 0.0000017881392 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.16970263 + inSlope: 0.02241699 + outSlope: 0.02241699 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.19208892 + inSlope: 1.0637103 + outSlope: 1.0637103 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.24211115 + inSlope: 1.4535332 + outSlope: 1.4535332 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.3274669 + inSlope: 1.008359 + outSlope: 1.008359 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.35621506 + inSlope: -0.06734854 + outSlope: -0.06734854 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.32297695 + inSlope: -1.3467956 + outSlope: -1.3467956 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.26642862 + inSlope: -2.2991178 + outSlope: -2.2991178 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.16970247 + inSlope: -1.4508905 + outSlope: -1.4508905 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.16970268 + inSlope: 0.0000037997943 + outSlope: 0.0000037997943 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: 0.16970263 + inSlope: 0.0000024586939 + outSlope: 0.0000024586939 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: 0.16970274 + inSlope: 0.1843455 + outSlope: 0.1843455 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.18199232 + inSlope: 2.2178588 + outSlope: 2.2178588 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: 0.31756034 + inSlope: 2.182797 + outSlope: 2.182797 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 0.32751247 + inSlope: 0.15873732 + outSlope: 0.15873732 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 0.32814282 + inSlope: -0.47538093 + outSlope: -0.47538093 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0.29582033 + inSlope: -1.2633729 + outSlope: -1.2633729 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 0.20012426 + inSlope: -1.0456685 + outSlope: -1.0456685 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: 0.1697026 + inSlope: 0.0000033527645 + outSlope: 0.0000033527645 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 0.16970259 + inSlope: 0.0000013411058 + outSlope: 0.0000013411058 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: Armature.001/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot/mixamorig:LeftToeBase + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.02895891 + inSlope: 0.0000011734663 + outSlope: 0.0000011734663 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.028958917 + inSlope: -0.0123898955 + outSlope: -0.0123898955 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.024642555 + inSlope: 0.16530707 + outSlope: 0.16530707 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.039153438 + inSlope: 0.29256728 + outSlope: 0.29256728 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.044840135 + inSlope: -0.20585683 + outSlope: -0.20585683 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.030423274 + inSlope: -1.5124255 + outSlope: -1.5124255 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.055988293 + inSlope: -0.7745342 + outSlope: -0.7745342 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.02121239 + inSlope: 1.2742088 + outSlope: 1.2742088 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.028958933 + inSlope: 0.7525719 + outSlope: 0.7525719 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.02895902 + inSlope: -0.00000044703756 + outSlope: -0.00000044703756 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: 0.02895885 + inSlope: 0.00000030733668 + outSlope: 0.00000030733668 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: 0.028958982 + inSlope: -0.09708323 + outSlope: -0.09708323 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.02248664 + inSlope: -1.2244505 + outSlope: -1.2244505 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: -0.05267124 + inSlope: -0.29888135 + outSlope: -0.29888135 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 0.0025609657 + inSlope: 1.5183495 + outSlope: 1.5183495 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 0.048551966 + inSlope: 0.66430765 + outSlope: 0.66430765 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0.046848096 + inSlope: -0.12885363 + outSlope: -0.12885363 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 0.033555184 + inSlope: -0.20253779 + outSlope: -0.20253779 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: 0.028958937 + inSlope: 0.00000089407047 + outSlope: 0.00000089407047 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 0.028958911 + inSlope: -0.00000055879406 + outSlope: -0.00000055879406 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: Armature.001/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot/mixamorig:LeftToeBase + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.122050114 + inSlope: 0.0000004470348 + outSlope: 0.0000004470348 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.12205005 + inSlope: -0.004779357 + outSlope: -0.004779357 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.124425404 + inSlope: -0.015235884 + outSlope: -0.015235884 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.12338449 + inSlope: 0.0055116937 + outSlope: 0.0055116937 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.124606684 + inSlope: -0.026702408 + outSlope: -0.026702408 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.12583812 + inSlope: -0.18368985 + outSlope: -0.18368985 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.13685268 + inSlope: -0.13717432 + outSlope: -0.13717432 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.13498308 + inSlope: 0.22203766 + outSlope: 0.22203766 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.12205018 + inSlope: 0.19399475 + outSlope: 0.19399475 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.12205011 + inSlope: -0.0000003352784 + outSlope: -0.0000003352784 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: -0.12205014 + inSlope: -0.0000010058293 + outSlope: -0.0000010058293 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: -0.12205016 + inSlope: -0.036500763 + outSlope: -0.036500763 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.12448352 + inSlope: -0.22290285 + outSlope: -0.22290285 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: -0.13691038 + inSlope: -0.07387471 + outSlope: -0.07387471 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: -0.12940854 + inSlope: 0.19055638 + outSlope: 0.19055638 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: -0.12420663 + inSlope: 0.08362899 + outSlope: 0.08362899 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: -0.12383328 + inSlope: 0.013615444 + outSlope: 0.013615444 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: -0.12263173 + inSlope: 0.004443307 + outSlope: 0.004443307 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: -0.12205007 + inSlope: -0.0000016763822 + outSlope: -0.0000016763822 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: -0.12205013 + inSlope: -0.0000011175881 + outSlope: -0.0000011175881 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: Armature.001/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot/mixamorig:LeftToeBase + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9774795 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.9774795 + inSlope: -0.004145798 + outSlope: -0.004145798 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.9731459 + inSlope: -0.23442945 + outSlope: -0.23442945 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.9615745 + inSlope: -0.3737015 + outSlope: -0.3737015 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.9355362 + inSlope: -0.3426093 + outSlope: -0.3426093 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.92539185 + inSlope: -0.011271805 + outSlope: -0.011271805 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.93478477 + inSlope: 0.43092513 + outSlope: 0.43092513 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.9541202 + inSlope: 0.6404213 + outSlope: 0.6404213 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.9774795 + inSlope: 0.3503898 + outSlope: 0.3503898 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.9774795 + inSlope: -0.0000008940705 + outSlope: -0.0000008940705 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: 0.9774795 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: 0.9774795 + inSlope: -0.035254095 + outSlope: -0.035254095 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.97512925 + inSlope: -0.60985065 + outSlope: -0.60985065 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: 0.9368227 + inSlope: -0.58784664 + outSlope: -0.58784664 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 0.9359394 + inSlope: -0.02483281 + outSlope: -0.02483281 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 0.9351672 + inSlope: 0.15126541 + outSlope: 0.15126541 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0.94602376 + inSlope: 0.38892454 + outSlope: 0.38892454 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 0.9714864 + inSlope: 0.2331414 + outSlope: 0.2331414 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: 0.9774795 + inSlope: -0.0000008940705 + outSlope: -0.0000008940705 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 0.9774795 + inSlope: 0 + 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: Armature.001/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot/mixamorig:LeftToeBase + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.127639 + inSlope: 0.030447988 + outSlope: 0.030447988 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.10464032 + inSlope: -0.38496867 + outSlope: -0.38496867 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.02221786 + inSlope: 0.26191005 + outSlope: 0.26191005 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.18643211 + inSlope: 1.2061448 + outSlope: 1.2061448 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.22887988 + inSlope: 1.5608016 + outSlope: 1.5608016 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.34223646 + inSlope: 1.0488617 + outSlope: 1.0488617 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.36040965 + inSlope: 0.30654627 + outSlope: 0.30654627 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.34543568 + inSlope: -0.6453626 + outSlope: -0.6453626 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.30540785 + inSlope: -0.34826347 + outSlope: -0.34826347 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: 0.28230187 + inSlope: -0.15479818 + outSlope: -0.15479818 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: 0.29628992 + inSlope: 0.20311718 + outSlope: 0.20311718 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: 0.3175185 + inSlope: 0.3755594 + outSlope: 0.3755594 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 0.32898062 + inSlope: 0.16325325 + outSlope: 0.16325325 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 0.32840204 + inSlope: 0.0005891593 + outSlope: 0.0005891593 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0.3290199 + inSlope: 0.272442 + outSlope: 0.272442 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 0.36743212 + inSlope: 0.40081182 + outSlope: 0.40081182 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: 0.32823327 + inSlope: -0.4814722 + outSlope: -0.4814722 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: 0.1592768 + inSlope: -0.58220065 + outSlope: -0.58220065 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: 0.0675732 + inSlope: -0.05556 + outSlope: -0.05556 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7 + value: 0.09832026 + inSlope: 0.09154101 + outSlope: 0.09154101 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2333336 + value: 0.1257229 + inSlope: 0.022983648 + outSlope: 0.022983648 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 0.12763901 + inSlope: 0.012995762 + outSlope: 0.012995762 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: Armature.001/mixamorig:Hips/mixamorig:RightUpLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.052954268 + inSlope: 0.020944027 + outSlope: 0.020944027 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.076845564 + inSlope: 0.40143195 + outSlope: 0.40143195 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.14708135 + inSlope: -0.3280505 + outSlope: -0.3280505 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.024101546 + inSlope: -0.6964029 + outSlope: -0.6964029 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.00051902805 + inSlope: -0.7869549 + outSlope: -0.7869549 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.060104817 + inSlope: -1.0017387 + outSlope: -1.0017387 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.0951447 + inSlope: -0.6753824 + outSlope: -0.6753824 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.1082749 + inSlope: 0.08162361 + outSlope: 0.08162361 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.083065026 + inSlope: 0.5637591 + outSlope: 0.5637591 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: 0.012746454 + inSlope: 0.18105052 + outSlope: 0.18105052 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: -0.065181196 + inSlope: -0.33149093 + outSlope: -0.33149093 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: -0.088043466 + inSlope: -0.21825759 + outSlope: -0.21825759 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: -0.09013148 + inSlope: 0.36828744 + outSlope: 0.36828744 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: -0.063490994 + inSlope: 0.5216749 + outSlope: 0.5216749 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: -0.055353157 + inSlope: -0.014703535 + outSlope: -0.014703535 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: -0.07423066 + inSlope: -0.18871605 + outSlope: -0.18871605 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: -0.05654629 + inSlope: 0.17625697 + outSlope: 0.17625697 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: -0.0007701331 + inSlope: 0.360336 + outSlope: 0.360336 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: 0.06966336 + inSlope: 0.080203936 + outSlope: 0.080203936 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7 + value: 0.05110031 + inSlope: -0.04822251 + outSlope: -0.04822251 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2333336 + value: 0.050627336 + inSlope: 0.017955897 + outSlope: 0.017955897 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 0.052954763 + inSlope: 0.019840207 + outSlope: 0.019840207 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: Armature.001/mixamorig:Hips/mixamorig:RightUpLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.973447 + inSlope: 0.0014913081 + outSlope: 0.0014913081 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.9778889 + inSlope: 0.039726194 + outSlope: 0.039726194 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.977816 + inSlope: 0.03497601 + outSlope: 0.03497601 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.9694657 + inSlope: -0.23751862 + outSlope: -0.23751862 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.9595649 + inSlope: -0.42773 + outSlope: -0.42773 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.92272544 + inSlope: -0.39498317 + outSlope: -0.39498317 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.91461813 + inSlope: -0.14790851 + outSlope: -0.14790851 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.92011315 + inSlope: 0.2773815 + outSlope: 0.2773815 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.93766487 + inSlope: 0.16098264 + outSlope: 0.16098264 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: 0.9500635 + inSlope: 0.06568008 + outSlope: 0.06568008 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: 0.94752246 + inSlope: -0.091199666 + outSlope: -0.091199666 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: 0.9385415 + inSlope: -0.15016153 + outSlope: -0.15016153 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 0.9340894 + inSlope: -0.058576822 + outSlope: -0.058576822 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 0.93463635 + inSlope: -0.016332792 + outSlope: -0.016332792 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0.93300056 + inSlope: -0.15789725 + outSlope: -0.15789725 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 0.91377026 + inSlope: -0.22613636 + outSlope: -0.22613636 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: 0.9195151 + inSlope: 0.14976726 + outSlope: 0.14976726 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: 0.97193044 + inSlope: 0.11873972 + outSlope: 0.11873972 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: 0.98332566 + inSlope: -0.0038713252 + outSlope: -0.0038713252 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7 + value: 0.97939426 + inSlope: -0.011095376 + outSlope: -0.011095376 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2333336 + value: 0.9741306 + inSlope: -0.0073608826 + outSlope: -0.0073608826 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 0.973447 + inSlope: -0.0050175237 + outSlope: -0.0050175237 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: Armature.001/mixamorig:Hips/mixamorig:RightUpLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.18249694 + inSlope: 0.035572797 + outSlope: 0.035572797 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.16394699 + inSlope: 0.18858609 + outSlope: 0.18858609 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -0.14747658 + inSlope: -0.043578077 + outSlope: -0.043578077 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.15747537 + inSlope: -0.11724457 + outSlope: -0.11724457 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.16385636 + inSlope: -0.21098143 + outSlope: -0.21098143 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.16685124 + inSlope: 0.22399122 + outSlope: 0.22399122 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.15660805 + inSlope: 0.17444469 + outSlope: 0.17444469 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.14947422 + inSlope: 0.1826857 + outSlope: 0.1826857 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.14356518 + inSlope: -0.014552774 + outSlope: -0.014552774 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: -0.13237253 + inSlope: 0.15664285 + outSlope: 0.15664285 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: -0.100820914 + inSlope: -0.04565113 + outSlope: -0.04565113 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: -0.102812134 + inSlope: -0.039173033 + outSlope: -0.039173033 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: -0.10547515 + inSlope: -0.26878253 + outSlope: -0.26878253 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: -0.12073095 + inSlope: -0.44103116 + outSlope: -0.44103116 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: -0.13487725 + inSlope: -0.40158466 + outSlope: -0.40158466 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: -0.15654822 + inSlope: -0.31430513 + outSlope: -0.31430513 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: -0.20870431 + inSlope: -0.14498919 + outSlope: -0.14498919 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: -0.17315173 + inSlope: 0.12971085 + outSlope: 0.12971085 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: -0.15379062 + inSlope: -0.01400025 + outSlope: -0.01400025 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7 + value: -0.1688455 + inSlope: -0.025867606 + outSlope: -0.025867606 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2333336 + value: -0.18083206 + inSlope: -0.0186521 + outSlope: -0.0186521 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: -0.1824966 + inSlope: -0.011984568 + outSlope: -0.011984568 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: Armature.001/mixamorig:Hips/mixamorig:RightUpLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.3641008 + inSlope: 0.069190264 + outSlope: 0.069190264 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.36257377 + inSlope: -0.3327531 + outSlope: -0.3327531 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -0.49329314 + inSlope: -0.79033935 + outSlope: -0.79033935 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.5381203 + inSlope: 0.3385898 + outSlope: 0.3385898 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.43871975 + inSlope: 1.088132 + outSlope: 1.088132 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.40083596 + inSlope: 1.1860006 + outSlope: 1.1860006 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.35965306 + inSlope: 1.5476044 + outSlope: 1.5476044 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.2264022 + inSlope: 2.1657307 + outSlope: 2.1657307 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.15328027 + inSlope: 1.1680812 + outSlope: 1.1680812 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.14853005 + inSlope: -0.04712882 + outSlope: -0.04712882 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.21913557 + inSlope: -1.2014668 + outSlope: -1.2014668 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.32584623 + inSlope: -0.2380828 + outSlope: -0.2380828 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -0.3022171 + inSlope: 0.5227827 + outSlope: 0.5227827 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666668 + value: -0.24490239 + inSlope: 0.08169018 + outSlope: 0.08169018 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: -0.23321764 + inSlope: -0.015370183 + outSlope: -0.015370183 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: -0.2381974 + inSlope: -1.4285376 + outSlope: -1.4285376 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: -0.3284534 + inSlope: -2.2913294 + outSlope: -2.2913294 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: -0.39095277 + inSlope: -1.1199939 + outSlope: -1.1199939 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: -0.40535563 + inSlope: -0.21945989 + outSlope: -0.21945989 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: -0.45608437 + inSlope: -0.73927385 + outSlope: -0.73927385 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: -0.48706368 + inSlope: 0.39999962 + outSlope: 0.39999962 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1000001 + value: -0.38905776 + inSlope: 0.3967961 + outSlope: 0.3967961 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: -0.38788137 + inSlope: -0.18906686 + outSlope: -0.18906686 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0666668 + value: -0.3692555 + inSlope: 0.0534909 + outSlope: 0.0534909 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: -0.36410147 + inSlope: -0.0012633216 + outSlope: -0.0012633216 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: Armature.001/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.011887915 + inSlope: -0.017000064 + outSlope: -0.017000064 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.010673149 + inSlope: -0.01686129 + outSlope: -0.01686129 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.00969857 + inSlope: 0.0024411038 + outSlope: 0.0024411038 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.010865596 + inSlope: -0.036196068 + outSlope: -0.036196068 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.0118106725 + inSlope: 0.046787072 + outSlope: 0.046787072 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.013496851 + inSlope: 0.07863389 + outSlope: 0.07863389 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.01705293 + inSlope: 0.20697539 + outSlope: 0.20697539 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.038762886 + inSlope: 0.13401675 + outSlope: 0.13401675 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.03622965 + inSlope: -0.08532429 + outSlope: -0.08532429 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.033074595 + inSlope: -0.13479842 + outSlope: -0.13479842 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.018428596 + inSlope: -0.06900574 + outSlope: -0.06900574 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.0076385858 + inSlope: -0.08121744 + outSlope: -0.08121744 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 0.0060334825 + inSlope: 0.022672009 + outSlope: 0.022672009 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666668 + value: 0.012009687 + inSlope: 0.08822972 + outSlope: 0.08822972 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: 0.025709556 + inSlope: 0.06565369 + outSlope: 0.06565369 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 0.027365604 + inSlope: -0.066990584 + outSlope: -0.066990584 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 0.021243522 + inSlope: -0.15984422 + outSlope: -0.15984422 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0.016709317 + inSlope: -0.107168384 + outSlope: -0.107168384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 0.013754544 + inSlope: -0.0067251846 + outSlope: -0.0067251846 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: 0.017416786 + inSlope: 0.042557407 + outSlope: 0.042557407 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: 0.016051576 + inSlope: -0.037646618 + outSlope: -0.037646618 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1000001 + value: 0.010778782 + inSlope: -0.01052754 + outSlope: -0.01052754 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: 0.008600326 + inSlope: -0.009606844 + outSlope: -0.009606844 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0666668 + value: 0.009918668 + inSlope: 0.0037823655 + outSlope: 0.0037823655 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 0.011887647 + inSlope: 0.00764584 + outSlope: 0.00764584 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: Armature.001/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.029797208 + inSlope: 0.005740206 + outSlope: 0.005740206 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.038940016 + inSlope: 0.19966164 + outSlope: 0.19966164 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.0360616 + inSlope: -0.103549704 + outSlope: -0.103549704 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.029299345 + inSlope: 0.057249058 + outSlope: 0.057249058 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.040999305 + inSlope: 0.15285534 + outSlope: 0.15285534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.04707072 + inSlope: -0.020444877 + outSlope: -0.020444877 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.039636325 + inSlope: -0.18403569 + outSlope: -0.18403569 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.029994704 + inSlope: -0.01383087 + outSlope: -0.01383087 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.033879627 + inSlope: 0.070421286 + outSlope: 0.070421286 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.03468946 + inSlope: 0.019379739 + outSlope: 0.019379739 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.03412834 + inSlope: 0.012585954 + outSlope: 0.012585954 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.045075417 + inSlope: 0.047040798 + outSlope: 0.047040798 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 0.041763768 + inSlope: -0.082555115 + outSlope: -0.082555115 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666668 + value: 0.037518006 + inSlope: -0.010991024 + outSlope: -0.010991024 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: 0.03440538 + inSlope: -0.016187942 + outSlope: -0.016187942 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 0.034139026 + inSlope: 0.111001536 + outSlope: 0.111001536 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 0.041805476 + inSlope: 0.14749883 + outSlope: 0.14749883 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0.04397228 + inSlope: -0.043119743 + outSlope: -0.043119743 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 0.035207998 + inSlope: -0.086022936 + outSlope: -0.086022936 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: 0.028108397 + inSlope: -0.06558438 + outSlope: -0.06558438 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: 0.028041132 + inSlope: 0.075130075 + outSlope: 0.075130075 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1000001 + value: 0.04556108 + inSlope: 0.078279674 + outSlope: 0.078279674 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: 0.04861303 + inSlope: 0.02769741 + outSlope: 0.02769741 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0666668 + value: 0.035759576 + inSlope: -0.02961173 + outSlope: -0.02961173 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 0.02979722 + inSlope: -0.010353728 + outSlope: -0.010353728 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: Armature.001/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9308069 + inSlope: 0.02699375 + outSlope: 0.02699375 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.93108004 + inSlope: -0.13879628 + outSlope: -0.13879628 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 0.86906123 + inSlope: -0.4419494 + outSlope: -0.4419494 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.8422886 + inSlope: 0.21221116 + outSlope: 0.21221116 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.8976105 + inSlope: 0.52221715 + outSlope: 0.52221715 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.9148403 + inSlope: 0.51716125 + outSlope: 0.51716125 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.9320879 + inSlope: 0.58208764 + outSlope: 0.58208764 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.9728 + inSlope: 0.49936393 + outSlope: 0.49936393 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.98693705 + inSlope: 0.2241851 + outSlope: 0.2241851 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.9877457 + inSlope: -0.0037381304 + outSlope: -0.0037381304 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 0.97492325 + inSlope: -0.27094957 + outSlope: -0.27094957 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.94431674 + inSlope: -0.082859576 + outSlope: -0.082859576 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 0.95230466 + inSlope: 0.16893642 + outSlope: 0.16893642 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666668 + value: 0.96874714 + inSlope: 0.019942205 + outSlope: 0.019942205 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: 0.9714756 + inSlope: -0.004889722 + outSlope: -0.004889722 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 0.97023076 + inSlope: -0.4218037 + outSlope: -0.4218037 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 0.9433554 + inSlope: -0.7653419 + outSlope: -0.7653419 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0.91920793 + inSlope: -0.4371786 + outSlope: -0.4371786 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 0.9133773 + inSlope: -0.095363356 + outSlope: -0.095363356 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: 0.889322 + inSlope: -0.37767684 + outSlope: -0.37767684 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: 0.8727686 + inSlope: 0.22009379 + outSlope: 0.22009379 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1000001 + value: 0.92002285 + inSlope: 0.16533509 + outSlope: 0.16533509 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: 0.92038625 + inSlope: -0.08090891 + outSlope: -0.08090891 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0666668 + value: 0.92858666 + inSlope: 0.022376798 + outSlope: 0.022376798 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 0.9308066 + inSlope: -0.00025928044 + outSlope: -0.00025928044 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: Armature.001/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.69807935 + inSlope: -0.03537476 + outSlope: -0.03537476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.6938287 + inSlope: 0.14664169 + outSlope: 0.14664169 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.7480811 + inSlope: 0.085869975 + outSlope: 0.085869975 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.75086945 + inSlope: -0.014510779 + outSlope: -0.014510779 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.7348996 + inSlope: -0.5214406 + outSlope: -0.5214406 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.6822598 + inSlope: -1.1637146 + outSlope: -1.1637146 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.63636184 + inSlope: -1.4428918 + outSlope: -1.4428918 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.52689236 + inSlope: -1.8389835 + outSlope: -1.8389835 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.46346813 + inSlope: -1.9992511 + outSlope: -1.9992511 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.39360896 + inSlope: -1.1325457 + outSlope: -1.1325457 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.38796502 + inSlope: -0.10845776 + outSlope: -0.10845776 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.38895184 + inSlope: 0.27684617 + outSlope: 0.27684617 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.4847809 + inSlope: 1.4549978 + outSlope: 1.4549978 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: 0.6364447 + inSlope: 0.5595775 + outSlope: 0.5595775 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2333333 + value: 0.64524055 + inSlope: 0.027526593 + outSlope: 0.027526593 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: 0.6045855 + inSlope: -0.86165154 + outSlope: -0.86165154 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.53581333 + inSlope: -1.0626993 + outSlope: -1.0626993 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: 0.5005442 + inSlope: -0.6655478 + outSlope: -0.6655478 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 0.4914434 + inSlope: 0.83686167 + outSlope: 0.83686167 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 0.5563349 + inSlope: 1.7261167 + outSlope: 1.7261167 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0.6065179 + inSlope: 1.6118232 + outSlope: 1.6118232 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 0.71430165 + inSlope: 1.2447321 + outSlope: 1.2447321 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: 0.78750455 + inSlope: 0.12478095 + outSlope: 0.12478095 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: 0.7430198 + inSlope: -0.38649905 + outSlope: -0.38649905 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: 0.6994431 + inSlope: 0.041874684 + outSlope: 0.041874684 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9333334 + value: 0.70011747 + inSlope: -0.023860876 + outSlope: -0.023860876 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 0.6980795 + inSlope: 0.006426579 + outSlope: 0.006426579 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: Armature.001/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.12937085 + inSlope: 0.03483519 + outSlope: 0.03483519 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.1307592 + inSlope: -0.06657823 + outSlope: -0.06657823 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.13039647 + inSlope: 0.051470682 + outSlope: 0.051470682 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.12663212 + inSlope: 0.090631455 + outSlope: 0.090631455 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.123048164 + inSlope: -0.06404842 + outSlope: -0.06404842 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.1351259 + inSlope: -0.3635416 + outSlope: -0.3635416 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.15079452 + inSlope: -0.34422636 + outSlope: -0.34422636 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.15894517 + inSlope: 0.021265045 + outSlope: 0.021265045 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.15665667 + inSlope: -0.014417917 + outSlope: -0.014417917 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.15990637 + inSlope: 0.2882583 + outSlope: 0.2882583 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.13743943 + inSlope: 0.8654634 + outSlope: 0.8654634 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.06754255 + inSlope: 0.8176144 + outSlope: 0.8176144 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.043672334 + inSlope: -0.0874919 + outSlope: -0.0874919 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: -0.084883876 + inSlope: -0.4299438 + outSlope: -0.4299438 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2333333 + value: -0.12316025 + inSlope: -0.19055973 + outSlope: -0.19055973 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: -0.16342981 + inSlope: -0.26844156 + outSlope: -0.26844156 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.17585503 + inSlope: -0.048284106 + outSlope: -0.048284106 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: -0.17495698 + inSlope: 0.09656225 + outSlope: 0.09656225 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: -0.16941755 + inSlope: -0.09665082 + outSlope: -0.09665082 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: -0.18140036 + inSlope: -0.34307238 + outSlope: -0.34307238 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: -0.19228905 + inSlope: 0.016641483 + outSlope: 0.016641483 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: -0.1641788 + inSlope: 0.28896558 + outSlope: 0.28896558 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: -0.17634499 + inSlope: -0.16830766 + outSlope: -0.16830766 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: -0.17110658 + inSlope: 0.157186 + outSlope: 0.157186 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: -0.13684611 + inSlope: 0.020024497 + outSlope: 0.020024497 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9333334 + value: -0.13309395 + inSlope: 0.03057509 + outSlope: 0.03057509 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: -0.12937033 + inSlope: 0.0050000893 + outSlope: 0.0050000893 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: Armature.001/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.042812422 + inSlope: -0.008937008 + outSlope: -0.008937008 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -0.04063213 + inSlope: 0.0071815 + outSlope: 0.0071815 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.030824576 + inSlope: 0.002390682 + outSlope: 0.002390682 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.03166505 + inSlope: 0.05627161 + outSlope: 0.05627161 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.032990437 + inSlope: -0.20181608 + outSlope: -0.20181608 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.052334666 + inSlope: -0.45346308 + outSlope: -0.45346308 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.070939206 + inSlope: -0.35724849 + outSlope: -0.35724849 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.08300095 + inSlope: -0.12325984 + outSlope: -0.12325984 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.08436857 + inSlope: -0.36113983 + outSlope: -0.36113983 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.10707696 + inSlope: -0.22022593 + outSlope: -0.22022593 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.09905031 + inSlope: 0.447181 + outSlope: 0.447181 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.05089022 + inSlope: 0.6411243 + outSlope: 0.6411243 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.009456804 + inSlope: 0.39529163 + outSlope: 0.39529163 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: 0.010997339 + inSlope: -0.20750356 + outSlope: -0.20750356 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2333333 + value: -0.012609731 + inSlope: -0.13001636 + outSlope: -0.13001636 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: -0.040109847 + inSlope: -0.2505452 + outSlope: -0.2505452 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.056183662 + inSlope: -0.20302668 + outSlope: -0.20302668 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: -0.06178825 + inSlope: 0.014714137 + outSlope: 0.014714137 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: -0.05520274 + inSlope: -0.12562612 + outSlope: -0.12562612 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: -0.07016332 + inSlope: -0.4405372 + outSlope: -0.4405372 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: -0.08457191 + inSlope: -0.0948896 + outSlope: -0.0948896 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: -0.060475923 + inSlope: 0.34184685 + outSlope: 0.34184685 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: -0.055626888 + inSlope: 0.012595274 + outSlope: 0.012595274 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: -0.04281693 + inSlope: 0.03813982 + outSlope: 0.03813982 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: -0.03319425 + inSlope: 0.00678471 + outSlope: 0.00678471 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9333334 + value: -0.035214823 + inSlope: -0.013741594 + outSlope: -0.013741594 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: -0.042811032 + inSlope: -0.01675477 + outSlope: -0.01675477 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: Armature.001/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.7029335 + inSlope: 0.04089832 + outSlope: 0.04089832 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.70700276 + inSlope: -0.15691812 + outSlope: -0.15691812 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.6499394 + inSlope: -0.0880524 + outSlope: -0.0880524 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.64742315 + inSlope: 0.0367338 + outSlope: 0.0367338 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.6661031 + inSlope: 0.54768246 + outSlope: 0.54768246 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.71660566 + inSlope: 0.9856107 + outSlope: 0.9856107 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.7531748 + inSlope: 1.1164641 + outSlope: 1.1164641 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.83080184 + inSlope: 1.1554348 + outSlope: 1.1554348 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.8680656 + inSlope: 1.0215999 + outSlope: 1.0215999 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.8989085 + inSlope: 0.5685742 + outSlope: 0.5685742 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.9059706 + inSlope: 0.21733673 + outSlope: 0.21733673 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.91736835 + inSlope: -0.013585504 + outSlope: -0.013585504 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.87349343 + inSlope: -0.81198055 + outSlope: -0.81198055 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: 0.7665585 + inSlope: -0.50104904 + outSlope: -0.50104904 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2333333 + value: 0.75388145 + inSlope: -0.05680556 + outSlope: -0.05680556 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: 0.77856165 + inSlope: 0.5931139 + outSlope: 0.5931139 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.82390684 + inSlope: 0.66806173 + outSlope: 0.66806173 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: 0.84559315 + inSlope: 0.42869848 + outSlope: 0.42869848 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 0.8524868 + inSlope: -0.5657687 + outSlope: -0.5657687 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 0.8078753 + inSlope: -1.2850436 + outSlope: -1.2850436 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0.76681715 + inSlope: -1.2907925 + outSlope: -1.2907925 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 0.67761433 + inSlope: -1.1815267 + outSlope: -1.1815267 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: 0.58791554 + inSlope: -0.21411557 + outSlope: -0.21411557 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: 0.6456089 + inSlope: 0.48929173 + outSlope: 0.48929173 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: 0.7006787 + inSlope: -0.037588514 + outSlope: -0.037588514 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9333334 + value: 0.70062935 + inSlope: 0.028966002 + outSlope: 0.028966002 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 0.7029335 + inSlope: -0.0064730705 + outSlope: -0.0064730705 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.w + path: Armature.001/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.16970412 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.1697045 + inSlope: 0.0099284295 + outSlope: 0.0099284295 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.17681125 + inSlope: 0.23477155 + outSlope: 0.23477155 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.1860179 + inSlope: 0.7046217 + outSlope: 0.7046217 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.2777497 + inSlope: 1.4770563 + outSlope: 1.4770563 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.35800442 + inSlope: 1.0878012 + outSlope: 1.0878012 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.3947765 + inSlope: 0.76673174 + outSlope: 0.76673174 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.40911984 + inSlope: -1.293011 + outSlope: -1.293011 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.3085757 + inSlope: -2.9843147 + outSlope: -2.9843147 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.21016555 + inSlope: -1.9061464 + outSlope: -1.9061464 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.18149933 + inSlope: -0.6069421 + outSlope: -0.6069421 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.16970257 + inSlope: 0.00000022351765 + outSlope: 0.00000022351765 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: 0.16970259 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.1697026 + inSlope: 0.87339586 + outSlope: 0.87339586 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: 0.22792913 + inSlope: 3.4063773 + outSlope: 3.4063773 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 0.3967944 + inSlope: 2.1995335 + outSlope: 2.1995335 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 0.37456456 + inSlope: -0.6042535 + outSlope: -0.6042535 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0.35651082 + inSlope: -1.1997772 + outSlope: -1.1997772 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.29457942 + inSlope: -1.9740082 + outSlope: -1.9740082 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 0.2249104 + inSlope: -1.6674979 + outSlope: -1.6674979 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: 0.183413 + inSlope: -0.79021823 + outSlope: -0.79021823 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: 0.16970451 + inSlope: -0.037872158 + outSlope: -0.037872158 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2333333 + value: 0.16970429 + inSlope: -0.0000037998093 + outSlope: -0.0000037998093 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 0.16970414 + inSlope: -0.0000031292468 + outSlope: -0.0000031292468 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: Armature.001/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot/mixamorig:RightToeBase + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.028960787 + inSlope: 0.0000034086404 + outSlope: 0.0000034086404 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.028961126 + inSlope: -0.011826569 + outSlope: -0.011826569 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -0.03744815 + inSlope: -0.26232648 + outSlope: -0.26232648 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -0.047238156 + inSlope: -0.1485432 + outSlope: -0.1485432 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.046368852 + inSlope: -0.06928311 + outSlope: -0.06928311 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.056630254 + inSlope: -0.12982278 + outSlope: -0.12982278 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.060624756 + inSlope: 0.12586871 + outSlope: 0.12586871 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -0.048238993 + inSlope: 0.06649643 + outSlope: 0.06649643 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -0.056191657 + inSlope: -0.38534856 + outSlope: -0.38534856 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -0.073928885 + inSlope: 0.19782573 + outSlope: 0.19782573 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.04300323 + inSlope: 0.67454886 + outSlope: 0.67454886 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.028958965 + inSlope: -0.0000014528646 + outSlope: -0.0000014528646 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: -0.028958917 + inSlope: 0.0000014249249 + outSlope: 0.0000014249249 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.028958809 + inSlope: 0.06158185 + outSlope: 0.06158185 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: -0.02485345 + inSlope: -0.5022031 + outSlope: -0.5022031 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: -0.06243897 + inSlope: -0.52592653 + outSlope: -0.52592653 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: -0.059915185 + inSlope: 0.074097194 + outSlope: 0.074097194 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: -0.05749915 + inSlope: 0.12018463 + outSlope: 0.12018463 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: -0.051902875 + inSlope: 0.124227405 + outSlope: 0.124227405 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: -0.049217332 + inSlope: 0.09771967 + outSlope: 0.09771967 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: -0.045388237 + inSlope: 0.25869328 + outSlope: 0.25869328 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: -0.028961057 + inSlope: 0.045149777 + outSlope: 0.045149777 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2333333 + value: -0.02896093 + inSlope: 0.0000052806145 + outSlope: 0.0000052806145 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: -0.028960843 + inSlope: 0.00000050291465 + outSlope: 0.00000050291465 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.y + path: Armature.001/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot/mixamorig:RightToeBase + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.122049764 + inSlope: -0.0000008940696 + outSlope: -0.0000008940696 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.122049585 + inSlope: -0.0026216384 + outSlope: -0.0026216384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.120221145 + inSlope: -0.05315955 + outSlope: -0.05315955 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.11833088 + inSlope: 0.008531829 + outSlope: 0.008531829 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.123392195 + inSlope: 0.044222333 + outSlope: 0.044222333 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.12372395 + inSlope: -0.0038192454 + outSlope: -0.0038192454 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.12348347 + inSlope: -0.0011998471 + outSlope: -0.0011998471 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.12364396 + inSlope: -0.008604407 + outSlope: -0.008604407 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.122909844 + inSlope: -0.14564005 + outSlope: -0.14564005 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.11393463 + inSlope: -0.05730246 + outSlope: -0.05730246 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.11908969 + inSlope: 0.12173304 + outSlope: 0.12173304 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.122050114 + inSlope: 0.0000016763822 + outSlope: 0.0000016763822 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: 0.122050144 + inSlope: -0.0000020116588 + outSlope: -0.0000020116588 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.12205 + inSlope: 0.05653601 + outSlope: 0.05653601 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: 0.12581922 + inSlope: 0.020295087 + outSlope: 0.020295087 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 0.12340302 + inSlope: -0.033774182 + outSlope: -0.033774182 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 0.12356761 + inSlope: 0.0036480268 + outSlope: 0.0036480268 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0.12364622 + inSlope: -0.00731149 + outSlope: -0.00731149 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.12308018 + inSlope: -0.047875464 + outSlope: -0.047875464 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 0.12045453 + inSlope: -0.06702556 + outSlope: -0.06702556 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: 0.11861181 + inSlope: 0.014003903 + outSlope: 0.014003903 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: 0.12204965 + inSlope: 0.009921836 + outSlope: 0.009921836 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2333333 + value: 0.122049525 + inSlope: -7.1622708e-12 + outSlope: -7.1622708e-12 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 0.12204972 + inSlope: -0.000001788141 + outSlope: -0.000001788141 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.z + path: Armature.001/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot/mixamorig:RightToeBase + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9774792 + inSlope: 0.0000017881392 + outSlope: 0.0000017881392 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 0.9774792 + inSlope: -0.0017550604 + outSlope: -0.0017550604 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.9761569 + inSlope: -0.046677552 + outSlope: -0.046677552 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 0.9742503 + inSlope: -0.15288511 + outSlope: -0.15288511 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 0.9515668 + inSlope: -0.43310884 + outSlope: -0.43310884 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.92375225 + inSlope: -0.43005025 + outSlope: -0.43005025 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.9084206 + inSlope: -0.31463042 + outSlope: -0.31463042 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.9027769 + inSlope: 0.49694318 + outSlope: 0.49694318 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 0.9415502 + inSlope: 0.98113406 + outSlope: 0.98113406 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.96818584 + inSlope: 0.50483495 + outSlope: 0.50483495 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.97520584 + inSlope: 0.13940418 + outSlope: 0.13940418 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.9774795 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: 0.9774795 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.9774795 + inSlope: -0.18427622 + outSlope: -0.18427622 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: 0.9651944 + inSlope: -1.0507593 + outSlope: -1.0507593 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 0.9074289 + inSlope: -0.7232959 + outSlope: -0.7232959 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 0.9169747 + inSlope: 0.25286332 + outSlope: 0.25286332 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0.9242865 + inSlope: 0.43905976 + outSlope: 0.43905976 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 0.9462454 + inSlope: 0.62048227 + outSlope: 0.62048227 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 0.9656519 + inSlope: 0.4282875 + outSlope: 0.4282875 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: 0.97479784 + inSlope: 0.17061178 + outSlope: 0.17061178 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: 0.97747916 + inSlope: 0.006797618 + outSlope: 0.006797618 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2333333 + value: 0.9774792 + inSlope: 0.0000008940705 + outSlope: 0.0000008940705 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 0.9774792 + inSlope: 0 + 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: Armature.001/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot/mixamorig:RightToeBase + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.00049868977 + inSlope: 0.00004339169 + outSlope: 0.00004339169 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.00050013635 + inSlope: 0.00006655767 + outSlope: 0.000066564644 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.0005394501 + inSlope: 0.0005108824 + outSlope: 0.00051088363 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.0006260722 + inSlope: 0.00076743454 + outSlope: 0.0007674344 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.00074206386 + inSlope: 0.0010696426 + outSlope: 0.001069642 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.56666666 + value: 0.000873127 + inSlope: 0.0014675674 + outSlope: 0.0014675526 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.0009229263 + inSlope: 0.0017260236 + outSlope: 0.0017260585 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333333 + value: 0.0009881966 + inSlope: 0.0018783485 + outSlope: 0.0018783177 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.0010481488 + inSlope: 0.0016206236 + outSlope: 0.0016206359 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7 + value: 0.0010962395 + inSlope: 0.0013023467 + outSlope: 0.0013023566 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.0011349729 + inSlope: 0.000953989 + outSlope: 0.0009539975 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.76666665 + value: 0.0011598391 + inSlope: 0.00072189036 + outSlope: 0.00072188757 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333333 + value: 0.0011945615 + inSlope: 0.00019535127 + outSlope: 0.00019533798 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.0011961219 + inSlope: 0.00027711334 + outSlope: 0.00027714018 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9 + value: 0.0012130372 + inSlope: 0.00072659156 + outSlope: 0.00072658487 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.001244561 + inSlope: 0.00077877083 + outSlope: 0.00077879365 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.96666664 + value: 0.0012649561 + inSlope: 0.000650899 + outSlope: 0.0006508691 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0.0013121963 + inSlope: 0.0006105583 + outSlope: 0.0006105515 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.0013286594 + inSlope: 0.000547094 + outSlope: 0.0005470827 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: 0.0013486694 + inSlope: 0.000657245 + outSlope: 0.00065731583 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.0013724789 + inSlope: 0.0007175166 + outSlope: 0.0007175098 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666666 + value: 0.0013965019 + inSlope: 0.00065769226 + outSlope: 0.00065767433 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.0014163246 + inSlope: 0.00049284665 + outSlope: 0.0004928759 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2333333 + value: 0.0014293598 + inSlope: 0.0003493563 + outSlope: 0.00034935866 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.0014396145 + inSlope: 0.00022974478 + outSlope: 0.00022973416 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3 + value: 0.0014446761 + inSlope: 0.00019233221 + outSlope: 0.00019231172 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666667 + value: 0.0014594008 + inSlope: 0.00017768606 + outSlope: 0.0001776452 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.0014642815 + inSlope: 0.00012491632 + outSlope: 0.00012492314 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.0014820802 + inSlope: 0.0013066377 + outSlope: 0.0013066622 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5 + value: 0.0015548416 + inSlope: 0.0023810582 + outSlope: 0.0023810503 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.0016408172 + inSlope: 0.0017009181 + outSlope: 0.0017008968 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 0.0016682367 + inSlope: 0.000592232 + outSlope: 0.00059223414 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.0016803005 + inSlope: -0.00038113186 + outSlope: -0.000381157 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333333 + value: 0.0016428271 + inSlope: -0.0019501656 + outSlope: -0.0019501502 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.0015502903 + inSlope: -0.0024939792 + outSlope: -0.0024938956 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: 0.0014765642 + inSlope: -0.0021156413 + outSlope: -0.0021157213 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666667 + value: 0.0013430209 + inSlope: -0.0020327491 + outSlope: -0.0020327321 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666667 + value: 0.00112299 + inSlope: -0.0023248743 + outSlope: -0.0023248678 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: 0.000821023 + inSlope: -0.001969735 + outSlope: -0.0019697284 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: 0.00062542385 + inSlope: -0.00032100445 + outSlope: -0.0003209982 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3 + value: 0.0006521185 + inSlope: 0.00056778174 + outSlope: 0.0005677672 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5333333 + value: 0.000778509 + inSlope: 0.00026173666 + outSlope: 0.0002617222 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9 + value: 0.0007135042 + inSlope: -0.00041939403 + outSlope: -0.0004194082 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2 + value: 0.0005645885 + inSlope: -0.0005396923 + outSlope: -0.00053968997 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2666667 + value: 0.00052894006 + inSlope: -0.0005508351 + outSlope: -0.0005508374 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3 + value: 0.0005096991 + inSlope: -0.00045375086 + outSlope: -0.00045374004 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333333 + value: 0.00049869006 + inSlope: -0.00033026785 + outSlope: -0.00033026785 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.x + path: Armature.001/mixamorig:Hips + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.017185917 + inSlope: 0.00023391072 + outSlope: 0.00023391072 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.017193716 + inSlope: 0.0004568321 + outSlope: 0.0004568916 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: 0.016988505 + inSlope: -0.005773649 + outSlope: -0.005773917 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 0.016113738 + inSlope: -0.005694041 + outSlope: -0.0056942306 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: 0.015907338 + inSlope: 0.0031834363 + outSlope: 0.0031834801 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.56666666 + value: 0.016715938 + inSlope: 0.012151127 + outSlope: 0.01215106 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.017162759 + inSlope: 0.014426764 + outSlope: 0.014427054 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333333 + value: 0.017677745 + inSlope: 0.01601969 + outSlope: 0.016019592 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.018230733 + inSlope: 0.016311996 + outSlope: 0.016312238 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7 + value: 0.018765213 + inSlope: 0.016256038 + outSlope: 0.0162558 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.01931446 + inSlope: 0.017283894 + outSlope: 0.01728421 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.76666665 + value: 0.01991748 + inSlope: 0.017688332 + outSlope: 0.01768814 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333333 + value: 0.021032464 + inSlope: 0.016009998 + outSlope: 0.01601 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.021561017 + inSlope: 0.015221516 + outSlope: 0.015221611 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9 + value: 0.022047238 + inSlope: 0.013748524 + outSlope: 0.01374851 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.022477593 + inSlope: 0.012230806 + outSlope: 0.012231012 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.96666664 + value: 0.022862647 + inSlope: 0.010863851 + outSlope: 0.010863181 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: 0.02349062 + inSlope: 0.0076560015 + outSlope: 0.0076560113 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 0.023712235 + inSlope: 0.005956092 + outSlope: 0.005956641 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: 0.023887724 + inSlope: 0.003857874 + outSlope: 0.0038579702 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: 0.02396944 + inSlope: 0.001092312 + outSlope: 0.0010928301 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666666 + value: 0.023960585 + inSlope: -0.0005236494 + outSlope: -0.0005239438 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.023934511 + inSlope: -0.0022490679 + outSlope: -0.002248643 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2333333 + value: 0.023810655 + inSlope: -0.0054557165 + outSlope: -0.005456135 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: 0.023570778 + inSlope: -0.008263687 + outSlope: -0.008263952 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3 + value: 0.02325975 + inSlope: -0.010578318 + outSlope: -0.010577891 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666667 + value: 0.022376375 + inSlope: -0.015747827 + outSlope: -0.015747257 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.021815754 + inSlope: -0.017738733 + outSlope: -0.017739082 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.020529954 + inSlope: -0.02043683 + outSlope: -0.020436382 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5 + value: 0.019831331 + inSlope: -0.02101046 + outSlope: -0.021010935 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.01912923 + inSlope: -0.020475686 + outSlope: -0.02047526 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 0.018466303 + inSlope: -0.019287769 + outSlope: -0.019288246 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.01784336 + inSlope: -0.018377146 + outSlope: -0.018377056 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333333 + value: 0.017241172 + inSlope: -0.017099133 + outSlope: -0.017099483 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: 0.016703404 + inSlope: -0.014712229 + outSlope: -0.014711638 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: 0.016260374 + inSlope: -0.01199163 + outSlope: -0.011992439 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666667 + value: 0.015648594 + inSlope: -0.0059894095 + outSlope: -0.005989403 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666667 + value: 0.015469703 + inSlope: 0.0014489017 + outSlope: 0.001449024 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: 0.016175104 + inSlope: 0.0072531006 + outSlope: 0.007253108 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: 0.017044438 + inSlope: 0.0024644479 + outSlope: 0.002464453 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3 + value: 0.017142378 + inSlope: -0.00038640533 + outSlope: -0.00038621965 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5333333 + value: 0.01710474 + inSlope: 0.00035470072 + outSlope: 0.00035489822 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9 + value: 0.017206553 + inSlope: 0.0002331123 + outSlope: 0.00023306967 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2 + value: 0.017222775 + inSlope: -0.00023375258 + outSlope: -0.00023396034 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2666667 + value: 0.017203689 + inSlope: -0.0003212744 + outSlope: -0.00032114497 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3 + value: 0.01719244 + inSlope: -0.00026647895 + outSlope: -0.0002665675 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333333 + value: 0.017185913 + inSlope: -0.00019589339 + outSlope: -0.00019589339 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.y + path: Armature.001/mixamorig:Hips + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.00031098042 + inSlope: -0.00027151845 + outSlope: -0.00027151845 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.00032003078 + inSlope: -0.00050067966 + outSlope: -0.0005006802 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.2 + value: -0.0005382883 + inSlope: -0.00176986 + outSlope: -0.0017698575 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -0.0007220758 + inSlope: -0.0004820545 + outSlope: -0.0004820812 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.46666667 + value: -0.0006241972 + inSlope: 0.002224424 + outSlope: 0.0022244214 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.56666666 + value: -0.00027644204 + inSlope: 0.004424661 + outSlope: 0.004424616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -0.00011972599 + inSlope: 0.005413633 + outSlope: 0.005413709 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333333 + value: 0.00008447029 + inSlope: 0.006218835 + outSlope: 0.0062187696 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.00029486226 + inSlope: 0.005988553 + outSlope: 0.0059886468 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7 + value: 0.0004837116 + inSlope: 0.0035353252 + outSlope: 0.0035352837 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 0.0005305495 + inSlope: -0.00074097863 + outSlope: -0.00074097514 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.76666665 + value: 0.00043431408 + inSlope: -0.0024223758 + outSlope: -0.0024223458 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333333 + value: 0.00032291684 + inSlope: -0.0013929522 + outSlope: -0.0013929332 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8666667 + value: 0.00027619532 + inSlope: -0.0017044684 + outSlope: -0.0017044856 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9 + value: 0.00020928474 + inSlope: -0.0021788327 + outSlope: -0.0021787982 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.93333334 + value: 0.00013094039 + inSlope: -0.0022325395 + outSlope: -0.0022325604 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.96666664 + value: 0.00006044755 + inSlope: -0.0020418954 + outSlope: -0.0020418623 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333333 + value: -0.00006496572 + inSlope: -0.0016887138 + outSlope: -0.0016886725 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -0.000117765674 + inSlope: -0.0012448113 + outSlope: -0.0012448571 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: -0.00014795552 + inSlope: -0.00048523385 + outSlope: -0.00048523815 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333333 + value: -0.00015011472 + inSlope: 0.0002966358 + outSlope: 0.0002966358 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666666 + value: -0.00012817976 + inSlope: 0.00079058576 + outSlope: 0.0007905607 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -0.00009740946 + inSlope: 0.0010118516 + outSlope: 0.0010118819 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2333333 + value: -0.000060721526 + inSlope: 0.001253531 + outSlope: 0.0012535362 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666667 + value: -0.000013840645 + inSlope: 0.0014740251 + outSlope: 0.0014740187 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3 + value: 0.000037546517 + inSlope: 0.0016392189 + outSlope: 0.001639169 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666667 + value: 0.00015508893 + inSlope: 0.0016949584 + outSlope: 0.0016949637 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4 + value: 0.00020843714 + inSlope: 0.001562358 + outSlope: 0.0015623454 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 0.0002859406 + inSlope: 0.00006406356 + outSlope: 0.00006407419 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5 + value: 0.0002635172 + inSlope: 0.000015174388 + outSlope: 0.000015172597 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333333 + value: 0.00028695216 + inSlope: 0.000022971766 + outSlope: 0.000022974884 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 0.00026504818 + inSlope: -0.0025267212 + outSlope: -0.0025267734 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6 + value: 0.00011850245 + inSlope: -0.005710779 + outSlope: -0.0057108295 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333333 + value: -0.00011567183 + inSlope: -0.0072386106 + outSlope: -0.0072385934 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666666 + value: -0.00036407053 + inSlope: -0.006457631 + outSlope: -0.0064574606 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: -0.00054617715 + inSlope: -0.004916881 + outSlope: -0.004917045 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666667 + value: -0.00079192396 + inSlope: -0.0025352752 + outSlope: -0.002535274 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666667 + value: -0.0009503611 + inSlope: -0.000736018 + outSlope: -0.0007360094 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: -0.000896744 + inSlope: 0.0014373873 + outSlope: 0.0014373848 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: -0.00059582014 + inSlope: 0.0015745689 + outSlope: 0.001574598 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3 + value: -0.0004776796 + inSlope: 0.0001720501 + outSlope: 0.0001720447 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5333333 + value: -0.00056700513 + inSlope: -0.0003655726 + outSlope: -0.0003655779 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9 + value: -0.0005143357 + inSlope: 0.00028592502 + outSlope: 0.0002859369 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2 + value: -0.0003958663 + inSlope: 0.0005908982 + outSlope: 0.00059090613 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2666667 + value: -0.00035390104 + inSlope: 0.0007225986 + outSlope: 0.0007225948 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3 + value: -0.00032712685 + inSlope: 0.00064381014 + outSlope: 0.00064380764 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333333 + value: -0.00031098048 + inSlope: 0.00048439702 + outSlope: 0.00048439702 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalPosition.z + path: Armature.001/mixamorig:Hips + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.5555307 + inSlope: 0 + outSlope: -0.027843881 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.5640678 + inSlope: 0.016859598 + outSlope: 0.035986308 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.5577931 + inSlope: 0.050067905 + outSlope: 0.03665685 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.504101 + inSlope: -0.027120108 + outSlope: -0.028610226 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.4593859 + inSlope: 0.16540287 + outSlope: 0.1630783 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.5101955 + inSlope: 0.43487543 + outSlope: 0.43619427 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: -0.5487239 + inSlope: -0.28297308 + outSlope: -0.28533593 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: -0.6141955 + inSlope: 0.021202222 + outSlope: 0.023961056 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666668 + value: -0.5737802 + inSlope: 0.49781775 + outSlope: 0.50291425 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1000001 + value: -0.51557964 + inSlope: 0.071972616 + outSlope: 0.077400886 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: -0.50758874 + inSlope: -0.24625231 + outSlope: -0.24408104 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6000001 + value: -0.56573886 + inSlope: -0.07063151 + outSlope: -0.06675721 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9 + value: -0.5745709 + inSlope: -0.02821287 + outSlope: -0.03868882 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: -0.5596028 + inSlope: 0.03364952 + outSlope: 0.045597598 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: -0.555531 + inSlope: 0.040233172 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: m_LocalRotation.x + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.44830337 + inSlope: 0 + outSlope: -0.07548502 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.44627488 + inSlope: -0.07574047 + outSlope: -0.09477139 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.44507185 + inSlope: -0.7996336 + outSlope: -0.78454596 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.5002217 + inSlope: 0.036358826 + outSlope: 0.037193295 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.5314341 + inSlope: 0.053644173 + outSlope: 0.055432312 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.4755066 + inSlope: -0.2455115 + outSlope: -0.24676324 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: -0.39770737 + inSlope: 0.7382222 + outSlope: 0.73569155 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: -0.3603183 + inSlope: -0.11673994 + outSlope: -0.11605019 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666668 + value: -0.4234351 + inSlope: -0.5083678 + outSlope: -0.50559646 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1000001 + value: -0.48862827 + inSlope: -0.57980424 + outSlope: -0.5851047 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: -0.50249106 + inSlope: 0.29223305 + outSlope: 0.29258433 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6000001 + value: -0.43047804 + inSlope: 0.091195114 + outSlope: 0.08781753 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9 + value: -0.42105386 + inSlope: 0.0273188 + outSlope: 0.04193998 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: -0.4429327 + inSlope: -0.13467936 + outSlope: -0.14930978 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: -0.448303 + inSlope: -0.05677348 + 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: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.4532977 + inSlope: 0 + outSlope: 0.2277323 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 0.5251014 + inSlope: 0.10498932 + outSlope: 0.12204052 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 0.55051726 + inSlope: -0.5713106 + outSlope: -0.5888938 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.5253744 + inSlope: -0.005960463 + outSlope: -0.0071525564 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.42185605 + inSlope: -0.68128103 + outSlope: -0.6794929 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 0.3846991 + inSlope: -0.7692574 + outSlope: -0.77130276 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 0.32598433 + inSlope: 1.1735783 + outSlope: 1.1716144 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: 0.4523101 + inSlope: 0.31177485 + outSlope: 0.3125666 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666668 + value: 0.49009183 + inSlope: 0.15842907 + outSlope: 0.16160311 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1000001 + value: 0.48023745 + inSlope: -0.43429437 + outSlope: -0.4338792 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: 0.43857646 + inSlope: 0.06871564 + outSlope: 0.07018448 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6000001 + value: 0.45929176 + inSlope: -0.007040799 + outSlope: -0.002185504 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9 + value: 0.46051311 + inSlope: 0.023643179 + outSlope: 0.009997321 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: 0.45440614 + inSlope: -0.08574938 + outSlope: -0.07241971 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 0.45329744 + 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.z + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.53378916 + inSlope: 0 + outSlope: 0.28559136 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -0.45490086 + inSlope: 0.17421585 + outSlope: 0.18909575 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -0.43325353 + inSlope: 0.031068923 + outSlope: 0.010579822 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -0.46866 + inSlope: -0.016391274 + outSlope: -0.017523764 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -0.5732188 + inSlope: -0.6834268 + outSlope: -0.6819963 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -0.6046492 + inSlope: -0.66375726 + outSlope: -0.6640703 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: -0.65913975 + inSlope: 0.36958608 + outSlope: 0.3737211 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: -0.53698254 + inSlope: 0.3157343 + outSlope: 0.31507 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666668 + value: -0.5012874 + inSlope: 0.0135898525 + outSlope: 0.009834767 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1000001 + value: -0.5145795 + inSlope: 0.072866686 + outSlope: 0.07254736 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: -0.5454421 + inSlope: 0.01481601 + outSlope: 0.014305116 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6000001 + value: -0.53261554 + inSlope: -0.004470349 + outSlope: -0.0017881396 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9 + value: -0.5296316 + inSlope: 0.029007599 + outSlope: 0.017231155 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: -0.5330764 + inSlope: 0.0034137194 + outSlope: 0.016093269 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: -0.5337895 + inSlope: -0.005364423 + 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: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder + classID: 4 + script: {fileID: 0} + m_EulerEditorCurves: + - curve: + serializedVersion: 2 + m_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.033333335 + value: -0 + 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: Armature.001 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_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.033333335 + value: -0 + 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: Armature.001 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_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.033333335 + value: -0 + 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: Armature.001 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -9.057528 + inSlope: 4.666807 + outSlope: 4.666807 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -9.682574 + inSlope: -16.657988 + outSlope: -16.657988 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -13.705292 + inSlope: 4.7957034 + outSlope: 4.5245366 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -9.622042 + inSlope: 21.342804 + outSlope: 21.362398 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -8.310287 + inSlope: -2.4279783 + outSlope: -2.4269104 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -7.5959306 + inSlope: 1.2702799 + outSlope: 1.2514309 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: -11.559799 + inSlope: -12.272602 + outSlope: -12.28285 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9000001 + value: -17.50698 + inSlope: -6.8247747 + outSlope: -6.9068155 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: -13.302582 + inSlope: 21.38535 + outSlope: 21.357767 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4666667 + value: -11.632848 + inSlope: -5.51989 + outSlope: -5.5269012 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: -11.853444 + inSlope: 6.287241 + outSlope: 6.291674 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: -9.057527 + inSlope: 3.5434396 + outSlope: 3.5434396 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: Armature.001/mixamorig:Hips + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 4.933052 + inSlope: 0.10600089 + outSlope: 0.10600089 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 11.073196 + inSlope: 39.33088 + outSlope: 39.33088 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 8.774719 + inSlope: -86.25743 + outSlope: -86.34339 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -13.820106 + inSlope: -100.43875 + outSlope: -100.50692 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -22.183754 + inSlope: 0.39125055 + outSlope: 0.39680478 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -12.634522 + inSlope: 12.585305 + outSlope: 12.586345 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: -24.479256 + inSlope: -47.298576 + outSlope: -47.2914 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9000001 + value: -23.14036 + inSlope: 61.394703 + outSlope: 61.38469 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: 1.5737158 + inSlope: 75.92393 + outSlope: 75.992775 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4666667 + value: 10.297585 + inSlope: -7.9665475 + outSlope: -7.96323 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: 6.075109 + inSlope: -3.4151456 + outSlope: -3.403474 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 4.9330525 + inSlope: 0.17427655 + outSlope: 0.17427655 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: Armature.001/mixamorig:Hips + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -7.2934523 + inSlope: 2.945312 + outSlope: 2.945312 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -6.3064876 + inSlope: 3.7949126 + outSlope: 3.7949126 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -5.0852065 + inSlope: 16.913124 + outSlope: 17.012352 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -2.344259 + inSlope: -0.894388 + outSlope: -0.68517345 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -3.1729944 + inSlope: -5.937462 + outSlope: -5.9385133 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -4.577451 + inSlope: 7.7792115 + outSlope: 7.7816715 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 0.6678434 + inSlope: 1.6704481 + outSlope: 1.612685 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9000001 + value: -3.0074027 + inSlope: -14.111642 + outSlope: -14.070109 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: -6.462437 + inSlope: -5.203968 + outSlope: -5.368833 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4666667 + value: -7.911432 + inSlope: -4.7504554 + outSlope: -4.7428513 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: -8.122273 + inSlope: 2.4443624 + outSlope: 2.429808 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: -7.293453 + inSlope: 0.87021595 + outSlope: 0.87021595 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: Armature.001/mixamorig:Hips + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 2.3707266 + inSlope: 3.186792 + outSlope: 3.186792 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 3.911718 + inSlope: 5.6491766 + outSlope: 5.650735 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 1.7118344 + inSlope: -12.017788 + outSlope: -12.017788 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 4.0051064 + inSlope: 13.965353 + outSlope: 13.977539 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: 3.2830772 + inSlope: -1.8930471 + outSlope: -1.9023514 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 4.3312325 + inSlope: 7.5386615 + outSlope: 7.5378923 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666668 + value: 4.91301 + inSlope: -7.765353 + outSlope: -7.765964 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3000002 + value: 1.6442 + inSlope: -0.47904354 + outSlope: -0.47738242 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: 2.37634 + inSlope: -0.55241203 + outSlope: -0.55281943 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 2.3707259 + inSlope: -0.42296427 + outSlope: -0.42296427 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: Armature.001/mixamorig:Hips/mixamorig:Spine + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.88385487 + inSlope: 0.73013043 + outSlope: 0.73013043 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.34505013 + inSlope: -3.82846 + outSlope: -3.8259573 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.6774982 + inSlope: 2.362591 + outSlope: 2.362591 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -1.0012168 + inSlope: -13.168832 + outSlope: -13.156437 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: -3.0581546 + inSlope: -6.4472957 + outSlope: -6.444328 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: -5.2316422 + inSlope: -4.348475 + outSlope: -4.349684 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666668 + value: -4.3664026 + inSlope: 2.0710082 + outSlope: 2.0688026 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3000002 + value: -2.6855755 + inSlope: 5.5848823 + outSlope: 5.58498 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: -0.75465614 + inSlope: -2.9569569 + outSlope: -2.9568548 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: -0.88385403 + inSlope: -0.73717767 + outSlope: -0.73717767 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: Armature.001/mixamorig:Hips/mixamorig:Spine + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 3.1619494 + inSlope: -2.2339094 + outSlope: -2.2339094 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 2.956923 + inSlope: -2.00362 + outSlope: -1.9993447 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 2.2586596 + inSlope: 2.3278022 + outSlope: 2.3278022 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 6.405903 + inSlope: 9.980125 + outSlope: 9.963054 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: 5.561592 + inSlope: -14.896704 + outSlope: -14.895026 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 3.8340206 + inSlope: 1.1260518 + outSlope: 1.1322973 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666668 + value: 3.4083328 + inSlope: 2.732772 + outSlope: 2.7311323 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3000002 + value: 3.2062297 + inSlope: -0.61557335 + outSlope: -0.6168337 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: 3.6901393 + inSlope: -1.4175081 + outSlope: -1.4174054 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 3.161951 + inSlope: -0.41144016 + outSlope: -0.41144016 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: Armature.001/mixamorig:Hips/mixamorig:Spine + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 4.6642194 + inSlope: 2.7609692 + outSlope: 2.7609692 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 8.00492 + inSlope: -2.904446 + outSlope: -2.898921 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 3.511229 + inSlope: -16.922363 + outSlope: -16.91775 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 6.236989 + inSlope: 29.09605 + outSlope: 29.307688 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 7.056064 + inSlope: -1.4269781 + outSlope: -1.4269779 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: 9.448833 + inSlope: 12.634513 + outSlope: 12.63586 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: 7.2402596 + inSlope: -23.045986 + outSlope: -23.061142 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: 3.394045 + inSlope: 5.6681805 + outSlope: 5.6681767 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.766667 + value: 4.7404466 + inSlope: -1.299246 + outSlope: -1.2996106 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 4.6642194 + inSlope: -0.5156532 + outSlope: -0.5156532 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -1.7357483 + inSlope: 4.1333766 + outSlope: 4.1333766 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.43470007 + inSlope: 6.065654 + outSlope: 6.069345 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 2.3354957 + inSlope: 2.3181074 + outSlope: 2.358716 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.4429761 + inSlope: -19.477997 + outSlope: -19.15045 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -6.020087 + inSlope: -15.689913 + outSlope: -15.68991 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: -9.837983 + inSlope: -0.16690105 + outSlope: -0.12701865 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: -6.898489 + inSlope: 11.964171 + outSlope: 11.919717 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: -3.565703 + inSlope: 16.828676 + outSlope: 16.828665 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.766667 + value: -0.9756741 + inSlope: -3.4854393 + outSlope: -3.485027 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: -1.735748 + inSlope: -1.6754165 + outSlope: -1.6754165 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 2.6608574 + inSlope: -2.1018164 + outSlope: -2.1018164 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.42700705 + inSlope: 2.3893354 + outSlope: 2.396622 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 1.4635001 + inSlope: 24.634277 + outSlope: 24.640774 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 7.7419977 + inSlope: 21.342009 + outSlope: 21.050695 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 10.180604 + inSlope: -24.250319 + outSlope: -24.250315 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: 0.036553625 + inSlope: -6.3776236 + outSlope: -6.369764 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: 0.922879 + inSlope: 5.3414483 + outSlope: 5.2571096 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: 1.5489244 + inSlope: 3.0891175 + outSlope: 3.0891156 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.766667 + value: 2.494644 + inSlope: -0.21086057 + outSlope: -0.20825431 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 2.6608572 + inSlope: 0.62671053 + outSlope: 0.62671053 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 3.2469785 + inSlope: 2.7263274 + outSlope: 2.7263274 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 6.5646715 + inSlope: -2.8758214 + outSlope: -2.8726354 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 2.068569 + inSlope: -16.800625 + outSlope: -16.796082 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 4.887215 + inSlope: 29.913115 + outSlope: 30.114525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 5.6263824 + inSlope: -1.4949428 + outSlope: -1.461707 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: 7.617931 + inSlope: 13.047895 + outSlope: 13.05397 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666668 + value: 7.3745847 + inSlope: -20.126123 + outSlope: -20.166298 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3666668 + value: 1.8333008 + inSlope: 3.5136564 + outSlope: 3.517471 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7333336 + value: 3.3621037 + inSlope: -0.91321677 + outSlope: -0.9126915 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 3.2469788 + inSlope: -0.50170904 + outSlope: -0.50170904 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -1.7623693 + inSlope: 4.1361957 + outSlope: 4.1361957 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 0.5012841 + inSlope: 4.694005 + outSlope: 4.6966286 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 2.3364708 + inSlope: 2.2510037 + outSlope: 2.2918355 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -0.5517191 + inSlope: -19.20185 + outSlope: -18.870344 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -6.2183595 + inSlope: -14.481944 + outSlope: -14.486683 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: -9.7442255 + inSlope: -1.0977671 + outSlope: -1.0355471 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666668 + value: -7.787321 + inSlope: 16.385887 + outSlope: 16.310564 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3666668 + value: -4.1217566 + inSlope: 15.509313 + outSlope: 15.5085 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7333336 + value: -0.8908169 + inSlope: -2.9043124 + outSlope: -2.9043143 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: -1.7623698 + inSlope: -1.6878768 + outSlope: -1.6878768 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 2.6502962 + inSlope: -2.150552 + outSlope: -2.150552 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -0.388745 + inSlope: 1.8073416 + outSlope: 1.8128804 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 1.4790688 + inSlope: 24.886223 + outSlope: 24.891634 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 7.6771092 + inSlope: 20.701765 + outSlope: 20.3996 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 10.1734295 + inSlope: -23.91828 + outSlope: -23.922138 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: 0.34980148 + inSlope: -9.592732 + outSlope: -9.5772505 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666668 + value: 0.5268618 + inSlope: 5.817375 + outSlope: 5.65013 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3666668 + value: 1.4330025 + inSlope: 2.4634268 + outSlope: 2.458159 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7333336 + value: 2.475961 + inSlope: 0.24736981 + outSlope: 0.24913196 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 2.650296 + inSlope: 0.63821447 + outSlope: 0.63821447 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.10982879 + inSlope: -25.607508 + outSlope: -25.607508 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -12.661742 + inSlope: -36.53112 + outSlope: -36.53112 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -7.094504 + inSlope: 46.91327 + outSlope: 46.91327 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -4.9447207 + inSlope: -27.40025 + outSlope: -27.40025 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -13.10842 + inSlope: -37.110943 + outSlope: -37.110943 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -15.686704 + inSlope: 25.793114 + outSlope: 25.932339 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: -11.579184 + inSlope: -16.85245 + outSlope: -16.519482 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: -15.713152 + inSlope: -19.19005 + outSlope: -19.368488 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: -13.310913 + inSlope: 45.569153 + outSlope: 45.5693 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: 2.8992739 + inSlope: 50.719177 + outSlope: 50.65456 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: 0.2581189 + inSlope: -23.035326 + outSlope: -23.035446 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7333336 + value: 0.24895439 + inSlope: 12.33579 + outSlope: 12.330827 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: -0.113300145 + inSlope: 3.0473535 + outSlope: 3.0509324 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 0.10982902 + inSlope: 2.7460663 + outSlope: 2.7460663 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.48138872 + inSlope: -4.078339 + outSlope: -4.078339 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -2.012373 + inSlope: -17.726463 + outSlope: -17.726463 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -8.416042 + inSlope: -34.168705 + outSlope: -34.168705 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -13.052932 + inSlope: 4.9228435 + outSlope: 4.9228435 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -7.4988327 + inSlope: 38.854225 + outSlope: 38.854225 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -0.54905313 + inSlope: 28.489853 + outSlope: 28.323399 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: 8.102876 + inSlope: 37.192833 + outSlope: 37.328762 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 14.2141075 + inSlope: 30.87658 + outSlope: 30.777475 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: 17.173157 + inSlope: -3.3786898 + outSlope: -3.3786864 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: 10.075133 + inSlope: -44.16186 + outSlope: -44.22739 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: -2.2905767 + inSlope: -13.938738 + outSlope: -13.938728 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7333336 + value: -1.1827956 + inSlope: 8.281723 + outSlope: 8.287528 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: 0.3834447 + inSlope: 1.9021428 + outSlope: 1.8962203 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 0.48138866 + inSlope: 1.0565513 + outSlope: 1.0565513 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 5.0315056 + inSlope: -4.4853153 + outSlope: -4.4853153 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 5.680614 + inSlope: 4.2776604 + outSlope: 4.2776604 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 6.095046 + inSlope: 13.950098 + outSlope: 13.950098 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 13.629063 + inSlope: 52.75512 + outSlope: 52.75512 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 19.371058 + inSlope: -39.503227 + outSlope: -39.503227 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 4.192995 + inSlope: -55.083508 + outSlope: -54.964966 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: 3.4841216 + inSlope: 32.162926 + outSlope: 32.327694 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 9.671704 + inSlope: 32.207554 + outSlope: 32.11466 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: 11.132089 + inSlope: -16.84059 + outSlope: -16.840572 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: 10.01901 + inSlope: -1.0603395 + outSlope: -1.717687 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: 6.983222 + inSlope: -16.032413 + outSlope: -16.0324 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7333336 + value: 3.4801521 + inSlope: 0.65955704 + outSlope: 0.7190681 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: 4.9444757 + inSlope: 1.3230667 + outSlope: 1.3148202 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 5.0315037 + inSlope: 1.0130606 + outSlope: 1.0130606 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 4.7326503 + inSlope: -13.71734 + outSlope: -13.71734 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -2.3737633 + inSlope: -36.54923 + outSlope: -36.786743 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -5.57633 + inSlope: 25.336899 + outSlope: 25.336899 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 4.646963 + inSlope: 45.246723 + outSlope: 44.885933 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 11.432639 + inSlope: 24.69236 + outSlope: 24.730436 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: 18.017084 + inSlope: 24.181643 + outSlope: 24.134798 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 19.684484 + inSlope: -33.875034 + outSlope: -33.875034 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: 6.524474 + inSlope: -21.750689 + outSlope: -21.750679 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1000001 + value: 9.986857 + inSlope: 30.894798 + outSlope: 31.062065 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: 10.768845 + inSlope: -19.625095 + outSlope: -19.677477 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.966667 + value: 5.202124 + inSlope: -4.6678476 + outSlope: -4.673237 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 4.73265 + inSlope: -0.9414459 + outSlope: -0.9414459 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1.9970661 + inSlope: -9.358173 + outSlope: -9.358173 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -5.061525 + inSlope: -36.145767 + outSlope: -35.911934 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -12.38665 + inSlope: -15.269524 + outSlope: -15.269524 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -7.7687206 + inSlope: 48.585636 + outSlope: 48.956196 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.17720337 + inSlope: 7.9739695 + outSlope: 7.845858 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: 3.5963688 + inSlope: 34.41101 + outSlope: 34.402378 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 16.458302 + inSlope: 36.86441 + outSlope: 36.86441 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: 21.551502 + inSlope: -20.03842 + outSlope: -20.03841 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1000001 + value: 11.107272 + inSlope: -47.20655 + outSlope: -47.09888 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: 0.12985486 + inSlope: -20.380125 + outSlope: -20.258635 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.966667 + value: 1.2635896 + inSlope: 2.8599496 + outSlope: 2.8520005 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 1.9970663 + inSlope: 1.4384935 + outSlope: 1.4384935 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -2.1582596 + inSlope: 32.49492 + outSlope: 32.49492 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 11.199477 + inSlope: 31.780556 + outSlope: 31.516842 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 14.605527 + inSlope: -6.665525 + outSlope: -6.665525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 1.6599218 + inSlope: -83.39674 + outSlope: -83.60885 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -9.121217 + inSlope: -14.647051 + outSlope: -14.599172 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: -10.50858 + inSlope: -8.460939 + outSlope: -8.620609 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: -10.006018 + inSlope: 9.736355 + outSlope: 9.736355 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: -8.554841 + inSlope: 7.4962916 + outSlope: 7.4962883 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1000001 + value: -1.6425992 + inSlope: 40.186665 + outSlope: 40.054234 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: 2.166359 + inSlope: -4.3799596 + outSlope: -4.055287 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.966667 + value: -1.1148446 + inSlope: -3.1753345 + outSlope: -3.1682515 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: -2.1582587 + inSlope: -0.84561783 + outSlope: -0.84561783 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:Neck/mixamorig:Head + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 88.462776 + inSlope: -18.789108 + outSlope: -18.789108 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 85.70526 + inSlope: 28.08586 + outSlope: 63.70861 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 76.347206 + inSlope: -101.18475 + outSlope: -101.143776 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 69.78483 + inSlope: 21.488377 + outSlope: 21.49875 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 79.780754 + inSlope: 64.373116 + outSlope: 64.3446 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333334 + value: 88.74805 + inSlope: -11.19232 + outSlope: -10.481349 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666668 + value: 85.08362 + inSlope: -10.155683 + outSlope: -10.209963 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 86.4915 + inSlope: -2.8361516 + outSlope: -2.8887792 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: 79.84889 + inSlope: -6.492044 + outSlope: -6.479422 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2333333 + value: 85.19673 + inSlope: 15.520721 + outSlope: 9.043463 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6333334 + value: 84.100296 + inSlope: 2.0836253 + outSlope: 2.0818033 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0666668 + value: 85.6235 + inSlope: 11.453087 + outSlope: 11.4763365 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 88.46252 + inSlope: 3.0913641 + outSlope: 3.0913641 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 137.26717 + inSlope: -301.0283 + outSlope: -301.0283 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 103.26373 + inSlope: 1744.6909 + outSlope: 696.5496 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -80.40561 + inSlope: 38.908627 + outSlope: 35.453274 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -78.38086 + inSlope: -31.09288 + outSlope: -30.844566 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -85.19141 + inSlope: -16.910702 + outSlope: -19.394299 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333334 + value: -172.16145 + inSlope: -597.0155 + outSlope: -636.30334 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666668 + value: 105.455696 + inSlope: -55.555992 + outSlope: -53.317955 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 113.16312 + inSlope: -61.719067 + outSlope: -60.582836 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: 100.42357 + inSlope: -22.888634 + outSlope: -23.388771 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2333333 + value: 130.5695 + inSlope: 336.09796 + outSlope: 397.36453 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6333334 + value: 104.91245 + inSlope: -12.948129 + outSlope: -13.014202 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0666668 + value: 110.805046 + inSlope: 40.596855 + outSlope: 34.895412 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 137.26727 + inSlope: 115.35886 + outSlope: 115.35886 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -144.5395 + inSlope: -303.96524 + outSlope: -303.96524 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -179.46765 + inSlope: 1746.1068 + outSlope: 697.966 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -3.1047378 + inSlope: 27.595207 + outSlope: 24.113832 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -2.7384315 + inSlope: -9.152623 + outSlope: -8.895984 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -3.4186692 + inSlope: 1.1443875 + outSlope: -1.3599173 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333334 + value: -83.86527 + inSlope: -565.8417 + outSlope: -605.12836 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666668 + value: -163.96858 + inSlope: -61.04082 + outSlope: -58.80326 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: -158.94182 + inSlope: -72.09947 + outSlope: -70.96304 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: -169.70111 + inSlope: -6.5364885 + outSlope: -7.039954 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2333333 + value: -136.82735 + inSlope: 336.5784 + outSlope: 397.84415 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6333334 + value: -169.21973 + inSlope: -19.19769 + outSlope: -19.263784 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0666668 + value: -164.70538 + inSlope: 19.714645 + outSlope: 14.006196 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: -144.53938 + inSlope: 105.22894 + outSlope: 105.22894 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 60.857086 + inSlope: 27.951277 + outSlope: 27.951277 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 62.667706 + inSlope: -2.0144463 + outSlope: -2.025032 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 57.01718 + inSlope: -83.24249 + outSlope: -83.25687 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 44.650192 + inSlope: -64.85614 + outSlope: -64.87907 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 34.129086 + inSlope: -92.4138 + outSlope: -92.37572 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 30.748236 + inSlope: 93.52238 + outSlope: 93.00554 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 44.628742 + inSlope: 152.77032 + outSlope: 150.57848 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 59.09294 + inSlope: 28.664005 + outSlope: 28.195858 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 50.969067 + inSlope: -118.78355 + outSlope: -118.78359 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 28.802738 + inSlope: -117.485695 + outSlope: -117.510544 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 17.60349 + inSlope: 34.87118 + outSlope: 33.960236 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: 36.337334 + inSlope: 131.85995 + outSlope: 132.10573 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: 60.139442 + inSlope: 60.783142 + outSlope: 60.892323 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1000001 + value: 64.82374 + inSlope: 58.967888 + outSlope: 58.683342 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3000002 + value: 68.94891 + inSlope: -31.17759 + outSlope: -31.231186 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5333335 + value: 55.739616 + inSlope: -50.672768 + outSlope: -50.720703 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: 54.26587 + inSlope: 16.629354 + outSlope: 16.598772 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: 60.177467 + inSlope: 12.925169 + outSlope: 13.614477 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 60.85709 + inSlope: 7.0187254 + outSlope: 7.0187254 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 29.869478 + inSlope: -9.037714 + outSlope: -9.037714 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 29.55589 + inSlope: -5.278072 + outSlope: -5.2573013 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 27.227337 + inSlope: -26.075935 + outSlope: -25.075676 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 23.924437 + inSlope: -14.887539 + outSlope: -14.860336 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 21.907476 + inSlope: 0.8293389 + outSlope: 1.4127387 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 25.875061 + inSlope: 22.217375 + outSlope: 27.344522 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 25.24205 + inSlope: -85.1221 + outSlope: -93.20694 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 11.035674 + inSlope: -81.05776 + outSlope: -82.05109 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 20.366028 + inSlope: 94.38299 + outSlope: 94.382744 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 32.575474 + inSlope: 23.320616 + outSlope: 16.942135 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 25.658232 + inSlope: -27.777542 + outSlope: -29.21772 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: 22.414194 + inSlope: 21.21938 + outSlope: 19.591234 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: 29.830778 + inSlope: 35.06039 + outSlope: 33.249218 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1000001 + value: 32.30275 + inSlope: 46.49545 + outSlope: 50.480793 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3000002 + value: 38.133175 + inSlope: -38.56332 + outSlope: -37.976154 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5333335 + value: 26.731024 + inSlope: -18.693703 + outSlope: -18.07927 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: 24.868963 + inSlope: -2.440231 + outSlope: -2.915141 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: 28.950161 + inSlope: 20.381035 + outSlope: 17.962149 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 29.869488 + inSlope: 10.222273 + outSlope: 10.222273 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 37.30568 + inSlope: -67.69089 + outSlope: -67.69089 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 32.715626 + inSlope: -43.65091 + outSlope: -43.62957 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 30.562643 + inSlope: -16.563892 + outSlope: -15.517193 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 31.090958 + inSlope: 13.45166 + outSlope: 13.404005 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 28.860277 + inSlope: -57.524105 + outSlope: -57.220394 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 2.9208984 + inSlope: -243.24799 + outSlope: -241.63477 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -24.054625 + inSlope: -293.0838 + outSlope: -299.6565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -53.404594 + inSlope: -113.332855 + outSlope: -114.29735 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -45.91271 + inSlope: 88.31146 + outSlope: 88.31149 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -29.904348 + inSlope: 82.31436 + outSlope: 78.41359 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 6.631053 + inSlope: 102.54793 + outSlope: 102.7748 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: 27.213993 + inSlope: 76.6084 + outSlope: 75.33391 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: 38.45253 + inSlope: 17.231833 + outSlope: 15.334603 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1000001 + value: 39.243607 + inSlope: 42.00525 + outSlope: 46.007755 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3000002 + value: 47.849308 + inSlope: -41.372955 + outSlope: -40.787376 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5333335 + value: 30.009195 + inSlope: -62.870754 + outSlope: -62.319027 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: 16.534718 + inSlope: -24.949137 + outSlope: -25.349012 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: 34.352455 + inSlope: 61.10257 + outSlope: 58.898792 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 37.305687 + inSlope: 31.3787 + outSlope: 31.3787 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 16.39978 + inSlope: -38.715816 + outSlope: -38.715816 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 15.081555 + inSlope: -41.525314 + outSlope: -41.525314 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 13.660625 + inSlope: -1.6585921 + outSlope: -1.6752433 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 18.21252 + inSlope: 117.81618 + outSlope: 115.547066 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: 31.820087 + inSlope: -74.06407 + outSlope: -65.33673 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 11.420115 + inSlope: -330.00903 + outSlope: -328.82455 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -10.766895 + inSlope: -300.01367 + outSlope: -297.7271 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -29.882711 + inSlope: -68.234085 + outSlope: -68.23406 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -30.270771 + inSlope: 37.97435 + outSlope: 37.974373 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -23.584898 + inSlope: 107.12126 + outSlope: 107.12119 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -11.703807 + inSlope: 100.80031 + outSlope: 102.1412 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -8.786377 + inSlope: -19.149448 + outSlope: -19.150768 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -12.265824 + inSlope: 6.7488227 + outSlope: 6.7488227 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: -2.345681 + inSlope: 44.631844 + outSlope: 44.63871 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 5.9038343 + inSlope: 107.86169 + outSlope: 108.020096 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: 27.795177 + inSlope: 140.20898 + outSlope: 136.5672 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: 26.408232 + inSlope: -152.90843 + outSlope: -150.52448 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: 7.572731 + inSlope: -92.04166 + outSlope: -92.04149 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1333334 + value: 5.036772 + inSlope: 8.373678 + outSlope: 8.373678 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.266667 + value: 8.62063 + inSlope: 51.905678 + outSlope: 51.84164 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4666667 + value: 17.656668 + inSlope: 12.969516 + outSlope: 12.924825 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7333336 + value: 10.832319 + inSlope: -41.65495 + outSlope: -41.65993 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.966667 + value: 10.095729 + inSlope: 25.47559 + outSlope: 25.241825 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3000002 + value: 16.350399 + inSlope: 3.1715133 + outSlope: 3.1946213 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 16.39978 + inSlope: 1.4680495 + outSlope: 1.4680495 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -4.506994 + inSlope: 43.41981 + outSlope: 43.41981 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -3.0902886 + inSlope: 39.480957 + outSlope: 39.480957 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -1.8443512 + inSlope: 6.50308 + outSlope: 6.4979997 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -4.7438536 + inSlope: -88.15211 + outSlope: -91.97884 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -32.489147 + inSlope: -302.07053 + outSlope: -307.30374 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -57.414238 + inSlope: -90.878914 + outSlope: -99.33285 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -58.83468 + inSlope: 62.34533 + outSlope: 69.80805 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -47.366863 + inSlope: 144.91917 + outSlope: 144.91913 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -40.24071 + inSlope: -9.620245 + outSlope: -9.620251 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -48.792126 + inSlope: -130.12453 + outSlope: -130.12444 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -61.273582 + inSlope: -88.45823 + outSlope: -86.27071 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -67.78822 + inSlope: -2.0168157 + outSlope: -1.999969 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -70.83315 + inSlope: -43.862904 + outSlope: -43.862904 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: -77.82605 + inSlope: 2.1400447 + outSlope: 2.0813603 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: -74.57427 + inSlope: 29.202492 + outSlope: 28.70041 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: -63.165245 + inSlope: 200.69826 + outSlope: 205.14912 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: -20.843346 + inSlope: 208.92017 + outSlope: 212.85052 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: -1.2515132 + inSlope: 53.29959 + outSlope: 53.299496 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1333334 + value: 0.8890248 + inSlope: -0.85388726 + outSlope: -0.85388726 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.266667 + value: -0.5065116 + inSlope: -18.223644 + outSlope: -18.4111 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4666667 + value: -2.0535643 + inSlope: 6.661015 + outSlope: 6.7564816 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7333336 + value: 0.028610801 + inSlope: 4.6710677 + outSlope: 4.6623154 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.966667 + value: -1.252243 + inSlope: -15.5152445 + outSlope: -15.894199 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3000002 + value: -4.605514 + inSlope: 2.3829308 + outSlope: 2.3469136 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: -4.506974 + inSlope: 2.9636507 + outSlope: 2.9636507 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -20.068506 + inSlope: 104.64151 + outSlope: 104.64151 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -16.599129 + inSlope: 102.94532 + outSlope: 102.94532 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -13.184763 + inSlope: 26.031588 + outSlope: 26.027725 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -18.514874 + inSlope: -127.02203 + outSlope: -130.22412 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -51.506813 + inSlope: -358.54532 + outSlope: -363.65802 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -85.31696 + inSlope: -248.17064 + outSlope: -252.42041 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -101.124596 + inSlope: -229.24475 + outSlope: -232.82365 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -122.29196 + inSlope: -184.9988 + outSlope: -184.99873 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -129.81862 + inSlope: 39.233543 + outSlope: 39.233566 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -116.4641 + inSlope: 180.99158 + outSlope: 180.99147 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -100.825836 + inSlope: 92.48472 + outSlope: 90.36202 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -97.2277 + inSlope: -9.280153 + outSlope: -9.278868 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -97.80933 + inSlope: 18.208462 + outSlope: 18.208462 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: -92.38492 + inSlope: 13.652799 + outSlope: 13.645022 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: -89.78521 + inSlope: 43.011486 + outSlope: 42.635197 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: -76.69389 + inSlope: 191.3283 + outSlope: 195.85922 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: -42.40521 + inSlope: 149.10933 + outSlope: 153.54979 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: -22.54669 + inSlope: 137.82048 + outSlope: 137.82059 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1333334 + value: -10.251774 + inSlope: 5.0877814 + outSlope: 5.0877814 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.266667 + value: -14.265372 + inSlope: -15.031194 + outSlope: -15.245962 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4666667 + value: -10.219052 + inSlope: 34.29244 + outSlope: 34.33479 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7333336 + value: -5.7529902 + inSlope: -2.8974752 + outSlope: -2.8803856 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.966667 + value: -14.120961 + inSlope: -48.253654 + outSlope: -48.424267 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3000002 + value: -20.465433 + inSlope: 11.903638 + outSlope: 11.8867035 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: -20.0685 + inSlope: 11.912281 + outSlope: 11.912281 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -6.6169386 + inSlope: -11.265534 + outSlope: -11.265534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -7.036649 + inSlope: -24.203094 + outSlope: -24.203094 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -8.231454 + inSlope: -33.9305 + outSlope: -35.240677 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -11.133297 + inSlope: -36.91372 + outSlope: -36.913715 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -13.795855 + inSlope: -15.906772 + outSlope: -15.906774 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -14.332617 + inSlope: 0.7037545 + outSlope: 1.0034462 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -13.8239565 + inSlope: 17.078798 + outSlope: 16.964638 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -10.675149 + inSlope: 42.071945 + outSlope: 42.071934 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -4.965557 + inSlope: 73.29333 + outSlope: 73.600075 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 5.754469 + inSlope: 60.655563 + outSlope: 60.655563 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 9.861987 + inSlope: 2.1790054 + outSlope: 2.3487005 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 10.165291 + inSlope: 8.660663 + outSlope: 8.615454 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 13.516627 + inSlope: 8.677438 + outSlope: 8.631216 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666668 + value: 12.684682 + inSlope: -10.641988 + outSlope: -10.641995 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 11.284748 + inSlope: -3.4802635 + outSlope: -3.1010048 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 10.823036 + inSlope: -10.702741 + outSlope: -10.702741 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: 9.145763 + inSlope: -30.16101 + outSlope: -30.161047 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: 5.445472 + inSlope: -46.655975 + outSlope: -46.59313 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666668 + value: -1.1690567 + inSlope: -44.232193 + outSlope: -43.370384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1333334 + value: -6.176445 + inSlope: 2.4547582 + outSlope: 2.4547565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3000002 + value: -5.313104 + inSlope: -18.373089 + outSlope: -18.37284 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4666667 + value: -8.661898 + inSlope: -5.762026 + outSlope: -5.726769 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7333336 + value: -9.915534 + inSlope: -24.965649 + outSlope: -24.96567 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0000002 + value: -14.375067 + inSlope: 7.3741226 + outSlope: 7.3741226 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: -8.130771 + inSlope: 27.61314 + outSlope: 27.780458 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: -6.6169357 + inSlope: 16.774422 + outSlope: 16.774422 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -20.085249 + inSlope: -97.83754 + outSlope: -97.83754 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -23.341906 + inSlope: -130.02164 + outSlope: -130.02164 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -28.752338 + inSlope: -149.61009 + outSlope: -149.3027 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -39.624218 + inSlope: -49.969597 + outSlope: -49.969593 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -33.7984 + inSlope: 199.0631 + outSlope: 199.06313 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -0.9466296 + inSlope: 423.28647 + outSlope: 424.4136 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 28.536695 + inSlope: 417.79968 + outSlope: 416.39932 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 59.069263 + inSlope: 164.33522 + outSlope: 164.33517 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 62.638943 + inSlope: -72.397026 + outSlope: -72.02422 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 37.95098 + inSlope: -262.31558 + outSlope: -262.31558 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 10.44737 + inSlope: -88.755394 + outSlope: -88.77131 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 8.7600155 + inSlope: 10.042252 + outSlope: 10.086963 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 10.004218 + inSlope: -55.599834 + outSlope: -55.601353 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666668 + value: -5.2862086 + inSlope: -88.45831 + outSlope: -88.4581 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: -17.42181 + inSlope: -112.511635 + outSlope: -112.59301 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: -35.218548 + inSlope: -231.08923 + outSlope: -231.08923 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: -56.798233 + inSlope: -145.0932 + outSlope: -145.09291 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: -60.46105 + inSlope: 60.03496 + outSlope: 60.055767 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666668 + value: -41.65855 + inSlope: 184.65694 + outSlope: 184.68536 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1333334 + value: -21.261007 + inSlope: 13.901931 + outSlope: 13.901921 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3000002 + value: -30.371052 + inSlope: -84.87807 + outSlope: -84.877914 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4666667 + value: -41.677723 + inSlope: -41.66617 + outSlope: -41.672096 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7333336 + value: -46.36788 + inSlope: 1.3738906 + outSlope: 1.373892 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0000002 + value: -35.780823 + inSlope: 75.98626 + outSlope: 75.98626 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: -19.746931 + inSlope: 8.532408 + outSlope: 8.028868 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: -20.085258 + inSlope: -3.5654101 + outSlope: -3.5654101 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.034420677 + inSlope: -70.639626 + outSlope: -70.639626 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -2.3819866 + inSlope: -77.133804 + outSlope: -77.133804 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -5.157413 + inSlope: -47.790226 + outSlope: -46.7687 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -4.7698255 + inSlope: 28.614477 + outSlope: 28.614475 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.26666668 + value: -1.3681151 + inSlope: 28.68841 + outSlope: 28.688414 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 0.5692103 + inSlope: 7.484086 + outSlope: 7.4791007 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.6547087 + inSlope: 0.6832201 + outSlope: 1.3810785 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 1.3888599 + inSlope: 26.127172 + outSlope: 26.127165 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 5.2934904 + inSlope: 47.136288 + outSlope: 46.59536 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 5.4142547 + inSlope: -67.9479 + outSlope: -67.9479 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -2.354284 + inSlope: -19.944183 + outSlope: -19.930414 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -1.9629986 + inSlope: 15.732005 + outSlope: 15.7647085 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 0.64283586 + inSlope: 9.064659 + outSlope: 9.112086 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666668 + value: 4.144636 + inSlope: 26.671804 + outSlope: 26.671824 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 5.1785293 + inSlope: -17.810791 + outSlope: -17.900429 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 2.411883 + inSlope: -28.912426 + outSlope: -28.912426 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: 0.18221107 + inSlope: -10.402853 + outSlope: -10.402865 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: -0.5281014 + inSlope: -9.69011 + outSlope: -9.957501 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666668 + value: -4.0463552 + inSlope: -44.190086 + outSlope: -44.913235 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1333334 + value: -9.027661 + inSlope: -4.1737585 + outSlope: -4.1737556 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3000002 + value: -10.522578 + inSlope: -27.133007 + outSlope: -27.132772 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4666667 + value: -14.189898 + inSlope: 2.7446964 + outSlope: 2.815094 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7333336 + value: -6.13149 + inSlope: 27.635973 + outSlope: 27.635998 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0000002 + value: -5.1663513 + inSlope: -7.8909307 + outSlope: -7.8909307 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: -1.9192114 + inSlope: 32.29971 + outSlope: 32.2404 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: -0.034422398 + inSlope: 21.106752 + outSlope: 21.106752 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 23.804514 + inSlope: -1.3407326 + outSlope: -1.3407326 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 22.396805 + inSlope: -2.06604 + outSlope: -2.0688627 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 22.355299 + inSlope: -0.00015020368 + outSlope: -0.00016125766 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 22.355312 + inSlope: -1.2753191 + outSlope: -1.2794657 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9000001 + value: 22.37848 + inSlope: 11.1165695 + outSlope: 11.06072 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: 22.769785 + inSlope: -11.734388 + outSlope: -11.732147 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3000002 + value: 22.298235 + inSlope: 18.58629 + outSlope: 18.477888 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4666667 + value: 23.804493 + inSlope: -0.000068664616 + outSlope: -0.0000660236 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 23.804525 + inSlope: 0.0011422082 + outSlope: 0.0011422082 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 2.2177813 + inSlope: 0.6830573 + outSlope: 0.6830573 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 3.0439525 + inSlope: 1.7015885 + outSlope: 1.697822 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 3.0734324 + inSlope: 0.00009119509 + outSlope: 0.00010533766 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 3.0734448 + inSlope: 0.8887156 + outSlope: 0.88297087 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9000001 + value: 5.4697676 + inSlope: 14.883003 + outSlope: 14.921161 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: 6.413943 + inSlope: 0.25126922 + outSlope: 0.112383015 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3000002 + value: 4.6432824 + inSlope: -27.904125 + outSlope: -27.953957 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4666667 + value: 2.2177892 + inSlope: -0.00028324153 + outSlope: -0.00026574498 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 2.2177916 + inSlope: -0.00048527343 + outSlope: -0.00048527343 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -27.403578 + inSlope: -10.668659 + outSlope: -10.668659 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -38.869198 + inSlope: -18.307686 + outSlope: -18.3091 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -39.222374 + inSlope: 0.0009441374 + outSlope: 0.0008947199 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: -39.222347 + inSlope: -1.96107 + outSlope: -1.9605199 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9000001 + value: -43.7915 + inSlope: -21.426134 + outSlope: -21.443174 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: -41.638996 + inSlope: 56.658733 + outSlope: 56.592583 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3000002 + value: -27.983337 + inSlope: 22.479399 + outSlope: 22.558249 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4666667 + value: -27.40356 + inSlope: -0.00034332307 + outSlope: -0.0002772991 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: -27.403574 + inSlope: -0.0002310826 + outSlope: -0.0002310826 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 8.919646 + inSlope: 7.521386 + outSlope: 7.521386 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 11.069101 + inSlope: 21.245825 + outSlope: 21.486067 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 11.024811 + inSlope: -21.829836 + outSlope: -21.829832 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 11.069124 + inSlope: 12.653742 + outSlope: 12.687318 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 10.9899435 + inSlope: -17.58267 + outSlope: -17.613123 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 10.20227 + inSlope: 10.206321 + outSlope: 10.111759 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 11.069122 + inSlope: -1.539248 + outSlope: -1.5378896 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 11.049825 + inSlope: 9.4495535 + outSlope: 9.478004 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: 10.3342905 + inSlope: -24.168228 + outSlope: -24.476854 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666668 + value: 5.156545 + inSlope: -24.556381 + outSlope: -24.380186 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: 6.9690037 + inSlope: 58.665775 + outSlope: 58.931664 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1333334 + value: 11.141217 + inSlope: 36.81329 + outSlope: 36.681183 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2333333 + value: 10.602369 + inSlope: -36.255775 + outSlope: -36.233418 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3000002 + value: 9.012146 + inSlope: -6.7400947 + outSlope: -6.715 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5333335 + value: 8.727931 + inSlope: -1.8421104 + outSlope: -1.8427565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8333335 + value: 10.10859 + inSlope: -2.8090768 + outSlope: -2.8081336 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 8.985509 + inSlope: 1.3174475 + outSlope: 1.3177094 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 8.9199915 + inSlope: 0.052270886 + outSlope: 0.052270886 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -11.415341 + inSlope: 3.70992 + outSlope: 3.70992 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -11.575316 + inSlope: 14.106025 + outSlope: 13.714217 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -11.809803 + inSlope: -16.054804 + outSlope: -16.0548 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -11.575357 + inSlope: 10.655536 + outSlope: 10.609872 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -11.646013 + inSlope: -13.976838 + outSlope: -13.932339 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -12.262997 + inSlope: 7.9959016 + outSlope: 8.129328 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: -11.575335 + inSlope: -1.2362657 + outSlope: -1.2382915 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: -11.592514 + inSlope: 7.774985 + outSlope: 7.7354054 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: -12.307522 + inSlope: -25.37267 + outSlope: -25.009722 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666668 + value: -19.137043 + inSlope: -17.415512 + outSlope: -17.69382 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: -17.687376 + inSlope: 49.74282 + outSlope: 49.393806 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1333334 + value: -13.596105 + inSlope: 52.817722 + outSlope: 52.94331 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2333333 + value: -11.506274 + inSlope: -4.636149 + outSlope: -4.8345294 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3000002 + value: -11.534998 + inSlope: 4.918858 + outSlope: 4.9510326 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5333335 + value: -11.559287 + inSlope: -1.3510363 + outSlope: -1.3500311 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8333335 + value: -10.492807 + inSlope: -2.2331812 + outSlope: -2.234409 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: -11.365874 + inSlope: 0.9966553 + outSlope: 0.9964084 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: -11.416137 + inSlope: 0.023726054 + outSlope: 0.023726054 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 25.822687 + inSlope: 11.787008 + outSlope: 11.787008 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 31.619843 + inSlope: 34.68672 + outSlope: 34.474003 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 31.80308 + inSlope: -29.64266 + outSlope: -29.642654 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 31.61983 + inSlope: 16.34295 + outSlope: 16.308685 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 31.508764 + inSlope: -23.051771 + outSlope: -23.01992 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 30.479902 + inSlope: 13.323027 + outSlope: 13.416749 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 31.619854 + inSlope: -2.0265286 + outSlope: -2.0279093 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 31.592615 + inSlope: 12.679865 + outSlope: 12.65123 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: 30.588133 + inSlope: -33.266903 + outSlope: -32.965816 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666668 + value: 24.767973 + inSlope: -21.652134 + outSlope: -21.884703 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: 26.189531 + inSlope: 54.4143 + outSlope: 54.088406 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1333334 + value: 29.99603 + inSlope: 25.176655 + outSlope: 25.384909 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2333333 + value: 28.498161 + inSlope: -54.61561 + outSlope: -54.668854 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3000002 + value: 25.852983 + inSlope: -10.409604 + outSlope: -10.420556 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5333335 + value: 25.562504 + inSlope: -2.4676566 + outSlope: -2.4670796 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8333335 + value: 27.460894 + inSlope: -3.9145095 + outSlope: -3.915446 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 25.912006 + inSlope: 1.7941619 + outSlope: 1.7938613 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 25.822552 + inSlope: 0.061258584 + outSlope: 0.061258584 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0000010759563 + inSlope: 0.00009683606 + outSlope: 0.00009683606 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.0000010759563 + inSlope: 0.00009683606 + outSlope: 0.00009683606 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2/mixamorig:LeftHandThumb3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -4.9902296 + inSlope: -0.0004291534 + outSlope: -0.0004291534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -4.9902296 + inSlope: -0.0004291534 + outSlope: -0.0004291534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2/mixamorig:LeftHandThumb3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0000036751326 + inSlope: 0.00033076192 + outSlope: 0.00033076192 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.0000036751326 + inSlope: 0.00033076192 + outSlope: 0.00033076192 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandThumb1/mixamorig:LeftHandThumb2/mixamorig:LeftHandThumb3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 6.3908486 + inSlope: 94.65867 + outSlope: 94.65867 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 9.5497055 + inSlope: 134.62166 + outSlope: 134.74295 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 27.556139 + inSlope: 150.8889 + outSlope: 150.69557 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 39.945713 + inSlope: 40.33074 + outSlope: 40.320362 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 44.231514 + inSlope: 2.7045002 + outSlope: 2.7051537 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 42.170822 + inSlope: -36.07406 + outSlope: -36.074757 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 41.671402 + inSlope: -2.6312258 + outSlope: -2.6312249 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 40.7483 + inSlope: -9.961966 + outSlope: -9.961971 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2333333 + value: 40.343716 + inSlope: -0.8706096 + outSlope: -0.87062323 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: 44.028095 + inSlope: 21.354967 + outSlope: 21.368258 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 43.3976 + inSlope: -41.27636 + outSlope: -41.279285 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 41.158165 + inSlope: -4.7101583 + outSlope: -4.7101583 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: 37.49721 + inSlope: -121.985405 + outSlope: -121.85117 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9000001 + value: 16.129065 + inSlope: -166.59442 + outSlope: -166.59427 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: -4.720956 + inSlope: -92.59457 + outSlope: -92.59473 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: -1.7079926 + inSlope: 90.265816 + outSlope: 90.61134 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: 6.724787 + inSlope: -8.491509 + outSlope: -8.493655 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4333334 + value: 3.7066581 + inSlope: -8.658401 + outSlope: -8.658471 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6000001 + value: 7.150735 + inSlope: 23.228777 + outSlope: 23.230915 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: 10.849099 + inSlope: 17.125263 + outSlope: 17.12516 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 8.584339 + inSlope: -24.839367 + outSlope: -24.84249 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 6.3908515 + inSlope: 2.7352338 + outSlope: 2.7352338 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 6.700883 + inSlope: -18.789452 + outSlope: -18.789452 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 6.0912037 + inSlope: -21.155718 + outSlope: -20.253351 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 4.672972 + inSlope: -6.9597955 + outSlope: -6.39182 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 3.0672061 + inSlope: -5.188684 + outSlope: -5.2925496 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 3.3009412 + inSlope: 0.27240512 + outSlope: 0.26619667 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 3.0500264 + inSlope: -3.7474957 + outSlope: -3.6157682 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 3.0180552 + inSlope: -0.028671028 + outSlope: -0.028671019 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 2.9099166 + inSlope: -1.1902533 + outSlope: -1.190254 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2333333 + value: 2.893667 + inSlope: 0.07544878 + outSlope: 0.075469285 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: 3.3884869 + inSlope: 3.777772 + outSlope: 3.604978 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 3.3847795 + inSlope: -4.124619 + outSlope: -4.041094 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 2.9606984 + inSlope: -0.63735706 + outSlope: -0.63735706 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: 4.1172757 + inSlope: 20.288181 + outSlope: 20.910835 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9000001 + value: 7.330663 + inSlope: 33.99639 + outSlope: 33.99636 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: 11.64332 + inSlope: 39.447536 + outSlope: 39.44761 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: 10.903868 + inSlope: -42.27573 + outSlope: -41.370613 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: 7.260886 + inSlope: 4.401001 + outSlope: 4.397082 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4333334 + value: 7.888162 + inSlope: -0.59124523 + outSlope: -0.5887553 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6000001 + value: 5.676286 + inSlope: -3.5653622 + outSlope: -3.547689 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: 5.9417706 + inSlope: -0.5591296 + outSlope: -0.5381585 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 6.529902 + inSlope: 1.1174537 + outSlope: 1.0853597 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 6.7008853 + inSlope: -2.1198156 + outSlope: -2.1198156 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 9.595341 + inSlope: 29.627035 + outSlope: 29.627035 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 10.574077 + inSlope: 38.047455 + outSlope: 37.697895 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 14.162552 + inSlope: 19.429777 + outSlope: 19.54248 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 13.688093 + inSlope: -6.2838707 + outSlope: -6.3838162 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 13.943331 + inSlope: 4.0755105 + outSlope: 4.070834 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 13.732139 + inSlope: -7.19075 + outSlope: -7.074838 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 13.648889 + inSlope: -0.95868593 + outSlope: -0.95868564 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 13.432043 + inSlope: -2.185907 + outSlope: -2.185908 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2333333 + value: 13.304042 + inSlope: -0.42198673 + outSlope: -0.42188987 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: 14.607719 + inSlope: 7.2785254 + outSlope: 7.1236105 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 14.434613 + inSlope: -12.760504 + outSlope: -12.691409 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 13.523118 + inSlope: -8.122128 + outSlope: -8.122128 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: 11.042179 + inSlope: -56.314186 + outSlope: -56.149494 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9000001 + value: 1.0688707 + inSlope: -80.598625 + outSlope: -80.5989 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: -7.3907647 + inSlope: -29.627989 + outSlope: -29.628042 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: -0.89858955 + inSlope: 101.70876 + outSlope: 101.31641 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: 9.253126 + inSlope: -2.7918649 + outSlope: -2.7849796 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4333334 + value: 7.8036904 + inSlope: -1.553494 + outSlope: -1.5525477 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6000001 + value: 10.876533 + inSlope: 8.222593 + outSlope: 8.216985 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: 11.403145 + inSlope: 4.210395 + outSlope: 4.211655 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 10.274588 + inSlope: -6.752988 + outSlope: -6.7519565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 9.595338 + inSlope: 2.9080293 + outSlope: 2.9080293 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 29.356398 + inSlope: 101.73906 + outSlope: 101.73906 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 32.746693 + inSlope: 134.8843 + outSlope: 134.8843 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 38.349083 + inSlope: 148.34082 + outSlope: 148.08769 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 52.29827 + inSlope: 151.08513 + outSlope: 149.89253 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 69.097824 + inSlope: 32.72827 + outSlope: 32.799404 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 67.43954 + inSlope: -7.4090414 + outSlope: -7.4090414 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 68.4974 + inSlope: 23.91902 + outSlope: 23.91902 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 67.84194 + inSlope: -20.558577 + outSlope: -20.574991 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 67.36476 + inSlope: -0.2739716 + outSlope: -0.2739715 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: 68.29359 + inSlope: -8.58959 + outSlope: -8.589595 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 69.20344 + inSlope: 47.46267 + outSlope: 48.112865 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 72.70479 + inSlope: 14.576785 + outSlope: 14.530107 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 67.610565 + inSlope: -42.523273 + outSlope: -42.456654 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: 61.93383 + inSlope: -122.012985 + outSlope: -122.012985 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: 42.59566 + inSlope: -212.927 + outSlope: -212.97859 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: 29.694195 + inSlope: -207.85793 + outSlope: -207.85793 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: 17.662004 + inSlope: -32.385754 + outSlope: -32.385635 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: 23.682564 + inSlope: 106.62993 + outSlope: 106.654686 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1000001 + value: 27.07434 + inSlope: 80.36095 + outSlope: 80.36095 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1333334 + value: 29.042332 + inSlope: -41.859665 + outSlope: -41.865673 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: 19.503925 + inSlope: -70.92866 + outSlope: -70.944626 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2333333 + value: 19.549639 + inSlope: 6.167284 + outSlope: 6.1664686 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: 22.958515 + inSlope: 19.851694 + outSlope: 19.851742 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4333334 + value: 23.201748 + inSlope: 11.935856 + outSlope: 11.934202 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.766667 + value: 27.864916 + inSlope: 34.98881 + outSlope: 34.9887 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 28.657215 + inSlope: -8.653143 + outSlope: -8.652959 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 29.356377 + inSlope: 0.29672894 + outSlope: 0.29672894 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.7904276 + inSlope: 7.427492 + outSlope: 7.427492 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 1.0603166 + inSlope: 12.455877 + outSlope: 12.455877 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 1.6510295 + inSlope: 19.478941 + outSlope: 21.711334 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 4.382636 + inSlope: 53.28532 + outSlope: 64.626976 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 14.295418 + inSlope: 43.068123 + outSlope: 42.216473 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 12.498856 + inSlope: -6.723632 + outSlope: -6.723632 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 13.651612 + inSlope: 28.680887 + outSlope: 28.680887 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 12.949068 + inSlope: -20.189333 + outSlope: -19.981873 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 12.450003 + inSlope: -0.40314677 + outSlope: -0.40314665 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: 13.4130535 + inSlope: -8.923157 + outSlope: -8.9231615 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 14.461843 + inSlope: 68.83914 + outSlope: 61.1874 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 19.640087 + inSlope: 27.286068 + outSlope: 27.83086 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 12.703223 + inSlope: -40.11055 + outSlope: -40.959053 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: 8.037295 + inSlope: -65.26893 + outSlope: -65.26893 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: 1.5809613 + inSlope: -28.941133 + outSlope: -31.022594 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: 0.10967056 + inSlope: -11.996649 + outSlope: -11.996649 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: -0.38227406 + inSlope: -0.45475692 + outSlope: -0.45475528 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: -0.19370148 + inSlope: 5.8086076 + outSlope: 5.518465 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1000001 + value: 0.018172313 + inSlope: 5.945064 + outSlope: 5.945064 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1333334 + value: 0.17261851 + inSlope: -1.5212324 + outSlope: -1.4767882 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: -0.08653631 + inSlope: 1.9687817 + outSlope: 1.8776252 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2333333 + value: 0.033947363 + inSlope: 2.5807261 + outSlope: 2.5837176 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: 0.34259996 + inSlope: 2.428144 + outSlope: 2.4281497 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4333334 + value: 0.43356565 + inSlope: 0.5222364 + outSlope: 0.5468225 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.766667 + value: 0.68338484 + inSlope: 2.6013815 + outSlope: 2.6013834 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 0.74067515 + inSlope: -0.55012494 + outSlope: -0.55674917 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 0.79043937 + inSlope: 0.022122858 + outSlope: 0.022122858 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 8.806846 + inSlope: 24.555214 + outSlope: 24.555214 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 9.641336 + inSlope: 35.01257 + outSlope: 35.01257 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 11.167259 + inSlope: 44.033886 + outSlope: 45.928574 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 16.169907 + inSlope: 76.6626 + outSlope: 87.65968 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 28.640911 + inSlope: 47.593746 + outSlope: 46.745243 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 26.618868 + inSlope: -7.727542 + outSlope: -7.727542 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 27.906672 + inSlope: 31.827492 + outSlope: 31.827492 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 27.115952 + inSlope: -22.87161 + outSlope: -22.665026 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 26.56472 + inSlope: -0.3033829 + outSlope: -0.3033828 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: 27.651993 + inSlope: -10.2323885 + outSlope: -10.232395 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 28.813745 + inSlope: 75.37388 + outSlope: 67.74396 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 34.484528 + inSlope: 29.434408 + outSlope: 29.978258 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 26.843433 + inSlope: -45.95624 + outSlope: -46.80003 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: 21.357128 + inSlope: -82.55617 + outSlope: -82.55617 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: 12.156764 + inSlope: -60.763393 + outSlope: -62.554623 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: 8.705708 + inSlope: -46.380375 + outSlope: -46.380375 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: 6.1735287 + inSlope: -6.271397 + outSlope: -6.2713747 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: 7.395619 + inSlope: 23.03739 + outSlope: 22.863558 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1000001 + value: 8.141956 + inSlope: 18.319376 + outSlope: 18.319376 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1333334 + value: 8.597747 + inSlope: -8.951034 + outSlope: -8.926357 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: 6.6342487 + inSlope: -13.336814 + outSlope: -13.3568125 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2333333 + value: 6.66089 + inSlope: 1.4280952 + outSlope: 1.4313821 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: 7.3776464 + inSlope: 4.47718 + outSlope: 4.4771905 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4333334 + value: 7.4371448 + inSlope: 2.5636077 + outSlope: 2.57743 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.766667 + value: 8.468133 + inSlope: 8.301188 + outSlope: 8.301057 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 8.644377 + inSlope: -2.023665 + outSlope: -2.0279338 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 8.8068495 + inSlope: 0.069902964 + outSlope: 0.069902964 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0000028138961 + inSlope: 0.00025325062 + outSlope: 0.00025325062 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.0000028138961 + inSlope: 0.00025325062 + outSlope: 0.00025325062 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2/mixamorig:LeftHandIndex3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.000009370604 + inSlope: 0.00052993663 + outSlope: 0.00052993663 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.000009370604 + inSlope: 0.00052993663 + outSlope: 0.00052993663 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2/mixamorig:LeftHandIndex3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.000006484999 + inSlope: 0.0005836499 + outSlope: 0.0005836499 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.000006484999 + inSlope: 0.0005836499 + outSlope: 0.0005836499 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandIndex1/mixamorig:LeftHandIndex2/mixamorig:LeftHandIndex3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 9.325736 + inSlope: 119.944 + outSlope: 119.944 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 13.325443 + inSlope: 160.07869 + outSlope: 160.07869 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 19.990824 + inSlope: 184.0833 + outSlope: 182.31407 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 38.48916 + inSlope: 37.234997 + outSlope: 36.704037 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 41.552498 + inSlope: 4.831496 + outSlope: 4.8338466 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 40.430027 + inSlope: -13.635473 + outSlope: -13.665772 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 40.181107 + inSlope: -6.3830557 + outSlope: -6.3787403 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: 39.79757 + inSlope: 3.5082679 + outSlope: 3.5082679 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: 43.41915 + inSlope: 19.330933 + outSlope: 19.426937 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 42.87121 + inSlope: -37.06619 + outSlope: -37.16864 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: 40.47711 + inSlope: 2.9422762 + outSlope: 2.9807258 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: 39.351463 + inSlope: -56.179573 + outSlope: -57.439598 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666668 + value: 18.460657 + inSlope: -146.97589 + outSlope: -146.9932 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: 8.729768 + inSlope: -13.918788 + outSlope: -13.9169655 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: 13.435334 + inSlope: 19.801138 + outSlope: 19.796238 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3666668 + value: 9.481496 + inSlope: -54.690277 + outSlope: -54.739784 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5000002 + value: 7.48922 + inSlope: 24.914728 + outSlope: 24.978235 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7 + value: 13.948463 + inSlope: 25.91849 + outSlope: 25.911175 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0333335 + value: 14.701986 + inSlope: -35.963917 + outSlope: -35.970062 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 9.325736 + inSlope: 0.7642461 + outSlope: 0.7642461 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 13.169471 + inSlope: -5.219106 + outSlope: -5.219106 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 13.034582 + inSlope: 5.022983 + outSlope: 5.022983 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 13.556892 + inSlope: 30.45616 + outSlope: 38.44102 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 22.621105 + inSlope: 50.061188 + outSlope: 51.134365 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 26.209084 + inSlope: 1.9904996 + outSlope: 1.9779508 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 25.533308 + inSlope: -6.71371 + outSlope: -6.558072 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 25.411015 + inSlope: -3.0330062 + outSlope: -3.0558176 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: 25.239054 + inSlope: 1.5467916 + outSlope: 1.5467916 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: 27.40728 + inSlope: 13.64237 + outSlope: 13.260854 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 27.162619 + inSlope: -21.140034 + outSlope: -20.66404 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: 25.135025 + inSlope: -14.823991 + outSlope: -14.804065 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: 23.013357 + inSlope: -52.432465 + outSlope: -49.17396 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666668 + value: 12.78534 + inSlope: -16.505823 + outSlope: -19.824854 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: 12.274473 + inSlope: -1.6295811 + outSlope: -1.6403548 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: 11.494094 + inSlope: 0.63379586 + outSlope: 0.71934664 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3666668 + value: 13.540784 + inSlope: 16.881361 + outSlope: 16.754887 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5000002 + value: 13.574649 + inSlope: -13.912864 + outSlope: -13.800029 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7 + value: 12.268102 + inSlope: 0.71999145 + outSlope: 0.8248926 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0333335 + value: 13.322684 + inSlope: 1.6131442 + outSlope: 1.555567 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 13.169476 + inSlope: -1.0300828 + outSlope: -1.0300828 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 4.111009 + inSlope: 50.122246 + outSlope: 50.122246 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 5.7861485 + inSlope: 69.169876 + outSlope: 69.169876 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 8.768832 + inSlope: 85.46925 + outSlope: 90.83078 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 20.428741 + inSlope: 43.923885 + outSlope: 45.030045 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 23.411125 + inSlope: 5.401583 + outSlope: 5.391128 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 22.635313 + inSlope: -10.954158 + outSlope: -10.81415 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 22.431858 + inSlope: -5.1466255 + outSlope: -5.166958 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: 22.066874 + inSlope: 3.0752642 + outSlope: 3.0752642 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: 25.520063 + inSlope: 19.977484 + outSlope: 19.621687 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 24.998318 + inSlope: -35.491196 + outSlope: -35.060722 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: 22.252882 + inSlope: -17.508389 + outSlope: -17.48876 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: 18.986557 + inSlope: -87.175064 + outSlope: -84.27839 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666668 + value: -0.6077909 + inSlope: -70.66354 + outSlope: -72.285355 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: -3.9783065 + inSlope: 8.096142 + outSlope: 8.09669 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: 2.307553 + inSlope: 43.046608 + outSlope: 43.065346 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3666668 + value: 3.6177316 + inSlope: -26.266006 + outSlope: -26.19676 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5000002 + value: 3.0322597 + inSlope: 24.882923 + outSlope: 24.831375 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7 + value: 6.906719 + inSlope: 9.8190975 + outSlope: 9.853805 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0333335 + value: 6.1370807 + inSlope: -16.580246 + outSlope: -16.587942 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 4.1110086 + inSlope: 1.7404082 + outSlope: 1.7404082 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 39.043156 + inSlope: 58.239723 + outSlope: 58.239723 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 44.683594 + inSlope: 119.70634 + outSlope: 119.509254 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 57.47797 + inSlope: 16.694668 + outSlope: 16.694672 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 55.292904 + inSlope: -13.565284 + outSlope: -13.581566 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 55.655575 + inSlope: 9.011066 + outSlope: 9.010421 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: 55.706776 + inSlope: 9.954158 + outSlope: 9.956778 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: 54.566284 + inSlope: -10.198819 + outSlope: -10.197888 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 55.29292 + inSlope: -9.146591 + outSlope: -9.1426 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: 44.58666 + inSlope: -148.9905 + outSlope: -148.97926 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9000001 + value: 28.027063 + inSlope: -169.20023 + outSlope: -169.2694 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666668 + value: 15.156539 + inSlope: -196.65575 + outSlope: -196.77007 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: 9.123667 + inSlope: -125.87728 + outSlope: -125.7455 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1000001 + value: 9.276878 + inSlope: 118.96094 + outSlope: 118.98102 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: 18.815739 + inSlope: 137.17662 + outSlope: 136.94005 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: 37.8469 + inSlope: 43.176662 + outSlope: 43.176662 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5000002 + value: 38.431892 + inSlope: 4.606977 + outSlope: 4.605983 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1333334 + value: 39.32365 + inSlope: -3.8246706 + outSlope: -3.8243284 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 39.044044 + inSlope: -0.9138105 + outSlope: -0.9138105 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.5196218 + inSlope: 6.5760493 + outSlope: 6.5760493 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 1.2301337 + inSlope: 18.939028 + outSlope: 21.129095 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 3.7519643 + inSlope: -3.1787336 + outSlope: -3.1787343 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 2.2043955 + inSlope: -6.634804 + outSlope: -6.444638 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 2.3192878 + inSlope: 2.9723203 + outSlope: 2.9829206 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: 2.332426 + inSlope: 3.3035805 + outSlope: 3.2644837 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: 1.9602755 + inSlope: -3.5518816 + outSlope: -3.5646546 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 2.2044098 + inSlope: -3.1764572 + outSlope: -3.227647 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: -0.9946426 + inSlope: -22.49111 + outSlope: -23.771252 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9000001 + value: -2.587189 + inSlope: -2.4087448 + outSlope: -3.1434498 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666668 + value: -2.5658216 + inSlope: 6.4315886 + outSlope: 5.7729125 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: -2.3461697 + inSlope: 7.5168495 + outSlope: 7.979532 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1000001 + value: -1.9992739 + inSlope: 2.4295378 + outSlope: 2.15498 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: -1.703873 + inSlope: 7.533211 + outSlope: 8.861574 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: 0.21914911 + inSlope: 9.10597 + outSlope: 9.10597 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5000002 + value: 0.44570735 + inSlope: 0.5515472 + outSlope: 0.564793 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1333334 + value: 0.5546979 + inSlope: -0.46508893 + outSlope: -0.4734831 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 0.51118934 + inSlope: -0.20171459 + outSlope: -0.20171459 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 10.572976 + inSlope: 19.268946 + outSlope: 19.268946 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 12.546851 + inSlope: 46.869434 + outSlope: 48.79459 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 18.762587 + inSlope: 12.786067 + outSlope: 12.78607 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 18.01275 + inSlope: -6.8162017 + outSlope: -6.6267056 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 18.1762 + inSlope: 4.182607 + outSlope: 4.192944 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: 18.199856 + inSlope: 4.678946 + outSlope: 4.6411505 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: 17.675964 + inSlope: -4.786071 + outSlope: -4.798451 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 18.012747 + inSlope: -5.693901 + outSlope: -5.7425456 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: 12.631299 + inSlope: -53.212563 + outSlope: -54.303032 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9000001 + value: 7.5793066 + inSlope: -39.772987 + outSlope: -40.13195 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666668 + value: 4.9217114 + inSlope: -35.205166 + outSlope: -35.251553 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: 3.9012284 + inSlope: -19.984093 + outSlope: -20.098957 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1000001 + value: 4.145842 + inSlope: 22.861643 + outSlope: 22.78161 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: 5.973796 + inSlope: 27.04858 + outSlope: 27.844372 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: 10.217478 + inSlope: 12.737371 + outSlope: 12.737371 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5000002 + value: 10.401903 + inSlope: 1.2969011 + outSlope: 1.3080148 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1333334 + value: 10.6535845 + inSlope: -1.083694 + outSlope: -1.0909221 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 10.568133 + inSlope: -0.30010694 + outSlope: -0.30010694 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.000300243 + inSlope: -0.0004439501 + outSlope: -0.0004439501 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.000300243 + inSlope: -0.0004439501 + outSlope: -0.0004439501 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2/mixamorig:LeftHandMiddle3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.33525246 + inSlope: -0.00014483927 + outSlope: -0.00014483927 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.33525246 + inSlope: -0.00014483927 + outSlope: -0.00014483927 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2/mixamorig:LeftHandMiddle3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.051515236 + inSlope: -0.00014081596 + outSlope: -0.00014081596 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.051515236 + inSlope: -0.00014081596 + outSlope: -0.00014081596 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandMiddle1/mixamorig:LeftHandMiddle2/mixamorig:LeftHandMiddle3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 32.13035 + inSlope: 91.15012 + outSlope: 91.15012 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 35.15147 + inSlope: 108.699066 + outSlope: 108.699066 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 39.355232 + inSlope: 92.10044 + outSlope: 89.72447 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 41.716747 + inSlope: -27.957369 + outSlope: -27.9508 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 33.67541 + inSlope: -29.378199 + outSlope: -29.361908 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 33.2449 + inSlope: 33.5386 + outSlope: 33.576614 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 36.796993 + inSlope: 1.2379072 + outSlope: 1.2377645 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 32.778404 + inSlope: -15.569516 + outSlope: -15.605694 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 34.657585 + inSlope: -5.780562 + outSlope: -5.7805643 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 34.849133 + inSlope: 1.8397906 + outSlope: 1.8412395 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: 36.767902 + inSlope: 37.065002 + outSlope: 37.065002 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 38.885838 + inSlope: -19.544788 + outSlope: -19.52286 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 35.350986 + inSlope: -37.24036 + outSlope: -37.405228 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: 34.896626 + inSlope: -38.80818 + outSlope: -38.80818 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: 19.653425 + inSlope: -145.51556 + outSlope: -145.29492 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: 9.616546 + inSlope: -97.982994 + outSlope: -97.902664 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1000001 + value: 9.873041 + inSlope: 98.04797 + outSlope: 98.04775 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: 20.55664 + inSlope: 78.2502 + outSlope: 78.25001 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3000002 + value: 27.367632 + inSlope: 74.75081 + outSlope: 74.75822 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4333334 + value: 31.21054 + inSlope: -8.175552 + outSlope: -8.176571 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6000001 + value: 32.00012 + inSlope: 25.693783 + outSlope: 25.601086 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9 + value: 37.66872 + inSlope: 6.1574945 + outSlope: 6.1577654 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0666668 + value: 34.367992 + inSlope: -27.872232 + outSlope: -27.932697 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 32.13037 + inSlope: -2.3414614 + outSlope: -2.3414614 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 28.563019 + inSlope: 32.158356 + outSlope: 32.158356 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 29.714678 + inSlope: 53.33982 + outSlope: 53.33982 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 32.167763 + inSlope: 66.782455 + outSlope: 73.29442 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 35.494545 + inSlope: -4.343204 + outSlope: -4.3935704 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 31.840284 + inSlope: -12.030545 + outSlope: -12.113758 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 31.677464 + inSlope: 15.470382 + outSlope: 15.319859 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 33.419567 + inSlope: 0.13195035 + outSlope: 0.13192178 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 31.37823 + inSlope: -6.7097716 + outSlope: -6.5520654 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 32.261555 + inSlope: -2.6333992 + outSlope: -2.6334004 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 32.353695 + inSlope: 0.8111955 + outSlope: 0.80669385 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: 33.36547 + inSlope: 21.985697 + outSlope: 21.985697 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 34.677166 + inSlope: -12.913396 + outSlope: -12.987031 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 32.62451 + inSlope: -18.280548 + outSlope: -17.597904 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: 30.985811 + inSlope: -37.38899 + outSlope: -37.38899 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: 24.208942 + inSlope: -20.252546 + outSlope: -23.83572 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: 23.38739 + inSlope: 5.223317 + outSlope: 5.9207067 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1000001 + value: 23.894882 + inSlope: 2.3982205 + outSlope: 2.3982263 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: 24.326818 + inSlope: 12.449638 + outSlope: 12.449609 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3000002 + value: 26.637217 + inSlope: 30.346197 + outSlope: 30.402761 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4333334 + value: 28.476616 + inSlope: -3.8395536 + outSlope: -3.835188 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6000001 + value: 28.254757 + inSlope: 9.743289 + outSlope: 10.1231785 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9 + value: 30.964245 + inSlope: 4.6243677 + outSlope: 4.6148734 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0666668 + value: 29.51866 + inSlope: -11.184866 + outSlope: -10.885027 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 28.563005 + inSlope: -1.0371996 + outSlope: -1.0371996 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 9.5086 + inSlope: 92.91601 + outSlope: 92.91601 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 12.666552 + inSlope: 126.55958 + outSlope: 126.55958 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 17.996696 + inSlope: 138.45589 + outSlope: 144.02061 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 27.242376 + inSlope: 16.995718 + outSlope: 16.971579 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 23.942545 + inSlope: -17.987814 + outSlope: -18.061396 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 23.749195 + inSlope: 29.61837 + outSlope: 29.492676 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 26.896517 + inSlope: -2.0613666 + outSlope: -2.061353 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 22.603317 + inSlope: -14.246865 + outSlope: -14.119717 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 24.431896 + inSlope: -6.5113435 + outSlope: -6.511346 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 24.651268 + inSlope: 2.9004674 + outSlope: 2.8969567 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: 26.847076 + inSlope: 43.64043 + outSlope: 43.64043 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 29.431349 + inSlope: -22.471556 + outSlope: -22.5356 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 25.452175 + inSlope: -41.916756 + outSlope: -41.36347 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: 24.896194 + inSlope: -24.130102 + outSlope: -24.130102 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: 17.083672 + inSlope: -74.84094 + outSlope: -76.763954 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2 + value: 11.187489 + inSlope: -73.9966 + outSlope: -73.93159 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1000001 + value: 8.486201 + inSlope: 19.780083 + outSlope: 19.779673 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: 10.759994 + inSlope: 6.557957 + outSlope: 6.5579414 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3000002 + value: 9.4662485 + inSlope: -7.9216175 + outSlope: -7.6980114 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4333334 + value: 7.9740567 + inSlope: -3.354878 + outSlope: -3.3499444 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6000001 + value: 10.759181 + inSlope: 26.269482 + outSlope: 26.558126 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9 + value: 15.3433 + inSlope: 0.33378607 + outSlope: 0.31901535 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0666668 + value: 11.32466 + inSlope: -25.109774 + outSlope: -24.869432 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 9.508596 + inSlope: -1.2071873 + outSlope: -1.2071873 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 24.235258 + inSlope: 76.38811 + outSlope: 76.38811 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 26.781721 + inSlope: 104.97453 + outSlope: 104.974434 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 35.061283 + inSlope: 123.51223 + outSlope: 123.42581 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 56.5946 + inSlope: 154.01982 + outSlope: 153.67433 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 71.72762 + inSlope: 9.372573 + outSlope: 9.372573 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 69.55577 + inSlope: -8.783568 + outSlope: -8.802794 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 68.63426 + inSlope: 3.6872861 + outSlope: 3.6916819 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 72.45022 + inSlope: -15.15221 + outSlope: -15.131603 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: 69.06245 + inSlope: -17.423626 + outSlope: -17.43874 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 68.29026 + inSlope: 48.174374 + outSlope: 48.41499 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 72.463135 + inSlope: 24.8538 + outSlope: 24.748083 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: 67.88276 + inSlope: -23.448263 + outSlope: -23.448246 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: 53.35862 + inSlope: -163.53375 + outSlope: -163.6388 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666668 + value: 34.0841 + inSlope: -192.22385 + outSlope: -192.22385 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: 21.701302 + inSlope: -28.758766 + outSlope: -28.7588 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: 24.019375 + inSlope: 50.499737 + outSlope: 50.498703 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4333334 + value: 22.771296 + inSlope: -1.5828253 + outSlope: -1.5828253 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7 + value: 23.387146 + inSlope: -1.5245248 + outSlope: -1.5244774 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0666668 + value: 24.379862 + inSlope: -3.2848642 + outSlope: -3.284848 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 24.23489 + inSlope: -3.2443573 + outSlope: -3.2443573 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.63040155 + inSlope: -2.1093802 + outSlope: -2.1093802 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.6928111 + inSlope: -1.6354983 + outSlope: -1.4000244 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.67407477 + inSlope: 4.093206 + outSlope: 5.0060453 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 1.7536652 + inSlope: 51.75343 + outSlope: 56.051357 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 9.902621 + inSlope: 10.576211 + outSlope: 10.576211 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 7.8588214 + inSlope: -7.4516735 + outSlope: -7.1183276 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 7.128312 + inSlope: 3.042618 + outSlope: 2.9775531 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 10.689691 + inSlope: -16.894659 + outSlope: -17.23826 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: 7.4424343 + inSlope: -13.3407755 + outSlope: -13.071639 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 7.227249 + inSlope: 44.571545 + outSlope: 40.777782 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 11.271135 + inSlope: 31.507303 + outSlope: 33.217686 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: 6.480828 + inSlope: -17.927916 + outSlope: -17.927902 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: 1.8221002 + inSlope: -16.83466 + outSlope: -19.792395 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666668 + value: 0.475032 + inSlope: 0.7147075 + outSlope: 0.7147075 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: 0.5444996 + inSlope: -0.6547503 + outSlope: -0.65475106 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: 0.13853407 + inSlope: -5.4959016 + outSlope: -5.2622743 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4333334 + value: -0.5790907 + inSlope: 0.06253437 + outSlope: 0.06253437 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7 + value: -0.60068387 + inSlope: 0.04710697 + outSlope: 0.04724344 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0666668 + value: -0.6353219 + inSlope: 0.111917816 + outSlope: 0.111315034 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: -0.62915534 + inSlope: 0.16725385 + outSlope: 0.16725385 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 3.5210614 + inSlope: 15.24589 + outSlope: 15.24589 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 4.031821 + inSlope: 21.014914 + outSlope: 21.112694 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 5.697456 + inSlope: 26.493204 + outSlope: 27.135038 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 11.8498955 + inSlope: 76.75641 + outSlope: 80.94293 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 22.593258 + inSlope: 12.483282 + outSlope: 12.483282 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 20.153717 + inSlope: -9.171935 + outSlope: -8.840855 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 19.252224 + inSlope: 4.464005 + outSlope: 4.3998194 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 23.625301 + inSlope: -20.184843 + outSlope: -20.526918 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: 19.653074 + inSlope: -17.229248 + outSlope: -16.962585 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 19.306952 + inSlope: 53.69037 + outSlope: 49.920204 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 24.131655 + inSlope: 36.03298 + outSlope: 37.737736 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: 18.480978 + inSlope: -21.563799 + outSlope: -21.563784 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: 11.187767 + inSlope: -49.520164 + outSlope: -52.12531 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666668 + value: 5.8018255 + inSlope: -44.060402 + outSlope: -44.060402 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: 3.039437 + inSlope: -5.91776 + outSlope: -5.917767 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: 3.5913184 + inSlope: 10.823539 + outSlope: 10.803227 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4333334 + value: 3.2235215 + inSlope: -0.33125553 + outSlope: -0.33125553 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7 + value: 3.3493097 + inSlope: -0.3445861 + outSlope: -0.3444911 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0666668 + value: 3.5514693 + inSlope: -0.6831613 + outSlope: -0.6834001 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 3.5238328 + inSlope: -0.53968734 + outSlope: -0.53968734 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0000058009973 + inSlope: 0.0005220897 + outSlope: 0.0005220897 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.0000058009973 + inSlope: 0.0005220897 + outSlope: 0.0005220897 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2/mixamorig:LeftHandPinky3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.000012072079 + inSlope: -0.0002868039 + outSlope: -0.0002868039 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.000012072079 + inSlope: -0.0002868039 + outSlope: -0.0002868039 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2/mixamorig:LeftHandPinky3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0000022716506 + inSlope: 0.00020444854 + outSlope: 0.00020444854 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.0000022716506 + inSlope: 0.00020444854 + outSlope: 0.00020444854 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:LeftShoulder/mixamorig:LeftArm/mixamorig:LeftForeArm/mixamorig:LeftHand/mixamorig:LeftHandPinky1/mixamorig:LeftHandPinky2/mixamorig:LeftHandPinky3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 88.19235 + inSlope: -27.474842 + outSlope: -27.474842 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 79.07282 + inSlope: -11.720548 + outSlope: -11.720548 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 103.252014 + inSlope: -73.93636 + outSlope: -73.93636 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 93.522 + inSlope: 2.2663875 + outSlope: 2.2663875 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 77.17038 + inSlope: -85.24099 + outSlope: -85.24099 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 79.368004 + inSlope: -122.07148 + outSlope: -122.07148 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 79.31584 + inSlope: 129.66275 + outSlope: 129.66275 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: 80.25663 + inSlope: -27.464739 + outSlope: -27.464739 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666668 + value: 82.01384 + inSlope: 48.23353 + outSlope: 48.23353 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1000001 + value: 89.31528 + inSlope: -81.99166 + outSlope: -81.99166 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: 83.97819 + inSlope: 36.05585 + outSlope: 36.05585 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6000001 + value: 86.442116 + inSlope: -8.524104 + outSlope: -8.524104 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9 + value: 85.15269 + inSlope: -6.225358 + outSlope: -6.225358 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: 87.65799 + inSlope: 9.324393 + outSlope: 9.324393 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 88.19235 + inSlope: 4.8504686 + outSlope: 4.8504686 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -127.44922 + inSlope: 216.72768 + outSlope: 216.72768 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -100.537704 + inSlope: -18.574348 + outSlope: -18.574348 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 85.384995 + inSlope: -356.11945 + outSlope: -356.11945 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 81.878 + inSlope: 21.714243 + outSlope: 21.714243 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 86.621826 + inSlope: -86.04217 + outSlope: -86.04217 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 81.526 + inSlope: -35.53143 + outSlope: -35.53143 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 63.934563 + inSlope: -523.4409 + outSlope: -523.4409 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: -94.789604 + inSlope: -23.988842 + outSlope: -23.988842 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666668 + value: -97.04577 + inSlope: 74.97451 + outSlope: 74.97451 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1000001 + value: 140.04108 + inSlope: -820.0052 + outSlope: -820.0052 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: 101.15028 + inSlope: 18.204147 + outSlope: 18.204147 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6000001 + value: -99.96947 + inSlope: 24.105036 + outSlope: 24.105036 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9 + value: -100.11203 + inSlope: 0.32760626 + outSlope: 0.32760626 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: -117.216354 + inSlope: -375.01294 + outSlope: -375.01294 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: -127.44904 + inSlope: -141.8992 + outSlope: -141.8992 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 153.32346 + inSlope: 184.41689 + outSlope: 184.41689 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 172.20181 + inSlope: -39.938046 + outSlope: -39.938046 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -4.877014 + inSlope: -370.04376 + outSlope: -370.04376 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -11.151001 + inSlope: 26.800575 + outSlope: 26.800575 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 1.1960711 + inSlope: -13.304639 + outSlope: -13.304639 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 6.2190003 + inSlope: 9.579909 + outSlope: 9.579909 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 2.078684 + inSlope: -557.54944 + outSlope: -557.54944 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: -165.22691 + inSlope: -68.297485 + outSlope: -68.297485 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666668 + value: -177.75748 + inSlope: 6.730496 + outSlope: 6.730496 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1000001 + value: 53.55355 + inSlope: -837.292 + outSlope: -837.292 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: 17.577557 + inSlope: 44.066795 + outSlope: 44.066795 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6000001 + value: -177.99088 + inSlope: 33.34351 + outSlope: 33.34351 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9 + value: -177.31796 + inSlope: 0.54962164 + outSlope: 0.54962164 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.266667 + value: 163.99602 + inSlope: -383.07852 + outSlope: -383.07852 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 153.32368 + inSlope: -146.70401 + outSlope: -146.70401 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 71.98832 + inSlope: 9.757918 + outSlope: 9.757918 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 72.27893 + inSlope: 0.22933958 + outSlope: 0.22933958 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 72.02928 + inSlope: -27.555082 + outSlope: -27.674559 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 68.27351 + inSlope: -78.425896 + outSlope: -78.231094 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 41.207012 + inSlope: -121.61409 + outSlope: -122.34024 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 25.713074 + inSlope: -101.13053 + outSlope: -101.130486 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 15.161652 + inSlope: -82.00776 + outSlope: -82.0078 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 0.59194714 + inSlope: -105.657524 + outSlope: -106.1379 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -4.5609956 + inSlope: 29.973171 + outSlope: 29.964117 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 0.2850973 + inSlope: 0.4304329 + outSlope: -0.22128782 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -2.1214616 + inSlope: -67.741615 + outSlope: -67.741615 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -4.3489194 + inSlope: -71.71774 + outSlope: -71.71749 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -6.9152355 + inSlope: -65.76828 + outSlope: -65.76852 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -8.669352 + inSlope: 33.12055 + outSlope: 34.941044 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333334 + value: 0.9155404 + inSlope: 176.39507 + outSlope: 176.88373 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: 27.836168 + inSlope: 246.04564 + outSlope: 248.52298 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666668 + value: 53.392105 + inSlope: 204.51137 + outSlope: 207.90959 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: 63.555134 + inSlope: 121.019844 + outSlope: 121.01962 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: 70.20387 + inSlope: 50.022083 + outSlope: 48.228344 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 62.201035 + inSlope: -106.66381 + outSlope: -106.96264 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: 51.736565 + inSlope: 21.313585 + outSlope: 21.330084 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: 60.5352 + inSlope: 52.910473 + outSlope: 52.91055 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: 69.9324 + inSlope: 28.539211 + outSlope: 28.513628 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5333335 + value: 69.85566 + inSlope: -1.5293648 + outSlope: -1.4938833 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: 69.257164 + inSlope: -9.342757 + outSlope: -9.373468 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1333334 + value: 68.88047 + inSlope: 15.387112 + outSlope: 15.471836 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 71.98831 + inSlope: 6.311873 + outSlope: 6.311873 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -36.822243 + inSlope: 84.290535 + outSlope: 84.290535 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -33.95894 + inSlope: 96.3391 + outSlope: 96.3391 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -30.544458 + inSlope: 48.765045 + outSlope: 47.647446 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -30.751778 + inSlope: 12.732123 + outSlope: 14.76533 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -24.06005 + inSlope: -13.858787 + outSlope: -9.520899 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -26.221943 + inSlope: -18.045303 + outSlope: -18.045294 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -28.505543 + inSlope: -32.375237 + outSlope: -32.37525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -34.86174 + inSlope: -55.03052 + outSlope: -54.224384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -37.557243 + inSlope: 11.065747 + outSlope: 11.090356 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -35.125042 + inSlope: 53.505997 + outSlope: 53.50999 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -32.861443 + inSlope: 62.635178 + outSlope: 62.635178 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -31.05272 + inSlope: 1.4666762 + outSlope: 1.466671 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -32.94402 + inSlope: -84.84273 + outSlope: -84.84166 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -36.666443 + inSlope: -97.24008 + outSlope: -96.47498 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333334 + value: -40.783398 + inSlope: -32.66799 + outSlope: -26.20969 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: -37.95462 + inSlope: 143.042 + outSlope: 135.90039 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666668 + value: -16.436754 + inSlope: 330.46692 + outSlope: 314.19083 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: 2.4807868 + inSlope: 225.1665 + outSlope: 225.16678 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: 7.6825304 + inSlope: -56.41565 + outSlope: -70.7765 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: -19.09045 + inSlope: -59.864037 + outSlope: -55.992783 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: -24.031603 + inSlope: -4.380769 + outSlope: -4.1868534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: -25.00747 + inSlope: -7.704296 + outSlope: -7.7048564 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: -25.321354 + inSlope: 5.8588085 + outSlope: 6.9008183 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5333335 + value: -27.375206 + inSlope: -14.191102 + outSlope: -14.236651 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: -32.272266 + inSlope: -11.590191 + outSlope: -11.331954 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1333334 + value: -33.548244 + inSlope: -20.777933 + outSlope: -19.926048 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: -36.82217 + inSlope: -4.1831007 + outSlope: -4.1831007 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -40.036312 + inSlope: 202.63148 + outSlope: 202.63148 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -33.229195 + inSlope: 214.79712 + outSlope: 214.79712 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -25.856455 + inSlope: 85.91669 + outSlope: 84.81076 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -29.717646 + inSlope: -36.69116 + outSlope: -35.00526 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -14.803934 + inSlope: 108.59487 + outSlope: 111.094315 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -3.4502783 + inSlope: 37.929764 + outSlope: 37.92975 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 1.2067481 + inSlope: 67.194954 + outSlope: 67.194984 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 12.740369 + inSlope: 79.07348 + outSlope: 78.51478 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 16.521227 + inSlope: -7.694147 + outSlope: -7.7282815 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 13.19645 + inSlope: -125.623566 + outSlope: -125.621315 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 7.237566 + inSlope: -155.89906 + outSlope: -155.89906 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 2.8373392 + inSlope: -11.641206 + outSlope: -11.641164 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 6.552718 + inSlope: 156.38045 + outSlope: 156.37962 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 13.243967 + inSlope: 198.66373 + outSlope: 198.15706 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333334 + value: 26.146927 + inSlope: 188.52043 + outSlope: 187.6743 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: 49.48486 + inSlope: 170.0046 + outSlope: 163.24501 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666668 + value: 63.08202 + inSlope: 171.76056 + outSlope: 154.33247 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: 69.12112 + inSlope: 23.522095 + outSlope: 23.522053 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: 61.517365 + inSlope: -250.12003 + outSlope: -263.52747 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 9.742993 + inSlope: -160.91785 + outSlope: -157.26303 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: -9.2821045 + inSlope: -53.262623 + outSlope: -53.107883 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: -15.590696 + inSlope: -15.058437 + outSlope: -15.058459 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: -14.2334175 + inSlope: 16.373833 + outSlope: 17.389736 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5333335 + value: -19.646122 + inSlope: -37.576347 + outSlope: -37.622124 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8000002 + value: -32.813763 + inSlope: -41.533516 + outSlope: -41.281723 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1333334 + value: -36.58553 + inSlope: -29.658665 + outSlope: -28.817074 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: -40.036236 + inSlope: -0.04606246 + outSlope: -0.04606246 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 7.7241054 + inSlope: -10.1568165 + outSlope: -10.1568165 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 7.3673005 + inSlope: -13.554939 + outSlope: -13.554939 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 6.838727 + inSlope: -24.648941 + outSlope: -24.64894 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 5.7078443 + inSlope: -27.268448 + outSlope: -27.268454 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 5.0139227 + inSlope: 4.842997 + outSlope: 3.0178354 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 9.17077 + inSlope: 22.826126 + outSlope: 22.82613 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 7.073225 + inSlope: -72.189735 + outSlope: -73.23515 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 3.2198608 + inSlope: 52.453255 + outSlope: 53.792683 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 11.47824 + inSlope: -118.69268 + outSlope: -97.95548 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 6.328728 + inSlope: -244.19409 + outSlope: -244.19365 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -4.412763 + inSlope: -364.31757 + outSlope: -365.91693 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -29.393553 + inSlope: -283.51053 + outSlope: -283.51053 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -40.082386 + inSlope: -7.3840146 + outSlope: -12.0296755 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -39.101517 + inSlope: 34.952972 + outSlope: 34.953037 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -37.993343 + inSlope: 66.88448 + outSlope: 66.88437 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -34.6276 + inSlope: 254.27904 + outSlope: 254.2795 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -21.06897 + inSlope: 427.9838 + outSlope: 427.9838 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -6.165382 + inSlope: 392.81442 + outSlope: 392.8144 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 6.0882516 + inSlope: 335.32977 + outSlope: 335.3296 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 16.358084 + inSlope: 208.61632 + outSlope: 208.61632 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: 20.257315 + inSlope: 72.84303 + outSlope: 72.33641 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 21.447748 + inSlope: -5.367933 + outSlope: -5.8564353 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 19.143572 + inSlope: -2.821324 + outSlope: -2.821322 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: 20.368393 + inSlope: 5.7244234 + outSlope: 4.5004706 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: 27.031265 + inSlope: 69.09223 + outSlope: 69.65663 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9000001 + value: 34.06632 + inSlope: -33.734146 + outSlope: -35.204823 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1000001 + value: 26.926214 + inSlope: -12.338416 + outSlope: -12.330158 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3666668 + value: 26.089497 + inSlope: -14.111639 + outSlope: -14.106346 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7 + value: 15.769769 + inSlope: -31.400246 + outSlope: -31.162104 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.966667 + value: 8.729361 + inSlope: -11.600415 + outSlope: -11.503469 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1666667 + value: 7.5025005 + inSlope: -3.2235463 + outSlope: -3.2195077 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 7.724301 + inSlope: 4.591519 + outSlope: 4.591519 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.13886636 + inSlope: -20.280413 + outSlope: -20.280413 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.52719206 + inSlope: -19.423746 + outSlope: -19.423746 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -1.1627201 + inSlope: 1.3142716 + outSlope: 1.3142715 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -0.5278567 + inSlope: 19.82842 + outSlope: 19.828424 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.21377191 + inSlope: 27.538942 + outSlope: 27.66597 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 7.4339833 + inSlope: 127.17885 + outSlope: 127.17886 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 19.630007 + inSlope: 49.5048 + outSlope: 47.488697 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 10.999708 + inSlope: -168.91472 + outSlope: -168.34317 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -31.38929 + inSlope: -277.88965 + outSlope: -291.03293 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -40.499897 + inSlope: -229.57019 + outSlope: -229.56978 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -46.67634 + inSlope: -98.73611 + outSlope: -89.4682 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -41.6391 + inSlope: 265.32877 + outSlope: 265.32877 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -23.264175 + inSlope: 218.8875 + outSlope: 218.69092 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -18.297773 + inSlope: 74.823524 + outSlope: 74.82366 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -18.122683 + inSlope: -11.590416 + outSlope: -11.590395 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -18.977814 + inSlope: -13.463734 + outSlope: -13.4637575 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -18.26875 + inSlope: 146.61098 + outSlope: 146.61098 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -10.118336 + inSlope: 328.14993 + outSlope: 328.15012 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 2.63111 + inSlope: 364.73355 + outSlope: 364.73486 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 14.276856 + inSlope: 260.0534 + outSlope: 260.0534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: 19.547995 + inSlope: 112.04366 + outSlope: 112.65895 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 23.169453 + inSlope: 34.687756 + outSlope: 34.564026 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 22.272114 + inSlope: -4.135873 + outSlope: -4.13587 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: 29.872807 + inSlope: 90.200935 + outSlope: 90.22693 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: 44.255623 + inSlope: -33.13682 + outSlope: -31.508934 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9000001 + value: 27.015553 + inSlope: -132.88634 + outSlope: -131.89868 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1000001 + value: 13.237487 + inSlope: -4.22583 + outSlope: -4.2487803 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3666668 + value: 16.859251 + inSlope: -8.587168 + outSlope: -8.585663 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7 + value: 5.998921 + inSlope: -27.97934 + outSlope: -28.33531 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.966667 + value: 0.3176182 + inSlope: -9.7276 + outSlope: -9.857132 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1666667 + value: -0.08824847 + inSlope: 1.9572737 + outSlope: 1.9644786 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 0.13791567 + inSlope: 0.78622484 + outSlope: 0.78622484 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 10.805811 + inSlope: -142.10077 + outSlope: -142.10077 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 6.0715084 + inSlope: -141.6692 + outSlope: -141.6692 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 1.3562164 + inSlope: 38.548275 + outSlope: 38.54827 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 8.625306 + inSlope: 293.0135 + outSlope: 293.01355 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 20.923225 + inSlope: 340.46838 + outSlope: 339.35553 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 52.96105 + inSlope: 323.63602 + outSlope: 323.63608 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 83.69892 + inSlope: 265.7737 + outSlope: 264.79706 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 108.74048 + inSlope: 88.28406 + outSlope: 87.32757 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 98.77811 + inSlope: -196.76346 + outSlope: -212.31374 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 91.08326 + inSlope: -249.1791 + outSlope: -249.17863 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 81.8899 + inSlope: -268.95676 + outSlope: -266.65503 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 60.075344 + inSlope: -425.41245 + outSlope: -425.41245 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 33.594986 + inSlope: -286.09293 + outSlope: -285.98074 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 27.316446 + inSlope: -90.92364 + outSlope: -90.9238 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 27.388079 + inSlope: 42.58288 + outSlope: 42.5828 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 30.082054 + inSlope: 179.01726 + outSlope: 179.01758 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 39.06296 + inSlope: 230.07693 + outSlope: 230.07693 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 46.463135 + inSlope: 119.16195 + outSlope: 119.16152 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 46.699516 + inSlope: 40.817535 + outSlope: 40.81768 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 48.086834 + inSlope: 64.9502 + outSlope: 64.9502 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: 49.74118 + inSlope: 46.126144 + outSlope: 47.083244 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 52.75357 + inSlope: 52.28664 + outSlope: 52.179577 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3333334 + value: 55.264088 + inSlope: -0.6856157 + outSlope: -0.68561524 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: 61.99605 + inSlope: 74.45479 + outSlope: 74.49961 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: 65.93383 + inSlope: -89.542786 + outSlope: -88.38929 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9000001 + value: 42.31582 + inSlope: -142.44478 + outSlope: -141.46988 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1000001 + value: 28.48749 + inSlope: 10.624206 + outSlope: 10.6229 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3666668 + value: 36.193707 + inSlope: 3.1721737 + outSlope: 3.1940353 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7 + value: 25.382225 + inSlope: -48.391148 + outSlope: -48.65626 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.966667 + value: 10.136774 + inSlope: -54.16987 + outSlope: -54.22459 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1666667 + value: 9.177797 + inSlope: 22.867119 + outSlope: 22.869095 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 10.8057995 + inSlope: -1.2963518 + outSlope: -1.2963518 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -5.710494 + inSlope: 4.8833365 + outSlope: 4.8833365 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -5.4629774 + inSlope: 19.585445 + outSlope: 19.585445 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -4.4299035 + inSlope: 24.47638 + outSlope: 24.476376 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -4.114977 + inSlope: -6.2331953 + outSlope: -6.3037057 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -12.601449 + inSlope: -98.6045 + outSlope: -99.42831 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -24.025448 + inSlope: -119.66321 + outSlope: -119.690674 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -30.924223 + inSlope: -57.797077 + outSlope: -57.7971 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -32.23895 + inSlope: 17.882826 + outSlope: 17.882826 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -29.374853 + inSlope: 43.052933 + outSlope: 42.661766 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -27.940632 + inSlope: 35.795143 + outSlope: 35.795208 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -27.070164 + inSlope: 12.622273 + outSlope: 14.8202095 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -27.120611 + inSlope: -8.584726 + outSlope: -7.1017175 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -26.476427 + inSlope: 58.524258 + outSlope: 60.257385 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -23.457632 + inSlope: 132.56969 + outSlope: 132.56992 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -17.448215 + inSlope: 152.1323 + outSlope: 152.13202 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -13.153423 + inSlope: 153.27116 + outSlope: 153.27144 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -7.050783 + inSlope: 229.93875 + outSlope: 229.93834 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 2.1625113 + inSlope: 197.74777 + outSlope: 197.74675 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 5.945603 + inSlope: 87.29603 + outSlope: 85.67816 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 8.532558 + inSlope: -2.7258086 + outSlope: 1.2459195 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 8.243037 + inSlope: 13.212874 + outSlope: 13.212874 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: 9.964699 + inSlope: 77.86499 + outSlope: 77.86471 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333334 + value: 13.513672 + inSlope: 120.50872 + outSlope: 120.10677 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 21.503115 + inSlope: 101.12298 + outSlope: 101.1228 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: 26.138195 + inSlope: 13.175514 + outSlope: 13.155324 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666668 + value: 20.594296 + inSlope: -93.95998 + outSlope: -94.005806 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: 14.267541 + inSlope: 11.601713 + outSlope: 11.27292 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 18.548063 + inSlope: 4.8678026 + outSlope: 4.8678026 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: 8.20286 + inSlope: -79.417336 + outSlope: -79.43816 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666668 + value: 4.192961 + inSlope: 12.024558 + outSlope: 11.887004 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: 7.0288577 + inSlope: 8.999358 + outSlope: 9.1645155 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: 3.9339437 + inSlope: -33.443153 + outSlope: -33.443153 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6333334 + value: -1.6774627 + inSlope: -10.667489 + outSlope: -10.730867 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9333334 + value: -3.4123104 + inSlope: -9.465155 + outSlope: -9.436045 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1666667 + value: -4.7859707 + inSlope: -4.8902154 + outSlope: -4.689134 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: -5.71047 + inSlope: -3.0502496 + outSlope: -3.0502496 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 9.892957 + inSlope: -86.46214 + outSlope: -86.46214 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 7.0179267 + inSlope: -115.894554 + outSlope: -115.894554 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 2.1752734 + inSlope: -144.81726 + outSlope: -144.81725 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -2.708289 + inSlope: -150.59724 + outSlope: -150.46346 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -20.91586 + inSlope: -114.383545 + outSlope: -113.443115 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -27.475283 + inSlope: -0.04571915 + outSlope: -0.613775 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -23.800776 + inSlope: 107.29287 + outSlope: 107.292915 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -15.130721 + inSlope: 121.78547 + outSlope: 121.78547 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -10.796376 + inSlope: -29.725357 + outSlope: -30.562138 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -13.520129 + inSlope: -78.80873 + outSlope: -78.807495 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -16.151423 + inSlope: -117.274185 + outSlope: -116.72439 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -41.204674 + inSlope: -340.8846 + outSlope: -341.42386 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -65.27861 + inSlope: -328.3553 + outSlope: -329.36984 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -75.15362 + inSlope: -238.24107 + outSlope: -238.2415 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -81.27592 + inSlope: -136.49977 + outSlope: -136.49953 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -84.25091 + inSlope: -3.4030123 + outSlope: -3.4030185 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -81.57341 + inSlope: 90.89822 + outSlope: 90.898056 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -78.10931 + inSlope: 160.51286 + outSlope: 160.51178 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -70.41786 + inSlope: 326.57166 + outSlope: 327.24124 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -39.986065 + inSlope: 509.05914 + outSlope: 510.1654 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -22.206701 + inSlope: 537.4261 + outSlope: 537.4261 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: -3.943661 + inSlope: 505.7901 + outSlope: 505.78964 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333334 + value: 11.658632 + inSlope: 387.84778 + outSlope: 388.1143 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 27.523718 + inSlope: 97.11554 + outSlope: 97.11537 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: 27.701477 + inSlope: -28.909811 + outSlope: -28.938438 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666668 + value: 25.917494 + inSlope: 50.83699 + outSlope: 50.538185 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: 37.769794 + inSlope: 83.81805 + outSlope: 83.86903 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 45.693905 + inSlope: 12.1589155 + outSlope: 12.1589155 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: 42.026886 + inSlope: -45.252697 + outSlope: -45.296593 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666668 + value: 38.50614 + inSlope: 26.21044 + outSlope: 26.27553 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: 52.202957 + inSlope: 64.44102 + outSlope: 64.40852 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: 51.62148 + inSlope: -68.96024 + outSlope: -68.96024 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6333334 + value: 33.030064 + inSlope: -55.43529 + outSlope: -55.407913 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9333334 + value: 28.401995 + inSlope: -16.027243 + outSlope: -16.043594 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1666667 + value: 17.817905 + inSlope: -63.201054 + outSlope: -63.233223 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 9.892914 + inSlope: -17.546532 + outSlope: -17.546532 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -2.6237047 + inSlope: 152.6689 + outSlope: 152.6689 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 2.4610865 + inSlope: 152.5798 + outSlope: 152.5798 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 7.533278 + inSlope: 73.71701 + outSlope: 73.717 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 7.4402766 + inSlope: -1.9761225 + outSlope: -1.6980635 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 12.355181 + inSlope: 70.812675 + outSlope: 69.53333 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 14.465616 + inSlope: -43.74556 + outSlope: -43.50284 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 8.705891 + inSlope: -82.99017 + outSlope: -82.99021 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 5.6072693 + inSlope: 25.71213 + outSlope: 25.71213 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 13.35251 + inSlope: 159.69376 + outSlope: 160.24353 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 18.969366 + inSlope: 159.96167 + outSlope: 159.96194 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 24.09759 + inSlope: 109.48899 + outSlope: 108.928215 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 25.429909 + inSlope: -51.17087 + outSlope: -51.58253 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 21.930378 + inSlope: -57.502617 + outSlope: -55.673515 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 19.545368 + inSlope: -78.78049 + outSlope: -78.78063 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 16.820557 + inSlope: -86.76598 + outSlope: -86.76583 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 14.068525 + inSlope: -107.91432 + outSlope: -107.91451 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 9.882863 + inSlope: -127.5683 + outSlope: -127.56807 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 5.534308 + inSlope: -54.007927 + outSlope: -54.008026 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 6.0524364 + inSlope: 47.887432 + outSlope: 50.66515 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 11.51443 + inSlope: 81.425316 + outSlope: 81.73604 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 13.890417 + inSlope: 22.293512 + outSlope: 22.293512 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: 13.295664 + inSlope: -32.525913 + outSlope: -32.5258 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333334 + value: 11.645495 + inSlope: -1.8528222 + outSlope: 2.8267934 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 15.099741 + inSlope: 60.24316 + outSlope: 60.24305 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: 17.064857 + inSlope: -7.705873 + outSlope: -7.751997 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666668 + value: 14.996594 + inSlope: 15.186392 + outSlope: 14.6572 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: 21.515335 + inSlope: 41.243023 + outSlope: 41.337994 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 19.328512 + inSlope: -68.37683 + outSlope: -68.37683 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: 9.549274 + inSlope: -0.15497592 + outSlope: -0.50442654 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666668 + value: 13.306103 + inSlope: 26.805674 + outSlope: 26.869421 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: 11.685193 + inSlope: -27.200285 + outSlope: -27.137762 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: 6.778962 + inSlope: -3.8438535 + outSlope: -3.8438535 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6333334 + value: 7.829711 + inSlope: -6.4674034 + outSlope: -6.3499365 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9333334 + value: 1.6313367 + inSlope: -9.564864 + outSlope: -9.593669 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1666667 + value: -1.539329 + inSlope: -16.64341 + outSlope: -16.70897 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: -2.6237013 + inSlope: 0.8387757 + outSlope: 0.8387757 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 23.805002 + inSlope: -2.1131172 + outSlope: -2.1131172 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 22.786459 + inSlope: -7.151928 + outSlope: -7.032375 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 22.355751 + inSlope: -0.0003814697 + outSlope: -0.00042915344 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: 22.355722 + inSlope: 0.1919303 + outSlope: 0.18826671 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3000002 + value: 23.168592 + inSlope: -0.5285224 + outSlope: -0.5868341 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6000001 + value: 23.708282 + inSlope: 2.57309 + outSlope: 2.599366 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9333334 + value: 23.804983 + inSlope: 0.00036048898 + outSlope: 0.00041484824 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 23.805006 + inSlope: 0.00047206867 + outSlope: 0.00047206867 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -2.2175212 + inSlope: -1.058404 + outSlope: -1.058404 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -2.7420075 + inSlope: -5.081121 + outSlope: -5.2500606 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -3.073031 + inSlope: -0.00012874603 + outSlope: -0.00016629696 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: -3.0730245 + inSlope: -1.0602927 + outSlope: -1.0609372 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3000002 + value: -6.095378 + inSlope: 5.4002995 + outSlope: 5.3956137 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6000001 + value: -3.1601682 + inSlope: 8.80261 + outSlope: 8.793017 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9333334 + value: -2.2175162 + inSlope: -0.000118017226 + outSlope: -0.00021278854 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: -2.2174857 + inSlope: 0.00013053414 + outSlope: 0.00013053414 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 27.40424 + inSlope: 16.690636 + outSlope: 16.690636 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 35.503395 + inSlope: 60.682846 + outSlope: 60.585857 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 39.22306 + inSlope: 0.00022888182 + outSlope: 0.000120162964 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: 39.223053 + inSlope: 1.5480423 + outSlope: 1.5483395 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3000002 + value: 43.59755 + inSlope: -20.161188 + outSlope: -20.166325 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6000001 + value: 29.553196 + inSlope: -34.224438 + outSlope: -34.222454 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9333334 + value: 27.404234 + inSlope: -0.00012016299 + outSlope: -0.00010013578 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 27.40424 + inSlope: -0.000028610222 + outSlope: -0.000028610222 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 8.919365 + inSlope: -22.918509 + outSlope: -22.918509 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 7.42266 + inSlope: -4.0988874 + outSlope: -4.0962696 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 8.738901 + inSlope: 9.029102 + outSlope: 9.034985 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 14.571667 + inSlope: 50.68357 + outSlope: 51.024704 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 16.028376 + inSlope: -54.026848 + outSlope: -53.285496 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 11.277437 + inSlope: -34.99429 + outSlope: -34.91332 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 11.12978 + inSlope: -3.1286976 + outSlope: -3.1287034 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 11.068852 + inSlope: 46.731335 + outSlope: 46.732624 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 14.175363 + inSlope: 87.133095 + outSlope: 87.133255 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 16.928995 + inSlope: 0.08840569 + outSlope: 0.088405535 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 14.180951 + inSlope: -89.07407 + outSlope: -89.07423 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 11.068857 + inSlope: -24.35345 + outSlope: -24.353407 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 12.621169 + inSlope: 64.643585 + outSlope: 64.15471 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 18.600365 + inSlope: 71.732834 + outSlope: 73.01027 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 20.390789 + inSlope: -3.4521074 + outSlope: -3.4557154 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 14.757114 + inSlope: -94.585594 + outSlope: -96.54348 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 11.068851 + inSlope: 13.155013 + outSlope: 13.190277 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333334 + value: 12.839039 + inSlope: 14.111755 + outSlope: 14.084829 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2333333 + value: 12.196278 + inSlope: -24.351791 + outSlope: -24.540075 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: 10.706415 + inSlope: -0.84357244 + outSlope: -0.843072 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 10.432922 + inSlope: -13.388215 + outSlope: -13.354557 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 10.641329 + inSlope: 26.667143 + outSlope: 26.66719 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: 13.021952 + inSlope: 29.859753 + outSlope: 29.976633 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: 13.780498 + inSlope: -8.4823675 + outSlope: -8.490165 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: 11.068844 + inSlope: -20.327301 + outSlope: -20.368074 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9000001 + value: 10.885627 + inSlope: -16.072279 + outSlope: -16.272602 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1333334 + value: 4.984488 + inSlope: -13.951931 + outSlope: -13.935789 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: 4.5229077 + inSlope: -2.765643 + outSlope: -2.7085404 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7 + value: 8.700775 + inSlope: 11.777223 + outSlope: 11.756513 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 9.33242 + inSlope: -0.7900427 + outSlope: -0.7897404 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 8.919354 + inSlope: -0.47296384 + outSlope: -0.47296384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 11.415285 + inSlope: 20.895908 + outSlope: 20.895908 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 12.886555 + inSlope: 12.176112 + outSlope: 12.175941 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 12.961506 + inSlope: 1.196022 + outSlope: 1.1455307 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: 8.735706 + inSlope: -47.437386 + outSlope: -47.004395 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 7.723249 + inSlope: 50.90039 + outSlope: 51.89678 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 11.651989 + inSlope: 21.435186 + outSlope: 21.595327 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 11.6356945 + inSlope: -1.1533918 + outSlope: -1.1533939 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 11.575207 + inSlope: -35.429226 + outSlope: -35.42916 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 9.163641 + inSlope: -80.58379 + outSlope: -80.58394 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 6.2910247 + inSlope: 0.10355482 + outSlope: 0.103554636 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 9.17071 + inSlope: 77.96081 + outSlope: 77.960945 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 11.57519 + inSlope: 15.355296 + outSlope: 15.355269 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 10.299691 + inSlope: -57.466087 + outSlope: -58.11944 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 3.8716156 + inSlope: -103.82095 + outSlope: -102.63447 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 1.0568789 + inSlope: 4.252231 + outSlope: 4.248539 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 8.115728 + inSlope: 89.97434 + outSlope: 87.04627 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 11.5751915 + inSlope: -11.018859 + outSlope: -10.968981 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333334 + value: 10.00205 + inSlope: -13.842333 + outSlope: -13.87546 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2333333 + value: 10.565826 + inSlope: 21.181204 + outSlope: 20.9143 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: 11.966918 + inSlope: 1.4648577 + outSlope: 1.4649798 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 12.236557 + inSlope: 10.297967 + outSlope: 10.348426 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 12.0644 + inSlope: -21.746387 + outSlope: -21.746428 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: 10.023337 + inSlope: -28.016151 + outSlope: -27.868723 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: 9.296237 + inSlope: 6.822234 + outSlope: 6.8114014 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: 11.575196 + inSlope: 16.96767 + outSlope: 16.908842 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9000001 + value: 12.326442 + inSlope: 23.549332 + outSlope: 23.375238 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1333334 + value: 19.026936 + inSlope: 14.927427 + outSlope: 14.945007 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: 18.72333 + inSlope: -9.808529 + outSlope: -9.82267 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7 + value: 11.903183 + inSlope: -13.612939 + outSlope: -13.633 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: 11.117972 + inSlope: 0.47579515 + outSlope: 0.47605374 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 11.415274 + inSlope: 0.34697667 + outSlope: 0.34697667 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -25.823792 + inSlope: 24.209745 + outSlope: 24.209745 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -24.195366 + inSlope: -1.6469191 + outSlope: -1.6518402 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -27.536442 + inSlope: -28.601418 + outSlope: -28.606133 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.33333334 + value: -36.21703 + inSlope: -73.568504 + outSlope: -73.23717 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -38.274246 + inSlope: 78.339714 + outSlope: 79.11805 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -31.696758 + inSlope: 41.515793 + outSlope: 41.621326 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -31.6182 + inSlope: 1.137599 + outSlope: 1.137601 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -31.620964 + inSlope: -62.05153 + outSlope: -62.051414 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -35.832058 + inSlope: -130.70183 + outSlope: -130.70207 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -40.278362 + inSlope: 0.021629354 + outSlope: 0.021629315 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -35.830578 + inSlope: 128.7442 + outSlope: 128.74445 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -31.62094 + inSlope: 31.180431 + outSlope: 31.180374 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -33.679417 + inSlope: -88.39008 + outSlope: -88.89159 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -42.642773 + inSlope: -131.69604 + outSlope: -130.65788 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -46.09308 + inSlope: 7.555841 + outSlope: 7.553101 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -36.634743 + inSlope: 129.53877 + outSlope: 127.15525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -31.62096 + inSlope: -16.966583 + outSlope: -16.92906 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333334 + value: -34.000145 + inSlope: -20.533773 + outSlope: -20.55933 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2333333 + value: -33.163567 + inSlope: 32.345383 + outSlope: 32.14267 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: -31.041712 + inSlope: 1.9783683 + outSlope: 1.9787837 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: -30.623531 + inSlope: 17.19352 + outSlope: 17.229122 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: -30.902851 + inSlope: -35.515163 + outSlope: -35.51523 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: -34.181843 + inSlope: -43.703484 + outSlope: -43.593292 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: -35.30508 + inSlope: 11.219415 + outSlope: 11.21276 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: -31.62097 + inSlope: 25.796524 + outSlope: 25.751432 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9000001 + value: -31.245655 + inSlope: 22.782091 + outSlope: 22.604025 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1333334 + value: -24.547138 + inSlope: 11.447998 + outSlope: 11.469781 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: -23.628561 + inSlope: 11.999671 + outSlope: 12.010479 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7 + value: -25.441872 + inSlope: -15.4627 + outSlope: -15.481049 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1000001 + value: -26.362816 + inSlope: 0.9065435 + outSlope: 0.9066663 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: -25.823805 + inSlope: 0.62227243 + outSlope: 0.62227243 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0000004001346 + inSlope: -0.000036012112 + outSlope: -0.000036012112 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.0000004001346 + inSlope: -0.000036012112 + outSlope: -0.000036012112 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2/mixamorig:RightHandThumb3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 4.9902163 + inSlope: 0.00025749207 + outSlope: 0.00025749207 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 4.9902163 + inSlope: 0.00025749207 + outSlope: 0.00025749207 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2/mixamorig:RightHandThumb3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0000064128694 + inSlope: -0.00057715824 + outSlope: -0.00057715824 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.0000064128694 + inSlope: -0.00057715824 + outSlope: -0.00057715824 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandThumb1/mixamorig:RightHandThumb2/mixamorig:RightHandThumb3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 6.3906612 + inSlope: 72.460754 + outSlope: 72.460754 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 13.744852 + inSlope: 168.03407 + outSlope: 167.99852 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 31.574112 + inSlope: 138.88 + outSlope: 138.82324 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 43.15482 + inSlope: 44.279278 + outSlope: 44.275234 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 41.84877 + inSlope: -72.97804 + outSlope: -72.98493 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 36.27852 + inSlope: -34.769672 + outSlope: -34.777256 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 36.27583 + inSlope: 2.4283242 + outSlope: 2.42832 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 36.44065 + inSlope: 38.989758 + outSlope: 38.991512 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 41.158012 + inSlope: 32.713512 + outSlope: 32.713512 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 40.9468 + inSlope: -1.2864305 + outSlope: -1.2860867 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 43.63417 + inSlope: 98.95063 + outSlope: 98.95063 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 55.67938 + inSlope: 71.14481 + outSlope: 71.24812 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 56.886375 + inSlope: 20.940647 + outSlope: 20.94061 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 57.077007 + inSlope: -114.97148 + outSlope: -114.97169 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 49.192623 + inSlope: -238.76025 + outSlope: -238.76025 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 41.15801 + inSlope: -120.57129 + outSlope: -120.572235 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 41.15802 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 41.15802 + inSlope: 43.173565 + outSlope: 43.174862 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333334 + value: 46.895844 + inSlope: 24.463785 + outSlope: 24.463142 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 43.88752 + inSlope: -39.117203 + outSlope: -39.122433 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666668 + value: 40.10552 + inSlope: -32.9096 + outSlope: -32.909634 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: 35.71285 + inSlope: -30.160305 + outSlope: -30.163336 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 34.95737 + inSlope: 31.430199 + outSlope: 31.43634 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 46.31246 + inSlope: 93.27871 + outSlope: 93.28569 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 48.56505 + inSlope: -4.814763 + outSlope: -4.8147545 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: 42.53682 + inSlope: -66.76455 + outSlope: -66.714485 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: 40.53187 + inSlope: -52.990753 + outSlope: -53.018063 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666668 + value: 26.25419 + inSlope: -186.96786 + outSlope: -185.95412 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: 0.22504583 + inSlope: -40.15381 + outSlope: -40.10708 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: 1.7588891 + inSlope: -16.015623 + outSlope: -16.025284 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6000001 + value: 1.4182025 + inSlope: 73.45839 + outSlope: 73.37271 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7333336 + value: 11.691579 + inSlope: 46.790627 + outSlope: 46.803104 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9333334 + value: 12.515573 + inSlope: -22.59651 + outSlope: -22.592432 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2000003 + value: 6.384221 + inSlope: -3.32805 + outSlope: -3.3286245 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 6.390659 + inSlope: 0.9207174 + outSlope: 0.9207174 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -6.7008967 + inSlope: 2.8605435 + outSlope: 2.8605435 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -6.342869 + inSlope: 11.067523 + outSlope: 10.690727 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -4.7017717 + inSlope: 16.578512 + outSlope: 16.584312 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -2.3077254 + inSlope: 15.478738 + outSlope: 15.453225 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -1.6700395 + inSlope: -3.2053928 + outSlope: -3.0688174 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -2.782505 + inSlope: -18.357985 + outSlope: -18.38392 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -3.257051 + inSlope: -9.673343 + outSlope: -9.673326 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -3.4275546 + inSlope: -0.33478233 + outSlope: -0.38299802 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -2.9608185 + inSlope: 7.625338 + outSlope: 7.625338 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -2.7438016 + inSlope: -1.1990334 + outSlope: -1.198983 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -3.0506442 + inSlope: -5.782462 + outSlope: -5.782462 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -4.2456417 + inSlope: -20.161566 + outSlope: -18.77651 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -4.7081256 + inSlope: -13.251284 + outSlope: -13.25126 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -5.1066217 + inSlope: 21.060173 + outSlope: 21.060211 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -3.8119195 + inSlope: 26.18038 + outSlope: 26.18038 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -2.9608564 + inSlope: 7.1104784 + outSlope: 7.110453 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -2.9608228 + inSlope: 0.0006651861 + outSlope: 0.0006651885 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -2.9608428 + inSlope: -0.813268 + outSlope: -0.89552444 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333334 + value: -3.1845102 + inSlope: 0.5589719 + outSlope: 0.5589729 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -2.6659563 + inSlope: 4.18999 + outSlope: 3.9638953 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666668 + value: -2.9390132 + inSlope: 0.9297648 + outSlope: 0.9733791 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: -2.776478 + inSlope: -0.13723792 + outSlope: -0.04770045 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: -2.7827728 + inSlope: 2.4757671 + outSlope: 2.4173565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: -2.0081196 + inSlope: 7.9298954 + outSlope: 8.55853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: -1.7659978 + inSlope: 4.607986 + outSlope: 4.6063094 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: -1.6752954 + inSlope: -7.9409413 + outSlope: -8.238319 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: -4.287879 + inSlope: -17.291645 + outSlope: -17.229563 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666668 + value: -5.3522134 + inSlope: -16.798248 + outSlope: -20.358896 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: -9.9811535 + inSlope: -13.838458 + outSlope: -13.954426 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: -8.763871 + inSlope: 2.6967633 + outSlope: 2.6461165 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6000001 + value: -8.413378 + inSlope: 12.63087 + outSlope: 13.330567 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7333336 + value: -6.5979495 + inSlope: 6.450074 + outSlope: 6.2911024 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9333334 + value: -6.3846745 + inSlope: -1.8230385 + outSlope: -1.8583992 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2000003 + value: -6.7148976 + inSlope: -0.69445014 + outSlope: -0.6926436 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: -6.7008643 + inSlope: 0.51184106 + outSlope: 0.51184106 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -9.5958 + inSlope: -10.720338 + outSlope: -10.720338 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -10.673754 + inSlope: -25.05698 + outSlope: -24.991093 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -13.0184 + inSlope: -9.038143 + outSlope: -8.84335 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -13.795509 + inSlope: -6.4213367 + outSlope: -6.488112 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -13.363056 + inSlope: 16.823841 + outSlope: 16.895773 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -12.274078 + inSlope: 4.6444707 + outSlope: 4.57993 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -12.366902 + inSlope: -2.687104 + outSlope: -2.6870992 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -12.453433 + inSlope: -9.729501 + outSlope: -9.759851 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -13.523623 + inSlope: -7.1148925 + outSlope: -7.1148925 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -13.497601 + inSlope: -0.32495502 + outSlope: -0.3246688 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -14.342242 + inSlope: -36.784878 + outSlope: -36.784878 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -19.64284 + inSlope: -38.83798 + outSlope: -37.536026 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -20.213404 + inSlope: -10.573493 + outSlope: -10.573474 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -20.32562 + inSlope: 62.7372 + outSlope: 62.737316 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -16.49123 + inSlope: 96.60322 + outSlope: 96.60322 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -13.523651 + inSlope: 39.949074 + outSlope: 39.948933 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -13.523616 + inSlope: -0.0004291523 + outSlope: -0.00042915385 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -13.523629 + inSlope: -13.99445 + outSlope: -14.052489 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333334 + value: -15.511159 + inSlope: -11.282735 + outSlope: -11.282755 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -14.707976 + inSlope: 11.998412 + outSlope: 11.810005 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666668 + value: -13.181101 + inSlope: 10.051009 + outSlope: 10.080858 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: -11.939372 + inSlope: 8.393105 + outSlope: 8.443945 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: -11.727492 + inSlope: -9.199771 + outSlope: -9.221676 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: -15.16348 + inSlope: -29.28734 + outSlope: -28.934153 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: -15.8676195 + inSlope: -2.273743 + outSlope: -2.2760134 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: -14.30377 + inSlope: 23.037539 + outSlope: 22.912975 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: -13.009246 + inSlope: 20.30546 + outSlope: 20.27615 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9666668 + value: -7.8286557 + inSlope: 70.38334 + outSlope: 69.94077 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: 5.4497757 + inSlope: 29.77605 + outSlope: 29.830528 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: 0.76579124 + inSlope: -32.755127 + outSlope: -32.753418 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6000001 + value: -6.075711 + inSlope: -49.511524 + outSlope: -49.659954 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7333336 + value: -11.112035 + inSlope: -18.363525 + outSlope: -18.341393 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9333334 + value: -11.48555 + inSlope: 8.336571 + outSlope: 8.337415 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2000003 + value: -9.578941 + inSlope: 1.5441786 + outSlope: 1.5434089 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: -9.5957985 + inSlope: -0.9955511 + outSlope: -0.9955511 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 29.3567 + inSlope: 141.85168 + outSlope: 141.85168 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 34.083176 + inSlope: 188.47594 + outSlope: 188.47594 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 41.922935 + inSlope: 214.11597 + outSlope: 212.25706 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 65.82014 + inSlope: 64.309425 + outSlope: 64.10327 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 70.05855 + inSlope: -29.20532 + outSlope: -29.20532 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 66.8513 + inSlope: -18.648375 + outSlope: -18.599855 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 66.993454 + inSlope: 18.529818 + outSlope: 18.529818 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 66.35419 + inSlope: -45.9668 + outSlope: -46.095203 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 64.781815 + inSlope: 51.42323 + outSlope: 51.605534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 67.455154 + inSlope: 12.619172 + outSlope: 12.570798 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: 67.68007 + inSlope: 1.4515682 + outSlope: 1.4520268 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 63.167164 + inSlope: -64.35662 + outSlope: -64.06826 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 58.715466 + inSlope: 16.770788 + outSlope: 16.767536 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 71.37499 + inSlope: 112.01863 + outSlope: 115.03314 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 74.249245 + inSlope: 15.976196 + outSlope: 15.938059 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: 69.8483 + inSlope: -58.78848 + outSlope: -59.27318 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9000001 + value: 60.923134 + inSlope: -124.94603 + outSlope: -124.79926 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: 37.10479 + inSlope: -210.99757 + outSlope: -210.99796 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: 18.264812 + inSlope: -41.646378 + outSlope: -41.64249 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: 19.871132 + inSlope: 13.452065 + outSlope: 13.450614 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6000001 + value: 22.664928 + inSlope: 61.941307 + outSlope: 61.984077 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.766667 + value: 32.178257 + inSlope: 5.606801 + outSlope: 5.606631 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.966667 + value: 31.531683 + inSlope: -8.648384 + outSlope: -8.648911 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 29.356691 + inSlope: 6.2971497 + outSlope: 6.2971497 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.79020756 + inSlope: -10.4177265 + outSlope: -10.4177265 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -1.1817055 + inSlope: -19.283407 + outSlope: -19.283407 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -2.149695 + inSlope: -36.74184 + outSlope: -50.232666 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -11.072787 + inSlope: -63.699223 + outSlope: -66.10492 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -15.5353775 + inSlope: 34.591022 + outSlope: 34.591022 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -11.965124 + inSlope: 16.453255 + outSlope: 17.06958 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -12.100162 + inSlope: -17.961145 + outSlope: -17.961145 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -11.5211935 + inSlope: 39.06322 + outSlope: 37.40465 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -10.225595 + inSlope: -44.158646 + outSlope: -41.932327 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -12.544556 + inSlope: -12.639085 + outSlope: -13.243253 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: -12.771122 + inSlope: -1.488609 + outSlope: -1.4851575 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -9.051767 + inSlope: 36.10764 + outSlope: 40.14856 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: -6.552894 + inSlope: -8.105521 + outSlope: -8.1603365 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: -17.47145 + inSlope: -227.259 + outSlope: -193.73584 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: -22.83821 + inSlope: -36.837364 + outSlope: -37.2698 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: -15.254967 + inSlope: 70.762535 + outSlope: 64.497314 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9000001 + value: -7.3548055 + inSlope: 58.093945 + outSlope: 60.6608 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: -0.6193774 + inSlope: 17.495546 + outSlope: 17.495579 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: 0.4065563 + inSlope: -0.440509 + outSlope: -0.48314393 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: 0.40401742 + inSlope: -0.361089 + outSlope: -0.38961738 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6000001 + value: -0.2525 + inSlope: -5.5822845 + outSlope: -5.3253894 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.766667 + value: -0.9966468 + inSlope: -0.80303264 + outSlope: -0.8035476 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.966667 + value: -0.95806676 + inSlope: 0.7069845 + outSlope: 0.6948684 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: -0.7902025 + inSlope: -0.4594645 + outSlope: -0.4594645 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -8.805537 + inSlope: -34.299744 + outSlope: -34.299744 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -9.981022 + inSlope: -50.472218 + outSlope: -50.472218 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -12.238041 + inSlope: -70.42614 + outSlope: -82.70473 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -24.951456 + inSlope: -73.548615 + outSlope: -75.94101 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -30.007946 + inSlope: 38.524414 + outSlope: 38.524414 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -26.002708 + inSlope: 18.925665 + outSlope: 19.53747 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -26.156532 + inSlope: -20.42599 + outSlope: -20.42599 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -25.494173 + inSlope: 44.970562 + outSlope: 43.323257 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -24.011906 + inSlope: -50.894768 + outSlope: -48.683 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -26.674175 + inSlope: -13.978215 + outSlope: -14.57996 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2666668 + value: -26.916922 + inSlope: -1.6845127 + outSlope: -1.6810519 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -22.609827 + inSlope: 44.72779 + outSlope: 48.716515 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: -19.52048 + inSlope: -10.270749 + outSlope: -10.325257 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: -32.11689 + inSlope: -243.12715 + outSlope: -209.66534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: -37.899616 + inSlope: -39.183807 + outSlope: -39.61512 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7333335 + value: -29.697992 + inSlope: 78.74899 + outSlope: 72.506935 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9000001 + value: -20.875103 + inSlope: 70.988106 + outSlope: 73.5135 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: -10.961681 + inSlope: 52.94024 + outSlope: 52.940334 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: -6.3420954 + inSlope: 10.322202 + outSlope: 10.310819 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: -6.8767695 + inSlope: -6.6527762 + outSlope: -6.6639004 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6000001 + value: -7.719113 + inSlope: -10.488205 + outSlope: -10.289026 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.766667 + value: -9.496448 + inSlope: -0.50531936 + outSlope: -0.5060147 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.966667 + value: -9.330579 + inSlope: 2.1175714 + outSlope: 2.108728 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: -8.805535 + inSlope: -1.4973168 + outSlope: -1.4973168 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.000017048413 + inSlope: 0.00016106611 + outSlope: 0.00016106611 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.000017048413 + inSlope: 0.00016106611 + outSlope: 0.00016106611 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2/mixamorig:RightHandIndex3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.000006107196 + inSlope: -0.00054964767 + outSlope: -0.00054964767 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.000006107196 + inSlope: -0.00054964767 + outSlope: -0.00054964767 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2/mixamorig:RightHandIndex3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.0000047989183 + inSlope: -0.00043190265 + outSlope: -0.00043190265 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.0000047989183 + inSlope: -0.00043190265 + outSlope: -0.00043190265 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandIndex1/mixamorig:RightHandIndex2/mixamorig:RightHandIndex3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 9.325085 + inSlope: 126.534 + outSlope: 126.534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 13.542551 + inSlope: 166.339 + outSlope: 166.339 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 20.407753 + inSlope: 183.98459 + outSlope: 181.90268 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 38.993565 + inSlope: 50.09813 + outSlope: 50.09813 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 41.5411 + inSlope: -22.646528 + outSlope: -22.629606 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 39.67719 + inSlope: 5.6492906 + outSlope: 5.6492906 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 40.282692 + inSlope: -0.7616616 + outSlope: -0.76194745 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 41.548965 + inSlope: 39.86068 + outSlope: 39.73013 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 44.329517 + inSlope: -37.342045 + outSlope: -37.164894 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 40.429455 + inSlope: -27.125786 + outSlope: -27.146639 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: 41.338562 + inSlope: 27.105097 + outSlope: 27.131401 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 41.560738 + inSlope: -22.65688 + outSlope: -22.736694 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: 39.5654 + inSlope: -15.057742 + outSlope: -15.057742 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 38.439304 + inSlope: 17.8133 + outSlope: 17.83157 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: 40.42946 + inSlope: 17.726719 + outSlope: 17.736507 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9000001 + value: 40.23076 + inSlope: -63.290848 + outSlope: -63.566154 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: 24.76851 + inSlope: -126.09106 + outSlope: -126.32782 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: 13.720781 + inSlope: -2.5604005 + outSlope: -2.5607579 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: 14.286359 + inSlope: -20.049314 + outSlope: -20.049314 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6000001 + value: 8.99526 + inSlope: 19.825426 + outSlope: 19.820322 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.766667 + value: 14.215247 + inSlope: 8.838102 + outSlope: 8.808981 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2000003 + value: 9.341454 + inSlope: -1.0030833 + outSlope: -1.003705 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 9.325085 + inSlope: 0.047464415 + outSlope: 0.047464415 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -13.169379 + inSlope: -0.66956514 + outSlope: -0.66956514 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -13.235334 + inSlope: -11.589374 + outSlope: -11.589374 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -13.994319 + inSlope: -38.990906 + outSlope: -47.337696 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -24.24334 + inSlope: -49.722054 + outSlope: -49.722054 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -26.507818 + inSlope: 12.045511 + outSlope: 12.126976 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -25.292715 + inSlope: 0.2613974 + outSlope: 0.2613974 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -25.459812 + inSlope: 0.44194224 + outSlope: 0.44231403 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -26.122568 + inSlope: -22.59126 + outSlope: -23.15626 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -27.70871 + inSlope: 22.746367 + outSlope: 23.532051 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -25.533062 + inSlope: 12.915643 + outSlope: 12.80811 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: -25.980642 + inSlope: -14.155708 + outSlope: -14.035452 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -26.092083 + inSlope: 11.5409565 + outSlope: 11.142441 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: -25.134207 + inSlope: 6.4924045 + outSlope: 6.4924045 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: -24.679976 + inSlope: -7.94157 + outSlope: -7.8530636 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: -25.533049 + inSlope: -5.199041 + outSlope: -5.1279244 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9000001 + value: -24.297537 + inSlope: 47.705544 + outSlope: 46.83721 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: -16.26573 + inSlope: 41.529617 + outSlope: 40.10642 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: -12.254661 + inSlope: 1.5942379 + outSlope: 1.5933462 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: -12.084267 + inSlope: 6.2920747 + outSlope: 6.2920747 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6000001 + value: -11.238263 + inSlope: 1.8946404 + outSlope: 1.9626551 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.766667 + value: -12.180018 + inSlope: -4.301506 + outSlope: -4.370478 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2000003 + value: -13.119491 + inSlope: -0.68728584 + outSlope: -0.6863243 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: -13.169354 + inSlope: -0.1744725 + outSlope: -0.1744725 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -4.1105633 + inSlope: -51.710068 + outSlope: -51.710068 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -5.8442025 + inSlope: -70.98313 + outSlope: -70.98313 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -8.890453 + inSlope: -86.00406 + outSlope: -92.12454 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -21.189068 + inSlope: -53.47162 + outSlope: -53.47162 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -23.692638 + inSlope: 20.332327 + outSlope: 20.405647 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -22.000402 + inSlope: -4.3662505 + outSlope: -4.3662505 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -22.522617 + inSlope: 0.71042067 + outSlope: 0.7105635 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -23.646343 + inSlope: -37.741806 + outSlope: -38.254734 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -26.273035 + inSlope: 36.80327 + outSlope: 37.522896 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -22.634628 + inSlope: 23.104958 + outSlope: 23.009027 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: -23.432062 + inSlope: -24.592604 + outSlope: -24.485329 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -23.628866 + inSlope: 20.285809 + outSlope: 19.930252 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: -21.891397 + inSlope: 12.610269 + outSlope: 12.610269 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: -20.91849 + inSlope: -14.814646 + outSlope: -14.737579 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: -22.634651 + inSlope: -12.21831 + outSlope: -12.158887 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9000001 + value: -20.7245 + inSlope: 81.62239 + outSlope: 80.8524 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: -5.769737 + inSlope: 94.88865 + outSlope: 93.888824 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: 2.672717 + inSlope: 2.673474 + outSlope: 2.6730673 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: 0.6346257 + inSlope: -8.6883135 + outSlope: -8.6883135 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6000001 + value: -1.9476346 + inSlope: -35.14636 + outSlope: -35.139706 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.766667 + value: -6.9140863 + inSlope: -8.676294 + outSlope: -8.722133 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2000003 + value: -4.17759 + inSlope: 1.1973544 + outSlope: 1.1966634 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: -4.1105566 + inSlope: 0.19035119 + outSlope: 0.19035119 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 39.044792 + inSlope: 109.09492 + outSlope: 109.09492 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 42.67903 + inSlope: 138.10776 + outSlope: 138.10776 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 48.25231 + inSlope: 138.7278 + outSlope: 137.95709 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 55.85607 + inSlope: -14.277693 + outSlope: -14.288253 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 55.045475 + inSlope: 10.102043 + outSlope: 10.109136 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 54.714764 + inSlope: -17.404057 + outSlope: -17.411121 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 56.906696 + inSlope: -4.3553433 + outSlope: -4.3552213 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: 55.2945 + inSlope: -0.6628991 + outSlope: -0.6627845 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: 55.16199 + inSlope: -7.697467 + outSlope: -7.694662 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: 52.9164 + inSlope: -29.476425 + outSlope: -29.480526 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 56.11876 + inSlope: 48.58395 + outSlope: 48.55711 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: 55.29445 + inSlope: -28.899544 + outSlope: -28.892672 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: 45.005074 + inSlope: -139.6268 + outSlope: -139.61429 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: 27.294699 + inSlope: -199.58394 + outSlope: -199.41006 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: 9.583358 + inSlope: -35.209133 + outSlope: -35.209072 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3000002 + value: 11.029962 + inSlope: 29.015362 + outSlope: 29.006737 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5333335 + value: 29.208948 + inSlope: 91.0526 + outSlope: 91.0526 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.766667 + value: 44.192795 + inSlope: 8.44672 + outSlope: 8.446771 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0333335 + value: 40.842495 + inSlope: -15.135342 + outSlope: -15.135768 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 39.04464 + inSlope: -3.0211644 + outSlope: -3.0211644 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.5201939 + inSlope: -12.872644 + outSlope: -12.872644 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.9906999 + inSlope: -19.578312 + outSlope: -19.578312 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -1.8654627 + inSlope: -25.55837 + outSlope: -33.169106 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -2.5200639 + inSlope: 10.716038 + outSlope: 10.586991 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -2.0972412 + inSlope: -4.0138555 + outSlope: -3.926331 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -2.0315335 + inSlope: 5.044361 + outSlope: 4.9141407 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -2.7317784 + inSlope: 1.4827281 + outSlope: 1.4854039 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -2.2056832 + inSlope: 0.18417121 + outSlope: 0.18397377 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: -2.1648407 + inSlope: 2.2938077 + outSlope: 2.3414607 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: -1.5308427 + inSlope: 7.4621434 + outSlope: 7.3818874 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: -2.4721713 + inSlope: -17.221338 + outSlope: -17.568731 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: -2.2056832 + inSlope: 9.625304 + outSlope: 9.72553 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: 0.5796974 + inSlope: 22.096237 + outSlope: 23.152716 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: 2.384046 + inSlope: 4.763096 + outSlope: 3.7381554 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: 2.387454 + inSlope: -1.9679923 + outSlope: -1.9679887 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3000002 + value: 2.3511906 + inSlope: -2.029937 + outSlope: -2.1236227 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5333335 + value: 0.46126693 + inSlope: -13.25826 + outSlope: -13.25826 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.766667 + value: -1.2863472 + inSlope: -0.753339 + outSlope: -0.7559887 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0333335 + value: -0.7565003 + inSlope: 2.0180519 + outSlope: 2.007142 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: -0.51630276 + inSlope: 0.41556066 + outSlope: 0.41556066 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -10.573537 + inSlope: -34.594143 + outSlope: -34.594143 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -11.761135 + inSlope: -49.092747 + outSlope: -49.092747 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -13.883074 + inSlope: -59.879433 + outSlope: -66.78557 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -18.209566 + inSlope: 4.754642 + outSlope: 4.6151924 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -17.883226 + inSlope: -5.166607 + outSlope: -5.081118 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -17.759174 + inSlope: 7.446554 + outSlope: 7.321063 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -18.76126 + inSlope: 2.083454 + outSlope: 2.0857718 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0666667 + value: -18.013826 + inSlope: 0.2929974 + outSlope: 0.29280278 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: -17.954329 + inSlope: 3.357679 + outSlope: 3.403415 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: -17.00939 + inSlope: 11.544053 + outSlope: 11.467796 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: -18.382118 + inSlope: -23.766691 + outSlope: -24.10497 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: -18.013817 + inSlope: 13.176318 + outSlope: 13.273374 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: -13.77056 + inSlope: 44.531517 + outSlope: 45.45927 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: -8.620744 + inSlope: 48.625904 + outSlope: 48.14147 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: -4.056204 + inSlope: 11.255632 + outSlope: 11.255612 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3000002 + value: -4.533805 + inSlope: -10.362695 + outSlope: -10.399258 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5333335 + value: -8.719373 + inSlope: -20.257843 + outSlope: -20.257843 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.766667 + value: -12.163236 + inSlope: -1.7892387 + outSlope: -1.7914904 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0333335 + value: -11.099551 + inSlope: 4.4524136 + outSlope: 4.4430833 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: -10.573447 + inSlope: 0.8606626 + outSlope: 0.8606626 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.00029683553 + inSlope: 0.00062266795 + outSlope: 0.00062266795 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.00029683553 + inSlope: 0.00062266795 + outSlope: 0.00062266795 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2/mixamorig:RightHandMiddle3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.33525428 + inSlope: 0.000308454 + outSlope: 0.000308454 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.33525428 + inSlope: 0.000308454 + outSlope: 0.000308454 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2/mixamorig:RightHandMiddle3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.05153477 + inSlope: 0.0005253777 + outSlope: 0.0005253777 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.05153477 + inSlope: 0.0005253777 + outSlope: 0.0005253777 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandMiddle1/mixamorig:RightHandMiddle2/mixamorig:RightHandMiddle3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 32.129574 + inSlope: 97.90088 + outSlope: 97.90088 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 35.370125 + inSlope: 112.48283 + outSlope: 112.48283 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 39.606968 + inSlope: 85.08601 + outSlope: 81.52425 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 36.296574 + inSlope: -46.90015 + outSlope: -46.89317 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 32.901943 + inSlope: -15.976783 + outSlope: -15.99054 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 34.437107 + inSlope: 15.697342 + outSlope: 15.704891 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 34.848457 + inSlope: 40.899227 + outSlope: 41.110462 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 38.795856 + inSlope: 17.761272 + outSlope: 17.73915 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 34.79281 + inSlope: -58.094578 + outSlope: -57.845028 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: 33.207832 + inSlope: -11.514349 + outSlope: -11.51952 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 34.848457 + inSlope: 12.204105 + outSlope: 12.198255 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: 35.127575 + inSlope: 8.351553 + outSlope: 8.348323 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2333333 + value: 34.349594 + inSlope: 6.867142 + outSlope: 6.864804 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: 33.7173 + inSlope: -23.01662 + outSlope: -23.016638 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 30.732626 + inSlope: 2.3798108 + outSlope: 2.3797848 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: 30.389648 + inSlope: 4.3296437 + outSlope: 4.3306694 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: 32.52901 + inSlope: 62.93221 + outSlope: 62.77941 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: 36.082813 + inSlope: -13.290822 + outSlope: -13.294343 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: 19.818455 + inSlope: -125.246346 + outSlope: -125.24653 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: 9.615807 + inSlope: -2.6464717 + outSlope: -2.646468 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3666668 + value: 14.870515 + inSlope: 71.20371 + outSlope: 71.17352 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5666668 + value: 27.324846 + inSlope: 69.03735 + outSlope: 69.05724 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7333336 + value: 34.3899 + inSlope: 6.603192 + outSlope: 6.597464 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1333334 + value: 31.427113 + inSlope: 7.6716356 + outSlope: 7.681444 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 32.129574 + inSlope: -1.1979101 + outSlope: -1.1979101 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -28.562708 + inSlope: -39.702354 + outSlope: -39.702354 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -29.980375 + inSlope: -62.671677 + outSlope: -62.671677 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -32.77669 + inSlope: -71.53988 + outSlope: -79.95293 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -32.981937 + inSlope: 19.908392 + outSlope: 20.009624 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -31.545572 + inSlope: 6.695352 + outSlope: 6.633595 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -32.15944 + inSlope: -7.4700146 + outSlope: -7.439394 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -32.35317 + inSlope: -21.00305 + outSlope: -20.196802 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -34.640675 + inSlope: -12.647141 + outSlope: -12.713361 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -32.328304 + inSlope: 27.629595 + outSlope: 28.64099 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -31.583643 + inSlope: 5.200134 + outSlope: 5.1811743 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -32.35319 + inSlope: -6.1422215 + outSlope: -6.165274 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: -32.48903 + inSlope: -4.1555777 + outSlope: -4.1665654 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2333333 + value: -32.099804 + inSlope: -3.4388068 + outSlope: -3.4459288 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: -31.806946 + inSlope: 10.327968 + outSlope: 10.327975 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: -30.533503 + inSlope: -0.8707697 + outSlope: -0.87010866 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: -30.399391 + inSlope: -1.6663171 + outSlope: -1.6613374 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: -31.253342 + inSlope: -28.513618 + outSlope: -29.086754 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: -32.99433 + inSlope: 7.9112988 + outSlope: 7.8888664 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: -26.310015 + inSlope: 30.506306 + outSlope: 30.50635 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: -23.387043 + inSlope: 0.9539575 + outSlope: 0.9539561 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3666668 + value: -25.348476 + inSlope: -22.448696 + outSlope: -22.553152 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5666668 + value: -28.809761 + inSlope: -13.631169 + outSlope: -13.524575 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7333336 + value: -29.809444 + inSlope: 2.907187 + outSlope: 2.9354963 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1333334 + value: -28.294395 + inSlope: -2.855359 + outSlope: -2.8116982 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: -28.562693 + inSlope: 0.56570995 + outSlope: 0.56570995 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -9.507052 + inSlope: -99.62651 + outSlope: -99.62651 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -12.902267 + inSlope: -134.82147 + outSlope: -134.82147 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -18.535627 + inSlope: -144.25752 + outSlope: -151.47621 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -24.952072 + inSlope: 6.843383 + outSlope: 6.9749455 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -23.90797 + inSlope: 13.390876 + outSlope: 13.340089 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -24.32085 + inSlope: -12.129075 + outSlope: -12.102199 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -24.649576 + inSlope: -42.718803 + outSlope: -42.045586 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -29.02775 + inSlope: -22.062159 + outSlope: -22.119778 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -24.596014 + inSlope: 58.480415 + outSlope: 59.314278 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -23.00942 + inSlope: 11.337023 + outSlope: 11.320992 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: -24.649612 + inSlope: -12.604077 + outSlope: -12.623288 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: -24.943913 + inSlope: -8.895147 + outSlope: -8.904677 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2333333 + value: -24.144482 + inSlope: -6.923533 + outSlope: -6.929417 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: -23.503319 + inSlope: 22.558079 + outSlope: 22.558096 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: -20.646008 + inSlope: -2.2344136 + outSlope: -2.233744 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: -20.330261 + inSlope: -3.915253 + outSlope: -3.9118161 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: -22.281265 + inSlope: -61.879753 + outSlope: -62.34236 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8666668 + value: -26.561321 + inSlope: 2.674598 + outSlope: 2.6448886 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: -15.913124 + inSlope: 68.1461 + outSlope: 68.1462 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2 + value: -11.186052 + inSlope: 1.2582448 + outSlope: 1.258243 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3666668 + value: -11.190655 + inSlope: -7.6674232 + outSlope: -7.8481846 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5666668 + value: -9.973984 + inSlope: -7.017744 + outSlope: -6.884579 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7333336 + value: -11.253459 + inSlope: 3.4963114 + outSlope: 3.523258 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1333334 + value: -8.940204 + inSlope: -6.7713356 + outSlope: -6.737779 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: -9.507041 + inSlope: 0.6011437 + outSlope: 0.6011437 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 24.23517 + inSlope: 134.77597 + outSlope: 134.77597 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 28.728344 + inSlope: 184.45117 + outSlope: 184.45117 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 36.536354 + inSlope: 224.46097 + outSlope: 223.70134 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 62.73678 + inSlope: 139.85542 + outSlope: 139.37436 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: 68.12124 + inSlope: -19.244616 + outSlope: -19.237577 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: 67.91145 + inSlope: 22.808306 + outSlope: 22.782434 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 67.955986 + inSlope: 10.717275 + outSlope: 10.722142 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 72.3432 + inSlope: 5.2377324 + outSlope: 5.240479 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 70.85252 + inSlope: -51.056217 + outSlope: -51.056217 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 68.62835 + inSlope: -6.2440114 + outSlope: -6.248768 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: 68.72864 + inSlope: -0.9228515 + outSlope: -0.92262244 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: 66.97034 + inSlope: -30.402596 + outSlope: -30.41604 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 63.89658 + inSlope: 28.713894 + outSlope: 28.751823 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: 68.47681 + inSlope: 9.378205 + outSlope: 9.376284 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: 60.60917 + inSlope: -141.22502 + outSlope: -141.16336 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: 43.02689 + inSlope: -179.31367 + outSlope: -179.19208 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: 28.529837 + inSlope: -28.97385 + outSlope: -28.97186 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: 26.353632 + inSlope: -29.021368 + outSlope: -29.021368 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5000002 + value: 18.128527 + inSlope: -53.93409 + outSlope: -53.934166 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: 18.4154 + inSlope: 47.568752 + outSlope: 47.568684 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8333335 + value: 21.896507 + inSlope: -10.8845625 + outSlope: -10.883715 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1333334 + value: 23.043856 + inSlope: 17.92494 + outSlope: 17.925077 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 24.235151 + inSlope: -2.2279067 + outSlope: -2.2279067 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.6297872 + inSlope: 3.1136153 + outSlope: 3.1136153 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.7079878 + inSlope: 0.67746156 + outSlope: 0.67746156 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 0.63000786 + inSlope: -9.161492 + outSlope: -14.687412 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -3.8085153 + inSlope: -79.25678 + outSlope: -86.21827 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -6.7625155 + inSlope: 12.454987 + outSlope: 12.587662 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -6.62446 + inSlope: -16.186424 + outSlope: -16.63201 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -6.641035 + inSlope: -7.569607 + outSlope: -7.4758964 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -10.490488 + inSlope: -6.006561 + outSlope: -5.963774 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -8.958945 + inSlope: 44.870525 + outSlope: 44.870525 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -7.1147037 + inSlope: 4.503172 + outSlope: 4.4228244 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -7.188495 + inSlope: 0.67805624 + outSlope: 0.67845565 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: -6.006303 + inSlope: 16.842508 + outSlope: 16.581911 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: -4.37821 + inSlope: -14.476767 + outSlope: -13.822733 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: -7.00123 + inSlope: -6.9915643 + outSlope: -7.030265 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: -3.5019805 + inSlope: 32.24757 + outSlope: 36.38566 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: -0.6237123 + inSlope: 7.330438 + outSlope: 6.2469726 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: -0.47278118 + inSlope: -1.249975 + outSlope: -1.2710661 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: -0.32550943 + inSlope: 2.5940318 + outSlope: 2.5940318 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5000002 + value: -0.00754685 + inSlope: 0.11991307 + outSlope: 0.11991324 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: 0.35777062 + inSlope: 2.7938657 + outSlope: 2.7938616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8333335 + value: 0.54213375 + inSlope: -0.47111475 + outSlope: -0.4803891 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1333334 + value: 0.58743143 + inSlope: 0.6201316 + outSlope: 0.639746 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 0.6297985 + inSlope: -0.07541029 + outSlope: -0.07541029 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -3.5224485 + inSlope: -27.171677 + outSlope: -27.171677 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -4.4375873 + inSlope: -39.05678 + outSlope: -39.05678 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -6.1598196 + inSlope: -52.720726 + outSlope: -56.863186 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -15.0248995 + inSlope: -100.55859 + outSlope: -107.448265 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.36666667 + value: -18.784367 + inSlope: 15.967874 + outSlope: 16.099522 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5 + value: -18.609823 + inSlope: -20.37848 + outSlope: -20.820602 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -18.628716 + inSlope: -9.566458 + outSlope: -9.473821 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -23.293892 + inSlope: -6.9850736 + outSlope: -6.941643 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -21.480936 + inSlope: 54.358036 + outSlope: 54.358036 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -19.227434 + inSlope: 5.6518655 + outSlope: 5.572643 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2 + value: -19.319359 + inSlope: 0.8474186 + outSlope: 0.84812146 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: -17.81123 + inSlope: 22.506804 + outSlope: 22.249619 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: -15.607074 + inSlope: -19.805172 + outSlope: -19.161123 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: -19.085003 + inSlope: -8.791209 + outSlope: -8.829508 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: -14.450653 + inSlope: 57.312668 + outSlope: 61.266087 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: -8.209568 + inSlope: 46.572468 + outSlope: 45.79149 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: -4.5542173 + inSlope: 7.29877 + outSlope: 7.291949 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: -4.1259017 + inSlope: 4.254754 + outSlope: 4.254754 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5000002 + value: -2.7095652 + inSlope: 10.8784 + outSlope: 10.878415 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.6666667 + value: -2.496792 + inSlope: -7.592723 + outSlope: -7.5929866 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.8333335 + value: -3.0432177 + inSlope: 2.23388 + outSlope: 2.2324088 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.1333334 + value: -3.2772079 + inSlope: -3.6987166 + outSlope: -3.6936727 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: -3.5224495 + inSlope: 0.46102512 + outSlope: 0.46102512 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.0000059202725 + inSlope: 0.0005328245 + outSlope: 0.0005328245 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.0000059202725 + inSlope: 0.0005328245 + outSlope: 0.0005328245 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2/mixamorig:RightHandPinky3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.000016038264 + inSlope: -0.00007015276 + outSlope: -0.00007015276 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: 0.000016038264 + inSlope: -0.00007015276 + outSlope: -0.00007015276 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2/mixamorig:RightHandPinky3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.000004100829 + inSlope: 0.00036907458 + outSlope: 0.00036907458 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.033333335 + value: -0.000004100829 + inSlope: 0.00036907458 + outSlope: 0.00036907458 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: Armature.001/mixamorig:Hips/mixamorig:Spine/mixamorig:Spine1/mixamorig:Spine2/mixamorig:RightShoulder/mixamorig:RightArm/mixamorig:RightForeArm/mixamorig:RightHand/mixamorig:RightHandPinky1/mixamorig:RightHandPinky2/mixamorig:RightHandPinky3 + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 10.556947 + inSlope: -10.326504 + outSlope: -10.326504 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 9.936112 + inSlope: 8.208804 + outSlope: 8.249272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 10.765687 + inSlope: -2.844171 + outSlope: -2.859235 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 8.123921 + inSlope: -75.95832 + outSlope: -75.9583 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 1.9504962 + inSlope: -72.046074 + outSlope: -72.180786 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -2.0704038 + inSlope: 16.853937 + outSlope: 16.883234 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.16655172 + inSlope: 30.088287 + outSlope: 30.08828 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -0.4389674 + inSlope: -68.85901 + outSlope: -68.89378 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -5.3170233 + inSlope: -35.59678 + outSlope: -35.612988 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -5.789138 + inSlope: -42.73145 + outSlope: -42.758797 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -10.957139 + inSlope: -79.8911 + outSlope: -79.89117 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -15.178287 + inSlope: -53.39343 + outSlope: -53.39343 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -18.817633 + inSlope: -48.21462 + outSlope: -46.7157 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: -22.136011 + inSlope: 3.4940994 + outSlope: 3.5146227 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: -17.77407 + inSlope: 25.23868 + outSlope: 25.224375 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: -15.876296 + inSlope: 12.070281 + outSlope: 12.100036 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -15.22169 + inSlope: 19.963335 + outSlope: 20.011114 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: -14.196901 + inSlope: 15.669381 + outSlope: 15.669437 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: -14.171131 + inSlope: -17.491282 + outSlope: -17.257275 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: -17.665375 + inSlope: -31.100895 + outSlope: -31.100266 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: -17.690943 + inSlope: -23.962149 + outSlope: -24.218803 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: -22.238022 + inSlope: 9.108697 + outSlope: 9.442059 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: -2.8039644 + inSlope: 96.72697 + outSlope: 96.9319 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3000002 + value: 11.089079 + inSlope: 15.871932 + outSlope: 15.804027 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5666668 + value: 13.452829 + inSlope: 5.9932785 + outSlope: 5.928623 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0666668 + value: 12.740025 + inSlope: -1.8881149 + outSlope: -1.8749286 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 10.557764 + inSlope: -6.2437754 + outSlope: -6.2437754 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: Armature.001/mixamorig:Hips/mixamorig:LeftUpLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -15.05939 + inSlope: 31.615347 + outSlope: 31.615347 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -12.405243 + inSlope: 41.076504 + outSlope: 41.062767 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -11.263672 + inSlope: 22.445065 + outSlope: 22.442324 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -11.378227 + inSlope: -23.274881 + outSlope: -23.274876 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -13.932546 + inSlope: -44.980553 + outSlope: -44.637375 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -20.18179 + inSlope: -5.759868 + outSlope: -5.6777577 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -18.803396 + inSlope: 45.468925 + outSlope: 45.46891 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -13.403871 + inSlope: 40.59908 + outSlope: 40.541656 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -10.950559 + inSlope: 26.727549 + outSlope: 26.699291 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -10.356211 + inSlope: -12.3834915 + outSlope: -12.299441 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -13.129474 + inSlope: -18.027048 + outSlope: -18.027063 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -11.758355 + inSlope: 84.411095 + outSlope: 84.411095 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -2.0470867 + inSlope: 138.18047 + outSlope: 139.20337 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: 7.4169602 + inSlope: 9.487546 + outSlope: 9.4771 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: 6.5549774 + inSlope: 19.904705 + outSlope: 19.972683 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: 10.1074095 + inSlope: 63.421227 + outSlope: 63.438423 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 14.409629 + inSlope: 9.380659 + outSlope: 9.2773285 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: 13.455649 + inSlope: -33.51156 + outSlope: -33.510307 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 12.136115 + inSlope: -25.568558 + outSlope: -25.740559 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 12.10678 + inSlope: 30.42734 + outSlope: 30.427395 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 15.751001 + inSlope: 43.306343 + outSlope: 43.20249 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: 14.734243 + inSlope: -36.267372 + outSlope: -36.10593 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: 0.18066847 + inSlope: -73.14922 + outSlope: -72.991646 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3000002 + value: -16.313828 + inSlope: -53.503807 + outSlope: -53.53312 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5666668 + value: -19.469284 + inSlope: 16.5782 + outSlope: 16.616364 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0666668 + value: -15.5672865 + inSlope: 5.379427 + outSlope: 5.385994 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: -15.059274 + inSlope: -0.8865345 + outSlope: -0.8865345 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: Armature.001/mixamorig:Hips/mixamorig:LeftUpLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -169.89062 + inSlope: 7.715835 + outSlope: 7.715835 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -169.30005 + inSlope: 10.309295 + outSlope: 10.273588 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -168.93892 + inSlope: 7.293547 + outSlope: 7.2866826 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -168.97014 + inSlope: -8.638001 + outSlope: -8.638 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -169.69453 + inSlope: -12.178343 + outSlope: -10.918807 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -173.55266 + inSlope: -16.99745 + outSlope: -16.972506 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -175.18161 + inSlope: -14.765168 + outSlope: -14.765163 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -175.65685 + inSlope: -7.665251 + outSlope: -7.3931127 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -176.42253 + inSlope: -5.8440404 + outSlope: -5.7486014 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -176.45758 + inSlope: -21.64034 + outSlope: -21.598417 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -179.13147 + inSlope: -11.758108 + outSlope: -11.758119 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -178.33073 + inSlope: -2.2302248 + outSlope: -2.2302248 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -179.80525 + inSlope: -35.628666 + outSlope: -37.777596 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: 174.52928 + inSlope: -24.086157 + outSlope: -24.07905 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3000001 + value: 172.36908 + inSlope: -2.871093 + outSlope: -3.0303948 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: 172.56055 + inSlope: 4.9658194 + outSlope: 4.890294 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 173.5885 + inSlope: 53.63805 + outSlope: 53.6461 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: 176.31047 + inSlope: 108.12304 + outSlope: 108.12343 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: -179.18105 + inSlope: 95.41086 + outSlope: 95.479355 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: -176.53194 + inSlope: 28.896078 + outSlope: 28.89613 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: -174.21985 + inSlope: 32.98648 + outSlope: 32.816853 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: -169.91402 + inSlope: 25.971682 + outSlope: 25.78662 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: -168.01814 + inSlope: -17.780163 + outSlope: -17.098454 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3000002 + value: -171.72171 + inSlope: -12.646244 + outSlope: -12.731954 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5666668 + value: -172.27542 + inSlope: 5.7477384 + outSlope: 5.8216553 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0666668 + value: -170.5002 + inSlope: 3.733612 + outSlope: 3.7417033 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: -169.89058 + inSlope: 0.9510041 + outSlope: 0.9510041 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: Armature.001/mixamorig:Hips/mixamorig:LeftUpLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -12.8256445 + inSlope: 0.4006147 + outSlope: 0.4006147 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -12.393192 + inSlope: 38.376785 + outSlope: 38.37558 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -10.253618 + inSlope: 3.9401429 + outSlope: 3.9401438 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -12.130851 + inSlope: -83.78801 + outSlope: -83.78801 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -15.840222 + inSlope: -177.17679 + outSlope: -177.1767 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -23.945887 + inSlope: -228.77011 + outSlope: -227.12065 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -51.245132 + inSlope: -21.921156 + outSlope: -21.92322 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -44.597244 + inSlope: 136.04852 + outSlope: 136.08629 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -36.48106 + inSlope: 60.2928 + outSlope: 60.2928 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -35.396748 + inSlope: 38.33834 + outSlope: 38.220375 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -33.01779 + inSlope: 80.178154 + outSlope: 80.1783 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -30.035929 + inSlope: 69.34663 + outSlope: 69.34788 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -28.425945 + inSlope: 65.39984 + outSlope: 65.39984 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -25.69899 + inSlope: 43.603325 + outSlope: 43.603405 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -25.530436 + inSlope: 19.291496 + outSlope: 19.302345 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -22.83356 + inSlope: 8.703115 + outSlope: 8.70279 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -23.46769 + inSlope: 11.474532 + outSlope: 11.474532 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: -28.377012 + inSlope: -59.30971 + outSlope: -59.353092 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -32.483524 + inSlope: -41.04616 + outSlope: -41.04859 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: -33.246853 + inSlope: -89.08687 + outSlope: -89.085815 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: -38.42352 + inSlope: -138.4392 + outSlope: -138.4392 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: -42.460777 + inSlope: -148.52774 + outSlope: -148.5272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: -48.338696 + inSlope: -114.48033 + outSlope: -114.32813 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: -51.09528 + inSlope: -61.04679 + outSlope: -61.038994 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: -61.526054 + inSlope: -73.499435 + outSlope: -73.469986 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: -58.067287 + inSlope: 101.21095 + outSlope: 101.23713 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: -38.8653 + inSlope: 155.66765 + outSlope: 155.42085 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.266667 + value: -17.845438 + inSlope: 33.473186 + outSlope: 33.46893 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5333335 + value: -14.88186 + inSlope: 22.772867 + outSlope: 22.77099 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9 + value: -11.134881 + inSlope: 8.544065 + outSlope: 8.5440035 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2333336 + value: -11.347579 + inSlope: -16.739868 + outSlope: -16.743208 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: -12.823852 + inSlope: -10.157814 + outSlope: -10.157814 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: Armature.001/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1.492397 + inSlope: 1.9502609 + outSlope: 1.9502609 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 1.5257885 + inSlope: -6.464134 + outSlope: -6.476547 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: 1.128278 + inSlope: -8.890449 + outSlope: -8.8904505 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 0.9274472 + inSlope: -3.449954 + outSlope: -3.449954 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 0.9003842 + inSlope: 8.041199 + outSlope: 8.041195 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: 1.4969587 + inSlope: 20.466578 + outSlope: 24.92965 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 4.4847274 + inSlope: 3.1800625 + outSlope: 3.1444612 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 2.679171 + inSlope: -23.228586 + outSlope: -24.254488 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 1.63848 + inSlope: -11.532501 + outSlope: -11.532501 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -0.01900987 + inSlope: -45.239075 + outSlope: -45.50556 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -1.9315659 + inSlope: -80.66278 + outSlope: -80.662926 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -5.3946633 + inSlope: -19.163393 + outSlope: -19.163359 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -3.3797104 + inSlope: 57.769775 + outSlope: 57.769775 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -1.5166761 + inSlope: 32.302364 + outSlope: 32.30242 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -1.1774753 + inSlope: 10.599102 + outSlope: 10.55787 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -0.7565782 + inSlope: -1.5316268 + outSlope: -1.5304132 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -0.8582835 + inSlope: -2.054155 + outSlope: -2.054155 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: -1.8184189 + inSlope: -6.5209937 + outSlope: -6.2169642 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -2.1666615 + inSlope: 4.526597 + outSlope: 4.50346 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: -1.7464293 + inSlope: -2.533726 + outSlope: -2.533735 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: -2.367529 + inSlope: 17.113111 + outSlope: 17.113111 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: -0.47579885 + inSlope: 67.12372 + outSlope: 67.123474 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 2.1015117 + inSlope: 49.429184 + outSlope: 50.682266 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 2.079651 + inSlope: -7.9987516 + outSlope: -8.21732 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: 2.0745146 + inSlope: -1.459529 + outSlope: -1.7150735 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: 2.2981672 + inSlope: -0.99967027 + outSlope: -0.9467761 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: 1.8773311 + inSlope: -7.582199 + outSlope: -7.264885 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.266667 + value: 0.9128071 + inSlope: -0.7133619 + outSlope: -0.71578103 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5333335 + value: 0.61718607 + inSlope: -1.6757424 + outSlope: -1.6721579 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9 + value: 0.66280675 + inSlope: 0.77320015 + outSlope: 0.77361524 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2333336 + value: 1.2460017 + inSlope: 3.1128416 + outSlope: 3.095415 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 1.4922488 + inSlope: 1.8617195 + outSlope: 1.8617195 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: Armature.001/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -5.0331297 + inSlope: -0.5588007 + outSlope: -0.5588007 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -5.030753 + inSlope: 1.9737195 + outSlope: 2.0001123 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.10000001 + value: -4.924559 + inSlope: 2.747826 + outSlope: 2.7478268 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -4.8357544 + inSlope: 2.0352175 + outSlope: 2.0352175 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -4.793488 + inSlope: -4.03606 + outSlope: -4.036058 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.20000002 + value: -5.146931 + inSlope: -21.119448 + outSlope: -25.539484 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -7.703222 + inSlope: -2.6336644 + outSlope: -2.5974622 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -6.402734 + inSlope: 13.270991 + outSlope: 14.408957 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -5.92529 + inSlope: 4.2035155 + outSlope: 4.2035155 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -4.943518 + inSlope: 32.933174 + outSlope: 33.223186 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -3.4990406 + inSlope: 55.036137 + outSlope: 55.036236 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -1.2819687 + inSlope: 7.373346 + outSlope: 7.373333 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -2.8116713 + inSlope: -33.38785 + outSlope: -33.38785 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -3.5280719 + inSlope: -12.034525 + outSlope: -12.034547 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -3.682737 + inSlope: -5.619705 + outSlope: -5.566469 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9333334 + value: -4.0262084 + inSlope: -0.2926969 + outSlope: -0.29749528 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -4.109711 + inSlope: 1.9765642 + outSlope: 1.9765642 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: -3.2577715 + inSlope: 6.00507 + outSlope: 5.692511 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -3.0226104 + inSlope: -2.4665725 + outSlope: -2.4392374 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: -3.2444088 + inSlope: -1.3312949 + outSlope: -1.3312997 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: -3.0693479 + inSlope: -22.383593 + outSlope: -22.383593 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: -4.880242 + inSlope: -60.23462 + outSlope: -60.2344 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: -7.0829043 + inSlope: -34.390938 + outSlope: -35.710945 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: -6.1302323 + inSlope: 15.820263 + outSlope: 16.023512 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: -5.425148 + inSlope: 6.1205277 + outSlope: 6.359575 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: -5.7266827 + inSlope: -4.0361376 + outSlope: -4.0749373 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: -6.292666 + inSlope: 5.058567 + outSlope: 4.7033277 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.266667 + value: -4.7851615 + inSlope: -0.56617486 + outSlope: -0.5700285 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5333335 + value: -4.759831 + inSlope: 0.13566078 + outSlope: 0.12400588 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9 + value: -4.7947373 + inSlope: -0.27566874 + outSlope: -0.27645624 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2333336 + value: -4.9646525 + inSlope: -0.882 + outSlope: -0.84344465 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: -5.0330997 + inSlope: -0.5821758 + outSlope: -0.5821758 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: Armature.001/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 77.79984 + inSlope: -1.2871169 + outSlope: -1.2871169 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: 77.54927 + inSlope: -15.708388 + outSlope: -15.787811 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 79.41639 + inSlope: 91.06911 + outSlope: 91.07493 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: 87.7316 + inSlope: 87.97438 + outSlope: -56.40969 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 80.194214 + inSlope: 23.165848 + outSlope: 24.230349 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 83.9907 + inSlope: 116.87497 + outSlope: 117.36341 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 89.40225 + inSlope: -53.2809 + outSlope: -106.7981 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 77.78987 + inSlope: -224.09708 + outSlope: -224.09708 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 61.533295 + inSlope: -242.2355 + outSlope: -242.09496 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 53.717674 + inSlope: -205.33673 + outSlope: -205.33636 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 46.250698 + inSlope: -247.75076 + outSlope: -247.75076 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 39.021626 + inSlope: -146.75284 + outSlope: -146.75311 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 36.765614 + inSlope: -73.959 + outSlope: -73.96024 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 34.10757 + inSlope: -57.158726 + outSlope: -57.729397 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 33.997578 + inSlope: 50.457363 + outSlope: 50.45587 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 40.5678 + inSlope: 135.52774 + outSlope: 135.47546 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333334 + value: 50.55077 + inSlope: 13.14594 + outSlope: 13.145955 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2333333 + value: 45.978218 + inSlope: -60.170574 + outSlope: -60.278793 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: 38.148087 + inSlope: -0.056030247 + outSlope: 0.25955224 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 39.884743 + inSlope: 39.054718 + outSlope: 39.055607 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: 41.326267 + inSlope: 224.4676 + outSlope: 224.46704 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 54.256397 + inSlope: 276.5862 + outSlope: 276.5862 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 61.18703 + inSlope: 207.00287 + outSlope: 207.00214 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 68.54639 + inSlope: 224.3979 + outSlope: 224.26276 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 81.56378 + inSlope: 136.69615 + outSlope: 137.70277 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: 85.31671 + inSlope: 105.3892 + outSlope: 102.52158 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: 89.49139 + inSlope: -31.364223 + outSlope: -33.87992 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: 84.46359 + inSlope: -45.38207 + outSlope: -45.298588 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3000002 + value: 80.206116 + inSlope: 8.463396 + outSlope: 8.461534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5666668 + value: 78.605 + inSlope: -14.857894 + outSlope: -14.859512 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0666668 + value: 76.25578 + inSlope: -1.2765198 + outSlope: -1.2728692 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 77.798775 + inSlope: 5.763617 + outSlope: 5.763617 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: Armature.001/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -17.034908 + inSlope: 50.964027 + outSlope: 50.964027 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -12.314603 + inSlope: 93.67616 + outSlope: 92.76389 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -6.661219 + inSlope: -2.7490282 + outSlope: -1.0075449 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -8.811086 + inSlope: -6936.803 + outSlope: -2259.8398 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -176.83765 + inSlope: 105.13346 + outSlope: 87.91123 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -165.17545 + inSlope: 235.86 + outSlope: 162.96419 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 172.66844 + inSlope: -15425.261 + outSlope: -7807.6826 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -20.773626 + inSlope: 17.322952 + outSlope: 17.322952 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -16.658747 + inSlope: 59.727604 + outSlope: 66.61515 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -14.006966 + inSlope: 311.14203 + outSlope: 311.14423 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 2.837461 + inSlope: 301.03223 + outSlope: 301.03223 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 9.643226 + inSlope: 43.734562 + outSlope: 43.73464 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 7.072787 + inSlope: -84.74471 + outSlope: -84.74456 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 3.9435256 + inSlope: -70.15162 + outSlope: -68.9195 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 0.7052141 + inSlope: -2.4705102 + outSlope: -2.524045 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 2.0831764 + inSlope: 41.114895 + outSlope: 41.707275 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333334 + value: 6.9697657 + inSlope: 35.406837 + outSlope: 35.40688 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2333333 + value: 9.451843 + inSlope: 27.732723 + outSlope: 26.89644 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: 12.033516 + inSlope: 43.931973 + outSlope: 43.934025 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 16.145927 + inSlope: 0.21320364 + outSlope: 0.34126192 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: 14.190973 + inSlope: -152.83951 + outSlope: -152.84006 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 3.1822925 + inSlope: -354.41888 + outSlope: -354.41888 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: -4.542949 + inSlope: -137.33649 + outSlope: -137.336 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: -2.7938712 + inSlope: 71.41938 + outSlope: 77.352165 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 4.8180027 + inSlope: 319.816 + outSlope: 255.23788 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: 17.338228 + inSlope: 508.69202 + outSlope: 743.60614 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: 158.21931 + inSlope: 1157.5646 + outSlope: 375.86768 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: -20.799894 + inSlope: 64.04507 + outSlope: 71.57355 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3000002 + value: -13.491392 + inSlope: 6.1576157 + outSlope: 6.2822704 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5666668 + value: -13.01181 + inSlope: 3.7394717 + outSlope: 3.2817078 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0666668 + value: -13.378116 + inSlope: -4.013197 + outSlope: -4.045855 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: -17.033442 + inSlope: -13.366993 + outSlope: -13.366993 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: Armature.001/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -17.886549 + inSlope: 20.984486 + outSlope: 20.984486 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.06666667 + value: -15.924611 + inSlope: 41.672043 + outSlope: 40.753468 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -14.545085 + inSlope: -26.646109 + outSlope: -24.922009 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.23333335 + value: -17.459764 + inSlope: -6940.3726 + outSlope: -2263.407 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 177.26079 + inSlope: 141.41228 + outSlope: 124.231346 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -168.24492 + inSlope: 292.81177 + outSlope: 219.94336 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 171.89978 + inSlope: -15367.145 + outSlope: -7749.573 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -17.58738 + inSlope: 99.60515 + outSlope: 99.60515 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -8.847048 + inSlope: 99.751144 + outSlope: 106.40286 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -5.08316 + inSlope: 381.36734 + outSlope: 381.36667 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 15.359314 + inSlope: 384.72714 + outSlope: 384.72714 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 24.065578 + inSlope: 68.45061 + outSlope: 68.45073 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 21.175652 + inSlope: -90.63386 + outSlope: -90.6337 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 17.976942 + inSlope: -53.747646 + outSlope: -52.42077 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 17.846312 + inSlope: 10.4201355 + outSlope: 10.399323 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 18.341604 + inSlope: 3.87036 + outSlope: 4.6836653 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1333334 + value: 19.937174 + inSlope: 16.599136 + outSlope: 16.599155 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2333333 + value: 21.579702 + inSlope: 33.234417 + outSlope: 32.42438 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: 25.776352 + inSlope: 31.39946 + outSlope: 31.401016 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 28.024633 + inSlope: -25.811974 + outSlope: -25.730429 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: 25.386467 + inSlope: -224.31757 + outSlope: -224.31837 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 10.427534 + inSlope: -445.49722 + outSlope: -445.49722 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 0.39047694 + inSlope: -191.29453 + outSlope: -191.29384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0.8138416 + inSlope: 9.814993 + outSlope: 15.998222 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 3.4219706 + inSlope: 269.54828 + outSlope: 204.91406 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: 14.790984 + inSlope: 475.42978 + outSlope: 710.3596 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: 154.08812 + inSlope: 1145.043 + outSlope: 363.3448 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0666668 + value: -26.179222 + inSlope: 70.97586 + outSlope: 78.501526 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3000002 + value: -16.708479 + inSlope: 17.81823 + outSlope: 17.942026 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.5666668 + value: -13.582583 + inSlope: 7.230753 + outSlope: 6.7765675 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0666668 + value: -14.197929 + inSlope: -5.170395 + outSlope: -5.2031426 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: -17.885077 + inSlope: -12.951272 + outSlope: -12.951272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: Armature.001/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 19.80563 + inSlope: 0.00027894974 + outSlope: 0.00027894974 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 19.80564 + inSlope: 2.4141273 + outSlope: 2.4160483 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 22.333271 + inSlope: 126.12082 + outSlope: 126.11298 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 28.377428 + inSlope: 174.69466 + outSlope: 174.63791 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 38.60069 + inSlope: 117.699455 + outSlope: 117.82883 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 41.830853 + inSlope: -34.46243 + outSlope: -34.462364 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 36.050884 + inSlope: -177.25842 + outSlope: -177.25842 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 30.17768 + inSlope: -243.01102 + outSlope: -243.01146 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 19.805622 + inSlope: -159.16766 + outSlope: -159.16739 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 19.805647 + inSlope: 0.00017166123 + outSlope: 0.00043988225 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: 19.80564 + inSlope: 0.00022530554 + outSlope: -0.0005149846 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: 19.805656 + inSlope: 19.95737 + outSlope: 19.95737 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 21.132778 + inSlope: 241.58994 + outSlope: 241.58907 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: 35.490856 + inSlope: 240.09767 + outSlope: 240.09854 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 37.859436 + inSlope: 46.619156 + outSlope: 46.619156 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 38.74076 + inSlope: -47.546814 + outSlope: -47.546642 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 34.84154 + inSlope: -152.0617 + outSlope: -152.05522 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 23.394876 + inSlope: -124.566284 + outSlope: -124.463646 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: 19.805637 + inSlope: 0.0002574921 + outSlope: 0.00041049457 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 19.805635 + inSlope: 0.00014553899 + outSlope: 0.00014553899 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: Armature.001/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot/mixamorig:LeftToeBase + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.9250238 + inSlope: 0.00005498528 + outSlope: 0.00005498528 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 0.9250249 + inSlope: -1.914233 + outSlope: -1.9091723 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 0.009918195 + inSlope: 2.3634348 + outSlope: 2.4142454 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 1.0128385 + inSlope: 13.339612 + outSlope: 13.479962 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 0.16788988 + inSlope: -51.6782 + outSlope: -50.777256 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -2.5648408 + inSlope: -222.2613 + outSlope: -222.26228 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -13.816164 + inSlope: -55.4107 + outSlope: -55.4107 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -7.4711876 + inSlope: 221.76399 + outSlope: 221.76439 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 0.92502624 + inSlope: 113.846596 + outSlope: 113.8464 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 0.925035 + inSlope: -0.00012874593 + outSlope: -0.00009387731 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: 0.92501473 + inSlope: 0.000020116566 + outSlope: 0.0003218654 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: 0.9250289 + inSlope: -15.085197 + outSlope: -15.085197 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.089396164 + inSlope: -191.47449 + outSlope: -191.4738 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: -13.179522 + inSlope: -122.8706 + outSlope: -122.87104 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: -5.813579 + inSlope: 210.95929 + outSlope: 210.95929 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 0.682685 + inSlope: 103.921906 + outSlope: 103.92291 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 1.0733283 + inSlope: 5.779287 + outSlope: 5.5902333 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 1.0059932 + inSlope: -8.379674 + outSlope: -8.334769 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: 0.92502695 + inSlope: 0.00014886261 + outSlope: 0.000042798725 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 0.92502314 + inSlope: -0.00012886264 + outSlope: -0.00012886264 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: Armature.001/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot/mixamorig:LeftToeBase + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -14.072975 + inSlope: 0.00004291534 + outSlope: 0.00004291534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -14.0729685 + inSlope: -0.9333175 + outSlope: -0.9255553 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -14.570529 + inSlope: -4.727426 + outSlope: -4.733473 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -14.367829 + inSlope: 0.26787734 + outSlope: 0.5376864 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -15.114667 + inSlope: -28.013893 + outSlope: -26.982704 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -16.467924 + inSlope: -105.806854 + outSlope: -105.80666 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -21.173393 + inSlope: -2.4781015 + outSlope: -2.4781015 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -18.121803 + inSlope: 107.84239 + outSlope: 107.839836 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -14.072984 + inSlope: 44.09513 + outSlope: 44.09505 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -14.072973 + inSlope: 0.0005149837 + outSlope: -0.000053644177 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: -14.07298 + inSlope: -0.000101923935 + outSlope: -0.0002574923 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: -14.07298 + inSlope: -7.2210283 + outSlope: -7.2210283 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -14.566561 + inSlope: -75.584465 + outSlope: -75.5842 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: -20.863474 + inSlope: -93.08331 + outSlope: -93.08364 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: -17.739597 + inSlope: 93.37049 + outSlope: 93.37049 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: -14.891194 + inSlope: 48.154926 + outSlope: 48.15475 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: -14.578287 + inSlope: 7.812117 + outSlope: 7.640054 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: -14.180616 + inSlope: 1.2523568 + outSlope: 1.4528991 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: -14.07297 + inSlope: -0.00027894977 + outSlope: -0.00020338141 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: -14.072977 + inSlope: -0.00016046606 + outSlope: -0.00016046606 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: Armature.001/mixamorig:Hips/mixamorig:LeftUpLeg/mixamorig:LeftLeg/mixamorig:LeftFoot/mixamorig:LeftToeBase + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -8.608603 + inSlope: -2.4828072 + outSlope: -2.4828072 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -10.638032 + inSlope: -36.964306 + outSlope: -37.21617 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -17.108986 + inSlope: 33.031506 + outSlope: 33.03783 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -6.052988 + inSlope: 51.890625 + outSlope: 53.711693 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -4.35885 + inSlope: 50.99253 + outSlope: 50.245697 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -0.18819764 + inSlope: 91.37653 + outSlope: 91.6777 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 3.5061703 + inSlope: 70.84751 + outSlope: 70.76681 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 5.5078917 + inSlope: 12.801004 + outSlope: 12.801004 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 3.9038563 + inSlope: -54.158566 + outSlope: -54.5309 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: -5.6791654 + inSlope: -12.698873 + outSlope: -12.860624 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: 3.656626 + inSlope: 30.925873 + outSlope: 31.375801 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: 5.737752 + inSlope: 16.024704 + outSlope: 16.098677 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 5.680619 + inSlope: -52.345825 + outSlope: -52.345825 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 2.257201 + inSlope: -72.64568 + outSlope: -72.6468 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 0.832792 + inSlope: -18.923702 + outSlope: -19.06669 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 1.1813998 + inSlope: -3.0344396 + outSlope: -3.687622 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: -1.8920825 + inSlope: -11.229811 + outSlope: -10.892735 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: -3.0760305 + inSlope: -27.461872 + outSlope: -27.128435 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: -9.078514 + inSlope: -8.2257185 + outSlope: -8.2227335 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7 + value: -7.660129 + inSlope: 3.4192233 + outSlope: 3.398226 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2333336 + value: -8.2854395 + inSlope: -2.7411253 + outSlope: -2.7367141 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: -8.608654 + inSlope: -2.659724 + outSlope: -2.659724 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: Armature.001/mixamorig:Hips/mixamorig:RightUpLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 13.40206 + inSlope: 3.4202156 + outSlope: 3.4202156 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 10.520905 + inSlope: -48.71942 + outSlope: -48.59321 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: 0.0040674414 + inSlope: 35.545475 + outSlope: 35.613194 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 20.846914 + inSlope: 149.77673 + outSlope: 149.89847 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 26.126455 + inSlope: 194.93832 + outSlope: 195.02768 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 40.66546 + inSlope: 147.25285 + outSlope: 147.1432 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 43.659203 + inSlope: 53.103058 + outSlope: 53.20988 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 42.15566 + inSlope: -80.83483 + outSlope: -80.83483 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 36.72524 + inSlope: -53.65191 + outSlope: -53.1597 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: 32.388958 + inSlope: -19.607107 + outSlope: -19.50303 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: 35.155544 + inSlope: 30.374756 + outSlope: 29.88502 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: 38.112286 + inSlope: 49.59928 + outSlope: 49.5707 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 39.54877 + inSlope: 13.8850155 + outSlope: 13.8850155 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 39.027416 + inSlope: -8.857392 + outSlope: -8.857361 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 38.97267 + inSlope: 33.328312 + outSlope: 33.246033 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 44.018147 + inSlope: 53.048737 + outSlope: 52.980137 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: 38.871502 + inSlope: -61.90818 + outSlope: -61.921787 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: 18.078863 + inSlope: -72.61775 + outSlope: -72.78351 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: 6.481351 + inSlope: -7.8359613 + outSlope: -7.8410068 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7 + value: 10.189897 + inSlope: 11.124718 + outSlope: 11.126909 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2333336 + value: 13.239462 + inSlope: 2.1420436 + outSlope: 2.1471999 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 13.402056 + inSlope: 1.0189257 + outSlope: 1.0189257 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: Armature.001/mixamorig:Hips/mixamorig:RightUpLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -159.77678 + inSlope: -4.636505 + outSlope: -4.636505 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -161.94754 + inSlope: -20.228851 + outSlope: -19.726635 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.43333337 + value: -162.84692 + inSlope: -0.04583358 + outSlope: -0.28152463 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -162.66194 + inSlope: 24.199217 + outSlope: 20.489521 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -161.631 + inSlope: 38.117104 + outSlope: 39.049534 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -159.5703 + inSlope: 18.049852 + outSlope: 16.75139 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -159.16234 + inSlope: 12.532643 + outSlope: 12.902757 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -159.42133 + inSlope: -27.197344 + outSlope: -27.197344 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -161.29391 + inSlope: -20.589754 + outSlope: -19.43596 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: -165.78665 + inSlope: -22.046358 + outSlope: -21.955488 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: -166.69388 + inSlope: 18.594358 + outSlope: 17.836288 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: -165.51355 + inSlope: 15.246264 + outSlope: 15.168014 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: -165.07143 + inSlope: 15.214705 + outSlope: 15.214705 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: -164.47922 + inSlope: 27.537258 + outSlope: 27.537159 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: -163.25359 + inSlope: 44.626347 + outSlope: 44.563335 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: -160.07924 + inSlope: 42.56245 + outSlope: 42.48744 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8333334 + value: -155.0919 + inSlope: 10.567477 + outSlope: 10.887038 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1666667 + value: -160.28667 + inSlope: -17.486387 + outSlope: -18.077805 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: -162.73717 + inSlope: 1.8608092 + outSlope: 1.8739321 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.7 + value: -161.12093 + inSlope: 2.7470403 + outSlope: 2.771901 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.2333336 + value: -159.93048 + inSlope: 1.7915432 + outSlope: 1.7980974 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: -159.77681 + inSlope: 1.077119 + outSlope: 1.077119 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: Armature.001/mixamorig:Hips/mixamorig:RightUpLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -42.728374 + inSlope: 8.57234 + outSlope: 8.57234 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -42.531982 + inSlope: -40.527187 + outSlope: -40.483795 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -59.104286 + inSlope: -103.930115 + outSlope: -103.9301 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -65.11333 + inSlope: 46.165646 + outSlope: 46.162838 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -52.051826 + inSlope: 138.20476 + outSlope: 138.34041 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -47.279537 + inSlope: 147.43056 + outSlope: 147.43083 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: -42.206787 + inSlope: 188.30585 + outSlope: 188.42104 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -26.283527 + inSlope: 254.16614 + outSlope: 254.3254 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -17.758816 + inSlope: 136.0817 + outSlope: 136.0817 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -17.200388 + inSlope: -5.0432353 + outSlope: -5.0291653 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: -25.37485 + inSlope: -140.76508 + outSlope: -140.70009 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -38.031357 + inSlope: -28.1655 + outSlope: -28.165514 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -35.177364 + inSlope: 62.575294 + outSlope: 62.581715 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666668 + value: -28.385273 + inSlope: 9.281214 + outSlope: 9.272548 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: -27.058472 + inSlope: -2.0019152 + outSlope: -2.0105 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: -27.650784 + inSlope: -170.51656 + outSlope: -170.51656 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: -38.423763 + inSlope: -275.55695 + outSlope: -275.55734 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: -46.071262 + inSlope: -137.0043 + outSlope: -136.9157 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: -47.8554 + inSlope: -27.543095 + outSlope: -27.541117 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: -54.31053 + inSlope: -95.238625 + outSlope: -95.17843 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: -58.330196 + inSlope: 52.57282 + outSlope: 52.57278 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1000001 + value: -45.79635 + inSlope: 49.501488 + outSlope: 49.492523 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: -45.629887 + inSlope: -23.298813 + outSlope: -23.234632 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0666668 + value: -43.352173 + inSlope: 6.569949 + outSlope: 6.5581517 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: -42.72845 + inSlope: -0.18303396 + outSlope: -0.18303396 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: Armature.001/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.03372117 + inSlope: -2.4131985 + outSlope: -2.4131985 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: -0.6501911 + inSlope: -17.318941 + outSlope: -17.565784 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: -2.089378 + inSlope: -1.047688 + outSlope: -1.0476879 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -1.8014677 + inSlope: -9.205173 + outSlope: -9.398123 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -1.3764311 + inSlope: 9.2916155 + outSlope: 9.112862 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -1.1013834 + inSlope: 26.411476 + outSlope: 26.411522 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 0.25363532 + inSlope: 48.518085 + outSlope: 46.812584 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 3.9545658 + inSlope: 18.884523 + outSlope: 19.035965 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 3.6800652 + inSlope: -8.593704 + outSlope: -8.593704 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 3.3026538 + inSlope: -16.466732 + outSlope: -16.476624 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 1.3302515 + inSlope: -13.636034 + outSlope: -13.813023 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: -1.0874499 + inSlope: -15.763275 + outSlope: -15.763283 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: -0.964028 + inSlope: 9.881015 + outSlope: 9.604461 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666668 + value: 0.3186102 + inSlope: 11.825306 + outSlope: 11.845515 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: 2.181878 + inSlope: 8.661497 + outSlope: 8.656463 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 2.383498 + inSlope: -16.04956 + outSlope: -16.04956 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 0.9228503 + inSlope: -44.239124 + outSlope: -44.238968 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: -0.30255827 + inSlope: -24.04014 + outSlope: -24.559643 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: -0.29180193 + inSlope: 3.3196123 + outSlope: 3.377165 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: 0.52432513 + inSlope: 10.165935 + outSlope: 10.955247 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: 0.076717146 + inSlope: -10.89617 + outSlope: -10.896162 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1000001 + value: -1.2835994 + inSlope: -1.8451616 + outSlope: -1.7164236 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: -1.7930884 + inSlope: -5.830043 + outSlope: -6.4431167 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0666668 + value: -0.62944114 + inSlope: 2.5558853 + outSlope: 2.63484 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 0.03367793 + inSlope: 1.6925611 + outSlope: 1.6925611 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: Armature.001/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 3.6538885 + inSlope: 1.5362887 + outSlope: 1.5362887 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.13333334 + value: 5.042761 + inSlope: 32.723335 + outSlope: 32.9435 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.3 + value: 5.9369516 + inSlope: -8.298815 + outSlope: -8.298814 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 5.13473 + inSlope: 11.266848 + outSlope: 11.4578285 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 5.90258 + inSlope: 10.074303 + outSlope: 9.983173 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 6.3729205 + inSlope: -18.633783 + outSlope: -18.633818 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6666667 + value: 4.772097 + inSlope: -42.687634 + outSlope: -40.932423 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 2.6084826 + inSlope: 2.3115816 + outSlope: 1.8312606 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 3.35704 + inSlope: 12.952913 + outSlope: 12.952913 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 3.5231562 + inSlope: 4.6134815 + outSlope: 4.631397 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90000004 + value: 3.7102845 + inSlope: 4.5436707 + outSlope: 4.7964907 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.0333334 + value: 5.840474 + inSlope: 12.124331 + outSlope: 12.124336 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1666667 + value: 5.3278522 + inSlope: -14.167601 + outSlope: -13.91833 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.3666668 + value: 4.35515 + inSlope: -4.2830935 + outSlope: -4.3114905 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: 3.5315716 + inSlope: -4.01965 + outSlope: -4.0128675 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 3.4437704 + inSlope: 15.37272 + outSlope: 15.37272 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 4.7532964 + inSlope: 36.433403 + outSlope: 36.433273 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 5.606207 + inSlope: 8.254315 + outSlope: 8.862285 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 4.544458 + inSlope: -11.750297 + outSlope: -11.800043 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: 3.351687 + inSlope: -13.139717 + outSlope: -13.911484 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.9333334 + value: 3.637625 + inSlope: 14.56914 + outSlope: 14.56913 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.1000001 + value: 6.212319 + inSlope: 8.701846 + outSlope: 8.599836 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.3333335 + value: 6.801232 + inSlope: 6.9907312 + outSlope: 7.5878987 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.0666668 + value: 4.6608877 + inSlope: -4.75021 + outSlope: -4.820756 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 3.653908 + inSlope: -1.9347123 + outSlope: -1.9347123 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: Armature.001/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 76.00796 + inSlope: 1.8601227 + outSlope: 1.8601227 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: 76.03694 + inSlope: -4.15448 + outSlope: -4.6264205 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: 74.660645 + inSlope: -4.133998 + outSlope: -3.773804 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 74.631424 + inSlope: 12.334214 + outSlope: 12.334214 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 76.148384 + inSlope: 8.99746 + outSlope: 8.99746 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: 74.5104 + inSlope: -113.33737 + outSlope: -106.06673 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 69.584694 + inSlope: -155.41316 + outSlope: -160.56554 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 58.114033 + inSlope: -208.89354 + outSlope: -206.12053 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 51.09676 + inSlope: -241.04062 + outSlope: -241.0388 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 42.329426 + inSlope: -128.66112 + outSlope: -128.66112 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 42.511868 + inSlope: 20.338766 + outSlope: 19.065573 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 44.971073 + inSlope: 50.267776 + outSlope: 48.745785 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 57.787815 + inSlope: 192.69145 + outSlope: 192.55386 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: 77.85306 + inSlope: 33.18558 + outSlope: 33.18558 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2333333 + value: 75.87454 + inSlope: -16.825563 + outSlope: -16.987053 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: 68.17195 + inSlope: -114.34785 + outSlope: -112.414276 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 59.673283 + inSlope: -128.0274 + outSlope: -127.24366 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: 55.577637 + inSlope: -71.283226 + outSlope: -71.283485 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 55.004124 + inSlope: 88.62782 + outSlope: 88.62782 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 60.86125 + inSlope: 123.00442 + outSlope: 123.00398 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 63.851147 + inSlope: 105.78605 + outSlope: 95.52089 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 71.47487 + inSlope: -5.116887 + outSlope: -28.50197 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: 65.006165 + inSlope: -28.224566 + outSlope: -28.30312 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: 70.86484 + inSlope: 36.306656 + outSlope: 30.41466 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: 76.1881 + inSlope: 2.050012 + outSlope: 1.9636775 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9333334 + value: 76.329735 + inSlope: 1.2409831 + outSlope: 1.2712666 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 76.00812 + inSlope: -0.9345243 + outSlope: -0.9345243 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: Armature.001/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -91.92055 + inSlope: 27.592712 + outSlope: 27.592712 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -89.28582 + inSlope: -103.93286 + outSlope: -103.1722 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -125.404465 + inSlope: -50.551228 + outSlope: -51.31783 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -127.049736 + inSlope: -10.095063 + outSlope: -10.095063 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -117.47034 + inSlope: 376.9684 + outSlope: 376.9684 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -83.004684 + inSlope: 515.6145 + outSlope: 554.0689 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -65.508125 + inSlope: 408.86273 + outSlope: 378.57654 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -41.725307 + inSlope: 235.35995 + outSlope: 250.66945 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -33.890438 + inSlope: 152.3225 + outSlope: 152.32222 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -30.191029 + inSlope: 104.90321 + outSlope: 104.90321 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -26.237928 + inSlope: 153.0159 + outSlope: 153.56682 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -13.36314 + inSlope: 155.22223 + outSlope: 156.8847 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -9.225948 + inSlope: -19.725616 + outSlope: -19.656002 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: -33.500053 + inSlope: -489.04303 + outSlope: -489.04303 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2333333 + value: -55.851574 + inSlope: -85.920044 + outSlope: -84.87024 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: -54.572693 + inSlope: 126.29932 + outSlope: 146.12723 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -43.8787 + inSlope: 131.35713 + outSlope: 136.88173 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: -39.26033 + inSlope: 97.81789 + outSlope: 97.81824 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: -36.745125 + inSlope: -126.66081 + outSlope: -126.66081 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: -49.664207 + inSlope: -447.81827 + outSlope: -447.81805 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: -64.41446 + inSlope: -472.9849 + outSlope: -493.62442 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: -103.5357 + inSlope: -631.963 + outSlope: -610.41846 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: -135.72464 + inSlope: -35.535282 + outSlope: -34.599068 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: -119.760666 + inSlope: 212.19472 + outSlope: 229.26051 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: -93.81758 + inSlope: -26.662329 + outSlope: -26.87771 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9333334 + value: -93.82287 + inSlope: 20.121634 + outSlope: 20.048784 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: -91.920616 + inSlope: -3.4746544 + outSlope: -3.4746544 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: Armature.001/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -84.849754 + inSlope: 23.99881 + outSlope: 23.99881 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.16666667 + value: -81.92334 + inSlope: -97.86896 + outSlope: -97.10775 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.40000004 + value: -117.25661 + inSlope: -54.542404 + outSlope: -55.308613 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -119.27903 + inSlope: -13.020173 + outSlope: -13.020173 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -110.11441 + inSlope: 365.61197 + outSlope: 365.61197 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6 + value: -76.23054 + inSlope: 509.1161 + outSlope: 547.58014 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -58.929893 + inSlope: 409.33514 + outSlope: 379.04996 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -35.322163 + inSlope: 226.31442 + outSlope: 241.67508 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -27.675436 + inSlope: 126.91607 + outSlope: 126.91585 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: -25.509907 + inSlope: 61.72148 + outSlope: 61.72148 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -22.839167 + inSlope: 115.75134 + outSlope: 116.3326 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -11.902463 + inSlope: 139.51869 + outSlope: 141.21548 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -6.3399463 + inSlope: 18.989288 + outSlope: 18.854847 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.1 + value: -25.681025 + inSlope: -471.32632 + outSlope: -471.32632 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.2333333 + value: -46.815983 + inSlope: -80.79955 + outSlope: -79.748825 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4000001 + value: -44.38277 + inSlope: 129.77518 + outSlope: 149.58124 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -33.81921 + inSlope: 121.25399 + outSlope: 126.81176 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: -29.64931 + inSlope: 92.572105 + outSlope: 92.57243 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: -27.02983 + inSlope: -131.05603 + outSlope: -131.05603 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: -40.341095 + inSlope: -458.9131 + outSlope: -458.91284 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: -55.444866 + inSlope: -484.29428 + outSlope: -504.90552 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: -95.013954 + inSlope: -628.0231 + outSlope: -606.4828 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.8000001 + value: -125.69286 + inSlope: -19.893839 + outSlope: -18.930218 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.0333335 + value: -109.20399 + inSlope: 201.73026 + outSlope: 218.82675 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.4 + value: -85.34975 + inSlope: -27.765455 + outSlope: -27.980806 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.9333334 + value: -85.82861 + inSlope: 16.485674 + outSlope: 16.41254 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: -84.84976 + inSlope: -5.2471147 + outSlope: -5.2471147 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: Armature.001/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 19.80584 + inSlope: -0.00014713831 + outSlope: -0.00014713831 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 19.805887 + inSlope: 1.3117259 + outSlope: 1.3131238 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 20.744123 + inSlope: 30.65675 + outSlope: 30.687708 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 21.94 + inSlope: 83.97547 + outSlope: 83.9789 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 32.686222 + inSlope: 175.78864 + outSlope: 175.78864 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 42.48738 + inSlope: 134.75488 + outSlope: 134.77765 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 47.072704 + inSlope: 92.483345 + outSlope: 92.48318 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 48.643833 + inSlope: -157.83667 + outSlope: -157.83667 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 36.504936 + inSlope: -352.7041 + outSlope: -352.70474 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 25.075027 + inSlope: -226.8363 + outSlope: -226.8359 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 21.360874 + inSlope: -79.63742 + outSlope: -79.9504 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 19.805635 + inSlope: -0.00005722048 + outSlope: -0.0000122615265 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: 19.805635 + inSlope: -0.0000122615265 + outSlope: -0.00017166154 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 19.805635 + inSlope: 100.56328 + outSlope: 100.56429 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: 26.503077 + inSlope: 412.01556 + outSlope: 412.0157 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 47.352505 + inSlope: 268.35815 + outSlope: 268.35815 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 44.56674 + inSlope: -75.49777 + outSlope: -75.497505 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 42.318813 + inSlope: -146.90982 + outSlope: -146.91035 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 34.768723 + inSlope: -237.01515 + outSlope: -237.01515 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 26.501883 + inSlope: -197.18057 + outSlope: -197.18057 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: 21.61379 + inSlope: -95.301506 + outSlope: -95.29078 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: 19.805887 + inSlope: -5.010877 + outSlope: -5.021599 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2333333 + value: 19.80586 + inSlope: -0.00047819965 + outSlope: -0.00049417664 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 19.805841 + inSlope: -0.00031731342 + outSlope: -0.00031731342 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.x + path: Armature.001/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot/mixamorig:RightToeBase + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: -0.9252312 + inSlope: 0.00038777076 + outSlope: 0.00038777076 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: -0.92526996 + inSlope: -1.3180168 + outSlope: -1.3159616 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: -1.8749803 + inSlope: -29.395494 + outSlope: -29.325628 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: -2.9675083 + inSlope: -8.345998 + outSlope: -8.382827 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: -1.3413506 + inSlope: 18.676588 + outSlope: 18.676588 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: -1.246141 + inSlope: 3.4731176 + outSlope: 3.313883 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: -1.0641571 + inSlope: 37.101692 + outSlope: 37.101624 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 1.220369 + inSlope: -24.775661 + outSlope: -24.775661 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: -2.136102 + inSlope: -103.6153 + outSlope: -103.615486 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: -6.0373063 + inSlope: 2.4910235 + outSlope: 2.491019 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: -2.5013332 + inSlope: 75.04943 + outSlope: 74.15196 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: -0.92503 + inSlope: -0.0001072884 + outSlope: -0.00012108257 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: -0.92502356 + inSlope: 0.00013181141 + outSlope: 0.00047206922 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: -0.9250134 + inSlope: 21.712685 + outSlope: 21.712608 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: 0.6004867 + inSlope: 0.09819541 + outSlope: 0.09819577 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: -1.3013744 + inSlope: -36.890923 + outSlope: -36.890923 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: -1.3925207 + inSlope: -1.4430084 + outSlope: -1.4430032 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: -1.4049257 + inSlope: -6.6519146 + outSlope: -6.6519384 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: -1.7936662 + inSlope: -18.09215 + outSlope: -18.09215 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: -2.6175885 + inSlope: -13.264244 + outSlope: -13.264244 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: -2.773084 + inSlope: 20.673307 + outSlope: 20.547731 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: -0.92525995 + inSlope: 5.019262 + outSlope: 4.9969983 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2333333 + value: -0.9252511 + inSlope: 0.0006138428 + outSlope: 0.00059333706 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: -0.92523885 + inSlope: -0.000022758135 + outSlope: -0.000022758135 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.y + path: Armature.001/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot/mixamorig:RightToeBase + classID: 4 + script: {fileID: 0} + - curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 14.072903 + inSlope: -0.00007356916 + outSlope: -0.00007356916 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.4666667 + value: 14.072874 + inSlope: -0.5208574 + outSlope: -0.5183316 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.53333336 + value: 13.698901 + inSlope: -11.57148 + outSlope: -11.464481 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.5666667 + value: 13.274929 + inSlope: -0.80303127 + outSlope: -0.88010794 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6333334 + value: 14.383584 + inSlope: 15.924984 + outSlope: 15.924984 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.70000005 + value: 14.772712 + inSlope: 6.372457 + outSlope: 6.228653 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.73333335 + value: 15.018253 + inSlope: 20.700665 + outSlope: 20.700628 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.7666667 + value: 16.148968 + inSlope: -22.251072 + outSlope: -22.251072 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8000001 + value: 14.1701 + inSlope: -55.481853 + outSlope: -55.481953 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.8333334 + value: 12.079453 + inSlope: -0.5576425 + outSlope: -0.5576415 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.86666673 + value: 13.4528675 + inSlope: 27.45876 + outSlope: 26.068678 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.9666667 + value: 14.072975 + inSlope: -0.00022888192 + outSlope: 0.00014713831 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4333334 + value: 14.072979 + inSlope: -0.00017166136 + outSlope: 0.00034332307 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.4666667 + value: 14.072966 + inSlope: 12.372162 + outSlope: 12.372118 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5000001 + value: 14.995393 + inSlope: 20.908215 + outSlope: 20.908289 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5333334 + value: 14.917873 + inSlope: -12.933324 + outSlope: -12.933324 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.5666667 + value: 14.778739 + inSlope: -3.2347043 + outSlope: -3.2346926 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6000001 + value: 14.695173 + inSlope: -8.409841 + outSlope: -8.40987 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6333334 + value: 14.26035 + inSlope: -16.371447 + outSlope: -16.371447 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.6666667 + value: 13.604084 + inSlope: -12.133381 + outSlope: -12.133381 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7 + value: 13.345666 + inSlope: 5.356441 + outSlope: 5.135031 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1.7666668 + value: 14.0728855 + inSlope: 1.9606287 + outSlope: 1.9250969 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 2.2333333 + value: 14.07287 + inSlope: 0.00013487683 + outSlope: 0.00009883533 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 3.3333335 + value: 14.072895 + inSlope: -0.00021847809 + outSlope: -0.00021847809 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + attribute: localEulerAngles.z + path: Armature.001/mixamorig:Hips/mixamorig:RightUpLeg/mixamorig:RightLeg/mixamorig:RightFoot/mixamorig:RightToeBase + classID: 4 + script: {fileID: 0} + m_HasGenericRootTransform: 0 + m_HasMotionFloatCurves: 0 + m_Events: [] diff --git a/Assets/Jammo-Character/Animations/Victory Idle.anim.meta b/Assets/Jammo-Character/Animations/Victory Idle.anim.meta new file mode 100644 index 0000000..8fffd52 --- /dev/null +++ b/Assets/Jammo-Character/Animations/Victory Idle.anim.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 13a6028bbfeabbe4a91cb3339acabfa4 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 7400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Jammo-Character/Files.meta b/Assets/Jammo-Character/Files.meta new file mode 100644 index 0000000..471d26e --- /dev/null +++ b/Assets/Jammo-Character/Files.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 79685d3e0c5b4174a8aa832dcc2f4038 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Jammo-Character/Files/eyes_vector.ai b/Assets/Jammo-Character/Files/eyes_vector.ai new file mode 100644 index 0000000..a45150c --- /dev/null +++ b/Assets/Jammo-Character/Files/eyes_vector.ai @@ -0,0 +1,1889 @@ +%PDF-1.5 % +1 0 obj <>/OCGs[6 0 R]>>/Pages 3 0 R/Type/Catalog>> endobj 2 0 obj <>stream + + + + + application/pdf + + + eyes_vector + + + Adobe Illustrator CC 23.0 (Windows) + 2019-10-13T14:50:49+02:00 + 2019-10-13T14:50:49+02:00 + 2019-10-13T14:50:49+02:00 + + + + 196 + 256 + JPEG + /9j/4AAQSkZJRgABAgEASABIAAD/7QAsUGhvdG9zaG9wIDMuMAA4QklNA+0AAAAAABAASAAAAAEA AQBIAAAAAQAB/+4ADkFkb2JlAGTAAAAAAf/bAIQABgQEBAUEBgUFBgkGBQYJCwgGBggLDAoKCwoK DBAMDAwMDAwQDA4PEA8ODBMTFBQTExwbGxscHx8fHx8fHx8fHwEHBwcNDA0YEBAYGhURFRofHx8f Hx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8f/8AAEQgBAADEAwER AAIRAQMRAf/EAaIAAAAHAQEBAQEAAAAAAAAAAAQFAwIGAQAHCAkKCwEAAgIDAQEBAQEAAAAAAAAA AQACAwQFBgcICQoLEAACAQMDAgQCBgcDBAIGAnMBAgMRBAAFIRIxQVEGE2EicYEUMpGhBxWxQiPB UtHhMxZi8CRygvElQzRTkqKyY3PCNUQnk6OzNhdUZHTD0uIIJoMJChgZhJRFRqS0VtNVKBry4/PE 1OT0ZXWFlaW1xdXl9WZ2hpamtsbW5vY3R1dnd4eXp7fH1+f3OEhYaHiImKi4yNjo+Ck5SVlpeYmZ qbnJ2en5KjpKWmp6ipqqusra6voRAAICAQIDBQUEBQYECAMDbQEAAhEDBCESMUEFURNhIgZxgZEy obHwFMHR4SNCFVJicvEzJDRDghaSUyWiY7LCB3PSNeJEgxdUkwgJChgZJjZFGidkdFU38qOzwygp 0+PzhJSktMTU5PRldYWVpbXF1eX1RlZmdoaWprbG1ub2R1dnd4eXp7fH1+f3OEhYaHiImKi4yNjo +DlJWWl5iZmpucnZ6fkqOkpaanqKmqq6ytrq+v/aAAwDAQACEQMRAD8A9U4q7FXYq7FXYq7FXYq7 FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7F XYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FX Yq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXY q7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq 7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7 FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7F XYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FX Yq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXY q7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq 7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7 FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7F XYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FX Yq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXY q7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq/OD/AJXX+bn/AFN+q/8A SVL/AFxV3/K6/wA3P+pv1X/pKl/rirv+V1/m5/1N+q/9JUv9cVd/yuv83P8Aqb9V/wCkqX+uKu/5 XX+bn/U36r/0lS/1xV3/ACuv83P+pv1X/pKl/rirv+V1/m5/1N+q/wDSVL/XFXf8rr/Nz/qb9V/6 Spf64qqXH50/m0lxKq+btVCq7AD61L0B+eKqf/K6/wA3P+pv1X/pKl/rirv+V1/m5/1N+q/9JUv9 cVd/yuv83P8Aqb9V/wCkqX+uKu/5XX+bn/U36r/0lS/1xV3/ACuv83P+pv1X/pKl/rirv+V1/m5/ 1N+q/wDSVL/XFXf8rr/Nz/qb9V/6Spf64qqT/nT+bSuAvm7VQOCH/eqXqUBPfFVP/ldf5uf9Tfqv /SVL/XFXf8rr/Nz/AKm/Vf8ApKl/rirv+V1/m5/1N+q/9JUv9cVd/wArr/Nz/qb9V/6Spf64q7/l df5uf9Tfqv8A0lS/1xV3/K6/zc/6m/Vf+kqX+uKu/wCV1/m5/wBTfqv/AElS/wBcVe/f4886f9Cj /wCJf01efp/65w/SnrP9Y4/pD06epXlTh8PyxV8mYq+6fy+/5xy/J+byPoV1faCt9fXdhbXN1dzT XHN5Z4lkc0SRVUVagAHTFXz5/wA5R/l35U8ked9PtfLVobGyvrBbmW19R5EWX1pEJQyF2AIUbV+W KvGcVdir0P8AIPyZofnH80dJ0PXI2m0uVZ5riBHaMyejC0ioWWjBSyivEg07jFX2Fc/840fklPby Q/4aji9RSolinuVdSejKfVO4xV8DaxYrp+r31grmRbS4lgVyKFhG5SpHvTFVC7/3qm/12/WcVZR5 E/Kvz557e4HljS2vY7Sn1mdnjhiRiCVX1JWRSxp9kb/RiqRa9oOsaBq9zo+s2kljqVo3C4tpRRlJ AI6VBBBBBGxHTFUvxV2KuxVnWr/kf+aej+VR5p1HQJoNG4CWSUvEZY42pxeWBXMyLvvyXbvTFWC4 qq3P94P9SP8A4guKvcPyM/IHQ/zL8g67qEt7NY65a3gttOmFGt14xLJSWOnJg5koSG27eBVeS+cv J+u+T/MV35f1yAQahZsA4U8kdWAZJI2/aVlNR+NDtiqSYq7FXYq+iPyL/wCcWn82aZD5m83zS2eh 3Sc9OsbdgtxcKekrsQwjj/lFOTddhSqr5+voEgvbiBCSkUjopPWisQK0xV9Hf+uS/wDR9/3c8VfN WKv01/L3/lAfLX/bKsf+oZMVfKn/ADm1/wAp9oX/AGyh/wBRMuKvnXFXYq9g/wCcT/8Aydukf8YL z/qGfFX3pir8wfNn/KVaz/zHXP8AyebFUuu/96pv9dv1nFX13+TPn/y1+W3/ADjjpvmK7j9RrzVJ Ip4Y6LJJNJcmNj3qY7WLn/saYq8//wCczV06T8wtFvrMxsb3R4pXljIIkT15RG+3Wq7A+A9sVfP+ KuxVlX5VWtjdfmb5Utr8KbSXVrJZkcVVgbhPgavZjscVfeMf5jeUte88eYvy4n4tLp+nrLetIR6U qTKRcxb7fuo5I+X+sf5cVfnJiqrc/wB4P9SP/iC4q+xf+cJf+UA13/tqn/qGixV59/zmzHGPzC0R woDvpKh2AFSBcy0qfauKvnbFXYq7FX6feUERPKeioihUWwtQqgUAAhUAADFX5mat/wAdW9/4zy/8 TOKvor/1yX/o+/7ueKvmrFX6Y/ltPDP+XnliWF1kjbSrLi6kEGlugO498VfK3/ObEsTfmFokaupk TSl5oCCV5XEtKjtXFXzvirsVeuf84qTwQ/nbovqyLH6kV3GnIgVdraTior3PbFX3uzKqlmIVVFWY 7AAYq/L7zLPDceY9VuIHEkM15cSRSLuGVpWKkfMHFUFd/wC9U3+u36ziqKk1zVZNEg0N7hjpVtcS 3kNr+yJ50SN3/wCBiUe2/icVdq2uarq7WrajcNctZW0Vlal9+FvAOMcY9lGKoDFXYqqW9xPbXEVx A5inhdZIpFNGV0NVYHxBGKprD5v8yQ67e69FfyJq+oi6W9uxTlIL5HS4rtT41kb5HcUIGKpNiqrc /wB4P9SP/iC4q+tv+cK9f0WDypr2lT3sMOoC/W5FvI6o5heFEDqGIqOSEGnT6cVYF/zmXrOlah+Y umQWN1Hcy2WmpHdiJg3pu80kiqxG1eDA098VeA4q7FXYq/Snyn5s8sDyJpGptqtotgmnQSSXLTIq KqRKGLEkU4kEGvTFX5vajLHNqFzLGeUckrujbioZiQd8VfRv/rkv/R9/3c8VfNWKo+01/XbKAQWe pXVtACSIoZpI0BO5PFWAxVC3FzcXM7z3MrzzyGryyMXdj0qWapOKqWKuxVcjujq6MVdSCrA0II3B BGKphP5l8x3ELwXGq3k0Mg4yRSXErKwPYqWIOKpbiqrd/wC9U3+u36ziqlirsVdirsVdirsVdiqr c/3g/wBSP/iC4qpYq7FXYq7FXYq7FXYq+lf/AFyX/o+/7ueKvmrFXYq7FXYq7FXYq7FXYqq3X+9U 3+u36ziqlirsVdirsVdirsVdiqrc/wB4P9SP/iAxVSxV2KuxV2KuxV2KuxV9KUH/AEJL0/4/6/8A cyxV814qzvXfyU8/6Pp3lm/lslubfzYIBpP1ZjI3q3KLJFDKCF4SMr9Omx32xVLPzD/LrzH5A1yL RPMAhF7LbR3a+g5kT05GZR8RC7ho2BpirF8Vdiqf+RvJWs+dfM9p5b0b0v0heCVojOxSMCGJpW5M A1PhQgbdcVZN5f8AyD/MjXPM2ueXbayjhvvL1BqbzvwiUsCYgrANy9VRySg3G+KvOsVVbv8A3qm/ 12/WcVen/kV+RWp/mZqU0805sPLmnuqX94orK7sOXowAjjz47sx2UEddhiqG/wCchfI3l7yV+Y82 h6BC8GnJa28yxySNK3ORTyPJyTuRirzTFXYqiLCFJ762hk+xLKiNTY0ZgDir6N/Pn/nFq08u6Tc+ avJTudLso/U1LSZmaR4o0HxTQyGrMoHxOrbjcg02Cr5qxVVuf7wf6kf/ABBcVUsVdirsVdirsVdi rsVfSv8A65L/ANH3/dzxV81Yq+5f+cTr7zBq35VWy69biWy0y7ePy/dTDk7QoKfDyHSJ2dEavT4f 2cVfJf5v6t5n1T8ydfufM0Rt9XW6eGW1qSkKRfBFHGSBVAgHFv2vtd8VYdirsVTjyfqmvaV5p0m/ 8v8AM61BdRHT0jBLPMWCrHxH2vUrxK9waYq+5f8AnIDUfM+lfk3rOo6JZJBqt5FCmtSwGskMEiiO d1dVBkKL+75bUUlu2KvgLFVW7/3qm/12/WcVfbX/ADhsB/yqOb31W5r/AMiocVeF/wDOXv8A5OS5 /wCYG0/4icVeKYq7FUXpP/HVsv8AjPF/xMYq/TTzaA3lTWgRUGwuQQehHotir8wMVVbn+8H+pH/x BcVUsVdirsVdirsVdirsVfSv/rkv/R9/3c8VfNWKvZ77/nJrzLHoXk7RvLtkmi2/lYW7XJikJF7L bxiMh1Cpwier8kq3ItWu2KsQ/OH8yYfzE83/AOJE0pNJd7WG3ngWT1S7xch6jScY+RoQo+HoAMVY PirsVZV+WHnWDyT5403zPNp66omnGVhZswj5M8Txowcq/EozBgeJ6Yq9M0b/AJyv8zQeYPM17rWm pq2j+YkKJozzcYrUKhiRUqjB1Me0i8RzO+2KvCcVVbv/AHqm/wBdv1nFX2B/ziL528oad+Wt3pmp azZ2F/DqUsr291PHA3pyxx8GX1CvIHg3TwxV4p/zlD5h0TXfzcvrrR7yK/tIba3t2ubdhJEZESrB XWqtx5UJB64q8lxV2KojT5khv7aaQ0jjlR3PXZWBOKv0O82/ml+XH+CNXvI/MunTQyWE5jWG5ikk cvEQqrGrFyxJApSuKvzpxVVuf7wf6kf/ABBcVUsVdirsVdirsVdirsVfSv8A65L/ANH3/dzxV81Y q7FXYq7FXYq7FXYq7FVW7/3qm/12/WcVUsVdirsVdirsVdirsVVbn+8H+pH/AMQXFVLFXYq7FXYq 7FXYq7FX0r/65L/0ff8AdzxV83/W7r/fz/8ABH+uKu+t3X+/n/4I/wBcVd9buv8Afz/8Ef64q763 df7+f/gj/XFXfW7r/fz/APBH+uKu+t3X+/n/AOCP9cVd9buv9/P/AMEf64q763df7+f/AII/1xVV ubm5FzKBK4AdgAGPjiql9buv9/P/AMEf64q763df7+f/AII/1xV31u6/38//AAR/rirvrd1/v5/+ CP8AXFXfW7r/AH8//BH+uKu+t3X+/n/4I/1xV31u6/38/wDwR/riqrcXNyJABK4HBDsx7oDiql9b uv8Afz/8Ef64q763df7+f/gj/XFXfW7r/fz/APBH+uKu+t3X+/n/AOCP9cVd9buv9/P/AMEf64q7 63df7+f/AII/1xV31u6/38//AAR/rir6S9WT/oSn1OZ9T6/9up5f8dKnX5Yq+aMVdirsVdirsVdi rsVdiqrd/wC9U3+u36ziqlirsVdirsVdirsVdiqrc/3g/wBSP/iC4qpYq7FXYq7FXYq7FXYq+lf/ AFyX/o+/7ueKvmrFXYq7FXYq7FXYq7FXYqq3f+9U3+u36ziqlirsVdirsVdirsVdiqrc/wB4P9SP /iC4qpYq7FXYq7FXYq7FXYq+lf8A1yX/AKPv+7nir5qxV2KuxV2KuxV2KuxV2Kqt3/vVN/rt+s4q pYq7FXYq7FXYq7FXYqq3P94P9SP/AIguKqWKuxV2KuxV2KuxV2KvpX/1yX/o+/7ueKvmrFXYq7FX Yq7FXYq7FXYqq3f+9U3+u36ziqlirsVdirsVdirsVdiqrc/3g/1I/wDiC4qpYq7FXYq7FXYq7FXY q+lf/XJf+j7/ALueKv8A/9k= + + + + proof:pdf + uuid:65E6390686CF11DBA6E2D887CEACB407 + xmp.did:26d5bf8d-585a-d647-9244-358443830b04 + uuid:e9d8f29e-6f9d-403a-bcea-66beda8952b6 + + uuid:3e593450-be4b-41f3-a1ac-f0c60f6cd9f7 + xmp.did:e4637d7a-1015-5a4e-8a54-8a417d835ed6 + uuid:65E6390686CF11DBA6E2D887CEACB407 + proof:pdf + + + + + saved + xmp.iid:26d5bf8d-585a-d647-9244-358443830b04 + 2019-10-13T14:50:47+02:00 + Adobe Illustrator CC 23.0 (Windows) + / + + + + Web + Document + 1 + False + False + + 540.000000 + 330.000000 + Pixels + + + + Cyan + Magenta + Yellow + Black + + + + + + Default Swatch Group + 0 + + + + White + RGB + PROCESS + 255 + 255 + 255 + + + Black + RGB + PROCESS + 0 + 0 + 0 + + + RGB Red + RGB + PROCESS + 255 + 0 + 0 + + + RGB Yellow + RGB + PROCESS + 255 + 255 + 0 + + + RGB Green + RGB + PROCESS + 0 + 255 + 0 + + + RGB Cyan + RGB + PROCESS + 0 + 255 + 255 + + + RGB Blue + RGB + PROCESS + 0 + 0 + 255 + + + RGB Magenta + RGB + PROCESS + 255 + 0 + 255 + + + R=193 G=39 B=45 + RGB + PROCESS + 193 + 39 + 45 + + + R=237 G=28 B=36 + RGB + PROCESS + 237 + 28 + 36 + + + R=241 G=90 B=36 + RGB + PROCESS + 241 + 90 + 36 + + + R=247 G=147 B=30 + RGB + PROCESS + 247 + 147 + 30 + + + R=251 G=176 B=59 + RGB + PROCESS + 251 + 176 + 59 + + + R=252 G=238 B=33 + RGB + PROCESS + 252 + 238 + 33 + + + R=217 G=224 B=33 + RGB + PROCESS + 217 + 224 + 33 + + + R=140 G=198 B=63 + RGB + PROCESS + 140 + 198 + 63 + + + R=57 G=181 B=74 + RGB + PROCESS + 57 + 181 + 74 + + + R=0 G=146 B=69 + RGB + PROCESS + 0 + 146 + 69 + + + R=0 G=104 B=55 + RGB + PROCESS + 0 + 104 + 55 + + + R=34 G=181 B=115 + RGB + PROCESS + 34 + 181 + 115 + + + R=0 G=169 B=157 + RGB + PROCESS + 0 + 169 + 157 + + + R=41 G=171 B=226 + RGB + PROCESS + 41 + 171 + 226 + + + R=0 G=113 B=188 + RGB + PROCESS + 0 + 113 + 188 + + + R=46 G=49 B=146 + RGB + PROCESS + 46 + 49 + 146 + + + R=27 G=20 B=100 + RGB + PROCESS + 27 + 20 + 100 + + + R=102 G=45 B=145 + RGB + PROCESS + 102 + 45 + 145 + + + R=147 G=39 B=143 + RGB + PROCESS + 147 + 39 + 143 + + + R=158 G=0 B=93 + RGB + PROCESS + 158 + 0 + 93 + + + R=212 G=20 B=90 + RGB + PROCESS + 212 + 20 + 90 + + + R=237 G=30 B=121 + RGB + PROCESS + 237 + 30 + 121 + + + R=199 G=178 B=153 + RGB + PROCESS + 199 + 178 + 153 + + + R=153 G=134 B=117 + RGB + PROCESS + 153 + 134 + 117 + + + R=115 G=99 B=87 + RGB + PROCESS + 115 + 99 + 87 + + + R=83 G=71 B=65 + RGB + PROCESS + 83 + 71 + 65 + + + R=198 G=156 B=109 + RGB + PROCESS + 198 + 156 + 109 + + + R=166 G=124 B=82 + RGB + PROCESS + 166 + 124 + 82 + + + R=140 G=98 B=57 + RGB + PROCESS + 140 + 98 + 57 + + + R=117 G=76 B=36 + RGB + PROCESS + 117 + 76 + 36 + + + R=96 G=56 B=19 + RGB + PROCESS + 96 + 56 + 19 + + + R=66 G=33 B=11 + RGB + PROCESS + 66 + 33 + 11 + + + + + + Grays + 1 + + + + R=0 G=0 B=0 + RGB + PROCESS + 0 + 0 + 0 + + + R=26 G=26 B=26 + RGB + PROCESS + 26 + 26 + 26 + + + R=51 G=51 B=51 + RGB + PROCESS + 51 + 51 + 51 + + + R=77 G=77 B=77 + RGB + PROCESS + 77 + 77 + 77 + + + R=102 G=102 B=102 + RGB + PROCESS + 102 + 102 + 102 + + + R=128 G=128 B=128 + RGB + PROCESS + 128 + 128 + 128 + + + R=153 G=153 B=153 + RGB + PROCESS + 153 + 153 + 153 + + + R=179 G=179 B=179 + RGB + PROCESS + 179 + 179 + 179 + + + R=204 G=204 B=204 + RGB + PROCESS + 204 + 204 + 204 + + + R=230 G=230 B=230 + RGB + PROCESS + 230 + 230 + 230 + + + R=242 G=242 B=242 + RGB + PROCESS + 242 + 242 + 242 + + + + + + Web Color Group + 1 + + + + R=63 G=169 B=245 + RGB + PROCESS + 63 + 169 + 245 + + + R=122 G=201 B=67 + RGB + PROCESS + 122 + 201 + 67 + + + R=255 G=147 B=30 + RGB + PROCESS + 255 + 147 + 30 + + + R=255 G=29 B=37 + RGB + PROCESS + 255 + 29 + 37 + + + R=255 G=123 B=172 + RGB + PROCESS + 255 + 123 + 172 + + + R=189 G=204 B=212 + RGB + PROCESS + 189 + 204 + 212 + + + + + + + Adobe PDF library 15.00 + + + + + + + + + + + + + + + + + + + + + + + + + +endstream endobj 3 0 obj <> endobj 5 0 obj <>/Resources<>/ExtGState<>/Properties<>>>/TrimBox[0.0 0.0 540.0 330.0]/Type/Page>> endobj 8 0 obj <>/Resources<>/ExtGState<>/Properties<>>>/TrimBox[0.0 0.0 540.0 330.0]/Type/Page>> endobj 13 0 obj <>stream +HWn1 SƍI, -ٙA qCPڍ3>;Sy}SZ,9S՜V_|OmN} [/~'59j߼[V$X4Fz!N8}m4Ҷuw>N6I_PnKw-sfi-w0X?C8'1&(H$ )KH# 95RBJLȵP`}$p'c0FWT^ C|ɤfI:h4rO2sd0)"yt6TKE)璆Θ22m4Dv꺕˞c,4j'm: '@N ;T)scUgL:cҹ=A֯˵\rq~ǧ8SmVkşA PcԜ׻]E(h̃y}YeDĶ@\ϡ!qo!%k5&jӐ \^ 9Ec6rQe!BCאzx>^^/Q=t`"m3_oww +endstream endobj 6 0 obj <> endobj 14 0 obj [/View/Design] endobj 15 0 obj <>>> endobj 12 0 obj <> endobj 11 0 obj [/ICCBased 16 0 R] endobj 16 0 obj <>stream +HyTSwoɞc [5laQIBHADED2mtFOE.c}08׎8GNg9w߽'0 ֠Jb  + 2y.-;!KZ ^i"L0- @8(r;q7Ly&Qq4j|9 +V)gB0iW8#8wթ8_٥ʨQQj@&A)/g>'Kt;\ ӥ$պFZUn(4T%)뫔0C&Zi8bxEB;Pӓ̹A om?W= +x-[0}y)7ta>jT7@tܛ`q2ʀ&6ZLĄ?_yxg)˔zçLU*uSkSeO4?׸c. R ߁-25 S>ӣVd`rn~Y&+`;A4 A9=-tl`;~p Gp| [`L`< "A YA+Cb(R,*T2B- +ꇆnQt}MA0alSx k&^>0|>_',G!"F$H:R!zFQd?r 9\A&G rQ hE]a4zBgE#H *B=0HIpp0MxJ$D1D, VĭKĻYdE"EI2EBGt4MzNr!YK ?%_&#(0J:EAiQ(()ӔWT6U@P+!~mD eԴ!hӦh/']B/ҏӿ?a0nhF!X8܌kc&5S6lIa2cKMA!E#ƒdV(kel }}Cq9 +N')].uJr + wG xR^[oƜchg`>b$*~ :Eb~,m,-ݖ,Y¬*6X[ݱF=3뭷Y~dó ti zf6~`{v.Ng#{}}jc1X6fm;'_9 r:8q:˜O:ϸ8uJqnv=MmR 4 +n3ܣkGݯz=[==<=GTB(/S,]6*-W:#7*e^YDY}UjAyT`#D="b{ų+ʯ:!kJ4Gmt}uC%K7YVfFY .=b?SƕƩȺy چ k5%4m7lqlioZlG+Zz͹mzy]?uuw|"űNwW&e֥ﺱ*|j5kyݭǯg^ykEklD_p߶7Dmo꿻1ml{Mś nLl<9O[$h՛BdҞ@iءG&vVǥ8nRĩ7u\ЭD-u`ֲK³8%yhYѹJº;.! +zpg_XQKFAǿ=ȼ:ɹ8ʷ6˶5̵5͵6ζ7ϸ9к<Ѿ?DINU\dlvۀ܊ݖޢ)߯6DScs 2F[p(@Xr4Pm8Ww)Km +endstream endobj 10 0 obj <> endobj 17 0 obj <> endobj 18 0 obj <>stream +%!PS-Adobe-3.0 +%%Creator: Adobe Illustrator(R) 17.0 +%%AI8_CreatorVersion: 23.0.6 +%%For: (Andr\751 Cardoso) () +%%Title: (Untitled-1) +%%CreationDate: 10/13/2019 2:50 PM +%%Canvassize: 16383 +%%BoundingBox: -973 563 -433 1276 +%%HiResBoundingBox: -973 563 -433 1275 +%%DocumentProcessColors: Cyan Magenta Yellow Black +%AI5_FileFormat 13.0 +%AI12_BuildNumber: 637 +%AI3_ColorUsage: Color +%AI7_ImageSettings: 0 +%%RGBProcessColor: 0 0 0 ([Registration]) +%AI3_Cropmarks: -973 969 -433 1299 +%AI3_TemplateBox: 960.5 -540.5 960.5 -540.5 +%AI3_TileBox: -1063 864 -343 1404 +%AI3_DocumentPreview: None +%AI5_ArtSize: 14400 14400 +%AI5_RulerUnits: 6 +%AI9_ColorModel: 1 +%AI5_ArtFlags: 0 0 0 1 0 0 1 0 0 +%AI5_TargetResolution: 800 +%AI5_NumLayers: 1 +%AI9_OpenToView: -1180.94285714286 1391.11428571429 0.972222222222222 1464 924 18 0 0 148 150 0 0 0 1 1 0 1 1 0 1 +%AI5_OpenViewLayers: 7 +%%PageOrigin:560 -840 +%AI7_GridSettings: 72 8 72 8 1 0 0.800000011920929 0.800000011920929 0.800000011920929 0.899999976158142 0.899999976158142 0.899999976158142 +%AI9_Flatten: 1 +%AI12_CMSettings: 00.MS +%%EndComments + +endstream endobj 19 0 obj <>stream +%%BoundingBox: -973 563 -433 1276 +%%HiResBoundingBox: -973 563 -433 1275 +%AI7_Thumbnail: 100 128 8 +%%BeginData: 4736 Hex Bytes +%0000330000660000990000CC0033000033330033660033990033CC0033FF +%0066000066330066660066990066CC0066FF009900009933009966009999 +%0099CC0099FF00CC0000CC3300CC6600CC9900CCCC00CCFF00FF3300FF66 +%00FF9900FFCC3300003300333300663300993300CC3300FF333300333333 +%3333663333993333CC3333FF3366003366333366663366993366CC3366FF +%3399003399333399663399993399CC3399FF33CC0033CC3333CC6633CC99 +%33CCCC33CCFF33FF0033FF3333FF6633FF9933FFCC33FFFF660000660033 +%6600666600996600CC6600FF6633006633336633666633996633CC6633FF +%6666006666336666666666996666CC6666FF669900669933669966669999 +%6699CC6699FF66CC0066CC3366CC6666CC9966CCCC66CCFF66FF0066FF33 +%66FF6666FF9966FFCC66FFFF9900009900339900669900999900CC9900FF +%9933009933339933669933999933CC9933FF996600996633996666996699 +%9966CC9966FF9999009999339999669999999999CC9999FF99CC0099CC33 +%99CC6699CC9999CCCC99CCFF99FF0099FF3399FF6699FF9999FFCC99FFFF +%CC0000CC0033CC0066CC0099CC00CCCC00FFCC3300CC3333CC3366CC3399 +%CC33CCCC33FFCC6600CC6633CC6666CC6699CC66CCCC66FFCC9900CC9933 +%CC9966CC9999CC99CCCC99FFCCCC00CCCC33CCCC66CCCC99CCCCCCCCCCFF +%CCFF00CCFF33CCFF66CCFF99CCFFCCCCFFFFFF0033FF0066FF0099FF00CC +%FF3300FF3333FF3366FF3399FF33CCFF33FFFF6600FF6633FF6666FF6699 +%FF66CCFF66FFFF9900FF9933FF9966FF9999FF99CCFF99FFFFCC00FFCC33 +%FFCC66FFCC99FFCCCCFFCCFFFFFF33FFFF66FFFF99FFFFCC110000001100 +%000011111111220000002200000022222222440000004400000044444444 +%550000005500000055555555770000007700000077777777880000008800 +%000088888888AA000000AA000000AAAAAAAABB000000BB000000BBBBBBBB +%DD000000DD000000DDDDDDDDEE000000EE000000EEEEEEEE0000000000FF +%00FF0000FFFFFF0000FF00FFFFFF00FFFFFF +%524C45FDFCFFFDFCFFFDFCFFFDFCFFFDFCFFFDFCFFFDFCFFFDFCFFFDFCFF +%FDFCFFFDFCFFFDFCFFFDFCFFFDFCFFFDFCFFFDFCFFFDFCFFFDFCFFFDFCFF +%FDFCFFFDFCFFFDFCFFFDFCFFFDFCFFFDFCFFFDFCFFFDF8FF7D7DA87D7D7D +%A87D7D7DA87D7D7DA87D7D7DA87D7D7DA87D7D7DA87D7D7DA8FD077DA87D +%7D7DA87D7D7DA87D7D7DA87D7D7DA87D7D7DA87D7D7DA87D7D7DA87D7D7D +%A87D7D7DA87D7D7DA87D7D7DA87D7D7DA87D7D7DA87D7D7DA87D7D7DA8FF +%FD63F8A8FD20F827FD42F8A8FD63F8A8FD06F8272727FD0FF8272727FD05 +%F827FD21F827FD20F8A8FD04F827FD04FF7DFD0DF852FD04FF52FD2AF87D +%27FD13F8277DFD05F8A8FD04F87DFD04FFA8FD0DF87DFD04FFA8F8F8F827 +%FD07F827FD11F827FD07F827F8F8F827FFFF52FD11F852FFFF27F8F8F827 +%A8FD04F852FD04FFA8FD0DF87DFD04FFA8FD09F827FFFF7DFD0FF87DFFFF +%27FD0AF8FFFFFF52FD0FF852FFFFFFFD05F8A8FD04F87DFD04FFA8FD0DF8 +%7DFD04FFA8F8F8F827FD05F8FD04FF52FD0DF827FD04FFFD05F827F8F8F8 +%27A8FFFFFFFD0FF8FFFFFFA827F8F8F827A8FD04F87DFD04FFA8FD0DF87D +%FD04FFA8FD08F827FD04FF52FD0DF852FD04FF27FD09F8FD04FF27FD0EF8 +%A8FFFFFFFD05F8FFFD04F87DFD04FFA8FD0DF87DFD04FFA8F8F8F827FD04 +%F827FF7D7DFF7DFD0DF87DFF7D7DFF27FD08F827A8FFFFFF27FD0EF8FFFF +%FFA827FD04F8A8FD04F852FD04FFA8FD0DF87DFD04FF7DFD08F827FF52F8 +%FF52FD0DF852FFF827FF27FD09F8FD04FF27FD0DF827A8FFFFFFFD05F8A8 +%FD04F87DFD04FFA8FD0DF87DFD04FFA8F8F8F827FD05F87DF8F85227FD0D +%F82752F8F87DFD05F827F8F8F827A8FFFFFF27FD0EF8FFFFFFA827FD04F8 +%A8FD04F852FD04FFA8FD0DF87DFD04FF7DFD2AF8FD04FF27FD0DF827A8FF +%FFFFFD05F8A8FD04F87DFD04FFA8FD0DF87DFD04FFA8F8F8F827FD21F827 +%F8F8F827FD04FF27FD0EF8FD04FF27F8F8F827A8FD04F852FD04FF7DFD0D +%F852FD04FF52FD2AF852A8FF52FD0FF852FFA852FD05F8A8FD05F8275227 +%52FD0FF827275227FD04F827FD21F827FD1FF827A8FD63F8FFFD20F827FD +%42F8A8FD63F8A8FD20F827FD21F827FD20F8A8FD63F8A8FD20F827FD21F8 +%27FD1FF827A8FD63F8A8FD20F827FD21F827FD1FF827A8FD28F852A8FD0F +%F8A852FD28F8FFFD04F82752F8F85227FD0DF82752F8F82727F8F8F827FD +%06F87DFFFF27FD0DF827FFFF7DFD27F8A8FD04F852FF2727FFA8FD0DF87D +%FF2727FF52FD09F852FFFFFFFD0FF8FFFFFF52FD26F8A8FD04F852FFFFA8 +%FF27FD0DF827FFA8FFFF27F8F8F827FD05F8FD04FF27FD0DF827FD04FFFD +%05F827FD20F8A8FD05F87DFFFF52FD0FF87DFFFF52FD0AF8A8FFFFFF27FD +%0EF8FFFFFFA827FD25F8A8FD05F827FFFF52FD0FF852FFFF27FD04F827FD +%05F8FD04FF27FD0DF827A8FFFFFFFD05F827FD1FF827A8FD05F87DFFFF7D +%FD0FF87DFFFF7DFD0AF8A8FFFFFFFD0FF8FFFFFFA8FD26F8A8FD04F852FF +%A87DFF52FD0DF852FF7DA8FF52F8F8F827FD05F8FD04FF27FD0DF827A8FF +%FFFFFD05F827FD1FF827A8FD04F852FFF827FF7DFD0DF87DFFF827FF52FD +%09F8A8FFFFFFFD0FF8FFFFFFA8FD26F8FFFD04F827F8F8F827FD0FF827F8 +%F8F827F8F8F827FD05F8FD04FF27FD0DF827FD04FFFD26F8A8FD26F8277D +%7D52FD0FF8527D7D27FD26F8A8FD20F827FD21F827FD20F8A8FD63F8A8FD +%20F827FD21F827FD1FF827A8FD63F8A827F827F827F827F827F827F827F8 +%27F827F827F827F827F827F827F827F827F827F827F827F827F827F827F8 +%27F827F827F827F827F827F827F827F827F827F827F827F827F827F827F8 +%27F827F827F827F827F827F827F827F827F827F827F827F827A8FD63F8FF +%FD20F827FD42F8A8FD63F8A8FD20F827FD21F827FD20F8A8FD63F8A8FD20 +%F827FD21F827FD1FF827A8FD63F8A8FD20F827FD21F827FD1FF827A8FD63 +%F8FFFD20F827FD42F8A8FD63F8A8FD20F827FD21F827FD20F8A8FD63F8A8 +%FD20F827FD21F827FD1FF827A8FD63F8A8FD20F827FD21F827FD1FF827A8 +%FD63F8FFFD20F827FD42F8A8FD63F8A8 +%%EndData + +endstream endobj 20 0 obj <>stream +%AI12_CompressedDataxkǕ-]Ù W~x.Sv[nzMVl!P=_?kxdfD")J쾪H։8رkW_<{Q}po~y~o߾G?.~ז|_`1ūgoɛg}~?xzy0::=yZ~/`~J'ollw=ssgA(ϿvN~/޼~zW_~/W'_}/< sk['o]ZǗ=쟾{[LGQ>?|3-ǿ~}cCez,Tۯ˺`7y_Cnsmۗ߼,䠎wkKk+ӥ*w:甫M)ۿO_yxV)UU_~^=,g/Od>O|}woe#LokC~߿gZ'u$5 XZOѬlA2ګ>>YGGm(wo/}PϓSug6GFe> O|a߾}&귫Msʙ|׵vEwc|+v*u/C޼_׏>YKyP*R "=yodmC:ۧ8 +~'OyHX7]n_:(^߬:./zOZ[ Vu oA}|i^roUՃAo_=^~]Fη)=ǫ'/^<͓owׯ_wuRo>h^x'_`?a^ߢ6_d|F>kI=c[՟S?s36_ (o鞃i篞a_}r6_??VNNkҥ{m}o}7W&zsܙųW/y`h_qG?sx| 6*fU7.ѫ*qU\ʥ+T˵oj^L̪UqQ(V%\?/\o'xrB7벞>^CiGM\*rYʣskZL ܮ뼾u=tY%uΫƟq,˚jugQkS`{Yqv[uqIVyY_וݮf{tx)\)\RV+qefW\rbpk ke\TX'oʷdԺ2Ȉ.W7  &l/QNKuy]r(W Ӣ8|_+9Ő4^bH2\SИC1/U<lIrɧb"]SN78xlb)e| ^X_X _ċt/...Q.N7J.eLUW˛+u'n!\˫ p'))tu>`kw#J@/q򯯯o5n057ua\4XȚ*YVjU.WbSr+1K6ů[*؍Բlj)_NrU +_ŪUIW% +.,L+nS쪘UѫҦg_X\e)ns۵k]`EУ[j%: ˼b93mfo0v^ʜ\ԒZPI`aԵȭЏBys)墖,%ՂÎB-B@Jn՚^:^ʺ%Y'/P2' ٷQfikK|c:[\ȸɨ0lkL%HZiD΁<[}bx@4 +[pBzrra 7} qd] 1$f,~rT^ bY  6 { ҟqp`q-1bK_c%.=.S׸;aI.qd\<\AWp=pI]qmGp T!={ܚɄdu(vYL>H&&0/^3UV|aEd&T6tI|oRŴm";^6+5ZBDKVb%eQ^e[YLqSª%02h+1(?߈[h%6Q%BRFd&PX,뻤uh]N?qHf+)o]~w^J8S5 1%YFu*(eoWTdkG7;=,Ƈ|=W'𿍋?R i'K"7c0^ Z9M +y̆Z!kq9=iՓMlyXVaOxRNGt8iMyM;+/gNr:Ğ?,/2_n';t33LeSkiKJn~P&r$ U4]\+lD, +Y}!bV,,u%Z"hQ*E+Y"h"h=L--FD"lQ2ETK raTF. +^EEˋDNJZ/0aeSHZl-ZA"DNb&Q8f] WW:)Y;rxQ/XF+e?uq / ++- >aE_utvF.(b+kM9:w'>j|ϧ5d럭Rp\D"""Rlu~~(aSl4q22Wy].R5rs3@ 7)fҴsgJ8[>=ơ;K{E(>zz`9=ӽ|pAg^g R5ՈRJӡWc-MkYXeii4Eo] 7xJ%krfwL6j6mtBks)1Έ.<١,Qx'y(X:xoJ:gL8wTvcwUtb(&/f  cXA5ptx||)kt +CcՔLc򵘓Aْ ^Ű|!2n*(ȣ 1\A4̲F(#ҫ<ڣC~b=*нՋè3sr:ks08TcPi#}s-]8ZA.>Kl;櫿ۅˮQAvnLK1r{ܯ4AT|ċV +MTGQ)u*Qno+@Oՠk>,3W+hͩ/Q[&qD9 8^{rwGhH_Vݐ%fUQK/fzyuߗfqթw~o1W|0דպ;[{k]"1[ZȿEf 5Yx4ױHE&"Y]JƔAD>N"7 TdQN,.Z$&+me,UU]wwlSee_IRiB$&)c틬lr괒XrDByǐOE>^IȔ"#$KEFzrvN*㿯J=e F׿݁ti foۭkǟ +ik th`{: T% XWK{C VI?H`+NOkX~[}| h_K5.d%oldԵ9beFFO2B7 lSN?\>tMKt홻zvGT$9;t6k}ާi=_U^=W鵬OS5i&9Ipҽ.$TA=U+C*IA^2 IE5eWT43*Ts QQ@ YG*(Pr4mHFA-AZG}LyªRΥ=>h!GaÔȇ觖Zv`!Y/:m% JW.GF)qZ^}#/Q-zrk."\zURO]З`qKnd-Yu-K`>Ľ[.-aE \7!vUKW@$EDs +z1!7Vuu NQdXK%RYԺp^|/O%rRcs]dY7ƺ6®L]׋ߔ' %pb*WgMTq>-!L!纞t^KueX j7U%N`U)#D2 e +OkgN]=Yӥ 'e[z|ݟI#?^\< /IշB4k۴%od*= Q\גo} NUKhgnZ 5yKѓAՓ,ESx,k %ʋ֏ l ghL /X[?GAZq{^XkoU'KjRs&!>T}6ylYDo#[lxW-IaKA"Lnc͗C DoWG:Ic-2"%.E,>U^[Y|+oD^4K5|͛tnzZ7+IZ^R/˵\ҾhWeԛ:Ԭ`YTPȅ \mT.Zh^y;_:޹&&Cy/1 +$'p;l|Xkj+b;miu\]uuʼ!!.ԪC؋B.(j*!7JYrklʂ}vN )f٬n) RIM+/oEj<@ й: hiDC[uJNBĐ>JF[ϩ1Ž̳ UBŮiER)jy.Jtc 7xƽ点6e g<sӣv' }|cN WVsdmmdRdأ 2U ѓIW(飼ëWO^>;|]?:,zӵ/uESU0>v `5QD@`֍V njp4䓡mU>:bԼYjMX[R ~Fycx8}=GfݬFyZpgj= }gv+u%h]{Z0>2vOGpXR4ZKčWGق5'6ɩl86˰d&xC .>{2͇Lٕڧ1Q˕8gDIm!4Ԣ(ЇU1K(32YK;f]ݳ|ST$H)}֝n:܈,)~nSJhʩ݀J"5[9CUJK姊"L6rc{anZ0Sŝ)~[_1~" Xw zwGњz,=ĸ +ý!oCom:_]z{/;M6܀<Ʋҟmƕ?EϙΥq=O5QjdmMڱ +vϑ +a-=WZA,Ci<^lI Ѡ9KxtۘCudRr$dXS +)Kз%=3[ʈZpwF ΀')(g|cSG|+ ZW/lqäǬù?c|_?y7듘$2牛DNל\se}R;\Wϭl$ ۷i澼{^5)I_ίh<!`H'p{Ng,!I3N+-k~T{x:ʙI Y/*uM`= uꑹ-cBC5}r LD] G̥\WgήhHCJ?-H_Mu)n#pYXAրYF|Cx4Ь5l*Bg~1 ê;J)'). KT9#O*`$YdT"-fJs'rߧ1ݮF+J#sP~]ٓXAo*/Tǯ,lM5yVzr #KsSU&u<%Kp|T@ S0" P@@ѿLk޿WOեf2)yN FVZeR+En/zwVN,Pغ1Aֶ5|Wbb07Ts +vN͹;Vl.枦aܚz.WPMJ.n9Uj9%ٺ3մWzYlm"kFil|%i6xK n^Ų^֡[/!q7;W\+Wm{,Bg?Jw$qմA6yYmb9AY9L֧)z{Cϭޫx9J&!V,@75SP +f &;g?}E:B$LBΐU`E)v˵])lQY +-WC[ua1##.р]+ x-Ep[8D +GHN=ry"_C߾ǭhW";sГhWBV\|ɿ*Φ.nI\ޕ3@=-P[Hf3˴/e-u Lk,ARj6ZJ6I~y%U͌}!{F]0vK܍ 1VյץA$n3L l,lj=:\V%NE )qtQ< T>c_#g6}. KZۓ&A*-/$+ѐk18{ 3;E<-f1ٖEj5k--ZCzYĸPqIcsOeNf0V #."5+XD[ Rû~]%6*in>Y_iV4;j֏b坄h(mqUQyM&dWGz&S*i"ʆyp#.M`1n>C ~`G_].έA{nufu^uз8.ZsWt Rs6ƩnsX7ww ]c9*EϚӴVuvU9S^wr=Fr6&( +?>Hcg"NY#j +)vk73qn{6*xJ8mͪ=M¤x;N{u.!crЛANq4KH)!rq`gDY\!A9K*{9,52y# [˟Otڭen>.&w8܃O =ǣ:~Q6uÒ mS TXj1=vKުuQU9(?vDީo3njBX´4Cc]C;>.HC[]Bkx}4UcJ<ׯx篾 +`]Fl۷o^' r>` Mۃq0$bGFfҸ\ǿ_ow63{~{Sg_AK;ovwo~,ʙ_\~s:='O/ny?<_wSwe +":oMQ'm&(-q.ClrX]2TND2Y +,' xh!eI8f3*w |,Q3ɀD qQcO䏠j|5ed<ٸ*Q4m"H;8{e2|TdD "ElĿ:/ik!+Hp:L 0|&(&`My+VX*w@Vد`&. $爓k)uF{[cljm|z!P%6)f[$/{]TZW6æB!ٶ>& =p__Èm8`4|~8FYÉӆê@$ H=-V08 t2 kn~, 8c,,k> m*Lf?c*#vI69טY(*^Ǡ0beiEpj82L}kckA#hP4ΰ5C0!DLHڣH<ϒ2 =} lx2$zrr2x:nw=p.̰Li#wۇʨW-_)’pR`W*:L9Lìytb9WZ5PΙ[&T.VP. +[ӂ.Xܯu\YR4`]`QJGݘ݀*^1Z]Pk(b3|^GW{*}M7ZQߩm3;p.oyzwd~wTe+_~sx~~<Ά`$%NVdjꊛmo8\Uq$9Yo\7wٜ7Pcs\:`Rk"'|%<M`-A!5T ^m7Yb,YYH-s݁CQ!U6*} cT՞6NU1-;eS4>GVtv~z|ʙ n7M^~Nbx# ] mAO>8z XP,;6P9JG^$` pc ^S Gg|J9ez*0Xki%T\#>{C`Cv]E@MO`2?4݌ A?z2HopIʐWh&quǤ$) +|"Ys=xY e]){43ɰB,+iJq3?RUp8T^Vr2b! +qzxx Ky zٷϟ%%|||\|c]⭢a‹Rױ ,C"T^;t\,ش^yHe$j1TA%:V&8bKB'@qc;0 NǐC +޵ehDw{+vRMhD2H^{Zli,߷RU.;QlF積vu1ZTWޣlFA2uPǢ~;XE1)k!C#:Mu|OZU0Q '쌯Vh|q"ڃ2HU +$ rZC,TQYh |Umk6,yXTh(p6 UQ{>nm|dHH֤,fb]<)6@F +xkv $}GDl +խOWqt!\V.ll +`. +[۟0Rt?<#7l7V?2pQF h!a +n'om,b*ff$eLx#RFlS4aXlj _38X@!n bï։9ye`Ї%oUydxox fˢ>f. +˽¶$C-unJ@Qi̐7:| tGU! 5` @D!k9;hfhW'ט9LT4Ӝ0=9_Ҙ/pP^D76we$1ⴑ +[Άqaykho`;T͵t6=m,t-g=mowsXk%lMtsm5w}bseWW&Ubk Ȫbmkl~P[kj܏MžÎ,hxF+M TU?Fo x!?/wM*b=d*gE?n K?]l!u%o(lTC{Wt|j*Wf#`IB8D/%@Su+r8`%QQدRI*=@I& xb!0{u1 M#Ua!DپU1[,yUEG#-NS3ܮ *WuT=3d47ۨՠ3DLZDelQ7d]:2u [oսGf8@FE;̃/Ո^qOo5gh^q0'+LC"p6 ,[\0v!z3p6xLS=#ُ̂ĥ\$){<)|d$kyȳ$9xf=h-$IcF)+Ya%;OI6NٸLXIM^qmkÒJ@?YՒ~l&KTRu$IF{Onh3J`yY ^%UࣙIb4;%=~S~qo`Ynޛk+>Dx-zAV?HB|'WDqo7)1 |d4 kjAvzqq<ҭ'bH+jڸ﫺ג|z Zւ 0:ifv<m*kr5R!@t)&؞AqI8‰y+V*OIÃ)-tgFR#EODʖyr4(&*p&S0q9Kvw[CM/j'QU`J)lorK2⎭Smv|*ώ]s*R.Gq]fqj|Xi*ӌ8S}֝W՝L-yIX.{9? rp mho5ugi,XxUʯϹ)agV;|m0]oZ$/ft:٫PIH-4ZU|mMO"X]}5 @#iߜbU*@@QahBzXqc Z +1)dniio$,D'9!$fSNt 9}B(XPw( 1qnQ5zUkylea3"AR/rV,ݛɧ(\L/gV +(|\ Ь{R<-x*1k$47Ӆ%>>CtQ=)6sW%w[T'h-!8a=t282ng sefPa<PjL/54xNq6ܻ,|o|XʡLℜq˧?(:*Y?fJ.8r +}D'}qrKSYlf}ލu̐څ|ofR o5ck I6F_ž/oZ ;ty+EM~ ʩ-[yK=NqOoVo =(k@nIh^S~PbxWa02ag0*}b?`ӄNcoe>0MAķm(15kF?Y%xh6yzc-馱f4V j51A*A^hH85:lAJLfh=D?m4.eŽխ}8h{cq)B3Fȣ6hZqXC1$UF٨۬gp{̿>35gb3Qc&L-v;4r0Ӯ biܷR,~+o@7%RW=7EE ]s *(P N2 ++x4YcL5~#Hii1PˍxL ѺN3ayv}k t&l$$A}E]3k`M)(`Պ|-6k) GT2í_8@ԑHw2ݕudva;( +D)X4rh.؂7~갍8{MIfĀ .1NYhFC#cG`!FĠCW 'CU8VQ@QE-4ʣxQĀ0Eň/ƶrEA_wA +KW0Su(NZ< _)5%Nrq9աE(:;Fz bhZйA2b LQ@FuBZtBIdpuh.sIs_NoDMć\\#ՖMU$ tMD 6*L[DQ\4piCZ&ByaᚙD-Ar%Ff̓'K_!nM̤hW O}HCJF\`N!**vy"^iV탴}YcY.(~1`jiT4؉آb[#JqbiF66 fj1U}Ԍ.ZY +6ۖ{o5iiܷVL \{,v, + +t XbLb .9HL!%YHB1$hWDGC,|zJXQPQXS]U9QXrd=PYhlϦ3e'PlT%)Z$}{hЃ +U܉S?1nLrUfLMNi:!Řӑseڙ"M>m*Ċ~UYN׉0Qf ;ad+FȨd41bf1ʖ0ItIz옱Y"NZg;7oѻhd`əy,Sf(hN7; Q +z~A}89s?OcoVMH/=b"Xbm8S3cQv D/&Dq`~f1IlTFvc7t`cFib|]-@<QFoPw)O'DwbQ1׭s.gbi& tz0;-vHqi CmuO魆O3u4M0ja=`J1\겎HBMQSOTr>6EOk Kp@p$-6Zb$?8wB~{r;cZϡY5Fq{M4{W6N@W$8KoDKLrm (z$ɞSLdc8%Foxlp$0\Hj`9}K3Ԣ +roG`ZN4ҳ鶇fDaLϰ|ݪ4g*S\j2"&0|ܯ UB"F؈VeA3L%;0M-@.KhUصVhSZz>Jgs3zS>1>=Ȥz)usGYq+ +|zeD6GlW 6t>I\D |{7q fNKBe/guGBL|̳ܳg>ʚQTGێ:'h#`yyK_}&6{ǍhqGx|k@yby}Ԭ.@1-yA}8s?,Nco9VJpky{Tl1x'ө/`Xӌ8HƄ&8dLH俿1 N(1AdLJF8d4T}p pBǘ +Gt)`c!1& ccc +tfw7`2::ƈx8cLЇ#JƄAɘ0'8ctP]L8Ba4 &#`4 A(N Lq碡*N ^qB8Xeр' qa1!0N62X4t bi+F}q'/(pb1a"N#>ń839c[=4#LKcXL4X]-AGi6`J4<B17n+&kL΃{(;Ͷh*<5|Ez99+A 5bnF"9l7OG +BbZKLQ$PACEha[T_cyf# bV fj1bg6AN`LLZGM3v4O8{jEPxטYIM1#hH7͖27-6wΦ畕=&I Ғ&-ZeڲJ{A+ӾT?g24%LJۉ9 -6EwZG9?M4Ve~s *xx!?xL3z@P S$+!qD'M8,Ny_1 + +^MRU+J`T͊;C[ TDZY.;s80 bk;-; s33NH Ќ;ВK0%iɏ@-kCLuP +R(cj0Of:` +]<8 ;;<䭃_L5d,v N_bݔD1_G:EK +se{EemrP5ADcb J-? ^%24TtAgZ I2y)&i;Re|K'xbx~cbsp%pL`Y|(ZtoiܷV?8-[ɄYsSĞ܌\"~Qc]-攠}0 S.⢶wWUsCyRLư8QHD +Mib]U! R?آ>jiܷIxDg&OfIh/2U-A!W}NEձ#k~}x:0ޡfVK"i0ᘈ(h/3T'L1}3i*fEsV#2޷m꾘]5A&fIR@hϒ6Mui%3ԋ[0o5.ġvɗD $izؠLS8徵qSF[ Ae:vHMLG[ +'P]pEAɄ.Ÿs*DT#HLȆL-6m3lUJT|AA Avjlvzc8 6>1z@ Ev#RnV%.#q w &,:0ceXB\H!K{2'K XS:,ug@xE2}ZY*7jyЀ8ՇXPL𜳳3pijėi3T<0yi=0*qZ4?Gw+Isv鵒1.THa@(wah[g}|NENZj +u;;7E,29o=ЦvGBE|BVo 3y"5Ǹ^T@G˃e|{Kk_1>-SL3zZ;2sxI✉;t]W?>U -[ +jGF>:;7Ey?q>o}c͛ׯo֧/9o}n^W_.Xþb ?/s_Oֲʿyt=2u|/n<}vyůWjۯ|۟?-P6X% ԋPR +|(9L ^ԓTmcQĿ O=I/_HF4>o sX67GYWp:^>y篾.ۧӑ}@boc$[3dhDet/ *p8^Ӥ>ީaԩoe'k$ҬG *Lxpf.:\IK^&IvU%:Z4VN0v!uHN BUaԩmNB~Z< Ŗ& h`wr٣;`"hV}VN!Za2iƔ^9 amMEi(TtqAm;0 w$ig&0H.⏍73a$"E$zНf.Yqp.,/bNw*X/IQτE"Ȩc#ЌZ 6Sf|Q6d(#LIIīq.+-&I(S1w%X@&';HU3b':!:qTL2-*?3x$L) Z*/8q3NK#MԒ= N:SXc2OzNPUPm D +SH`XD7&tB ѕDw6p2$1Wc>Ll./ /p"W#ӆD C$e.l(t9Ԅ+GHA~2g +|]o|,чԌ!DeXۇx8$!Q A =FIxPڲ\a]eCӄ&d(bi!5zI6ۭ#SF#.$m1{Bɕg%3=+EfX'u1i6 CX-ŚI[ȼHԳ ۩a\1Qt1u2tDh{okZŃZ+ƺT#s"u%N +.q/G fgڲQY!T+*>zT|bpPWxWqA*:dmBs`5MJB$u+gRgc)jɞDInu%MC!zC.0}P$w۲Vi*O/IkZ*s#iRG=crqNKrHtJܶLS/\A(4N*Ml /QX^VUC@u*䐃O xsyEN>h_kinke C(:khg|CŞ(TTqn/B>+`i7*+HDjtc[P8mQ'?>zpT?';]VSPp򠧩(~DkLVPDW/!kJd\'njHfgt5/BUSsɸhZq5{i 6L+bu"6H(bObF-3K@I1 (Њ-+y3Yt֌(BeɔDLNɚAXi%[% +&n*Xg XO5l0Ph[OZ tU!!aSntQ M*+1 NLaލ: *( R Gu&HvcOw~^i:lG/E95?'*m]WhVH< +*>-RL E=!%dd59䉩PQPrvL.&vG,'LQ+&m!nM@1R`s>H%EGQpJ[jN,fQT?bjիZI(QqFph(C}QL4vbI㝗r)Nm)ME-P=TFX D%o$-Ec-TH^Q.?L@a]$/;E7Cia~P:f 6TA7p/*@H{6 lAi n +\ f֖.-0'ay!B3[?ɐR +Eɦ0JK &O YGTX3o>ɸA4k!OfPnbZ]:-䜠[nEds՞e,\w^\ 8?) ; yQA8:MxW{ƕ{AґIκ Q(JRPV>[y|a3`i~(IJEyfQ,$ɠZ 1 BљX^5ÕXtp c pT7#[0 ]LK ?š^.;eba +[\5@\EvrHVc'8 IH$hb>M BuX/9ou@2uV$xR5+XK= 5h2xp&8%k"ӟS*$ߘ$>l=1FM%QI^1~m,z[*FꚸA%ȞȬ +@KDߒL5BIE ]&0kGV0Zx7H(ݡ(EA@'EuaŁ>]t@Koh I%DHBl!`ʯ!DN +r"3P(U;,Iȓb.(&KٙNe-WAA23 g{kRճw#{"KRIK74uJ?Bܫo 9e$Z.谓!>e"vqҳoGs6ZOth $v4vuuɮKž#;jlcH [Qu_ױTߘ}oԁdA'>~𹩧mu0[1W7,_#LCŊ.j̵Y?m +ھ*%F؍7^1c **rg?lM26G|%-%IΏt$dz.x"fQH0"'4$Ĵ#`c!:r87pp<d~=w)VfBZn;R7UXcenW-"wfXސ;*Zm Vy&Y (1Y"74hevr.Oh@b*3Df @E7,mes?axfߖk ߝ{\ipVvha#~u巔a^H:]5,t_;E+ R+s^cţAm3.HzڈAGf9Y @ h``&E8k'!}(hF낪n=]1ieޒm-&;n sjE![UJZϩ@K[xj s;)Gsj#cKY͊猼@>pR +d6GaԔls Y'jni.ETw){/Pmt4XER8xH70=v?c1nO4Tyfm~Eφ~g#yBǂjY +8P", FK8, uЛ1ݨF >o4u;`i~ wqFL$"zПaD2q<ܼn;B ydR>4s>G\ժJ񹂌|N\E U S)Q}v|x)68LMSA5oѰ7jS @2 !o)µ9ܱEDmb7ʽcNdCHʟKXҀ#G*)ĸ3F/ۿsbJ^S. n<)9SDD-%TOԦp/k&oG f6泅@w5$*ÏS0[TҠ,2ʖՑx:sulJdn/rկQKLn  c +qyo8-$nXA&e`es Bo_*ORx'1~X*m>Y-Ll;ܥ]M W1H=?sDb>?bG9,]pk["S~0fUP﷯}f\5SeSekcnDM p͊F?G*"Bށuq(TㅧZB!GӉ +󗡇x ^@- :&F0o:H`74;OxOr)0r3ŷeLCsS`do+!1#憋/HNLC郄qeh1:NZ0QE:W>WP;{Pzӣau'K{뵻(oLw__0'Pq e}8u1c%k}ݵ7*,kӮr"h*7q&A4 vFk; J,#,Mr2["l y4- H.iPڻAm/i +|9ñC8 v| +|E4jXj#pb!H$hn n= h F`dޛusgDI,:yFO/6+i +z9Tco "g9;  +zL= DoGo.][IDg41,SF_?3.3dõsy 3[~0K^_m%i{d %*a + 3Y۽^K&T`&Q?W&x uj6h)FbrFw?zLw@ +veAV;8Ŵ\#ìg91̮=n9sݹ!۩ +ʋ%{_6^n~2 xṏF=)93@F9c%GѪ&V,B,2/p J9G7\gfgRho3/BYfR!JDQO ..v+5tųJ3%ASθ)re*.lƲD.֌Ţ̩LSR*qڈ+HpDP ~BV^8V$eS}73;ٯ0@-pI`z S*H%tإ w3F&i^o,Kj̀f TZ2x{$xK`y`YLt_9,w7*g2~f]4k8{#'+QqbvK Aj&FX޴*ƘC1tٞ3Z*HqrC X(uJQ>0cpd6шH@ ܌"0w½k#]ysׇI +g`iС@,y+6`AC@}y.Z+\Yr3{W,NHBQ(JL?8c`?-¢> +rP"b=vJ]^LD~@E'ntZ&ףBa)0sSmjȭ7kf{p(V#>7jz-Fm{j-(RS +me4k*|:g+ԩtmͨm3.57lѯe6ݸK>8O8 0;q7y:j29n2E `cxn76>߅:Udt|D.Se7PFl5'8>WsWDŦ Je8gPXi4 s "(-P q׹YUذ1 HNI :HHl2Zh=7V [nA(c& +j(UKQ(P*v@zI&HԔ=҇Lki{أ؈ ++G4,t ]^+xuf+N7^2ϣL,HTJWK%J!&):S3h^~kV73ՈZ:-~} uI`B`?= )Tč|AUvȣr03?%$ q `fK&0c~d7nhݓ4o@?n{ܵN]43"hy:#>8nF 'a] +_s!@Y{ PYbΫF8n@玵 TKم^FV?GW>e0 +42iu5aA`Yi'Z[ +ʴ\+rP,?z駓3҃UX[V``ySap[1t)7P9t~`u(EA83 +jttbSHx9D)MP~ fE.(Y +e(Trxf _?+nP `E| Ĥrz"Iنa`Yv( UE׎'9~spjXЂ2͌kZe_hV5>%2y ïmPD;sm.BQc*@Pq(ns xe#tHiTY;yq, &!V CH{H wP}6y_"gG?^qZK=z( =n\p^x!;lsQDMtIZZ@*ݎPьLH' dFVA3Ke [k ]nBx5~]}Tc0UWv{T{ ,&ĖH@ER-H-) Up ]nvf)~6JV Z}HI-9wQ,n#Jݍ<0(YPBtD9gA38#enNTN]Gӫ ٺ7'$!"~l qa ,c!`# =dk&YB !VNt67_%mkd.蒿BX3|nErQ@q3, xH }"!>w:ul9^~킽yiyA΃!Mfp=%4,aLjx [ + !!1Heg~MHI%q1;*;:g2;-whӴa[*l-:QnJ^DlͲ?M)$UX 1ckX8c JitI3g8-4IYO/C+GLnyRzr^p%kmEkl*-٠4+x[.`lMyS^pYK#B 8^r dC(Y +D^9ݻPa=bc,[\34I1FZƢ`އ ޲"5ѢU7Yk\eij 1jzE_2yDʕ869+Ƹm}HʣIAp;"4LN4_ $mduXED-pTPDk14ky3#O+>LeHk F!mt9ƌ+ t6{'ĝdeО<VBB:Jk6+PP"RX ,jÜc3!%BKS}Ĵ+)nB[&ިy1w{+U*!. +GwI%57$*&4J! MaN5r6z(Dx{n\39:qrI%dq+2RDm, V-LS. +ɗꩂA5GkAEފGp*rj;:vq"݋Xqؒp7 +JdKU&kH +tnڜD=%}_gnԲC2a!NGmܤ\743GcrveZ{vEԚ/H_{hf-?3,z:w?zI!%T6V#G?Z5Ņۿqe*:2glx`[^BHȞ<*fܽ] r> <$Tj8(j_WQ%i)Ect- (Oz^9qT‰/.B;r4=Xq06ifRi~M6xP沺ǫ{0e+)SP8%2߈C]'o(SRb)Dzh5|[z$/*A0;wD4$<} Oeڱ^㝣J1Z_k*Z;:Xl2zkʤ1-ΨQ)?9Z"@+eK2΅j$B ߪ`4X 8KϫUPEK $fHq5$t0s S-z~~"үen;egj뀤5ɷY hFHL%v ~=oqTl[>N)K3WM`0%ٌipjqCŽiBq1&2 7-&Gcj +|wC4$22ߪ9vLG.?Љ4 k_:SƐx2OoZ6ީrϺ_';Dm/9}!;BwTFa Ff\yYuR*[~D1Qgsqoe1j9 h,1Eb< It+/wzNJ#{G+ Rk-;`v(cp6~w'1&mrj/jdJg?Lotx^3]oa\χ ˯7ֲBBbjB0`B7|ۃFqza\#'Ow ޛhmީ<m}űT3-i^fj۹k>e>E3O{QUÕ}i f=/{^]X,q藔qŽS?Wnʉa*HᦎN|-m<=ӕ?m.+Ηz-jU/:gBrwtտӚpY$nu*I[(?s\CQZYx7-apWUPd劁}imC|w/J}|l2r8XB*U8m1Fp'ke3à% ia<|ĹԲwbg\~0a(nYJ+^0HN/Gp F  5m.Oo@w1voo؅1ݼM1t~;enn0Nxc,_uwX=0m6_^μ򷱇9率6gݩ/l >=1Tg6 a< \>Qol>H,ܴê[T^ׇ 1t Ad\wH_kY85U^vw<]}X +Suu:.j;2Z}3V|Ǫˎzp^.;5?#6[9ʫ;# s=\oS6Q .cyCoDȫd>$si*0x@P)P0_x- laLyUSD䴦7N֙nά?a73kz6sK\YL>˜_˓LZVT + Y0^f6bo[fo,#bܕϮ9?Ml<'[—2_a8*9WS~|$a쑹A Adf , +pɻ^ 9fdr\ƴ;~!a)Lå.!t,FB&iK\1}3•wb} $l1,jx8+KRq+0 gca*>פm,|Kc0X{ +m?3O8R+]_/?aFfwL˕G^g6V!|U9{0H-6ӈTWt~z-?+ +P)Ҫ7zvT̉8g#a +YcJ`fiNOyz~툻}.k7a>3>(r>m{=8Àke'øo;a"Β&]X] |v<~ ;o S_0NqpP O;xՐ:$NX41,~ kՊ$)VoWaN˻7\&_f\1-ö́"UyY7m&L ӄ<̄t 6~wMIOaz(5uV)7fނCMQw%7a3ʹk-r~t ݡ˜p6y[B#L;xlubzR  5mLkqMzxY2&y)# lD2>_`hQL?a!i|N`Le,&pm{ j.N4,oߋdQ}i #_B55MH`:ӗE =mOx,K[õVv.^PG/p#D>!/G8"k6=Yds$˴lp?pܔ5/^NImòR,?x$•Hj|pEcc r? yrQ y%KbmY?4n#[&_~* rI/}rdwT2e2 9&SqO˘*>pCC*N,1*5Y(˘W82[Ƽ4y Շ3/v]μ6xkCU=ys>yec1P`,zYˑFaȵ-zY9O)4[L^fH:fjzfCӫRy/z^{:`#5L%k{ڠ@G`[9Xb>:$; ՙCЯUEݺؘr1KŲ.U=[X0=Lsie31҄}&ܦ=Lmaէ(P˴bQ568LPpj)2z\zު~rCfCWhR9p041bŖ]@fj?n6XtyTBxFZVD(jz +z޿Za[C2,q-;Sӽ.Xw_ӯ+ryƾ4ԟƦ?,8PU?VME4T54f+Gڶ.O*qt ԗjӪ4fd^)lQH.𨨳ŧLROTJEc9%އW*JH/RzYII Ieǧ!E2Ų Ozۮ]e4z[[(D;R rV@w{(MP$&4 ml&3Ws6(OP<(-+ՙewb゚|H3>9=6 C~{ +3e:ܷ'r Yx*vIJi(e Q*HOџ(#Ԟ-zH)3J_.-i|, DķPa%7hX4÷|h![e \j^g,>`J-Z\%ŞR_k˶<2C|Xc"0˙#&\P*7X=0Wi_Vk^r%9U/Hv HZҟ֖{sak#f.#KDA{WsK+U0eVBcCU`TJÿmN -3ȮC;n{Q= ˂yuY"1xrM$Wlo:vuZo@i>聝&"U󇱣+տƎGjC%nxBp_4,tm;%KbHy;3#EWHa2sLr`_6%L3dDr/ʥ!໛Nc"5mpTtKm9etst? iPTk4$# ~ts4Qi!e9 +\j`(u?= mlwy9)O+G[c`)\ 6rt:Li䨶o8~ȑ˿1*"QO#G +L3-J Rz8z46/GP-!ڍ:{JQO%oVi8 FZAOGplye ^qQ AM)F+"{nF +xFZ5] 6V'7YRTxtoMi7p(ݍY~MFҙFY!~B"z7zu8TS~1y s1><i 7hCSuKm8]sah4rh%I{%Ŵ|ѡ,=ӘQQF5oPy31"ӉBәQ<'`ka.gF6Bç3#eѦ +TOF:iڰl7hGX%x}5#HDGOf^OQ!9{7kAaHa]C +VMbڣ0LF)7V1pmjrm4:d܀اk5oFś~-Fd<: F*ywپnc$&gݽ1>VýQf+-gFPi`]Ɩ$cS^*c&5AJK˼тk捊+U*n0: +:I/ƕd>K[wÏgƛ#o! 20`0` ms.P1?HEB4WlޞW(>LJV!0\J\C~މw~W(QᏈJBL`;3;D +m>\aUZZ>D0SɟW]@Z s֘wfz,ĔhL w?rE Y9tk :No?t\*t|=OĜq_5 H>qMcCϧI58˛+\%_WiDH)@rpKhٕ =`J{ kŨZQ{8Q DӅӒr{}߮xKPlᵩcGjmYmUiy2;Nw 2 49ʉ?;;QMf FoU@iZLJ~yթҶ>Or`x9HO + +E':mA*/t6@Zz1XsJ4\>mdrje"ǟ_=9e\f\(Ĭ_~!L"˲CXNz-Z[j! uR?e\eUgly~Ux#B$clW\ᦵ>\&Z}. u$ +}]S k}|˶SFi~=Пe~=G YCsY]uA/#+z/@X: r"r2>=d _m[T-iLe G%'4]tZ +uBloSOm˗0rxsUN0R0Jc~.(i81xe +=>xA]Vo {m>ԏoٗ?Ay'ʪhD.ݾ~8Cdt-Pʴl,mȴfAlex_vJLm5>[ߢ|IrU~㹄'j_VK*~XpVm Gi4KOI͊JMjtstK &IM/n(-__FHQQd!m/#ԯ͍(kcӨ\>ʨ\1`TX Ժ߹ỦoHi"2u7< +e=T$q8Ӧ!J +PA '[(c_M3&ӿy3*~ +1@u'Y.Ld˴r+{j%z9`Fq!Y6[G}c|V!I/%M$0xc +1pMcܳIlwZ*e&qm4S;&SVmAVh#Q#a&8jF)]0bzvj%qB`d48{W-㦨Q>!} +SvZ02.YMzZ_K|B2NǴգhV Z`0q!@PkjdBPd~ N酛Lά =}zR'N+ӵMޔ7]> :~X@uBvh+[s{J_݈^ǍipS^ٕM%nGiw:z\z;Qa7CgJ +޺E3-^ +NU4v;'VZEgYsePl$-~"XfΠ$ݺIPU#rR +8bԧh%ѣ$ 1rGʦqzPrLS\mT[ҘV|R`WazvCX<BsTayJSxߡz5IDt5.0ˮy Q[^mSK8&D>Df9(BwE'v&!hf7h@fa8 ΝAg %Ail ~ؕPqtqT')@jEQ! }\=#{tcZfIs!nSJv;/ݘU[8a?la9Y Ol]8āilեl] xdWH?|:N]xN&$֩Jӕ o}wMF+p/D^[[{vюT%Mz ]ףz _zx[8~N} ?q/,}x(rF!U˘Mx?BӥGύJ>yu!͸-՚/Ndax?Z>,@2Wk Ec]9G&|ީ"Oxur +!l=]O"uy7F3EBk qK|R&JUi^H|*_?n(LploD=|8p10Qb喹1Wx1]k;m]CR@?zW#711,C2눣H{))ecSHUTx< +L>{טX+kd V.\ 4{X3S۷[KHc1xě($㙌@Ex4Nj +m{GU,kpG |6DL,Rft,VXpٍMΨ-J$:;[\ӢCr vX'O[nS@սuAZ0uHvu O@$XOۘeSB&Wq +ɦ~Q9>)5K>̐2:>L5#"GL{@T߆qŮ&4ӻ vѼcDWѠأOTvouت= M|%1Jxa>z(Iż3ܲ_ Ya\>v]iqrkEӺe}]PT6|5f|Xֈy3 ĆuZDSf?GHر7D!!e\1=O;: u?V5GvD˩;CrD`z_S pI޶ظ Fڐ q*lu=JÌу zc|_P҂ meJ df p ~UIQlYPǏ{d}O덨g1SC>",?@S +Fez;:5wg9^9zlx"?q=m㕮,W4Zp hROxj7Əjgj&awTo# "1GnSkʏ=E";tęUI+_Rn pH(gH5Gn Vi@v=)@㭄F将`"1vtw*XcrЬWxIP/>厙":VLrtvS'2$$/F/3qߚ `3`f]ˍB2lr%'wd8'آlպmar\>&;mjxM[bwMDZA<ށ9ғU簖b6Y)N#!(ؖpIuח1.KESh>vtokLXpCˢα=.ZF'vT|8䖂'[ȹ__7%7:1B J4*Wwjԙɯsb5DZ5aejq3tH{< GpH*n̠g\٥E!SV3$)$WL +j,y;bc }8$Jg"fҹDpg0g:OM?*<C +tg5⤄G]N1<ƾm3ǁ}fyjRe2P3L$jh΋sƌu\Y;`ӥ$3Mr0- u8[9[|]||d=ʢWcQїÁHwAP:DVK=lJӷ̈́H03Si ;&pR~ǔ֨ZR #3,*#p#4r4ezT`ٹ@iHޤDSo%SȽoe uٝc|T1ຓjeXP;9Ѝ"Y=b U@1dAg^$HG +T9uSRq 2 D|{/4=HS:r?;}3fP%tML1FrνֈFm'*5Z|n=-m~:Pn'*ӡz)滫jԞH.ڠ9g͞* *c{v|R#2| LYs#Z8جY%75 )^DmORw; +P}N3iQr_G{ ՗ܑu֪3u%lμN5́dh.rnaBh"EXW9c}mb~@ -ﵺu'x;QM. ڹ]=c1IzJ&ϝ0I1\~C$qbX-2x"m1TgZDFs?JHM,`UV~&hcٸ/mZ$2"p!dȩ@[ 1޵};A`\YІxvn3de +&t6CN qhs8&=Kf0K^NQ1R(:Qs\HFۊrʼnzEtèŸA03'h&*O cصP5¸Gqavwy[Zu^6w-N/04Lnc$%H4VpDV,!V;/%̎1:X7lYtvBZ.EJ&dsEM +Ae~݀QAjAG*>ݞX^Ѳ?CVTyh9;0h"_?Y ƁY'ѕ1 t{&=;"FhD|z6~}lD=f1;׽Nz>g=~<ZGWuDy:3x&\.OF3t4vȭv[pYX 6BݯG U7Oओa_O Cƍ 'PgH5oo9" Mѭ{(pN{ٍ؁)#i䐅b( qc2SQ ) + +3Pk6zx{ @% S2e3N Beʘd) OAP$DO?:o_P;G;Bpe1yR:ecK Tr3fb4:+Q4pIb>2A\cC(;qBs0N2BTEՓ4qlv0kbbL6CoeQWdviG/R¨4'WBsjBnIqhqH]#P]lc;SDFV.v)> R8^ELx3AITwbm1ZWJ6Ac%1}>,@/^F Ga%Xfع 2b5@nEA职՟05˯(}gȏҭ8Uў#to pS5LXTa 09bm! [Y`^sr-yp$'=t*reDtZy`E%uȶ T}A<6<<54]FAYF͔ +Y)qw drnqh57 ij-/ROUn+xIUJQsuq"4(lJ:ɞs~IADHSP*W &9i~K] hi0Y +?;eF\ ShnZD:-3^Bo@dT {6O(};gVH81&9BK$LCB_M/NwŴ3ѕ +;k+z1P>cLJV ASPgw ~enhd}ߋTMHu"і%XV ѪdEJWq5'_ )s5V$c]fLm!R=Cz($h +}RtX1^6MH5RĊ"Fl"i41^y裈S pqO~3@S!ŗ12Ĥ3NKa XA”M9P>삪F^K;`EC_8ˎ^?"FPY[ԯy\{9Oa*!#QlR2t?{y}ݐL: c{R0?Y<b+)5^+Jv&v[Z{8NK?Ty+,H +vʯ4El0vnx5Hg:[uz@WG]W̴Yg=^4L(@vZjiU5DgDv +8+P/p' ~*LJY ?*v`+d75˷xꊈHiaAѿ`"aD\Azt@\>LJMIWTI8UȎ%ESH&=|se ΋tc#j>4JFw\sy5x{xw楠LDG"4B}cr{LA[}G&an, ̩LUDEc"GR48Ù7" lFv}J_{Y[ֳlH- qD h9 E qԛ x0-g OX{UഛrO~PIЃKR<)Z;rp[ ,ؠk,uu: ?TUbvLEEW*H SHUR?]lc/I; ;; +ڰscOQelޏp3Ԓ>)j7 (U9: }Ḷ\{ #L:gI5#!>&y7Wa IVj 2>@*͍-(V/p)5~DTQgBrmiVC:- #]5Ԫ@,ߴP7|v@>d`mzsCJjw@Zc`'*lri8Eq&,/43\Hkݠ1f-vR+N.X4 +#ś7 Tmfx +γ.Q[8.\BeIј׮=qP% ##bWbUmtԠ ƷCx;U ȗah +LܹQr;8%9MHe U6/_*">",x]jՑn79AeQ@5jO;GJ~?j Ih1jsFAա:^$mTR 12N$-t;(;?]HMٔ!l658Иҡ PSdRϮqdDMb:r @)OVib34t+0`[+z:y**mh4Vzg[BjR-՘!)T 1ԉUqr0 JH~ Q,.~۬>f@3^{l1$uttS\]zcxyŌm s@~H2sJa>jG4m* Jˌ漞Gq;;&*V,yko+fR1n7C_n׌Ǯ,M93`MCff-ZzSid1b0H@z̕*5)AOvk;a#!RGVGTUދ$AE[@P~oDHЩd!X6-Q53Q~֖&"hҿK`ƛtr71 b8ߡZɊp굁;pk;6'jC +`c=.6Z4Mc&?`k-o#F+od L[L%<>u|sZWlX+w{k uS]\'NGTHa*MW>CDΛ0M|i̪O2/\9,zLc }P<<Ms5J7%4)NVu"fMlʑU 'l.ٱa\ψ3QZr1t˩@Vd ١9,V=y=eHtUnKv*nh!6EV:o7>K" ۜW&jc;REBe_W0 Jx( '^Du-r7þD #y"r +i!fNMz|B%yQԃρ IB5JٟU_Q7iTdSP") Jrޤ͈ۡ<~ml'Ԙؾq2IVQDB|8o28UK)T#H3LU%t! rr h92Hh_A0!# +.~/O^=5z~vX8 ` CL5,{zzdխ]us/_!$" +*מX2\퍷:D^tQW̟Ckk(kxͻHp*,k:YS!v79Ѓ/^ifI5v=n;INEљl8%Znי*ijIYTY%a^5W>ߗLxU̙CPtzJ~LAJAb3|T_XΗ +Df] 3j]so j^CquKuEB=A` kph +KCD!i.D~k'Io%%o;.%NTjH] +n8Vk0m̌'3 lfx3idkH0- +,;RAG ǥ8d= ej)pk?QpIVVN@ڞ!IQ T +& +d=#R<*S>΂@#kr|9%+楂/FƱ,AG kvp\=$Zݨգ;, +sXzyo&NYL[:knhSttg>`H +|ԆAR hwe ssaX:QAӜ^#A{ +$QţWzkoJk_X]$G{$?=!隋0}Rz1R *zGq$& R!{.iaQ2<EH]UpZeKs׼ynܨXI=+/F%֋B2ۛlE0eIx4<0?QU!ݲKw(`݆ŭ]N;/emR#f`,%(TUo|Mps|FWB}w_aaMSeW|(ftx]Ggv`"VAaMurkZi vWH}葧dw! ֭3YAdT?I{;]KL`&.EAR3~v6IvcmTlm0q-&X,\"yLQ̬%r'6ebT4]rZ^TW!rf:_+L$(Kda@p{vVi^4\.vҷdkp$_y]2O=ta$ ;$-X452jX~ÄP)[̈y iͨ' t՛oQ%qWw2mٰRU( 0ld(=(Jc!Pu|Z Z`Q HK8 e剪n!\us U%^D4_#ӄ߻rL|=/J G`.l] zY^9FNEC0q["I|]*%/zClV)9&man +ګwv53ʔj ba]gyPLǔ k(o9L+ +iZpYQ8s$5|z +:`[[6Fq8e Za6}Ρt]L 5h?yU|rY/ =pFmŽ],s^t^5BZ٦#*dɢj87PM(!IhCk1wC۰i[;x8qIZ ++}pE +n&sN\ӜYuhͬ"?7QjFn]fE/M* ַrji|A>RqnDÔ:N[lv`*ؐuۅP% ;@W+usQ+6MFHkڵ$O3ex +0 -{7pTK!ZXi<Fr~⩀Cգ$imvOɜl*]N\ +V'+h޼mHh-{/aRB*&5 =Ӳ~mJH~Eܸi{ Rܶ$lCˌKRe4ztt"9ŽF FtJ/o^I©S:hd l\fsmCS22ER @j=]3}ɏ]?*4&%+(ϊfu{ 7&G{K=q$ /7P͚GO3)fh֮=J*+c09BYT"V{Bz goL"H-&+)Č3#OMBh_-= +4&=# &OJ]jE +$yOUAQةl$+ 3t!>Nt҂Nc(өzЦ&4 (JU5?`#7=^@*ds@%vbZ(+5@nHus5ZOgfd!N`كA9Վ-uM3'(?Gy7nˠ mŌCzhD.<yoc᠙(bEX8S 1K.Dޛu?(~%$er +,=$Ӑh78+ަ;]0ĽcXd τ]\7Iv"NV=e`c\N1u _ &с?"{DӖ-)4YRLCE>)i -ה9y<qC&yiPm-^/3|"l?ICJǘ(_nYR˗kJ_Yhv29ܕlU3 ϻry*zu'dui:Hѳc??_wۿo旿??_1w_~ogoE|"LU~73/Di}`6~ LG Qo !$/jY&n۷P(M8gRgTQt5|uׯ{"Bq{ R="5H&I, +EmCD8]WOBsƒ<}웎Fr^&h> T؛e&PGo<'nir"+mm{WőxDx&ưoYV:эf8[|L鮭? +iFEЛpTÌ'b=鼩| Jp 3<| +vR𿎢%Q b''w۳q_2mx ;nVIج>XA^S8Aɘo:ޕ&η%T% +endstream endobj 21 0 obj <>stream +$YmSaтrt; kW< _#R2ݤ +G%g c_4 FI|2jS;"Ҥq@m|HX4s] ++t{'Yu}=^x&!JXz3_i[6XUoڻΔ*yΞE +,w?XLlFR3o";ي{vd1qG26EIWo| +D,(DUڷ5q%oPcz~+}P5׾VLذo6Mq`dQ{Pn8} ˉ[s\ү]F 5F*{փ#VW4`Z֪-׃hooռe8F >qۧOٺ4© `$3E yj]MKZ" 2/ +݈9C#^?>QTH.4M&_rke/ ,9ԽP 4XJV6=WTU*c;)a+!)IC~@R +aLJW+ ֽrDq^+Q\ V"x77rIUҝB_Edy9og=)svGcz^ hMv!Q;nϞX*oJVhxkeuK}=M/nڭ%!ts]2n'ƚzAر n8ETZ.t=o5tYp")'e V,Vla*2x6=DJyP琚>YjV\Gavro(9!!:*-a*׍HJ wc#.!.4M,Év^Pԧ*P[O |vXi:SǔN+kj>&QXNͻY@L x5&: +4x-jE%3^ Eg&K[|@B :oԊwbABک6قӪ(KIi:s<@ dmm`%k\]X+.) Ie/Z8/$F(hjj2KDjGݞkug,y,f]]TR FkIxO=9` +.=K0$ot2SS0Y2wT B[4>"% hz9{4rG46[| J{lv i9lXEot!`M}g7$_p?oBODG̼q.gQM@VZp~!DxMD%Ql^01RεMvxc=IT$$S9&>˚.wNTXS/+\V\ٺc-P(Ý/ +OV*~Ni4zSUfe9`צ𛯫@csaHbη${[S%;ڳa"gZlFW`dcUuT7;"f5aڤ$aK6'37 T/;tDx~fkhvex{ +AQBt1i s?jd5Is 攂! +䌗xCUQ@}+Cke%R;Vao%TKx]7m>9Z|$̖Đ]~>|f@[9?D9rXjpj'jy9Es/,;F"\BTr\cͣn8H&'r;y#yeV*$ +J0;Q QlV)H^g/0#u~LRMPxUZ $no?$x ,1A7)#U'R&Ӝ͒2ķ!!"wywtO)jjPg_+ 'Zk{6:u4Y!TL{LT=~ e).KSJ{nKM^E_*Ϛ;kKnGn[bv*r1Z_!6 @E 'ܗ$xj7L8+ 酅!Y]CZqWRŐv6@If%݈l漳LN" 34%ɉqAm“ sTs+29Ge%,"t~A`nDH,bOVѩUaMfo~UY#k]6"sk̉% &!Kef"PTе73YT'ȶVRGl$Uy+.45;T!X:*%۵'%,g\%sK!^|޶ʌmzB-^VKm +fV "yݎCvw ۄ+ڑ0t7C$89 'g59ϩiut]%R2,$=4~[.}j0WBV=gnˆ~㌁U>y Z|&Šhȵs]3]1k$7mRg2PcQDʑ + E9IV=Y-NUHs'@¨n0b7֤=drvI2U-fʵݬ[.ݲv_6z,|yԍ0 nfBf-DvrC@^-DrpSP[pj$q|"O!ؓNk"|t2 @NAq>\IR2ca=5b`PoFdC*ЁPҁ~LR,tHsc`[jJ,9IqW"dRn>w2e~Re+ _7ɸOhTx#\$@OޞYGEJY'.PuyXWՂ 47DMr:c&X*]9Ȗ$ʄd*?IkhIu{RHM%=4:ֶ֛W.e_Y'&Kf'#v0?u8]#*mBd}1Pk&~p.t#q +@:eKuLInUR붬*/3NqgSK.R$ddZ董TÀI0m9<(eE1*E>Kcd[I+Mse'Y\г1b +봦t},W羐1P:Jil\8DIY&\hX5 Pp~I ܆H7KBR5GZ Ɣ`y{Ɉ@iym`“0RX"Lz%_Z@H9ݻ`}a۲PqH JP璚J2ʇ(uH[ܖS ĴXMf"/ViڹFYUY xyG*dN6Z&ᐬh`L&0pZvK!o)4xXK7# 1+#W) ܉|LC$0p(ߟP݄2lBdGVIjk>IcBtG:U4W%0l1*UQ%io] Ђ +-+\P2bb0tG ]8$ ivk>Td@%0_F]B6,YK$~TbDͩ#TbdCV#X}fu(98 Fs iIꆬFf H8xqǣ8@)\ړu,NyRq?MRoGYqMB 3p + 0N_z 'm]ډƟr;۴-H>|Զdn$86@ 3޺Ib~d*}5P$1G~-J +9 +Kҹbv~Rm^6[+x rQwrEG?eUW\U76NmZ"́úY8j'@ᮍOF1+H's@R}!l{ז/R9f^( Bd@ 7[^.c$W:Y"hAqqtuU"e uj`-cޓl-juμ>`n0L֎e"@wJX"ipI~o늋TSA=c-̩?(LIn*HzNn)uC@tE@Bd3wE^@ۦR43c呒y"ro{$ kv;KFNCMϒ$46@R[Δ_# ?ZH\PO)nmJWxHlv )\gqe q0mE`z<ƌ +x;_@ߪ5Zv~6$aWGa6+V6&r{1ߋ䚃С*^ߘ!n^ݞYBֽLd)o=̐PIB؀9c߈kF^c ܊$ő4eȂ;Ƈt"*x& $k?eB6B'C?XjeYcf09AdDiv=T&p +pb8 ڐRqC5Ap"<gfIF\ַh(%;y5I#DK9 /@!1B/t#?U=,P^bK(<J2HA ;1mc)޷{<ࢼ7dWTYWX;:hkEy]zbX5cw<.ktvU$AN7&[O0CJk!, 2;thP2g}h2I96O隇1l2Bʜ?pIwqL!WZz$~SPXE;/|ٹ0].6RquqDvTR#G7tsNb̶oxgnV1sU/`6WzVfXza;P48]suRTQ`uV{e] [/ʀЅ|zF xلY;gzTkVadɉNhf:zji<k$!:CG6aBՠYٽ*ttmZ{/.D|trx7YivOi79!ӔH\"JBU֬~ Az"S&KZY)9VB711qP9[tMEW#EF,# ]#d蕣Mul3I|m< P k +v2^ɀ[2B/0my;ج铚HQH@Y^7)0QP-’[Jz3V]7g1PJՁB٬۟MÈ HCIRG!m8 +[iC 񽐊҆V>tKMhEG;lZ/a6 ܻnȖmlྑnRw0|Ɖl8x$tlOٱI6a +^:Fk~ƒIyPAZ 'oA@fnRINk=@AѢ&e#}yl̓$f 3,6jj +2 ) 3o)T@C]t|a}m|֯k:C($³E6FqƇG%F_. KC0 r +'?|Է@g]* +tzVn ?%@L:$HB M']}#[%jGm!%Bm}?%Bnc jʲ^9&SIܞ٤ +ƸI†TlWx,|WaqS=~E]A&t#$ +b y{H4CfysK/8ȅ +Gݶְ%A6avi9E1|@0ғaԎY5M"Pؗ,:.TZXMW,VVG9e|r#"T| ĶxIzK?=4 *=^vd aAx!pGM6p3Tzlه2-YؽSU뽐ܼg:]/Bn^uP"&W^2Q@Uy7`ng;W֖.*k Y7zƥZ#J쭻BqYāA3F䝠W!h| Mq=Q" D֣Vׅj {!I@Ld` HV Du/#̡4Y+R-lksʍTX2p-=\=Yh$Mf2Lvmu:g؃ERT.gFIw +ǸԠ2:Y%~9ɋ!%>wK#To>$DN.ƬgF*'+(@ܚ<)I`wI&vۄ]n8s$"!qjc@ Bwn=޽_b]xSY"B-)HGֽ~/J&E1en6qܹ'kδkiv^Uz.EYȟ$&HPh8vp6   fjP-Mz2jtu.TƹP8Lr;WRf )l9tX9NUa`ņ1x`yZyak%[}. {!5}궇#}-. IzBN +Xk_*.sYҗ .[:5fJĢQSeRTTyim7S pݲLx,Т؈ K~Uw[>{O) wˤ臁rb'E}v(03Q|[]v8q`1KYKSE=:83GFfY[$?Fl +Nw͡AVZ-rG:z o%E9N8^Nq3CBp8~JʰrKFjü +[\ef-_#2? Ej& +CQ@: W.+ܫBTA >XLrO|WOzy{) ner' ֵM!CPZpbZpbJ{v|-!#$F ^_ncZo-dRmH8#'/ᠳp0eK]&М< N`c*'OMbywL/ܶ&j&3il2vxn$˫BQÁCc2 Bk{+G;6RV4bBNn"'P^'?XV+?h6<~jfCV!6[}RBI0SǝCd{6qd(J2RaF7j ;Dp Tk y4? > ̐Gsz0iP~%}&-\oIc̸\7 A4Qv5+a!-A׍4:j"4`kŅ'eSP%aK);R3u-*=0T2ܺU=$&$oV|s̗3TEY$vSVj]Y5ӛX#7_MnL~-$m]=ʢ'Y:IG Xd%`Cvbޔ4YjE\r_k-m,]?uwx`8Z|'q7*JtKrpIo%3]5ݱz-b![u`ā5C)q` 2l=A >PRLW1mA( %!TV0lM܁0:eۢ䏅5F.K%{!&CZ*e.z2QqxBD+o'(n3Y9pVv3pb&Gﱍ,"]f!%)^n3@A1ۦ]Lcқh*i#]&<7Qp'j #&l=],0f8y+qLhkkҍϪ\78E 2L;H X*dwlZ]Xkt +8h`t.` BG5s 7}]̈́ +jv} [Je+F `jwЎj/eVvSḦ(gg\`(tk&)zZ "7討KHrLO$Gve]R`MSdxr_~$騔V KX6gE +M9p68)!;ȪK {nOϰj_d֡9+lvDk*$:L5cToJ5:8]G'aVe[p+ |[A\k!D6yndxɨ7jCZk.t0ςLsz ,#`1o&-7O\*bk$<䈤(ȰNVU~D9 +.ل fQ9  BV[jcc*O?ԅq@#+P6&<x +caE޴DѺi)M[xtO(?hi2 P5ATm](׏Mar +6Sp$!](m3)_{]¸d%܎w|iR ґ]U2[e6ܽ6*T$=aaUEt|5ĕnxjw9dA9OUT[M^WDbz/4ӈvq + dRf'?^ؽ %tUZXϝ@U@)o^PQ(a-d9I=b6Gсl8^jꯓ$ 98ٽ[6 +r;.E% ; Iǚ=7anels*OBthbh" +Wx'ΒP.XI&>. isZ_<"0%IjsQ->"}lhOmE8,M0~(\\! \`V$$WgFj2Lv %juJ9ZPV-g!&F):eGDup b5GY2༑-!CjkeVU.*i1\/"ӤU'FnzBj~Y˿= xw-FNnJl.(uآN.M`JB@:P4Xs:hejC-3j^ Ϛ).B[U26vvNDB1oF?XTCmՃ=/X66R {2ns], &x6םdMfQ@9Kl0jhdIƋPdGS{kZ8Њޘ&qpf<ELtZ Y>PD^4#Wtk֯ݑz(C%vfGkAjW *\ +iFv3S8"un7ň_FhN΍A_ d8r_rI2^ѭ. Jgڳy!oZz}}`7)G9|$5fZXL >ÎQ["yR~KTI tAucsITzC/$94|̢Ǜ1XCe''.>C +ŏ#&<;1 %(MK ,$"] _'6`7\eʉ@~8Y mTlHBVëLdyʇ_{"5 >cMhٝ" *pAW`!;Va UkyB%` qnKř^8ٴ^,Wr6=~C-l)}u>˛+қ|qr}pM $\g yјW{Y +xn^kxF۟?۟_/_OկݏogowO3܏oۿ5~//+_7*vw?;?ܣ|oGtyy(?p_~ꭇ͏z=gK~~>>Z.h߮>u?_/ձc>c_?/?]o/J6]oۯw~ljo,Nf}O{F]9i} +Oqo8?gbADyZ[/j4ͷ9&Օf%VEF [z++:W5tX!<_^0?7!Fxrc'*B=n>O>4\\O`4eS~s#RNonĆ!~ts2ah·" {ݘt)a^o||CGc s;nhqrah"AR~S 8qIAeō Ns<ynh\O㕢Xa9VI:W994zM]wӾ[$&dhq}/x5i~>v{ܤ 7g*jyVFx%[8hF_b;*z#>Ʈ.!M״Y%cp3=}Dܟ@wH=5z }nHqԸ<کF{ћAɟ} lFxݘ?~l9Wo ݞ |F~Lpш}nOha l z%øy2_ח A BzK!N7Qr;~A$7il{"n.h$Ϭ춖y; hlϨ_>ub߁eqHz>=O #ysesxN z jO'Hʳųm7^l |l,{Q/CGdg=5vme{tΐqӧs83ҸWFnܱo_cMmʧ1YXr +_\r=O@[|JD@8X33՞8zk/w{_oܻkj7X=ާtkeq:w X?wd-@ߟvtEFQ;8|Oh^.GrwהrOVG9=;}Oe숊4Uz>{&vKј,WG>O J?!ݾ fNc;3 [9@=l;Ɣtksf\>?Iիx.5^~~=[Ion^MLjƱo?w|W|m4,Y kW:EJQķ>.`j~W8{ +5[} '/3iyh5$RZܝ#a3l89uW>G<)rW/P,&f9 ՑϏi;yWUθ{;<١~sگ:^O K}uJRʕf--O~Cq< xB==ck 7^>ͻޫO@/FQgh&zݾۧ$`\^*آqov'JEs}ڝY7莶+)JMEc[VQ;u7s۫ 0v;=^hlk),sÀ!nl{J4+(#bx +/ R7͖9LLctN,}}{+*xSo8IEk]uOWlQyz_}۱+x|hl-?pK\.7bAg |ڃKɒ36vN n󌜯JSߞ`*;wwC5Zߓ@1B;+JR'Vfbݴ?6gg GLqcĪ]?&DRwۿ32mw.PIS6ƽyL,RAt5P8N3BNq)ζs7^J/g:Oc\@Pγ/k~F)1F/YI8[#iD&r`{iF)ȍ%?Y{P:5Vv;73GҚg@aCȞthN)L["i?9ˌ>8,Y)#3k7(y9Ңg=60 č/ʊG؟ZDGR~{pnŇU?Y p=s?~5O@UJ({Cc@6M#nNʻyrw*rsmÈ:k_#n#Prg&+ő_nYb*NZ5w4T7"ׁ:]N$S?tsnl{B۔yo8kqNHiԹ#dwzƆl֧u}vch狻\3ojgV86}},hƚXɾ|*g:kgMߡsV </g~q;莗Sܥ<Bn5}pxvDs+b/%g:1{]q>_dwO:\ٸ9<{2P¾3C];~2k>OI) +tAkGc;YJԉ}6HA;7 ]%dq"98(K öF9a2z|,PLI<Js+iS`'9WA +wc{"k'չ-rw'2iVy#%ec ^@F+=G >^?6 ;rbX"~ݘFޟ>Ls)h2('`ɳ$JOÓP{ߨ(,G1-N Z3N 0qi7}ϟysN/};NF-TR\l^f{ܥ?#4"^gF@SnMo5Ǎagܔvgqˢ,Ǖ胰1B:?1׽9_N.6cM[O̔bn4&{-$20ݍ̩kBc;*+1|E0+sSoT5#9}b/fSbxg{4~ogwFn0x& Xoen_fqi^MHWލD?XGSAgrg_\6yU lgA}pfg@Zev7rܟ543SӾ{p3⼂Kr뜃\!>+\yatFH1^3l7 5;EH8|5F{"صK>/||X潼R| +0VuaYAij^g2՛{{Ss +_xx gRE:lw/OΩ*ǞC7t^g@ld/ s_B;XjTU_Zȇ0^P;4q"kXss'~ܞ5#1O}o]^w{k-hg)g}j&s +z& q}+I%unSWhmfv!ި9o>$hmon':Pyr[X! Y=b49a_%fkOB twu\3 tV?Q03<^E{u^gI1@=DVR_c.F{ڻ+8b/Hng4w~ObM;:^?[7$a| oם=?ِMȺFB2!2¸q~Mcy7_C>"~o&25ΧUnLK^iSJ}^vNfz6g|wkrک̨}k (q2x,zwN]F3(źNc{1iDcajzr$"'I@yu펍jsCX]s//M:gw=w'Ǫ]vw@3%;J!^7"{6W8^3o_ ++ c_(9ݥ^CImw7 $7w'('h~23.fSZlib4Z%Ε6Xon}8f Pr 7+oȿHZWFNN^FX߶A/jL6oO;;9׎4dݍ93>0=<ݿՎvSTیK;3g Bbhu#tGg$@z+K U4^h%=NNJkӗYPg֟խ<*c#z#M\č{׼|)*yFSQuQz?~y^,`eݾ7'gdN2r;1mv*2j8MS֦)}6^ >kRd.ΗP>~ V#$A!<1N+j+7DŬ vV`NhgvG4=W>v<ǡAVNI1OYuٔU:pA83Bt!8g )9v(,&h}r:ۿ"6% Y￯cE\ ݭ…*;'7${r絣ڜ0v+s˵ԧٯ6 QCmy_ 4=i4-%`< 21ĘɑӾkO[jG%[=ݍlI|ov{+K&70ީrm&lW +%$O'}Xj'Dۍx⭥w,Gɘ.XSq-{]Oԓ'm=(|}T0R}ac$oKD=*'4t"Ng-8 31)9jĉdJY%113 V6uZ: ͤBBJ= +4+3=0-^ HeqAsꚈ iRq<)&2!o˃ҪF1YTwl [Dɝ6QU% LR= +j+ɺ51u8Z_uEd>A# ݊GJ. dF}MԩRKZo$d݅|#`y(b1Xb gJ*xߡQ&ynQ2 @vu2b0BD `ǦzāUefdTk]-][(i`j*?؃ƿho 710Tt|ȌddFXLދ` +3 D퇓,RUHܰa&bq06ìFGSvR(-3z}Sq9>V=CPbsaP.Fc#Ԫg@m5̍{h45 T;F n+c>14Pe4 }9 +cjb Q5 +A[~%^n(U_AI2N +hf*F/ph褚0VͰ/C4컀Ų꺕HتkjTN݃X ̵nFbXU+LSsX̤jùlT/p+fc8fMe 74B _RęrUBT" _7HU@v##AI:.Fg FSgF3 +UDi222W˄xC՛IO2VUF(q[Qi!H04V7 +fSLTdL6~68EQ]/l2 +;ЂoV ";QH4AHUjY`?aJ.ik)sDMf}SԆ]C`bV*Q̩gC1Gxm*ʥEi1F"> +ŻQ*JPDu@ EidgTe I="WW鄭FbT9hB#cqTUAnjX@-XY v3N#@F8Ra$٢oǍbf,5E]&U E/jw4 +LKD1vd,`> Qi,1}(bBɍ>BMabvC_0B1#V# +>u`tLŤB槱XMV-Rq&65FJX58̌zYR>Ed +qihGw&% ;F&b^FM*<;n + ]#xbBf~5@T, 1P\йMꉦb}YLT/-*QIUr@X L)pJ̈́bޢ }s;5\ܱkCTpWu  Հ2("5TyWU9X%%Thנ&3FsT5i251Xj"f L. +[A‘b$S.$".zE` $H^{jKq *aynqƏծ|hm&B~>1$ gxBU*>ld)I"FTA*wmJUnB>[uQT +$ Bh$*iNQ1BXT$5.5>B.wBUtX+L14Rb=bL,KdxL?R#C5T&D5>2T>aATsl*d= +v2gL +>)aPԔS3U(/Q'4HյQfCtȷiCuX[͙wqٸT%zSbЭLvMnu>g3Jڤbb)HvJ9wuY.~N?l Wj +Ы^@] ۤOU2c՚Lw}j}Ш.f*2Ѥb]Eut\Z4Fp.0RbUSCsLC٥LZL{q=bBXTfҧq5cwQSA3e&y E'LM4' P4PQp$Z 핪԰O%T\bMfFbbK SiTD4&) f"Tl7ؘgA$.>P.Ӂk >cL, R47oRmERշ/pͶvuZȿ<Ƈ-7.( e5;tX!)!޹-&꺾&bLuU#PjC mj/ݚj5 2/ۇMdBx sKAss+`Qt72Fsj@p;b{b5|Uxz+6n]*)69/`?|E0b-e5#01WG4Saěj +JϛDZ.%k}35e>獙 W59**ra}*t"(~?wQ"T?ʠx⭙xHkՅq i*(=m@}_<汍TKCes 4m(F_`n,vCg =~v>u5e2l3ՔXӳ5M9pF({`n(YUbZ*,Z3ei(#htJ NOoP  krՅ!b`EYsS*Ve*M5XC?sqii&1~4ִOb{ΥBb!Ec1Ӆ }` Y\T<`NMP@k"©B&ˎ5V\,bNx R!QCʧ5Ut `k©j53hAxހ-k\D́8zG5OϙOeV8-tr +rQ.wvu9 +og'}ܬ5_t + _2?POo_-T@>;S6^72#8n&8wG5 }׭'ï'[Um[Z3ToJwGԦz>0*B 7!eY|Jn?aonmhD=Lx+71455G[ZQn#)hϊtՂFf¡&k~-]]HVXg%6r~q rr6N!V֪e%J֭%~ZZ-(e֒$,iek৭Nԓ{Y:G讷l,d=ltlt[{[X[ɪ%O5EF6ki~Kx'a;V7^_3+HC0^ O.0g$X9OŔL瓫qQ8!f]DUMd\\D.Р'cchAf Ӹ ,\V0s ȸW G1A#H09-ON()XG-jtAxddFSؤ/ؚ/aTP>j/M!]Z>6ڴ_:lS9+ ͆c[4 +A9S~C`;Omײb]xW-K"'vgeo'!@[4 +KJt+hI֯Kh7-[[[އpDc~`EKV O?tOS70^Zr~CFeVbyhQ#-62k,%m8:g|A#)!rW˚ҲViC׭[a)R#9ϡ`ܵlBtHOt yㆰi#b@榱QEh!rذ1\L$>IćA<ćgBȚ/Nb=#񱕓lq>6o"\C#١}^!9ʤ/Ԧ)u_½A"'*a1|T88LC:*tJ7m]te{QHf ++c*&%aK ZiøI|\T.,o G="2A#@ W_MƆ!IGv}_ȇccS1z \bT.~*:KŅcF0^C@6iljWty3b*gl:l;Obˣ@@Šg@8MmWMaBRF>zw 6"eP?NA{dCsFH~aH{/KnD{' bV/@:rĆDѱa' 0Z71M)ܡ\MyG"CњwgPJlX|s;@Kz !=S+S?kҵ5ށD]pz& f\b}A-9_m3| 2XirH±|@(;z0>G;'"^ztt8&kl6s,%74?zo`6 u83 E =B!c>KjLBCH,oH/!9l@Ps7yTX9&mzߙ|ʶָV;zz}6+0)ӸZj&+۾c05dҫlZts%[:,K%P^z/lB6x<S4 NFz J(\<ɸ \u/ W-%l$Blܠ}]9m5lf6#^o)XSNZsd=n5-W"[dӥbBǰa$9)x?ߔ!lHh#AtggFY9ɺk$ +KMƹ&)u㬳^Ӡ AGpzdnd<Qуذ\zW\ƞ@O$h>UM ]1vH{ B ǰUmԝ`޸*\0K2)\Ɩ\ξs@.ԣ\tA:lrcLxX.t=͠OКebӶ䓐,V} A³w0[[JφtG#G %thG dH/*8w-/HhXnA(OtXG/mS6 +I~ (tI!l–itl9lhX1HF I;uhWc|poY #I_a=]2Zf0sYU]2c@БaȖ"L_53 ;=A|mh8B_"*'ac~9J&p1Dž3G)#`A6@Gad2ca ŔO[ +A@zuɄfгºRJmK + cFO9Ngwb&3l8"1390*:?HGW L\= ~΄،m3)L`HЅ k\b46YzڈK1BѠ)ѥm_13-@1~CX̆ۂ*َti>(^u%挢rFQ*=J/Φ2̤&S!yHVROsʶt:H^1na.cI غT?؁0|t@07sU,K꾀0*w +յ"O4lp(+9*}?%.g#퀷{iЮx ?? <#6aAly6aHN tQȝu=p/wҵZ@ܖG4X|O`>X +:mI:i>&ӦDNGd\lhmINQh1^_b &(.Yȷmm3s*]_ұrkGw!~4 yNa|c`c|8|(KW"nQ>E0_7L'1 <Ӄ5#'6e|[FAza {"rN/u-YȾldǠ57.P1co =lO?`dVOuURT.=#9#dicrǓݿo Jnб%`_P;Yt{|*(}8" '[Ay { 'e|4i7p ǸCX" |=m_7=1߸)\R43"ߠ5Mx9+wDU3:4{$3A/٬d%) +r֗ˈ+ftY#33iC؈W+2 ]5!5MڪOV]7'<$Lc&Q1*ydUqÜ{i\Zt+ 5Re'R\L}ч>5b!U~b\ * +r~;o9bDr~'~[H*6#8]x8:ck/we;o<h}hRZ{ & s;db_]v3xgk<aؚIlPp/fR?UQ{YɂqR2h,ȟ~Y%j8+{Α< +odR掹؟?_A#/Cg 7_goF6cd0W'1B|؍c S0_"'o.<ޓMkΠ 79{Pcp_B3G +MAAz?Nn.]pd!ԮD6}X skR:"U;*=jhzD^sٔN%?@6/}Xled]b; pp.6pSw!Utx!k&y*`{-py'x+ț^zꑛ}uSN">|N1 +/ZC*5{A!Bnؠa 'J'e' ȝ6)7k脺ɰV. h :Q`hģ# ? ǔ~|OjCv}0^uӀ+c06:?@߂oPׇǂg)LFLĝbx31]kpz&|ЉDeU"*?t-b>v `0haNeM kq_2Nc.l:6`F ^l6gdSBt.Y?X yFv*AGS)0sFT\*Z-oܦbQ1>#yH=? ҷL6AKlxWLb$O$E5'K~4yJt֩td_Ҿñ:]x`!kN +Ha!2<%lWN|ud߁#csZ ̗-(fm+g{*[A\'dNE1wBXO?`tMx7uT c&6{\.b2z>LƶY<СHSEGgM ~J.\=jĘĚTn [ݫƞ%,<)zV(wcL$iuqeKt+m(pTxF#&e*`bZ.4\4t \sF!6?*tw9Q8vAs~fnXn|OշL9D0f);g)ya mCT%pk Us[=MK#NMm]4_ɵ?!+~0k6h=swzСO] +آ6 G@+q!Bb 3>hp;!~6?!tt;Eσ (8wQ|gѠ&Les>Gt/L`ADblnI1X`(=9da=7{D}Փ鴝3蜃T #ƌQyД?q#'d`b] +?`˕ۀ_cSFtE7Rĉ>bUlyd53TEltp-phy29k*a +pp73ŧt&fA»"{cnLuDeⶀw@:vօ\ |3basK?U$<ԡ{ آK5O $YLW"; +| ?>8qa*b6B+ј׿U,S4mp.޴fR"G\ݖG;u vɒXo`|½/}3;ļ/e(2|X,{o„f: aԎ\ +O+VY|Z bƸ,aHg"Er 3*H>@[AJ> l=7aN~:lO$gH`[#ƃ/eܩ\eQyc aI_O]#}t@nFcBB4ۅuwSvr5 SxPj)bY! '\ N +'XC%m ܏zњuZfdwk%7Rں#Q5F6,o4İ0" B[M /G< 609 lh\+߭CkJJpkX]?ؒpD?0n7X =PV<5O q G]OƊB@7z0%Ǥl^ NFTYSt`Odn +a}LGMՇ8*a!Bx4m(Ñ.h^˷=>$[_V1#ۧ:vRԜC Y}ݜ=gȷXNբ[P6Oq鰆\ɛ/y8%?iMZBLyƷtesN39朑=g+魯-/&DXM4?Z9o ? } nQ<x96@8?\bLd5)u;m0Z<*iùkYe)Ybdk%㡀;{KzCƂ˖@տ?G dt O#. 5XCrȶa{D\I+w<[G\C2`6k1N~w7N +w/dqA#f'k1Uxȅ6|m6 +^BmB r/9)3@Wb= [yƜ)9'S&4|3S,W7vX2[R:XXwܲao+Θn:X9;g烄獁!fGSgP3,'D5]K!b+<f),&ks3grIE}G)5)>ie`vaȺˋ++ȦKa~L7 0M=KQ[~hr>Q9RE alqH W8Y1xXL0εT{;5Q7 .1[G?kʾ5S hLƠ (YZtB>Be֙f| +s8bvH +^&v̏꼔*=feETb HR%2=r:Tq +($c$T||0F5=x3F|+|UlTH;O2|`U:g舴tԎ΍N7<鬃sׯ $8Js{ YvٔIlD{tDX4S +qSù֧M׿! vΡRZ[#Ȱ1T֩yLyh<*mi`31lQS0$65Ӎw͝0?i^1wQrx>QiNeG6MlB\y?lH JUA4շ]kȢ 0 ;8&85R/ !HNѻN6,@YH7y#.;gF6?^n K9/a}Gv;p:<;`pr E&l/!&0 1J\19a>'Ǿ~Alp);fǍAq1hSG5p tD6DYp-惉|QcV8?a83llZ[E{J/FP!NB.ۄvRZCޘlyroh ]zޔ7Mm +1G2`sv!/Ʈ%8.RE'5eL6};YO>d*uL&o| tr*S5v +, +OKf3 UifQuזpwV wV[W@*-ew[[_/ +`fG<B.ct8? G q*Al|%7rqmn9S"d׀:8#|bj&O,eTIAVܵ`tgKpO1w LV}ہJ9>d +s]*¼ +/`UKxBEed殙dDXȉCKf8X;r8-_⾑QuV8c&3 _ 'LTopNC"=3-W2m62g,c& lj>`+Z~k)wGU/F.OL\${B̏rv +s[c'C2@ӇhOsRx ,Ю\5ĴLƶ7i(^D =}ʗH^|K=C_Cg}yo9BbTZCDŽ% !mӱ_bHX>{ga# Cf#&ts4#uq!8?fҹxnh^Bń䏢|c3#ڵR4+ _M }h*ѳC )9m磶 ?єl}RxB-gEMs&!Kz15bŊ;uWA7l~A}g2v|Y/@|C_0!;^w3Ay# Gw+ >E]zg2a'A9 +Bk`&}#8V 1msv2g`#p{䢀Mnʩwߒ6>z +׈ +ȥMB'4M7ev:k" rswxYt8:z"Ѕg UcP>l*~fA=,%#jnc?0t+5%7~y):d3 1E?` 6k.)Ƭ"JΓ;5AF년 /tc9_"G:=0tQ[xn}#Sat{ǭ|ӆE _41Q}E`JV]Q @/5HOc[l`f;;bLl6|2{bbk %\ CyCbI (j3m7mc/8dJ,SGE|lpY,>'+[ߐm!1.wc-/ͯRץ0!*dL'i;".g[7wFb_U—[ޫs:eA8'tp!#N`̑SN5=4WQ 5z"x$0L>MQvXZr׻M;~Y%?M>m&m+?$>Nt?<~򡎾k+ڥ7TzG ]EcFE2>' 覮m[[ +6l% |pelcDa NC^po1e7PoS-VQOC>dݭXϵ,![_7wtE?g@P =KXɶ?re힇}8_t\cN9,>fh}h^Nue;-GƇ3]QwkR!v01 +ۖk|m5u{y }7wǕ:bviG햳{(C]Qtݐ(bzdfK?Xީ ެ?Y\̞4l^|{_˩;|YTKPdcws&[YM^4`SaO-M=XcZ=N˦`C1nf_/ʖVluBi>L6MzxUC')'+.݁9yd)~mx9}Rt>`}`(䶙L ĎH!yt`,]COic>l3{+s AXM?Vr) )E9T`&j'kbkz3ʖ>epN'3W#w-V˛/Vly }Q?\[_fZX@xIPP@B|rWޭ#wڨaFb'K{%}-i'{fvz}O C%wg3}1Gi>fۃleO$}aOwbֳj.9g3xkn~F`t6u~ jwb-?vk;[%wT}{+v;pWW|xiK>(xQRv+fzۋć'p \}{8֝Cӏ }劖K3]~n)=`~xJHP'^qܵpW=̏=';wϧzKs]./7sg"y͟]tuolsδ4lNZ߹O)_,T[Ⱦddrr'ϣlW\E~gwh,"WGJj[KE%ED}SbǧƞzbwVM?Gvʃwu>ϕhc#_w3Gž6*|>qnߎfKPvtxuz';^q~wp/{|;NΞğ`R3Ow? _SXùBy^6G?\`h6m| 6]SӬ>R>?T\ 9/NV:%ælSOMqNB.Zlܮ/C_PtOCpז-=vCۺCh~b\ہn+~c +iGks*A_/x|͑eX&;'_Zr_OS%աrw +=N/VP>D@tF^[*,rkOt_+gBһ ~Of8Uxۻ%GIˇ__)_ͥ_lg{V /`ynԫ 0'N/WnD[{V7Mztq[u󭤪5uɝA=M.V?.~z|~$Z'++O7XAْ;k#_ӅRc{1Doc]9Ԃ=QyŔi wIq7-^]("ʼn +d'\_U>Lx4>~^CƻiW3O_)K|TԔ0QReؒ]JgʮȽ]{;"aU7GJ7oR}SB=$ǚԕm7ewڀ~={v7/eW;kLj˖WRa< j37՗>g?sV؃JʭG?f?[xӃ-[ʪ<,(ͿVv+lsËnt\Y|vT; oo݉(~=Ҷ7TٽЙx!-W[[=b3*nK:+x¿g^>N_>O/>*"?Ib~z|2SU|`wz)eڿTYИ09}SYίOUWjweҪ{)Ɣ]Q|Qx]Es"ݏ(:y7Zww+LhTv'J|^ƪ\m˘XWŞW]sxv/Bn->u/vpM>#y?5vNsf'˘sO<;na[P&j[J +jlze UڿZ U7/$WܝW0~Bٮ1%w'7\>y5b)϶2ϺӔ3zssE(:"VveꄻE WSroԓ/$XkkSͬi[.T<(GPt;=cK-(\x7o{޽~OvgD[VBˏ‹VWE:M7Tx bVɬ\v9mSD(؆1 o%޾|+^R˫e nÛ^n^~^}/c/ Jv7Uqrʻg[]C\w',c7ʨoTU̿*x>Nuݮ G/ŗ?A:T*]^ +ihyݜYRtŋXuҝJ\^~QS]]0:AN'xS4(.nZ O^ww|gΩjT^ٮIei7rK[K]^,H~+"پڔ{/&SzbbK軉e'.ŗmRwKfΩ>q%՘߉( }.#] JOXrwGqUÊ?*;(;f۝\/پ[SK7 _槽>H;[NbBbS#e$ LJ L-%KVE~лY|܍-g3*vR^r!\VE˅;vW3odٽ]t_5EE7/UoT[Հli\ g~;^Ixg%?enYj^6bzVd}tqiqɒђ/G{/$)Y㢵(YLJf,$(=N2B }䁳$JO6̝D",ϼ=vo7e/'\ŕK)U.Ŗ\[rFT+ *+oUgɭOSXp)jӤ+U%2*7=Qx{mbtWqUgwXǡh *.Q/\sED눍qǭϻogu%8EՃYKm%3IOJ?nz!A=~/#+1Z_Hf-޾X{iة!j?NYݻ^{#ޟ.d߾a>&ݯӸrݟJWS{)|JَeH/]H8v5k1%[&#}\vb|ُK.\-iTQ~;'$_O#~d{=W^앮Hqw\D?oVHfҗ_0G_k]qmcVGjϜ/!&( ѕu{iIԿ렖!Uoڸmй#V-ro̻egr˪O唗*˩MqitB^Öky[76Uظs]Ե6J~ֻ7q ߠ>wb4F}$:,S'_Sah$j#sohp4jMFf.fYZԭHp~.+וWꪮ5F?pF ıWC)~CSzxFnm?Z3V=ky +ǔac_&~c[| ګgC&WF_!]5!:d4>U?Q ЌQ~~-l[!5W wzl"0qW n\mzmO/wz)RQ}xV5`^t>-^i 5O>LTA5,H5SO&Y`?kMA#5'# kd3 1@3V"/ +swqRM*>~ۘVvb7bض^YiJ^s>kMs~5u0 /y:[%h)hB4/Af퐩"d2b26AF\w>2ǿg&/Ev4\k!2ʘ;!6;ta}/.[7%-.5ߺ|r޶7]i|9е܆؞7(w~)8Θn˟vl.>?Np?iMBcq?Yۢq|Jd1YZO#3 W4z'7EѲ#sNgמj qM /جqzg6Aq"_p,vFVÃ9 f76*/ڬnQtN'A<CsPD##h1\EcV)hڒX46? 9D1S)4f6sEcz͕4F a!OMyS-l~1fտ`ӛ?>l3{Ĥ^ JE>Ib!sog#O 9Лg 396OG[̍#3x%i8@4Z&͍AӽJm!:l ~""B zLay[~7r ܷ_|(@6%Jk+_͡"ό͑ΐ2sDc~m2}8?Yp Sx|:1.DD,4ůMZt9|_G3ﮧ$_Rxre {m;v#8q׳_dm}s;`f9MZ\G<2Ӟ4G ~>`{No.t%0B ԕh[✋&JCxtd#C/-}10]AXͿzGeomj{ r!g|yK8Oxt+C8[p@bn>$ւ{/MFfGh26񗉺)nD4FMĶ?F@&[{!AjN88?M^&ա^hv~uz+  8Q~{(^s Ok|vBNɛuU ó[2o6iSUBQK9M'7J~ oܷ/_ 1n7?kȷ.CELGBOf)v!ht 4ah6~[ƍ]cJ8AT4ǯao4T_0IEkǶi y2#Cz; `/M,q 2G3d+db0OF֫p|W&Fxrqa1gdå춡QaG!A|8כC>99Ě!wxZV͌ڧ72>߿B491a|Bdl63&F": M A2j.+禜МuFkQ-E>_um G8f;=+X;T=3u?ܽ 2K? )Aڅc;5[Ey:!PyG~ +]'YO[?Kug`Gxx2lhZ4*F4W^FְoO\uaa)ؿe Gj̕#[UҘZ+r V>7v8xxE)j[iF }1mԯző7߂?G)UE*.>ON~WE`=f8_[Ię.MuKC%Ehz4gE$iKi\G +%LJ-pUש_' + ߲ÿ[#Z_Se?\o +}y鸇Wi\P?svr^ix}9IwGԷľ bkNW?ٓoӛ<}x3;4uǹ]9%ew +fx-I}*.y&( +oW߿ ʩk̯ϽWU't6Ps;+عl=n nB䍰V ů_m=&8D;.\\Q>FS{n<}8El!sԚwo'w`DizwxY bcSY8i&/m@`\~"%X#ۂwK|nGB죐-%p~qƒ1ϕ J^ +Q>,l{Ƀ'zs>U}zvf1s辿5ՌG+q\A;\S6 +[oۥHqhpKdd0ыhoާi}: 'YaGi3.]f>7W{ZU.nf?>) 5Vk֭4*xoqOgKȑ_pxv)2k+=μ >VHqlTkgzW􅟃O .vMxa1k -Όt#8x |>^+?O }K_|w'r>J}h#<Ѡ{awyK߯9ϯqɩz/;7O*y4 A_(UINK2v~OU'K;?-mOm1Ih_&A>K-4J1 4;ZPsh|;0믂J }dTo\-R~VP߹P7INNlЇm&#?З3,x<~0 /WGy#B DR/ D9o86G&E-rxLܜ|V~kNtq>X>?CDGe0!ڠ%wv;߸5g0]o{r7W&P;B՜-=}S];!mPp\҈%wi._K1[ʱy'=v21ܫF%JDDh>S =cd!YҐ$-Yd{Fxڀ YIySDݟ{I>AbPy"siS{!y#8[LWkT4BVsr]i&[m[x6 +]ցcxycQUGm؍{yUrM\PTFwvbZ/OΑY-^r(ﴐ,N~b^/ xqw!MW! XyDX?A|[bz̜%6DbI"5P'lJdLrB!IFksFҫ헗>_@'wɮ7+e%ݖTy5&r;zϿHͨ &n2fG}ptQ⣂R=g`vQw yEP| >>ou}6 tGKgL@NvvKdm6!G44#|Ip& 6˂ז.>联vOUfqljhYeTL+&Ŝm4a[HյḱRi糥LIZ#Y)%AB}9 "ϓrtݓtKܥyXX$AH|;B_nwrumrEKW!ː,>]ҏ,{:芥*5GPxtYlU0稊SMTf# ?Qv=Hͭ'J呇^Loݟ\aϧڃDI_S[N̐~=SzWKPwpLZ_Xd|UD]D~ IR(Wo9Za猼=9̲E+\X4|r\<]TD#*D#(! 0krPat R׌GO;^)}?9˲Le=?8ϧq8(/_V mد~Gp,{U꿰>LT\h,RڿBqVcنmeՆb>LaRd7yGGfZ6S&;U{z.S}9|H]=cV .v4idb{jNmP3uu8O_?ᮾX_x-,̀Y_d@n'i{dǜ^|v$c۸"oW|9E"/f_J(#T?ZuIH,0ESLQwwo.Z:l;G7~\hfn1J0QT}dwW۟{j]3]ˊnLZ/6m}˧3c}=|~lũY̦өyi׋岽?Sҕљ&TNIfhq kD;=U)nT"]CD'CdIFuФah4ΛG\r-":"Y \GâhV࿨b @wKgԇa`sUs~,ݔ2_.? X]bE:Ǫ`JzǏp snK:m12hR>/~sy|$I^KiFhY\7rxҥGR `S&A]tmoyH&O`r-g zFDOSZv1˨OgP/Nc䶏cS)UzY>:H-Av:FŜzϾ .|A ݍ>A.W'*Hϗ RՀ-zOʓܾ1Ŝy77ׂdwie61|X$ܠ-]A?d&-UtprE+\؞بr&>GOKU$fTd$VX8XΟ*nGVI{3;޸!Ragn1cz:+O\ z2/Wܡ?oTΖtY5g1U8agI Fcg͆ή8_]/vFWub۩ <5W[ͅHd՛1m轟ofZx6ˆe5%MDWt<"]toA/CJ1%iTT?pxl @SO:{HfuXGla|/+3 #鵥tL.1#}ֲmg:n.JGG+UgWmž_PkoC$8Jͤd=㤽:H>8AǦtN&HЂ5 "T4,t>j:-Fg-E.< ?)uY-t]ID&0(KhZg•>J5UDHӑsʈTU^$e`h=6Ռ.5~zu\n8ܗ2J9JD/=~F$؁kԍ͐IjU ɵTra*ᚭ:\Zrx,ecV xK*߱ԉGND'T2.dkfzuVɅt=p%]wr.\;[6[0MAטf'ٜDSgSp,^c՜hIՍu=S ŐZ*tm=t9t|?' @0|=.拴gηNTGWYSAt +ΠC! k;—=\d~Iw~pd6=toȶ^^HxKSp}ejFc̮g+ Z-qHϵ jcXu\A_]HE rq|y%6LmJg\J \citpizMIH0;A{`&oWOq=G6ҖK Oh46_\B ,R=r=ܙw\]{N|߽z~\J!]8},d5sזjq齿{K]inŔ39y5VVzd,bQ7'` з!ŻcX0~m(zPo +U:kRЅa#ţ@K#hQ[A0 hW-1`r;,|gq~b[dԛriMS*GI -FjC>6_^[4> !PE:ZcTGxp +9/|< 4ؤ‘և?D8H} 4ahaK:@뉮?g Bb?1Z/y)ScL,ac2t`LGAMͬ4d"҇I(SāV~VWc2Wn"yہ=6hmj60;ݧ}_|ߤTmȺs aʚۂ/O= >:=AǕ ¶l\c8&r$U[M!G𑅨9,AK-A|$4EKĹ8GXܠ? O$jIu:xZe”6t닔{YDu7E}/xx +;'KoCNKpgptmwO H8e8`3O6' WhB(}Gu?YeTkLYԮ@sBl)o"j"=jM|h qwAئL}Y-{s]sG9cL|8A繳2!B"}\e)q&*H)M42*hєk\vΉ\Lx胱MWWUeJbН7A[c(eYuH\ZuOB~ά+1GkyI}3;by_ԑh1FQٺ+UM>^ ؁VpԠ`- ؝ 6m,iASsmΗΧ>·>LBVp]@t`?3=$(;:mowRvܑȷD<[+sk,`;;mxlڑ 6LM'zzĤ`{?xs}|aIA)@~wO&,vTkDWVi 5.hU Qjr-0kZEtX0*5gm}ayB36^Y4y.ЀwlqW<.M?O1ђ?93[L@Q$_}Y_1 +tٍmv"sZY T9VFK`j>H#M-njɍ}SMqח4G _q<ȕvZ"J{_̃*J0mpd=w]gzp{GgI#@ßM,01|g 6`h>?1"{,|60|tlx YAǧ[β;3 :\QDʶnv=sb[o:c8p5tZ%ytBaM_%g+&Β)C ;K,Yΐ-?JC" + l lxK3aR>r;q縄QyxX FC<-EdpaÀ/lwpVj]S\I[y]W_#dyDwO;ȳKgs;}ɺ!p +wNjȺbYLE. [ Z<+aĜW \`"*եPmkDx5MԖqRe| ;_?Y]|E^8ЌUcFIp"C4* +Bb@kUᱹka?FDGRk4D" -W2 +xucl K8.+{"^cB=>rHZ,0AλlЬhAgh80>TQ9Re j-]a}Kv +E3I.0C1"z22;˫O۪*?#:kt +e,a(R[o Z l q# >ޏȡ?4a|qx*7L h +v׏Mw]wSw~S՝|04s{&"RaMBf0n}xfQj":PM|ͭ%cۏݠ-e$9DpX$,"CEVKer C3'.%E){-s zvSɘggM5""?s`I6\LՑƇ  ,n§ήj KOxrMgCחAܪ>3'ϖAmE-w` 7TevbRXG*`acvOdoIiGw󀵔?Yox+LW,%Cn!v +њ_TIU$mXWi1\eg\1;az~E@s0 ֨?T~9d yF)>`7x~/Y`NX`o1u Dz x$}r$ wl?60bI>d80OU2TUm"p!/'lS;%l`퀰`KN {S9+{OB;JrΒ1b8'?\_nHY0|h6%]&= 5v\\wԙrQwr8s@L܄Om90Jpܑm\8pReՏSF֙d༾F{[}_.\Lvr;"S6ߴ'쬬f`gix\Tĩs9;,A7",%𓁝?R#;+OvV0& Rbqnq;ļf ߀X`?pE +bWIqɐ +|-19zO~0[醋 7޲'ˀHFhr? W#yBtPIheSH +V7T:"sa T(2̹ʯfn2)Coט+v˗ĕo`O6bs>0`#agFztY)YuTw"dTmWL=+sr@b>[|d- \ +~aߣ,*vY\d̆Dk֤|mr8%Y ag_o-{{!? ,\}:Xv%bq + Xb +W q8-  L`XĚX0pQq[dpi)Ċp_E[sl. h*z'){9l?K'~b:@vLו{'L\.ܗbjOͧ^_ ,ecF{CWk5|z:ag+ֳ,mvV;oz|~ ފ}2ْĚa-_]9/HXESu'qM-sI,6Te~}6\#yǕXAoßUud&'Eٱ9ʴLx_w&i(ܣ!."k=O֋ X$(;yAUD*L]ń%bCbfFn <X 1f* r>>|IPcB֙Y~˯ч80`XW 3=6oB}MaMD^= Yl-QbԹ\ZDxAiL-M̸o k9cqQQ=ɍۉgnY8H<8b8q2 aԎ%/ASO֝YHq|.]-1>b +4yg'<*ll#ӄ(a=]a<\8qՇfg[՝!1 YApxmsĹ|U}wiz+o}=wE9ddjH~=iбk%\sП!G8gE6Kܗ o{ݸ}SI|^Vk*UQgpLMy=Vb1.c#eJTBLx0]LE.aRJFXo7v[ +/&Qʼn9tEs,EZڂ)z.[LXFfPʵQ{&U6Ԓgla&c3ZaoC%GS_͆qO֛Ǖ2֮^~rG:lp{2`-8El:-$`8*&7Ƅ1{)x_ϑkpbFyBaba 1obXOQrh:Z;D1YTX:Xqz~מZ#қ@M#ğxp^(Ou{`{H*nvwM]Wb O0󻱍jGpD >FyKBGCn.\w~+,C605総<|lyEO Aس(걆0<~<rgGn2#X)M3!~xئpiut&g8? ΁2uC?BLȴZW$<1y`<Đ+1BmK[ۦ#2O^fy`nad?pٞɰ 0H-+eNx*&LpfnS$2NKwZӛO̤+MgSL #m}/7a>VDp%}߮}ʏ{>Nc">?wSӃt2=Wb@Λs/Ǘr|9_/Ǘr|9_/Ǘr|9_/Ǘr|9_/Ǘr|9_)S\cC]F#t8z. +H%%/uLHt I JH'>OPjXBۀVˬl= ?n5 ~wޜVs%aAV6Cln%J/JC>2g.ENe SuAm_u +oϯPA1aVe+բ#Y9Нg&ÿa#tÓV +גϳ+Y7,oex|,^2za>o// %? Y8Ji5h-om->Kȥ"u +9Q=V/^'\}/|jb&B| +RQyxEH"[& ֆJYx,EV1dT9-|k4ptYruP +%ɰJ@J0൚r(t]%eUA)(1DIӑǃ,JHX9}({Z2_-4P&࿿dPL="-2fZFCA еZP\X6sK(QA\fC(#k Dd (V,PM Ȩ2SOWtMgE^ HKvNQBij9P +3a!MjeeUjc.ڄX.>[td6D&Ȑ\(Wi Selyw( TIF2BAY&ydPE I_9 AɪT!C5MW% %DR%- d(Tk4@nOd]WeV˗GN" %A|lH.q!S/c JĿ rj 2HҀ$MFɄh+)cGdUØ O6-2^|-&mN+OP&W$$J-5E'Бڊ -cFV8E٥ʬJs.6EJ~)Ahc> \6c2!EORf2 Db]T0A@gH &$VHQFe YP©l|b<Ɇ y +IņP,;S^yh2c2uaC H A ) L3%069V%|r(䲆)R% <Hs"P[= B.6C)s&pKFqk(FJã .&_Ȯ9xa$ o$M !p_&jR!רϛb5LMX2!jbJ@$bЬaP| +Ug"Ԉt3nIsI\DT0YR@yP97H\bJ._S'SkH؎i)RV&)b2Q:PJ4B"MJkͤ< d:<.q~ @)&R#(w$}IuI?eԏ+υJ(Wy* {m/(w(7[ܴ{Gl̀2}b*6L(ρqEJaq_Qiáƌ2eI3oD$v}!o.+ʍ%`ೈyz%)W%vLQM(>dJ +{IIZaEv8Q& f9-㠼XwOC!dՙGa %"oj q|f|}H % v\iKP"mO`#b(`\ylcуF>*$MCdpu?D "eͲ5tX&[{dȟ Ug6h3: $aс)ZP^ s ʲH)U\>>,/P_Ta G 2J#tqG"Z]:TZM!ҫ l F(tAAP0l#țk2t RQa ``lQx|$V[-@ +JxD,y )+TJʳq)͇ 8>#ƞ)6)6[Lh[lx)b >r0(Ul(-_WfȧV"} 3m*K*XR\(ei7|.0jMAF +s Jaf2ڳ  J֠ +"ϓ>$ˡ̕] 9lȬ&B5c*,E-X{ *umN0݊- 0|k JwHww `'!!!ep<>;>d|gq wz]!K͙^Ţ\9id!~-<ט#2XI(JrdX +] e8:N^8P|q>;Lc@ȑQ-w@)f>gACĿ{)BȘe=;D!mG8*D@YO_%Pl@89}|$L&/&)a|tW m GaހKHK$6C%cHAAn>Wș'tN]G[Mk Wr 2,r9(f@Y$lym ȾL.H#s(f/O2I )} ]C3n@vB6?? < {:Mz T_E g~ySns qȍx =^Oǔdmry3^Y٬L\^6VTd}isYu(:aH8{"8uX^,/O!|i/4ŶsWB%-" 6 %{{H-hch!F@ᆣpOR- O;M#X~r9p/E0?k,~8 +1r /)x/4,4/\_< deЃ ōɢ[\~3F(Ȭ`{;+>qI%AιOws + ӤY̱DI p9Xx aHKX ɐSAz>6L8-{ǝ(ȕP+hL_bȘZ/F_W S2<Ŀa,W z] V CO_B4Cx2&fcfX0Va3DŽH0xI`“LdRlyх8P(F|K <8Ah8G$`}zh|Ʉ] O?Y 8(@\ r'r [S >' Tn1u!/1@mQCq[pBoDf<"v?R. τ/$!|LgG",^3c1X_:p{o="4b 9>l9 +o@g6:) A+8ΏshತYw4?ckTcsDypj41XyA|]g8.o @\2$h#'exQCNȀX >3g&#,62i|]tZV>,| 7,FbZvcA3nhy,2i_f5{~-AojΝ - g iȊGmf+ N>7 +z8 s@xa"ṀBt|.^Bn?6^3πM HÜ\qmFH]K.!l CVr ]V(X"r,kQ[ QZmbg)XQ諭LFA6ݐچHX$5.ȝP}>J Lq``)q},o0ȳ p5)` SaAl>|EuAS]q[ V(kk&Ú;͢Ę!HGtUKc@>f?Dqa(4,c(v؎J /Oɂ Rf֣a +Ϗs X[BD|o$λO>Fށj/pW۰ȊgDd̝>yW*b+Xy<ϗbT9:Z•)Po, VGz 'SBA1 ~Fj9Ρ '{Ny\l_s}%濎 Į BPl('rW*r/[; Xr3v'svޮJeߏ-%c`_mED`CVHWwِ]lq۱ uNǔRaWrH'clB0NUP)28^@&خ+`|"5lLd^ą`9?Dz'.!ΉȭṉSq\ _-rgl'wRcvy ,{{#-C`sZ$(BL8<Qq&$J&@ +Q.c=!pc@bS}6TӍNу&)Adv`& Nx>h:-]4H?)1C,Rΐ?]S+^/,So:? ba> 87,@蕽 qU7;{ \ ^蟻r"[ ~16B9f=KE-|85i1]V6ϽEdiлF +endstream endobj 22 0 obj <>stream +%g)G4撨tXAW rmYY*q\~Qb*ؓƀ< 5kL]1o|,/M<X=u&[wZ2*qB k =Rĉ閵[3:l7lRwAr}VUI _w#kf$h~ Y,&Vx lGMT{q[,YHBN+}"I#>,8ry>l =Oᦎێ+ +GsFs"{Gm$X"'z~4 kпD#{[{FǗ&3ZUӠwi𶞆& ΧiC֮%'-l'}I7kW籋c%~ Q@xHJWT+^+?5\X%/6843(~Q\JxN3 +۟ T/O'[!ئPԨj5il( 8fi0 =PՆm؆8l#Fj8Q̑sq9y!pGlu1uɐGLQSTכps +uSy?<&-qPme/=< @JUƲ +\:&oOQg&C^҃4q`6Al[?a1r` }3XÂ00j& *~@/x9X ɡnL/XJ4MUp_ͩm` 6 An4|%?^c +-ѦX)}|.Gf^Nֹg&PG/aեo6%؞T/:trW &6.Oj>{k@$ӡŧh'n=_1,pr &`6{`/HŦ)5{NMlCb O c%؆z_5>O=AXSb3O{7<zmK=.x4د +UapZ/yE+S  l(Ѹ=s$uY$L⟻t c}^p>j.qY StCoEW&);QwVK<ӗA[ZuhH60gsNWI9Fjk`;d jI;m$tG+?cBل()MyCl(qO[8>:4竱 u ̣3WBKPP)G_bK|C<j6N X3 ң+KV}?z\^gAn&%|>`*N @NmSxBxP4P}Gu^|~ؖ[.9c fX;eE!7歑8g,5! (a}%,gݦ^1q"pģ/?; =ؔ!Ɤ!vYk_W4 C08 ``ySĶ~rXvm$-r@qA5sMTZjkȀ +NPkO:I /Py]%Zm|a&LztIx _l((_{BL>!+Vv)+Pg<, jlgJ/¿l(N~۠fK<9Or&TIX.J>@JJ/Z5s G($}Un +wGؚ#]lX23Ys=1i9W n4:ܧ@lXa{>fG<хXG9tiS A*ݒr58'A8r ԅ1x k4:𰏛vsЫD,^_ { ^N%GDc{Tp1jL@v0XA>v{xeHzf_K"&z2f_{"-"VlWd"r ]EżFF܄&`[u{2߃`A.}weTzaf +,ye/CaX`~W  +xm<O؋z;Z*l? ,q茶dV*B Ytg2b0&ܗFs8JX+Ɩ vBn؆_k^7~YX_u^i~:p+ݫ)H)02=JBO֮a %v06᳡W2dύˡ3}4obkp#~>~m{?a/ +F'ԛ %YƓGGu9X) ttv `yx XŰ7z]I6{9j*~ϰz:r;b>r+55rK^y)AX䝷W 7o^1+00y8¨^ r %{t_W%)X +ؚO65pOք`z) 1~BJGǼ؆׭xN{5X4&qO*b܍8qC5; 0k ( +̮f%J"] +Z\ _S٦Ggz6sTbnT!:*[-5l  +כ ]wbl/Gz1i^e&lGȏ }9Mz^_Bve%;7¹. xW`96UqX옾a!=ɐsxc +Ō*2 +]ֱre4>i6풳(B^tٯǿUMCz͈x`kɬOA5v_uỴ.1ѫƼmt%iKཫ螁$+6)ͪk IvPZ%iZ+aKdˠR|WR{?# +zePI{nsN٬:Lm&_I&$Zh!MmGƔ4xO*S r Ԫ ֒`q&R~ѻ W2::TxJkOge 3tZLn 7Ʉ]'Tj2}bnķ"3zDϳE]Z2-@+[gi6*ln#ӴYf%%ye$9u$ASծ\ `USPu@]0ջM3mo7Rg'煉[W6[{Nm]-A iy?^ ;X>Ȇ+B 8$l:"Mk0jBr9Oi뵅GbM957 Y ]LPCJΔnb'}Ŵ}r>e O½V/'"ـXi){Ҍ:$FMpIi9rnW*Z&]Y|j%JP=]\5a>hyFn˄av[Du(A}dnt37 m:60]廊Au*q [cu0 Cޠ>ys!uwАIz6~XWweyjc&S]RLQAe9&FK1j0] kٝzkufɨSR[!i(%(^3t֯I% P>Rw>3>zYG 1Q^!mtw;(a^TMLA૮ 3<*(1PXn).3~w%w̵V]&&76,+\W>^~s{%l:r%lR*)YCSˑ`{ kFEV{F>VHNI5´V-QV٫>^6ZtD". EyH6Qz(&ګ"KCɠ#y-߁noэ"* :~ĉ1@Q{?iWcqwEı jt'%6WMDw$;u&yʷ2yTrV|VJf}Q$^KꎱH*v'g,jCy@zV`rZ)M:SXҠĹ-Ƣ'$/N C>"HEg='g}RQ?+|it`?2eg> TG7ߌO&LE[Y#c7~Cdr^2.})絘X&]RfKU>0ic=.]ZDÄUQAR|QE_z-؊LibP0P}"{_ * Z3mO0PSqfTLc IE56z62XĹRЯ֮]0K")d%I|:h-w 7m dg"S'~%JҔf&jNHʋ]ي_ԝn; 1VڧՄ<j ޟ_J}dۍt Td"u6<'zdfe4nAQ}^J>aWmf3 Oڏwwy v3qUYRmS~Su?;*F4X#nYѯlkq}/;n%XY6&]:לkޞe4 }pz]χ9e.R+ثZ۠v /4H3|lڑaR_wYš[Aw +baѺZFMɈo.6v:q;ɲ9=xDkVJtPӛҋ U-m"3lgɎs1 Qe~GzE J>~xac29^Sdz[EkJ푞b$AVݯAk^Ce$fܟ,~9hIq2dPz^xzo׬yܱ'F}5a¶&Wqww딠g$Sn)vip19$JT[ng~Fz(sڼ?NjˌMtIrNp JКh F*T=P_p)'sLk3*s㋾8A 5lpLv6$]o#2-6jNQCQUQ䃉 dP:^D)/w;YўҮ:O͉I5./F&:Uz#*}K}#.7D0.8<4D}Ŵ}cJO3eg~>.h1`rI*7=q'p-[m#b=k"=3+#ۇ[7_ +* - - + +.G?WV[م;gDZ4  < <3w}"ѣCk jk4s-,(k vy%!O!WN_@Yq_um;|ԝzIjF%7z^hͺzyHc=w܊n uWcQ\oZd*}oɯyVc]jKTzKTrkgSA~9'4-[ſƩy${LEJ܌L:KEo +UɌ~Uqv@㈤W_L%uU~N&vsZk_ԙ'}"aKesr[I}(G6͍iJLwwKhJ ] .ǻƻ$7;Gܬjh^UE,q}Vu1"=DgNcSZ[sEXqJ\Vo%*mW܈(/ʷ7ڭ2$ֹ&$6=ƿ/lP~ +-N/voDRt7jpI-~? ;5992̺s٦JaeL'x Y^~.*4!h^q}.?9< r /s,v>ۘy1%DkvCQiɇ`Ikѯ>iKy乖3 Gߍ9"g߬^Wѷ]LEvr憭CGGǺ4_3jȿMB=I3[6V!̻ņ4պF܊0|Dj pgj;gdxk懦W9GBYUv;Va&oݜO"j5#刅1AEs sMUvX>m>1~k1IV*3=R?v90c=xVb*%b߻jnN(Ӓzla."{L[%a嶡O9'UFG{zU'V'$5"ݕRC}O#Ȯ_/}.v͡1u-.9OwjÍZSuiSQ3۴rb+K6g/!䖢kEL"&qx~'f +3 }ơʗOTZi|N~嬍^zCn^OqobſL+p^bdfGLj7aWK\#Q>x^)!,5*3bc:'R~qT+i*bvJB䬌59-̙jmd-T b1B%>G2?z<'YDˤU"b7'sF_?"_dDODtOd+^QW #F(p+p%.wJ#;E- gv?7~rK!-N{8F'sV8?1]ીNG|5p&cFLC_'e&f%o;L 19uDov=6;=),[d;Hc^;Wƚ|xQ1;HHm;Aq5-ZNz3^Ba,t c!|? ]Lqwr5cnޑ:W"Xg:uB]bMs#\`{?=ZzWk=ߙGSΨ9H絎OnfbNsb׉ۣorՑ!ӣ#z8<ӔYPZ݀ư95)![hQO +]=8&% 1k <:q?t4 +D5qVb +JE8bo&@3gvW /=_q}[PQR^%692#¡2<UGDWEUiY}Pg?_^>M̒]@L!iIP_H2r)1Yv 1mZbAb3؛Q*T&D:WD? <ْrLS+SP\*ʭ%-o"i;~n- 1[vel+I(+5ɏ]F̞;s1gB~vBn6b植1Tۍep+fͷN\ lvGd}En\R޹_P1PWZmP^k%8EM~+N@L)~F*?2P.YH1f-1c:bE+Sw"6# SevN™ +{8ƾJܻ|؊B"2wNEEα9G|c<Uޠ򿾖&8XG~*GQhJ̗J̙LXĀOYj@S#f-$`u!nIo /^FbR9a3{)@aR"ȢbHt:߸C;̓dlمj Ořa$~8L!f&_I̙7{lX4xzVy)brP%F̝{Mq玘6߻bQ/{\Tc;D/sO+sLL,f3xS0F=<{ïMBN#F!MXF̙Uܴuh$LCC̜_%bbS*-b{;z)r+pzG}=%Sm}dGc<̹zǔF厈Ks{_xMCLE ͫh͔][HLFc8=fYB̚]fBn"OzE b~b'VQI&ӧ2{TmJ._*Lv/ + - +/Eث]RǨǨƕ8Du;T:vT9E_W{3e=n7Pfkq&z~ؓ_Oȏ[! PJ̓G,\LKYK]eB%kb -Nl4ʐ>E J;&)r<_wbs7Q*|b-c Oh}HWWpokFDk$eP_Bȏ\Bpl@3e-"fOXB̘F-Ba ތX$tT/XO3-ݳ~¾b&NSgjӂB^D~Q%][YS25!mZm+j ^\'0%Xx hDc8?fBOـJ~*Amb._6K_62(jsUEFcb.4 we7MuTmV|Y5ob+Q(wƼFXhtkCBw}R_}j*%EhqKv[&/q8LFׂU/*"MtĜ(W(rQL4\?g1o>b21>`M,|XBlv)u/{~_m[m:zz zQ^\k!眖/ +b;] Se>e5\atYro:7vOFnpx9jgm~4NnU]U?((ʩp+49 FNtZ8!|6&0 \W6Nա1= ɍ!E~{҈%+q) ,yg+r Ċg'Bl[̯n@%jnjn' gn[#v>js}>m3Tb?یA_9cޏb7^NxпlNdJԽ? eDϿn'H +C&&>qqqA9W*egu!0Ӧ]fh1dIb5A=hI{X"VU#VT'* + EĎ )?k8UP3!|w4* +7+m{0뷵Z=kop[u92Uq&3ls=p߳hӞWQt`jmݫU-VP7RXh1a)1o"l!Yt'vR#wTĭV OOߪl Zkޟ-Vzp'Կs9wN;|q>>N,pN!ůlCΐp6wNd;zs|b8b >mSLtnh~N,_G8׋~wp(vQ:qu~pGs-. +nZ/w̺><")<5¹60\4z(Z(_q5r[Vp- ;+N6K!gd.eF9JH5+a7l3ON:- QY5h[Yfcn6 MZ_zAg!5e%tj$'c|9d;e+g;݄rA=GUpN)kș +9[n~Dt3p@?w+#tgGΊhKF]|~4c6!/֒/{uwbIEIcI 4t m`ZWފrٴok<ʋSdS. O^x6bjmb5䭑۽*'_Th>|=B:u^sLKҡ fMgWF96Rh}':QyKt9-aOfop/<wj#XNń5_b_vŭ'ť  S#TՄO~)8=aъ}gtT3n;Y*/攵?rR9kԗoԷ!74mMۡA(DY\eٶT}yQA*Nqϛ8eל^jf 8H=d;kbfj +RzR$s:i7sM%ia%~n VquENܣ{X4g+Ѳ>g\"ʢ6{ b!;WVۧ'xoGk22؁6wbx贸MR I$9mmBsN3ŗo5x wx}'9hALf2{@n8f=-gce5Ң2kbN0Gfu c˶n.־9f{c)7ujUb֘58cУXNhP.#4u|gL!sۉ.)˅e{YtxEs]K{j.;Aon8A?b ~S~'amj5d]j”u&f:GU|ejz,E-}բ +Ѝ}UwGewX(1NQsy2`uР+q M > bz6١S3c᥸i{(#5Cώ7qu\8'fx㸸ʞWޯZ ,M'C2SwL {I-0u78Jp(|%GIYKAUx~ڐ^bF-UAK=}ԵA FU.oJ$Cjp k[,uszʮM&)3">xʍST|t~scLc^^$}rOYHDUV#Էm'!c +a8%Va| z -~>[ [I]x[!Jo2ͪXYpJOBd~TtҖ +?ÛWǗo!1F-%>ƃo#M57"g58R3ۡy9g!BC|ln|ZFXu~\v@I0ϳߓZ| cb-~Xl*{t 3u* M%}Ǎd^''YB҇}y1[qS7ËD$ɓѶM:dΠ:/j/*^E"/;ta$ >u-哱-83g\'2Vѳ)䶽U)n5GreCe/<b;)KOK+]a;[Һ .ҠC_i>?f=^R 5px˰W͙9g6"Ԕu5;;w q=aNޢ,84ހ/%L:3,sAfuKU AF92d:h:ΟHRӬ/yVqT,6b3=Lڐ:/cd ~7?Ij:Cz] 7]ݠƥ:  ',˻9UM[DݮJhʚڭ^432zʞקTdcԥ&V k|8^1[}Ltx!Zr dy)zD?%}4>b IIׄK|%) [ P5U0|~Ơ޵;r- &1,W;E0 c۷$\ +f <2BYq'}JbFEB;X8ZzK>3@ {ݯ  ٻV3$aXy]<ʷsH0yTɂ.cQQg7U[FGm$ ݝ`! ھ#.ݍ(Q K#4MiѦѶv{sxϻ}w#:I%U{5m m?w ~O^ԝ] +{!؞럦zp'ҰK?(PY*p{Yj?\?zYu\n$mV 3?]:8͘b6P3,$>Afu.;4GL`u +[hvoު&bog .N\X%8Ҋgct=t r\( KCT/4r/gt:qM/>?.5Ҝc\z^\GBAt>vXvj.kz_Ͻm{ugkNeMǔx?h0l݉/:Ks%fcTw(ڃa^Iz_o^n6HOs^}opC/vc^g>E&ԎSjMc,eFӿ_Շ{F?;?K|]U=_*3mUl)Y`~p{?-O? ,8WdLyfQ Kօ[Yr):c]{5ܾۙ~3ظJ{!6NbX!$۪IČ +Kc,dh%'|i|jfaϮ5RY' 7> f~÷oM~u Tp~xP}yXY)\XEړܩ= +ߌc)>U%۽ kh߭qټ_ 2Ü6fe9kW~y]K+0g8rm`_ɩEV/kDc%iPX7On6p1.7sOpO?淋^saP?;qwx+=⇯XLOEx;o܇kY}SŇ˜67c0C(d5.܊p/b\d _4Ja; iM&Yse .?{ oÜV}eSjYը6m˴O-ɲ*/-Ņ.frUso7}Rf3CY`fl͆+4[VٳGvKg?m,?v4^f>o~wO`>ڃ/ц"D>М2?륞{.b^sخX>4GmM,Wz|*ɛ^n [m5&stퟮ+&Hwj,W]ߞ_6J ʲAf>S,Z{mxU4+flYK: ІWN/4t~Oir;kС^Voz a6LƬ?t_#eq`4Q(옮|?Wux1ʁf[P~U+XyewJr,\۹?y +4zZcp\fE 3[hM=t)fwM˯,N|_Wq|T-9ڑbѹ9he/6a??Ac/o|bۋ05oE9Q0V_7M7;u'݅|.?wA LodN:--whNOܵCu&͞-]j5^:^SfjC-$d+>Q>u5&78#Bl)jc-'hc\BKw̹JUBO}梜y.<vў./ѳhC?{놟ˆ戹KFT;%7_~t<>cl}Jx/͆k5Ѐ ֗N>أ3G it +#Jvpq0+{w\4VͰ7W7M^;BzT|~.X|Fq|"⤘<4uY=rbNdҒLkd1vSBT; y<sШʰƜ4[Q\O{ 줜ΩX/Sۭ;+7.n/{/IeC:B7!٤a͝Uz)^|2otG^9 }p~M\vdUg؆k{ vNek`^;}7Op#]eV5RBXo6)¾Z:I)ƺȬ:DKm`|`@H:X:$ޙ%-m+t>fUbˇ_餾/]{n|'?|a|Y񫏋0է +|}|[k3?,.r}l@߆t#K18kW5XMNДW <<:OCsuЅ&:w.6㚟lB$+J텼B2B1'.GIG IBb89`W4ӓ@N21֘=c#-!LiHceZrЫc1Ť50ZwfTR#t z;ĂO]ҥtQz0 ?m2J|l&@ [&Ic|! 景9lLG@#kqV:Iέ &98|T d>r9ABb8!4cN " Z 򁹬nDBRõUywe`vݧ~?oo$m`[_X.顆|Yc4!z zU|Fj@[h6-بٻS Jb-X{˥YG`MnOC|`5Sks lW A~k)iO!_O¿eQ,ew(ꀏV,ӆfXi5)cyYbz-؜|p%t1W P:Y#㙍%Zi +.3ˡŃVWUseZ}~tbS'|I>&a(5l,xkm{FnPf瞘 +LSxarȷ~kl]KpS*58 +Q%vD+2blư.}f\x5%Z0_z˓C]-89x3-}"+?[VG) a9]-=lBO|t='6\ υ6]_T^yqvHY:58)x>hN:_lNΒsڦ⵹֓"<_%ڜ I"q-ܼ%VlNiz^r4 #g +I-U';Yu`K@lЧbQ-$u? -fMY_n&?pmlsLgk܃^6ܭo~Uٿ[݃Gp&1zǾ͡M1. ъ4?>jxo\ +ص`}0'v@Kʮq\|[a0OUf`Z|GGZ~Wp`%qKg+GO.wP]8.TrzVb+FrliT}ct\wQ=C/ Dw̎OjpbFsҬ3m{4[`Oȋ 5Z`B׳kZუP@ *bӲuk? x{| +t䥄"{w+^IeAz}~.kOcQMFo%6PH tK/D[eft6??gqS͠Lj -hqCo"ɲoZ> +.+4GWJsxot=m /'̯n|#O* 1c|cr쐛 ;C:cBѩYbz}H5{,f.x&fCΨΩ]dfԼ`f/F}YyCW&%|(s$~`]_} :艐u.==Gx}0WO[aݣ^Y%wQ ={7*_Z;^HC>\7ۥ \zr۝zmr/X}_rLjŖBj@p׽CfA$1b:;[++qJlX%expXZ5v"i!#Bp=go,^{Dj]_Ga,XhN5dw0O1t"s[ /d>Jݝ+7fb/06Rl^!դ-֞\$Gy~b:{3 U{r=l!-nԔwz54Q칃,b/YxmzCQ\z +G.*FP_䝞E +@򈣗¶tR9|^c37Rz)̗07e +=rQh\m W3rc qŀ8+5p ipͯ4w ٱ!s*WW % 5wXMuqXqi7tݐ۷ 7ҞnrG+`aNпC}׽̯j%b 셐+EfU+wbe`ݩ ycj +]nbg1U9X >q;w}7c:Th L[V/EZsqb ayv`dk4mF򑡹2H. 783Ʈ8;xP˖.`3{|4&NS$pHapO=Z'|Wd1Y,fg(e +YzC?!p+Y + MBh) O}3 {R۾#wCvָV23kQjH|Z)螉$H#7>#wG 3ⷀ^><>tO-oU:Bdz,-!8E3z+V_Y*ozDKh,/G\7>=y++LD5\QG܇E"^ xA JGh+/bJǂWY7E=rrF Z'>F,!LEvrIC7,й뮹 8FިtS8ƈQ`G1v&vVtqR2YF7x&#¾xaCjToI`g^kvVpHcV Zc*goKܮ)P̨pҐ4ZL }U +Ⱦ]x8(Z'iى%qX!{r85y!kÚ?rilD/X 8źT3;;kzD^F^-/!O഑ CX8BI  7sy?Ř4{]k+ҧOp@ު\jӍ ˔sV:Sxgo+T 9)zJXcs#*ꝅ~ sz Gp1rb1bkvV]r襼fg!*arF#xe`g +L,##-_I5$k]h +g,i1v2;bK>CoGw͆61k4nӋj'>L,ز_C?yCGX,v Zo[dlS4>RjGtLl U%Ѿ>怗V#C- NƢYࠣ.')N鹅 dqBr/|s 67 t #yӤ򭻻M v2Y]_10tOoFg2rj1pފ"8@,hG~ggJ1;rZ5tN`6J  ԚK%ߚcH+`q\Ҳ䍓Z{8(~UWt;z09Tt9}I VCKK%U{M%#-^&59jY_xr/ > Fl(>${64Ŋ +W*랧V[N,՞Y4P~q)ؕJl(GĐ,xg-qcJڜ +x\WV\XN/Vaos/ v~5sK0ަIjB#1#uop{`B@rkT,q#2ltb/_hU;z5ڃfb`!!v' KޯXNtVj +UAv0qX EZc-o%k X/X FJG+b_xpQ믭 [&b|˝O_>z KK ~b9qfʇK`ODɲž*`gN=v%=3Rl)g9^D,BϪdY{`gY׉-oD~+k2f a͵r{ߥݳYĚ/6X'xo#qmP2Θ0O.:ww\Y8=זҚ' !QVr%igȋ|'z;jKO?ڌ<[IR@5z>j\=8jD!Qb_=bɤ9!Y=u=m}chנ8i`ws;!ƌ +Na_dqْRu~ 3?Z J|9Rrqx(ŽF[(ł9/( `fy\6ѐyQqȮ=Fᦱ7h襥iV Ş$hKV`5 SQO;Kl|w m-k;nBIֳ_Liu+M)>gJYE6oc]-c=3`T C]5@Ll&]YgUur~Jݳ\|SlլyC9}u݌3vsW+-scst> z#6!B߽]rk/R;{epM +O5s˝JZn.}n~`z1\cN5BHx_‰?C_Փ#tXo)es%bUX|#`ќeыC#Tj^!V|h1,ۆ3Y=t^/Tm3YCodrݻkgEC0aECmr)u44P2=k*h޵؝R|h9,F<o$O7^_+b-AWVo>߮ / 9,磜"/PNLKI.Z -PK[L81ř2?e*7M϶KMm>e-qX,+wZ?ހO5Yr;bI}|م\秛s'>XYT12|L1*F)G|8!-oV6G~C-Mk_RbåJrxic5yFK{{h5:N< ]\wIoJi6d`LktY9:VEB9><\ow~YoVhCfk@C!ڠ$+5|f}Ƌ02ƙ{#=.|4G12 mŶiVZ?A $t ZK_?;t;gW +5H8O?+!֐91UM1u1KyvÕ0zaKƨe&P0*T0: 9 [eͥxeKfB~"H?C)#"{C<+bH6!8Zqch)*gqCK֐r ⏎è h͇Ɠ 乤LRB^U7DGffLTO-2Ęf&&ZAv{<Fp߃Q\#H(cR08Kn"$؋ 5u:G!4w!Rl(:1M8&+=1cN8ZOG!aKN1Cb޾!f>3U9&Hz,ZMo®T'Mw6)u7'g$f;Rt HFMr3a~iq )v +G\|{I M/B"Ȉ[1>{F-YǧaXN(WBlH>(Tc)Վrdp5$hL>m)YABIaT2KK ǜl;1&v?HaLFRh"plSIX>(݊G)$#!ؽ`@c ̞1[;2 zδ1"C^L)t.W5#e0,%5Bmtx HV`C2:9!-qT1cfwe-υldx!s:Fߚ'94YS&bǤb|*tb;Duq?s0Bith4~A cq!<ҳ_t0K_0s/kd$ G i|Pcd[2$&0ͱ\ NKGAJ:rqRri!I&XI̗([~ M*dd!ɫd<.ΉƪII|xf3:6Ƴ!MZ`(蚥t:cFzź%Fn ͢C Nt5CHXc^306~_-?ʐ+.-d6dA04n1żAJfk8XLrg̗kk<|?aф(99,Dn'!@<٤*S +FsY#@ gq|Ƙ?1|ȉ<qx >K5gfWy)6PojFZo{m˅7Vp4Sf/NXl}MtUm﭅PꝔ++06N׮F!1G2@SF2DzT3NL1 ̅Y@RH@Fa>B5xH"X&ȃhKb,~f i&fGZh_SPgA%^^ +lge6֒J)r:^.=3O~{ ŬI@~Q#689SguN& XDŸyh1Ig5 ã$Ԏ';`QeKE5$…4r6CfOE!ȫ!܊3kXDH +#o(β"?L9e—d;ј7[(d2#YnKo_'( qߞ5,w")+=zm%9_}~7ɰwv _ 9Hi%Za/5 +ɇNF-QGl})e0`1V +c5IB[<@n>UcuX*zI ?Z)!搾pBLfR~i1b3a1$]|?C! ’ YR<8\> K.$.7I%Z7!D>וh o!)\7_INRXH.1y-dyZɩy%pO>:zU]u| 2$LkT3݄Jx+p Y5 eߤz8=VKAc2 b3G1)?gS9 +f95 ImHf%dRk 1d IY4L _b%6I ͕jIh Y+_:ʗxI$[25I. |]{f{k]V"W/WfJAyrz(/N2,ǁ +h˫= ք1Bt-l|,[ *}|fqm]jYI"rz)\ȵߖOAr32!CǝZ>PHվi|@3d_1 ΰ$usJd LJYc[c>}KNVYR8_48=#`zr4Uh$ ոgN/˵@n` q +T $ᄣo/J AoC>y+1X*[m3CF#8@y?䧙?D,' +R^[ ^HoNt}&X 'CZIr1n2es{\1L(i.>^Џ-njstܡQ2 +.,sEWn>\+e6OB~(e$&v[~+sa\[,IjS|[n)!+yP,G)s}(WH57>YנЛufWXS`u?ˇ'Dddhm2G)^fu $ѷCd305 O$%6Pn-V_F0$axͥl9X%({$lҏC WgvߙY?I-?o@r±H$` Iu>;^_v +u`>j9FkEXOP~ iGEOϱ) E_22z}襰|(Boܐb*LRD,e~j2H[}Cc@p`I\QlH9BZbz#_B"7uL^[= TyuN؃bA E9mJ@{I%}Ĥ>żD:c(][ۤ6K4xS;I( Hd r\o/껟o!l[`u:$˛-}OTjZ ׂA\Xcd>2rBrrq'1$eO ڌ-&y]vmԤN&A2Y `OP[i~ +/JP[ht6e~EM7W +g=\~j~rk\3R`9HaKt[{S*C2gA,ȳL'z^$,:ߒĕ^ ZeXlvLTǀbrՕ|'VUaӅcyV?FcQ,'Rh?rF,@GLCZfwYr)gi%YLPhQVW Y5g|Sj]JǓ ǀJ紮Y\Xj~x6e"!TK:r# ;|T-Il2+][v:]3Y<A!N /2gXC`'YN9:JTrCTcA}VsOLz=@F{K}璡T/k YrɅ$}>"*_sn7."] RVgA~{Rqf|Bz 됃kz=DC"Q8~g-f譣OIKVz D/;mvz$&\ɰNgk \;0×c7~EVΨ\nC(ȉy5.Bi{"w>ߍpP1JHA ~՗JrGN:n~/*r"\3ΆB{&r/<-$Q ƷHt&ϮC_[KY~vh# [eRް3S<\99r\@L:'~{6X||;"ɲ1#"Fc6dj Q;.jt??KFEHEneqAd'Sak'>jtZOCm&+U^^l_Cf9cFdϰ@54g&k|)|'?rVYnC{i/m:T+c| qecl pPH. Q5dSω,x ~EL.9$yZCљ +]4HYMglBTZ L +LF*-nR$9*c@uGf>Y"9 ܀=߹%iYA> @5sd4oVSu!f{<́2Fs:vuD? gGtj"׭!8пd9zRyc9 5ھpھܤ} yz>,ru#\:w\3|  +'aЗ I aTWC*Pߠ=!5^IU+2 I:vI8i$l٥!Ğg5o&P',֣LH*.(gC'q"Vz _" !3' .@#.Є`1pn +M)[S!k&jGBu;EgŔÏuyP*'~؃u*%֯J~a"kXl#F jj`ڀt8h'ɣC[uG~39@=ڏ_ZtٳCk~ €jv}3a &Yԯ,f_9 D]'p ,f"'G@ )K\[7 \$ !OMwAsH2G`RF~ӾF`}µR"Y6&ӎM"?DEuJ{[/"Dw#τ")|pjIZ}TnlJC12_^=W齿0T|-k{plHgs.Bhb"X^~/%$ ч"dvq,`XoEEľE$Z anN.YZnN|Iby' *,3D=|_\ЗV +Nϑڧ +Cj^b^0At."~rPzhjHHCLର YuR4.|BXاV 3wqqsxKSzR6GKMgMD͵8%ZK{Wﺊ SYl{Z#,G.$]{ۤoQ{e)l."apCn_M(ޚ'gOXijjY(䍡)#krx0RM@28sQ? +J~Ҩ'$7|;)jIloϼ{;E=ut w3wIA uZqjس{ v+o~WWnNth.xC#RB׸VeSj-7Mb\{v\kZq~ X젳=^ l;܉޳j(@_ϵhXzePsk)ʷG)VrsC Jpp|w`'j!ף\MooT0\z`8Bo.' +u\|= t/S "z &^y ~+,/4_^n,Gq8Ąn5t{v@ &P?\뫀PNP=92523T]Y3k:J*G=SPS ch'}pV *͟m3,~|Džņyz+Q9H:uńHOuTB¶(2"oYoHd@~3XJrR^O`H y7w]{qK+dAL!roUhl^*jtY{x/ \.S;'B&%>\=|qntȬ =/wY>G +,ΫYvFE#G\R0we8 劫K y'mأ +8+h=5p e(>=W0 g'ת+$ ە*@SQ>~)ƨN$zx`&^z>^Dz;;VZ@p +]OwHW\\!.&G'=?"xVҾPQLQO[UhE1&_T4a Yrb8x 'nC6CJ5m|jǃ}J=BW#ȻS}O pGI:"BsBZPlH_}k5vL*U^@xǢ3S9Y kY!]pdˑG)}5#>Z ^!iZqz1;"g=tU:]8 +g qFm7gyzJ,3g`ή6O +d@(+=7K}kbp*jJ'&׳.89S=?14>2ζfwM-j>XNB\h`Q'?ʅ\:oY>ZrV41i?iAyXt!IyBA݊^jٹToT_YBX|gZ8fjUJeس^=a%%8>l aϔ^G cyR:(Ik^[I(ӱU3eu7*W3[g/>T d5zX-΢ 7DoIc1m˅Y1=]`p X @\|,b%<2:s)RLdTz8TustoT3 +9Q®9T"ʑKh .KLjh=& Y$9"ս._2gu!С@Wxc5zWͣ qqLʟX<㻿.4^GV1%a_9ziibk[%\}G xe%24: }f@P%TqaKgg?w؊=)U_^[^n=qo Yᇱy+' o-꯭(ԧ6 Ggh+wqX:\GGa?^#s3:&I%=R{NFu'a +(*Y3՜8CFX ;p&> +#nTxvXuew]i-N\b8>sj&tw wxN^w?* ' }??ԛC =S-**5ůs1*} :ʮpl.kn6| SzjOv811JVg\h+@Ts^8^]7PFz_ ykK}i{[;Bv[LT:/zq>K%g 7W?_}K|_~->=$6Foڹa'k۝8;"]OV[>޿W̔L|lOqGD-P?Ζo"M-pmuo4ɲXPP@]SI] +Bq/R| 3=sMc;3ZFD-'$O +$WzqZ>Ѯ }4xӍdZZf\֭+ yՊ)*]_%A_2RNHC&oREU)X +6Q]<j:uKv$Cp|e>TAAGBA‡udv.? ݯudsd䛭.tW ZAnM$ܪWuvu,9 ,v}P?M M&ݏlz6(^>ށm,Z$NQEk̼_ME_YؓUͱ_:7eON $d^ 3h~S&Q,(S#7ͩn-yE$O΅},y^ ,0 ID{.\B: 9,!x!ј](^<|0P~'f;yGcv8 0H)39я#+'=}+Q4."m0𥳐~"n ("|\j=#,K6[<|Ul^O/Ǔ֌9,8k |;u6f$$zt(d W{\QQe1V{~أ/|DlHB<{O6Ļ#dibȁ|/͌/dAV;{*unD 3һaW?i@%="уv ^+Eva{9]lɣ#Ⱦ%O vĝ~SFn7!f!xmj|4nwcxQ{ԏ/%DWl=KV"k?#z/FE~&Ő= udKyA_{HEh5A;pi[#{|3d2 a uM2tN0/EWq6qo]KP+q}IܤKF<Ȼ]͈3=%xjvRHr:1cw.fU>̋+]E/O =LrmHisT wܮ-'5?">{>U*>S >S_/Ѫc]SY5aI1՗ގG Gp_f>P! v{C^'؟1[՘ ?&5.~`^R)yyLzq 'Dmᢪ7{ayYqiü%aEy&&QqU-RcmiQIiL_ŕ5n)mvJ#%++P+o?̱_l_cAOQEÉgW~|kڍh>o5{U(yY )I[[EԓY?Em=%z|RN ++n=0RlEn¦oI{c +Rnd3*Q8$ V5:ͩTGX롗 ǻo8td%oIMrlJ?Ӗ.;ޕo6ZI 9} ZRz]_g|P#F k#ȷ~q7Y2vԼ}UwԢ$ĦYuA}+> xk: 2QQUx;i۲:Fym"Oo*͛%kR79;Bg6ݹS*+C ƙzi5P,el2;+./ޡ##A ֦(ήvx.B4j*lu>zĵ/Oωa"*6sc7#%]ϓֽjbڈ1ĔZ+)~:2Rm'F>w >u +uZ<;ۖ|+?bq Qߵț_آ.GA7P;PJ11^Xp7:1|qz!R{O(ۍ}7Wz + Zs~ǖo"mJ+`O0qSR?OV ?4U:472ŝ嗉s#eR֨-WbZ}{Is=bnz]  %1ra,58OT"Zjukp=k +;fc[0ov]O>q-ݡ#/;v!(|[71Vc4%ŹqrqUA2֬Dב'RӼ'4y|8$>}_uDy}y!u :⑦(ѧ(btW'X2Rm>T'%;ya>`·'$##量-W2u\{/* xx HzwiiKtIs6w%%Y[lwu>>5uOo#U]Gk +EF,D:ΘWY +߷jaWD|ѣn6GQ ɯXBkC2]RAqqoԖ=/!|[zƉiC'NJDZ_lOMi%6:t椋G*"fނdYRV{ : +cqzU&}Y%{V_P)Uɏ~ J/ vۋ*΢747嗠]'Dɼdi5!Dߠm):(YV]+--J11/ m~maa ]%P55qBǫ:[ 5ޱnљ G +_|8?i''/'к+ɕ~qKNǝiH8֑+ x&E?;~oH39:rS|(Hzg=,A +6 94+V~N#i}ܴcH=OKlYs%kڈm+K2#m+}iB|x_,Oo[j+}Τ63EF#hФme>c>O}`_xt"5yC}бT˩׫}ed⁺PAK7*lFiUzNr/{X$賟$#51V% Ei!ލ1's/6;kbl$w&9vd-`͕D[Jiѽ}QF i n_/׆$fJaܓ*Vڷ_KS-ןl`?Bz$7󖾪p-z{/ivMå1(׆ȞyJߖGBUY97$eIsMݎX~!I5.=0]:L.CwRȯFiu{t +D`!ع0ؽOl߭<6V[w!dN6Ӻ/ϪWo) gKކ&\é`h0Ȭ6hw EQUA)e0oH N ;` rJhJY̎B;TW3@c3ʁMi r340N~|5̝le pGa= w!-+ys_\no11/K=keO#m>z[P%ΉJT|DLW,7^;)a&0TئY3\s$fù 5[5Jz%=uVc:/4dM_\$Cٻh^ǿ*b oZ=zcEC߳5)0}v1ulL8Boҟ}6g*|9 lֽOOծ+"R^}wb'^I˼^Ix7uO\dYԧ6*1*(!rZXwxHoUyŦUsu_ӻuҰ(en0W~:c_ڜ< +چ8~>{?7'C:3V``En }x_^zZ3Q^J{Njq vR~~wl [QM>2")/D/7m=^??qLL=4 ާ3GlDf͙w?vGI?@;tދ:S }Sqž)% p [JSWx4V{$~3IO|Ji`-ަ&0s vO7Ԧ8x:Ø,[ԝQܡ"ϴMi/ HxWOJ[ߌr%>%q%R8tֆ.MZ߉46o7T`~?ܟMNrslE`8N*'-1~ PQZ+V7sz5o%j'[0] Xj62DU)1qÒa_]~!9;bM6YV0 +/cDhN^ Iu*0w0~0Oe/PQfM +f'om`hۭ\|z-mf_- +f/R`z6jOOPj#uCu)UUҬwOW}(OA㥪TTQDOЗ,M`֔`Bml-tv*]n S@L/`Upܽgʊ}d%޲w>)5/ٻw޲2︷П*GWHi[47x>>QUi9iNpN0oa`Xy+9@u,\CMFQGTч1/㘼ݕ%R'Kajoas +w^qJ=`h}#Wc]ON`<"9'1t0[~.7i-7s X00XI = ﴅq`,X10w V3m&MSu>zaƪCMfXʳI-oR/{S!P8Z8*mrOmLA9Zb5fOgrf?c{?? +? 挛L^MYT7C߼̙ ο}`ArR9̴mZsp,bօ +"gk5ݬ#yA(}_'SC{\wg2s=MY-nY0bOB:q-p&o~s'X00X+v;>`7X\u\Zn,jvU~_Pt':}Tlyz_qlWR7 ..G5CDu|[ -n:KwUmc"kF/E&/PU\hTYs`Wˠonj`,W,Ͷ`ٶ`!/ Mw6M>|^J<^"TCVD밸;/}[`*bV~w<^Vkcq:f?s|/ O5εYp 1,@ufTiA4..Ч@uP] T%3 ۏ(l?VKoרpq¶-JPiHLKw&4фzFfniu^h-IjIW,/?ǟcl >KkeK `;%ZW9sL8\[8 X00X.gEk|X63VO1icz5Kz4լa`Қ'o|yU-iC(nIta˥*S&2!򒓘, E`&970f :U{u\|!ʛbp^SXUVkYa`3!;>S;e#zdѶ!858pv}sNuX\Y˲7Wd'R,㼛b3/F׺D%6k1@2r/g)-9B8U:Y6yˌ +5~x(jxgZO=Lۼ!3yWOwC535봛h O'Ki3mRTϡ嚏QZ#-=n+3 U|mN3#D``#I4X5`MAm-(nx+zҮ)Z(۹x~کMMA[ +9Z&ZϨwBvZ/85$Ƣ+^uщl L4io /|j'k/v)όUa>C_ ?M +Z̯qL_6l]ʣ pvL^ , V0bfzSoZW|=G3ww}_ikSI?mv}D=q%!fuc.!mJxルt\[V񞻩, +/[p鐈i+`6 b=`&s/=L۟AB۫ƍ6if;_ޡ3@NuiW{j} ±Wh ڞ+zCz~5n-ino ԗM,;C]Q6u"6Յ3^V 9x9Fa7nSWMgkZr4K?ޭgfXr_h'ƨ&cUӘqmii}]MS>Gڽ_9W 1(^b6,F,nTL$.uhy*xgAi1{Ȱw[EP@u&vM~qB0c"uT}8W4+KiCA[ιT؀+,KgE΍n0;O[*1{}Bv{eUqBTQd;zӫ_#x/biV>;yٚL7e36n}TuGZb>c7lN&F+0rڥ`>+ SިB6|p~k }Q#DӰ 7Y:vR'is4}]My=Nrih4?x;;K IsŢՔYN3!yWb^U ytRP#wq>mLVrkѹ)|,ũ?XΙ,^69kߣ7 /5:Q2Fx(}-0 +3<:'c p˘ ,\c|`Lj/6\tac +q%+Hd/Z[Y^X~6z!^2fC 9hkZZCJ# +{*^Jj`K~y5\촌ӈhT-7齡>un蝋642oih"N읕쬦0̹c +6𸱈p82U_< 0^q9@$K, ߤĒm<;G;)ovaׇG\Wy%y链?m8fVUcU&ԬK\pwcLbg/O6˙{V +``ԥ@e`v+hxi iՋ&MoϤYGa_:LG?]g,~@801Mu=qfÎ]a3W})_BLV .XC^.\#0ʩS U)hz{ իI$7ģn_%!D [f,%WfA`څ+I^3(\ȟζzr&ɭɶ^'7.ap-G#Z,ZC]^45JSixڻ:_sA?̿ _Aej7rw>oݘP tHe ncܴ]7Y9h]N!wߠw꾥,_hmbBFWi9M_FODzrP0<`h_4lƑg &A"\s_ 0طxe $(k#D<;tNh:w"-%_֜|/]sT= %ee/cxs9q>F|-bc_dC$=rܧwq?е|:ڊ3G 訛6}j@swpHf [9xv:$OОt..SS^4Z٭r/s)b`𯶫9X2 sP&‹֣'V{@己ϪE͖C"? 55Mս|h蛱iI̩zhKV/m$eqĀ%uc$h#}1S7wC?huX@&0aBi澙+-֡Abh#mlQPwTXAH_[ΗoÜTxB..8G ^)h?3vr7e>TѼSCW5Ӥ쫣Yy_`.[JMk&6-i|k^*FpSY[ +blSLFN}>gZphn` n9eC,=S +bc1/{B&UAna,&;y3X@%C<C-m])g.7-^G5^M Avw?<80 󾺐ڲx1(w_{B5p^l3Z?&YfzY\+W%E~L^c[Gp> 4oXbf n1i(q % +CUgVW;Br^/.%<K^/?ruX{~5/t4b_a|#q:ڨW:ȿY+0 +Q0/\{lN%5l* I9#w7X㕹gi*`6(/ZĈp|s9L|\9}yۊ_$'!4i)h0`,~Pk%)l滦qsF;ˑVGtB*|m)*>~bYpHrJcZUǴiü;˹ܒgONFb8BC[=X +8al1 ſtxR~2Cqψ #ho\{֦th8)wBB +~!|&~Q:|:/au_B<㯆̩#؃]鈐{WM>` e!1?oṟ OռTTy/Ĝ,vz#`JakwqqV1 x:0wgذs!\ [y+&/)3Qv.)S{ k>S,0i!nO\C\CBL{*ݬ%~RfkUǮ^sĵ=򽳜6!#/e.ţ_m%ﮃy:nun|S8eЗ+xd3t`8[ h&\k9ϒ{"p՛Iʩ*`㌅?P~e松LY_y2 _'0? )9ȰƹBߘTD0ބƟTWـ;uB: +ęHw~Ki>5 3s=ZeXB.v)qƖxkA0&rNMdt lĹ󞀟gG(s<<~6f&ń Tˢk#ձCY_ߏ;LrHj`47  /-Ϲ]$ScYkM=+[mmm``0Д,벁!pN)c{Gĭ1.=<f7ٮguh f7=]Ihgo +A9+(/|l 4E" ~C{}>Qk+x)e;;Cּۿq^Umd1 c7[q,/(bӸ۶lYإ Ԍ7֊tՇ!^!/l0z^1^}_]8~i[cFXG]<&b*ċ'B=yL~n )ZŽ؊SpI#g%xvRcgQ!O6"Jb戎8O0;2QHYˋ8Od-' bcxPr,0ѨNv}T荵'gio6\^gM0!,i;)|~嶪sV^sc"~hs9*c#jx\N~p*3u *,gN{ OG{xypat'#f*co1=,:Y}|_G>5[5 +imѳHxU'Iy S"/\3qÒtrve#gbG#<ڇU>iۣ>ی;M1ŬX<3;;L[ /v}@gt.YS@dwk!b?X^eBt]bQ'Ż>AD<ڀs(n`?ʷcк9^>3!}h8#v$O皥v1R  zXc#Ϡ.g/GlJ/{ 9ԅYy''+rN* 'o#eoUW yM<*ZZCwXԓ3A}̇5?b/k? Zpp^`ktbi)HX|JcyNшm !썡YR6N;7n bQcQ߫Xޯ8NE?ފt^ +FDڗD@ +İ'BaNl+b*CxkYTDl婈; }d:`eM8)ȧ$3kОZ{KơI ;]p1HqQ*bq nA:4~2-G;[0f!!b}Z#}F ƾځ.f~n#b,XOK:%b MI 9e=T#+an}1)ęh +wMjcAco^fxbXjs`. sH[!&7O#~)bVxy9|r{ ۄǕjot{vFq._;HU6;zNɘHwGp# EF [鞓6'nsBq1Jh_ ay\Qpژ KI b # +61\fCJ *h(&BUݩqSGڀ? =\Z̪Bb2^ SxU(yRLxē9 0ؗH71S Y}dy%A90мPr1qRl49OC_zL,wRAwo +FoO>1nAtŃ1mgL'.Ĩ0iDnexRh3AVz#GޠKJnGv):g9XL@0eQIbf!M~j>,.bN: <f  cM'1[q NJl +V b2 y#X{ ݩŏ}I==>gwŌS,;8!Mf<b"X#7È>6r080?KS_k +"mAvM؞SB|02tV_G&J,ًgTD: b"eH@R}.ӧG4oyB9LY.ۀtɜ!C"oȈ )J.pysJSaO6ɭU{+騡1CkiMD^hBC'=30zTJ [On,h6&k#-Ds,/s b" EL`=W[A[m(j`gqW?BߤbdF J &' xmuɠiHOk=DQyC&h"4g|cZ!<O^;(cS.ؤ!mp@X9X`Dz:2}ZҨEhUfihCKQ'pM[벛uQ͋4к ټ8IM20>ut ^n:8hM񿨟/XAvAr1L:=ZsEm#2k5D9BV'UCTt&ĺo`t.['3}W?`݇Ky+]~[RTc#fGofc9\j]SX"u6uTqR Gi@Gy i ~8h$j|LC lڨ&ʨ'F2,d_4qF%N7Gٚa/K; Q, +b&=/D"#aXhnxKLA=F]zCJ>8M7_\i|C&2:wȼu&ue)60,c';JW|Tx,=QMѮk9Yi%̭`h/:Y+QG@Jj>x +I =HD蛿L}cqy+ fGDG}lGG|E) :6QЃ(S6rҼBZ 0.EL#8!]CQ*쯔6#QГ͈!8 IJs~g]FZb"3;²?+"-@`<~x5 +TkuصVu*[/OroiQ/6%[ȋEs<银!}ĿCdV6=11z:Яr)7'vF؞RBq::iwFm"wsa0"*r3Ye G|0g<igijrTDڲ|<.xSvޓ ÔtG1L[) SJJs# HHқL +m8-1tIiHSEx%k_,naX^q.ٌ6iJtw56W;mk-<* c4c63&bkF;KOYZ>DX+ +`msS6 pi#3D-ڂmƎ|h[Hk}G.F7c Mωx//Njdt" yi- 0İ Tӝ´zեHmS1cw~ptEVV%Dכdu̺!ywVfÊ6wpyE:uqV39 +圌^1E"[yȚ6.WύC> υ;Lطig ,9xO$,DX+{jg'&sal8e-ORWBeRmPeF1fM\t"gBLo{rF:[0NԥH-jJZAl^ + +6ʑѹ, L'' ~ gi>#5w7!f-ﵿ8: !95iGNMm6B냔Β8G:] CqHdaҟYsv+K;m=}0Nojg $F5i>< XK_}!Wdƾ^F߇p{{"ĬFMzLfiU),nʪ<wF;s[4w^]{%D1 ihS +\$.·+tX7#5+{Q+p͘í/r\@;QdtXOg؝f~굡9p=զt"=H[霳XGQ"9>Ylt0ʣ$q >:QlQ/ +H_یf{EmYV[ڜsh`N v$I(9)rsV ̘x{孱=߻~J(k9ǜk15W)K7C H3l)녚&v,ߓ؉~{Jg/h%B@yD4S^#Ml .|`I-FԚ12V堥OSE}tTq'4ĺǞ7BoY+[jB;K ,bOT;k<+q3|O+]h4 +9[7mq">Y Dh9t + ~蝥 +)ׇFPvp>9M 'e[FB Ecyorh x~*H=V'kej)kd}-XiwrAREM\Y\T;+(YZ&{6u\-RB?Y=YrS;kgQKΑR"!E `h)wŐ5 +I!8rҒ+l5K@uI'f45.9${)d^}-Vd__}e(+mr+-/Wr5'zUXhm$2 +kM包j<uDox_0;-%'0w4|l*m^n1ۜ.3FK ӠKq%I,$|ҩ[ɫW ;6S,pvg,~*u`~n#fZm*3GI)fYFMNi>=^N +H. 岇^&%w Wp{q[|GE%Ѐ0ϡL><\(]Riw>rW0ƥ_kcxKhgT;Gꅡ {P-  +>rjg[6YJ>8[ +KC{X>ya2,hWAW sueh>}jA>DžET7&PEǕ|b2 )8m4| [й-JD}CK04^(iGpFUaB|D_]=r? NSfiI/8}3-_ok@JQW$*4pPNڣCEb(pjE~(!XXN B4qQ©Oo,Vĺ +㡋.\jЖ hPx%쓯xuREuM ]:#'kRAXǘn:Xb3/W-vro++zY\j'ceҚT; Z!g% DY=YB\o#h|ep85߇f 0{nN;!5U3Y:Ͻ-յŚˎ!`@/~4~PִNQVWʉгSsyY{Wm!L4EQپR^x} w"95 +(Xdbn(T;{޽Q<BUrQJΗ[cY`Jd$23%6da1hPנ(B 9R2BT:SK #dpՀ!$& -LxL>2˽51b49-|ܱЬ}.7S $IA5 +$n xEsz:~tSBMC:XRiTqMymd+QpkZO',.BO7/C.-#.ЃVY}dΊ,F + _$#cI؊;N9soI%jXUCw#q2%a}ܛQ d Rjyc+&B +&Q99M9@rYԢ8mhm~)rf9+=zAGkbTBp1+_xG)v*4-|&bhh`q*vZ]7^G4&%?,%D8%0+eD>]"]y<\#]5_A5UH\>/{XR \74Fy%|NOL$XJGf+VIЉZ=?=A{L 1~ry*ԗ5o;`;d뀨G`p@\5ȋoQ$Lh˔۵K@ +p3[NcZ|G^}e)Y&|+eU[Kt&CH1>R_v`ry%kЋʹ>&OLᰇ$vDbkX'g$ +Ehi<'Uzp&l\)ݷ?=f+i^A|TXZ#97A_М13M'a'6oGm䞉%_c/-@GB<:xzZgKW8޹zȝ῁#nWPZީIN<^O}L_1jvK>йE/~j>| |کSbQg'sLE]83Iͺ0L\X" IĠ +ayP'BJ &>X}t7KM[)ТzeXO< u>?I'쟄M! b~Q@-2k̦ N'*RT$yg ׆}/wc>Q-wm脛ysc~s#Pr`*밫7CMN|[@zt^r|9_/Ǘr|9_/Ǘr|9_/Ǘr|9_/Ǘr|9_/Ǘ1ymkwXpuu&ڴؒM&UH@/+v o=ql'=KUFG B[}>ukܦZ=x MS!"$+tgOA|610504pOYGwFEe h-DW- gp[A-mY(cl68MjbTNZ50`GmObfe`$070F-lKH¹FqnЪ0SD^i 84ل7^ҽk[r +t  zE J͍^F6\ +, -rWpTR^/eW?ޒ_W;VR_^&] Jvm[A9Z‹)_@7CxؼohGӻ;a8(7`k|8 +KG-f6t<T3Ž}`?ʕ=gwp%Pݺ7hO}ö^6/Dob;;@`|trWԟs ԁL艡>Yz%blS +)O+~N>3`$cA` >䨊 vthύoPehx+f0ﴫ/A/7ڗh] +vW1g|Se.kg2;z\p42cCGGMr"sFTb;o-g}Hkp}Lf&׀m~g0!S ~bΡA ===݄Wt/ܵ,$G-zNa%Jġk@٧zrUz z>|{ߗH=sgBƁy'vE&ܙ5Sz|f.z>ѓ\чWpqߋeiS qKӢj2!$d33d8g߾过(wE A/FMx8>]!ވ_VL&"z(??~ݓ{&cIQUX3E ǂsHV=~<!csG+&mDLPh/}AKϡ˅г'a~~h8W%}Kg>9j+&fs\V2FcY')l #$g_pE9CoS:-'O7D+R]iQU=qsFRt$Ɓ[I,%$_;`6_#Bp=_q{'}P(8进Ne8%ʁGȹ|3mk\Bxt=μ}iC +.:zo9@ ݡo[5 ʀq 5s ^{@poHcz$ +{7?,RJ|-+dR~d:z7ҀHSxvY-/n@rQ=w:*b(Bz+~z m1*FFlvhėY2'-E C98;Mʱ@$g塭PkA\F?;0p8Pr OeugQ Mby!yc=#c?H_K,n|sG^H0K&8t=M9X?@ۀד #c1G^tp U~#裏sy M/bހF_<)_xp~M?zuM4c+|&-EOfh8>Rbk:gz݈/'0~prT$zDpѠ/~OpE%Ob;RH<#\Wؗ!ܽ#sc94]p*c!m$^*ٻ_O/,9ss"9|#ow6B9le\c9 ;+ǝ=NW/ȸzE*|$*j(^ť"qM qH{P8^\2ްpmоr㞐AcG.儀xyƽ(z@#sG,l"v'?΅p ɓϒ1;~(,p4PN{wJ>iWǮġ0h{j$ +M.d,)H#zϑ{&g{K /ϧ>lΓCP_>х +8Rډ{@T3h}mH~[p!,aKB gtD3^Ür|% +7]5I%zO(7ğ'gpў]S 1'sɧg }3p>ùࢯP&ݡ`A0衁хvM>$'SmC⎴aH@|HA% RSNU4vGc"_yуP{'e!"95$n }'.Y ౑8KY__) LZ3hO;-4 A9A]HC) 8M9,D}CyEWMɇ"~ qho6 }-ə-]3r$)/C F#[z\'z $$ 1u&Χc>I~SUV%XK.C4#Z'>8Lp?1 /fp (O+s/{/G/;/I^o v[DW/S6-V)7,)w.yǀH %9n#轓 !/n/Q﹚YgQl8Anl7kγ/i@ˎU_]ħ][{%zj~#h&͇2PC!tX)vL0@rb!v x1h@rmz]['M|Zgޙ#%1 Z-%ħ+PNA#("F~3NʏJ9nܣ_S>Ъ -XzJԅ =2WNj3ӘZX2f$q[&upEO-pPaPfcǢn I^48 @wX50UȺ=9#qE{b~g!?fEE؊Ԯ!gRoꩬbE5竩eo (8G@֏1W;KQ_y)~ܲ *`S3e|ѣBIax[zI\ -rq Z0pb&rn}{A-vad(׉]aNQ=S.}]}7D$QA=w(ʷi9{eRl-' _AMI ɃohAϸmP_&x.Cۣhըzg@()P @WvF ֣.;Q>具4P`,~ H35Q79p<'~seҚ>jHqzdnTe9-Z +$_jJ/SrF.J$͡bxp*t)u".#vO>stream +9ʾx!N'gWrMrU_#. +eW@njۙ2TDb9QbA*{EIR; +ρ(8'.oYνE(sM:|q&X'cdlC9A_~O3~01xNm!T6! aWgT~=\H;s+mZIELFrxքZ!e|tDZ#DMu +yg*E SZ br:a{P-e@.yF"?ڔDry_3pRNR +pŠ(g/|^=.r, -'N&t7Fk k@N/$ȿK2KMG VۇWFV||;c^2A{s uSY䁈i]H!d>4%ILtTW 9,iIMGk?pyMIbW%\5yH_HP)qyճׁyT"_dλP>QoSĈ})t<Ƀ'c^} 3 }k\ DbHż[ Zi@ 7tU`|%?xG؉eh)$w,׭I} 2]3xnG@!a4:ƨ,5k +\M[˨6##k)$OXsu`*䏈+ +]gDAH>=[L?] ++|=9|5DC$sytP[Gj\܂5D|a94+& l]BUvTC'm h!6\Dΰ1uE/FBCt돹CuWB*&VXhc-5>p#r \`YQ;8R.Skޮ^1%`"ܳSTJM`՘sk)WҰ+u3BbSN҇kf7lΕE>L wh*K8WE 0QU +8"&:Wk =z%zt;|zn? 8.vEAGj?n?bS3'/ƈ-6F1{t +_ im f*g08{'FatO??O<> 08ް~@shЯLYK;H^"؆j!?k˧\K穾G` [iӼjcdjoJTbMa=S;Yc41pm?1{^X?U$؅EDyFL4I{g@-qr.[Z@ fB?dUtuG)&>Y=hk-u*䶔G!§@{%P'BϹ'[^`&}}ddC$Y%t@ c@tKijsglUYTڥ)6Qm -Їoڕ1,RgQ+%w a4/֝}P: +8WW;t֥ܵByF-KcJBSt#KR=[SQMZ[OAׅzԝwP{/ SyX`7Om j!GCc 6FD6qTۂ؍ʇ@~}9;޴Z:#_ w#Lv?~W+ٲ،+i+zb˵W.֟0%2GR[9}954tEŃ ܮȅ[5MLMͦ 5`}0r?G@En2k2@KV GhAu3a}).W3Q/~"A-y9KMAb&09r^vP~Ӫ5o790^tK <,X%pqSm l`}U !'zxu m6B|+vR?DEb_DZep9g/c +Yû:FcTfW?66PT>ėǖM+7*[-LتMRm 2OSר6o 3[[2Ƣ&:*3T#GCgm ?1zVZ +I] 8^Ik М/{uh*Wl-@Q~bB`zќȗ?kc諤@[@;5 2{B20o{f.W2^Ү{."&W^leB浥2}'ЀOK&YwvDn+ BiZ>QA뚰w:XS^5OL6wcj&aG5lOoSD?1¶%O)crp2<},$ if I fR <@bC=Ɗ-Pܸ/_Ö_Eͼk7"tN=Nqcsb +r~QǦC{K7bsCC7"zW=_Դ9뗣{Ǿ=bBoҖ\SC|n&[4J*L5 ^fS dL_F- +E& +2*QEL!د= !Bkv[ Qb|ysYgCCͥ5H2b2\4huCh=0+㴆QOPQ[Q4~I3ѕQ:t:q(jвSN mUg띡eia3-dZeUڷTKn-P 9_Ey$7%8\ߪ~ +c"+OTSlO x. 8Vmq`;tMCXKEZ!ɑă- +Wܔm^^rMKtx{`CǁS-\{7 x`fj.N⼴- +qZ^}ߕIt_9Bc{˰E 'g*C/գ%WXb|t%Aֿ5E}Ĵ Fפ&к:&92BP$EawH+Ae״Uggu/wSu*#D5ve|lyي7ʖ೮/Lj&RmaeDsԥk +],w{KpБ'62:<A-E~-8xif#f+j'Y_9m| +iXҴ|}?O}f]*a&c[1ja88"q 4}H)'狉'fclfz:&/Q/_#'кLkacP? +(5FNͣ c+|"iN?H8>y\O=`e5W@^ѾZΔ[P31?@V@Lۙ>^+]Զğ˚VB)[i|*̋xYٰ? :=lUZyMBJ}BG^t|y>Kzȷ)M:0 kT26=_,!/󢦁8lElm&Yq2aG#+"֮1߅Ā1T/kjEdL@o{g ĿI{O±y({Cuu4SϞz^-YXif,#w =uek K1FzM c7ja, UWؗ§]sG#sssXuRh|V5ZFNy)?OHN,Ɲ5ŞzINn,87s$}}rgR0/| {/-&_'utR/mhYg5ɴ&5!;fU6'ed..Vnu~1\ӸK -دȿf( ~:jH?bZm@7)t_lUbkQ?t|5)6|/eBu1[ݵQQ=Sо[(nĬ%XG%"ԼŨ=sc3Ssi zZME ٸ T*m4A˦jEyJ.bGGa2n-dsţ}Ūv#z#`xXF^CF5U=)'8?b|ā \҉zr!QlruBOo-Nvcŕ_->naO= 5*߯ε;(<򐮶mN |ޝ,cJ&\.A{K2O +)emkT{)k- rzs1 +:\TD1JEQS/.ľ EɃDsN盹׆\u\X7MUt`Z<֥3s?p%+w ؙpGÏ+2qn.swjEEj}Xn"Tnޥ8GopصJa6vC3;\nQGYs,Ϸ7_J;O8 y*XevwO6+KN~o"rpޙ'N?lxp驽BQ~w+O9{_GޛGWNQyuk>֧Ҭr[u:OG^OSmN_ o;⤮$s{nmq߬~5> |hW~jNu*OԞ6>d/woLiW*.Qh v.wWhSiTolzv+5v/ھ+4nfm|{Eԅ ,|#xdcJC%^m-#:63OWzt-Auq;TyS៵<#6Wt7*'^b.lЮhO7l^RYZ|ąk|%ku+Q(A}ىl0zд2c0mh7'ƈe)n̐~z"|z$$ɶTB'{sߞɴxV[D:S3 ].Csu*[V?)KE?*r,QAղ>\Y,}m-jYV\ys>ȕ#>?_BE}%C}ζ⨇%K&+;bGOwXkM/}[m <E7;!!'nBvRc\-Oe_G޹q[+Ϸ(/+o>%ouv3c[Ňn_{ =;vw)q8X| ޿+e-8ʛdrRzWMw\.ysۮK9\63vSnpӪjf;==^^QߦΏ~85+):!T}a`ֵ>mRo7ehϸ'q^@|֊redcB7)hH廇ҧtpg w24Ηj!?\.^oqQߍUkNzwKޒZ8|GGnۗronu]HëYyi"s6o?͸~'&zoNyWSy?,!<'))OzI}`qoŞU±tW6O{uVe>/+\9šfϺ:>8;88kk1&W k~]lxvoPƥ&*޼ r~'?-"Axjt0zmud[i[0x}1n/((?uvKۧޠTg9ީhqЃ~mʮ$q[(虿)L5ճ$9د)ӷB|}!_!ӦFy;;J%d<*}"Hj#!Ӿdڂy% :~ +PanccmNew즺U/&ޔۘWQ&qO}v:>)˵*,Hk?';ώF>H)>z3T}n`։a9o Skط3_ V_ ̨%>^oڇ])6udn/svnN?>꟝]*v?Y) MŻ4н80uІZkvh`!1߮6`-Yl5`*fޢKV20+AYW?^YHp}FV؜W#3o$_ϩNC[[MṷO\T^_T~+:nx^r,lZFecheηd~~O&GkOM|ԃ̱̄^zxF c"}_1s̬^-2 p߳̔!c1hь3X+fT/}fl)9̄W0Mݙq#6^Ψ[7/ŭn[OV/koEݸy.(zƹ;AY% ṹMIMiE%1 W܉˼97amy-i;w9T(mAkƽo`zw 3wUJ V~{|w1M|*Qh!wEK]ϒ̋iN.(]q=RfQ9gWf &X}fꍐw2d7FttL~SߒnOryQin7:Wc5)̬ӘuDT_5y>3e0L/O\h~yfj'-k̼""QsKI ٹwboTވ}=2C'fuuCod5%򿼈~z/Sخܼ+$?ٕUN̴ӈ%sCJ^Ʀ?yL5CׁLǫ́!9mzIL|#ɹs_~C2oEd &>&Ɣ|gӣ6O :r'D_&[3k[Bp[jAs̎,v͹:v#5ߛ!%4XPoW_ zu|N2g¬Lx2b݁ﻷ/^G5t^rܛݒ0'eMb o`O\̹|#|٭u/fIo~͛vwˍ!d_Fwkgz}&3&3s{3?5Z{}{%Er_=w=4𼳷C + ɽt=,+²īRsSbsI>PURcK+KEOs%(AѳWӤ_)k}뙇{<חO.3=3r-3;gfu? :vXVJ]BKgu6a2{eǓ~-ٹO޻Y ?n>mޞP|!N3nE|>MC: :{{v>ε7Bn5 οs#$wBzNpϹ^{Ռ߄СR?8Ԟ|EḭEXE?2c&cM4eFO`FO2eFYnjf3v*6Lg ]y{bpŔl[ne&,'.RMpf.r ~!Xݠ7Co&רkeΩ.'uuOAF1#4G1u1eƌ<[Lv3a=y83cf̘ +f93j 3b:櫯65e~yv6mGcʓ'f߻YjDQ"R?10]-I VN\l?3 }F=1swCޣ1'3_w\U׺;Jl( Zf]"E@i6@"v%jbh5;m䜳${?g>+Uxʘ{Y7Oe$o13zcoYAmf?;[8G7ZPד)n~W -w?*ݛ[_,lÜ~A;/f!%O6ϕxfm86"W6d%ύe&N01v#t#6Ȍ8,Lbƭ*`&0S6f* ?goV_̸㦦5Jr;NZ q7ol{q` Z^oqԻm藎<?="=co:HbA$b[hl +d,f̌[2NcI+ %Dbfl#LQ43sw.~>~~u7vՕ]in;Vzpʕm6ߪnI{r ouH\'1ߎ4BH1e;1㉟K,rM򟭡9qp 'b1dcgK/83qŌLX^Llf23T޷XqD?ޕ/W$pn[n_*gW}՝솿m{4w׭5mLu?}I.lFF˂5[2#h c?x6+{wb~Hbci1sSQ|n8O~N3v sAu̼cF  Zҧ~mmVQ6;w\"4O^~ǫ~|E_.Zgzk܌?+r.$8qc9peFu'b%c7.gyF˘Q#W02a2όL(af:kN+5pnS%gcu6rU _/}Lu5Amf4;4Y"Hf('3Q$OLb&3*c3_Iy#Rƌ3標In)̬:f8h^ז׏t{_~U[}>V觇nDs}-]ַt\Вogw7ou+ m7ʷz'fJgC{?,hoA"5q 9h2k<[̈q~J'7^cW~|recĒ-lտ3o|)nAѧO~VSmA=ԮW}xgyMO>vQǽO [ٟ}jئ~(fY~Ldf +Ljdf2Y鼍/d̳Ƴ .,eꇖ +\ueۃV\u_l!릧vU/j'zIVqwG3r>;}ѸCU xڃO$O*Y+ 4c>̞]93yU23dfUlu3?˦{V+/B`Kk ]k4[]8,?`Պg6n;~~OQ6]Z߷zɻ3OM.>6U/k#zM_Aӿ~ N܍|,\5FFszfq$ןnjqT0㦇0N.q$lfZLw3<)S< %f![k(̀9Wux;zwWP_ <Ԩz_T?L/zmﮗ3n>TM~ݒWlyq/ko굪/~[+~N}97mwx;n. Q܃3r6Q21Y3Kڍ7]c4 +:__?Sn'YЯU/QUY!eyK}wGͼ6_*o#H^t`>uq싃_mI}ܽ+ˣF5 ^iYn1aRZ+2nc]I3$]ϸ_2YK%z{b{sGUYD~Ƿzdo޲VQs-w75^,/=ϋzzg[zO}>Y508m"ӃA%1ݏ]KsչGkJE}N zSE 1OΌ4[ o4"yɱOa&,e^Η0x_IG="ྞ g?UoAdby|ˋco]}> ';/~+*w|6m8?m?~/H}F{Z^Ïj߄oW M]g O.jU'.eN`̐8RG/`Mcfd3.q]nqB'Er]'/='~uM›e_^d֥ʊ*r^>?˗WP3aY=*i*,DhzH:ZsIxExiӛAެPŃڝt0Oa~7y&1clXhVpa/~?uA?S_냉I~m? >9}Cz1 eRMNV?^+IˮWq?)K{W}!}>0ys}}}،6# (' NR/ˏ3tWe(;.U%jOj, 7™h#n]0CH\>bj \};~C +߿u߾~Q&7qO|}/쥿kko4io>-OѰ9v~n~ϒŌWt//yي̍VV2ړ?RUapbIbexǟeܼV;?A:F\~mlxԭfk<끱23͝,K:<`{>yR_R/C])B 1 ͵ /$mlX{zfq7Y2a #U. rY}ZעrGsԚt3><,YiRKO<륻Q2M}I +K3宾J}w[3=F3^f[{LR)۸}s^ Js=?-{"(uelǑ̼QlS0,"j$Ă"Fsv*<7UIka$cݣy𠣿{(k.Nrz L&,WdmQԞ(~09ŧVi I$685mgyL?~8A~w<xn5,cT7.A|d%M]ù6bvp{p4P3݇XQx3mJjȗR:W<ΏW]8B>R*7Jv9p}o y$˵(^<}l^,}oY0 F4e rdlzԡSC"h7}ot|ֳ>'|2q1^5mf͑n}ETnz#W2G)l)J-htfŴL*7&Dn^hZh\4Di8R< aO}`rہZ}x*vj;r9lBz[}Cu_E_ (|1 40<((,NjY~y)A_叾V*;.+ӚUN_+ط? /9_vG>s=SY/P^>^;o`5x%jRFk&x($zJt'1AE< >tCCp˺P~s=0K`fo7mף@˴܊Vz՞|&}˷Xr{>*Sb [vʓ] T_ևq 9R+e\j3[x.ra\g83^WkH^۲UG qZnkR5!o*z(=4ʾU=cT=?ܘflQ&Z4U8.9;n88-9+>$|,?{ЁWޜ#fa`ϋO\^t?AC?񏥲=#dElY̝zGppg,z/n>O%?vJzB3 秲{޸g]ϗ6;6oeZ+;ɫ5^,k4d 4F2._aJfX`2?Fc%˘?T!6ֈ$3ȹBEPi6JJηDϰ{_{v3xy*Î\EkWxhu5q,Uacϴܞx:MWf\v~ӯdtg㿮 +e͑CʼaJ jSش+=[ytsIӛWZT}2K̰L4x "&T64(<٘4UҌ]Wy0+\p ccSk" Eh!baIQ1fbxaVH9H&leY+{,אϬ*=ܵgG_;Ws罦7S=Ѓ&oם*Tu9rN%yTEOm7fnV)LmA̲o&@a>KE\󤙌-3a 3chf9?_?>=y g-_,?U +I4V$FS!0R+KF[O;?Y꼽31/~~)<[>e`.pf;,e;,vs})7=WalK_ +=μIL\–sPƕɸXC/Ot12pcr)CFqQd|  ܺeY[ &qflJ%_EQn㳷M'OW}%}AyG^}D2U]Z{_딻.W42SR|.b*1ߌ9>YƍvlIl{U[QtD~וʌkPf9L˄9իW3>joH~$2<)c}</دT&ebnʂ{ejUihe/ʾ׫\*T)&XӐi" )|E}{dPHe~̲K]*@%(5ᆪHR[&XrIchPRKD l+֜&;Mtl3a2ӕtZo. l `=WodpLI(j6:և.V:;;Sf4 e3ٮ+T=߯^wVm<>+l:1^-qx.g /$G4̏e 3%Bӱ|^lRF1)B*5-ԟm!r7+Q|NXqd6F[!w=Pcez0e{ +;FPdv0.1׌K,O?뇲ykЇFrM)7*~0K* b#  M( ;Fa(<ڋ*rqI`Spc !nG?ÚK} {!T5Hn'2B`ʅ%#P~^'R}꞉R锕dv녹TSd^>:}>5b#ʣ c-xk>LҾl}+ Ds䮀|1|0KEjO]-W~8YbY6}Cj0hL.6Pj' '~3³Lhze5eŖY0[nmm{N|+6.Jl˥7 +OJǜkIN!&Hi\O<8Z` ?n 0ٴMC gZeln0  1P%2$S5bOб# Cc frmeyA,ndH sgdt(3*C>TW@_jBO|]gtKUHׯ2 mex F>@"ҫ˃㩆2"^h5.(r’M_D;q4ϡaL.@kʧ s(X)/hL uJp]Ŧs)n{3 >́{/E +meC6_9jX.}4L,}zqCB/[kg4k4R7kU\;peɋ""DM2!$TPm*Ln/ O5Qrц\:)k-_sx2| M KOy]X6;ty0wbQ'DwO2]j/W0НE_=4ѹ^> +~ꔑ<@k 1ڜ\d1TP2aR +!B +KGvz󱙔Lrh!,Ʉ6;2\.hV 1 -,M߰_߰R~X"t P]}8꣏Ժw֪<0Mk T0S&[>Bf 1jl0/b6˔j w:*!$?!_z4g4؀)sz3e-D5]qn+Z]J#ů0lS(O +ͧfKݷ=5{ջz +[̓]J{+]T>d[ujbvߏ`N(;. +F$I` + vmY:2ep-2L|d"yI 32nrC㌸Fk~á |zPpR:֚h ,P̀D"Q;︃L}SJ9*?5b 4+27 H1A登,I//-cwE c-t4uF)MщybRfBmWi/ߟ RM_[,tX XɎZ;.:?]mq(Mq!zuf]JgLu+wWoA/ʏ'nTy`Si.d)x+-֝ɵ=Z&5t+:j3M$ʋj#䷏ +;G|}Ӈĝ\^'W@ QUg+u=gߘ/q9Sӄ7J__jBzPw?Y1ڢƓ6]hNFrr8R^B41G˅~b߫[`=_yZ5K/Zfc -cA,3 8c|qBNHUT)4H.bbC܎Q]]%yu1W;6m ֛t +hHkBZ3[+U=5q8OWhw=ỾZM^.^ _gy5'Mɹ|m7Myp]^bhgu'tWUMU|'}%wŃzB<:W9Q2#5=̢1RI-Q2q8b?HB3؝B6VR1U/֞3ILN8D2BhRy[hY[oOYȈ]+ƙveG^5DPZ.?GquI`|c` +;XK57HjeW>qvWrӕjy'WZrn<9 _4:{iYB}T}݅`q2\?vA=خkK)5e瓕 ͺb+6V$ڋH^[=@~I\FKex 藨KSG5.LFf#6kR kvе?TW%Fq<4@2x=Rfk0.6\4gg{Hcc(&hRSs |;o 3϶pڟ/?WoHjcSǧ{jތ +?>]{\Y櫳vc9tBI;竡{xyIbޜ6ԊJ4A\YɵCwagyI-,Ց8*T;;^{ +0ޯ|U$v֚2sex1eUbJ5[Xn) eʆei[lIz'HsC"rt3u?+T8Ҋ^;,$ +* dqNb{\q@<3:M;C7Lv??yHY$fSRi#v_TpG}[,͕*VնI-m + O=ci{Zt5c2B r6 C>.$Fy/mZ| .3T +T&Pbb9gupu^` YU,%Ҕl f6Ľ? + ɃVN0䳂Ìx͵ZkG]IƬ5>ޔ{x'V ^]p^H͆)RE"X&CJ 92ey$gJ(bYTʙ38ޛѨ~o|Y:p6YB;Jgѯ {A1Y:F.It4hg v7Pkἳt$ gÿĜv嶎mc-6B22 j $}q} V3j7L +N ;ɝ?Dsw^w{/Ӡ9Z]3Vi5 ڜb&kxfa2.@NREsΑ"rL|BfSu僩{FPMmFC^ǫKE%{-sYJQc5kD@ %I=Pk2SG GCS6p.|[5$'~`fY#35QͶֱ;{RMp8b=jogl[ףT6Cbmeyuv>Cj?2 YhBN-87ԯb D`=XIJ5# P;b=;Pa-!4\\RJ$ey?Ph#mn|8蠣.ڦ;U`jV=fe~#6]yhgbl,/2B5HQsIݟ|*]"y;EJwZ; ELb[?YBgKvVA 05b6}T;K dhgkgiU;+O|p+RCvЎ/77@ LQEg(h+דC&YkrХB@uړ$/!R_dAb@[c~]B 6rm nf#w,ԅJ9uXGDAto!ֽ7 zT1~>*Aq}SKJ%ZFjo~&yOH2SS;+43:4KpYZ5D +5w6jsk6\9!8[zXQa#暓zm2`"e%xuok?u AF}@0-L6tYX_WZ9QSwx~%bf@RT`bX7w8 +[OЙT9w;;9G4Mab5^c -܋-\X_ܡ%X@|[WBu%Ru_]_LB,dFre{~HA.8-hCc$kTgkn4:gwA7mTq'MjRBu:T$"Om< 7T<$@}'}ШC"l99Gzu1rEWv޸_$ ]:Y tҺ1q_op.Bhgi?UB;K|h*z>Ċ}®`YtTg&DYeY-!FV-4$~-ȇ眥rU㤊qTkwqET\R+ +I} )bM7 rn'yM'C:{l<=Kco"m:4kw9Etm+BDj,Zkl<1CjBvu $"tbh)|4%VAfk36ڊ>s\Ndr p +z]El20º1hAs0sg-h .|RQ47cBיJ+/ ̥"KaTؒtϠ %L#SW,lk"F+QKf5sieR TmV0LyH6ѐSE6n69Obh75 ͱ:UbpJ!1E5jFR/!/ %4_O붒RUw~WEeH/dA+M]'<+U1F"ԎTc]Sǩ}h-}ņ3.hB׬j=6\%{yoBTqc;n.;sԜEMf U6٤#D{>_E!7|g"MAKrگnbt@uIfnDdԭ5INM5Kz%C*JF1|T8/~ .AJVk@◰Ihzj=W!gRC{/}4a +u57Tzo:4u/b,ޟL4 CHYgTk"nMQk|}HNfu.p9sM5b  3SJ&ȑݴ}b}F]I|?MbV0 Yб$6qR -| _JM.rGM#D>Bu^ۉ(T˩O%.khZ-r h@pOVp;,Sא\JiQB'Wz5{F>4E$y-w'.wYjt=o*kH,+ȶ~k=+zCS؎Kؖ Wы*AS2S=aIɾZCK,4YU6Gć$5%@oJm!RgHG|fye~ +&H2ȣQuG"Y1!ی645Sv^)!\x|fiĞ-MEn`^{~:sjgoT7=m5s-Ͷ$8WSf;h:S=aW,h>йmN j>Tk&$O#hGuuv2ڕ;# " 8"'[?\(m"AΓA?X:yfPzDgS~>:>K[IۆEGp.w-$hantx +Dhb ȵqL NYܰk&NHX:\d>gA0yF.52ey y*x[JԘĄД,%9!YqhVdJES:Nq;'T99;VD9NcG2<4.] 22oY]-ptY`,煋:ߞhּ:ҿy7|'ϯd2Od4|㔩GA\Ϙ%yU$9? ٫#c#D?G\A#s3ȧϟ/:Q8w"Dž/kǿ?~,rt&?wGr-'ү^:d֙ʭ)6ZT'[PbBdƜ΀URlNCt) h+XaCĔCeŤr),2g.JUf K?b&ozTmQXt(ib 4W흨E>L0 +ԥ{lj#J+!uyFj壋i@s +-)I#;l*k#]t;sX#N 15Q6]tfYP\j'0 1)ѱ Qc ʁAWRo"ÅkJBj]1lL*,DoPF[k"oAWnРd#Y%ce*% S7-UB!tF>|A 1"ep1M22M5k,! ;BW%PYo9J[6FJʪqf\L&u$ԠUlrqᬳn~G$#&dӀKJi|?u,l>8q.9o6%B$JjXWbTBa#><"c ͅKtYFZj7䠢Љɬ5LA:c!2$u&ʡV;>KN/a"{/َv?ĕY65Ec) kG($RKڑJ]AX*o y%Z[>VL"H;L KƍvEřyFr)՗HOFM7VHIF*)e1K +ia@ 6#J s>@PX@q" ++#g# hJW&Nf1F.1SjSU3Y[lZ*HBl@r &H!~48XBY?LRcϳfCU]g'"ݯbfA:S 2ړYcIFG"%7㔷eTwf6: ѡUu Sߋ.m)ͧi7ݓy/>n^ⓉD vb6(VڕCV*R{#~Y^cIN)?,yn(LԖM\TU_+)l d, -@]ЕCHA)aW`Nd(lR~:d07h r:2GtB7Ah+_O`@vR 9&_Ǩ$z⓸63~UkxctDTLaG1fAq!&BvJ,%߹fK,TڀBH:k|V{1&Pnbs6$JG%!/fN) 6 ]NfmI>xn@A;R2i矮b$AMMmD^1VS3 iLߤYp +|6c5YBT "n:V59m*e5 @8@<ۂnIhԖ[B, D8J_#d s ݪ3h'nBWPNN7DXd.$v.6@lVp@>,{%t>IIVNxyUXјsO >1|ԧ_ Do  A8JAg!ąbX)hK q/C/h-t&hAE::bIeQ=,L>D*qñS( .2M{A[ 4B}T3ovCJV'y\V%5ѤWP* (S͠[>s(ڙ *UVt8Mi#ziw#OT5<PG;wE?;WLMd*a)eDϤP,r@)$ Έ/'ׂؗ |?ȰBJ Q2 $[II%uHm lz5%)A|8} ٢Ӿ1i>Hbe@c \ӡ/H|UiJCݹtn7om3.?MõѮVbNpqӄņb|L?knSo:6Sj89ڕ|($L#F#u{&W!k@FR櫉mj@{`"$'1 +>t<|D/µm7I )2SBq"*B"geSe \!?I? +R4j gwS@]MHq9ϛmd-/YMBΑxp#9:HBr (y(tI#5靖@QP; QC /AK(r6RCS7ZdјHƗyw \>(tA^ r+R!qk0y"Ty.2 8KD 09-SF;MHA qn1S +Jd&h'|*:Q7*w:h\ݑɈ as0w@.=G F(i&g@>~UP3 +$qP[A=#P˲ɴ֣d~[ScRsǒyeʑx -اv%p.WZ 1ZB|7>u{B&uZCPC aBL&4/faŔ)~|h1dH6`]`6&$\ .cmO(BҌ F2>)\7UpȎ$Kt1&o H{T)tbR㖑1BV"G+/: ?Gj(PJkj`>s I}, I₏qWd~lI7:H*1P-2OH4g$Ctmvd. _?%uui`&H +7I<|nd)Ag)F EebB9F|,-;IgL僠uȨ;H**/.#?P3dk%{\-gm`)uT*-ߟ!V F,"gXE* X{E. + 0hI> + ~?D,>qi^i -U>0ֿmҝcbPNO[oAN\˩"RơXϤTʖq꽓-,zsZEU[//PD 7jEW]ĆżÑ1A#w/,m[ݍKnixQ\!]*% v"Hµ~9&ks}Yw>s1{h3TLZ-}F`)QQ'TiJ5`$CWc>0(|/w2J6@UH va/خLudCސ &;2 4wI.>7хwa6a#P$W!KIn Lxcn둉&]Ǒ?Q[FuB?a¤nqpdw8O|ӣÔINrH-!$ B!/Ő;70_D1mĴ)Db?I8%xs'w%ɏnW摩edRQ\Sa1k8 _eyDP9& P9˘lx&5'blTRzqsسC88#E΁$LF'Tm7),>8629fR̝o`2$cRb肍lU/`i4ad{'\ґoTAm97b%0vɚ#vR8M$0 TИ+q̆j"IEPu)iLNI|&(?*0k^d Jg ++w +Z=N'3v$8j[%q6`"`PN5Vrh9%3m+CPbkv`;0%׹{+Aop^GzR_vb:WL=3 ;m?V}u1zy&@T%ɬ6jv]QD) {18GrBR?ap65뀩?B `3 ApKua,F!|xPAxT yJ0.%\&A%F%$ -8G'6aL21S=4#JQtOb,N9Fra@%Pg866!'4h`r8P +g|&42~TG̱+,w9k!_꽠-LBkXM6draۍlBn+N 閡qD%2ALL%ͨ5{DZO"po-"3UM>JT*uIQ}y Ѕ0ip ym8q8]R/l"` +)P D)R?"A)o`j?/vR(`sS#9@gw%|'1!π'Y0I#:gBnLud kRseqZ.AܖLxyO 蕀<p~1$c>,w~j9OPʦ 3OQ ǀ?&"5_bLƔm<^IT =cbRiTlfaJvi4xHG(E0WTP+#c25(>A^,@ljy0aIcy<.g.iV~t %L>8e`3ARvs,ɟAlGRH@o~ +TNp3QC?;{b0%]C)"BSRE)!V$6yH;)A)@JnJ8l7rḱgJ Ή;5| N{? +TR:ԦZCg|}g,EPݭà][(BUx/͠008 LQ\ rP3C S,ᾐiiM=LmlP0օ)f2eF0(E1@F܁ ȁ5O8?5, !N {%90!-BmDF"`NurWȓlKU0=|hҀiuT21$g ^oC En}ݲ:J1֦MŖo"Jp^R1D).L"0~ }#3d$9jIy(;XRˀR_"Nqf(c~PR xj83[ȂƝ$g}}19mÕI+ztr%f2mڠF8/La" +Ǔ)!\/({pK@ +j0u }sLӁ>҃ +:ZHCS"cd+` +-L5UC zFgrKڥI:lH)m$n7 P۹V]lRJˈR͕0i_zȭ ycM}LBn~ { B&Cυ{|U`T!I*E )Rτ0Xx5{X|A)Ve +ĉe= KSN 5"XQC֡'h63{u+ŌP8 JrR[My):\)s R&2q޷ xۃ=WM_%k2I%갿{fBBF7Rq[셌G[J6:}PQpKEoՁ0S7@x9oۄ8&Ibn6E_vBvQ=Y)1g&R|B Bhyb)k>)p|^_ (~`\(Rqe3?{O~ Pėhsב~ف蟵^PU**oh (EHm"Irs$w#@曽 +z:0M,{bqÀɹ=Ƒ܊,BKU}m 3 /+()P;2qQ sɜ@M/Qg%W^B'=68 <|Iu(ۃ毾d3.gM7zCL$~J'I|*;R 罱a6Ne'B_(;[ +jLJo2uj\h%yDij!Jc!5Q1%u!٠j|BSn##GaQf=n/h8JO⿔" N@?^L e _%+}!^M_-I(ŤVSK.ha3#ldjߵ%D +;e"q} w!Lؿӕbę`i:ϵED\P'!S 0m3Cf&Ʊp$^_"(~Gq3P<|&wcǃMU#9pP x)TC@g]e^J? PGsnԩ!Q@-Q@A אC3e3 W+s %{YPv ZV5ңpm4B +;Ɩm L'81?g@s]qR&g&rVz5y`M.s+TlFMP)_뉢}L'Tv ?}g rb ɛc!L'}/pwΥ[ ]CET]\9Pw!Sc^/l@8%nH%HO07uA1n&=%q9r~8muHT-p4("GLeN^@y:s8p=}2]ǐz"aFIq<$SIx+R/\D_2h}x/Co@aۇ?g'{-ԬVO% KB/璼L%|aqwGA9 j`VȧC=yQ-x$qĘ٠f~УR@Q|"{afcb٠d v@nJ*W +Y~m +'z9l5LZ.*Irٜ[ +YA+,{ـ~=X bn3mxEX.tB}꼐Ӏ~&<=٩+,>7a5 ++^G]c$UKÈ~͌嘫O>-VPaUIc6)֩Ejv1a(KU|@ EbzM"T'H.H Ԉjr8rW ?# x2mD8'\6KMb[vB.P1"~.QTT1KsV[ 9`gRKI.Y~ >r0OV1U;锆LznIf8!+vvM'CsK(iJҽCۼ>4|{vTq?{]ٝ*3vHr͔$ޜAEkwMjLN;'{ZuXSi XFUE1]f JlDfi\.f1wSFoPX&6]M<x7بfv|ٝ}LWm&jPǕx?[IjHMIsP\p*PC"6IyJ$SrP{ 18gb\Φ90e]'#pŮҲ*n+qy+>="R}nOVW4w+nD3 *N u:VcF)qMbiɓ-Vk4ѧMns[{H3|5bo|4rwZn{$kr(YܜMm%UoR;46^ v 6\i5AV +i$ZEoٴ*m:A|_B,jTzNaV.j.sÐg@hHh>sOeܫ=[xwZhqN\qIm@Yx(3~/zwsWwg͟;&S.g6]ڸ H\~Q&qɽ{s -=GM- eJ影?+=!i&KoJdʹj-#Niԓdtqzet] +T%!H.sTAڪ'I$wj +3hb{7 RmdP3ySj?qoeq5э"/ u/Pˍ(i_󃏼6$@ˋ8YMR=CZ[˺S;M2*s{^Z[<,<)W)2h⛷ 9U]3g4a?d"R)UF&ҪŁ-0sɋCuGEw~7~1Oz7-'Źاra'~jbs?cg:OOo?Gf&zEL`K:NZ/Z{IK.>X0wDLf.زJ {J9 ܽ:l֧4eOJo7̭SZv #_o!~bAGhlV!_șܯw'ٲS>)BlwK{D^k67x*ފ|me_w>28EN^5M1.*Ap +kd78'f.C/z1_5DQݪo[$&n!=߸IWjH2[M Vҭ!ͭ?Žlb^XvTWtR_~<3Ӵ-B Uk%x›=%-@yOE񲴳ޗi`',s+Qٗ̇u^OAVrz1v5j^J_ߓ<2{YzV#vq=8BRY|4Wu&}P3 :ڔ\W[u9έ* tcRU(ٗ`f_ɷf߽O=Ԝa(DX5_8鈽, ve3;I̽$_Ze^#%qqe;wՏ:җGʊ]ee]_wB WQoVޯSbx+o+|4/=[Q^XY,k*Դ}RtrdHkdzSXfCȍ2PK}.G rgz,dO^֝<'}ZwpM%뽅 ƬSWO4^M8x3QV~>,(LT UCoyqJ+H5UEu-l?4` _%+=e^`혽܏?ӐjWYn__^v>4:\@Amp~]pQu`yu`1&BHNChzKW􉺔(W*ˎaT'y}B7!["yضG| UKza}cmge &O:H4rnwMg (I^yKފ@޷aUO7f\,B]൯Yԁ;1;nF4FVGܭ+ ίzUo̭ ʭ zZq!4rRr(b^l\DxHszuXJ42/*t3+h- ?)Ӥz4 "Ö}7g8&b)-Iv Kh.6'(E}-7ԻOL:|3HP qQn'2emwbk}cnT؇u>ާ%^:E?-tS]~5+\W)(k9*-V^Vx۵Oww[iPsEPtB{oOp-[^~<ˆS 3yޮ⏭_mNWɷ +m",{M3*݋v jV{omF6 &%61-]Bw;nTSaq3Wa;ofK{y~/Y~+V}|q4l L:{^;T'^O/qNuk띹V;IM.T]ZSEhmyt܍|oBkc~-- ̏Ȏ:ۘS\%#" Ǿ4Ī3'hKfZh8Fo훝4*o6[kڿR'*5 ǽažGBڮ}\m->sm[ĺW}}ho]SX;}8@|.~1,>8rsU}{ONM;f͈+uQ مeم4x&JIB<&3^>`΁O+lJѦzhHuNVU^PUGU0H Z[]k_ZCS_^=<$;":+"%=,(7"3]^fe!ZDc\T3:kD р?l1789%oO뭃o7[n~]6:l-SVAsOET&R/>)A +:rW-p2ߚ(NEfiUHeJ4Wy=ZD m09v^.9հ8C~>a.,{T[!yvO9&FF{F_*w-KxukX̻Q!/E~FrvPUp>\>CԏW:xw/+w;\g6T}w*zY_Vf}~^TBuA4_e;mR:a +Fhq+%4(NA'UM`EFknuL6f%>~7ICQ+bbz乇]{bxzGģBǰCcS|!%e1gA_Zl~H[Ro]o 'm ZE-ZX,N*z\>Y렭*h<ahLއu)AHϯƫk(J|o4~izm}v旉{ +^E?  + +|w1<:RDjG<𻹮rCr BNo/\.徶y?zQ|r9sA N;xf鋱Nį^0*`oF ^ o@V w` 6h8 UMXVn؋vyVL;bO{Ztf{x~SH[wDŽ(pv/zQcwNaх[2ſ4r{;T|8jtWku )x _!|>i23|Y~DVaF7e; u)Z7F}SZo,`SVhꈨW06 {Rc+Nd>s+tl+~,ʠLz#-{^{wQ;=:l;>vTwӟJ%Ľ=Is\רN19Es|5UKx;0bHKew:(v +M(v|hU5 XPa Asp> +{1h0d> -zZ(hv·~Y.GÁK\cp/Ѷ*<`KV|?sh)UX:(%ڲ'; aOk{^?6Όwh$~GNGAu9SǯEK7F[}_!5 :U2uUq#k85qMlxWUs$ψ.ql M3/oZkw'Gssh4~t~gj_K Ͻ"n|5mK\IkRqS³|||0p\q|,w q+P_hzPfAl$(>a44Eq7h*ާI'1~64d7x>8MM-UsF[ǯ1n bBsiPcY # iaDŽ?2 5ɯ`ߚ_hp>֍})nՓic/{pN`kRM͘M )MوN܀&Y&[&Z&#נM@E2weVV\ lvGx}oRχ?2}T24szp $hd0 MM +͜-X!C6Cs[0TfΥѴ6MQB3f&?[%Dh}uz}w/(M{^=[\akѯ >9FGVEUW9&m0_q=<8{?:M:M)M\}4u +|6!II;ڔ#yR4wQD {Wqs@l~B^#U/^GWD},o)v3ZRR{!m#^t׶9VDDh"fH\Mgnlh,q4l2z9^Z4u*O lFhZs4K-0AKXN@k,(l uZ1.<.?1MH{U=xǸBbR27N+cC[o_ =DɊJHi'{҈ +hh\ +[w-akh e~ҲChYfq%ƽqǟ rC>_#Gjnsp3'Ԗ\ yHǗo O_okFk0eT~~6)6' +SiI`߈KC*+,J+4g4oV6zVqYǫc|TxeJ@+[^D:<)Pa..>>-G `/_2Gd5Y'4n+Y l?Vا 4G)6G3g!n̖t2~FG^* ͻ}g+F6V8ĵW't'~YV0&xʦk?x-}^T~@sTt:ٚWӰL|YS ͜RRGsѬE ZVЪ9 +k]K jӶ3vku:xcF;CB^z;E>~!,gz{fW6vCR$1su ĶIPDhާ㖣8/Xcj[-т%4wv4 ˙W b:9y,AyTB&]G0>>|)ۯ՞O=mK-aݓ6vL\2zG÷{N5L?L>_ +<-z >#9]ixoWP1`~m3}2V6)OX.G+tNŴ Zd ^vZ#ֹ^ Y2rO ^78j;l{٘;mj7yS5E:ռ~-/2h% Xϟ?W +֕Syp1ct w"! oP4o.Ȟ_4u4uRZlNs0_~R9ѼGBmB>Vn?ѢZhbm\UT)AN?ٶ`Δծ5jxSnނѪFo߬E7_%v,׿ί7,MxFP[s܇JO#-;^FH>2}ւLTV_Vl^?ga +0 sҨhLU`)Zsmfm=?xsȻ jo?x g2;|Y{kCycϼ@;/3e?uvбj KFYl2q6M7ez\v;t}JF&{x|4ftKMR>m>?jwoc-\!8xՐMޭc$J6{ ~ҝ ~V'e;:4,)45̹?Tr(z_uw ?)[?%au(JWgB^إ)KO;c2usvJV~Ö5A3/ME0 FL39/{LGM~O}a_PSF%Y P5VUo~3cAD<^OQ7ٛ\@X6ԵcE{솰!5w%W G-\As};D׾iQmZй_?w9j΢gD3͜ vygA/o]7W[ W'lRA -t)#ٺ!:qowNŸ\zC^odܶ$B?vO[Y^oԹIBS"Dɏ(9I09i[H<0Q1 Nfx +͙hEO]Aq\-(B侃#:gh)e0U_CnٌX!][?tLb߭ ArR(r1f;e!],)1/.?>&nTF.*h\ᣡ6y;7˩㗠j'ж7//@N :xIonxo[ 9 50G5T`8\aaі.I őE9+ hhh\Kf ^F歡O#Y='z(̒'i:kM8#)h8E +~Bx߿>k.5.Mܼ?UqӁd85LqZ.'s^8ITj/ZW0=3a6uJeZ;s&A{ie0e/ZۖҲ2{_» o%Pd3 +J_H߮7&=ϻ,Mo%yM&t*<;DtKfғf5} j)F=s:)V86XjX{iT)iWw>] nN9>TsL}gޚoRj%]4l$&apmcw]93f.ڶ p BA$P`\cf + +Q׉^oһ5-UL*/a]gWtdO*X5+*tV^ׂ* ^1E;,=oД1*hp0]i8jwu,+5Ϛ^5Lc&Q𓥴{,3_Zs*U@e}dv]LEdcnC_7mAT:QǍ"ж JԱ #)亭>*O[PAzqJImrec\k[tzy#_xN?oW^JqѬuQRV*i;yEq8GLa_({QzdOsOyTt\]D|㦽RW胔{g +732gB&|-6TEOm'hs.{Ѻ yFSw!-uC&-Y ܼN؍`LuI&B9gɏۏg+5f7 +9\d!JkP3G^[@< g/OduFUo,{Z_S/e{ؖmlJ|JUM[Ҳ +|Tp0ia9T6-~a@|K!jjHDdgkKH "]Z4 +:FHcNe4--Nٍ5wMo~u <$s Vg-wH~ +~9DNݯ$J. ++\C$<;ZtuYniN7CuS癩Rq3h$eםy&I5M4U4xqZկ1-M&3-kpW;EL2IMי\$":4Dofqb}*2>8eYzs^`;|ա+W%߯swz!٣K +o^":9 +EL$Ƕ>YH vOyޞ ϕ +8LXDss2SmT0ψ@jó]LlVJѨ ϋا0 Iy mdQ8}„MzE{MWrY~mrz[?'_wRG=FrLO*[tg]ٓCfo]2h F~oJѲ1Gem"AۡCCM-O*S sF˜p%RX!>~nʼnD3`s#`VjvnJy(~5[+:0א9;AlĤh,xr^̕^xs5 _^LV_fo/8auAD*S&/ OGO|aVMUilٍ {s##/\捜揙WF1|e8Gxw<'`]3k`HXd!ha/q Ʌ?X$!J*ۊ +aLzϺ.Zxi;(0ǁd%WJʦu&gbR*x{ٔ,e^YyG [(Y#n# +: V7F0pTx>u̍38@2OVs+>}"h9FLel|2*d+Ըަ`Lgvjy۷:{BxNC԰M| W. =̳^0 +A׭ikq#D}ԕ07򽽐@n sjsu,кEъskѮ]ڵ6L9gĠh 2<(30kf%ڧ@"_r F Mpdg5nIvYyS %^-MRf1Qτ1]>W ޭgnuMGrȯxIrF-BM1TdGeci `^l$eK"4͈Ȳ J0C \nB -ޔ[ykSH3ؖF:Ys>{*{ﳾ#bԫn(W; 1"17|x rV܎kֹݗ%=RWVط_Ms=,ax ;y+]F=L9軔w_gvk{k=Ooga5u,Yem~X7sY6aGogWܿɞ?p|a_+򥶝wo걞0w׹B& ~Яe|_c~| mįX?~#ߟ&kKSWk]uuجt= ݚk5$O˾ٺßUG/[pOϨ[z\6c]0.滼epHwbˎv,[ך$KshoϞ޹s`^׆[{jl]vv(<^t1+ػk=Gw;n|5ɘO{ˊЋ|~Uzu/OBUq=ŝǯsg7_9=~Sս|O KνIU.umzZ'._&:YU!'b}\l!:,w9SɸZ`?qwwg|G`;}]kc~RS>/\;uHߟL.quřk{ն| '[7%NoǺsxGw5x$֎ :x9Uz={tWnwUc syPrX{No_7!zG3C~Yϫy/@`OuOX79{bgx+cl$kB#A7#-D_R-6 iWs;b-gHgc+F26X]xh/8]"&sa8jG0ݼ|kgI_g̛|{g`[4yw/|^vEaOK5ܐ{cqC[ C.[t{7CWRŵ*'.4[w+k^:Uq]_|Po׺##0'7۔.yxoDy~׿Y}߽.\uno? ^,7&d]iK+CY|1Z= ")?b'Uc¼愪q|  +`-Y?sisyeڿc4WS_)Ǽ\Y%`:/݌ |USCn`7Ü7{cЫ_xQ)FlqS1go]+#d716pgQ%׹qB=ܿ>-y!z=qY +}"?-+\`#o๾/$k^dO +9|ojG~Z:,08.ў? +Cǿ9vODL/ds3 sN~-{7&˱msf̂/-0γh B18ʢ{a'φ@yy[(p*LtSs3y|x_խPfA^sz/{ϳ}&GO]z͈;?׻}':c_U\L_8ֿxX̿:+N/n P\q}kifS7\_ur?#g?!xO3GxwOj90_Ю7*>) |g[7Klރ_?N}\M~ +&oWyӱmm٘dDm3n~G @,w;坘Ǘ:7>1*»~, mlZ(𱏪\ +~2#H@;=~ך 䲱*տ-1s2քmSp}]<݈ͯ1/}%1qW4>hXؕyo1z^;pLjvma.n7;|bRNVeŜs?r:̥:xKOAݰ irω_C~w7icxZ#߻ٻdxOXן\5}s\{{ځ9ў`1w2w}ccly{/>a 90 .?x9]wUC1/bfYp>G? ض,Cߡ>m'DE9oz:߁o?ߑ?̀U:G57iߑ*?mwֿaKӻ.mu/gwN#OwXĜ}:u=Gw? =33Ag7W߱v%9"ͺw lwsbUM@xvħuOwYmƺBlYw ~ۿx$OP[31NHNمc$sHN_܈ѽwil4MpV ;+lr?_Uj +`ۤWGl + O +?ӰO~>#xdtBy,Fӡ6ZW8:#xY{m.߂[u Ƀ{~~<~3s<|yW``T,|ø:py#ƅgGceE8^]@5s=E sz׏'g 4kLn:W,=?{*'5#^oL1%74g115W1g-G#/# WQq +v+~.;LD.wC0CcUK;+հ+jUr k! _X۵|eCq։cYfK~BPl82wX`UʯQJY۟twGx>~jy_.7畘wm<{MmbhКcW[5 t=|x͚Y8{7⨭{H by3.Tda\.bp~xWwTp?M_@\"\_t߃2s^3]V=. +G}:v5F6f~Cu`_ZF}.;uCѮ3-BXz՞k?ldx'"b][/@5 >聛{CRzfۆWxRX>>@CcUZ\o!ؿ^z\OSrrIluOµ ; mkDž8˷MD2Bd 쬵 +vVG}iXwK:~W<^pKA^#شLcusy]9 f{*iUn +~}Fg|mV_j0,b"6)|~ȅ|w=5 +qk'XV +ZF`]2d0iHټj_Y2_CaS :Φ'$ag +0f9?aoY@Hre>΂1`ǵ?~z5{[71cѡOrz@D 5vfO~t{nC|=5>@D?9ЧT`$lcSWqo}XٰrWgϥ+ z|rߺ^4z^̝w""/O;˿v}u\g\vV='#vZ;ތ԰kCl}^Ď_ԕ7'A,M0?\ +<V(Ϣ3<K>޼CL K<^YW#d3;K}9=˽c5'w4Q='TV煘L8GGG$/_}Yu GS߾iƷw\'zsgHdܫh,Ԧ h =3j] G=K_y*b#]\ ϧz_r:ߎ11o/{jhw7'!퍩!U7L(8T`COoL_xq|;F:C{ߤ/*(T26[fE7͝8>G.ܯ tnПKW3[Fvn:O|⾔ohU>܉YG^|6)>{=VA|~[NL"xw3?7#| Sx[eO\ki|qM#'^Ʊ`pM$赈:P+}-F0P{`A?4 6h6vA$6B +EL'F5\wɂ;<5L޺)IC]D-<:~CC-qOכkp:xӻA;5ヱgFw}_W>ƿn <Û`#-|g<_: X3_Uy]o&:׏#6顗nB=TgOp=!}?==8ϻB#`]!:o+Kt %D'<@]aSt$zƽhc~_49dZ8kT0?v b O7kY4js ;a\G.T̿ =\C=HC&hmO30}MO AKO^v2Xepx<"Apl1/ojlu|;G]Nx|0 0Vq>b@x~u =*}r/+}Bܫ'X_K\@ΞZ#FkQ?!os,ہc昂orxvxţ*>ωtzOShw}K n _ދՖ&{9+={qt6evx\~0VX`1wK=9ͳ}8|_q6c{m~z3$ "0:M瓽R-{toYڍ ^-:$ĮùM7n&灷x=wED 8E}UU.m{`ρ]Kg>moM/39{yWp>֎ш^w_nwO'4/pst{ $;0GLn@Mc?c?c?c?c?&MhIGƏ5~줊9|#P"hj@jZJψ5cD$Fhy՞93#=T#7NqLwLCSP~樂 Z&k%jģ?ǖL;iJNghG;u"ÛqBrJ7TOc.?VvLå';HBU:j#i'aHq~2Q%ұDkyJ_@7=+'2GQ'{f/x~,b N"bT$X9M;9#'ӡEѦte+ |T&NqL$bMp h,$RKtgev0-sŜƊxG[.X3sx@DSԤ5 +4`-kmKΛv@1g¹) 5f_k`SLHt4#K@x+`&Sή?`I30M4YYІh + SԀHұtS?v\'[ +TYCO~wEv}w΀[,Qp%;H:*%=c~I;7[dW):;h5Y +{>X:E!U:#n88NNO< +1vp:(W0K;6mIE`$'cvtjGGѩgo'H2$wECj3J-^+g\f%;frgD",+>@xW?6 |CE--t\h,\4[PKK# Vy͠%uXbLRVJDقMrFѦ~:`w<۔'SӺ 3|K=>Tm[0̥D4aa0v-s[Lt#pk,Ѡ3bc +Oお0p S%Ֆn9uqsZ5{ ud2R*MVgoEm3 6R3°[<G؁p`q?gpDdęsKnY~28"X=pl-uU*>QM.ŐyTkZʞe8:6f4d(/+U%T4ϿR߬0W*ks4,BXjf .X af~f D2aa55uw,Le4H$bVZ~˩jI44tO.Y`Tr>T*9rBfR=4t.Y`T0Bŵ..%+Hi8}v)Rsi]jg,V*_d. ]6.R=dRQCVZ +>TBg% >KKi-RCM6KmFwN|{/nwASj ~i. h<.ֶ4Pބt r1R-,,d(.c--]pxJMiZݯ؉JK6w SgN063W[:5&CGCkMN_Kƣhd*o^nF{^nS 5G^sӺRᛥet?(\4WSMExjFFըDi!h ٪U^aFΎhP~TU ̥XYn-9`nF[_]-iD (uIYRȂeDeD+QJeD @^:Y+Q6O{}hK چpX9g ;:$XHQ"g,pT"g,)3X6oŵmsD#%cBՐv2o^28&ۉl<Ȍrqdf0ɥxºr-NiPL7L"nLI9ST̒@3F.Rfk=Vjp~lOƑ%QޒP%2jTƱʷ5%E-ź^0/OMIskr0U}Xc-tQ+™j% 1Ғ]śRśЇ4o,pd/ ʰośR2 ⍽xc/ޔM:bP?`!O)Yb%@uzS u[`TҭSS`-tFgvEMbiK*S#>? +RPN Pr +W:ng8c +owVTLF~Vt!ld (gXd8$] RLejI%-(Or@eg2c-ةZswvaB,(OTP*o@ZYs(}WW O:2H #VX+#X+ ?S:iPCvKrRe$]`0coXHڎNtSKOԎOMiជkv|jǧJ`ÎOe|ZxvxjϳT;@T;@1iK&[S joGЍNVji9=SK,pTkiJոaG&K, 3I *;q)i“g`'-=kC\ZNx0iZ<ݡXgtO±z@ncK +}vb)OaztTUz8jjEEYZʐon.y:[j<~+i"RťU\RzVQ_-vbFRR*d3q4# .8fohpYkﲲ +O'Õ +endstream endobj 24 0 obj <>stream +SbSuo =11-mr*C4Y=~g&?R5O Yo>#ZqrK~Sku39hvz3:釂6Ro3@O[y8'YGl)xċ5#z tm$֟^¶ MFqQ$KGєUS2yX6ق/lmmlK]<I.ez;>%K6waJZh*O&k;UX6s Y&RIvP})w"jaj@ ;?6W=䪔jĔ y)s^=8H4,^}dϩ>9}hf8,4~\Ǟr CPCe=v+1]24N8-V޿Ymnk͢CMc_[Y]4F`>(|/Yz-.f'8Ջfu%JY 9EGKz$ҶJ*r0"f%p" P9pv 3OoӔʚOQ1MşCbهO")Hu[bCO7bM5L4z#q~2Q e*2K?v~Ri_C*"K)T:)GߍەdexA9iNxYJdWN9R8fEd "K4$9%SCh-Zz ׍[N99N`$NxG;iI;i eVr -R$;a +4! cGK`i'+ d#6 Ðv4h,Z qEvaAVz +cG­, =rJq,t +^BFh(m7h,Y"v00 kfaA8I )|FEƠ4=G36hMFqQ0ai7DPސR9P:Q:NF(+ h'C ReγLp7ϋF‚s +`";`S,` P,y44 k&4=Z h 5^`f@1v[ƏV rL@37e@.VA| Ej41E4,ZV3Ŭ&5lIi7(W~ԘO)T:r@ͣ&5\]Gj+Bہ܊wx0yx/F)(Ei>$`(X~?\ 8(81D2AQYn&$üf +&(MB7D?< Id.5ṯSKӊV+n- '6/ 5hjCLIGcL泺#G&,ѾܫwTS%g,)ì<}цh"Qdz6 QhL0>IY9fW9U9WȼS+/jZմ6Yӗ8)Ϩ3~<,R&sJQbT~( TmR^8Vcvh=c~,~~eR,KF WF\R.wZʼ%ra^E礎,Vͼ,VXQ(8P!HE,ϔ*Y%UHlrOz7~z7./3dh㕱jNzM\om6gWXQ=z3?'s>͜ )34' oۤ4/9eVq95 wb7|-(eL?PZ9( H,Gl5bW~{}Vl]$L賴iH__J* uє֩ T9_*E?#T2 D@MS ?St[ "%R/j](=!A +K2JrdZUUX&gi$ZWAlV+ +%+S#dGj\n4nXm7iV)ώT﵂5u +41Zt*Zmp25UnպdL:?6%S0&T31AUsfݒLkI!hN.6V̑!tOD%ՅOoF7dGnR,e(hN~9tҡز=,쌦D!lTT%ƛrΛllQw(/8_ +o2+|n9qYD@{W tzD:(EHD^ơ_4B R,g"Cs(!j7HT"ahDV$[kZD6F"4ucMa(WoVT哙$ۙCrYDza4onƃƔIl=:|(*;A z3EoA4ZATU^6.ךkq)Zxsp 'Й4f90}Ϛ¡LaN^r&D)d*;eM]:$IWKCoYz[͒Yl՛ $s$J' IwEh˚S8Δ$yDDHV]$L3WKDoE&ڛ4 Mi"DRSɘ L#\#1$ z hzm6CJ A$i" "F4V$7$H'fpm֤#-E;B4&fNԒX3dKk!83i 3AA3g!z͚ Ǜ7$<fplք#%Ex 42fP2iU" )CxaE6Cv"x$ٌ +NǃPzf&;fLC5hO7NoIt:'U|.GFL%fљiA62yiLB2egHU !;3 Ykd?Փ2Ns̢3UktIz&£V.VmgƴU1&}cf)3IepE4$:2N4i !:3WI@ItZ3M8H!HRZ[|2;4ƜikNIjoei$?jծMIL$—VƷ`晤qtZMךϙ4$P(|k~IZ7epi$!*ծMIL$–Vƶ\ƙd%tJMךd44G[d=yXz)kUMIL$ea^U[{y3IK@/1j\kʖKu"N7n=pG=`^ܨ=pIM,7cO1TvrF_?9 x1Y8jR1@t)~G䎴 ww'\mãQJd`ܝzɐԘPm +JZhywd] De-rv|2Sy7Vh"B.f0ʤZ2"nrQF$ط'e(a<{J\ܮ)ED["vIOvʤl=4m>a%4 (AIEHDȢ6*gl'OdEOE`c?Bw)Hj$/,塐΂<\}C;RhirTJAMmT||4d9^b'8%9.7"PQVԖjlO!O&3Dca,z6Ψ3VSh +o;fB(Ņ_AE$I8%l.ِrh7r}T1ʍ ̪CUƬ̓~O*.C #b[^f[?~<=5#1F2T |eI)ITG?ɘ+Q؋V!wMQ;[DҐENp nGZpӖ]I@>Mjd)D"m *20SN6HyfFX4PNN >((PUf-YdpRJXZɲhJʳS`k._fLٔ%Wnjx"K 2dEP~VrTSJcP6I qQo~F몔ᠵ<99+;GNWjĈUuvD:W͎ m&7VquT_A+19m<<:R\5^j=%bim;&/(PnԦ\9y5R9$k1{0<Á5DӓsM2ȪxtUH%vlsԹ\ f%@_qE'?ʁC*|!e.C\irC!47pY=šעG5 + q++lDƓ4BIܠ4GIk^K6WM},Mϫ̙K5ţly5  +oa_ZhrC9VDK c Sd0Z̑ Ax$7C*`Y*hb9[ǟ(YB"mF)`8]#J+v++MU.J66(b|#hAI W0ʛ(䘥w9j+Dɔ-dLi%Ŕ/,lTUn;cil`XRWiYe^ڊFlJ ,1=P&j< ΑyV &p8Z9{CӼhDv0c@N)gMId@Q-ExЕT@KPr:7E]7XJƳC,WJh(Zy&abDV"0 A oY@0jMYRk3$+r뭅XV/jԓv|nGjOtrrC16ddby~bkNy< a%KXԆIj>@wY$' 5*%uz/qB8"c +dJ CkI4%ONd^`34tP Kta@ɑ_0! "A'TX93[E Ps"hN FG={Uyz3,zB#йƶh!fekߪᕕږ$UTkrv*qD[ihٗb&61rJHGd$) ƥq)Bg_BDVQɆY: H"9σ5B,)-'BTm& +FCX\ NYy<(OUg(ʵwF6L` d5"b0dI<*>NV2 aڵ Pi]+orZЃĺ =WXSYk(y-*Em+hY%f4OK+c)c`Uie%ւR"rɡmKzV!(Z4IMQ2N(ɴA[ԤjIg2FYTrnHj`EQ9L֊!iU9s14pAΐss +R.x:HQݟRS92HR$1j dGyz,+Acl*4)IkZ,V6(/fRz) ;ô:KAmVZmZn:Jaiv׮ԧkնe#wMUI8x{],ӑ}wt}v;9B\i@^9_]DɵM,~yI^Vn Zz X +2_KjeӛDm&bWk#UK.Ԗ+FT|ֺΏERy;jxN8\Bm /)y<9Inևdƀ5<] >ydL4p2reyI OrzQ}Vk~OQmXn^ rD2GBRd 8%n u GLAQjX=hDy6* +! +b'ǩCL!M)fo\x}S+XoZl.ci*%- +Yۦ܂ATo34O%tiJ*#RQ+U0xMJ-+C2]mJo&*7pXؠѶΈ8;ƏuL6Ep@T:/UDsW,]}W[x߲ jJN!I72蚧\zGM05KzMOgthقOЩ8ZxNiD $ ñ,KCXQ"D,L5.52EL̤(Gɕm߂G'QҤ"欉W>23F1ʏ<6eOJK{X1֭ii錦~鵊s.z&SR)XE89FG51&V +(ItBhKF䚮rјGz)t:5 Sn%jHE29P>$PВr4Ŕ_UJ/֜ns%RMJY35Z28{.,Rm|y#.zH+IvSTVmU#Lj3Ch^MujGs*S-]qNrN,,Xº{]ɧ|nշl[BJCڮܲ]w90n{_OocN*JyRlLV]oh'U|Y<\(0f͜wI* ۞ÃybEJz"y(E$\.r2E˺Veo)֌~L,MF&Gcdmg+! E$a[*]Qh` { + -W^-4`&J(}Uxׁ2atI30q!#/,C21MXJK(`ZiNg9?2DG\"RlJa*|Rt*]AAs')< UF sRɚeɒkI]z(Rxh1t!h"#h| i^*2~&D3% bBE r(I9`hs};;%ˤX&q3_KєBfP0QRS:O8uܐwJ5%QO3J\<0f#EH-%1̄f o3?!> Jm.`I7ephe-T=+\le~籟U;s1R + 9#wy^”1xhRaW5 4_Z98lBZ+${dvdQ|0`C&M008bDoKjt3wY ZU*UJNJ@R e#)N|U _kd/'IE7-=.&epO8%ҿ 1GP BPȏ/:,HVƺ8rQO-NB85~-:0,k,y5M=`5خctɾrٞ xR?RQ+zE+(E_+e_be=7vyH)yH:CmS*D{L?wU˦ Sf\]ǝɥnI7QyN?C(8 YaSqI3mَ_Axk RoMg#f'7P ©~g=jՙF`Twg %HDsu:Sr=V_wʿ:WxZ:%4.DmAF#H&B!F7Š=* /K|KcϢA\Vvh X%*ӿ2{gEԝ +C.L=~;S={ZDZ>Т +E +Gg}с'W;v;f=_7;0iBU=%Ɠ|v DM+@9i^˧.k!T(l  B)& j}p{y0C C(2DAԥv!z' WEKB(:k􁎇.vA:* +C4* ߄T{H$Bhƒ, cuPmCݗ}$"2gh(6$;! xc Z/1x'Y%DjelrR U;F]RxWgIَ=^^T{^/8 ;0b +!iY.m<" +"~ D +24Y;k +iB?EECN„ FD*RdgRJh\ jA1 ~ ё)`IhY^%J9B\@c6 ـi\Z roIbULbR0ɠr1\1`h +N;@F Zoh)w 'C - `:$Х F#ߟdBd '*IɊbD@bH_ &g`<(?xZDmRTh2{@ ,P_˜.Ė6WJ^oY^ )'Ĝ)Ǟx*L0Xfƣ Q8P$-r'hda ;ࠞY&UF}PiD؁~sHHA7!ͅ<%''%p #0& t>e`P<؄L0 \lPfXDFx  ?r`4J ${D7K +,%""B'|PF^pa#BP03#0E1ddxiaĪP4!{ іs` Z20l *eO1 N4`m.ȃM +U@8㋺T!$䅠jpA&Q-6Ն BcQ2K0#N~&@318!2atI?X 6! Bb@΁X(DYry).WQ & & 0˃ F` H&@rL3x!P|@E/V+$@gqgPdnhe`3\&bTw[`0R%V4(x +ӣ~p=Tcu.4Gt3vA! 2hR@w31}WwcKf,nfq=tߟvĥ5 +|cRP I@I6DR0OA7vDP~C8Bm ɦ 7Ch*9 z:B!RA !2Et8rc& rH ?@N%P(+FcϋW8TWisIGG$Uֽo}Ce>sw9eFkQ~95MܚR}׉kKnG{jϯ;,&#g@䧂 #L1,lhG]P!.O!"6`PH@$$eGALM!Y-LOc@UӼU(xC> 4$ 6@(L + !C؀ 3Y1/@@|vA2@/{XQ֊Dŋ, fa"c&iaDLh˝F>%>I"**th "#]Aت ܏ "\a£FasWP`,N5Gn2IE@C FiY;?R0@˽TJrV A8²[CH"E>/<*,00<:?@\_E3%@`O KaPௐ b( ̆}$ (Dׯ +G#8g%$jO|1H௠[ez9[/n%heP\*v e*RHV>(Q@rڀ/)갈p_DSq={P2LDžgEqj!Ґ81>(1gNHiz-0ш3qyIJrSŔ^H QxH€@5K4h6iKhUJ Št*J2@|A=+m`d ;(E}~T~e%>.aG[Yo|3sx UGI? ōʊ ;`8 Ta9:pܩ7SB!bVt[1PZ ;d}[)Tw6*V?\;jJGBd6l- q +%v֣+e t5`p-4p& wbvK3" ^44VqXgs,6F Qج:cϘ%}ocӿ6jJv2\VA0c>vm Ȅ~_5$%yGVYv಺\V*r3ꦿxS{uZ ":_9&ywm,#GŏrY:eUg0\0h{ [n.d6ظ+L +Ų7]@VROG Īz/7]:w3wQ(((t +.qNJY]6K92۟l;l INy:YTϵ2Lj~ɰ,K QWr2M/bC/>nws$hɍ#P>Rop{ ARj)~Ԑ.\8q#a]wv>Obý!k})Z:Qnћz*W Nl/*+nUޟͤUk/\d"eaɜgv٤4:׆{+5w|\_Ee-D|H5\D3q"S4b6Rua|A%  +0xd%E)[2u̶kO{K2grԁE Eg85i!o˔] -E{thȴRɭxѾbۙ) +˝UC)K˞2Usނ5wx$/ICkQ8ΘKsjbō#;_mLf#~4?r#?oGkyП旵xݻQJ"K~nk~XtmņFby~<"8| AH^+u^:-Ym6c^rfSr%{g +Smyp?p/Yg1Gwa7@?цɣnw;fYL6c4~A&.j h?CpqJ^Yc*z}:/ ;tQ>qgہ.+GۗWh-&瞧5w1DhM Mzq;YAt2E-DaܑDI.f  +HI0he}qO\.H7ht]yœeP`MCɻG}hyW5%`vPqFZHڊ75F|cxex+YJtQaG7RE+(H6H6 7"&j>FIbH պv(Y#@5p&TCm+GᄈG tD}2tX +adc.T*=9{T0Fuc*Qt}w3< k;2J tV26`o*C@p[\#d0Z˓XR@=FOaEs9z˕VZt6UxYO7Ga1+`Ⱥ)MpgsA?@ܧ*%65 H-@}/YgCb4!jU hۏ]^zuoX'@ZvVihHA%=>2"UWkd;CS]QeA>W 7پjSV6R l>?Si\mUh@j]5l%ԛI03h/^fth8d͉v룴?4F(ioi$a:ɽ(ރlL9j*2#,G BGo}p )HEJ=! u7Zpy#n7FKy; A +f c@)AcDBrkvYaBO@l ?X.X6~Gg+Lk-X+w3-|QKue}▝Mww4աR^c1u,+e1قC깬Gb7HߓڬcLZf-VG깥\FH~(0PG/uͽzr;F%4j9DR(8AcV޺;̬f*78#$#n7N&&@!1I{ERn3,{8c&Y{Q ɿy)'EjdXZoleP3t6 +b_,+(㷑_2 ub9QFt9_[3OIr\Zs) !5xYGJD/E+\u|Kt"Bs{V \so͹GoIaqC=h4gݯR^]0 NOM&SvRx*HsòDGMu0YD؆&_nKdr|fL&l2 f6(e+ JHpF_I}4̧xk |i.=X' +qwr nL`.4ȥﱿf5v9^tS>O5\)'gWv{)6' p%-1T5L|6_YWW&#y~&O7]?x>S蜾p?^:3^ 0T[ O'|csMQY4M~K-YXSYŏ1{GmW&>e'g>|; ;0і핉=25Z01nKĒkS0QM~4M^M)fmxP14c#SbAL3cJZ>LYʔ~'L׫7]ee1=Թ0߸3=tS7=OlzZy{zdMٛpZZ]x44y۴x^۴uSf]ggRe5eG+}C=O3QD4Ys+\0mvs$x3m9~6ǵ9.ww3sb~sm0?n 3%gfGa0rG'ܲz7;fk{d,bߌ-Ieԙ[ I?-+睍%ZKP։Ԛ,շX-=2[:2/`,ZzlX+sfxesGWv~|ED_W*}/LW i77z5WjX.j^">ݗ];5yY\3ۤ:zo_a:?~_1u&ۧl}0_հ76?XgkJZXLh-?Mֆ<1[Guiy;enZg{^[!fK~]޷U7ľwmco 0Y0|^ɼg78ˎy9h;}sN'p]Tpܚ'1tݻ33WvưkW9um5ݻ;Mܕ~~'uϻӖǼhL=Æ=IO)ΆKO3F{>Ze[{vJ;&+[l[f)zob3Su}%Kn۾JxK^ mc]mw =%G˔ trDa[QEt`H#cuǘeqRdL/mI]O2;3)pYdюL}A3~'|>U6UCW 4 +ͭ +`mEY2W[jWkB-ȧׁG_yFDd3u[&ՙFtgz7?ÆpvmƩ)_/즏M +FooWb:#I1TT +=d +$?up8g6ɇUx҈eL8[F|.6F +ȶC&_huܻvo3yNξ#vbͫblUqw2}yx)#&+Ǔ7Uzɹ37U'UDmڔϧ>MҝI2%[0eS+zSNSyKjL{IO׷Bz73WO~o2כyogYl*tdL9Z_\7\MaG,;=.ӷzz4o(k/}ʯ u_,B1~/x^yc/f(ɶdK +a]ےҸUvf9>Iˍ UJEL.v4O2Vr?e*r.Rɴ j޹+٩J;ۮmoLC04?TBk0t1W%j7[k}7cXy_[oWj7F5l4FakZSK=nD@;F6x9fZT`Z6x}z쑧Ѵ{v}^ϙ+|1u&×tp/J7"=j#3'/ooU}P//30v2lOX1qg'ُ> r~:WwݷM$ЍԪn߬vn6L!_{]ϸG_ϛ@Kj0KGjC7v0AhU֏t4Ed\͛tcu/!ojtIת3f9y"ZTCEF-z>"tpKnYQiJy_WɺDzxw&ew==DkJݻ?QKvx`CՙOWvXsIaד]f76Ko4G"Rti'm#>cI&]2M(l&IׁI&1=Hs:ZZYw("+cem_T/aHqiAʴ"U<5u0=6%|3NԚ3^ q/ !;?OVȵO\o3uD܌bZhuƳy<h*PxP j5Te* K62_Wv:}|Ut'߉%%ύ/L%A)S|>ғ/ίGI ,[/\/ri͉biv!ř`'ilFa;"J6]A*i +ȾGg&C4g4q]e-/)qœO>7c9hĤ*ɏ&ZE>saћ$qՎrH)jAn]9c6ͺJޜ Kl>bH +8ңqvFz$BP5%YRtPLdw2T _T.AxAcVs,^(W<. sLM1J/ytcʙ٢L6OWGu`u/臭þ&kñ ^{WiW8eS-BAJ>^6vd: ~^VY$(< B80nЩbNbLP*3BޖMSGZ=W^/EP<=F#by8IzMbl)&C6<%D/s<L*)Ebx\Wt^h!?Jr {j\:KEzㆋ%HL5j\QLd4&)&KXǍ42 })Lm\`^# 2ՃX?trk3 :&$4%mwӘ,U'ƲIG H}Bg,.r ۠qۏPrsT}9ӋZRgvB\e{/Ÿ)($SQf +.v +@w;g+ +CrȹmG<5W%bȁ_>@_/"<0 %r{*D0w}mz*+J?.6qݾe)Cՙz~bWi VTPs)z3w_lG +<S\ܲY<AL90Q98y|jƌ^ql1ƒcTL~z=9{G> +"{i%&j+|>K7٫Tģ)gkIP/SKzf +< {a^RӲ 0ک)3 1+vۋDe ] Xfw>Juz2si|cƹIfL)&i&l$b,1Daz08ywZ֥ls^ipj3$LM("9dss+3yͳ IZ8Y^.aeZ@xiIu[f 0{} +LT~0af;dFٮe"l~!ބFȁb[U]jϹlJ<=CG"ޒ~{Ta+{%yfTM>8dBG:Φd-v`8e^KNpѺX3C Yjrg +v<z +2GWT?&r2CCHͫ<21R:z$l&5q08[C|=w2yu* N.VT#7VM'{ߋTdM"cnQdu/_HP2Yӆ}/Y6`[cνatF \t[6"@(̃0m43+y?m)3.U_I.wK%FsxB塏LVb"Z=nQ{b 퐆N$}fe_[@9WhR9xQ뛀>us'bx$4MfI6TGfAF{|o-t}K'F۫y I&IWٸ䢙s"2@T+I{g+o~<fݠȗ56vLaQßc-~'q=Lmڟ<~1En+m{ɸlquWcy09`*BAk2Ab833kK{.^ 9S.=11(}˹^ AL>~=#p^es7[(}C)3Q s 1av:g))i"_YB{Gظ_? xHe +`p+j;G59WZd{x +%z9\M.C +~1և*b.h ɐJ?7jp["IP7`O"{^27ؽDqS91ˏ^ +"zO4 Z`;:ja0>U(:l"NnKDmb~%=H:aA=D,m3ww{X=3ikrVtd8Z!bI+(z#0FuUl.aۣ.^y,^W 4Co%C{ }6 +y N4"{}]Ucc@a24&-{r& lèk1XCRչKB`й'pIDZΌOasr|:8\.1f}}6fpd)2P'%Z;0Gے"#c2OA?{3ޤo׾`DngŨ, i5?G>23<\%k@K;Oɜ)h~Kj]MC7Ct,3 +0{6a,I\43AW:m9VW,3x3`feꫫGȈ^#LuC6O/O mJqM]}78x, ? [Tr/yZ0;65VQoCoh| *a'Ų7^/ bH(w\5:[nDPx '5/YQ ݴIwV}+CY|WɠJp)fւ_w!?;R;6h',Ӕ +0zjSpИgS;UƦx_yFG׊R@[yP*lLtdwBX_ҒdovΟQm{GOcZc"uk2Nr|a'É1ϤV6Rɻ)& +rϕ4+/#2kRqϩVǿXOzi "D>] ^Ejw⟢7Og<=OsDVd4*yR,4*ݼLfZg)q|[|DC|Ec_R.Kt,M>>\ -^ +r~sx%ߖp۔$;U,@k7@ !1d1(Kxp?rߜ`q.J,.!lBQ_gŝK;s\} |94ݨ3YEܗp].z >>s9쬸ᐙzc"O5-F;n9O6t5:{J k S49V~n6@ˬV]ǔ؟d )A rD*,[QZ ?EpIK?R`u`Rs>WoiG~oTfOo-XO)WƌM6flhaO&KOkru1y2Ebv ?`J;jS2SM3Ntya/x +Oۏ@Ynҽ/$Mt[!ݶqS]CR CW_26w[YoS76|ψ9ÓY#m,>#x 毟ăo LE=LxRpMVrY/Ԡ?uj3\PKU ePD׍\UׂTW珪@ 2Ս<\#eE\bk{%DP܈3j=TI-/P}RWm6ґgvҩ}^S{q 76LtWhe,B=s7uՄokKr}!,6Y$u\ojE6SXd(5nmya,%~\ V~!lU + +>LBq +TP], +ARFЈFM1TJLjA[* +|(gw*M4aKNjU'vՁRN~D HHC4e!ahy~,r4/'qa:oV +pR=|ʠC(Xk."9y ¨j]M q + Q\_ +{q/ T\+I&#kr S)cx͐+큆(5gZrM,t?|Dqc ylޠAWbI9d1_{i$_)R4f/&DzWk@dMJy$dZ(wJPVB-p 3^KhxXBCUs֎ɗEAu9:;@>ŵNmPވ<Ѩ%znvtKmv1LJDUia[Y\ r*bhU4 sMC(GC@5UTҢ0U&ZOT4h,*C[hK)MSD"![s?UxcHn diQo5SKD'AՎ^XGEQî!_s^ Pr-5/PG+v'~jK,G'C1?ӾN=(_)Tf}DMڭa{Zެ*7SݍLq`dQةA8in4҆B@9Bo?[QD,ΔLn `T: {S;B+s+a Nlѕ3N&*=v:d3/&(ۦJu;r>Z>Yy9v-~|ڵ| |ڵ|şii].Oγi].OO-|ڵ|{O؄v;~p,v=yN2SZ"QJm[BjݜgRXT*pFH3D>69VQZtp./n*Vp%N ' ÄIti){j."oU: Y1)[/UPK7 T3 DNg#RN/l$A~zv#Q_ЎR:@#[gEN+%S'E" Vڥ|'C6i`$&]1`\Or-ΧXnMtY<7ӐN `9~JJNU͡{yS9DY ͊|Âkz>A+Ш7NA Mbdih2v0emA,)I=Os)kZUUЫۓuQD SS'U@GOgmi~Z.%b?$ٿ3 URm]ߐJ`77-#:-{sI ޣuRF`~A*C0JBS4{S8){sq8T[Ǽ <~P $h50P t&m?(~ApÆKp?\ȊdQ=o7PPQJM FeMA@ Lf;k$Se=i5ПLL-;GCW)0X9w/ڐkJf*R.ZWy=Ē8W=@e,UEoc}i Pdᣧ!-";x hHyZj~Q +S/#r!^*wOamN +46~uygSzq|OΎ)jA-T"tSS5(S;snSݭ-#Pq?4Nv8k?&&{ÒO"W>gsTا%)$)`Wاh' $rs¾ݿ)Sm i1巗 /)${w(O0#9Skep'IzRAJ3R{SWTx&5."@E'7W 8Y>T"}mϹ +z;VV+·38-Ռ褹R'=i#TګnC]yNվcC8Лj1P0LJMDf i 9Hh,Yoaa ;Qnf^;n[f _$?煘'GϱN{91K(A 39BBGjJ/1(z]*%o]Ũɮ~!^#$^gZĖOr5{UJviܛ5|m*T"b*JP w߂|5MuY蒗ZݛZFe^!QA=!Q$00v&ZΕZ=z"PxDH͚V\O}ͮԎ \L/k,PMoQn U7YeSdԃO|Io+.͕@cz-J#^weT+̟#[e+JG \:q7zp8<-Tޘï헉NڸcYe5wRU7)o$M +qmҨCsǝU Bv*{C Px ^'6 ١s8(m;(G}2'\TJO!7>A6{R.Bv<\ɯ@`38wӞݫߤ|3N{ѠrFZ:$t]ڜIaRE :ϻh+/}R6\t<'FrkO}ci 5#i>隝xGB?t2|h]PFcc'Y6;3?/h8>?%PN )YSѨԬW]D%j%^8_pmBϪ-U)2Kz +&YWEoڷH4jӈz0LDjdMsۻүqe{BH"y7}_%@@_$۲!70]R*JUZ@y1$]Ld}Ub ?"a|MIᄇ$i&<IxEvZ ہ}BFv:Mx؁uPD~0}/9YC;sS +Hv0wgHMx!xgA.[[Lxؕh?a*jTuADa.~ Oa0)2azCOxS$aP]A^CXEÖ: ӳʁ[g;gZ.Lx^ $;MxmSG׺:IxZrÖ&< ?3tvZ u@6 0=2!*a8Q[h4]q ]k91Yu&K88(c +M2Wӂ 1|q5aEުWy_>Z8g{/䲾lN 3'kNjN1Q|X(L7ۏQbv:G\y{8X6|m=xx?3hV#u9z7 )ۣ3;Su咻>XE^y^޺eGhdũ.k:~1@GF~' ~KfgHuJV-öF Y_X\^Yi~g kϖhL KXA.u?1cCy~|6߯gsn*#ȹLF3غHGosoGGťj~um O߫o0Ol4CPjķV3WZz^ ?3Gaj1GU|2~-W9×Zʌ.ojsM|W0^ _n=|Ux+|P GRYӱE:)WǥZcEWwxKWsnaKH*LԆʍh $[oDŽ1szgfec3S7ED*'륰֫+sZZԦF&թegLMr#{WSV6?HV1:3W +x;R/ +-"oDo/o~@R®נ7_ V Y4|u1ktF_0f5fn-V߇]Vdf"~pFOTk0gDnMEyɧƯaћ'!TjG9v`OUaq?>Qdk-4[QcmkTJm +ŨI 1;{QϞZ+cb#~zjzُ`sp`B[h~0K%Yg[9IȎ]Zz݋]l+qE gM:`xz{-k|0Y>w_jr&ZYa?4j5ݭ㝦 +9,s>4N">5[CaLbTU$M\)؍Dr;0޲m6^@06eZ"OFdцj"VE{|ErsS-;bV F#7Quh F#:m1FWbB'C|VIt VIkJ\F#ms3EH#R-TӒe|L e-YFr'nhU:i +#T7A6B+fD]7ma^bt3nUѭhthGu? ֑<] +͍s_'wr#7o7|Y$K_I"ą3wez:bK}wf9h\EExI^͜Z\ä9ױiXon5/}_*k4nz}?oK7O[n"W[\[m=+݄{$\f+_<ȅ?d&}zt}/9>7{qz=S?*]Y] \5MM}mHiݘ:!]L7l~xN+6 //VKˋ+\m\v>l/͙덙`{_C):liuqӂUQBcZ\؂"B'\ _PFXͱ]9_6Ÿ +lp.ՄoR.ug,+"wr'c7i8T1rM&_B*qp2 +թNּ"w֧imWO; /nwFbl_ wra_K6(fP^JªYQ%#n+^;X|S/6yJO4&ƕq.٧ll,= ܟvЛSXGTKj4dtw>ZS:k_ l$PfWp&&<"):YC3T{+oϕx)hfuѶ?&δ+|QE-q4t`nT#A%&m(#"t>P\1s`ɭTK` VCjM Ҷ8?;"qd¨@\ ٺ=[|^gUJͥ P,&Tr *3ca\@˧DP,OmEDSeX#Id hۦ)^-r>Ãy\ܒ|4qHs_Sg%ũɧ0${eW4:AH:p(2dB0@JWȇ(+ 29ņ|MmF|01 +N c5i|H?8{gL`N|0p6gw4BIS`HSY(?(<[h8Lк-ʸlۑhle0D78&[i{D|\b*l_rs;{vi3uՑfrtpx}FHߣ2Ge\_$Dt_YhI]f\?v:o.]Jt &כב0-Єm*٘N_/[:dpۉ݊ؑLXyubEbKiSK^`z77ܥ0P]J˼΀*|]s;$*vo}DcP^ܔ oZi YҟZi Yc|j%dE &: +T󉨕Q+-!+l4JKJ-j%dgVZBVQ+k^@~<~*]!ʵH^=StŌw.r=Q '㣛w{swYOQuWM_|JUbnkICZn$&b5 ؄x(` :?!)dL~r?jJy&*<Մ@N cXrq+D0<ګ0r~wXUo}9?9jx9öውOׁ1yFz ͣ2|[ynԚ&سD~3C%ë^\e_Ur|zs{{m޿_??@N\V?/y Ww\'T<; }O?ٟ9Jrs탗}_JM?^Q3o,ZvH<76 <6~vʔwn+SQҲ_(x|o=aEJ)ИX;k+Q<`~R fJ\e>0\e^AOLoj!S4[qf٨7zD&Ѣ:c~< Z[-୤]z]6oVZ&\eЬ5k;fE[HZP%CY4tY<ݶHjdm7޿|Pޏ]k֞^f~oZܬ=*?Ɣz:coA-߰ XU{ ‡t?ޣ:&4 -c-j8e_ew-6mj;9 ˆiu]2Q'vٲa5gTk8,.1s.]קE`$)(8*l,'|zղB7PJ-7 jAX,lZYQ ˑm +XQ,XhzmO-։a6F~B6@wLkջa?`t6XB?@|׷|l2r<0) L`,/ rȇ@=6ʌ +%PbO%B, @nj 6Ξٔe]=k\PT@3 ++ +dsMוym! ^ǰ\qƂ`m?[>l +k' V6 4Ӗ%Fn."@+I ρfXqM:\̶ OZLl>^p. k%F0.땢,;Tq|J5.4 @iO=6lù>`$_۶BHu<[wf5BeڇiclR +ShyKeqyr(($< .l lR?I|`DU@ms8_A0ad@!0lH.'xU8 b- & |!qF5hؒmы`zsmWES;h˗k.X(d10sVC⤩ErǷ}_\;>6"Z×rŸhv`]LBAtxePv plU*X4^"(1b@0L1*UF2j#+qDss#0L[8Kb*,{q,{IUY*۫HmUlsɶW*^۫NUXW2U#^ {ձt{ZeBW {,{Ձa϶W*~ +؆ +:^˰W"^uPk۫g٫Hm2t{ՕnbUɰW=* V^EȰWaJe٫({n:hdګHa:`dثHm"U$*+^E {arګ {1^El{2U$ɰWY]Y*eث {IU*aG +e⒗aFϿ^*NګUxګBu**T{+FJKcS~{F8خ:e|ţ|t (, 0&=0+lXr@ r}_:8Q8{! ,=A~`mkBpC["X]85T ~޸ c_g% v!8CL(0`} 7!,}x =v^iv)s$=oj0K#:K`=Ӑ!FTLKxt%Q@y F{)A{#A8=,?DB1e! D1pr!'DTxq!Ax(n* Ã!K <t8놠@pxdtQU(7- E ͏E|$7E-\gM >\ĔR hxETg~p$H"hxE:4<#E $F5:H@ 0Q`J:U`t +DLI>S~s6XmU6ϦJ ,.[M!&ʎ4bk*b UĎ8| +1eG 1 du\KVh씀O ,?&LL!} }ܸ]UoJ`xvWoA}{5XZ^׷f=O|? +0>stream +HW͎$5 Sʓ؎\AHH Źhޕ9|vjj4i;?)ӻ.iy-%_X ͕F暬?4F2SIB%׍6LVL]8M "#)醮5N+p~8(:8U]Β>,)[!GĤSxb !gs +$Mj !-=Ay!D ,R.a!N&5KܩL#ăz T$SS8$8A,39!njI.iaPt<@M ͞l7@M' `d'C9c%s\m&:?c+ fܢN:ͲaӲWEVb4!YŽVǟ{ Ȍ$ .Ӊ^Gq:!KCD אWvSb޲`gTK1%ĩuAV\h[OLiN]66 k)*Mxn0wЕz := +iBf;ejܷ?K6o6> endobj xref +0 26 +0000000000 65535 f +0000000016 00000 n +0000000144 00000 n +0000039926 00000 n +0000000000 00000 f +0000039983 00000 n +0000041637 00000 n +0000361273 00000 n +0000040348 00000 n +0000360283 00000 n +0000044620 00000 n +0000041936 00000 n +0000041823 00000 n +0000040721 00000 n +0000041707 00000 n +0000041738 00000 n +0000041971 00000 n +0000044694 00000 n +0000044956 00000 n +0000046119 00000 n +0000051049 00000 n +0000116638 00000 n +0000182227 00000 n +0000247816 00000 n +0000313405 00000 n +0000361296 00000 n +trailer +<]>> +startxref +361488 +%%EOF diff --git a/Assets/Jammo-Character/Files/eyes_vector.ai.meta b/Assets/Jammo-Character/Files/eyes_vector.ai.meta new file mode 100644 index 0000000..d0e0233 --- /dev/null +++ b/Assets/Jammo-Character/Files/eyes_vector.ai.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 8e178b41568776745973f0c261131ca5 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Jammo-Character/Materials.meta b/Assets/Jammo-Character/Materials.meta new file mode 100644 index 0000000..6ea957e --- /dev/null +++ b/Assets/Jammo-Character/Materials.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: bed38063483647a43b9793440e0e391d +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Jammo-Character/Materials/Skybox.mat b/Assets/Jammo-Character/Materials/Skybox.mat new file mode 100644 index 0000000..e512c6e --- /dev/null +++ b/Assets/Jammo-Character/Materials/Skybox.mat @@ -0,0 +1,84 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 6 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Skybox + m_Shader: {fileID: 103, guid: 0000000000000000f000000000000000, type: 0} + m_ShaderKeywords: + 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} + - _Tex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Floats: + - _BumpScale: 1 + - _Cutoff: 0.5 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _Exposure: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _Rotation: 0 + - _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} + - _Tint: {r: 0.6084906, g: 0.7715444, b: 1, a: 0.5} diff --git a/Assets/Jammo-Character/Materials/Skybox.mat.meta b/Assets/Jammo-Character/Materials/Skybox.mat.meta new file mode 100644 index 0000000..37cc901 --- /dev/null +++ b/Assets/Jammo-Character/Materials/Skybox.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d69071256986a1c4bb4872d222c6ae6e +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Jammo-Character/Materials/m_ground.mat b/Assets/Jammo-Character/Materials/m_ground.mat new file mode 100644 index 0000000..e51fa69 --- /dev/null +++ b/Assets/Jammo-Character/Materials/m_ground.mat @@ -0,0 +1,126 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 6 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: m_ground + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_ShaderKeywords: + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: 2000 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 10305, guid: 0000000000000000f000000000000000, type: 0} + m_Scale: {x: 90, y: 90} + 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: 90, y: 90} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 10305, guid: 0000000000000000f000000000000000, type: 0} + m_Scale: {x: 90, y: 90} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Floats: + - _AlphaClip: 0 + - _Blend: 0 + - _BumpScale: 1 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 2 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.08 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 0.6509434, g: 0.63765234, b: 0.62944996, a: 1} + - _Color: {r: 0.6509434, g: 0.63765234, b: 0.62944996, a: 1} + - _EmissionColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] +--- !u!114 &6087525119613481312 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 4 diff --git a/Assets/Jammo-Character/Materials/m_ground.mat.meta b/Assets/Jammo-Character/Materials/m_ground.mat.meta new file mode 100644 index 0000000..b1ecbc4 --- /dev/null +++ b/Assets/Jammo-Character/Materials/m_ground.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ac02e0546055b854f8600e1708139ff8 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Jammo-Character/Materials/m_jammo_eyes.mat b/Assets/Jammo-Character/Materials/m_jammo_eyes.mat new file mode 100644 index 0000000..ecc7e6f --- /dev/null +++ b/Assets/Jammo-Character/Materials/m_jammo_eyes.mat @@ -0,0 +1,127 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 6 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: m_jammo_eyes + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_ShaderKeywords: _EMISSION + m_LightmapFlags: 2 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: 3000 + stringTagMap: + RenderType: Transparent + disabledShaderPasses: + - SHADOWCASTER + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 09beef63c41c25b458d2f95fdfd9e0e5, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailAlbedoMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailMask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailNormalMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 09beef63c41c25b458d2f95fdfd9e0e5, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Floats: + - _AlphaClip: 0 + - _Blend: 0 + - _BumpScale: 1 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 2 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 10 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 2 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 5 + - _Surface: 1 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 0 + m_Colors: + - _BaseColor: {r: 0.9339623, g: 0.9339623, b: 0.9339623, a: 1} + - _Color: {r: 0.9339623, g: 0.9339623, b: 0.9339623, a: 1} + - _EmissionColor: {r: 0, g: 4.317409, b: 5.9190283, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] +--- !u!114 &8885697949594529575 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 4 diff --git a/Assets/Jammo-Character/Materials/m_jammo_eyes.mat.meta b/Assets/Jammo-Character/Materials/m_jammo_eyes.mat.meta new file mode 100644 index 0000000..eb8022b --- /dev/null +++ b/Assets/Jammo-Character/Materials/m_jammo_eyes.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d5c0dc78f40c06c4e9356a3218da955b +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Jammo-Character/Materials/m_jammo_metal.mat b/Assets/Jammo-Character/Materials/m_jammo_metal.mat new file mode 100644 index 0000000..36e5c95 --- /dev/null +++ b/Assets/Jammo-Character/Materials/m_jammo_metal.mat @@ -0,0 +1,126 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 6 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: m_jammo_metal + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_ShaderKeywords: _METALLICSPECGLOSSMAP _NORMALMAP _OCCLUSIONMAP + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: 2000 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: fb6e06c953f0d8045bc58e0f5a640f07, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 2800000, guid: f6c18262b3c0eba4bb830f3d91682a4f, type: 3} + 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: fb6e06c953f0d8045bc58e0f5a640f07, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 2800000, guid: 3a5a871d579c2da4094f823d674595eb, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 2800000, guid: 6a0fb4aa4de843c45a776e5a4ac9dd69, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Floats: + - _AlphaClip: 0 + - _Blend: 0 + - _BumpScale: 1 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 2 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.005 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 1 + - _SmoothnessTextureChannel: 0 + - _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} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] +--- !u!114 &7151502003317804671 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 4 diff --git a/Assets/Jammo-Character/Materials/m_jammo_metal.mat.meta b/Assets/Jammo-Character/Materials/m_jammo_metal.mat.meta new file mode 100644 index 0000000..de5756e --- /dev/null +++ b/Assets/Jammo-Character/Materials/m_jammo_metal.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 60c2f0e0aaa8f8d4e9d23d7e3768653b +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Jammo-Character/Models.meta b/Assets/Jammo-Character/Models.meta new file mode 100644 index 0000000..f584480 --- /dev/null +++ b/Assets/Jammo-Character/Models.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 9a9668dd0126a234db37aeb2e80695fa +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Jammo-Character/Models/Jammo_LowPoly.fbx b/Assets/Jammo-Character/Models/Jammo_LowPoly.fbx new file mode 100644 index 0000000..1636bab Binary files /dev/null and b/Assets/Jammo-Character/Models/Jammo_LowPoly.fbx differ diff --git a/Assets/Jammo-Character/Models/Jammo_LowPoly.fbx.meta b/Assets/Jammo-Character/Models/Jammo_LowPoly.fbx.meta new file mode 100644 index 0000000..616b5dd --- /dev/null +++ b/Assets/Jammo-Character/Models/Jammo_LowPoly.fbx.meta @@ -0,0 +1,115 @@ +fileFormatVersion: 2 +guid: 82a2914d8f86c62488456950c8330e38 +ModelImporter: + serializedVersion: 20200 + internalIDToNameTable: + - first: + 74: 6710270410737119176 + second: jammo_mixamo_rig|PoseLib + externalObjects: + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: eyes.001 + second: {fileID: 2100000, guid: d5c0dc78f40c06c4e9356a3218da955b, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: mixbox_mat.002 + second: {fileID: 2100000, guid: 60c2f0e0aaa8f8d4e9d23d7e3768653b, type: 2} + materials: + materialImportMode: 1 + materialName: 0 + materialSearch: 1 + materialLocation: 1 + animations: + legacyGenerateAnimations: 4 + bakeSimulation: 0 + resampleCurves: 1 + optimizeGameObjects: 0 + 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 + fileIdsGeneration: 1 + swapUVChannels: 0 + generateSecondaryUV: 0 + useFileUnits: 1 + keepQuads: 0 + weldVertices: 1 + bakeAxisConversion: 0 + preserveHierarchy: 0 + skinWeightsMode: 0 + maxBonesPerVertex: 4 + minBoneWeight: 0.001 + meshOptimizationFlags: -1 + indexFormat: 0 + secondaryUVAngleDistortion: 8 + secondaryUVAreaDistortion: 15.000001 + secondaryUVHardAngle: 88 + secondaryUVMarginMethod: 0 + 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: 1 + addHumanoidExtraRootOnlyWhenUsingAvatar: 0 + additionalBone: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Jammo-Character/Prefabs.meta b/Assets/Jammo-Character/Prefabs.meta new file mode 100644 index 0000000..2b9868d --- /dev/null +++ b/Assets/Jammo-Character/Prefabs.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c1aa448c4c958d843a191bcf0890103e +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Jammo-Character/Prefabs/Jammo_Player.prefab b/Assets/Jammo-Character/Prefabs/Jammo_Player.prefab new file mode 100644 index 0000000..a3599fa --- /dev/null +++ b/Assets/Jammo-Character/Prefabs/Jammo_Player.prefab @@ -0,0 +1,5536 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &146668805359009731 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2004308958455250584} + m_Layer: 0 + m_Name: mixamorig:Spine2 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2004308958455250584 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 146668805359009731} + m_LocalRotation: {x: -0.012545594, y: 3.912023e-27, z: 4.4453675e-18, w: 0.9999213} + m_LocalPosition: {x: -0, y: 0.001946106, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 5869159519003263498} + - {fileID: 1589130315247471224} + - {fileID: 6713046130348130031} + m_Father: {fileID: 3786663924609172669} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &170941460384347779 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4444495002077728426} + - component: {fileID: 2434832479923816812} + m_Layer: 0 + m_Name: ears_low + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4444495002077728426 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 170941460384347779} + m_LocalRotation: {x: -0.7071068, y: 0, z: -0, w: 0.7071067} + m_LocalPosition: {x: -0, y: 2.6335877e-24, z: -1.6164846e-17} + m_LocalScale: {x: 28.000004, y: 28, z: 28} + m_Children: [] + m_Father: {fileID: 539745478100655087} + m_RootOrder: 4 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!137 &2434832479923816812 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 170941460384347779} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 60c2f0e0aaa8f8d4e9d23d7e3768653b, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: -3749580715262166950, guid: 82a2914d8f86c62488456950c8330e38, type: 3} + m_Bones: + - {fileID: 38101694036556137} + - {fileID: 49447877029854415} + - {fileID: 3786663924609172669} + - {fileID: 2004308958455250584} + - {fileID: 1589130315247471224} + - {fileID: 7744703493559565592} + - {fileID: 668006632354280349} + - {fileID: 2561657633892041312} + - {fileID: 8465185068562539662} + - {fileID: 5869159519003263498} + - {fileID: 3772228501605983572} + - {fileID: 3234227603562185871} + - {fileID: 8561193508396601175} + - {fileID: 5936567709104571176} + - {fileID: 7211998777527855084} + - {fileID: 2892780539611831731} + - {fileID: 404684814211080889} + - {fileID: 1449764107670396836} + - {fileID: 6381046285418556939} + - {fileID: 1821246364037612516} + - {fileID: 8568605348027153028} + - {fileID: 5793013739203264410} + - {fileID: 3963437824237824200} + - {fileID: 8283759473277797880} + - {fileID: 6376361113228782779} + - {fileID: 2289493133889538587} + - {fileID: 789201070685644870} + - {fileID: 632919408841136468} + - {fileID: 8362226126786775428} + - {fileID: 6713046130348130031} + - {fileID: 1736390052843337352} + - {fileID: 2647666789720681232} + - {fileID: 1245275053966154892} + - {fileID: 7842801111801954127} + - {fileID: 5518930826735713987} + - {fileID: 650412000016856578} + - {fileID: 2827324758261372908} + - {fileID: 4625820438281264176} + - {fileID: 4935914161864750418} + - {fileID: 3097883888345784054} + - {fileID: 2557290871786022883} + - {fileID: 5130141285697591134} + - {fileID: 1029178351064756532} + - {fileID: 4830960991343532976} + - {fileID: 3609869344792266581} + - {fileID: 7702342598273183683} + - {fileID: 8263932002211726789} + - {fileID: 46986526155918958} + - {fileID: 4038941365592156516} + - {fileID: 9027401759494858112} + - {fileID: 2006971926853278976} + - {fileID: 6099821193434505623} + - {fileID: 6095549730846027436} + - {fileID: 4281225624292822488} + - {fileID: 3347735418540642312} + - {fileID: 5460221536256242760} + - {fileID: 7720914278555990249} + - {fileID: 4523608188334145856} + - {fileID: 3119608742464780565} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 38101694036556137} + m_AABB: + m_Center: {x: 4.656613e-10, y: 0.029559832, z: -0.0013150079} + m_Extent: {x: 0.01487066, y: 0.0059262114, z: 0.003893904} + m_DirtyAABB: 0 +--- !u!1 &191948013721858954 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7842801111801954127} + m_Layer: 0 + m_Name: mixamorig:RightHandThumb1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7842801111801954127 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 191948013721858954} + m_LocalRotation: {x: -0.025027193, y: 0.03098387, z: 0.56412834, w: 0.8247259} + m_LocalPosition: {x: -0.0019131002, y: 0.0013891871, z: 0.00032658404} + m_LocalScale: {x: 0.9999999, y: 0.9999999, z: 1} + m_Children: + - {fileID: 5518930826735713987} + m_Father: {fileID: 1245275053966154892} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &255314166497654862 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2892780539611831731} + m_Layer: 0 + m_Name: mixamorig:LeftHandThumb3 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2892780539611831731 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 255314166497654862} + m_LocalRotation: {x: 0.0066927033, y: -0.0435071, z: -0.034402333, w: 0.99843824} + m_LocalPosition: {x: 4.4703483e-10, y: 0.0026198607, z: 0.0000000010430813} + m_LocalScale: {x: 1, y: 0.99999994, z: 1} + m_Children: + - {fileID: 404684814211080889} + m_Father: {fileID: 7211998777527855084} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &342978044838226818 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 348501149909691023} + - component: {fileID: 7532609881684433790} + m_Layer: 0 + m_Name: palm_low + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &348501149909691023 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 342978044838226818} + m_LocalRotation: {x: -0.7071068, y: -7.375698e-10, z: -0.0000000028449127, w: 0.7071067} + m_LocalPosition: {x: 0.000000029373172, y: 0.0000000547409, z: 8.918425e-15} + m_LocalScale: {x: 28.000004, y: 28, z: 28} + m_Children: [] + m_Father: {fileID: 539745478100655087} + m_RootOrder: 16 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!137 &7532609881684433790 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 342978044838226818} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 60c2f0e0aaa8f8d4e9d23d7e3768653b, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: 4841496781150244552, guid: 82a2914d8f86c62488456950c8330e38, type: 3} + m_Bones: + - {fileID: 38101694036556137} + - {fileID: 49447877029854415} + - {fileID: 3786663924609172669} + - {fileID: 2004308958455250584} + - {fileID: 1589130315247471224} + - {fileID: 7744703493559565592} + - {fileID: 668006632354280349} + - {fileID: 2561657633892041312} + - {fileID: 8465185068562539662} + - {fileID: 5869159519003263498} + - {fileID: 3772228501605983572} + - {fileID: 3234227603562185871} + - {fileID: 8561193508396601175} + - {fileID: 5936567709104571176} + - {fileID: 7211998777527855084} + - {fileID: 2892780539611831731} + - {fileID: 404684814211080889} + - {fileID: 1449764107670396836} + - {fileID: 6381046285418556939} + - {fileID: 1821246364037612516} + - {fileID: 8568605348027153028} + - {fileID: 5793013739203264410} + - {fileID: 3963437824237824200} + - {fileID: 8283759473277797880} + - {fileID: 6376361113228782779} + - {fileID: 2289493133889538587} + - {fileID: 789201070685644870} + - {fileID: 632919408841136468} + - {fileID: 8362226126786775428} + - {fileID: 6713046130348130031} + - {fileID: 1736390052843337352} + - {fileID: 2647666789720681232} + - {fileID: 1245275053966154892} + - {fileID: 7842801111801954127} + - {fileID: 5518930826735713987} + - {fileID: 650412000016856578} + - {fileID: 2827324758261372908} + - {fileID: 4625820438281264176} + - {fileID: 4935914161864750418} + - {fileID: 3097883888345784054} + - {fileID: 2557290871786022883} + - {fileID: 5130141285697591134} + - {fileID: 1029178351064756532} + - {fileID: 4830960991343532976} + - {fileID: 3609869344792266581} + - {fileID: 7702342598273183683} + - {fileID: 8263932002211726789} + - {fileID: 46986526155918958} + - {fileID: 4038941365592156516} + - {fileID: 9027401759494858112} + - {fileID: 2006971926853278976} + - {fileID: 6099821193434505623} + - {fileID: 6095549730846027436} + - {fileID: 4281225624292822488} + - {fileID: 3347735418540642312} + - {fileID: 5460221536256242760} + - {fileID: 7720914278555990249} + - {fileID: 4523608188334145856} + - {fileID: 3119608742464780565} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 38101694036556137} + m_AABB: + m_Center: {x: 0, y: 0.0138211055, z: -0.0015498907} + m_Extent: {x: 0.026481798, y: 0.0027623707, z: 0.004100331} + m_DirtyAABB: 0 +--- !u!1 &637568496683789415 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2557290871786022883} + m_Layer: 0 + m_Name: mixamorig:RightHandIndex4 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2557290871786022883 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 637568496683789415} + m_LocalRotation: {x: 0.04448823, y: -0.0000003572738, z: 0.000000017854878, w: 0.9990099} + m_LocalPosition: {x: -1.4183114e-10, y: 0.0008978241, z: 0.0000000035508958} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 3097883888345784054} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &837269256535642063 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5936567709104571176} + m_Layer: 0 + m_Name: mixamorig:LeftHandThumb1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5936567709104571176 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 837269256535642063} + m_LocalRotation: {x: -0.025027193, y: -0.03098387, z: -0.56412834, w: 0.8247259} + m_LocalPosition: {x: 0.0019131002, y: 0.0013891871, z: 0.00032658404} + m_LocalScale: {x: 0.9999999, y: 0.9999999, z: 1} + m_Children: + - {fileID: 7211998777527855084} + m_Father: {fileID: 8561193508396601175} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &923704447070322663 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 413325651040090714} + - component: {fileID: 1658602278726242423} + m_Layer: 0 + m_Name: finger_middle_low + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &413325651040090714 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 923704447070322663} + m_LocalRotation: {x: -0.7071068, y: -7.375698e-10, z: -0.0000000028449127, w: 0.7071067} + m_LocalPosition: {x: -0.0000000013268904, y: -5.846345e-10, z: -0.0000000020167568} + m_LocalScale: {x: 28.000004, y: 28, z: 28} + m_Children: [] + m_Father: {fileID: 539745478100655087} + m_RootOrder: 7 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!137 &1658602278726242423 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 923704447070322663} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 60c2f0e0aaa8f8d4e9d23d7e3768653b, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: -5145736250498181034, guid: 82a2914d8f86c62488456950c8330e38, type: 3} + m_Bones: + - {fileID: 38101694036556137} + - {fileID: 49447877029854415} + - {fileID: 3786663924609172669} + - {fileID: 2004308958455250584} + - {fileID: 1589130315247471224} + - {fileID: 7744703493559565592} + - {fileID: 668006632354280349} + - {fileID: 2561657633892041312} + - {fileID: 8465185068562539662} + - {fileID: 5869159519003263498} + - {fileID: 3772228501605983572} + - {fileID: 3234227603562185871} + - {fileID: 8561193508396601175} + - {fileID: 5936567709104571176} + - {fileID: 7211998777527855084} + - {fileID: 2892780539611831731} + - {fileID: 404684814211080889} + - {fileID: 1449764107670396836} + - {fileID: 6381046285418556939} + - {fileID: 1821246364037612516} + - {fileID: 8568605348027153028} + - {fileID: 5793013739203264410} + - {fileID: 3963437824237824200} + - {fileID: 8283759473277797880} + - {fileID: 6376361113228782779} + - {fileID: 2289493133889538587} + - {fileID: 789201070685644870} + - {fileID: 632919408841136468} + - {fileID: 8362226126786775428} + - {fileID: 6713046130348130031} + - {fileID: 1736390052843337352} + - {fileID: 2647666789720681232} + - {fileID: 1245275053966154892} + - {fileID: 7842801111801954127} + - {fileID: 5518930826735713987} + - {fileID: 650412000016856578} + - {fileID: 2827324758261372908} + - {fileID: 4625820438281264176} + - {fileID: 4935914161864750418} + - {fileID: 3097883888345784054} + - {fileID: 2557290871786022883} + - {fileID: 5130141285697591134} + - {fileID: 1029178351064756532} + - {fileID: 4830960991343532976} + - {fileID: 3609869344792266581} + - {fileID: 7702342598273183683} + - {fileID: 8263932002211726789} + - {fileID: 46986526155918958} + - {fileID: 4038941365592156516} + - {fileID: 9027401759494858112} + - {fileID: 2006971926853278976} + - {fileID: 6099821193434505623} + - {fileID: 6095549730846027436} + - {fileID: 4281225624292822488} + - {fileID: 3347735418540642312} + - {fileID: 5460221536256242760} + - {fileID: 7720914278555990249} + - {fileID: 4523608188334145856} + - {fileID: 3119608742464780565} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 38101694036556137} + m_AABB: + m_Center: {x: 9.313226e-10, y: 0.014263178, z: -0.0015374265} + m_Extent: {x: 0.030787863, y: 0.0014776355, z: 0.0014066858} + m_DirtyAABB: 0 +--- !u!1 &969289617678687263 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 46986526155918958} + m_Layer: 0 + m_Name: mixamorig:RightHandPinky3 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &46986526155918958 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 969289617678687263} + m_LocalRotation: {x: -5.695085e-17, y: -0.00000023841983, z: 2.2725062e-12, w: 1} + m_LocalPosition: {x: 3.8882017e-10, y: 0.0022338866, z: 8.2124e-10} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 4038941365592156516} + m_Father: {fileID: 8263932002211726789} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1369469842034177798 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3107201403744340549} + - component: {fileID: 7312073801473320617} + m_Layer: 0 + m_Name: wrist_low + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3107201403744340549 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1369469842034177798} + m_LocalRotation: {x: -0.7071068, y: -0.0000000050312807, z: -0.0000000020810018, w: 0.7071067} + m_LocalPosition: {x: 0.000000072097784, y: 0.000000017356871, z: 0.000000005340579} + m_LocalScale: {x: 28.000004, y: 28, z: 28} + m_Children: [] + m_Father: {fileID: 539745478100655087} + m_RootOrder: 25 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!137 &7312073801473320617 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1369469842034177798} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 60c2f0e0aaa8f8d4e9d23d7e3768653b, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: 761989354644570109, guid: 82a2914d8f86c62488456950c8330e38, type: 3} + m_Bones: + - {fileID: 38101694036556137} + - {fileID: 49447877029854415} + - {fileID: 3786663924609172669} + - {fileID: 2004308958455250584} + - {fileID: 1589130315247471224} + - {fileID: 7744703493559565592} + - {fileID: 668006632354280349} + - {fileID: 2561657633892041312} + - {fileID: 8465185068562539662} + - {fileID: 5869159519003263498} + - {fileID: 3772228501605983572} + - {fileID: 3234227603562185871} + - {fileID: 8561193508396601175} + - {fileID: 5936567709104571176} + - {fileID: 7211998777527855084} + - {fileID: 2892780539611831731} + - {fileID: 404684814211080889} + - {fileID: 1449764107670396836} + - {fileID: 6381046285418556939} + - {fileID: 1821246364037612516} + - {fileID: 8568605348027153028} + - {fileID: 5793013739203264410} + - {fileID: 3963437824237824200} + - {fileID: 8283759473277797880} + - {fileID: 6376361113228782779} + - {fileID: 2289493133889538587} + - {fileID: 789201070685644870} + - {fileID: 632919408841136468} + - {fileID: 8362226126786775428} + - {fileID: 6713046130348130031} + - {fileID: 1736390052843337352} + - {fileID: 2647666789720681232} + - {fileID: 1245275053966154892} + - {fileID: 7842801111801954127} + - {fileID: 5518930826735713987} + - {fileID: 650412000016856578} + - {fileID: 2827324758261372908} + - {fileID: 4625820438281264176} + - {fileID: 4935914161864750418} + - {fileID: 3097883888345784054} + - {fileID: 2557290871786022883} + - {fileID: 5130141285697591134} + - {fileID: 1029178351064756532} + - {fileID: 4830960991343532976} + - {fileID: 3609869344792266581} + - {fileID: 7702342598273183683} + - {fileID: 8263932002211726789} + - {fileID: 46986526155918958} + - {fileID: 4038941365592156516} + - {fileID: 9027401759494858112} + - {fileID: 2006971926853278976} + - {fileID: 6099821193434505623} + - {fileID: 6095549730846027436} + - {fileID: 4281225624292822488} + - {fileID: 3347735418540642312} + - {fileID: 5460221536256242760} + - {fileID: 7720914278555990249} + - {fileID: 4523608188334145856} + - {fileID: 3119608742464780565} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 38101694036556137} + m_AABB: + m_Center: {x: 0.0000000018626451, y: 0.013736978, z: -0.0015361826} + m_Extent: {x: 0.021342257, y: 0.002496135, z: 0.0025212718} + m_DirtyAABB: 0 +--- !u!1 &1426603960785578618 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8568605348027153028} + m_Layer: 0 + m_Name: mixamorig:LeftHandIndex4 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8568605348027153028 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1426603960785578618} + m_LocalRotation: {x: 0.04448823, y: 0.0000003572738, z: -0.000000017854878, w: 0.9990099} + m_LocalPosition: {x: 1.4183114e-10, y: 0.0008978241, z: 0.0000000035508958} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1821246364037612516} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1427359144287903431 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3481275315686167889} + - component: {fileID: 2051882660065351641} + m_Layer: 0 + m_Name: pelvis_low + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3481275315686167889 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1427359144287903431} + m_LocalRotation: {x: -0.7071068, y: 8.4295027e-10, z: -8.429241e-10, w: 0.7071067} + m_LocalPosition: {x: -0.0000000026702895, y: 0.00000001758472, z: -0.0000000013059471} + m_LocalScale: {x: 28.000004, y: 28, z: 28} + m_Children: [] + m_Father: {fileID: 539745478100655087} + m_RootOrder: 17 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!137 &2051882660065351641 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1427359144287903431} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 60c2f0e0aaa8f8d4e9d23d7e3768653b, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: -6474352736570428186, guid: 82a2914d8f86c62488456950c8330e38, type: 3} + m_Bones: + - {fileID: 38101694036556137} + - {fileID: 49447877029854415} + - {fileID: 3786663924609172669} + - {fileID: 2004308958455250584} + - {fileID: 1589130315247471224} + - {fileID: 7744703493559565592} + - {fileID: 668006632354280349} + - {fileID: 2561657633892041312} + - {fileID: 8465185068562539662} + - {fileID: 5869159519003263498} + - {fileID: 3772228501605983572} + - {fileID: 3234227603562185871} + - {fileID: 8561193508396601175} + - {fileID: 5936567709104571176} + - {fileID: 7211998777527855084} + - {fileID: 2892780539611831731} + - {fileID: 404684814211080889} + - {fileID: 1449764107670396836} + - {fileID: 6381046285418556939} + - {fileID: 1821246364037612516} + - {fileID: 8568605348027153028} + - {fileID: 5793013739203264410} + - {fileID: 3963437824237824200} + - {fileID: 8283759473277797880} + - {fileID: 6376361113228782779} + - {fileID: 2289493133889538587} + - {fileID: 789201070685644870} + - {fileID: 632919408841136468} + - {fileID: 8362226126786775428} + - {fileID: 6713046130348130031} + - {fileID: 1736390052843337352} + - {fileID: 2647666789720681232} + - {fileID: 1245275053966154892} + - {fileID: 7842801111801954127} + - {fileID: 5518930826735713987} + - {fileID: 650412000016856578} + - {fileID: 2827324758261372908} + - {fileID: 4625820438281264176} + - {fileID: 4935914161864750418} + - {fileID: 3097883888345784054} + - {fileID: 2557290871786022883} + - {fileID: 5130141285697591134} + - {fileID: 1029178351064756532} + - {fileID: 4830960991343532976} + - {fileID: 3609869344792266581} + - {fileID: 7702342598273183683} + - {fileID: 8263932002211726789} + - {fileID: 46986526155918958} + - {fileID: 4038941365592156516} + - {fileID: 9027401759494858112} + - {fileID: 2006971926853278976} + - {fileID: 6099821193434505623} + - {fileID: 6095549730846027436} + - {fileID: 4281225624292822488} + - {fileID: 3347735418540642312} + - {fileID: 5460221536256242760} + - {fileID: 7720914278555990249} + - {fileID: 4523608188334145856} + - {fileID: 3119608742464780565} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 38101694036556137} + m_AABB: + m_Center: {x: 0, y: 0.0024858133, z: -0.00003194576} + m_Extent: {x: 0.006243073, y: 0.0030128376, z: 0.004455878} + m_DirtyAABB: 0 +--- !u!1 &1702350966220492310 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 49447877029854415} + m_Layer: 0 + m_Name: mixamorig:Spine + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &49447877029854415 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1702350966220492310} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0, y: 0.0042980956, z: -0.00016456126} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 3786663924609172669} + m_Father: {fileID: 38101694036556137} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1861397999469429692 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4494418218088283728} + - component: {fileID: 1944954648850831051} + m_Layer: 0 + m_Name: torso_mid_low + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4494418218088283728 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1861397999469429692} + m_LocalRotation: {x: -0.7071068, y: 8.4295027e-10, z: -8.429241e-10, w: 0.7071067} + m_LocalPosition: {x: -0.0000000026702895, y: 0.00000001758472, z: -0.0000000013059471} + m_LocalScale: {x: 28.000004, y: 28, z: 28} + m_Children: [] + m_Father: {fileID: 539745478100655087} + m_RootOrder: 23 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!137 &1944954648850831051 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1861397999469429692} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 60c2f0e0aaa8f8d4e9d23d7e3768653b, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: 2235691913216133658, guid: 82a2914d8f86c62488456950c8330e38, type: 3} + m_Bones: + - {fileID: 38101694036556137} + - {fileID: 49447877029854415} + - {fileID: 3786663924609172669} + - {fileID: 2004308958455250584} + - {fileID: 1589130315247471224} + - {fileID: 7744703493559565592} + - {fileID: 668006632354280349} + - {fileID: 2561657633892041312} + - {fileID: 8465185068562539662} + - {fileID: 5869159519003263498} + - {fileID: 3772228501605983572} + - {fileID: 3234227603562185871} + - {fileID: 8561193508396601175} + - {fileID: 5936567709104571176} + - {fileID: 7211998777527855084} + - {fileID: 2892780539611831731} + - {fileID: 404684814211080889} + - {fileID: 1449764107670396836} + - {fileID: 6381046285418556939} + - {fileID: 1821246364037612516} + - {fileID: 8568605348027153028} + - {fileID: 5793013739203264410} + - {fileID: 3963437824237824200} + - {fileID: 8283759473277797880} + - {fileID: 6376361113228782779} + - {fileID: 2289493133889538587} + - {fileID: 789201070685644870} + - {fileID: 632919408841136468} + - {fileID: 8362226126786775428} + - {fileID: 6713046130348130031} + - {fileID: 1736390052843337352} + - {fileID: 2647666789720681232} + - {fileID: 1245275053966154892} + - {fileID: 7842801111801954127} + - {fileID: 5518930826735713987} + - {fileID: 650412000016856578} + - {fileID: 2827324758261372908} + - {fileID: 4625820438281264176} + - {fileID: 4935914161864750418} + - {fileID: 3097883888345784054} + - {fileID: 2557290871786022883} + - {fileID: 5130141285697591134} + - {fileID: 1029178351064756532} + - {fileID: 4830960991343532976} + - {fileID: 3609869344792266581} + - {fileID: 7702342598273183683} + - {fileID: 8263932002211726789} + - {fileID: 46986526155918958} + - {fileID: 4038941365592156516} + - {fileID: 9027401759494858112} + - {fileID: 2006971926853278976} + - {fileID: 6099821193434505623} + - {fileID: 6095549730846027436} + - {fileID: 4281225624292822488} + - {fileID: 3347735418540642312} + - {fileID: 5460221536256242760} + - {fileID: 7720914278555990249} + - {fileID: 4523608188334145856} + - {fileID: 3119608742464780565} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 38101694036556137} + m_AABB: + m_Center: {x: 0.00000028312206, y: 0.0067705484, z: 0.00010433188} + m_Extent: {x: 0.0053279833, y: 0.00273103, z: 0.003697755} + m_DirtyAABB: 0 +--- !u!1 &2021755809352559955 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1821246364037612516} + m_Layer: 0 + m_Name: mixamorig:LeftHandIndex3 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1821246364037612516 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2021755809352559955} + m_LocalRotation: {x: -1.1641565e-10, y: -0.00000035806318, z: -8.458274e-10, w: 1} + m_LocalPosition: {x: 1.6977413e-10, y: 0.0021414177, z: 0.000000002316954} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 8568605348027153028} + m_Father: {fileID: 6381046285418556939} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &2024321854428560636 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 9027401759494858112} + m_Layer: 0 + m_Name: mixamorig:LeftUpLeg + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &9027401759494858112 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2024321854428560636} + m_LocalRotation: {x: 0.00023406364, y: -0.008087971, z: 0.99964195, w: -0.025505608} + m_LocalPosition: {x: -0.0046964264, y: -0.000097808836, z: 0.00006266594} + m_LocalScale: {x: 1.0000329, y: 1, z: 1.0000032} + m_Children: + - {fileID: 2006971926853278976} + m_Father: {fileID: 38101694036556137} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &2127583716681005915 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1589130315247471224} + m_Layer: 0 + m_Name: mixamorig:Neck + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1589130315247471224 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2127583716681005915} + m_LocalRotation: {x: 0.025515562, y: 9.017148e-20, z: -1.6228038e-17, w: 0.99967444} + m_LocalPosition: {x: -2.4632455e-21, y: 0.007856388, z: 0.000015783942} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 7744703493559565592} + m_Father: {fileID: 2004308958455250584} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &2229421804083901650 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1236401970054650298} + - component: {fileID: 3490471807778207017} + m_Layer: 0 + m_Name: ear_joint_low + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1236401970054650298 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2229421804083901650} + m_LocalRotation: {x: -0.7071068, y: 0, z: -0, w: 0.7071067} + m_LocalPosition: {x: -0, y: 2.6335877e-24, z: -1.6164846e-17} + m_LocalScale: {x: 28.000004, y: 28, z: 28} + m_Children: [] + m_Father: {fileID: 539745478100655087} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!137 &3490471807778207017 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2229421804083901650} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 60c2f0e0aaa8f8d4e9d23d7e3768653b, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: -1984047856435682999, guid: 82a2914d8f86c62488456950c8330e38, type: 3} + m_Bones: + - {fileID: 38101694036556137} + - {fileID: 49447877029854415} + - {fileID: 3786663924609172669} + - {fileID: 2004308958455250584} + - {fileID: 1589130315247471224} + - {fileID: 7744703493559565592} + - {fileID: 668006632354280349} + - {fileID: 2561657633892041312} + - {fileID: 8465185068562539662} + - {fileID: 5869159519003263498} + - {fileID: 3772228501605983572} + - {fileID: 3234227603562185871} + - {fileID: 8561193508396601175} + - {fileID: 5936567709104571176} + - {fileID: 7211998777527855084} + - {fileID: 2892780539611831731} + - {fileID: 404684814211080889} + - {fileID: 1449764107670396836} + - {fileID: 6381046285418556939} + - {fileID: 1821246364037612516} + - {fileID: 8568605348027153028} + - {fileID: 5793013739203264410} + - {fileID: 3963437824237824200} + - {fileID: 8283759473277797880} + - {fileID: 6376361113228782779} + - {fileID: 2289493133889538587} + - {fileID: 789201070685644870} + - {fileID: 632919408841136468} + - {fileID: 8362226126786775428} + - {fileID: 6713046130348130031} + - {fileID: 1736390052843337352} + - {fileID: 2647666789720681232} + - {fileID: 1245275053966154892} + - {fileID: 7842801111801954127} + - {fileID: 5518930826735713987} + - {fileID: 650412000016856578} + - {fileID: 2827324758261372908} + - {fileID: 4625820438281264176} + - {fileID: 4935914161864750418} + - {fileID: 3097883888345784054} + - {fileID: 2557290871786022883} + - {fileID: 5130141285697591134} + - {fileID: 1029178351064756532} + - {fileID: 4830960991343532976} + - {fileID: 3609869344792266581} + - {fileID: 7702342598273183683} + - {fileID: 8263932002211726789} + - {fileID: 46986526155918958} + - {fileID: 4038941365592156516} + - {fileID: 9027401759494858112} + - {fileID: 2006971926853278976} + - {fileID: 6099821193434505623} + - {fileID: 6095549730846027436} + - {fileID: 4281225624292822488} + - {fileID: 3347735418540642312} + - {fileID: 5460221536256242760} + - {fileID: 7720914278555990249} + - {fileID: 4523608188334145856} + - {fileID: 3119608742464780565} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 38101694036556137} + m_AABB: + m_Center: {x: 0, y: 0.027525559, z: -0.0011475475} + m_Extent: {x: 0.014168416, y: 0.0027696546, z: 0.0029953711} + m_DirtyAABB: 0 +--- !u!1 &2234763684971606598 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6095549730846027436} + m_Layer: 0 + m_Name: mixamorig:LeftToeBase + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6095549730846027436 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2234763684971606598} + m_LocalRotation: {x: 0.16970277, y: 0.028958654, z: -0.12204973, w: 0.9774795} + m_LocalPosition: {x: -5.937181e-11, y: 0.0059650694, z: 2.9802322e-10} + m_LocalScale: {x: 0.9999999, y: 1, z: 0.99999994} + m_Children: + - {fileID: 4281225624292822488} + m_Father: {fileID: 6099821193434505623} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &2254620651073595829 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8447345114822805049} + - component: {fileID: 8284594815474494639} + m_Layer: 0 + m_Name: ankle_low + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8447345114822805049 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2254620651073595829} + m_LocalRotation: {x: -0.7071068, y: 5.301282e-10, z: 6.338494e-10, w: 0.7071067} + m_LocalPosition: {x: -0.0000000051632525, y: 2.0861935e-11, z: -0.0000000019101425} + m_LocalScale: {x: 28.000004, y: 28, z: 27.999992} + m_Children: [] + m_Father: {fileID: 539745478100655087} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!137 &8284594815474494639 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2254620651073595829} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 60c2f0e0aaa8f8d4e9d23d7e3768653b, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: 1442480265255448480, guid: 82a2914d8f86c62488456950c8330e38, type: 3} + m_Bones: + - {fileID: 38101694036556137} + - {fileID: 49447877029854415} + - {fileID: 3786663924609172669} + - {fileID: 2004308958455250584} + - {fileID: 1589130315247471224} + - {fileID: 7744703493559565592} + - {fileID: 668006632354280349} + - {fileID: 2561657633892041312} + - {fileID: 8465185068562539662} + - {fileID: 5869159519003263498} + - {fileID: 3772228501605983572} + - {fileID: 3234227603562185871} + - {fileID: 8561193508396601175} + - {fileID: 5936567709104571176} + - {fileID: 7211998777527855084} + - {fileID: 2892780539611831731} + - {fileID: 404684814211080889} + - {fileID: 1449764107670396836} + - {fileID: 6381046285418556939} + - {fileID: 1821246364037612516} + - {fileID: 8568605348027153028} + - {fileID: 5793013739203264410} + - {fileID: 3963437824237824200} + - {fileID: 8283759473277797880} + - {fileID: 6376361113228782779} + - {fileID: 2289493133889538587} + - {fileID: 789201070685644870} + - {fileID: 632919408841136468} + - {fileID: 8362226126786775428} + - {fileID: 6713046130348130031} + - {fileID: 1736390052843337352} + - {fileID: 2647666789720681232} + - {fileID: 1245275053966154892} + - {fileID: 7842801111801954127} + - {fileID: 5518930826735713987} + - {fileID: 650412000016856578} + - {fileID: 2827324758261372908} + - {fileID: 4625820438281264176} + - {fileID: 4935914161864750418} + - {fileID: 3097883888345784054} + - {fileID: 2557290871786022883} + - {fileID: 5130141285697591134} + - {fileID: 1029178351064756532} + - {fileID: 4830960991343532976} + - {fileID: 3609869344792266581} + - {fileID: 7702342598273183683} + - {fileID: 8263932002211726789} + - {fileID: 46986526155918958} + - {fileID: 4038941365592156516} + - {fileID: 9027401759494858112} + - {fileID: 2006971926853278976} + - {fileID: 6099821193434505623} + - {fileID: 6095549730846027436} + - {fileID: 4281225624292822488} + - {fileID: 3347735418540642312} + - {fileID: 5460221536256242760} + - {fileID: 7720914278555990249} + - {fileID: 4523608188334145856} + - {fileID: 3119608742464780565} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 38101694036556137} + m_AABB: + m_Center: {x: -4.656613e-10, y: -0.013859185, z: 0.0008595688} + m_Extent: {x: 0.0074213846, y: 0.004341594, z: 0.0041096583} + m_DirtyAABB: 0 +--- !u!1 &2416105713328722301 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5597511937130829008} + - component: {fileID: 5050214706567063249} + m_Layer: 0 + m_Name: finger_pinky_low + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5597511937130829008 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2416105713328722301} + m_LocalRotation: {x: -0.7071068, y: -8.0342444e-10, z: -8.034245e-10, w: 0.7071067} + m_LocalPosition: {x: 0.00000017031161, y: -0.000000071208646, z: -0.00000002233444} + m_LocalScale: {x: 28.000004, y: 28, z: 28} + m_Children: [] + m_Father: {fileID: 539745478100655087} + m_RootOrder: 8 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!137 &5050214706567063249 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2416105713328722301} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 60c2f0e0aaa8f8d4e9d23d7e3768653b, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: 8491974139145053443, guid: 82a2914d8f86c62488456950c8330e38, type: 3} + m_Bones: + - {fileID: 38101694036556137} + - {fileID: 49447877029854415} + - {fileID: 3786663924609172669} + - {fileID: 2004308958455250584} + - {fileID: 1589130315247471224} + - {fileID: 7744703493559565592} + - {fileID: 668006632354280349} + - {fileID: 2561657633892041312} + - {fileID: 8465185068562539662} + - {fileID: 5869159519003263498} + - {fileID: 3772228501605983572} + - {fileID: 3234227603562185871} + - {fileID: 8561193508396601175} + - {fileID: 5936567709104571176} + - {fileID: 7211998777527855084} + - {fileID: 2892780539611831731} + - {fileID: 404684814211080889} + - {fileID: 1449764107670396836} + - {fileID: 6381046285418556939} + - {fileID: 1821246364037612516} + - {fileID: 8568605348027153028} + - {fileID: 5793013739203264410} + - {fileID: 3963437824237824200} + - {fileID: 8283759473277797880} + - {fileID: 6376361113228782779} + - {fileID: 2289493133889538587} + - {fileID: 789201070685644870} + - {fileID: 632919408841136468} + - {fileID: 8362226126786775428} + - {fileID: 6713046130348130031} + - {fileID: 1736390052843337352} + - {fileID: 2647666789720681232} + - {fileID: 1245275053966154892} + - {fileID: 7842801111801954127} + - {fileID: 5518930826735713987} + - {fileID: 650412000016856578} + - {fileID: 2827324758261372908} + - {fileID: 4625820438281264176} + - {fileID: 4935914161864750418} + - {fileID: 3097883888345784054} + - {fileID: 2557290871786022883} + - {fileID: 5130141285697591134} + - {fileID: 1029178351064756532} + - {fileID: 4830960991343532976} + - {fileID: 3609869344792266581} + - {fileID: 7702342598273183683} + - {fileID: 8263932002211726789} + - {fileID: 46986526155918958} + - {fileID: 4038941365592156516} + - {fileID: 9027401759494858112} + - {fileID: 2006971926853278976} + - {fileID: 6099821193434505623} + - {fileID: 6095549730846027436} + - {fileID: 4281225624292822488} + - {fileID: 3347735418540642312} + - {fileID: 5460221536256242760} + - {fileID: 7720914278555990249} + - {fileID: 4523608188334145856} + - {fileID: 3119608742464780565} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 38101694036556137} + m_AABB: + m_Center: {x: 0.000000006519258, y: 0.014158193, z: -0.0038883623} + m_Extent: {x: 0.030456163, y: 0.0014758785, z: 0.0014131323} + m_DirtyAABB: 0 +--- !u!1 &2542026527223064426 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6099821193434505623} + m_Layer: 0 + m_Name: mixamorig:LeftFoot + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6099821193434505623 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2542026527223064426} + m_LocalRotation: {x: 0.47223574, y: -0.000778242, z: -0.010722834, w: 0.8814067} + m_LocalPosition: {x: 1.2369128e-12, y: 0.007032073, z: -2.3515895e-10} + m_LocalScale: {x: 1.0000001, y: 1, z: 1} + m_Children: + - {fileID: 6095549730846027436} + m_Father: {fileID: 2006971926853278976} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &2583774798415090250 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 650412000016856578} + m_Layer: 0 + m_Name: mixamorig:RightHandThumb3 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &650412000016856578 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2583774798415090250} + m_LocalRotation: {x: 0.0066927033, y: 0.0435071, z: 0.034402333, w: 0.99843824} + m_LocalPosition: {x: -4.4703483e-10, y: 0.0026198607, z: 0.0000000010430813} + m_LocalScale: {x: 1, y: 0.99999994, z: 1} + m_Children: + - {fileID: 2827324758261372908} + m_Father: {fileID: 5518930826735713987} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &2718572269799085750 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4523608188334145856} + m_Layer: 0 + m_Name: mixamorig:RightToeBase + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4523608188334145856 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2718572269799085750} + m_LocalRotation: {x: 0.16970277, y: -0.028958654, z: 0.12204973, w: 0.9774795} + m_LocalPosition: {x: 5.937181e-11, y: 0.0059650694, z: 2.9802322e-10} + m_LocalScale: {x: 0.9999999, y: 1, z: 0.99999994} + m_Children: + - {fileID: 3119608742464780565} + m_Father: {fileID: 7720914278555990249} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &3200635894284753021 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 668006632354280349} + m_Layer: 0 + m_Name: mixamorig:HeadTop_End + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &668006632354280349 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3200635894284753021} + m_LocalRotation: {x: -0.06928723, y: -7.231708e-26, z: 2.2915993e-24, w: 0.99759674} + m_LocalPosition: {x: 3.5411062e-19, y: 0.020393591, z: 0.0009455636} + m_LocalScale: {x: 1, y: 0.9999998, z: 0.9999999} + m_Children: [] + m_Father: {fileID: 7744703493559565592} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &3356505892856218636 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3963437824237824200} + m_Layer: 0 + m_Name: mixamorig:LeftHandMiddle2 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3963437824237824200 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3356505892856218636} + m_LocalRotation: {x: 0.084491365, y: -0.013635955, z: -0.012378372, w: 0.996254} + m_LocalPosition: {x: 7.4505804e-11, y: 0.00260657, z: 0.0000000028708018} + m_LocalScale: {x: 0.99999994, y: 0.9999999, z: 0.99999994} + m_Children: + - {fileID: 8283759473277797880} + m_Father: {fileID: 5793013739203264410} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &3465011012192965797 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7720914278555990249} + m_Layer: 0 + m_Name: mixamorig:RightFoot + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7720914278555990249 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3465011012192965797} + m_LocalRotation: {x: 0.47223574, y: 0.000778242, z: 0.010722834, w: 0.8814067} + m_LocalPosition: {x: -1.2369128e-12, y: 0.007032073, z: -2.3515895e-10} + m_LocalScale: {x: 1.0000001, y: 1, z: 1} + m_Children: + - {fileID: 4523608188334145856} + m_Father: {fileID: 5460221536256242760} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &3539654176422223257 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3097883888345784054} + m_Layer: 0 + m_Name: mixamorig:RightHandIndex3 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3097883888345784054 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3539654176422223257} + m_LocalRotation: {x: -1.1641565e-10, y: 0.00000035806318, z: 8.458274e-10, w: 1} + m_LocalPosition: {x: -1.6977413e-10, y: 0.0021414177, z: 0.000000002316954} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 2557290871786022883} + m_Father: {fileID: 4935914161864750418} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &3541754002163558908 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 539745478100655087} + - component: {fileID: 7635726066119915157} + - component: {fileID: 4757836856755875627} + - component: {fileID: 4757836856755875626} + m_Layer: 0 + m_Name: Jammo_Player + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &539745478100655087 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3541754002163558908} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: -0.08, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 8447345114822805049} + - {fileID: 8231537208724914221} + - {fileID: 2342561958175109603} + - {fileID: 1236401970054650298} + - {fileID: 4444495002077728426} + - {fileID: 2474195206884521741} + - {fileID: 2970148365805308159} + - {fileID: 413325651040090714} + - {fileID: 5597511937130829008} + - {fileID: 4232395463015983300} + - {fileID: 981696854965741691} + - {fileID: 2034393277241180347} + - {fileID: 9055611149103614817} + - {fileID: 1895166094173782450} + - {fileID: 4762027720569035291} + - {fileID: 8149820907925527492} + - {fileID: 348501149909691023} + - {fileID: 3481275315686167889} + - {fileID: 1968351753123835355} + - {fileID: 7690150860856835577} + - {fileID: 6344036242030634415} + - {fileID: 6599243431062669293} + - {fileID: 865260883434338260} + - {fileID: 4494418218088283728} + - {fileID: 4977372144643668229} + - {fileID: 3107201403744340549} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!95 &7635726066119915157 +Animator: + serializedVersion: 3 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3541754002163558908} + m_Enabled: 1 + m_Avatar: {fileID: 9000000, guid: f8af0573aab879f4c9cd410a4e0a39f9, type: 3} + m_Controller: {fileID: 9100000, guid: 535d24752e3d6444da644e79e90ec2ca, type: 2} + m_CullingMode: 1 + m_UpdateMode: 0 + m_ApplyRootMotion: 0 + m_LinearVelocityBlending: 0 + m_WarningMessage: + m_HasTransformHierarchy: 1 + m_AllowConstantClipSamplingOptimization: 1 + m_KeepAnimatorControllerStateOnDisable: 0 +--- !u!143 &4757836856755875627 +CharacterController: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3541754002163558908} + m_Material: {fileID: 0} + m_IsTrigger: 0 + m_Enabled: 1 + serializedVersion: 2 + m_Height: 1.8 + m_Radius: 0.5 + m_SlopeLimit: 45 + m_StepOffset: 0.3 + m_SkinWidth: 0.08 + m_MinMoveDistance: 0.001 + m_Center: {x: 0, y: 0.98, z: 0} +--- !u!114 &4757836856755875626 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3541754002163558908} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: caa9f165e2b4f1a4f9522501717c095d, type: 3} + m_Name: + m_EditorClassIdentifier: + Velocity: 10 + InputX: 0 + InputZ: 0 + desiredMoveDirection: {x: 0, y: 0, z: 0} + blockRotationPlayer: 0 + desiredRotationSpeed: 0.3 + anim: {fileID: 0} + Speed: 0 + allowPlayerRotation: 0.1 + cam: {fileID: 0} + controller: {fileID: 0} + isGrounded: 0 + HorizontalAnimSmoothTime: 0.2 + VerticalAnimTime: 0.2 + StartAnimTime: 0.3 + StopAnimTime: 0.15 + verticalVel: -0.5 +--- !u!1 &3921334144448749991 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4830960991343532976} + m_Layer: 0 + m_Name: mixamorig:RightHandMiddle3 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4830960991343532976 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3921334144448749991} + m_LocalRotation: {x: -0.058209147, y: -0.002894446, z: -0.0026199205, w: 0.9982968} + m_LocalPosition: {x: 0.0000020551151, y: 0.0022241578, z: -0.0000000016406647} + m_LocalScale: {x: 0.99999994, y: 1, z: 1.0000001} + m_Children: + - {fileID: 3609869344792266581} + m_Father: {fileID: 1029178351064756532} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &3938096646828600468 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2647666789720681232} + m_Layer: 0 + m_Name: mixamorig:RightForeArm + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2647666789720681232 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3938096646828600468} + m_LocalRotation: {x: -0.02349268, y: -0.011118597, z: 0.031047342, w: 0.99917996} + m_LocalPosition: {x: -3.7252902e-11, y: 0.006685836, z: 5.3085386e-10} + m_LocalScale: {x: 1, y: 0.99999994, z: 0.99999994} + m_Children: + - {fileID: 1245275053966154892} + m_Father: {fileID: 1736390052843337352} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &4155757067627686796 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8231537208724914221} + m_Layer: 0 + m_Name: Armature.001 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8231537208724914221 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4155757067627686796} + m_LocalRotation: {x: 0.00000008146034, y: 0, z: -0, w: 1} + m_LocalPosition: {x: -0, y: 0, z: 0} + m_LocalScale: {x: 28, y: 28, z: 28} + m_Children: + - {fileID: 38101694036556137} + m_Father: {fileID: 539745478100655087} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &4225218657707965746 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4232395463015983300} + - component: {fileID: 1056355096419901132} + m_Layer: 0 + m_Name: finger_thumb_low + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4232395463015983300 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4225218657707965746} + m_LocalRotation: {x: -0.7071068, y: 0.000000004214686, z: -0.0000000016858759, w: 0.7071067} + m_LocalPosition: {x: -0.000000008431386, y: -0.000000018694099, z: -0.00000008524545} + m_LocalScale: {x: 27.999996, y: 28, z: 28} + m_Children: [] + m_Father: {fileID: 539745478100655087} + m_RootOrder: 9 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!137 &1056355096419901132 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4225218657707965746} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 60c2f0e0aaa8f8d4e9d23d7e3768653b, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: -2570044158647291608, guid: 82a2914d8f86c62488456950c8330e38, type: 3} + m_Bones: + - {fileID: 38101694036556137} + - {fileID: 49447877029854415} + - {fileID: 3786663924609172669} + - {fileID: 2004308958455250584} + - {fileID: 1589130315247471224} + - {fileID: 7744703493559565592} + - {fileID: 668006632354280349} + - {fileID: 2561657633892041312} + - {fileID: 8465185068562539662} + - {fileID: 5869159519003263498} + - {fileID: 3772228501605983572} + - {fileID: 3234227603562185871} + - {fileID: 8561193508396601175} + - {fileID: 5936567709104571176} + - {fileID: 7211998777527855084} + - {fileID: 2892780539611831731} + - {fileID: 404684814211080889} + - {fileID: 1449764107670396836} + - {fileID: 6381046285418556939} + - {fileID: 1821246364037612516} + - {fileID: 8568605348027153028} + - {fileID: 5793013739203264410} + - {fileID: 3963437824237824200} + - {fileID: 8283759473277797880} + - {fileID: 6376361113228782779} + - {fileID: 2289493133889538587} + - {fileID: 789201070685644870} + - {fileID: 632919408841136468} + - {fileID: 8362226126786775428} + - {fileID: 6713046130348130031} + - {fileID: 1736390052843337352} + - {fileID: 2647666789720681232} + - {fileID: 1245275053966154892} + - {fileID: 7842801111801954127} + - {fileID: 5518930826735713987} + - {fileID: 650412000016856578} + - {fileID: 2827324758261372908} + - {fileID: 4625820438281264176} + - {fileID: 4935914161864750418} + - {fileID: 3097883888345784054} + - {fileID: 2557290871786022883} + - {fileID: 5130141285697591134} + - {fileID: 1029178351064756532} + - {fileID: 4830960991343532976} + - {fileID: 3609869344792266581} + - {fileID: 7702342598273183683} + - {fileID: 8263932002211726789} + - {fileID: 46986526155918958} + - {fileID: 4038941365592156516} + - {fileID: 9027401759494858112} + - {fileID: 2006971926853278976} + - {fileID: 6099821193434505623} + - {fileID: 6095549730846027436} + - {fileID: 4281225624292822488} + - {fileID: 3347735418540642312} + - {fileID: 5460221536256242760} + - {fileID: 7720914278555990249} + - {fileID: 4523608188334145856} + - {fileID: 3119608742464780565} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 38101694036556137} + m_AABB: + m_Center: {x: 0.0000047078356, y: 0.012417832, z: 0.0028643752} + m_Extent: {x: 0.027433358, y: 0.002938442, z: 0.0029298165} + m_DirtyAABB: 0 +--- !u!1 &4243624145597904126 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6599243431062669293} + - component: {fileID: 1469149460382200048} + m_Layer: 0 + m_Name: shoulder_low + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6599243431062669293 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4243624145597904126} + m_LocalRotation: {x: -0.7071068, y: -0.000000004333225, z: 0.0000000044385904, w: 0.7071067} + m_LocalPosition: {x: -0.000000006842614, y: -0.000000013893842, z: 0.0000000013351418} + m_LocalScale: {x: 28.000004, y: 28, z: 27.999992} + m_Children: [] + m_Father: {fileID: 539745478100655087} + m_RootOrder: 21 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!137 &1469149460382200048 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4243624145597904126} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 60c2f0e0aaa8f8d4e9d23d7e3768653b, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: -735563127378357600, guid: 82a2914d8f86c62488456950c8330e38, type: 3} + m_Bones: + - {fileID: 38101694036556137} + - {fileID: 49447877029854415} + - {fileID: 3786663924609172669} + - {fileID: 2004308958455250584} + - {fileID: 1589130315247471224} + - {fileID: 7744703493559565592} + - {fileID: 668006632354280349} + - {fileID: 2561657633892041312} + - {fileID: 8465185068562539662} + - {fileID: 5869159519003263498} + - {fileID: 3772228501605983572} + - {fileID: 3234227603562185871} + - {fileID: 8561193508396601175} + - {fileID: 5936567709104571176} + - {fileID: 7211998777527855084} + - {fileID: 2892780539611831731} + - {fileID: 404684814211080889} + - {fileID: 1449764107670396836} + - {fileID: 6381046285418556939} + - {fileID: 1821246364037612516} + - {fileID: 8568605348027153028} + - {fileID: 5793013739203264410} + - {fileID: 3963437824237824200} + - {fileID: 8283759473277797880} + - {fileID: 6376361113228782779} + - {fileID: 2289493133889538587} + - {fileID: 789201070685644870} + - {fileID: 632919408841136468} + - {fileID: 8362226126786775428} + - {fileID: 6713046130348130031} + - {fileID: 1736390052843337352} + - {fileID: 2647666789720681232} + - {fileID: 1245275053966154892} + - {fileID: 7842801111801954127} + - {fileID: 5518930826735713987} + - {fileID: 650412000016856578} + - {fileID: 2827324758261372908} + - {fileID: 4625820438281264176} + - {fileID: 4935914161864750418} + - {fileID: 3097883888345784054} + - {fileID: 2557290871786022883} + - {fileID: 5130141285697591134} + - {fileID: 1029178351064756532} + - {fileID: 4830960991343532976} + - {fileID: 3609869344792266581} + - {fileID: 7702342598273183683} + - {fileID: 8263932002211726789} + - {fileID: 46986526155918958} + - {fileID: 4038941365592156516} + - {fileID: 9027401759494858112} + - {fileID: 2006971926853278976} + - {fileID: 6099821193434505623} + - {fileID: 6095549730846027436} + - {fileID: 4281225624292822488} + - {fileID: 3347735418540642312} + - {fileID: 5460221536256242760} + - {fileID: 7720914278555990249} + - {fileID: 4523608188334145856} + - {fileID: 3119608742464780565} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 38101694036556137} + m_AABB: + m_Center: {x: 9.313226e-10, y: 0.015755808, z: -0.0019112153} + m_Extent: {x: 0.01264705, y: 0.004342156, z: 0.0044564614} + m_DirtyAABB: 0 +--- !u!1 &4252157926949918360 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7211998777527855084} + m_Layer: 0 + m_Name: mixamorig:LeftHandThumb2 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7211998777527855084 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4252157926949918360} + m_LocalRotation: {x: 0.3080849, y: -0.11623043, z: 0.18718553, w: 0.9254922} + m_LocalPosition: {x: -0.000094732044, y: 0.0016309698, z: 0.000000058356672} + m_LocalScale: {x: 1, y: 1, z: 0.99999994} + m_Children: + - {fileID: 2892780539611831731} + m_Father: {fileID: 5936567709104571176} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &4275852571020247657 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5460221536256242760} + m_Layer: 0 + m_Name: mixamorig:RightLeg + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5460221536256242760 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4275852571020247657} + m_LocalRotation: {x: 0.07751489, y: 0.0025662382, z: 0.043736637, w: 0.9960281} + m_LocalPosition: {x: 3.910145e-10, y: 0.007955141, z: -8.731149e-13} + m_LocalScale: {x: 1, y: 0.99999994, z: 0.9999999} + m_Children: + - {fileID: 7720914278555990249} + m_Father: {fileID: 3347735418540642312} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &4483209743356613103 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8149820907925527492} + - component: {fileID: 8613443241836041114} + m_Layer: 0 + m_Name: heels_low + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8149820907925527492 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4483209743356613103} + m_LocalRotation: {x: -0.7071068, y: 5.301282e-10, z: 6.338494e-10, w: 0.7071067} + m_LocalPosition: {x: -0.0000000051632525, y: 2.0861935e-11, z: -0.0000000019101425} + m_LocalScale: {x: 28.000004, y: 28, z: 27.999992} + m_Children: [] + m_Father: {fileID: 539745478100655087} + m_RootOrder: 15 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!137 &8613443241836041114 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4483209743356613103} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 60c2f0e0aaa8f8d4e9d23d7e3768653b, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: -5547477151990014872, guid: 82a2914d8f86c62488456950c8330e38, type: 3} + m_Bones: + - {fileID: 38101694036556137} + - {fileID: 49447877029854415} + - {fileID: 3786663924609172669} + - {fileID: 2004308958455250584} + - {fileID: 1589130315247471224} + - {fileID: 7744703493559565592} + - {fileID: 668006632354280349} + - {fileID: 2561657633892041312} + - {fileID: 8465185068562539662} + - {fileID: 5869159519003263498} + - {fileID: 3772228501605983572} + - {fileID: 3234227603562185871} + - {fileID: 8561193508396601175} + - {fileID: 5936567709104571176} + - {fileID: 7211998777527855084} + - {fileID: 2892780539611831731} + - {fileID: 404684814211080889} + - {fileID: 1449764107670396836} + - {fileID: 6381046285418556939} + - {fileID: 1821246364037612516} + - {fileID: 8568605348027153028} + - {fileID: 5793013739203264410} + - {fileID: 3963437824237824200} + - {fileID: 8283759473277797880} + - {fileID: 6376361113228782779} + - {fileID: 2289493133889538587} + - {fileID: 789201070685644870} + - {fileID: 632919408841136468} + - {fileID: 8362226126786775428} + - {fileID: 6713046130348130031} + - {fileID: 1736390052843337352} + - {fileID: 2647666789720681232} + - {fileID: 1245275053966154892} + - {fileID: 7842801111801954127} + - {fileID: 5518930826735713987} + - {fileID: 650412000016856578} + - {fileID: 2827324758261372908} + - {fileID: 4625820438281264176} + - {fileID: 4935914161864750418} + - {fileID: 3097883888345784054} + - {fileID: 2557290871786022883} + - {fileID: 5130141285697591134} + - {fileID: 1029178351064756532} + - {fileID: 4830960991343532976} + - {fileID: 3609869344792266581} + - {fileID: 7702342598273183683} + - {fileID: 8263932002211726789} + - {fileID: 46986526155918958} + - {fileID: 4038941365592156516} + - {fileID: 9027401759494858112} + - {fileID: 2006971926853278976} + - {fileID: 6099821193434505623} + - {fileID: 6095549730846027436} + - {fileID: 4281225624292822488} + - {fileID: 3347735418540642312} + - {fileID: 5460221536256242760} + - {fileID: 7720914278555990249} + - {fileID: 4523608188334145856} + - {fileID: 3119608742464780565} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 38101694036556137} + m_AABB: + m_Center: {x: 0, y: -0.016972732, z: -0.0018299504} + m_Extent: {x: 0.006482142, y: 0.0024608234, z: 0.0025217298} + m_DirtyAABB: 0 +--- !u!1 &4608544476467774058 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6344036242030634415} + - component: {fileID: 8103208097679968932} + m_Layer: 0 + m_Name: shin_low + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6344036242030634415 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4608544476467774058} + m_LocalRotation: {x: -0.7071068, y: 5.301282e-10, z: 6.338494e-10, w: 0.7071067} + m_LocalPosition: {x: -0.0000000051632525, y: 2.0861935e-11, z: -0.0000000019101425} + m_LocalScale: {x: 28.000004, y: 28, z: 27.999992} + m_Children: [] + m_Father: {fileID: 539745478100655087} + m_RootOrder: 20 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!137 &8103208097679968932 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4608544476467774058} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 60c2f0e0aaa8f8d4e9d23d7e3768653b, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: -2388564476093731693, guid: 82a2914d8f86c62488456950c8330e38, type: 3} + m_Bones: + - {fileID: 38101694036556137} + - {fileID: 49447877029854415} + - {fileID: 3786663924609172669} + - {fileID: 2004308958455250584} + - {fileID: 1589130315247471224} + - {fileID: 7744703493559565592} + - {fileID: 668006632354280349} + - {fileID: 2561657633892041312} + - {fileID: 8465185068562539662} + - {fileID: 5869159519003263498} + - {fileID: 3772228501605983572} + - {fileID: 3234227603562185871} + - {fileID: 8561193508396601175} + - {fileID: 5936567709104571176} + - {fileID: 7211998777527855084} + - {fileID: 2892780539611831731} + - {fileID: 404684814211080889} + - {fileID: 1449764107670396836} + - {fileID: 6381046285418556939} + - {fileID: 1821246364037612516} + - {fileID: 8568605348027153028} + - {fileID: 5793013739203264410} + - {fileID: 3963437824237824200} + - {fileID: 8283759473277797880} + - {fileID: 6376361113228782779} + - {fileID: 2289493133889538587} + - {fileID: 789201070685644870} + - {fileID: 632919408841136468} + - {fileID: 8362226126786775428} + - {fileID: 6713046130348130031} + - {fileID: 1736390052843337352} + - {fileID: 2647666789720681232} + - {fileID: 1245275053966154892} + - {fileID: 7842801111801954127} + - {fileID: 5518930826735713987} + - {fileID: 650412000016856578} + - {fileID: 2827324758261372908} + - {fileID: 4625820438281264176} + - {fileID: 4935914161864750418} + - {fileID: 3097883888345784054} + - {fileID: 2557290871786022883} + - {fileID: 5130141285697591134} + - {fileID: 1029178351064756532} + - {fileID: 4830960991343532976} + - {fileID: 3609869344792266581} + - {fileID: 7702342598273183683} + - {fileID: 8263932002211726789} + - {fileID: 46986526155918958} + - {fileID: 4038941365592156516} + - {fileID: 9027401759494858112} + - {fileID: 2006971926853278976} + - {fileID: 6099821193434505623} + - {fileID: 6095549730846027436} + - {fileID: 4281225624292822488} + - {fileID: 3347735418540642312} + - {fileID: 5460221536256242760} + - {fileID: 7720914278555990249} + - {fileID: 4523608188334145856} + - {fileID: 3119608742464780565} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 38101694036556137} + m_AABB: + m_Center: {x: 0, y: -0.0123926215, z: 0.00073562376} + m_Extent: {x: 0.008636855, y: 0.0056809317, z: 0.004555068} + m_DirtyAABB: 0 +--- !u!1 &4628757145490912722 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4281225624292822488} + m_Layer: 0 + m_Name: mixamorig:LeftToe_End + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4281225624292822488 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4628757145490912722} + m_LocalRotation: {x: 0.045736898, y: 0.039432693, z: 0.07275269, w: 0.9955201} + m_LocalPosition: {x: 1.6152625e-10, y: 0.0023627593, z: 4.842877e-10} + m_LocalScale: {x: 1, y: 0.99999994, z: 1} + m_Children: [] + m_Father: {fileID: 6095549730846027436} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &4628807416323219861 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4977372144643668229} + - component: {fileID: 4228262177977166944} + m_Layer: 0 + m_Name: upperarm_low + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4977372144643668229 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4628807416323219861} + m_LocalRotation: {x: -0.7071068, y: -0.000000004333225, z: 0.0000000044385904, w: 0.7071067} + m_LocalPosition: {x: -0.000000006842614, y: -0.000000013893842, z: 0.0000000013351418} + m_LocalScale: {x: 28.000004, y: 28, z: 27.999992} + m_Children: [] + m_Father: {fileID: 539745478100655087} + m_RootOrder: 24 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!137 &4228262177977166944 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4628807416323219861} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 60c2f0e0aaa8f8d4e9d23d7e3768653b, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: 528271467952815888, guid: 82a2914d8f86c62488456950c8330e38, type: 3} + m_Bones: + - {fileID: 38101694036556137} + - {fileID: 49447877029854415} + - {fileID: 3786663924609172669} + - {fileID: 2004308958455250584} + - {fileID: 1589130315247471224} + - {fileID: 7744703493559565592} + - {fileID: 668006632354280349} + - {fileID: 2561657633892041312} + - {fileID: 8465185068562539662} + - {fileID: 5869159519003263498} + - {fileID: 3772228501605983572} + - {fileID: 3234227603562185871} + - {fileID: 8561193508396601175} + - {fileID: 5936567709104571176} + - {fileID: 7211998777527855084} + - {fileID: 2892780539611831731} + - {fileID: 404684814211080889} + - {fileID: 1449764107670396836} + - {fileID: 6381046285418556939} + - {fileID: 1821246364037612516} + - {fileID: 8568605348027153028} + - {fileID: 5793013739203264410} + - {fileID: 3963437824237824200} + - {fileID: 8283759473277797880} + - {fileID: 6376361113228782779} + - {fileID: 2289493133889538587} + - {fileID: 789201070685644870} + - {fileID: 632919408841136468} + - {fileID: 8362226126786775428} + - {fileID: 6713046130348130031} + - {fileID: 1736390052843337352} + - {fileID: 2647666789720681232} + - {fileID: 1245275053966154892} + - {fileID: 7842801111801954127} + - {fileID: 5518930826735713987} + - {fileID: 650412000016856578} + - {fileID: 2827324758261372908} + - {fileID: 4625820438281264176} + - {fileID: 4935914161864750418} + - {fileID: 3097883888345784054} + - {fileID: 2557290871786022883} + - {fileID: 5130141285697591134} + - {fileID: 1029178351064756532} + - {fileID: 4830960991343532976} + - {fileID: 3609869344792266581} + - {fileID: 7702342598273183683} + - {fileID: 8263932002211726789} + - {fileID: 46986526155918958} + - {fileID: 4038941365592156516} + - {fileID: 9027401759494858112} + - {fileID: 2006971926853278976} + - {fileID: 6099821193434505623} + - {fileID: 6095549730846027436} + - {fileID: 4281225624292822488} + - {fileID: 3347735418540642312} + - {fileID: 5460221536256242760} + - {fileID: 7720914278555990249} + - {fileID: 4523608188334145856} + - {fileID: 3119608742464780565} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 38101694036556137} + m_AABB: + m_Center: {x: 4.656613e-10, y: 0.01328192, z: -0.0015298394} + m_Extent: {x: 0.014194744, y: 0.0036940677, z: 0.002848199} + m_DirtyAABB: 0 +--- !u!1 &4640897207162571090 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7690150860856835577} + - component: {fileID: 4662889940940550474} + m_Layer: 0 + m_Name: screw_low + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7690150860856835577 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4640897207162571090} + m_LocalRotation: {x: -0.7232109, y: -0.23895341, z: 0.30078816, w: 0.5739284} + m_LocalPosition: {x: 0.00024944852, y: 0.8024603, z: 0.14366649} + m_LocalScale: {x: 28.824781, y: 28.824766, z: 28.824772} + m_Children: [] + m_Father: {fileID: 539745478100655087} + m_RootOrder: 19 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!137 &4662889940940550474 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4640897207162571090} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 60c2f0e0aaa8f8d4e9d23d7e3768653b, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: -6982626855310005469, guid: 82a2914d8f86c62488456950c8330e38, type: 3} + m_Bones: + - {fileID: 38101694036556137} + - {fileID: 49447877029854415} + - {fileID: 3786663924609172669} + - {fileID: 2004308958455250584} + - {fileID: 1589130315247471224} + - {fileID: 7744703493559565592} + - {fileID: 668006632354280349} + - {fileID: 2561657633892041312} + - {fileID: 8465185068562539662} + - {fileID: 5869159519003263498} + - {fileID: 3772228501605983572} + - {fileID: 3234227603562185871} + - {fileID: 8561193508396601175} + - {fileID: 5936567709104571176} + - {fileID: 7211998777527855084} + - {fileID: 2892780539611831731} + - {fileID: 404684814211080889} + - {fileID: 1449764107670396836} + - {fileID: 6381046285418556939} + - {fileID: 1821246364037612516} + - {fileID: 8568605348027153028} + - {fileID: 5793013739203264410} + - {fileID: 3963437824237824200} + - {fileID: 8283759473277797880} + - {fileID: 6376361113228782779} + - {fileID: 2289493133889538587} + - {fileID: 789201070685644870} + - {fileID: 632919408841136468} + - {fileID: 8362226126786775428} + - {fileID: 6713046130348130031} + - {fileID: 1736390052843337352} + - {fileID: 2647666789720681232} + - {fileID: 1245275053966154892} + - {fileID: 7842801111801954127} + - {fileID: 5518930826735713987} + - {fileID: 650412000016856578} + - {fileID: 2827324758261372908} + - {fileID: 4625820438281264176} + - {fileID: 4935914161864750418} + - {fileID: 3097883888345784054} + - {fileID: 2557290871786022883} + - {fileID: 5130141285697591134} + - {fileID: 1029178351064756532} + - {fileID: 4830960991343532976} + - {fileID: 3609869344792266581} + - {fileID: 7702342598273183683} + - {fileID: 8263932002211726789} + - {fileID: 46986526155918958} + - {fileID: 4038941365592156516} + - {fileID: 9027401759494858112} + - {fileID: 2006971926853278976} + - {fileID: 6099821193434505623} + - {fileID: 6095549730846027436} + - {fileID: 4281225624292822488} + - {fileID: 3347735418540642312} + - {fileID: 5460221536256242760} + - {fileID: 7720914278555990249} + - {fileID: 4523608188334145856} + - {fileID: 3119608742464780565} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 38101694036556137} + m_AABB: + m_Center: {x: 0.000009047333, y: 0.010750489, z: 0.0039340025} + m_Extent: {x: 0.001538314, y: 0.0015559513, z: 0.0006459155} + m_DirtyAABB: 0 +--- !u!1 &4761579679502425695 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8561193508396601175} + m_Layer: 0 + m_Name: mixamorig:LeftHand + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8561193508396601175 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4761579679502425695} + m_LocalRotation: {x: -0.024770312, y: -0.06330372, z: 0.049688194, w: 0.99644876} + m_LocalPosition: {x: 4.842877e-10, y: 0.007151887, z: -0.000000003740133} + m_LocalScale: {x: 1, y: 1, z: 1.0000001} + m_Children: + - {fileID: 1449764107670396836} + - {fileID: 5793013739203264410} + - {fileID: 2289493133889538587} + - {fileID: 5936567709104571176} + m_Father: {fileID: 3234227603562185871} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &4843127566917434504 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3609869344792266581} + m_Layer: 0 + m_Name: mixamorig:RightHandMiddle4 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3609869344792266581 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4843127566917434504} + m_LocalRotation: {x: 0.010558283, y: 0.002861043, z: 0.0028609226, w: 0.9999361} + m_LocalPosition: {x: -0, y: 0.00075213314, z: -2.5785993e-10} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4830960991343532976} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &4926744772920642261 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2034393277241180347} + - component: {fileID: 1200846796674004160} + m_Layer: 0 + m_Name: head_eyes_low + m_TagString: PlayerEyes + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2034393277241180347 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4926744772920642261} + m_LocalRotation: {x: 0.00000008146035, y: 0, z: -0, w: 1} + m_LocalPosition: {x: -0, y: 1.2791204, z: 0.22505394} + m_LocalScale: {x: 0.26551303, y: 0.265513, z: 0.265513} + m_Children: [] + m_Father: {fileID: 539745478100655087} + m_RootOrder: 11 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!137 &1200846796674004160 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4926744772920642261} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: d5c0dc78f40c06c4e9356a3218da955b, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: -2863454572661910379, guid: 82a2914d8f86c62488456950c8330e38, type: 3} + m_Bones: + - {fileID: 38101694036556137} + - {fileID: 49447877029854415} + - {fileID: 3786663924609172669} + - {fileID: 2004308958455250584} + - {fileID: 1589130315247471224} + - {fileID: 7744703493559565592} + - {fileID: 668006632354280349} + - {fileID: 2561657633892041312} + - {fileID: 8465185068562539662} + - {fileID: 5869159519003263498} + - {fileID: 3772228501605983572} + - {fileID: 3234227603562185871} + - {fileID: 8561193508396601175} + - {fileID: 5936567709104571176} + - {fileID: 7211998777527855084} + - {fileID: 2892780539611831731} + - {fileID: 404684814211080889} + - {fileID: 1449764107670396836} + - {fileID: 6381046285418556939} + - {fileID: 1821246364037612516} + - {fileID: 8568605348027153028} + - {fileID: 5793013739203264410} + - {fileID: 3963437824237824200} + - {fileID: 8283759473277797880} + - {fileID: 6376361113228782779} + - {fileID: 2289493133889538587} + - {fileID: 789201070685644870} + - {fileID: 632919408841136468} + - {fileID: 8362226126786775428} + - {fileID: 6713046130348130031} + - {fileID: 1736390052843337352} + - {fileID: 2647666789720681232} + - {fileID: 1245275053966154892} + - {fileID: 7842801111801954127} + - {fileID: 5518930826735713987} + - {fileID: 650412000016856578} + - {fileID: 2827324758261372908} + - {fileID: 4625820438281264176} + - {fileID: 4935914161864750418} + - {fileID: 3097883888345784054} + - {fileID: 2557290871786022883} + - {fileID: 5130141285697591134} + - {fileID: 1029178351064756532} + - {fileID: 4830960991343532976} + - {fileID: 3609869344792266581} + - {fileID: 7702342598273183683} + - {fileID: 8263932002211726789} + - {fileID: 46986526155918958} + - {fileID: 4038941365592156516} + - {fileID: 9027401759494858112} + - {fileID: 2006971926853278976} + - {fileID: 6099821193434505623} + - {fileID: 6095549730846027436} + - {fileID: 4281225624292822488} + - {fileID: 3347735418540642312} + - {fileID: 5460221536256242760} + - {fileID: 7720914278555990249} + - {fileID: 4523608188334145856} + - {fileID: 3119608742464780565} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 38101694036556137} + m_AABB: + m_Center: {x: 4.656613e-10, y: 0.027823603, z: 0.0071387496} + m_Extent: {x: 0.0071336757, y: 0.004655117, z: 0.0010707472} + m_DirtyAABB: 0 +--- !u!1 &4933395397889766575 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2474195206884521741} + - component: {fileID: 1741508907715358056} + m_Layer: 0 + m_Name: feet_low + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2474195206884521741 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4933395397889766575} + m_LocalRotation: {x: -0.7071068, y: 5.301282e-10, z: 6.338494e-10, w: 0.7071067} + m_LocalPosition: {x: -0.0000000051632525, y: 2.0861935e-11, z: -0.0000000019101425} + m_LocalScale: {x: 28.000004, y: 28, z: 27.999992} + m_Children: [] + m_Father: {fileID: 539745478100655087} + m_RootOrder: 5 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!137 &1741508907715358056 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4933395397889766575} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 60c2f0e0aaa8f8d4e9d23d7e3768653b, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: 47422930541761884, guid: 82a2914d8f86c62488456950c8330e38, type: 3} + m_Bones: + - {fileID: 38101694036556137} + - {fileID: 49447877029854415} + - {fileID: 3786663924609172669} + - {fileID: 2004308958455250584} + - {fileID: 1589130315247471224} + - {fileID: 7744703493559565592} + - {fileID: 668006632354280349} + - {fileID: 2561657633892041312} + - {fileID: 8465185068562539662} + - {fileID: 5869159519003263498} + - {fileID: 3772228501605983572} + - {fileID: 3234227603562185871} + - {fileID: 8561193508396601175} + - {fileID: 5936567709104571176} + - {fileID: 7211998777527855084} + - {fileID: 2892780539611831731} + - {fileID: 404684814211080889} + - {fileID: 1449764107670396836} + - {fileID: 6381046285418556939} + - {fileID: 1821246364037612516} + - {fileID: 8568605348027153028} + - {fileID: 5793013739203264410} + - {fileID: 3963437824237824200} + - {fileID: 8283759473277797880} + - {fileID: 6376361113228782779} + - {fileID: 2289493133889538587} + - {fileID: 789201070685644870} + - {fileID: 632919408841136468} + - {fileID: 8362226126786775428} + - {fileID: 6713046130348130031} + - {fileID: 1736390052843337352} + - {fileID: 2647666789720681232} + - {fileID: 1245275053966154892} + - {fileID: 7842801111801954127} + - {fileID: 5518930826735713987} + - {fileID: 650412000016856578} + - {fileID: 2827324758261372908} + - {fileID: 4625820438281264176} + - {fileID: 4935914161864750418} + - {fileID: 3097883888345784054} + - {fileID: 2557290871786022883} + - {fileID: 5130141285697591134} + - {fileID: 1029178351064756532} + - {fileID: 4830960991343532976} + - {fileID: 3609869344792266581} + - {fileID: 7702342598273183683} + - {fileID: 8263932002211726789} + - {fileID: 46986526155918958} + - {fileID: 4038941365592156516} + - {fileID: 9027401759494858112} + - {fileID: 2006971926853278976} + - {fileID: 6099821193434505623} + - {fileID: 6095549730846027436} + - {fileID: 4281225624292822488} + - {fileID: 3347735418540642312} + - {fileID: 5460221536256242760} + - {fileID: 7720914278555990249} + - {fileID: 4523608188334145856} + - {fileID: 3119608742464780565} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 38101694036556137} + m_AABB: + m_Center: {x: -9.313226e-10, y: -0.01644269, z: 0.0048855105} + m_Extent: {x: 0.008058258, y: 0.0048007, z: 0.0050132154} + m_DirtyAABB: 0 +--- !u!1 &4944228959627855684 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5518930826735713987} + m_Layer: 0 + m_Name: mixamorig:RightHandThumb2 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5518930826735713987 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4944228959627855684} + m_LocalRotation: {x: 0.3080849, y: 0.11623043, z: -0.18718553, w: 0.9254922} + m_LocalPosition: {x: 0.000094732044, y: 0.0016309698, z: 0.000000058356672} + m_LocalScale: {x: 1, y: 1, z: 0.99999994} + m_Children: + - {fileID: 650412000016856578} + m_Father: {fileID: 7842801111801954127} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &5219434189408010801 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1968351753123835355} + - component: {fileID: 5022912871054551828} + m_Layer: 0 + m_Name: scarf_low + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1968351753123835355 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5219434189408010801} + m_LocalRotation: {x: -0.7071068, y: -0.000000007744487, z: 0.000000009430359, w: 0.7071067} + m_LocalPosition: {x: 0.0000000053405764, y: 0.000000019860266, z: 0.0000000013351473} + m_LocalScale: {x: 28.000004, y: 28, z: 27.999992} + m_Children: [] + m_Father: {fileID: 539745478100655087} + m_RootOrder: 18 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!137 &5022912871054551828 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5219434189408010801} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 60c2f0e0aaa8f8d4e9d23d7e3768653b, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: -5269394949532209711, guid: 82a2914d8f86c62488456950c8330e38, type: 3} + m_Bones: + - {fileID: 38101694036556137} + - {fileID: 49447877029854415} + - {fileID: 3786663924609172669} + - {fileID: 2004308958455250584} + - {fileID: 1589130315247471224} + - {fileID: 7744703493559565592} + - {fileID: 668006632354280349} + - {fileID: 2561657633892041312} + - {fileID: 8465185068562539662} + - {fileID: 5869159519003263498} + - {fileID: 3772228501605983572} + - {fileID: 3234227603562185871} + - {fileID: 8561193508396601175} + - {fileID: 5936567709104571176} + - {fileID: 7211998777527855084} + - {fileID: 2892780539611831731} + - {fileID: 404684814211080889} + - {fileID: 1449764107670396836} + - {fileID: 6381046285418556939} + - {fileID: 1821246364037612516} + - {fileID: 8568605348027153028} + - {fileID: 5793013739203264410} + - {fileID: 3963437824237824200} + - {fileID: 8283759473277797880} + - {fileID: 6376361113228782779} + - {fileID: 2289493133889538587} + - {fileID: 789201070685644870} + - {fileID: 632919408841136468} + - {fileID: 8362226126786775428} + - {fileID: 6713046130348130031} + - {fileID: 1736390052843337352} + - {fileID: 2647666789720681232} + - {fileID: 1245275053966154892} + - {fileID: 7842801111801954127} + - {fileID: 5518930826735713987} + - {fileID: 650412000016856578} + - {fileID: 2827324758261372908} + - {fileID: 4625820438281264176} + - {fileID: 4935914161864750418} + - {fileID: 3097883888345784054} + - {fileID: 2557290871786022883} + - {fileID: 5130141285697591134} + - {fileID: 1029178351064756532} + - {fileID: 4830960991343532976} + - {fileID: 3609869344792266581} + - {fileID: 7702342598273183683} + - {fileID: 8263932002211726789} + - {fileID: 46986526155918958} + - {fileID: 4038941365592156516} + - {fileID: 9027401759494858112} + - {fileID: 2006971926853278976} + - {fileID: 6099821193434505623} + - {fileID: 6095549730846027436} + - {fileID: 4281225624292822488} + - {fileID: 3347735418540642312} + - {fileID: 5460221536256242760} + - {fileID: 7720914278555990249} + - {fileID: 4523608188334145856} + - {fileID: 3119608742464780565} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 38101694036556137} + m_AABB: + m_Center: {x: 0.00000028219074, y: 0.01648675, z: -0.00057394337} + m_Extent: {x: 0.005252939, y: 0.0028486475, z: 0.0047477516} + m_DirtyAABB: 0 +--- !u!1 &5263768506274314124 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1029178351064756532} + m_Layer: 0 + m_Name: mixamorig:RightHandMiddle2 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1029178351064756532 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5263768506274314124} + m_LocalRotation: {x: 0.084491365, y: 0.013635955, z: 0.012378372, w: 0.996254} + m_LocalPosition: {x: -7.4505804e-11, y: 0.00260657, z: 0.0000000028708018} + m_LocalScale: {x: 0.99999994, y: 0.9999999, z: 0.99999994} + m_Children: + - {fileID: 4830960991343532976} + m_Father: {fileID: 5130141285697591134} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &5403959156664306235 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8362226126786775428} + m_Layer: 0 + m_Name: mixamorig:LeftHandPinky4 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8362226126786775428 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5403959156664306235} + m_LocalRotation: {x: 0.044519458, y: -0.00000011909107, z: 0.0000000033611263, w: 0.99900854} + m_LocalPosition: {x: -3.235408e-10, y: 0.0009765623, z: -5.703486e-10} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 632919408841136468} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &5437356775279624793 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1245275053966154892} + m_Layer: 0 + m_Name: mixamorig:RightHand + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1245275053966154892 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5437356775279624793} + m_LocalRotation: {x: -0.024770312, y: 0.06330372, z: -0.049688194, w: 0.99644876} + m_LocalPosition: {x: -4.842877e-10, y: 0.007151887, z: -0.000000003740133} + m_LocalScale: {x: 1, y: 1, z: 1.0000001} + m_Children: + - {fileID: 4625820438281264176} + - {fileID: 5130141285697591134} + - {fileID: 7702342598273183683} + - {fileID: 7842801111801954127} + m_Father: {fileID: 2647666789720681232} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &5853655481793313376 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 865260883434338260} + - component: {fileID: 6108489921287190553} + m_Layer: 0 + m_Name: thigh_low + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &865260883434338260 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5853655481793313376} + m_LocalRotation: {x: -0.7071068, y: 5.301282e-10, z: 6.338494e-10, w: 0.7071067} + m_LocalPosition: {x: -0.0000000051632525, y: 2.0861935e-11, z: -0.0000000019101425} + m_LocalScale: {x: 28.000004, y: 28, z: 27.999992} + m_Children: [] + m_Father: {fileID: 539745478100655087} + m_RootOrder: 22 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!137 &6108489921287190553 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5853655481793313376} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 60c2f0e0aaa8f8d4e9d23d7e3768653b, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: 6041399054258687921, guid: 82a2914d8f86c62488456950c8330e38, type: 3} + m_Bones: + - {fileID: 38101694036556137} + - {fileID: 49447877029854415} + - {fileID: 3786663924609172669} + - {fileID: 2004308958455250584} + - {fileID: 1589130315247471224} + - {fileID: 7744703493559565592} + - {fileID: 668006632354280349} + - {fileID: 2561657633892041312} + - {fileID: 8465185068562539662} + - {fileID: 5869159519003263498} + - {fileID: 3772228501605983572} + - {fileID: 3234227603562185871} + - {fileID: 8561193508396601175} + - {fileID: 5936567709104571176} + - {fileID: 7211998777527855084} + - {fileID: 2892780539611831731} + - {fileID: 404684814211080889} + - {fileID: 1449764107670396836} + - {fileID: 6381046285418556939} + - {fileID: 1821246364037612516} + - {fileID: 8568605348027153028} + - {fileID: 5793013739203264410} + - {fileID: 3963437824237824200} + - {fileID: 8283759473277797880} + - {fileID: 6376361113228782779} + - {fileID: 2289493133889538587} + - {fileID: 789201070685644870} + - {fileID: 632919408841136468} + - {fileID: 8362226126786775428} + - {fileID: 6713046130348130031} + - {fileID: 1736390052843337352} + - {fileID: 2647666789720681232} + - {fileID: 1245275053966154892} + - {fileID: 7842801111801954127} + - {fileID: 5518930826735713987} + - {fileID: 650412000016856578} + - {fileID: 2827324758261372908} + - {fileID: 4625820438281264176} + - {fileID: 4935914161864750418} + - {fileID: 3097883888345784054} + - {fileID: 2557290871786022883} + - {fileID: 5130141285697591134} + - {fileID: 1029178351064756532} + - {fileID: 4830960991343532976} + - {fileID: 3609869344792266581} + - {fileID: 7702342598273183683} + - {fileID: 8263932002211726789} + - {fileID: 46986526155918958} + - {fileID: 4038941365592156516} + - {fileID: 9027401759494858112} + - {fileID: 2006971926853278976} + - {fileID: 6099821193434505623} + - {fileID: 6095549730846027436} + - {fileID: 4281225624292822488} + - {fileID: 3347735418540642312} + - {fileID: 5460221536256242760} + - {fileID: 7720914278555990249} + - {fileID: 4523608188334145856} + - {fileID: 3119608742464780565} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 38101694036556137} + m_AABB: + m_Center: {x: 0, y: -0.0026423736, z: -0.00009471271} + m_Extent: {x: 0.0086208135, y: 0.0067165233, z: 0.0038025386} + m_DirtyAABB: 0 +--- !u!1 &5860018414186214908 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 404684814211080889} + m_Layer: 0 + m_Name: mixamorig:LeftHandThumb4 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &404684814211080889 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5860018414186214908} + m_LocalRotation: {x: 0.02006723, y: 0.04093222, z: 0.014504653, w: 0.9988551} + m_LocalPosition: {x: 8.9406965e-10, y: 0.0024554105, z: 2.2351741e-10} + m_LocalScale: {x: 1, y: 1, z: 1.0000001} + m_Children: [] + m_Father: {fileID: 2892780539611831731} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &6036028704857767229 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 38101694036556137} + m_Layer: 0 + m_Name: mixamorig:Hips + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &38101694036556137 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6036028704857767229} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0, y: 0.017859343, z: 0.0008989906} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 9027401759494858112} + - {fileID: 3347735418540642312} + - {fileID: 49447877029854415} + m_Father: {fileID: 8231537208724914221} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &6044274241663812781 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 981696854965741691} + - component: {fileID: 1227289702671474468} + m_Layer: 0 + m_Name: forearm_low + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &981696854965741691 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6044274241663812781} + m_LocalRotation: {x: -0.7071068, y: -0.0000000050312807, z: -0.0000000020810018, w: 0.7071067} + m_LocalPosition: {x: 0.000000072097784, y: 0.000000017356871, z: 0.000000005340579} + m_LocalScale: {x: 28.000004, y: 28, z: 28} + m_Children: [] + m_Father: {fileID: 539745478100655087} + m_RootOrder: 10 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!137 &1227289702671474468 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6044274241663812781} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 60c2f0e0aaa8f8d4e9d23d7e3768653b, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: 7870532851561950741, guid: 82a2914d8f86c62488456950c8330e38, type: 3} + m_Bones: + - {fileID: 38101694036556137} + - {fileID: 49447877029854415} + - {fileID: 3786663924609172669} + - {fileID: 2004308958455250584} + - {fileID: 1589130315247471224} + - {fileID: 7744703493559565592} + - {fileID: 668006632354280349} + - {fileID: 2561657633892041312} + - {fileID: 8465185068562539662} + - {fileID: 5869159519003263498} + - {fileID: 3772228501605983572} + - {fileID: 3234227603562185871} + - {fileID: 8561193508396601175} + - {fileID: 5936567709104571176} + - {fileID: 7211998777527855084} + - {fileID: 2892780539611831731} + - {fileID: 404684814211080889} + - {fileID: 1449764107670396836} + - {fileID: 6381046285418556939} + - {fileID: 1821246364037612516} + - {fileID: 8568605348027153028} + - {fileID: 5793013739203264410} + - {fileID: 3963437824237824200} + - {fileID: 8283759473277797880} + - {fileID: 6376361113228782779} + - {fileID: 2289493133889538587} + - {fileID: 789201070685644870} + - {fileID: 632919408841136468} + - {fileID: 8362226126786775428} + - {fileID: 6713046130348130031} + - {fileID: 1736390052843337352} + - {fileID: 2647666789720681232} + - {fileID: 1245275053966154892} + - {fileID: 7842801111801954127} + - {fileID: 5518930826735713987} + - {fileID: 650412000016856578} + - {fileID: 2827324758261372908} + - {fileID: 4625820438281264176} + - {fileID: 4935914161864750418} + - {fileID: 3097883888345784054} + - {fileID: 2557290871786022883} + - {fileID: 5130141285697591134} + - {fileID: 1029178351064756532} + - {fileID: 4830960991343532976} + - {fileID: 3609869344792266581} + - {fileID: 7702342598273183683} + - {fileID: 8263932002211726789} + - {fileID: 46986526155918958} + - {fileID: 4038941365592156516} + - {fileID: 9027401759494858112} + - {fileID: 2006971926853278976} + - {fileID: 6099821193434505623} + - {fileID: 6095549730846027436} + - {fileID: 4281225624292822488} + - {fileID: 3347735418540642312} + - {fileID: 5460221536256242760} + - {fileID: 7720914278555990249} + - {fileID: 4523608188334145856} + - {fileID: 3119608742464780565} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 38101694036556137} + m_AABB: + m_Center: {x: 9.313226e-10, y: 0.013736222, z: -0.001545338} + m_Extent: {x: 0.020512447, y: 0.0039795022, z: 0.004044237} + m_DirtyAABB: 0 +--- !u!1 &6254343685889259448 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8465185068562539662} + m_Layer: 0 + m_Name: mixamorig:RightEar + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8465185068562539662 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6254343685889259448} + m_LocalRotation: {x: 0.4050642, y: 0.45798048, z: -0.5935722, w: 0.5233059} + m_LocalPosition: {x: 0.01142189, y: 0.008629899, z: -0.0021856788} + m_LocalScale: {x: 1.0000001, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 7744703493559565592} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &6266911181671497784 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 789201070685644870} + m_Layer: 0 + m_Name: mixamorig:LeftHandPinky2 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &789201070685644870 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6266911181671497784} + m_LocalRotation: {x: -0.025451161, y: -0.00014295697, z: -0.00014227511, w: 0.99967605} + m_LocalPosition: {x: 1.4959368e-10, y: 0.002752743, z: 0.000000002810193} + m_LocalScale: {x: 0.99999994, y: 1, z: 1} + m_Children: + - {fileID: 632919408841136468} + m_Father: {fileID: 2289493133889538587} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &6348465274773221240 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6713046130348130031} + m_Layer: 0 + m_Name: mixamorig:RightShoulder + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6713046130348130031 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6348465274773221240} + m_LocalRotation: {x: 0.44886628, y: 0.5215398, z: -0.48690292, w: 0.53799707} + m_LocalPosition: {x: 0.0051535415, y: 0.0061933035, z: -0.0009587702} + m_LocalScale: {x: 1.0000001, y: 1.0000001, z: 1.0000001} + m_Children: + - {fileID: 1736390052843337352} + m_Father: {fileID: 2004308958455250584} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &6389563099609981344 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2342561958175109603} + - component: {fileID: 4826562037691674415} + m_Layer: 0 + m_Name: chest_low + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2342561958175109603 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6389563099609981344} + m_LocalRotation: {x: -0.7071068, y: -2.6341795e-10, z: 1.0536695e-10, w: 0.7071067} + m_LocalPosition: {x: 0.000000016772749, y: 0.000000016522405, z: 2.6918413e-15} + m_LocalScale: {x: 28.000004, y: 27.999992, z: 27.999992} + m_Children: [] + m_Father: {fileID: 539745478100655087} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!137 &4826562037691674415 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6389563099609981344} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 60c2f0e0aaa8f8d4e9d23d7e3768653b, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: -7287630029415824813, guid: 82a2914d8f86c62488456950c8330e38, type: 3} + m_Bones: + - {fileID: 38101694036556137} + - {fileID: 49447877029854415} + - {fileID: 3786663924609172669} + - {fileID: 2004308958455250584} + - {fileID: 1589130315247471224} + - {fileID: 7744703493559565592} + - {fileID: 668006632354280349} + - {fileID: 2561657633892041312} + - {fileID: 8465185068562539662} + - {fileID: 5869159519003263498} + - {fileID: 3772228501605983572} + - {fileID: 3234227603562185871} + - {fileID: 8561193508396601175} + - {fileID: 5936567709104571176} + - {fileID: 7211998777527855084} + - {fileID: 2892780539611831731} + - {fileID: 404684814211080889} + - {fileID: 1449764107670396836} + - {fileID: 6381046285418556939} + - {fileID: 1821246364037612516} + - {fileID: 8568605348027153028} + - {fileID: 5793013739203264410} + - {fileID: 3963437824237824200} + - {fileID: 8283759473277797880} + - {fileID: 6376361113228782779} + - {fileID: 2289493133889538587} + - {fileID: 789201070685644870} + - {fileID: 632919408841136468} + - {fileID: 8362226126786775428} + - {fileID: 6713046130348130031} + - {fileID: 1736390052843337352} + - {fileID: 2647666789720681232} + - {fileID: 1245275053966154892} + - {fileID: 7842801111801954127} + - {fileID: 5518930826735713987} + - {fileID: 650412000016856578} + - {fileID: 2827324758261372908} + - {fileID: 4625820438281264176} + - {fileID: 4935914161864750418} + - {fileID: 3097883888345784054} + - {fileID: 2557290871786022883} + - {fileID: 5130141285697591134} + - {fileID: 1029178351064756532} + - {fileID: 4830960991343532976} + - {fileID: 3609869344792266581} + - {fileID: 7702342598273183683} + - {fileID: 8263932002211726789} + - {fileID: 46986526155918958} + - {fileID: 4038941365592156516} + - {fileID: 9027401759494858112} + - {fileID: 2006971926853278976} + - {fileID: 6099821193434505623} + - {fileID: 6095549730846027436} + - {fileID: 4281225624292822488} + - {fileID: 3347735418540642312} + - {fileID: 5460221536256242760} + - {fileID: 7720914278555990249} + - {fileID: 4523608188334145856} + - {fileID: 3119608742464780565} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 38101694036556137} + m_AABB: + m_Center: {x: 4.656613e-10, y: 0.011495378, z: -0.00028370414} + m_Extent: {x: 0.006864876, y: 0.0049977154, z: 0.005147933} + m_DirtyAABB: 0 +--- !u!1 &6772751989868431226 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1449764107670396836} + m_Layer: 0 + m_Name: mixamorig:LeftHandIndex1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1449764107670396836 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6772751989868431226} + m_LocalRotation: {x: 0.025758917, y: 0.022072563, z: -0.034884524, w: 0.9988155} + m_LocalPosition: {x: 0.0025373795, y: 0.0046996134, z: -0.00022197569} + m_LocalScale: {x: 0.99999994, y: 0.9999999, z: 1} + m_Children: + - {fileID: 6381046285418556939} + m_Father: {fileID: 8561193508396601175} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &6881047063294010940 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 9055611149103614817} + - component: {fileID: 5070678820014178608} + m_Layer: 0 + m_Name: head_main_low + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &9055611149103614817 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6881047063294010940} + m_LocalRotation: {x: -0.7071068, y: -2.6341795e-10, z: 1.0536695e-10, w: 0.7071067} + m_LocalPosition: {x: 0.000000016772749, y: 0.000000016522405, z: 2.6918413e-15} + m_LocalScale: {x: 28.000004, y: 27.999992, z: 27.999992} + m_Children: [] + m_Father: {fileID: 539745478100655087} + m_RootOrder: 12 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!137 &5070678820014178608 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6881047063294010940} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 60c2f0e0aaa8f8d4e9d23d7e3768653b, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: -141160598030540762, guid: 82a2914d8f86c62488456950c8330e38, type: 3} + m_Bones: + - {fileID: 38101694036556137} + - {fileID: 49447877029854415} + - {fileID: 3786663924609172669} + - {fileID: 2004308958455250584} + - {fileID: 1589130315247471224} + - {fileID: 7744703493559565592} + - {fileID: 668006632354280349} + - {fileID: 2561657633892041312} + - {fileID: 8465185068562539662} + - {fileID: 5869159519003263498} + - {fileID: 3772228501605983572} + - {fileID: 3234227603562185871} + - {fileID: 8561193508396601175} + - {fileID: 5936567709104571176} + - {fileID: 7211998777527855084} + - {fileID: 2892780539611831731} + - {fileID: 404684814211080889} + - {fileID: 1449764107670396836} + - {fileID: 6381046285418556939} + - {fileID: 1821246364037612516} + - {fileID: 8568605348027153028} + - {fileID: 5793013739203264410} + - {fileID: 3963437824237824200} + - {fileID: 8283759473277797880} + - {fileID: 6376361113228782779} + - {fileID: 2289493133889538587} + - {fileID: 789201070685644870} + - {fileID: 632919408841136468} + - {fileID: 8362226126786775428} + - {fileID: 6713046130348130031} + - {fileID: 1736390052843337352} + - {fileID: 2647666789720681232} + - {fileID: 1245275053966154892} + - {fileID: 7842801111801954127} + - {fileID: 5518930826735713987} + - {fileID: 650412000016856578} + - {fileID: 2827324758261372908} + - {fileID: 4625820438281264176} + - {fileID: 4935914161864750418} + - {fileID: 3097883888345784054} + - {fileID: 2557290871786022883} + - {fileID: 5130141285697591134} + - {fileID: 1029178351064756532} + - {fileID: 4830960991343532976} + - {fileID: 3609869344792266581} + - {fileID: 7702342598273183683} + - {fileID: 8263932002211726789} + - {fileID: 46986526155918958} + - {fileID: 4038941365592156516} + - {fileID: 9027401759494858112} + - {fileID: 2006971926853278976} + - {fileID: 6099821193434505623} + - {fileID: 6095549730846027436} + - {fileID: 4281225624292822488} + - {fileID: 3347735418540642312} + - {fileID: 5460221536256242760} + - {fileID: 7720914278555990249} + - {fileID: 4523608188334145856} + - {fileID: 3119608742464780565} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 38101694036556137} + m_AABB: + m_Center: {x: 9.313226e-10, y: 0.028362732, z: -0.00086725224} + m_Extent: {x: 0.011894388, y: 0.011190541, z: 0.011191756} + m_DirtyAABB: 0 +--- !u!1 &6887357795712282911 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3119608742464780565} + m_Layer: 0 + m_Name: mixamorig:RightToe_End + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3119608742464780565 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6887357795712282911} + m_LocalRotation: {x: 0.045736898, y: -0.039432693, z: -0.07275269, w: 0.9955201} + m_LocalPosition: {x: -1.6152625e-10, y: 0.0023627593, z: 4.842877e-10} + m_LocalScale: {x: 1, y: 0.99999994, z: 1} + m_Children: [] + m_Father: {fileID: 4523608188334145856} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &6974470746480169166 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8283759473277797880} + m_Layer: 0 + m_Name: mixamorig:LeftHandMiddle3 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8283759473277797880 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6974470746480169166} + m_LocalRotation: {x: -0.058209147, y: 0.002894446, z: 0.0026199205, w: 0.9982968} + m_LocalPosition: {x: -0.0000020551151, y: 0.0022241578, z: -0.0000000016406647} + m_LocalScale: {x: 0.99999994, y: 1, z: 1.0000001} + m_Children: + - {fileID: 6376361113228782779} + m_Father: {fileID: 3963437824237824200} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &6982769456987546001 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8263932002211726789} + m_Layer: 0 + m_Name: mixamorig:RightHandPinky2 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8263932002211726789 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6982769456987546001} + m_LocalRotation: {x: -0.025451161, y: 0.00014295697, z: 0.00014227511, w: 0.99967605} + m_LocalPosition: {x: -1.4959368e-10, y: 0.002752743, z: 0.000000002810193} + m_LocalScale: {x: 0.99999994, y: 1, z: 1} + m_Children: + - {fileID: 46986526155918958} + m_Father: {fileID: 7702342598273183683} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &7047284500789482003 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1895166094173782450} + - component: {fileID: 4511302626942741746} + m_Layer: 0 + m_Name: head_mohawk_low + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1895166094173782450 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7047284500789482003} + m_LocalRotation: {x: -0.7071068, y: 0, z: -0, w: 0.7071067} + m_LocalPosition: {x: -0, y: 2.6335877e-24, z: -1.6164846e-17} + m_LocalScale: {x: 28.000004, y: 28, z: 28} + m_Children: [] + m_Father: {fileID: 539745478100655087} + m_RootOrder: 13 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!137 &4511302626942741746 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7047284500789482003} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 60c2f0e0aaa8f8d4e9d23d7e3768653b, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: 5773629445030022820, guid: 82a2914d8f86c62488456950c8330e38, type: 3} + m_Bones: + - {fileID: 38101694036556137} + - {fileID: 49447877029854415} + - {fileID: 3786663924609172669} + - {fileID: 2004308958455250584} + - {fileID: 1589130315247471224} + - {fileID: 7744703493559565592} + - {fileID: 668006632354280349} + - {fileID: 2561657633892041312} + - {fileID: 8465185068562539662} + - {fileID: 5869159519003263498} + - {fileID: 3772228501605983572} + - {fileID: 3234227603562185871} + - {fileID: 8561193508396601175} + - {fileID: 5936567709104571176} + - {fileID: 7211998777527855084} + - {fileID: 2892780539611831731} + - {fileID: 404684814211080889} + - {fileID: 1449764107670396836} + - {fileID: 6381046285418556939} + - {fileID: 1821246364037612516} + - {fileID: 8568605348027153028} + - {fileID: 5793013739203264410} + - {fileID: 3963437824237824200} + - {fileID: 8283759473277797880} + - {fileID: 6376361113228782779} + - {fileID: 2289493133889538587} + - {fileID: 789201070685644870} + - {fileID: 632919408841136468} + - {fileID: 8362226126786775428} + - {fileID: 6713046130348130031} + - {fileID: 1736390052843337352} + - {fileID: 2647666789720681232} + - {fileID: 1245275053966154892} + - {fileID: 7842801111801954127} + - {fileID: 5518930826735713987} + - {fileID: 650412000016856578} + - {fileID: 2827324758261372908} + - {fileID: 4625820438281264176} + - {fileID: 4935914161864750418} + - {fileID: 3097883888345784054} + - {fileID: 2557290871786022883} + - {fileID: 5130141285697591134} + - {fileID: 1029178351064756532} + - {fileID: 4830960991343532976} + - {fileID: 3609869344792266581} + - {fileID: 7702342598273183683} + - {fileID: 8263932002211726789} + - {fileID: 46986526155918958} + - {fileID: 4038941365592156516} + - {fileID: 9027401759494858112} + - {fileID: 2006971926853278976} + - {fileID: 6099821193434505623} + - {fileID: 6095549730846027436} + - {fileID: 4281225624292822488} + - {fileID: 3347735418540642312} + - {fileID: 5460221536256242760} + - {fileID: 7720914278555990249} + - {fileID: 4523608188334145856} + - {fileID: 3119608742464780565} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 38101694036556137} + m_AABB: + m_Center: {x: 0, y: 0.035298243, z: -0.00046736095} + m_Extent: {x: 0.0034444488, y: 0.005933445, z: 0.01150519} + m_DirtyAABB: 0 +--- !u!1 &7085054738491863863 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3347735418540642312} + m_Layer: 0 + m_Name: mixamorig:RightUpLeg + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3347735418540642312 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7085054738491863863} + m_LocalRotation: {x: -0.00023406364, y: -0.008087971, z: 0.99964195, w: 0.025505608} + m_LocalPosition: {x: 0.0046964264, y: -0.000097808836, z: 0.00006266594} + m_LocalScale: {x: 1.0000329, y: 1, z: 1.0000032} + m_Children: + - {fileID: 5460221536256242760} + m_Father: {fileID: 38101694036556137} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &7195248419479151241 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5869159519003263498} + m_Layer: 0 + m_Name: mixamorig:LeftShoulder + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5869159519003263498 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7195248419479151241} + m_LocalRotation: {x: 0.44886628, y: -0.5215398, z: 0.48690292, w: 0.53799707} + m_LocalPosition: {x: -0.0051535415, y: 0.0061933035, z: -0.0009587702} + m_LocalScale: {x: 1.0000001, y: 1.0000001, z: 1.0000001} + m_Children: + - {fileID: 3772228501605983572} + m_Father: {fileID: 2004308958455250584} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &7403674876450116470 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7702342598273183683} + m_Layer: 0 + m_Name: mixamorig:RightHandPinky1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7702342598273183683 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7403674876450116470} + m_LocalRotation: {x: 0.0489316, y: -0.016163496, z: 0.040470988, w: 0.997851} + m_LocalPosition: {x: 0.0020207374, y: 0.0049411217, z: -0.00019330285} + m_LocalScale: {x: 0.99999994, y: 0.99999994, z: 0.9999999} + m_Children: + - {fileID: 8263932002211726789} + m_Father: {fileID: 1245275053966154892} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &7439667444704066165 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3772228501605983572} + m_Layer: 0 + m_Name: mixamorig:LeftArm + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3772228501605983572 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7439667444704066165} + m_LocalRotation: {x: 0.0856364, y: -0.006608644, z: 0.010808363, w: 0.9962459} + m_LocalPosition: {x: 9.3132255e-12, y: 0.0015929624, z: 7.4505804e-11} + m_LocalScale: {x: 0.9999999, y: 0.99999994, z: 1} + m_Children: + - {fileID: 3234227603562185871} + m_Father: {fileID: 5869159519003263498} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &7473569449453347185 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3234227603562185871} + m_Layer: 0 + m_Name: mixamorig:LeftForeArm + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3234227603562185871 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7473569449453347185} + m_LocalRotation: {x: -0.02349268, y: 0.011118597, z: -0.031047342, w: 0.99917996} + m_LocalPosition: {x: 3.7252902e-11, y: 0.006685836, z: 5.3085386e-10} + m_LocalScale: {x: 1, y: 0.99999994, z: 0.99999994} + m_Children: + - {fileID: 8561193508396601175} + m_Father: {fileID: 3772228501605983572} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &7601808759548914718 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2827324758261372908} + m_Layer: 0 + m_Name: mixamorig:RightHandThumb4 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2827324758261372908 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7601808759548914718} + m_LocalRotation: {x: 0.02006723, y: -0.04093222, z: -0.014504653, w: 0.9988551} + m_LocalPosition: {x: -8.9406965e-10, y: 0.0024554105, z: 2.2351741e-10} + m_LocalScale: {x: 1, y: 1, z: 1.0000001} + m_Children: [] + m_Father: {fileID: 650412000016856578} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &7623371497095887828 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6376361113228782779} + m_Layer: 0 + m_Name: mixamorig:LeftHandMiddle4 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6376361113228782779 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7623371497095887828} + m_LocalRotation: {x: 0.010558283, y: -0.002861043, z: -0.0028609226, w: 0.9999361} + m_LocalPosition: {x: -0, y: 0.00075213314, z: -2.5785993e-10} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 8283759473277797880} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &7678658565353738172 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5793013739203264410} + m_Layer: 0 + m_Name: mixamorig:LeftHandMiddle1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5793013739203264410 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7678658565353738172} + m_LocalRotation: {x: -0.012620335, y: 0.03131938, z: -0.026116652, w: 0.99908847} + m_LocalPosition: {x: 0.00031127295, y: 0.0050714696, z: -0.000049081573} + m_LocalScale: {x: 0.99999994, y: 0.99999994, z: 1} + m_Children: + - {fileID: 3963437824237824200} + m_Father: {fileID: 8561193508396601175} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &7969958674907073206 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6381046285418556939} + m_Layer: 0 + m_Name: mixamorig:LeftHandIndex2 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6381046285418556939 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7969958674907073206} + m_LocalRotation: {x: -0.0019515395, y: -0.005228092, z: -0.0052265446, w: 0.9999708} + m_LocalPosition: {x: 1.862645e-10, y: 0.0026217757, z: 0.0000000013853423} + m_LocalScale: {x: 1, y: 1, z: 0.99999994} + m_Children: + - {fileID: 1821246364037612516} + m_Father: {fileID: 1449764107670396836} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &8114064758857650266 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 632919408841136468} + m_Layer: 0 + m_Name: mixamorig:LeftHandPinky3 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &632919408841136468 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8114064758857650266} + m_LocalRotation: {x: -5.695085e-17, y: 0.00000023841983, z: -2.2725062e-12, w: 1} + m_LocalPosition: {x: -3.8882017e-10, y: 0.0022338866, z: 8.2124e-10} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 8362226126786775428} + m_Father: {fileID: 789201070685644870} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &8264871781503513258 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4762027720569035291} + - component: {fileID: 8194485845489908233} + m_Layer: 0 + m_Name: head_screen_low + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4762027720569035291 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8264871781503513258} + m_LocalRotation: {x: -0.7071068, y: 0, z: -0, w: 0.7071067} + m_LocalPosition: {x: -0, y: 2.6335877e-24, z: -1.6164846e-17} + m_LocalScale: {x: 28.000004, y: 28, z: 28} + m_Children: [] + m_Father: {fileID: 539745478100655087} + m_RootOrder: 14 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!137 &8194485845489908233 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8264871781503513258} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 60c2f0e0aaa8f8d4e9d23d7e3768653b, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: 4128572229992806585, guid: 82a2914d8f86c62488456950c8330e38, type: 3} + m_Bones: + - {fileID: 38101694036556137} + - {fileID: 49447877029854415} + - {fileID: 3786663924609172669} + - {fileID: 2004308958455250584} + - {fileID: 1589130315247471224} + - {fileID: 7744703493559565592} + - {fileID: 668006632354280349} + - {fileID: 2561657633892041312} + - {fileID: 8465185068562539662} + - {fileID: 5869159519003263498} + - {fileID: 3772228501605983572} + - {fileID: 3234227603562185871} + - {fileID: 8561193508396601175} + - {fileID: 5936567709104571176} + - {fileID: 7211998777527855084} + - {fileID: 2892780539611831731} + - {fileID: 404684814211080889} + - {fileID: 1449764107670396836} + - {fileID: 6381046285418556939} + - {fileID: 1821246364037612516} + - {fileID: 8568605348027153028} + - {fileID: 5793013739203264410} + - {fileID: 3963437824237824200} + - {fileID: 8283759473277797880} + - {fileID: 6376361113228782779} + - {fileID: 2289493133889538587} + - {fileID: 789201070685644870} + - {fileID: 632919408841136468} + - {fileID: 8362226126786775428} + - {fileID: 6713046130348130031} + - {fileID: 1736390052843337352} + - {fileID: 2647666789720681232} + - {fileID: 1245275053966154892} + - {fileID: 7842801111801954127} + - {fileID: 5518930826735713987} + - {fileID: 650412000016856578} + - {fileID: 2827324758261372908} + - {fileID: 4625820438281264176} + - {fileID: 4935914161864750418} + - {fileID: 3097883888345784054} + - {fileID: 2557290871786022883} + - {fileID: 5130141285697591134} + - {fileID: 1029178351064756532} + - {fileID: 4830960991343532976} + - {fileID: 3609869344792266581} + - {fileID: 7702342598273183683} + - {fileID: 8263932002211726789} + - {fileID: 46986526155918958} + - {fileID: 4038941365592156516} + - {fileID: 9027401759494858112} + - {fileID: 2006971926853278976} + - {fileID: 6099821193434505623} + - {fileID: 6095549730846027436} + - {fileID: 4281225624292822488} + - {fileID: 3347735418540642312} + - {fileID: 5460221536256242760} + - {fileID: 7720914278555990249} + - {fileID: 4523608188334145856} + - {fileID: 3119608742464780565} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 38101694036556137} + m_AABB: + m_Center: {x: 0, y: 0.028118715, z: 0.0070655644} + m_Extent: {x: 0.009386432, y: 0.006465099, z: 0.0014776911} + m_DirtyAABB: 0 +--- !u!1 &8529237798236686657 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1736390052843337352} + m_Layer: 0 + m_Name: mixamorig:RightArm + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1736390052843337352 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8529237798236686657} + m_LocalRotation: {x: 0.0856364, y: 0.006608644, z: -0.010808363, w: 0.9962459} + m_LocalPosition: {x: -9.3132255e-12, y: 0.0015929624, z: 7.4505804e-11} + m_LocalScale: {x: 0.9999999, y: 0.99999994, z: 1} + m_Children: + - {fileID: 2647666789720681232} + m_Father: {fileID: 6713046130348130031} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &8537379886573589508 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3786663924609172669} + m_Layer: 0 + m_Name: mixamorig:Spine1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3786663924609172669 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8537379886573589508} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0, y: 0.0015119934, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 2004308958455250584} + m_Father: {fileID: 49447877029854415} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &8727390975867019485 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2006971926853278976} + m_Layer: 0 + m_Name: mixamorig:LeftLeg + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2006971926853278976 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8727390975867019485} + m_LocalRotation: {x: 0.07751489, y: -0.0025662382, z: -0.043736637, w: 0.9960281} + m_LocalPosition: {x: -3.910145e-10, y: 0.007955141, z: -8.731149e-13} + m_LocalScale: {x: 1, y: 0.99999994, z: 0.9999999} + m_Children: + - {fileID: 6099821193434505623} + m_Father: {fileID: 9027401759494858112} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &8806910139863684575 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2289493133889538587} + m_Layer: 0 + m_Name: mixamorig:LeftHandPinky1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2289493133889538587 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8806910139863684575} + m_LocalRotation: {x: 0.0489316, y: 0.016163496, z: -0.040470988, w: 0.997851} + m_LocalPosition: {x: -0.0020207374, y: 0.0049411217, z: -0.00019330285} + m_LocalScale: {x: 0.99999994, y: 0.99999994, z: 0.9999999} + m_Children: + - {fileID: 789201070685644870} + m_Father: {fileID: 8561193508396601175} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &8822005323306735904 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2970148365805308159} + - component: {fileID: 2816789308878620365} + m_Layer: 0 + m_Name: finger_index_low + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2970148365805308159 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8822005323306735904} + m_LocalRotation: {x: -0.7071068, y: -0.0000000050312807, z: -0.0000000020810018, w: 0.7071067} + m_LocalPosition: {x: 0.0000000040164867, y: -0.000000089993634, z: -0.000000009981487} + m_LocalScale: {x: 28.000004, y: 28, z: 28} + m_Children: [] + m_Father: {fileID: 539745478100655087} + m_RootOrder: 6 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!137 &2816789308878620365 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8822005323306735904} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 60c2f0e0aaa8f8d4e9d23d7e3768653b, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: 7762989289229432340, guid: 82a2914d8f86c62488456950c8330e38, type: 3} + m_Bones: + - {fileID: 38101694036556137} + - {fileID: 49447877029854415} + - {fileID: 3786663924609172669} + - {fileID: 2004308958455250584} + - {fileID: 1589130315247471224} + - {fileID: 7744703493559565592} + - {fileID: 668006632354280349} + - {fileID: 2561657633892041312} + - {fileID: 8465185068562539662} + - {fileID: 5869159519003263498} + - {fileID: 3772228501605983572} + - {fileID: 3234227603562185871} + - {fileID: 8561193508396601175} + - {fileID: 5936567709104571176} + - {fileID: 7211998777527855084} + - {fileID: 2892780539611831731} + - {fileID: 404684814211080889} + - {fileID: 1449764107670396836} + - {fileID: 6381046285418556939} + - {fileID: 1821246364037612516} + - {fileID: 8568605348027153028} + - {fileID: 5793013739203264410} + - {fileID: 3963437824237824200} + - {fileID: 8283759473277797880} + - {fileID: 6376361113228782779} + - {fileID: 2289493133889538587} + - {fileID: 789201070685644870} + - {fileID: 632919408841136468} + - {fileID: 8362226126786775428} + - {fileID: 6713046130348130031} + - {fileID: 1736390052843337352} + - {fileID: 2647666789720681232} + - {fileID: 1245275053966154892} + - {fileID: 7842801111801954127} + - {fileID: 5518930826735713987} + - {fileID: 650412000016856578} + - {fileID: 2827324758261372908} + - {fileID: 4625820438281264176} + - {fileID: 4935914161864750418} + - {fileID: 3097883888345784054} + - {fileID: 2557290871786022883} + - {fileID: 5130141285697591134} + - {fileID: 1029178351064756532} + - {fileID: 4830960991343532976} + - {fileID: 3609869344792266581} + - {fileID: 7702342598273183683} + - {fileID: 8263932002211726789} + - {fileID: 46986526155918958} + - {fileID: 4038941365592156516} + - {fileID: 9027401759494858112} + - {fileID: 2006971926853278976} + - {fileID: 6099821193434505623} + - {fileID: 6095549730846027436} + - {fileID: 4281225624292822488} + - {fileID: 3347735418540642312} + - {fileID: 5460221536256242760} + - {fileID: 7720914278555990249} + - {fileID: 4523608188334145856} + - {fileID: 3119608742464780565} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 38101694036556137} + m_AABB: + m_Center: {x: 9.313226e-10, y: 0.014146086, z: 0.0007876102} + m_Extent: {x: 0.03044666, y: 0.0013476508, z: 0.0013725013} + m_DirtyAABB: 0 +--- !u!1 &8832146669660610445 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4935914161864750418} + m_Layer: 0 + m_Name: mixamorig:RightHandIndex2 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4935914161864750418 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8832146669660610445} + m_LocalRotation: {x: -0.0019515395, y: 0.005228092, z: 0.0052265446, w: 0.9999708} + m_LocalPosition: {x: -1.862645e-10, y: 0.0026217757, z: 0.0000000013853423} + m_LocalScale: {x: 1, y: 1, z: 0.99999994} + m_Children: + - {fileID: 3097883888345784054} + m_Father: {fileID: 4625820438281264176} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &9000909490575413416 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2561657633892041312} + m_Layer: 0 + m_Name: mixamorig:LeftEar + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2561657633892041312 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 9000909490575413416} + m_LocalRotation: {x: 0.4050642, y: -0.45798048, z: 0.5935722, w: 0.5233059} + m_LocalPosition: {x: -0.01142189, y: 0.008629899, z: -0.0021856788} + m_LocalScale: {x: 1.0000001, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 7744703493559565592} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &9016668082142169562 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4038941365592156516} + m_Layer: 0 + m_Name: mixamorig:RightHandPinky4 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4038941365592156516 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 9016668082142169562} + m_LocalRotation: {x: 0.044519458, y: 0.00000011909107, z: -0.0000000033611263, w: 0.99900854} + m_LocalPosition: {x: 3.235408e-10, y: 0.0009765623, z: -5.703486e-10} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 46986526155918958} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &9104068794551176336 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5130141285697591134} + m_Layer: 0 + m_Name: mixamorig:RightHandMiddle1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5130141285697591134 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 9104068794551176336} + m_LocalRotation: {x: -0.012620335, y: -0.03131938, z: 0.026116652, w: 0.99908847} + m_LocalPosition: {x: -0.00031127295, y: 0.0050714696, z: -0.000049081573} + m_LocalScale: {x: 0.99999994, y: 0.99999994, z: 1} + m_Children: + - {fileID: 1029178351064756532} + m_Father: {fileID: 1245275053966154892} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &9193520577189230984 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7744703493559565592} + m_Layer: 0 + m_Name: mixamorig:Head + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7744703493559565592 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 9193520577189230984} + m_LocalRotation: {x: 0.056340646, y: 8.164802e-19, z: 1.1755652e-17, w: 0.99841166} + m_LocalPosition: {x: 8.283988e-24, y: 0.0030691673, z: 0.000090436486} + m_LocalScale: {x: 1, y: 1, z: 0.99999994} + m_Children: + - {fileID: 668006632354280349} + - {fileID: 2561657633892041312} + - {fileID: 8465185068562539662} + m_Father: {fileID: 1589130315247471224} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &9211191336881636166 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4625820438281264176} + m_Layer: 0 + m_Name: mixamorig:RightHandIndex1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4625820438281264176 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 9211191336881636166} + m_LocalRotation: {x: 0.025758917, y: -0.022072563, z: 0.034884524, w: 0.9988155} + m_LocalPosition: {x: -0.0025373795, y: 0.0046996134, z: -0.00022197569} + m_LocalScale: {x: 0.99999994, y: 0.9999999, z: 1} + m_Children: + - {fileID: 4935914161864750418} + m_Father: {fileID: 1245275053966154892} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} diff --git a/Assets/Jammo-Character/Prefabs/Jammo_Player.prefab.meta b/Assets/Jammo-Character/Prefabs/Jammo_Player.prefab.meta new file mode 100644 index 0000000..c63f96e --- /dev/null +++ b/Assets/Jammo-Character/Prefabs/Jammo_Player.prefab.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: bd6ee82c5e06b3f4f86113cbf8261ae1 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Jammo-Character/Scenes.meta b/Assets/Jammo-Character/Scenes.meta new file mode 100644 index 0000000..136f17d --- /dev/null +++ b/Assets/Jammo-Character/Scenes.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 4bcebd09e16291b4fb14e07f32300e83 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Jammo-Character/Scenes/JammoScene.meta b/Assets/Jammo-Character/Scenes/JammoScene.meta new file mode 100644 index 0000000..b75fc7e --- /dev/null +++ b/Assets/Jammo-Character/Scenes/JammoScene.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 5a89a556b75cbb542a8cb1d24a0034eb +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Jammo-Character/Scenes/JammoScene.unity b/Assets/Jammo-Character/Scenes/JammoScene.unity new file mode 100644 index 0000000..3d4680f --- /dev/null +++ b/Assets/Jammo-Character/Scenes/JammoScene.unity @@ -0,0 +1,2875 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!29 &1 +OcclusionCullingSettings: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_OcclusionBakeSettings: + smallestOccluder: 5 + smallestHole: 0.25 + backfaceThreshold: 100 + m_SceneGUID: 00000000000000000000000000000000 + m_OcclusionCullingData: {fileID: 0} +--- !u!104 &2 +RenderSettings: + m_ObjectHideFlags: 0 + serializedVersion: 9 + m_Fog: 0 + m_FogColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_FogMode: 3 + m_FogDensity: 0.01 + m_LinearFogStart: 0 + m_LinearFogEnd: 300 + m_AmbientSkyColor: {r: 0.212, g: 0.227, b: 0.259, a: 1} + m_AmbientEquatorColor: {r: 0.114, g: 0.125, b: 0.133, a: 1} + m_AmbientGroundColor: {r: 0.047, g: 0.043, b: 0.035, a: 1} + m_AmbientIntensity: 1 + m_AmbientMode: 0 + m_SubtractiveShadowColor: {r: 0.42, g: 0.478, b: 0.627, a: 1} + m_SkyboxMaterial: {fileID: 2100000, guid: d69071256986a1c4bb4872d222c6ae6e, type: 2} + m_HaloStrength: 0.5 + m_FlareStrength: 1 + m_FlareFadeSpeed: 3 + m_HaloTexture: {fileID: 0} + m_SpotCookie: {fileID: 10001, guid: 0000000000000000e000000000000000, type: 0} + m_DefaultReflectionMode: 0 + m_DefaultReflectionResolution: 128 + m_ReflectionBounces: 1 + m_ReflectionIntensity: 1 + m_CustomReflection: {fileID: 0} + m_Sun: {fileID: 705507994} + m_IndirectSpecularColor: {r: 0.610839, g: 0.7744139, b: 1.0039052, a: 1} + m_UseRadianceAmbientProbe: 0 +--- !u!157 &3 +LightmapSettings: + m_ObjectHideFlags: 0 + serializedVersion: 11 + m_GIWorkflowMode: 1 + m_GISettings: + serializedVersion: 2 + m_BounceScale: 1 + m_IndirectOutputScale: 1 + m_AlbedoBoost: 1 + m_EnvironmentLightingMode: 0 + m_EnableBakedLightmaps: 1 + m_EnableRealtimeLightmaps: 0 + m_LightmapEditorSettings: + serializedVersion: 12 + m_Resolution: 2 + m_BakeResolution: 40 + m_AtlasSize: 1024 + m_AO: 0 + m_AOMaxDistance: 1 + m_CompAOExponent: 1 + m_CompAOExponentDirect: 0 + m_ExtractAmbientOcclusion: 0 + m_Padding: 2 + m_LightmapParameters: {fileID: 0} + m_LightmapsBakeMode: 1 + m_TextureCompression: 0 + m_FinalGather: 0 + m_FinalGatherFiltering: 1 + m_FinalGatherRayCount: 256 + m_ReflectionCompression: 2 + m_MixedBakeMode: 2 + m_BakeBackend: 2 + m_PVRSampling: 1 + m_PVRDirectSampleCount: 32 + m_PVRSampleCount: 500 + m_PVRBounces: 2 + m_PVREnvironmentSampleCount: 500 + m_PVREnvironmentReferencePointCount: 2048 + m_PVRFilteringMode: 1 + m_PVRDenoiserTypeDirect: 0 + m_PVRDenoiserTypeIndirect: 0 + m_PVRDenoiserTypeAO: 0 + m_PVRFilterTypeDirect: 0 + m_PVRFilterTypeIndirect: 0 + m_PVRFilterTypeAO: 0 + m_PVREnvironmentMIS: 0 + m_PVRCulling: 1 + m_PVRFilteringGaussRadiusDirect: 1 + m_PVRFilteringGaussRadiusIndirect: 5 + m_PVRFilteringGaussRadiusAO: 2 + m_PVRFilteringAtrousPositionSigmaDirect: 0.5 + m_PVRFilteringAtrousPositionSigmaIndirect: 2 + m_PVRFilteringAtrousPositionSigmaAO: 1 + m_ExportTrainingData: 0 + m_TrainingDataDestination: TrainingData + m_LightingDataAsset: {fileID: 112000000, guid: d920f0d5477a8a24298b99e3e17bc623, + type: 2} + m_UseShadowmask: 1 +--- !u!196 &4 +NavMeshSettings: + serializedVersion: 2 + m_ObjectHideFlags: 0 + m_BuildSettings: + serializedVersion: 2 + agentTypeID: 0 + agentRadius: 0.5 + agentHeight: 2 + agentSlope: 45 + agentClimb: 0.4 + ledgeDropHeight: 0 + maxJumpAcrossDistance: 0 + minRegionArea: 2 + manualCellSize: 0 + cellSize: 0.16666667 + manualTileSize: 0 + tileSize: 256 + accuratePlacement: 0 + debug: + m_Flags: 0 + m_NavMeshData: {fileID: 0} +--- !u!1 &32187758 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 32187759} + - component: {fileID: 32187760} + - component: {fileID: 32187761} + m_Layer: 5 + m_Name: Organizer + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &32187759 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 32187758} + 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_Children: + - {fileID: 1671846044} + - {fileID: 698143171} + - {fileID: 1629514406} + m_Father: {fileID: 230338219} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 30, y: -30} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} +--- !u!114 &32187760 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 32187758} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 59f8146938fff824cb5fd77236b75775, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 0 + m_Right: 0 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 0 + m_Spacing: 0 + m_ChildForceExpandWidth: 1 + m_ChildForceExpandHeight: 0 + m_ChildControlWidth: 0 + m_ChildControlHeight: 0 + m_ChildScaleWidth: 0 + m_ChildScaleHeight: 0 +--- !u!114 &32187761 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 32187758} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 3245ec927659c4140ac4f8d17403cc18, type: 3} + m_Name: + m_EditorClassIdentifier: + m_HorizontalFit: 2 + m_VerticalFit: 2 +--- !u!1 &46016744 +GameObject: + m_ObjectHideFlags: 3 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 46016746} + - component: {fileID: 46016745} + m_Layer: 0 + m_Name: TopRig + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &46016745 +MonoBehaviour: + m_ObjectHideFlags: 3 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 46016744} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 45e653bab7fb20e499bda25e1b646fea, type: 3} + m_Name: + m_EditorClassIdentifier: + m_ExcludedPropertiesInInspector: + - m_Script + - Header + - Extensions + - m_Priority + - m_Transitions + - m_Follow + - m_StandbyUpdate + - m_Lens + m_LockStageInInspector: 00000000 + m_StreamingVersion: 20170927 + m_Priority: 10 + m_StandbyUpdate: 2 + m_LookAt: {fileID: 0} + m_Follow: {fileID: 0} + m_Lens: + FieldOfView: 40 + OrthographicSize: 10 + NearClipPlane: 0.1 + FarClipPlane: 5000 + Dutch: 0 + LensShift: {x: 0, y: 0} + m_Transitions: + m_BlendHint: 0 + m_InheritPosition: 0 + m_OnCameraLive: + m_PersistentCalls: + m_Calls: [] + m_TypeName: Cinemachine.CinemachineBrain+VcamActivatedEvent, Cinemachine, Version=0.0.0.0, + Culture=neutral, PublicKeyToken=null + m_LegacyBlendHint: 0 + m_ComponentOwner: {fileID: 790479333} +--- !u!4 &46016746 +Transform: + m_ObjectHideFlags: 3 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 46016744} + m_LocalRotation: {x: 0.12217311, y: -0.012795451, z: 0.0015752247, w: 0.9924251} + m_LocalPosition: {x: 0, y: 0, z: -0.0000009536743} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 790479333} + m_Father: {fileID: 962302854} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &58949065 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 58949066} + - component: {fileID: 58949067} + m_Layer: 8 + m_Name: Post + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &58949066 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 58949065} + 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_Children: [] + m_Father: {fileID: 963194228} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &58949067 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 58949065} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 8b9a305e18de0c04dbd257a21cd47087, type: 3} + m_Name: + m_EditorClassIdentifier: + sharedProfile: {fileID: 11400000, guid: beb8e357b61332141b55e69963cf4f96, type: 2} + isGlobal: 1 + blendDistance: 0 + weight: 1 + priority: 0 +--- !u!1 &230338215 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 230338219} + - component: {fileID: 230338218} + - component: {fileID: 230338217} + - component: {fileID: 230338216} + m_Layer: 5 + m_Name: Canvas + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &230338216 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 230338215} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: dc42784cf147c0c48a680349fa168899, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreReversedGraphics: 1 + m_BlockingObjects: 0 + m_BlockingMask: + serializedVersion: 2 + m_Bits: 4294967295 +--- !u!114 &230338217 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 230338215} + 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 +--- !u!223 &230338218 +Canvas: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 230338215} + m_Enabled: 1 + serializedVersion: 3 + m_RenderMode: 0 + m_Camera: {fileID: 963194227} + m_PlaneDistance: 11.26 + m_PixelPerfect: 0 + m_ReceivesEvents: 1 + m_OverrideSorting: 0 + m_OverridePixelPerfect: 0 + m_SortingBucketNormalizedSize: 0 + m_AdditionalShaderChannelsFlag: 0 + m_SortingLayerID: 0 + m_SortingOrder: 0 + m_TargetDisplay: 0 +--- !u!224 &230338219 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 230338215} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 32187759} + m_Father: {fileID: 0} + m_RootOrder: 6 + 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: 0, y: 0} + m_Pivot: {x: 0, y: 0} +--- !u!1 &330835184 +GameObject: + m_ObjectHideFlags: 3 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 330835185} + - component: {fileID: 330835188} + - component: {fileID: 330835187} + - component: {fileID: 330835186} + m_Layer: 0 + m_Name: cm + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &330835185 +Transform: + m_ObjectHideFlags: 3 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 330835184} + 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_Children: [] + m_Father: {fileID: 1183249616} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &330835186 +MonoBehaviour: + m_ObjectHideFlags: 3 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 330835184} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4044717213e31446939f7bd49c896ea, type: 3} + m_Name: + m_EditorClassIdentifier: + m_TrackedObjectOffset: {x: 0, y: 0.86, z: 0} + m_LookaheadTime: 0 + m_LookaheadSmoothing: 10 + m_LookaheadIgnoreY: 0 + m_HorizontalDamping: 0.5 + m_VerticalDamping: 0.5 + m_ScreenX: 0.5 + m_ScreenY: 0.487 + m_DeadZoneWidth: 0 + m_DeadZoneHeight: 0 + m_SoftZoneWidth: 0.8 + m_SoftZoneHeight: 0.8 + m_BiasX: 0 + m_BiasY: 0 + m_CenterOnActivate: 0 +--- !u!114 &330835187 +MonoBehaviour: + m_ObjectHideFlags: 3 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 330835184} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9384ab8608cdc3d479fe89cd51eed48f, type: 3} + m_Name: + m_EditorClassIdentifier: + m_BindingMode: 4 + m_FollowOffset: {x: 0, y: 0.43, z: -2.82} + m_XDamping: 1 + m_YDamping: 1 + m_ZDamping: 1 + m_AngularDampingMode: 0 + m_PitchDamping: 0 + m_YawDamping: 0 + m_RollDamping: 0 + m_AngularDamping: 0 + m_Heading: + m_Definition: 0 + m_VelocityFilterStrength: 4 + m_Bias: 0 + m_RecenterToTargetHeading: + m_enabled: 1 + m_WaitTime: 1 + m_RecenteringTime: 2 + m_LegacyHeadingDefinition: -1 + m_LegacyVelocityFilterStrength: -1 + m_XAxis: + Value: 180 + m_MaxSpeed: 300 + m_AccelTime: 0.1 + m_DecelTime: 0.1 + m_InputAxisName: + m_InputAxisValue: 0 + m_InvertInput: 1 + m_MinValue: -180 + m_MaxValue: 180 + m_Wrap: 1 + m_Recentering: + m_enabled: 0 + m_WaitTime: 1 + m_RecenteringTime: 2 + m_LegacyHeadingDefinition: -1 + m_LegacyVelocityFilterStrength: -1 + m_LegacyRadius: 3.4028235e+38 + m_LegacyHeightOffset: 3.4028235e+38 + m_LegacyHeadingBias: 3.4028235e+38 + m_HeadingIsSlave: 0 +--- !u!114 &330835188 +MonoBehaviour: + m_ObjectHideFlags: 3 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 330835184} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: ac0b09e7857660247b1477e93731de29, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!1 &369620723 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 369620727} + - component: {fileID: 369620726} + - component: {fileID: 369620725} + - component: {fileID: 369620724} + m_Layer: 0 + m_Name: Cube (5) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 4294967295 + m_IsActive: 1 +--- !u!65 &369620724 +BoxCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 369620723} + m_Material: {fileID: 0} + m_IsTrigger: 0 + m_Enabled: 1 + serializedVersion: 2 + m_Size: {x: 1, y: 1, z: 1} + m_Center: {x: 0, y: 0, z: 0} +--- !u!23 &369620725 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 369620723} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: ac02e0546055b854f8600e1708139ff8, 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 +--- !u!33 &369620726 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 369620723} + m_Mesh: {fileID: 10202, guid: 0000000000000000e000000000000000, type: 0} +--- !u!4 &369620727 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 369620723} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 10.45, y: 0.16, z: 0} + m_LocalScale: {x: 0.90259004, y: 1, z: 32.5} + m_Children: [] + m_Father: {fileID: 704140098} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &374545553 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 374545554} + m_Layer: 0 + m_Name: Cameras + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &374545554 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 374545553} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: -0.7009731, y: 1.532256, z: -1.8163602} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 962302854} + - {fileID: 534511752} + - {fileID: 1183249616} + m_Father: {fileID: 0} + m_RootOrder: 4 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &506539351 +GameObject: + m_ObjectHideFlags: 3 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 506539352} + - component: {fileID: 506539355} + - component: {fileID: 506539354} + - component: {fileID: 506539353} + m_Layer: 0 + m_Name: cm + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &506539352 +Transform: + m_ObjectHideFlags: 3 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 506539351} + 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_Children: [] + m_Father: {fileID: 1551315837} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &506539353 +MonoBehaviour: + m_ObjectHideFlags: 3 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 506539351} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4044717213e31446939f7bd49c896ea, type: 3} + m_Name: + m_EditorClassIdentifier: + m_TrackedObjectOffset: {x: 0, y: 1, z: 0} + m_LookaheadTime: 0 + m_LookaheadSmoothing: 10 + m_LookaheadIgnoreY: 0 + m_HorizontalDamping: 0 + m_VerticalDamping: 0 + m_ScreenX: 0.5 + m_ScreenY: 0.6 + m_DeadZoneWidth: 0 + m_DeadZoneHeight: 0 + m_SoftZoneWidth: 0.8 + m_SoftZoneHeight: 0.8 + m_BiasX: 0 + m_BiasY: 0 + m_CenterOnActivate: 1 +--- !u!114 &506539354 +MonoBehaviour: + m_ObjectHideFlags: 3 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 506539351} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9384ab8608cdc3d479fe89cd51eed48f, type: 3} + m_Name: + m_EditorClassIdentifier: + m_BindingMode: 5 + m_FollowOffset: {x: 0, y: 2.5, z: -6} + m_XDamping: 1 + m_YDamping: 0 + m_ZDamping: 0 + m_AngularDampingMode: 0 + m_PitchDamping: 0 + m_YawDamping: 0 + m_RollDamping: 0 + m_AngularDamping: 0 + m_Heading: + m_Definition: 2 + m_VelocityFilterStrength: 4 + m_Bias: 0 + m_RecenterToTargetHeading: + m_enabled: 0 + m_WaitTime: 1 + m_RecenteringTime: 2 + m_LegacyHeadingDefinition: -1 + m_LegacyVelocityFilterStrength: -1 + m_XAxis: + Value: 0 + m_MaxSpeed: 700 + m_AccelTime: 0.1 + m_DecelTime: 0.1 + m_InputAxisName: Mouse X + m_InputAxisValue: 0 + m_InvertInput: 0 + m_MinValue: -180 + m_MaxValue: 180 + m_Wrap: 1 + m_Recentering: + m_enabled: 0 + m_WaitTime: 1 + m_RecenteringTime: 2 + m_LegacyHeadingDefinition: -1 + m_LegacyVelocityFilterStrength: -1 + m_LegacyRadius: 3.4028235e+38 + m_LegacyHeightOffset: 3.4028235e+38 + m_LegacyHeadingBias: 3.4028235e+38 + m_HeadingIsSlave: 1 +--- !u!114 &506539355 +MonoBehaviour: + m_ObjectHideFlags: 3 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 506539351} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: ac0b09e7857660247b1477e93731de29, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!1 &534511750 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 534511752} + - component: {fileID: 534511751} + m_Layer: 0 + m_Name: CM vcam1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &534511751 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 534511750} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 45e653bab7fb20e499bda25e1b646fea, type: 3} + m_Name: + m_EditorClassIdentifier: + m_ExcludedPropertiesInInspector: + - m_Script + m_LockStageInInspector: + m_StreamingVersion: 20170927 + m_Priority: 10 + m_StandbyUpdate: 2 + m_LookAt: {fileID: 5006512736820427411} + m_Follow: {fileID: 5006512736820427411} + m_Lens: + FieldOfView: 40 + OrthographicSize: 10 + NearClipPlane: 0.1 + FarClipPlane: 5000 + Dutch: 0 + LensShift: {x: 0, y: 0} + m_Transitions: + m_BlendHint: 0 + m_InheritPosition: 0 + m_OnCameraLive: + m_PersistentCalls: + m_Calls: [] + m_TypeName: Cinemachine.CinemachineBrain+VcamActivatedEvent, Cinemachine, Version=0.0.0.0, + Culture=neutral, PublicKeyToken=null + m_LegacyBlendHint: 0 + m_ComponentOwner: {fileID: 930926622} +--- !u!4 &534511752 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 534511750} + m_LocalRotation: {x: -0.00000013303864, y: -0.9979904, z: 0.06336542, w: 0.00000006462321} + m_LocalPosition: {x: 0.70097345, y: -0.3222561, z: 5.8163605} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 930926622} + m_Father: {fileID: 374545554} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &681920758 +GameObject: + m_ObjectHideFlags: 3 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 681920759} + - component: {fileID: 681920762} + - component: {fileID: 681920761} + - component: {fileID: 681920760} + m_Layer: 0 + m_Name: cm + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &681920759 +Transform: + m_ObjectHideFlags: 3 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 681920758} + 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_Children: [] + m_Father: {fileID: 1584003994} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &681920760 +MonoBehaviour: + m_ObjectHideFlags: 3 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 681920758} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4044717213e31446939f7bd49c896ea, type: 3} + m_Name: + m_EditorClassIdentifier: + m_TrackedObjectOffset: {x: 0, y: 1, z: 0} + m_LookaheadTime: 0 + m_LookaheadSmoothing: 10 + m_LookaheadIgnoreY: 0 + m_HorizontalDamping: 0 + m_VerticalDamping: 0 + m_ScreenX: 0.5 + m_ScreenY: 0.55 + m_DeadZoneWidth: 0 + m_DeadZoneHeight: 0 + m_SoftZoneWidth: 0.8 + m_SoftZoneHeight: 0.8 + m_BiasX: 0 + m_BiasY: 0 + m_CenterOnActivate: 1 +--- !u!114 &681920761 +MonoBehaviour: + m_ObjectHideFlags: 3 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 681920758} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9384ab8608cdc3d479fe89cd51eed48f, type: 3} + m_Name: + m_EditorClassIdentifier: + m_BindingMode: 5 + m_FollowOffset: {x: 0, y: 2.5, z: -6} + m_XDamping: 1 + m_YDamping: 0 + m_ZDamping: 0 + m_AngularDampingMode: 0 + m_PitchDamping: 0 + m_YawDamping: 0 + m_RollDamping: 0 + m_AngularDamping: 0 + m_Heading: + m_Definition: 2 + m_VelocityFilterStrength: 4 + m_Bias: 0 + m_RecenterToTargetHeading: + m_enabled: 0 + m_WaitTime: 1 + m_RecenteringTime: 2 + m_LegacyHeadingDefinition: -1 + m_LegacyVelocityFilterStrength: -1 + m_XAxis: + Value: 0 + m_MaxSpeed: 700 + m_AccelTime: 0.1 + m_DecelTime: 0.1 + m_InputAxisName: Mouse X + m_InputAxisValue: 0 + m_InvertInput: 0 + m_MinValue: -180 + m_MaxValue: 180 + m_Wrap: 1 + m_Recentering: + m_enabled: 0 + m_WaitTime: 1 + m_RecenteringTime: 2 + m_LegacyHeadingDefinition: -1 + m_LegacyVelocityFilterStrength: -1 + m_LegacyRadius: 3.4028235e+38 + m_LegacyHeightOffset: 3.4028235e+38 + m_LegacyHeadingBias: 3.4028235e+38 + m_HeadingIsSlave: 1 +--- !u!114 &681920762 +MonoBehaviour: + m_ObjectHideFlags: 3 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 681920758} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: ac0b09e7857660247b1477e93731de29, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!1 &698143170 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 698143171} + - component: {fileID: 698143173} + - component: {fileID: 698143172} + m_Layer: 5 + m_Name: Text (1) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &698143171 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 698143170} + 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_Children: [] + m_Father: {fileID: 32187759} + m_RootOrder: 1 + 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: 176.3, y: 14.88} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &698143172 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 698143170} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 12 + m_FontStyle: 2 + m_BestFit: 0 + m_MinSize: 0 + m_MaxSize: 53 + m_Alignment: 0 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: Mix and Jam + Curiomatic +--- !u!222 &698143173 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 698143170} + m_CullTransparentMesh: 0 +--- !u!1 &704140097 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 704140098} + m_Layer: 0 + m_Name: Env + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &704140098 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 704140097} + 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_Children: + - {fileID: 1938142906} + - {fileID: 369620727} + - {fileID: 815290694} + - {fileID: 1285427760} + - {fileID: 1559859502} + m_Father: {fileID: 0} + m_RootOrder: 5 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &705507993 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 705507995} + - component: {fileID: 705507994} + m_Layer: 0 + m_Name: Directional Light + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!108 &705507994 +Light: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 705507993} + m_Enabled: 1 + serializedVersion: 9 + m_Type: 1 + m_Color: {r: 1, g: 0.95686275, b: 0.8392157, a: 1} + m_Intensity: 1 + m_Range: 10 + m_SpotAngle: 30 + m_InnerSpotAngle: 21.80208 + m_CookieSize: 10 + m_Shadows: + m_Type: 2 + 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: 1 + m_LightShadowCasterMode: 0 + m_AreaSize: {x: 1, y: 1} + m_BounceIntensity: 1 + m_ColorTemperature: 6570 + m_UseColorTemperature: 0 + m_BoundingSphereOverride: {x: 7.82e-43, y: 2.28e-43, z: 0, w: -2.2171383e+38} + m_UseBoundingSphereOverride: 0 + m_ShadowRadius: 0 + m_ShadowAngle: 2 +--- !u!4 &705507995 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 705507993} + m_LocalRotation: {x: 0.094227515, y: 0.5338512, z: -0.6910004, w: -0.4781659} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 40.366, y: 302.75598, z: 87.948006} +--- !u!1 &790479332 +GameObject: + m_ObjectHideFlags: 3 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 790479333} + - component: {fileID: 790479336} + - component: {fileID: 790479335} + - component: {fileID: 790479334} + m_Layer: 0 + m_Name: cm + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &790479333 +Transform: + m_ObjectHideFlags: 3 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 790479332} + 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_Children: [] + m_Father: {fileID: 46016746} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &790479334 +MonoBehaviour: + m_ObjectHideFlags: 3 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 790479332} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4044717213e31446939f7bd49c896ea, type: 3} + m_Name: + m_EditorClassIdentifier: + m_TrackedObjectOffset: {x: 0, y: 1, z: 0} + m_LookaheadTime: 0 + m_LookaheadSmoothing: 10 + m_LookaheadIgnoreY: 0 + m_HorizontalDamping: 0 + m_VerticalDamping: 0 + m_ScreenX: 0.5 + m_ScreenY: 0.5 + m_DeadZoneWidth: 0 + m_DeadZoneHeight: 0 + m_SoftZoneWidth: 0.8 + m_SoftZoneHeight: 0.8 + m_BiasX: 0 + m_BiasY: 0 + m_CenterOnActivate: 1 +--- !u!114 &790479335 +MonoBehaviour: + m_ObjectHideFlags: 3 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 790479332} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9384ab8608cdc3d479fe89cd51eed48f, type: 3} + m_Name: + m_EditorClassIdentifier: + m_BindingMode: 5 + m_FollowOffset: {x: 0, y: 2.5, z: -6} + m_XDamping: 1 + m_YDamping: 0 + m_ZDamping: 0 + m_AngularDampingMode: 0 + m_PitchDamping: 0 + m_YawDamping: 0 + m_RollDamping: 0 + m_AngularDamping: 0 + m_Heading: + m_Definition: 2 + m_VelocityFilterStrength: 4 + m_Bias: 0 + m_RecenterToTargetHeading: + m_enabled: 0 + m_WaitTime: 1 + m_RecenteringTime: 2 + m_LegacyHeadingDefinition: -1 + m_LegacyVelocityFilterStrength: -1 + m_XAxis: + Value: 0 + m_MaxSpeed: 700 + m_AccelTime: 0.1 + m_DecelTime: 0.1 + m_InputAxisName: Mouse X + m_InputAxisValue: 0 + m_InvertInput: 0 + m_MinValue: -180 + m_MaxValue: 180 + m_Wrap: 1 + m_Recentering: + m_enabled: 0 + m_WaitTime: 1 + m_RecenteringTime: 2 + m_LegacyHeadingDefinition: -1 + m_LegacyVelocityFilterStrength: -1 + m_LegacyRadius: 3.4028235e+38 + m_LegacyHeightOffset: 3.4028235e+38 + m_LegacyHeadingBias: 3.4028235e+38 + m_HeadingIsSlave: 1 +--- !u!114 &790479336 +MonoBehaviour: + m_ObjectHideFlags: 3 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 790479332} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: ac0b09e7857660247b1477e93731de29, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!1 &815290690 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 815290694} + - component: {fileID: 815290693} + - component: {fileID: 815290692} + - component: {fileID: 815290691} + m_Layer: 0 + m_Name: Cube (6) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 4294967295 + m_IsActive: 1 +--- !u!65 &815290691 +BoxCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 815290690} + m_Material: {fileID: 0} + m_IsTrigger: 0 + m_Enabled: 1 + serializedVersion: 2 + m_Size: {x: 1, y: 1, z: 1} + m_Center: {x: 0, y: 0, z: 0} +--- !u!23 &815290692 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 815290690} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: ac02e0546055b854f8600e1708139ff8, 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 +--- !u!33 &815290693 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 815290690} + m_Mesh: {fileID: 10202, guid: 0000000000000000e000000000000000, type: 0} +--- !u!4 &815290694 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 815290690} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -10.45, y: 0.16, z: 0} + m_LocalScale: {x: 0.90259004, y: 1, z: 32.5} + m_Children: [] + m_Father: {fileID: 704140098} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &930926621 +GameObject: + m_ObjectHideFlags: 3 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 930926622} + - component: {fileID: 930926625} + - component: {fileID: 930926624} + - component: {fileID: 930926623} + m_Layer: 0 + m_Name: cm + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &930926622 +Transform: + m_ObjectHideFlags: 3 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 930926621} + 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_Children: [] + m_Father: {fileID: 534511752} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &930926623 +MonoBehaviour: + m_ObjectHideFlags: 3 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 930926621} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4044717213e31446939f7bd49c896ea, type: 3} + m_Name: + m_EditorClassIdentifier: + m_TrackedObjectOffset: {x: 0, y: 0.78, z: 0} + m_LookaheadTime: 0 + m_LookaheadSmoothing: 10 + m_LookaheadIgnoreY: 0 + m_HorizontalDamping: 0.5 + m_VerticalDamping: 0.5 + m_ScreenX: 0.5 + m_ScreenY: 0.5 + m_DeadZoneWidth: 0 + m_DeadZoneHeight: 0 + m_SoftZoneWidth: 0.8 + m_SoftZoneHeight: 0.8 + m_BiasX: 0 + m_BiasY: 0 + m_CenterOnActivate: 1 +--- !u!114 &930926624 +MonoBehaviour: + m_ObjectHideFlags: 3 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 930926621} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9384ab8608cdc3d479fe89cd51eed48f, type: 3} + m_Name: + m_EditorClassIdentifier: + m_BindingMode: 4 + m_FollowOffset: {x: 0, y: 1.29, z: -4} + m_XDamping: 1 + m_YDamping: 1 + m_ZDamping: 1 + m_AngularDampingMode: 0 + m_PitchDamping: 0 + m_YawDamping: 0 + m_RollDamping: 0 + m_AngularDamping: 0 + m_Heading: + m_Definition: 0 + m_VelocityFilterStrength: 4 + m_Bias: 0 + m_RecenterToTargetHeading: + m_enabled: 1 + m_WaitTime: 1 + m_RecenteringTime: 2 + m_LegacyHeadingDefinition: -1 + m_LegacyVelocityFilterStrength: -1 + m_XAxis: + Value: 180 + m_MaxSpeed: 300 + m_AccelTime: 0.1 + m_DecelTime: 0.1 + m_InputAxisName: + m_InputAxisValue: 0 + m_InvertInput: 1 + m_MinValue: -180 + m_MaxValue: 180 + m_Wrap: 1 + m_Recentering: + m_enabled: 0 + m_WaitTime: 1 + m_RecenteringTime: 2 + m_LegacyHeadingDefinition: -1 + m_LegacyVelocityFilterStrength: -1 + m_LegacyRadius: 3.4028235e+38 + m_LegacyHeightOffset: 3.4028235e+38 + m_LegacyHeadingBias: 3.4028235e+38 + m_HeadingIsSlave: 0 +--- !u!114 &930926625 +MonoBehaviour: + m_ObjectHideFlags: 3 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 930926621} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: ac0b09e7857660247b1477e93731de29, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!1 &962302852 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 962302854} + - component: {fileID: 962302853} + - component: {fileID: 962302855} + m_Layer: 0 + m_Name: CM FreeLook1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &962302853 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 962302852} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 319d2fe34a804e245819465c9505ea59, type: 3} + m_Name: + m_EditorClassIdentifier: + m_ExcludedPropertiesInInspector: + - m_Script + m_LockStageInInspector: + m_StreamingVersion: 20170927 + m_Priority: 10 + m_StandbyUpdate: 2 + m_LookAt: {fileID: 5006512736820427411} + m_Follow: {fileID: 5006512736820427411} + m_CommonLens: 1 + m_Lens: + FieldOfView: 40 + OrthographicSize: 10 + NearClipPlane: 0.1 + FarClipPlane: 5000 + Dutch: 0 + LensShift: {x: 0, y: 0} + m_Transitions: + m_BlendHint: 0 + m_InheritPosition: 0 + m_OnCameraLive: + m_PersistentCalls: + m_Calls: [] + m_TypeName: Cinemachine.CinemachineBrain+VcamActivatedEvent, Cinemachine, Version=0.0.0.0, + Culture=neutral, PublicKeyToken=null + m_LegacyBlendHint: 0 + m_YAxis: + Value: 0.5 + m_MaxSpeed: 8 + m_AccelTime: 0.2 + m_DecelTime: 0.1 + m_InputAxisName: Mouse Y + m_InputAxisValue: 0 + m_InvertInput: 1 + m_MinValue: 0 + m_MaxValue: 1 + m_Wrap: 0 + m_Recentering: + m_enabled: 0 + m_WaitTime: 1 + m_RecenteringTime: 2 + m_LegacyHeadingDefinition: -1 + m_LegacyVelocityFilterStrength: -1 + m_YAxisRecentering: + m_enabled: 0 + m_WaitTime: 1 + m_RecenteringTime: 2 + m_LegacyHeadingDefinition: -1 + m_LegacyVelocityFilterStrength: -1 + m_XAxis: + Value: 0 + m_MaxSpeed: 700 + m_AccelTime: 0.1 + m_DecelTime: 0.1 + m_InputAxisName: Mouse X + m_InputAxisValue: 0 + m_InvertInput: 0 + m_MinValue: -180 + m_MaxValue: 180 + m_Wrap: 1 + m_Recentering: + m_enabled: 0 + m_WaitTime: 1 + m_RecenteringTime: 2 + m_LegacyHeadingDefinition: -1 + m_LegacyVelocityFilterStrength: -1 + m_Heading: + m_Definition: 2 + m_VelocityFilterStrength: 4 + m_Bias: 0 + m_RecenterToTargetHeading: + m_enabled: 0 + m_WaitTime: 1 + m_RecenteringTime: 2 + m_LegacyHeadingDefinition: -1 + m_LegacyVelocityFilterStrength: -1 + m_BindingMode: 5 + m_SplineCurvature: 0.2 + m_Orbits: + - m_Height: 4.5 + m_Radius: 4 + - m_Height: 2.5 + m_Radius: 6 + - m_Height: 0.4 + m_Radius: 4 + m_LegacyHeadingBias: 3.4028235e+38 + m_Rigs: + - {fileID: 46016745} + - {fileID: 1584003993} + - {fileID: 1551315836} +--- !u!4 &962302854 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 962302852} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0.85566473, y: 0.88774407, z: -4.1816454} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 46016746} + - {fileID: 1584003994} + - {fileID: 1551315837} + m_Father: {fileID: 374545554} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &962302855 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 962302852} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e501d18bb52cf8c40b1853ca4904654f, type: 3} + m_Name: + m_EditorClassIdentifier: + m_CollideAgainst: + serializedVersion: 2 + m_Bits: 1 + m_IgnoreTag: + m_TransparentLayers: + serializedVersion: 2 + m_Bits: 0 + m_MinimumDistanceFromTarget: 0.1 + m_AvoidObstacles: 1 + m_DistanceLimit: 0 + m_MinimumOcclusionTime: 0 + m_CameraRadius: 0.1 + m_Strategy: 1 + m_MaximumEffort: 2 + m_SmoothingTime: 0 + m_Damping: 2 + m_DampingWhenOccluded: 2 + m_OptimalTargetDistance: 0 +--- !u!1 &963194225 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 963194228} + - component: {fileID: 963194227} + - component: {fileID: 963194226} + - component: {fileID: 963194229} + - component: {fileID: 963194230} + m_Layer: 0 + m_Name: Main Camera + m_TagString: MainCamera + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!81 &963194226 +AudioListener: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 963194225} + m_Enabled: 1 +--- !u!20 &963194227 +Camera: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 963194225} + m_Enabled: 1 + serializedVersion: 2 + m_ClearFlags: 1 + m_BackGroundColor: {r: 0.19215687, g: 0.3019608, b: 0.4745098, 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.1 + far clip plane: 5000 + field of view: 40 + 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: 1 + m_StereoConvergence: 10 + m_StereoSeparation: 0.022 +--- !u!4 &963194228 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 963194225} + m_LocalRotation: {x: -0.00000013303864, y: -0.9979904, z: 0.06336542, w: 0.00000006462321} + m_LocalPosition: {x: 0.0000003496911, y: 1.2099999, z: 4} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 58949066} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &963194229 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 963194225} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 948f4100a11a5c24981795d21301da5c, type: 3} + m_Name: + m_EditorClassIdentifier: + volumeTrigger: {fileID: 963194228} + volumeLayer: + serializedVersion: 2 + m_Bits: 256 + stopNaNPropagation: 1 + finalBlitToCameraTarget: 0 + antialiasingMode: 1 + temporalAntialiasing: + jitterSpread: 0.75 + sharpness: 0.25 + stationaryBlending: 0.95 + motionBlending: 0.85 + subpixelMorphologicalAntialiasing: + quality: 2 + fastApproximateAntialiasing: + fastMode: 0 + keepAlpha: 0 + fog: + enabled: 1 + excludeSkybox: 1 + debugLayer: + lightMeter: + width: 512 + height: 256 + showCurves: 1 + histogram: + width: 512 + height: 256 + channel: 3 + waveform: + exposure: 0.12 + height: 256 + vectorscope: + size: 256 + exposure: 0.12 + overlaySettings: + linearDepth: 0 + motionColorIntensity: 4 + motionGridSize: 64 + colorBlindnessType: 0 + colorBlindnessStrength: 1 + m_Resources: {fileID: 11400000, guid: d82512f9c8e5d4a4d938b575d47f88d4, type: 2} + m_ShowToolkit: 0 + m_ShowCustomSorter: 0 + breakBeforeColorGrading: 0 + m_BeforeTransparentBundles: [] + m_BeforeStackBundles: [] + m_AfterStackBundles: [] +--- !u!114 &963194230 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 963194225} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 72ece51f2901e7445ab60da3685d6b5f, type: 3} + m_Name: + m_EditorClassIdentifier: + m_ShowDebugText: 0 + m_ShowCameraFrustum: 1 + m_IgnoreTimeScale: 0 + m_WorldUpOverride: {fileID: 0} + m_UpdateMethod: 2 + m_DefaultBlend: + m_Style: 1 + m_Time: 2 + m_CustomCurve: + serializedVersion: 2 + m_Curve: [] + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + m_CustomBlends: {fileID: 0} + m_CameraCutEvent: + m_PersistentCalls: + m_Calls: [] + m_TypeName: Cinemachine.CinemachineBrain+BrainEvent, Cinemachine, Version=0.0.0.0, + Culture=neutral, PublicKeyToken=null + m_CameraActivatedEvent: + m_PersistentCalls: + m_Calls: [] + m_TypeName: Cinemachine.CinemachineBrain+VcamActivatedEvent, Cinemachine, Version=0.0.0.0, + Culture=neutral, PublicKeyToken=null +--- !u!1 &1183249613 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1183249616} + - component: {fileID: 1183249615} + m_Layer: 0 + m_Name: CM vcam1 (1) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!114 &1183249615 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1183249613} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 45e653bab7fb20e499bda25e1b646fea, type: 3} + m_Name: + m_EditorClassIdentifier: + m_ExcludedPropertiesInInspector: + - m_Script + m_LockStageInInspector: + m_StreamingVersion: 20170927 + m_Priority: 11 + m_StandbyUpdate: 2 + m_LookAt: {fileID: 5006512736820427411} + m_Follow: {fileID: 5006512736820427411} + m_Lens: + FieldOfView: 40 + OrthographicSize: 10 + NearClipPlane: 0.1 + FarClipPlane: 5000 + Dutch: 0 + LensShift: {x: 0, y: 0} + m_Transitions: + m_BlendHint: 0 + m_InheritPosition: 0 + m_OnCameraLive: + m_PersistentCalls: + m_Calls: [] + m_TypeName: Cinemachine.CinemachineBrain+VcamActivatedEvent, Cinemachine, Version=0.0.0.0, + Culture=neutral, PublicKeyToken=null + m_LegacyBlendHint: 0 + m_ComponentOwner: {fileID: 330835185} +--- !u!4 &1183249616 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1183249613} + m_LocalRotation: {x: 0.0000002482099, y: 0.99748576, z: 0.07086743, w: -0.000000078092235} + m_LocalPosition: {x: 0.70097333, y: -1.182256, z: 4.63636} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 330835185} + m_Father: {fileID: 374545554} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1285427756 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1285427760} + - component: {fileID: 1285427759} + - component: {fileID: 1285427758} + - component: {fileID: 1285427757} + m_Layer: 0 + m_Name: Cube (7) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 4294967295 + m_IsActive: 1 +--- !u!65 &1285427757 +BoxCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1285427756} + m_Material: {fileID: 0} + m_IsTrigger: 0 + m_Enabled: 1 + serializedVersion: 2 + m_Size: {x: 1, y: 1, z: 1} + m_Center: {x: 0, y: 0, z: 0} +--- !u!23 &1285427758 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1285427756} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: ac02e0546055b854f8600e1708139ff8, 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 +--- !u!33 &1285427759 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1285427756} + m_Mesh: {fileID: 10202, guid: 0000000000000000e000000000000000, type: 0} +--- !u!4 &1285427760 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1285427756} + m_LocalRotation: {x: -0, y: 0.7071068, z: -0, w: 0.7071068} + m_LocalPosition: {x: 0, y: 0.16, z: 15.72} + m_LocalScale: {x: 0.9025905, y: 1, z: 22.336283} + m_Children: [] + m_Father: {fileID: 704140098} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 90, z: 0} +--- !u!1 &1551315835 +GameObject: + m_ObjectHideFlags: 3 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1551315837} + - component: {fileID: 1551315836} + m_Layer: 0 + m_Name: BottomRig + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &1551315836 +MonoBehaviour: + m_ObjectHideFlags: 3 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1551315835} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 45e653bab7fb20e499bda25e1b646fea, type: 3} + m_Name: + m_EditorClassIdentifier: + m_ExcludedPropertiesInInspector: + - m_Script + - Header + - Extensions + - m_Priority + - m_Transitions + - m_Follow + - m_StandbyUpdate + - m_Lens + m_LockStageInInspector: 00000000 + m_StreamingVersion: 20170927 + m_Priority: 10 + m_StandbyUpdate: 2 + m_LookAt: {fileID: 0} + m_Follow: {fileID: 0} + m_Lens: + FieldOfView: 40 + OrthographicSize: 10 + NearClipPlane: 0.1 + FarClipPlane: 5000 + Dutch: 0 + LensShift: {x: 0, y: 0} + m_Transitions: + m_BlendHint: 0 + m_InheritPosition: 0 + m_OnCameraLive: + m_PersistentCalls: + m_Calls: [] + m_TypeName: Cinemachine.CinemachineBrain+VcamActivatedEvent, Cinemachine, Version=0.0.0.0, + Culture=neutral, PublicKeyToken=null + m_LegacyBlendHint: 0 + m_ComponentOwner: {fileID: 506539352} +--- !u!4 &1551315837 +Transform: + m_ObjectHideFlags: 3 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1551315835} + m_LocalRotation: {x: 0.08604269, y: -0.012844212, z: 0.0011093495, w: 0.9962081} + m_LocalPosition: {x: 0, y: 0, z: -0.0000009536743} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 506539352} + m_Father: {fileID: 962302854} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1559859498 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1559859502} + - component: {fileID: 1559859501} + - component: {fileID: 1559859500} + - component: {fileID: 1559859499} + m_Layer: 0 + m_Name: Cube (8) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 4294967295 + m_IsActive: 1 +--- !u!65 &1559859499 +BoxCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1559859498} + m_Material: {fileID: 0} + m_IsTrigger: 0 + m_Enabled: 1 + serializedVersion: 2 + m_Size: {x: 1, y: 1, z: 1} + m_Center: {x: 0, y: 0, z: 0} +--- !u!23 &1559859500 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1559859498} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: ac02e0546055b854f8600e1708139ff8, 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 +--- !u!33 &1559859501 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1559859498} + m_Mesh: {fileID: 10202, guid: 0000000000000000e000000000000000, type: 0} +--- !u!4 &1559859502 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1559859498} + m_LocalRotation: {x: -0, y: 0.7071068, z: -0, w: 0.7071068} + m_LocalPosition: {x: 0, y: 0.16, z: -15.82} + m_LocalScale: {x: 0.9025905, y: 1, z: 22.336283} + m_Children: [] + m_Father: {fileID: 704140098} + m_RootOrder: 4 + m_LocalEulerAnglesHint: {x: 0, y: 90, z: 0} +--- !u!1 &1584003992 +GameObject: + m_ObjectHideFlags: 3 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1584003994} + - component: {fileID: 1584003993} + m_Layer: 0 + m_Name: MiddleRig + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &1584003993 +MonoBehaviour: + m_ObjectHideFlags: 3 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1584003992} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 45e653bab7fb20e499bda25e1b646fea, type: 3} + m_Name: + m_EditorClassIdentifier: + m_ExcludedPropertiesInInspector: + - m_Script + - Header + - Extensions + - m_Priority + - m_Transitions + - m_Follow + - m_StandbyUpdate + - m_Lens + m_LockStageInInspector: 00000000 + m_StreamingVersion: 20170927 + m_Priority: 10 + m_StandbyUpdate: 2 + m_LookAt: {fileID: 0} + m_Follow: {fileID: 0} + m_Lens: + FieldOfView: 40 + OrthographicSize: 10 + NearClipPlane: 0.1 + FarClipPlane: 5000 + Dutch: 0 + LensShift: {x: 0, y: 0} + m_Transitions: + m_BlendHint: 0 + m_InheritPosition: 0 + m_OnCameraLive: + m_PersistentCalls: + m_Calls: [] + m_TypeName: Cinemachine.CinemachineBrain+VcamActivatedEvent, Cinemachine, Version=0.0.0.0, + Culture=neutral, PublicKeyToken=null + m_LegacyBlendHint: 0 + m_ComponentOwner: {fileID: 681920759} +--- !u!4 &1584003994 +Transform: + m_ObjectHideFlags: 3 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1584003992} + m_LocalRotation: {x: 0.10410119, y: -0.012821989, z: 0.0013422958, w: 0.9944832} + m_LocalPosition: {x: 0, y: 0, z: -0.0000009536743} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 681920759} + m_Father: {fileID: 962302854} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1629514405 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1629514406} + - component: {fileID: 1629514408} + - component: {fileID: 1629514407} + m_Layer: 5 + m_Name: Text (2) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1629514406 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1629514405} + 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_Children: [] + m_Father: {fileID: 32187759} + m_RootOrder: 2 + 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: 176.3, y: 14.88} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1629514407 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1629514405} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 12 + m_FontStyle: 2 + m_BestFit: 0 + m_MinSize: 0 + m_MaxSize: 53 + m_Alignment: 0 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: Character +--- !u!222 &1629514408 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1629514405} + m_CullTransparentMesh: 0 +--- !u!1 &1647635466 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1647635469} + - component: {fileID: 1647635468} + - component: {fileID: 1647635467} + m_Layer: 0 + m_Name: EventSystem + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &1647635467 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1647635466} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4f231c4fb786f3946a6b90b886c48677, type: 3} + m_Name: + m_EditorClassIdentifier: + m_HorizontalAxis: Horizontal + m_VerticalAxis: Vertical + m_SubmitButton: Submit + m_CancelButton: Cancel + m_InputActionsPerSecond: 10 + m_RepeatDelay: 0.5 + m_ForceModuleActive: 0 +--- !u!114 &1647635468 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1647635466} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 76c392e42b5098c458856cdf6ecaaaa1, type: 3} + m_Name: + m_EditorClassIdentifier: + m_FirstSelected: {fileID: 0} + m_sendNavigationEvents: 1 + m_DragThreshold: 10 +--- !u!4 &1647635469 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1647635466} + 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_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 7 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1671846043 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1671846044} + - component: {fileID: 1671846046} + - component: {fileID: 1671846045} + m_Layer: 5 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1671846044 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1671846043} + 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_Children: [] + m_Father: {fileID: 32187759} + 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: 176.3, y: 19.33} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1671846045 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1671846043} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 16 + m_FontStyle: 2 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 53 + m_Alignment: 0 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: JAMMO +--- !u!222 &1671846046 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1671846043} + m_CullTransparentMesh: 0 +--- !u!1 &1688403768 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1688403770} + - component: {fileID: 1688403769} + m_Layer: 0 + m_Name: Reflection Probe + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!215 &1688403769 +ReflectionProbe: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1688403768} + m_Enabled: 1 + serializedVersion: 2 + m_Type: 0 + m_Mode: 0 + m_RefreshMode: 0 + m_TimeSlicingMode: 0 + m_Resolution: 128 + m_UpdateFrequency: 0 + m_BoxSize: {x: 50, y: 10, z: 50} + m_BoxOffset: {x: 0, y: 0, z: 0} + m_NearClip: 0.3 + m_FarClip: 1000 + m_ShadowDistance: 100 + m_ClearFlags: 1 + m_BackGroundColor: {r: 0.19215687, g: 0.3019608, b: 0.4745098, a: 0} + m_CullingMask: + serializedVersion: 2 + m_Bits: 4294967295 + m_IntensityMultiplier: 1 + m_BlendDistance: 1 + m_HDR: 1 + m_BoxProjection: 0 + m_RenderDynamicObjects: 0 + m_UseOcclusionCulling: 1 + m_Importance: 1 + m_CustomBakedTexture: {fileID: 0} +--- !u!4 &1688403770 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1688403768} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 1, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1938142902 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1938142906} + - component: {fileID: 1938142905} + - component: {fileID: 1938142904} + - component: {fileID: 1938142903} + m_Layer: 0 + m_Name: Cube + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 4294967295 + m_IsActive: 1 +--- !u!65 &1938142903 +BoxCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1938142902} + m_Material: {fileID: 0} + m_IsTrigger: 0 + m_Enabled: 1 + serializedVersion: 2 + m_Size: {x: 1, y: 1, z: 1} + m_Center: {x: 0, y: 0, z: 0} +--- !u!23 &1938142904 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1938142902} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: ac02e0546055b854f8600e1708139ff8, 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 +--- !u!33 &1938142905 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1938142902} + m_Mesh: {fileID: 10202, guid: 0000000000000000e000000000000000, type: 0} +--- !u!4 &1938142906 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1938142902} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: -0.57, z: 0} + m_LocalScale: {x: 20.057556, y: 1, z: 32.5} + m_Children: [] + m_Father: {fileID: 704140098} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &4757836857439838588 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 0} + m_Modifications: + - target: {fileID: 3541754002163558908, guid: bd6ee82c5e06b3f4f86113cbf8261ae1, + type: 3} + propertyPath: m_Name + value: Jammo_Player + objectReference: {fileID: 0} + - target: {fileID: 539745478100655087, guid: bd6ee82c5e06b3f4f86113cbf8261ae1, + type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 539745478100655087, guid: bd6ee82c5e06b3f4f86113cbf8261ae1, + type: 3} + propertyPath: m_LocalPosition.y + value: -0.08 + objectReference: {fileID: 0} + - target: {fileID: 539745478100655087, guid: bd6ee82c5e06b3f4f86113cbf8261ae1, + type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 539745478100655087, guid: bd6ee82c5e06b3f4f86113cbf8261ae1, + type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 539745478100655087, guid: bd6ee82c5e06b3f4f86113cbf8261ae1, + type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 539745478100655087, guid: bd6ee82c5e06b3f4f86113cbf8261ae1, + type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 539745478100655087, guid: bd6ee82c5e06b3f4f86113cbf8261ae1, + type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 539745478100655087, guid: bd6ee82c5e06b3f4f86113cbf8261ae1, + type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 539745478100655087, guid: bd6ee82c5e06b3f4f86113cbf8261ae1, + type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 539745478100655087, guid: bd6ee82c5e06b3f4f86113cbf8261ae1, + type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 539745478100655087, guid: bd6ee82c5e06b3f4f86113cbf8261ae1, + type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2434832479923816812, guid: bd6ee82c5e06b3f4f86113cbf8261ae1, + type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 60c2f0e0aaa8f8d4e9d23d7e3768653b, type: 2} + - target: {fileID: 7532609881684433790, guid: bd6ee82c5e06b3f4f86113cbf8261ae1, + type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 60c2f0e0aaa8f8d4e9d23d7e3768653b, type: 2} + - target: {fileID: 1658602278726242423, guid: bd6ee82c5e06b3f4f86113cbf8261ae1, + type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 60c2f0e0aaa8f8d4e9d23d7e3768653b, type: 2} + - target: {fileID: 7312073801473320617, guid: bd6ee82c5e06b3f4f86113cbf8261ae1, + type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 60c2f0e0aaa8f8d4e9d23d7e3768653b, type: 2} + - target: {fileID: 2051882660065351641, guid: bd6ee82c5e06b3f4f86113cbf8261ae1, + type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 60c2f0e0aaa8f8d4e9d23d7e3768653b, type: 2} + - target: {fileID: 1944954648850831051, guid: bd6ee82c5e06b3f4f86113cbf8261ae1, + type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 60c2f0e0aaa8f8d4e9d23d7e3768653b, type: 2} + - target: {fileID: 3490471807778207017, guid: bd6ee82c5e06b3f4f86113cbf8261ae1, + type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 60c2f0e0aaa8f8d4e9d23d7e3768653b, type: 2} + - target: {fileID: 8284594815474494639, guid: bd6ee82c5e06b3f4f86113cbf8261ae1, + type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 60c2f0e0aaa8f8d4e9d23d7e3768653b, type: 2} + - target: {fileID: 5050214706567063249, guid: bd6ee82c5e06b3f4f86113cbf8261ae1, + type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 60c2f0e0aaa8f8d4e9d23d7e3768653b, type: 2} + - target: {fileID: 1056355096419901132, guid: bd6ee82c5e06b3f4f86113cbf8261ae1, + type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 60c2f0e0aaa8f8d4e9d23d7e3768653b, type: 2} + - target: {fileID: 1469149460382200048, guid: bd6ee82c5e06b3f4f86113cbf8261ae1, + type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 60c2f0e0aaa8f8d4e9d23d7e3768653b, type: 2} + - target: {fileID: 8613443241836041114, guid: bd6ee82c5e06b3f4f86113cbf8261ae1, + type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 60c2f0e0aaa8f8d4e9d23d7e3768653b, type: 2} + - target: {fileID: 8103208097679968932, guid: bd6ee82c5e06b3f4f86113cbf8261ae1, + type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 60c2f0e0aaa8f8d4e9d23d7e3768653b, type: 2} + - target: {fileID: 4228262177977166944, guid: bd6ee82c5e06b3f4f86113cbf8261ae1, + type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 60c2f0e0aaa8f8d4e9d23d7e3768653b, type: 2} + - target: {fileID: 4662889940940550474, guid: bd6ee82c5e06b3f4f86113cbf8261ae1, + type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 60c2f0e0aaa8f8d4e9d23d7e3768653b, type: 2} + - target: {fileID: 1200846796674004160, guid: bd6ee82c5e06b3f4f86113cbf8261ae1, + type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: d5c0dc78f40c06c4e9356a3218da955b, type: 2} + - target: {fileID: 1741508907715358056, guid: bd6ee82c5e06b3f4f86113cbf8261ae1, + type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 60c2f0e0aaa8f8d4e9d23d7e3768653b, type: 2} + - target: {fileID: 5022912871054551828, guid: bd6ee82c5e06b3f4f86113cbf8261ae1, + type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 60c2f0e0aaa8f8d4e9d23d7e3768653b, type: 2} + - target: {fileID: 6108489921287190553, guid: bd6ee82c5e06b3f4f86113cbf8261ae1, + type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 60c2f0e0aaa8f8d4e9d23d7e3768653b, type: 2} + - target: {fileID: 1227289702671474468, guid: bd6ee82c5e06b3f4f86113cbf8261ae1, + type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 60c2f0e0aaa8f8d4e9d23d7e3768653b, type: 2} + - target: {fileID: 4826562037691674415, guid: bd6ee82c5e06b3f4f86113cbf8261ae1, + type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 60c2f0e0aaa8f8d4e9d23d7e3768653b, type: 2} + - target: {fileID: 5070678820014178608, guid: bd6ee82c5e06b3f4f86113cbf8261ae1, + type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 60c2f0e0aaa8f8d4e9d23d7e3768653b, type: 2} + - target: {fileID: 4511302626942741746, guid: bd6ee82c5e06b3f4f86113cbf8261ae1, + type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 60c2f0e0aaa8f8d4e9d23d7e3768653b, type: 2} + - target: {fileID: 8194485845489908233, guid: bd6ee82c5e06b3f4f86113cbf8261ae1, + type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 60c2f0e0aaa8f8d4e9d23d7e3768653b, type: 2} + - target: {fileID: 2816789308878620365, guid: bd6ee82c5e06b3f4f86113cbf8261ae1, + type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 60c2f0e0aaa8f8d4e9d23d7e3768653b, type: 2} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: bd6ee82c5e06b3f4f86113cbf8261ae1, type: 3} +--- !u!4 &5006512736820427411 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 539745478100655087, guid: bd6ee82c5e06b3f4f86113cbf8261ae1, + type: 3} + m_PrefabInstance: {fileID: 4757836857439838588} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/Jammo-Character/Scenes/JammoScene.unity.meta b/Assets/Jammo-Character/Scenes/JammoScene.unity.meta new file mode 100644 index 0000000..952bd1e --- /dev/null +++ b/Assets/Jammo-Character/Scenes/JammoScene.unity.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 9fc0d4010bbf28b4594072e72b8655ab +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Jammo-Character/Scenes/JammoScene/LightingData.asset b/Assets/Jammo-Character/Scenes/JammoScene/LightingData.asset new file mode 100644 index 0000000..4d4e75b Binary files /dev/null and b/Assets/Jammo-Character/Scenes/JammoScene/LightingData.asset differ diff --git a/Assets/Jammo-Character/Scenes/JammoScene/LightingData.asset.meta b/Assets/Jammo-Character/Scenes/JammoScene/LightingData.asset.meta new file mode 100644 index 0000000..e580024 --- /dev/null +++ b/Assets/Jammo-Character/Scenes/JammoScene/LightingData.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d920f0d5477a8a24298b99e3e17bc623 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 112000000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Jammo-Character/Scenes/JammoScene/Lightmap-0_comp_dir.png b/Assets/Jammo-Character/Scenes/JammoScene/Lightmap-0_comp_dir.png new file mode 100644 index 0000000..4377c1a Binary files /dev/null and b/Assets/Jammo-Character/Scenes/JammoScene/Lightmap-0_comp_dir.png differ diff --git a/Assets/Jammo-Character/Scenes/JammoScene/Lightmap-0_comp_dir.png.meta b/Assets/Jammo-Character/Scenes/JammoScene/Lightmap-0_comp_dir.png.meta new file mode 100644 index 0000000..e35ce41 --- /dev/null +++ b/Assets/Jammo-Character/Scenes/JammoScene/Lightmap-0_comp_dir.png.meta @@ -0,0 +1,91 @@ +fileFormatVersion: 2 +guid: 1f459961796ed6d458fdfac6e2764b77 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 10 + 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: 1 + streamingMipmapsPriority: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 3 + mipBias: 0 + 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 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + 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: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Jammo-Character/Scenes/JammoScene/Lightmap-0_comp_light.exr b/Assets/Jammo-Character/Scenes/JammoScene/Lightmap-0_comp_light.exr new file mode 100644 index 0000000..77dd97d Binary files /dev/null and b/Assets/Jammo-Character/Scenes/JammoScene/Lightmap-0_comp_light.exr differ diff --git a/Assets/Jammo-Character/Scenes/JammoScene/Lightmap-0_comp_light.exr.meta b/Assets/Jammo-Character/Scenes/JammoScene/Lightmap-0_comp_light.exr.meta new file mode 100644 index 0000000..cd046a2 --- /dev/null +++ b/Assets/Jammo-Character/Scenes/JammoScene/Lightmap-0_comp_light.exr.meta @@ -0,0 +1,91 @@ +fileFormatVersion: 2 +guid: 845403108a978e0439af5ff7d2994c5e +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 10 + 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: 1 + streamingMipmapsPriority: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 3 + mipBias: 0 + 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: 0 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 6 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + 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: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Jammo-Character/Scenes/JammoScene/Lightmap-0_comp_shadowmask.png b/Assets/Jammo-Character/Scenes/JammoScene/Lightmap-0_comp_shadowmask.png new file mode 100644 index 0000000..f3d2925 Binary files /dev/null and b/Assets/Jammo-Character/Scenes/JammoScene/Lightmap-0_comp_shadowmask.png differ diff --git a/Assets/Jammo-Character/Scenes/JammoScene/Lightmap-0_comp_shadowmask.png.meta b/Assets/Jammo-Character/Scenes/JammoScene/Lightmap-0_comp_shadowmask.png.meta new file mode 100644 index 0000000..749c9a0 --- /dev/null +++ b/Assets/Jammo-Character/Scenes/JammoScene/Lightmap-0_comp_shadowmask.png.meta @@ -0,0 +1,91 @@ +fileFormatVersion: 2 +guid: 1797b30b72146d449b213541f92310ec +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 10 + 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: 1 + streamingMipmapsPriority: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 3 + mipBias: 0 + 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 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + 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: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Jammo-Character/Scenes/JammoScene/Lightmap-1_comp_dir.png b/Assets/Jammo-Character/Scenes/JammoScene/Lightmap-1_comp_dir.png new file mode 100644 index 0000000..dfaf3b1 Binary files /dev/null and b/Assets/Jammo-Character/Scenes/JammoScene/Lightmap-1_comp_dir.png differ diff --git a/Assets/Jammo-Character/Scenes/JammoScene/Lightmap-1_comp_dir.png.meta b/Assets/Jammo-Character/Scenes/JammoScene/Lightmap-1_comp_dir.png.meta new file mode 100644 index 0000000..2761881 --- /dev/null +++ b/Assets/Jammo-Character/Scenes/JammoScene/Lightmap-1_comp_dir.png.meta @@ -0,0 +1,91 @@ +fileFormatVersion: 2 +guid: c27f1f6fcc4d68c458375c9577b06998 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 10 + 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: 1 + streamingMipmapsPriority: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 3 + mipBias: 0 + 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 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + 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: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Jammo-Character/Scenes/JammoScene/Lightmap-1_comp_light.exr b/Assets/Jammo-Character/Scenes/JammoScene/Lightmap-1_comp_light.exr new file mode 100644 index 0000000..b07d808 Binary files /dev/null and b/Assets/Jammo-Character/Scenes/JammoScene/Lightmap-1_comp_light.exr differ diff --git a/Assets/Jammo-Character/Scenes/JammoScene/Lightmap-1_comp_light.exr.meta b/Assets/Jammo-Character/Scenes/JammoScene/Lightmap-1_comp_light.exr.meta new file mode 100644 index 0000000..3b5bd75 --- /dev/null +++ b/Assets/Jammo-Character/Scenes/JammoScene/Lightmap-1_comp_light.exr.meta @@ -0,0 +1,91 @@ +fileFormatVersion: 2 +guid: 5d843664aea533c48b9546ed546bc088 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 10 + 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: 1 + streamingMipmapsPriority: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 3 + mipBias: 0 + 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: 0 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 6 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + 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: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Jammo-Character/Scenes/JammoScene/Lightmap-1_comp_shadowmask.png b/Assets/Jammo-Character/Scenes/JammoScene/Lightmap-1_comp_shadowmask.png new file mode 100644 index 0000000..82700ad Binary files /dev/null and b/Assets/Jammo-Character/Scenes/JammoScene/Lightmap-1_comp_shadowmask.png differ diff --git a/Assets/Jammo-Character/Scenes/JammoScene/Lightmap-1_comp_shadowmask.png.meta b/Assets/Jammo-Character/Scenes/JammoScene/Lightmap-1_comp_shadowmask.png.meta new file mode 100644 index 0000000..92c7025 --- /dev/null +++ b/Assets/Jammo-Character/Scenes/JammoScene/Lightmap-1_comp_shadowmask.png.meta @@ -0,0 +1,91 @@ +fileFormatVersion: 2 +guid: e5520d6b2a099ee47b4e7550d2b31745 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 10 + 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: 1 + streamingMipmapsPriority: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 3 + mipBias: 0 + 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 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + 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: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Jammo-Character/Scenes/JammoScene/ReflectionProbe-0.exr b/Assets/Jammo-Character/Scenes/JammoScene/ReflectionProbe-0.exr new file mode 100644 index 0000000..c27fcf7 Binary files /dev/null and b/Assets/Jammo-Character/Scenes/JammoScene/ReflectionProbe-0.exr differ diff --git a/Assets/Jammo-Character/Scenes/JammoScene/ReflectionProbe-0.exr.meta b/Assets/Jammo-Character/Scenes/JammoScene/ReflectionProbe-0.exr.meta new file mode 100644 index 0000000..946b4b3 --- /dev/null +++ b/Assets/Jammo-Character/Scenes/JammoScene/ReflectionProbe-0.exr.meta @@ -0,0 +1,91 @@ +fileFormatVersion: 2 +guid: 1ca36e2c5ecb2c5448e10f58efb00fc6 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 10 + 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 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 1 + seamlessCubemap: 1 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 2 + aniso: 0 + mipBias: 0 + 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: 2 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 100 + 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: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Jammo-Character/Scenes/JammoScene/ReflectionProbe-1.exr b/Assets/Jammo-Character/Scenes/JammoScene/ReflectionProbe-1.exr new file mode 100644 index 0000000..9928357 Binary files /dev/null and b/Assets/Jammo-Character/Scenes/JammoScene/ReflectionProbe-1.exr differ diff --git a/Assets/Jammo-Character/Scenes/JammoScene/ReflectionProbe-1.exr.meta b/Assets/Jammo-Character/Scenes/JammoScene/ReflectionProbe-1.exr.meta new file mode 100644 index 0000000..b99168f --- /dev/null +++ b/Assets/Jammo-Character/Scenes/JammoScene/ReflectionProbe-1.exr.meta @@ -0,0 +1,91 @@ +fileFormatVersion: 2 +guid: 908eff7a8be232f4da46692b950e2e72 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 10 + 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 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 1 + seamlessCubemap: 1 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 2 + aniso: 0 + mipBias: 0 + 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: 2 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 100 + 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: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Jammo-Character/Scenes/JammoScene_Profiles.meta b/Assets/Jammo-Character/Scenes/JammoScene_Profiles.meta new file mode 100644 index 0000000..a04b3c5 --- /dev/null +++ b/Assets/Jammo-Character/Scenes/JammoScene_Profiles.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 0812d853c21941242af11b6947824b4a +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Jammo-Character/Scenes/JammoScene_Profiles/GameObject Profile.asset b/Assets/Jammo-Character/Scenes/JammoScene_Profiles/GameObject Profile.asset new file mode 100644 index 0000000..b9a7e0b --- /dev/null +++ b/Assets/Jammo-Character/Scenes/JammoScene_Profiles/GameObject Profile.asset @@ -0,0 +1,1499 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-5470801901089742585 +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: adb84e30e02715445aeb9959894e3b4d, type: 3} + m_Name: ColorGrading + m_EditorClassIdentifier: + active: 1 + enabled: + overrideState: 1 + value: 1 + gradingMode: + overrideState: 1 + value: 1 + externalLut: + overrideState: 1 + value: {fileID: 0} + defaultState: 1 + tonemapper: + overrideState: 1 + value: 2 + toneCurveToeStrength: + overrideState: 1 + value: 0 + toneCurveToeLength: + overrideState: 1 + value: 0.5 + toneCurveShoulderStrength: + overrideState: 1 + value: 0 + toneCurveShoulderLength: + overrideState: 1 + value: 0.5 + toneCurveShoulderAngle: + overrideState: 1 + value: 0 + toneCurveGamma: + overrideState: 1 + value: 1 + ldrLut: + overrideState: 1 + value: {fileID: 0} + defaultState: 4 + ldrLutContribution: + overrideState: 1 + value: 1 + temperature: + overrideState: 1 + value: 0 + tint: + overrideState: 1 + value: 0 + colorFilter: + overrideState: 1 + value: {r: 1, g: 1, b: 1, a: 1} + hueShift: + overrideState: 1 + value: 0 + saturation: + overrideState: 1 + value: 0 + brightness: + overrideState: 1 + value: 0 + postExposure: + overrideState: 1 + value: 0.25 + contrast: + overrideState: 1 + value: 0 + mixerRedOutRedIn: + overrideState: 1 + value: 109 + mixerRedOutGreenIn: + overrideState: 1 + value: 0 + mixerRedOutBlueIn: + overrideState: 1 + value: 0 + mixerGreenOutRedIn: + overrideState: 1 + value: 0 + mixerGreenOutGreenIn: + overrideState: 1 + value: 100 + mixerGreenOutBlueIn: + overrideState: 1 + value: 0 + mixerBlueOutRedIn: + overrideState: 1 + value: 0 + mixerBlueOutGreenIn: + overrideState: 1 + value: 0 + mixerBlueOutBlueIn: + overrideState: 1 + value: 100 + lift: + overrideState: 1 + value: {x: 0.940094, y: 0.95067817, z: 1, w: 0.12326658} + gamma: + overrideState: 1 + value: {x: 0.8684311, y: 0.95565057, z: 1, w: -0.030816643} + gain: + overrideState: 1 + value: {x: 0.9532222, y: 1, z: 0.9444836, w: -0.061633278} + masterCurve: + overrideState: 1 + value: + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 1 + outSlope: 1 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 1 + outSlope: 1 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + m_Loop: 0 + m_ZeroValue: 0 + m_Range: 1 + cachedData: + - 0 + - 0.0078125 + - 0.015625 + - 0.0234375 + - 0.03125 + - 0.0390625 + - 0.046875 + - 0.0546875 + - 0.0625 + - 0.0703125 + - 0.078125 + - 0.0859375 + - 0.09375 + - 0.1015625 + - 0.109375 + - 0.1171875 + - 0.125 + - 0.1328125 + - 0.140625 + - 0.1484375 + - 0.15625 + - 0.1640625 + - 0.171875 + - 0.1796875 + - 0.1875 + - 0.1953125 + - 0.203125 + - 0.2109375 + - 0.21875 + - 0.2265625 + - 0.234375 + - 0.2421875 + - 0.25 + - 0.2578125 + - 0.265625 + - 0.2734375 + - 0.28125 + - 0.2890625 + - 0.296875 + - 0.3046875 + - 0.3125 + - 0.3203125 + - 0.328125 + - 0.3359375 + - 0.34375 + - 0.3515625 + - 0.359375 + - 0.3671875 + - 0.375 + - 0.3828125 + - 0.390625 + - 0.3984375 + - 0.40625 + - 0.4140625 + - 0.421875 + - 0.4296875 + - 0.4375 + - 0.4453125 + - 0.453125 + - 0.4609375 + - 0.46875 + - 0.4765625 + - 0.484375 + - 0.4921875 + - 0.5 + - 0.5078125 + - 0.515625 + - 0.5234375 + - 0.53125 + - 0.5390625 + - 0.546875 + - 0.5546875 + - 0.5625 + - 0.5703125 + - 0.578125 + - 0.5859375 + - 0.59375 + - 0.6015625 + - 0.609375 + - 0.6171875 + - 0.625 + - 0.6328125 + - 0.640625 + - 0.6484375 + - 0.65625 + - 0.6640625 + - 0.671875 + - 0.6796875 + - 0.6875 + - 0.6953125 + - 0.703125 + - 0.7109375 + - 0.71875 + - 0.7265625 + - 0.734375 + - 0.7421875 + - 0.75 + - 0.7578125 + - 0.765625 + - 0.7734375 + - 0.78125 + - 0.7890625 + - 0.796875 + - 0.8046875 + - 0.8125 + - 0.8203125 + - 0.828125 + - 0.8359375 + - 0.84375 + - 0.8515625 + - 0.859375 + - 0.8671875 + - 0.875 + - 0.8828125 + - 0.890625 + - 0.8984375 + - 0.90625 + - 0.9140625 + - 0.921875 + - 0.9296875 + - 0.9375 + - 0.9453125 + - 0.953125 + - 0.9609375 + - 0.96875 + - 0.9765625 + - 0.984375 + - 0.9921875 + redCurve: + overrideState: 1 + value: + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 1 + outSlope: 1 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 1 + outSlope: 1 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + m_Loop: 0 + m_ZeroValue: 0 + m_Range: 1 + cachedData: + - 0 + - 0.0078125 + - 0.015625 + - 0.0234375 + - 0.03125 + - 0.0390625 + - 0.046875 + - 0.0546875 + - 0.0625 + - 0.0703125 + - 0.078125 + - 0.0859375 + - 0.09375 + - 0.1015625 + - 0.109375 + - 0.1171875 + - 0.125 + - 0.1328125 + - 0.140625 + - 0.1484375 + - 0.15625 + - 0.1640625 + - 0.171875 + - 0.1796875 + - 0.1875 + - 0.1953125 + - 0.203125 + - 0.2109375 + - 0.21875 + - 0.2265625 + - 0.234375 + - 0.2421875 + - 0.25 + - 0.2578125 + - 0.265625 + - 0.2734375 + - 0.28125 + - 0.2890625 + - 0.296875 + - 0.3046875 + - 0.3125 + - 0.3203125 + - 0.328125 + - 0.3359375 + - 0.34375 + - 0.3515625 + - 0.359375 + - 0.3671875 + - 0.375 + - 0.3828125 + - 0.390625 + - 0.3984375 + - 0.40625 + - 0.4140625 + - 0.421875 + - 0.4296875 + - 0.4375 + - 0.4453125 + - 0.453125 + - 0.4609375 + - 0.46875 + - 0.4765625 + - 0.484375 + - 0.4921875 + - 0.5 + - 0.5078125 + - 0.515625 + - 0.5234375 + - 0.53125 + - 0.5390625 + - 0.546875 + - 0.5546875 + - 0.5625 + - 0.5703125 + - 0.578125 + - 0.5859375 + - 0.59375 + - 0.6015625 + - 0.609375 + - 0.6171875 + - 0.625 + - 0.6328125 + - 0.640625 + - 0.6484375 + - 0.65625 + - 0.6640625 + - 0.671875 + - 0.6796875 + - 0.6875 + - 0.6953125 + - 0.703125 + - 0.7109375 + - 0.71875 + - 0.7265625 + - 0.734375 + - 0.7421875 + - 0.75 + - 0.7578125 + - 0.765625 + - 0.7734375 + - 0.78125 + - 0.7890625 + - 0.796875 + - 0.8046875 + - 0.8125 + - 0.8203125 + - 0.828125 + - 0.8359375 + - 0.84375 + - 0.8515625 + - 0.859375 + - 0.8671875 + - 0.875 + - 0.8828125 + - 0.890625 + - 0.8984375 + - 0.90625 + - 0.9140625 + - 0.921875 + - 0.9296875 + - 0.9375 + - 0.9453125 + - 0.953125 + - 0.9609375 + - 0.96875 + - 0.9765625 + - 0.984375 + - 0.9921875 + greenCurve: + overrideState: 1 + value: + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 1 + outSlope: 1 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 1 + outSlope: 1 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + m_Loop: 0 + m_ZeroValue: 0 + m_Range: 1 + cachedData: + - 0 + - 0.0078125 + - 0.015625 + - 0.0234375 + - 0.03125 + - 0.0390625 + - 0.046875 + - 0.0546875 + - 0.0625 + - 0.0703125 + - 0.078125 + - 0.0859375 + - 0.09375 + - 0.1015625 + - 0.109375 + - 0.1171875 + - 0.125 + - 0.1328125 + - 0.140625 + - 0.1484375 + - 0.15625 + - 0.1640625 + - 0.171875 + - 0.1796875 + - 0.1875 + - 0.1953125 + - 0.203125 + - 0.2109375 + - 0.21875 + - 0.2265625 + - 0.234375 + - 0.2421875 + - 0.25 + - 0.2578125 + - 0.265625 + - 0.2734375 + - 0.28125 + - 0.2890625 + - 0.296875 + - 0.3046875 + - 0.3125 + - 0.3203125 + - 0.328125 + - 0.3359375 + - 0.34375 + - 0.3515625 + - 0.359375 + - 0.3671875 + - 0.375 + - 0.3828125 + - 0.390625 + - 0.3984375 + - 0.40625 + - 0.4140625 + - 0.421875 + - 0.4296875 + - 0.4375 + - 0.4453125 + - 0.453125 + - 0.4609375 + - 0.46875 + - 0.4765625 + - 0.484375 + - 0.4921875 + - 0.5 + - 0.5078125 + - 0.515625 + - 0.5234375 + - 0.53125 + - 0.5390625 + - 0.546875 + - 0.5546875 + - 0.5625 + - 0.5703125 + - 0.578125 + - 0.5859375 + - 0.59375 + - 0.6015625 + - 0.609375 + - 0.6171875 + - 0.625 + - 0.6328125 + - 0.640625 + - 0.6484375 + - 0.65625 + - 0.6640625 + - 0.671875 + - 0.6796875 + - 0.6875 + - 0.6953125 + - 0.703125 + - 0.7109375 + - 0.71875 + - 0.7265625 + - 0.734375 + - 0.7421875 + - 0.75 + - 0.7578125 + - 0.765625 + - 0.7734375 + - 0.78125 + - 0.7890625 + - 0.796875 + - 0.8046875 + - 0.8125 + - 0.8203125 + - 0.828125 + - 0.8359375 + - 0.84375 + - 0.8515625 + - 0.859375 + - 0.8671875 + - 0.875 + - 0.8828125 + - 0.890625 + - 0.8984375 + - 0.90625 + - 0.9140625 + - 0.921875 + - 0.9296875 + - 0.9375 + - 0.9453125 + - 0.953125 + - 0.9609375 + - 0.96875 + - 0.9765625 + - 0.984375 + - 0.9921875 + blueCurve: + overrideState: 1 + value: + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 1 + outSlope: 1 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 1 + outSlope: 1 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + m_Loop: 0 + m_ZeroValue: 0 + m_Range: 1 + cachedData: + - 0 + - 0.0078125 + - 0.015625 + - 0.0234375 + - 0.03125 + - 0.0390625 + - 0.046875 + - 0.0546875 + - 0.0625 + - 0.0703125 + - 0.078125 + - 0.0859375 + - 0.09375 + - 0.1015625 + - 0.109375 + - 0.1171875 + - 0.125 + - 0.1328125 + - 0.140625 + - 0.1484375 + - 0.15625 + - 0.1640625 + - 0.171875 + - 0.1796875 + - 0.1875 + - 0.1953125 + - 0.203125 + - 0.2109375 + - 0.21875 + - 0.2265625 + - 0.234375 + - 0.2421875 + - 0.25 + - 0.2578125 + - 0.265625 + - 0.2734375 + - 0.28125 + - 0.2890625 + - 0.296875 + - 0.3046875 + - 0.3125 + - 0.3203125 + - 0.328125 + - 0.3359375 + - 0.34375 + - 0.3515625 + - 0.359375 + - 0.3671875 + - 0.375 + - 0.3828125 + - 0.390625 + - 0.3984375 + - 0.40625 + - 0.4140625 + - 0.421875 + - 0.4296875 + - 0.4375 + - 0.4453125 + - 0.453125 + - 0.4609375 + - 0.46875 + - 0.4765625 + - 0.484375 + - 0.4921875 + - 0.5 + - 0.5078125 + - 0.515625 + - 0.5234375 + - 0.53125 + - 0.5390625 + - 0.546875 + - 0.5546875 + - 0.5625 + - 0.5703125 + - 0.578125 + - 0.5859375 + - 0.59375 + - 0.6015625 + - 0.609375 + - 0.6171875 + - 0.625 + - 0.6328125 + - 0.640625 + - 0.6484375 + - 0.65625 + - 0.6640625 + - 0.671875 + - 0.6796875 + - 0.6875 + - 0.6953125 + - 0.703125 + - 0.7109375 + - 0.71875 + - 0.7265625 + - 0.734375 + - 0.7421875 + - 0.75 + - 0.7578125 + - 0.765625 + - 0.7734375 + - 0.78125 + - 0.7890625 + - 0.796875 + - 0.8046875 + - 0.8125 + - 0.8203125 + - 0.828125 + - 0.8359375 + - 0.84375 + - 0.8515625 + - 0.859375 + - 0.8671875 + - 0.875 + - 0.8828125 + - 0.890625 + - 0.8984375 + - 0.90625 + - 0.9140625 + - 0.921875 + - 0.9296875 + - 0.9375 + - 0.9453125 + - 0.953125 + - 0.9609375 + - 0.96875 + - 0.9765625 + - 0.984375 + - 0.9921875 + hueVsHueCurve: + overrideState: 1 + value: + curve: + serializedVersion: 2 + m_Curve: [] + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + m_Loop: 1 + m_ZeroValue: 0.5 + m_Range: 1 + cachedData: + - 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.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 + hueVsSatCurve: + overrideState: 1 + value: + curve: + serializedVersion: 2 + m_Curve: [] + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + m_Loop: 1 + m_ZeroValue: 0.5 + m_Range: 1 + cachedData: + - 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.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 + satVsSatCurve: + overrideState: 1 + value: + curve: + serializedVersion: 2 + m_Curve: [] + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + m_Loop: 0 + m_ZeroValue: 0.5 + m_Range: 1 + cachedData: + - 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.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 + lumVsSatCurve: + overrideState: 1 + value: + curve: + serializedVersion: 2 + m_Curve: [] + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + m_Loop: 0 + m_ZeroValue: 0.5 + m_Range: 1 + cachedData: + - 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.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 +--- !u!114 &-4245903518777974845 +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: 556797029e73b2347956b6579e77e05b, type: 3} + m_Name: DepthOfField + m_EditorClassIdentifier: + active: 1 + enabled: + overrideState: 1 + value: 1 + focusDistance: + overrideState: 1 + value: 3.23 + aperture: + overrideState: 1 + value: 1.8 + focalLength: + overrideState: 1 + value: 35 + kernelSize: + overrideState: 1 + value: 1 +--- !u!114 &-2791515958530614739 +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: 40b924e2dad56384a8df2a1e111bb675, type: 3} + m_Name: Vignette + m_EditorClassIdentifier: + active: 1 + enabled: + overrideState: 1 + value: 1 + mode: + overrideState: 1 + value: 0 + color: + overrideState: 1 + value: {r: 0, g: 0, b: 0, a: 1} + center: + overrideState: 1 + value: {x: 0.5, y: 0.5} + intensity: + overrideState: 1 + value: 0.46 + smoothness: + overrideState: 1 + value: 0.2 + roundness: + overrideState: 1 + value: 1 + rounded: + overrideState: 1 + value: 0 + mask: + overrideState: 1 + value: {fileID: 0} + defaultState: 1 + opacity: + overrideState: 1 + value: 1 +--- !u!114 &-2789048387281341695 +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: 6050e2d5de785ce4d931e4dbdbf2d755, type: 3} + m_Name: ChromaticAberration + m_EditorClassIdentifier: + active: 1 + enabled: + overrideState: 1 + value: 1 + spectralLut: + overrideState: 1 + value: {fileID: 0} + defaultState: 1 + intensity: + overrideState: 1 + value: 0.17 + fastMode: + overrideState: 1 + value: 0 +--- !u!114 &-772788219305567224 +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: 48a79b01ea5641d4aa6daa2e23605641, type: 3} + m_Name: Bloom + m_EditorClassIdentifier: + active: 1 + enabled: + overrideState: 1 + value: 1 + intensity: + overrideState: 1 + value: 4.5 + threshold: + overrideState: 1 + value: 1.05 + softKnee: + overrideState: 1 + value: 0.5 + clamp: + overrideState: 1 + value: 65472 + diffusion: + overrideState: 1 + value: 7 + anamorphicRatio: + overrideState: 1 + value: 0 + color: + overrideState: 1 + value: {r: 1, g: 1, b: 1, a: 1} + fastMode: + overrideState: 1 + value: 0 + dirtTexture: + overrideState: 1 + value: {fileID: 0} + defaultState: 1 + dirtIntensity: + overrideState: 1 + value: 0 +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + 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: 8e6292b2c06870d4495f009f912b9600, type: 3} + m_Name: GameObject Profile + m_EditorClassIdentifier: + settings: + - {fileID: -772788219305567224} + - {fileID: -2791515958530614739} + - {fileID: 8436985562852331457} + - {fileID: -2789048387281341695} + - {fileID: -4245903518777974845} + - {fileID: -5470801901089742585} +--- !u!114 &8436985562852331457 +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: b94fcd11afffcb142908bfcb1e261fba, type: 3} + m_Name: MotionBlur + m_EditorClassIdentifier: + active: 0 + enabled: + overrideState: 1 + value: 1 + shutterAngle: + overrideState: 1 + value: 270 + sampleCount: + overrideState: 1 + value: 32 diff --git a/Assets/Jammo-Character/Scenes/JammoScene_Profiles/GameObject Profile.asset.meta b/Assets/Jammo-Character/Scenes/JammoScene_Profiles/GameObject Profile.asset.meta new file mode 100644 index 0000000..ae75944 --- /dev/null +++ b/Assets/Jammo-Character/Scenes/JammoScene_Profiles/GameObject Profile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: beb8e357b61332141b55e69963cf4f96 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Jammo-Character/Scripts.meta b/Assets/Jammo-Character/Scripts.meta new file mode 100644 index 0000000..88ff6af --- /dev/null +++ b/Assets/Jammo-Character/Scripts.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 42e09110c681a2f4098bd04db06a8ad3 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Jammo-Character/Scripts/MovementInput.cs b/Assets/Jammo-Character/Scripts/MovementInput.cs new file mode 100644 index 0000000..ed2ac0a --- /dev/null +++ b/Assets/Jammo-Character/Scripts/MovementInput.cs @@ -0,0 +1,132 @@ + +using System.Collections; +using System.Collections.Generic; +using UnityEngine; + +//This script requires you to have setup your animator with 3 parameters, "InputMagnitude", "InputX", "InputZ" +//With a blend tree to control the inputmagnitude and allow blending between animations. +[RequireComponent(typeof(CharacterController))] +public class MovementInput : MonoBehaviour { + + public float Velocity; + [Space] + + private float InputX; + private float InputZ; + public bool blockRotationPlayer; + public float desiredRotationSpeed = 0.1f; + private Animator anim; + private Camera cam; + private CharacterController controller; + private bool isGrounded; + private Vector3 desiredMoveDirection; + + public float Speed; + public float allowPlayerRotation = 0.1f; + + + [Header("Animation Smoothing")] + [Range(0, 1f)] + public float HorizontalAnimSmoothTime = 0.2f; + [Range(0, 1f)] + public float VerticalAnimTime = 0.2f; + [Range(0,1f)] + public float StartAnimTime = 0.3f; + [Range(0, 1f)] + public float StopAnimTime = 0.15f; + + public float verticalVel; + private Vector3 moveVector; + + // Use this for initialization + void Start () { + anim = this.GetComponent (); + cam = Camera.main; + controller = this.GetComponent (); + } + + // Update is called once per frame + void Update () { + InputMagnitude (); + + isGrounded = controller.isGrounded; + if (isGrounded) + { + verticalVel -= 0; + } + else + { + verticalVel -= 1; + } + moveVector = new Vector3(0, verticalVel * .2f * Time.deltaTime, 0); + controller.Move(moveVector); + + + } + + void PlayerMoveAndRotation() { + InputX = Input.GetAxis("Horizontal"); + InputZ = Input.GetAxis("Vertical"); + + var camera = Camera.main; + var forward = cam.transform.forward; + var right = cam.transform.right; + + forward.y = 0f; + right.y = 0f; + + forward.Normalize(); + right.Normalize(); + + desiredMoveDirection = forward * InputZ + right * InputX; + + if (blockRotationPlayer == false) { + transform.rotation = Quaternion.Slerp(transform.rotation, Quaternion.LookRotation(desiredMoveDirection), desiredRotationSpeed); + controller.Move(desiredMoveDirection * Time.deltaTime * Velocity); + } + else + { + controller.Move((transform.forward * InputZ + transform.right * InputX) * Time.deltaTime * Velocity); + } + } + + public void LookAt(Vector3 pos) + { + transform.rotation = Quaternion.Slerp(transform.rotation, Quaternion.LookRotation(pos), desiredRotationSpeed); + } + + public void RotateToCamera(Transform t) + { + var forward = cam.transform.forward; + + desiredMoveDirection = forward; + Quaternion lookAtRotation = Quaternion.LookRotation(desiredMoveDirection); + Quaternion lookAtRotationOnly_Y = Quaternion.Euler(transform.rotation.eulerAngles.x, lookAtRotation.eulerAngles.y, transform.rotation.eulerAngles.z); + + t.rotation = Quaternion.Slerp(transform.rotation, lookAtRotationOnly_Y, desiredRotationSpeed); + } + + void InputMagnitude() { + //Calculate Input Vectors + InputX = Input.GetAxis ("Horizontal"); + InputZ = Input.GetAxis ("Vertical"); + + //Calculate the Input Magnitude + Speed = new Vector2(InputX, InputZ).sqrMagnitude; + + //Change animation mode if rotation is blocked + anim.SetBool("shooting", blockRotationPlayer); + + //Physically move player + if (Speed > allowPlayerRotation) { + anim.SetFloat ("Blend", Speed, StartAnimTime, Time.deltaTime); + anim.SetFloat("X", InputX, StartAnimTime/3, Time.deltaTime); + anim.SetFloat("Y", InputZ, StartAnimTime/3, Time.deltaTime); + PlayerMoveAndRotation (); + } else if (Speed < allowPlayerRotation) { + anim.SetFloat ("Blend", Speed, StopAnimTime, Time.deltaTime); + anim.SetFloat("X", InputX, StopAnimTime/ 3, Time.deltaTime); + anim.SetFloat("Y", InputZ, StopAnimTime/ 3, Time.deltaTime); + } + } +} diff --git a/Assets/Jammo-Character/Scripts/MovementInput.cs.meta b/Assets/Jammo-Character/Scripts/MovementInput.cs.meta new file mode 100644 index 0000000..013037c --- /dev/null +++ b/Assets/Jammo-Character/Scripts/MovementInput.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: caa9f165e2b4f1a4f9522501717c095d +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Jammo-Character/Textures.meta b/Assets/Jammo-Character/Textures.meta new file mode 100644 index 0000000..6a656a0 --- /dev/null +++ b/Assets/Jammo-Character/Textures.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d15049d3ea55e7b408b3c08a576b11a4 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Jammo-Character/Textures/Alternates.meta b/Assets/Jammo-Character/Textures/Alternates.meta new file mode 100644 index 0000000..369a1cb --- /dev/null +++ b/Assets/Jammo-Character/Textures/Alternates.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 87ab5bf0126ba3c47ab31192108fc418 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Jammo-Character/Textures/Alternates/t_jammo_black.psd b/Assets/Jammo-Character/Textures/Alternates/t_jammo_black.psd new file mode 100644 index 0000000..e750b90 Binary files /dev/null and b/Assets/Jammo-Character/Textures/Alternates/t_jammo_black.psd differ diff --git a/Assets/Jammo-Character/Textures/Alternates/t_jammo_black.psd.meta b/Assets/Jammo-Character/Textures/Alternates/t_jammo_black.psd.meta new file mode 100644 index 0000000..662623f --- /dev/null +++ b/Assets/Jammo-Character/Textures/Alternates/t_jammo_black.psd.meta @@ -0,0 +1,91 @@ +fileFormatVersion: 2 +guid: c9fd4ccfc3404b04eae3cd87e40a8e2e +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 10 + 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 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: -1 + mipBias: -100 + 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 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 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 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Jammo-Character/Textures/Alternates/t_jammo_blue.psd b/Assets/Jammo-Character/Textures/Alternates/t_jammo_blue.psd new file mode 100644 index 0000000..88bc798 Binary files /dev/null and b/Assets/Jammo-Character/Textures/Alternates/t_jammo_blue.psd differ diff --git a/Assets/Jammo-Character/Textures/Alternates/t_jammo_blue.psd.meta b/Assets/Jammo-Character/Textures/Alternates/t_jammo_blue.psd.meta new file mode 100644 index 0000000..77998f7 --- /dev/null +++ b/Assets/Jammo-Character/Textures/Alternates/t_jammo_blue.psd.meta @@ -0,0 +1,91 @@ +fileFormatVersion: 2 +guid: 10c532508a2453a48aa766e69193d105 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 10 + 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 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: -1 + mipBias: -100 + 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 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 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 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Jammo-Character/Textures/Alternates/t_jammo_yellow.psd b/Assets/Jammo-Character/Textures/Alternates/t_jammo_yellow.psd new file mode 100644 index 0000000..58cacc5 Binary files /dev/null and b/Assets/Jammo-Character/Textures/Alternates/t_jammo_yellow.psd differ diff --git a/Assets/Jammo-Character/Textures/Alternates/t_jammo_yellow.psd.meta b/Assets/Jammo-Character/Textures/Alternates/t_jammo_yellow.psd.meta new file mode 100644 index 0000000..dc3630d --- /dev/null +++ b/Assets/Jammo-Character/Textures/Alternates/t_jammo_yellow.psd.meta @@ -0,0 +1,91 @@ +fileFormatVersion: 2 +guid: f61e83171850a834788a4664dbb54eae +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 10 + 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 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: -1 + mipBias: -100 + 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 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 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 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Jammo-Character/Textures/jammo_eyes.png b/Assets/Jammo-Character/Textures/jammo_eyes.png new file mode 100644 index 0000000..d166f6e Binary files /dev/null and b/Assets/Jammo-Character/Textures/jammo_eyes.png differ diff --git a/Assets/Jammo-Character/Textures/jammo_eyes.png.meta b/Assets/Jammo-Character/Textures/jammo_eyes.png.meta new file mode 100644 index 0000000..ffc894a --- /dev/null +++ b/Assets/Jammo-Character/Textures/jammo_eyes.png.meta @@ -0,0 +1,115 @@ +fileFormatVersion: 2 +guid: 09beef63c41c25b458d2f95fdfd9e0e5 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 10 + 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 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: -1 + mipBias: -100 + 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: 2 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 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: WebGL + 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: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Jammo-Character/Textures/mixbot1.json b/Assets/Jammo-Character/Textures/mixbot1.json new file mode 100644 index 0000000..5490552 --- /dev/null +++ b/Assets/Jammo-Character/Textures/mixbot1.json @@ -0,0 +1,30 @@ +{ + "format": { + "version": "1.0" + }, + "shaders": { + "Main shader": { + "parameters": { + "Common Parameters": { + "ao_intensity": 0.75, + "emissive_intensity": 1, + "horizonFade": 1.2999999523162842, + "nbSamples": 16 + }, + "Parallax Occlusion Mapping": { + "maxPOMSamples": 16, + "minPOMSamples": 4, + "pomStrength": 1, + "usePOM": false + } + }, + "shader": "pbr-metal-rough-with-alpha-blending", + "shaderInstance": "Main shader" + } + }, + "texturesets": { + "mixbox": { + "shader": "Main shader" + } + } +} diff --git a/Assets/Jammo-Character/Textures/mixbot1.json.meta b/Assets/Jammo-Character/Textures/mixbot1.json.meta new file mode 100644 index 0000000..172ba5a --- /dev/null +++ b/Assets/Jammo-Character/Textures/mixbot1.json.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: c3a8ef644c409ed4697012135caec542 +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Jammo-Character/Textures/mixbot_low_mixamo_edit1_AO.png b/Assets/Jammo-Character/Textures/mixbot_low_mixamo_edit1_AO.png new file mode 100644 index 0000000..075922e Binary files /dev/null and b/Assets/Jammo-Character/Textures/mixbot_low_mixamo_edit1_AO.png differ diff --git a/Assets/Jammo-Character/Textures/mixbot_low_mixamo_edit1_AO.png.meta b/Assets/Jammo-Character/Textures/mixbot_low_mixamo_edit1_AO.png.meta new file mode 100644 index 0000000..1a23676 --- /dev/null +++ b/Assets/Jammo-Character/Textures/mixbot_low_mixamo_edit1_AO.png.meta @@ -0,0 +1,91 @@ +fileFormatVersion: 2 +guid: 6a0fb4aa4de843c45a776e5a4ac9dd69 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 10 + 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 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: -1 + mipBias: -100 + 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 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 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 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Jammo-Character/Textures/mixbot_low_mixamo_edit1_AlbedoTransparency.png b/Assets/Jammo-Character/Textures/mixbot_low_mixamo_edit1_AlbedoTransparency.png new file mode 100644 index 0000000..718a2fd Binary files /dev/null and b/Assets/Jammo-Character/Textures/mixbot_low_mixamo_edit1_AlbedoTransparency.png differ diff --git a/Assets/Jammo-Character/Textures/mixbot_low_mixamo_edit1_AlbedoTransparency.png.meta b/Assets/Jammo-Character/Textures/mixbot_low_mixamo_edit1_AlbedoTransparency.png.meta new file mode 100644 index 0000000..8d2be00 --- /dev/null +++ b/Assets/Jammo-Character/Textures/mixbot_low_mixamo_edit1_AlbedoTransparency.png.meta @@ -0,0 +1,91 @@ +fileFormatVersion: 2 +guid: fb6e06c953f0d8045bc58e0f5a640f07 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 10 + 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 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: -1 + mipBias: -100 + 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 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 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 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Jammo-Character/Textures/mixbot_low_mixamo_edit1_MetallicSmoothness.png b/Assets/Jammo-Character/Textures/mixbot_low_mixamo_edit1_MetallicSmoothness.png new file mode 100644 index 0000000..6b8d45b Binary files /dev/null and b/Assets/Jammo-Character/Textures/mixbot_low_mixamo_edit1_MetallicSmoothness.png differ diff --git a/Assets/Jammo-Character/Textures/mixbot_low_mixamo_edit1_MetallicSmoothness.png.meta b/Assets/Jammo-Character/Textures/mixbot_low_mixamo_edit1_MetallicSmoothness.png.meta new file mode 100644 index 0000000..e33c881 --- /dev/null +++ b/Assets/Jammo-Character/Textures/mixbot_low_mixamo_edit1_MetallicSmoothness.png.meta @@ -0,0 +1,91 @@ +fileFormatVersion: 2 +guid: 3a5a871d579c2da4094f823d674595eb +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 10 + 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 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: -1 + mipBias: -100 + 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 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 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 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Jammo-Character/Textures/mixbot_low_mixamo_edit1_Normal.png b/Assets/Jammo-Character/Textures/mixbot_low_mixamo_edit1_Normal.png new file mode 100644 index 0000000..0f52c7f Binary files /dev/null and b/Assets/Jammo-Character/Textures/mixbot_low_mixamo_edit1_Normal.png differ diff --git a/Assets/Jammo-Character/Textures/mixbot_low_mixamo_edit1_Normal.png.meta b/Assets/Jammo-Character/Textures/mixbot_low_mixamo_edit1_Normal.png.meta new file mode 100644 index 0000000..72c040d --- /dev/null +++ b/Assets/Jammo-Character/Textures/mixbot_low_mixamo_edit1_Normal.png.meta @@ -0,0 +1,115 @@ +fileFormatVersion: 2 +guid: f6c18262b3c0eba4bb830f3d91682a4f +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 10 + 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 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: -1 + mipBias: -100 + 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: 1 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 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: WebGL + 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: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Materials.meta b/Assets/Materials.meta new file mode 100644 index 0000000..ee17c23 --- /dev/null +++ b/Assets/Materials.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d0234ba368eeec9418390da711bfdad0 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Materials/Skybox_Mat.mat b/Assets/Materials/Skybox_Mat.mat new file mode 100644 index 0000000..ba73d5d --- /dev/null +++ b/Assets/Materials/Skybox_Mat.mat @@ -0,0 +1,89 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 6 + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_Name: Skybox_Mat + m_Shader: {fileID: 106, guid: 0000000000000000f000000000000000, type: 0} + m_ShaderKeywords: _METALLIC_SETUP _SUNDISK_HIGH_QUALITY + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Floats: + - _AtmosphereThickness: 0.53 + - _BumpScale: 1 + - _Cutoff: 0.5 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _Exposure: 1.25 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SunDisk: 2 + - _SunSize: 0.04 + - _SunSizeConvergence: 5 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _GroundColor: {r: 0.6392157, g: 0.6901961, b: 0.7411765, a: 1} + - _SkyTint: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} diff --git a/Assets/Materials/Skybox_Mat.mat.meta b/Assets/Materials/Skybox_Mat.mat.meta new file mode 100644 index 0000000..facef4a --- /dev/null +++ b/Assets/Materials/Skybox_Mat.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 0ffaa0b7117ba8c47a9d05ae701d4b4d +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/New Material.mat b/Assets/New Material.mat new file mode 100644 index 0000000..9be3fe7 --- /dev/null +++ b/Assets/New Material.mat @@ -0,0 +1,124 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 6 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: New Material + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_ShaderKeywords: _NORMALMAP _SMOOTHNESS_TEXTURE_ALBEDO_CHANNEL_A _SPECULAR_SETUP + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: 2000 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 2800000, guid: fab85e0cacda9644a99e5182a86b71f5, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Floats: + - _AlphaClip: 0 + - _Blend: 0 + - _BumpScale: 1 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 2 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 0 + - _Glossiness: 0 + - _GlossyReflections: 0 + - _Metallic: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.005 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 0.924 + - _SmoothnessTextureChannel: 1 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _Surface: 0 + - _WorkflowMode: 0 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 0, b: 0.26219988, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.103773594, g: 0.103773594, b: 0.103773594, a: 1} + m_BuildTextureStacks: [] +--- !u!114 &5268476566877677707 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 4 diff --git a/Assets/New Material.mat.meta b/Assets/New Material.mat.meta new file mode 100644 index 0000000..ca6d51c --- /dev/null +++ b/Assets/New Material.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 8f366e22ce83f8046af5d649fb111607 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Presets.meta b/Assets/Presets.meta new file mode 100644 index 0000000..c3a6623 --- /dev/null +++ b/Assets/Presets.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 558255460b74ec04fa70b5570e9327bd +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Presets/AudioCompressedInMemory.preset b/Assets/Presets/AudioCompressedInMemory.preset new file mode 100644 index 0000000..4ca91ac --- /dev/null +++ b/Assets/Presets/AudioCompressedInMemory.preset @@ -0,0 +1,137 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!181963792 &2655988077585873504 +Preset: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_Name: AudioCompressedInMemory + m_TargetType: + m_NativeTypeID: 1020 + m_ManagedTypePPtr: {fileID: 0} + m_ManagedTypeFallback: + m_Properties: + - target: {fileID: 0} + propertyPath: m_ExternalObjects.Array.size + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_DefaultSettings.loadType + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_DefaultSettings.sampleRateSetting + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_DefaultSettings.sampleRateOverride + value: 44100 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_DefaultSettings.compressionFormat + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_DefaultSettings.quality + value: 0.7 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_DefaultSettings.conversionMode + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettingOverrides.Array.size + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettingOverrides.Array.data[0].first + value: 4 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettingOverrides.Array.data[0].second.loadType + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettingOverrides.Array.data[0].second.sampleRateSetting + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettingOverrides.Array.data[0].second.sampleRateOverride + value: 44100 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettingOverrides.Array.data[0].second.compressionFormat + value: 3 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettingOverrides.Array.data[0].second.quality + value: 0.7 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettingOverrides.Array.data[0].second.conversionMode + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettingOverrides.Array.data[1].first + value: 7 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettingOverrides.Array.data[1].second.loadType + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettingOverrides.Array.data[1].second.sampleRateSetting + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettingOverrides.Array.data[1].second.sampleRateOverride + value: 44100 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettingOverrides.Array.data[1].second.compressionFormat + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettingOverrides.Array.data[1].second.quality + value: 0.7 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettingOverrides.Array.data[1].second.conversionMode + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_ForceToMono + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_Normalize + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PreloadAudioData + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_LoadInBackground + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_Ambisonic + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_3D + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_UserData + value: + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_AssetBundleName + value: + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_AssetBundleVariant + value: + objectReference: {fileID: 0} diff --git a/Assets/Presets/AudioCompressedInMemory.preset.meta b/Assets/Presets/AudioCompressedInMemory.preset.meta new file mode 100644 index 0000000..cd0d563 --- /dev/null +++ b/Assets/Presets/AudioCompressedInMemory.preset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 2dd802e4d37c65149922028d3e973832 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Presets/AudioStreaming.preset b/Assets/Presets/AudioStreaming.preset new file mode 100644 index 0000000..8499ed8 --- /dev/null +++ b/Assets/Presets/AudioStreaming.preset @@ -0,0 +1,137 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!181963792 &2655988077585873504 +Preset: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_Name: AudioStreaming + m_TargetType: + m_NativeTypeID: 1020 + m_ManagedTypePPtr: {fileID: 0} + m_ManagedTypeFallback: + m_Properties: + - target: {fileID: 0} + propertyPath: m_ExternalObjects.Array.size + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_DefaultSettings.loadType + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_DefaultSettings.sampleRateSetting + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_DefaultSettings.sampleRateOverride + value: 44100 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_DefaultSettings.compressionFormat + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_DefaultSettings.quality + value: 0.7 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_DefaultSettings.conversionMode + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettingOverrides.Array.size + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettingOverrides.Array.data[0].first + value: 4 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettingOverrides.Array.data[0].second.loadType + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettingOverrides.Array.data[0].second.sampleRateSetting + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettingOverrides.Array.data[0].second.sampleRateOverride + value: 44100 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettingOverrides.Array.data[0].second.compressionFormat + value: 3 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettingOverrides.Array.data[0].second.quality + value: 0.7 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettingOverrides.Array.data[0].second.conversionMode + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettingOverrides.Array.data[1].first + value: 7 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettingOverrides.Array.data[1].second.loadType + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettingOverrides.Array.data[1].second.sampleRateSetting + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettingOverrides.Array.data[1].second.sampleRateOverride + value: 44100 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettingOverrides.Array.data[1].second.compressionFormat + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettingOverrides.Array.data[1].second.quality + value: 0.7 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettingOverrides.Array.data[1].second.conversionMode + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_ForceToMono + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_Normalize + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PreloadAudioData + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_LoadInBackground + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_Ambisonic + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_3D + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_UserData + value: + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_AssetBundleName + value: + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_AssetBundleVariant + value: + objectReference: {fileID: 0} diff --git a/Assets/Presets/AudioStreaming.preset.meta b/Assets/Presets/AudioStreaming.preset.meta new file mode 100644 index 0000000..b7b8118 --- /dev/null +++ b/Assets/Presets/AudioStreaming.preset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 86bcce7f5575b54408aa0f3a7d321039 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2655988077585873504 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Presets/Defaults.meta b/Assets/Presets/Defaults.meta new file mode 100644 index 0000000..959a49b --- /dev/null +++ b/Assets/Presets/Defaults.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 71ea82b02df99c2439e0dc8e4e1ebc24 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Presets/Defaults/AlbedoTexture_Default.preset b/Assets/Presets/Defaults/AlbedoTexture_Default.preset new file mode 100644 index 0000000..6137100 --- /dev/null +++ b/Assets/Presets/Defaults/AlbedoTexture_Default.preset @@ -0,0 +1,497 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!181963792 &2655988077585873504 +Preset: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_Name: AlbedoTexture_Default + m_TargetType: + m_NativeTypeID: 1006 + m_ManagedTypePPtr: {fileID: 0} + m_ManagedTypeFallback: + m_Properties: + - target: {fileID: 0} + propertyPath: m_FileIDToRecycleName.Array.size + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_ExternalObjects.Array.size + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_MipMapMode + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_EnableMipMap + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_sRGBTexture + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_LinearTexture + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_FadeOut + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_BorderMipMap + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_MipMapsPreserveCoverage + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_AlphaTestReferenceValue + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_MipMapFadeDistanceStart + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_MipMapFadeDistanceEnd + value: 3 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_ConvertToNormalMap + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_ExternalNormalMap + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_HeightScale + value: 0.25 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_NormalMapFilter + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_IsReadable + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_StreamingMipmaps + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_StreamingMipmapsPriority + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_GrayScaleToAlpha + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_GenerateCubemap + value: 6 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_CubemapConvolution + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_SeamlessCubemap + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_TextureFormat + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_MaxTextureSize + value: 2048 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_TextureSettings.m_FilterMode + value: -1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_TextureSettings.m_Aniso + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_TextureSettings.m_MipBias + value: -100 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_TextureSettings.m_WrapU + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_TextureSettings.m_WrapV + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_TextureSettings.m_WrapW + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_NPOTScale + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_Lightmap + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_CompressionQuality + value: 50 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_SpriteMode + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_SpriteExtrude + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_SpriteMeshType + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_Alignment + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_SpritePivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_SpritePivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_SpritePixelsToUnits + value: 100 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_SpriteBorder.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_SpriteBorder.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_SpriteBorder.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_SpriteBorder.w + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_SpriteGenerateFallbackPhysicsShape + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_AlphaUsage + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_AlphaIsTransparency + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_SpriteTessellationDetail + value: -1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_TextureType + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_TextureShape + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_SingleChannelComponent + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_MaxTextureSizeSet + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_CompressionQualitySet + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_TextureFormatSet + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.size + value: 5 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[0].m_BuildTarget + value: DefaultTexturePlatform + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[0].m_MaxTextureSize + value: 8192 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[0].m_ResizeAlgorithm + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[0].m_TextureFormat + value: -1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[0].m_TextureCompression + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[0].m_CompressionQuality + value: 50 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[0].m_CrunchedCompression + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[0].m_AllowsAlphaSplitting + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[0].m_Overridden + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[0].m_AndroidETC2FallbackOverride + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[1].m_BuildTarget + value: Standalone + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[1].m_MaxTextureSize + value: 8192 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[1].m_ResizeAlgorithm + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[1].m_TextureFormat + value: -1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[1].m_TextureCompression + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[1].m_CompressionQuality + value: 50 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[1].m_CrunchedCompression + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[1].m_AllowsAlphaSplitting + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[1].m_Overridden + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[1].m_AndroidETC2FallbackOverride + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[2].m_BuildTarget + value: iPhone + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[2].m_MaxTextureSize + value: 8192 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[2].m_ResizeAlgorithm + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[2].m_TextureFormat + value: -1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[2].m_TextureCompression + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[2].m_CompressionQuality + value: 50 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[2].m_CrunchedCompression + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[2].m_AllowsAlphaSplitting + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[2].m_Overridden + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[2].m_AndroidETC2FallbackOverride + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[3].m_BuildTarget + value: Android + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[3].m_MaxTextureSize + value: 8192 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[3].m_ResizeAlgorithm + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[3].m_TextureFormat + value: -1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[3].m_TextureCompression + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[3].m_CompressionQuality + value: 50 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[3].m_CrunchedCompression + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[3].m_AllowsAlphaSplitting + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[3].m_Overridden + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[3].m_AndroidETC2FallbackOverride + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[4].m_BuildTarget + value: Windows Store Apps + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[4].m_MaxTextureSize + value: 8192 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[4].m_ResizeAlgorithm + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[4].m_TextureFormat + value: -1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[4].m_TextureCompression + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[4].m_CompressionQuality + value: 50 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[4].m_CrunchedCompression + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[4].m_AllowsAlphaSplitting + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[4].m_Overridden + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[4].m_AndroidETC2FallbackOverride + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_SpriteSheet.m_Sprites.Array.size + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_SpriteSheet.m_Outline.Array.size + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_SpriteSheet.m_PhysicsShape.Array.size + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_SpriteSheet.m_Bones.Array.size + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_SpriteSheet.m_SpriteID + value: + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_SpriteSheet.m_Vertices.Array.size + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_SpriteSheet.m_Indices.Array.size + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_SpriteSheet.m_Edges.Array.size + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_SpriteSheet.m_Weights.Array.size + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_SpritePackingTag + value: + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PSDRemoveMatte + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PSDShowRemoveMatteOption + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_UserData + value: + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_AssetBundleName + value: + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_AssetBundleVariant + value: + objectReference: {fileID: 0} diff --git a/Assets/Presets/Defaults/AlbedoTexture_Default.preset.meta b/Assets/Presets/Defaults/AlbedoTexture_Default.preset.meta new file mode 100644 index 0000000..2e7fd87 --- /dev/null +++ b/Assets/Presets/Defaults/AlbedoTexture_Default.preset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: e8537455c6c08bd4e8bf0be3707da685 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2655988077585873504 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Presets/Defaults/AudioDecompressOnLoad.preset b/Assets/Presets/Defaults/AudioDecompressOnLoad.preset new file mode 100644 index 0000000..dd415f6 --- /dev/null +++ b/Assets/Presets/Defaults/AudioDecompressOnLoad.preset @@ -0,0 +1,137 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!181963792 &2655988077585873504 +Preset: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_Name: AudioDecompressOnLoad + m_TargetType: + m_NativeTypeID: 1020 + m_ManagedTypePPtr: {fileID: 0} + m_ManagedTypeFallback: + m_Properties: + - target: {fileID: 0} + propertyPath: m_ExternalObjects.Array.size + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_DefaultSettings.loadType + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_DefaultSettings.sampleRateSetting + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_DefaultSettings.sampleRateOverride + value: 44100 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_DefaultSettings.compressionFormat + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_DefaultSettings.quality + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_DefaultSettings.conversionMode + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettingOverrides.Array.size + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettingOverrides.Array.data[0].first + value: 4 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettingOverrides.Array.data[0].second.loadType + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettingOverrides.Array.data[0].second.sampleRateSetting + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettingOverrides.Array.data[0].second.sampleRateOverride + value: 44100 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettingOverrides.Array.data[0].second.compressionFormat + value: 3 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettingOverrides.Array.data[0].second.quality + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettingOverrides.Array.data[0].second.conversionMode + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettingOverrides.Array.data[1].first + value: 7 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettingOverrides.Array.data[1].second.loadType + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettingOverrides.Array.data[1].second.sampleRateSetting + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettingOverrides.Array.data[1].second.sampleRateOverride + value: 44100 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettingOverrides.Array.data[1].second.compressionFormat + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettingOverrides.Array.data[1].second.quality + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettingOverrides.Array.data[1].second.conversionMode + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_ForceToMono + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_Normalize + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PreloadAudioData + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_LoadInBackground + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_Ambisonic + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_3D + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_UserData + value: + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_AssetBundleName + value: + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_AssetBundleVariant + value: + objectReference: {fileID: 0} diff --git a/Assets/Presets/Defaults/AudioDecompressOnLoad.preset.meta b/Assets/Presets/Defaults/AudioDecompressOnLoad.preset.meta new file mode 100644 index 0000000..8e3dd02 --- /dev/null +++ b/Assets/Presets/Defaults/AudioDecompressOnLoad.preset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: e7689051185d12f4298e1ebb2693a29f +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Presets/Defaults/DirectionalLight_Default.preset b/Assets/Presets/Defaults/DirectionalLight_Default.preset new file mode 100644 index 0000000..24034e4 --- /dev/null +++ b/Assets/Presets/Defaults/DirectionalLight_Default.preset @@ -0,0 +1,137 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!181963792 &2655988077585873504 +Preset: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_Name: DirectionalLight_Default + m_TargetType: + m_NativeTypeID: 108 + m_ManagedTypePPtr: {fileID: 0} + m_ManagedTypeFallback: + m_Properties: + - target: {fileID: 0} + propertyPath: m_Enabled + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_Type + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_Color.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_Color.g + value: 0.95686275 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_Color.b + value: 0.8392157 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_Color.a + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_Intensity + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_Range + value: 10 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_SpotAngle + value: 30 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_CookieSize + value: 10 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_Shadows.m_Type + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_Shadows.m_Resolution + value: -1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_Shadows.m_CustomResolution + value: -1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_Shadows.m_Strength + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_Shadows.m_Bias + value: 0.02 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_Shadows.m_NormalBias + value: 0.1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_Shadows.m_NearPlane + value: 0.1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_Cookie + value: + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_DrawHalo + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_Flare + value: + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_RenderMode + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_CullingMask.m_Bits + value: 4294967295 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_Lightmapping + value: 4 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_LightShadowCasterMode + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_AreaSize.x + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_AreaSize.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_BounceIntensity + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_ColorTemperature + value: 6570 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_UseColorTemperature + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_ShadowRadius + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_ShadowAngle + value: 0 + objectReference: {fileID: 0} diff --git a/Assets/Presets/Defaults/DirectionalLight_Default.preset.meta b/Assets/Presets/Defaults/DirectionalLight_Default.preset.meta new file mode 100644 index 0000000..ac83bf9 --- /dev/null +++ b/Assets/Presets/Defaults/DirectionalLight_Default.preset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 463065d4f17d1d94d848aa127b94dd43 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2655988077585873504 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Presets/NormalTexture.preset b/Assets/Presets/NormalTexture.preset new file mode 100644 index 0000000..c6a771f --- /dev/null +++ b/Assets/Presets/NormalTexture.preset @@ -0,0 +1,497 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!181963792 &2655988077585873504 +Preset: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_Name: NormalTexture + m_TargetType: + m_NativeTypeID: 1006 + m_ManagedTypePPtr: {fileID: 0} + m_ManagedTypeFallback: + m_Properties: + - target: {fileID: 0} + propertyPath: m_FileIDToRecycleName.Array.size + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_ExternalObjects.Array.size + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_MipMapMode + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_EnableMipMap + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_sRGBTexture + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_LinearTexture + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_FadeOut + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_BorderMipMap + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_MipMapsPreserveCoverage + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_AlphaTestReferenceValue + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_MipMapFadeDistanceStart + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_MipMapFadeDistanceEnd + value: 3 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_ConvertToNormalMap + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_ExternalNormalMap + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_HeightScale + value: 0.25 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_NormalMapFilter + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_IsReadable + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_StreamingMipmaps + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_StreamingMipmapsPriority + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_GrayScaleToAlpha + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_GenerateCubemap + value: 6 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_CubemapConvolution + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_SeamlessCubemap + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_TextureFormat + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_MaxTextureSize + value: 2048 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_TextureSettings.m_FilterMode + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_TextureSettings.m_Aniso + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_TextureSettings.m_MipBias + value: -100 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_TextureSettings.m_WrapU + value: -1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_TextureSettings.m_WrapV + value: -1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_TextureSettings.m_WrapW + value: -1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_NPOTScale + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_Lightmap + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_CompressionQuality + value: 50 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_SpriteMode + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_SpriteExtrude + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_SpriteMeshType + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_Alignment + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_SpritePivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_SpritePivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_SpritePixelsToUnits + value: 100 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_SpriteBorder.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_SpriteBorder.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_SpriteBorder.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_SpriteBorder.w + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_SpriteGenerateFallbackPhysicsShape + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_AlphaUsage + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_AlphaIsTransparency + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_SpriteTessellationDetail + value: -1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_TextureType + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_TextureShape + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_SingleChannelComponent + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_MaxTextureSizeSet + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_CompressionQualitySet + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_TextureFormatSet + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.size + value: 5 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[0].m_BuildTarget + value: DefaultTexturePlatform + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[0].m_MaxTextureSize + value: 8192 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[0].m_ResizeAlgorithm + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[0].m_TextureFormat + value: -1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[0].m_TextureCompression + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[0].m_CompressionQuality + value: 50 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[0].m_CrunchedCompression + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[0].m_AllowsAlphaSplitting + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[0].m_Overridden + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[0].m_AndroidETC2FallbackOverride + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[1].m_BuildTarget + value: Standalone + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[1].m_MaxTextureSize + value: 8192 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[1].m_ResizeAlgorithm + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[1].m_TextureFormat + value: -1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[1].m_TextureCompression + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[1].m_CompressionQuality + value: 50 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[1].m_CrunchedCompression + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[1].m_AllowsAlphaSplitting + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[1].m_Overridden + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[1].m_AndroidETC2FallbackOverride + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[2].m_BuildTarget + value: iPhone + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[2].m_MaxTextureSize + value: 8192 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[2].m_ResizeAlgorithm + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[2].m_TextureFormat + value: -1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[2].m_TextureCompression + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[2].m_CompressionQuality + value: 50 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[2].m_CrunchedCompression + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[2].m_AllowsAlphaSplitting + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[2].m_Overridden + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[2].m_AndroidETC2FallbackOverride + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[3].m_BuildTarget + value: Android + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[3].m_MaxTextureSize + value: 8192 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[3].m_ResizeAlgorithm + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[3].m_TextureFormat + value: -1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[3].m_TextureCompression + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[3].m_CompressionQuality + value: 50 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[3].m_CrunchedCompression + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[3].m_AllowsAlphaSplitting + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[3].m_Overridden + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[3].m_AndroidETC2FallbackOverride + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[4].m_BuildTarget + value: Windows Store Apps + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[4].m_MaxTextureSize + value: 8192 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[4].m_ResizeAlgorithm + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[4].m_TextureFormat + value: -1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[4].m_TextureCompression + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[4].m_CompressionQuality + value: 50 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[4].m_CrunchedCompression + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[4].m_AllowsAlphaSplitting + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[4].m_Overridden + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[4].m_AndroidETC2FallbackOverride + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_SpriteSheet.m_Sprites.Array.size + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_SpriteSheet.m_Outline.Array.size + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_SpriteSheet.m_PhysicsShape.Array.size + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_SpriteSheet.m_Bones.Array.size + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_SpriteSheet.m_SpriteID + value: + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_SpriteSheet.m_Vertices.Array.size + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_SpriteSheet.m_Indices.Array.size + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_SpriteSheet.m_Edges.Array.size + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_SpriteSheet.m_Weights.Array.size + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_SpritePackingTag + value: + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PSDRemoveMatte + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PSDShowRemoveMatteOption + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_UserData + value: + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_AssetBundleName + value: + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_AssetBundleVariant + value: + objectReference: {fileID: 0} diff --git a/Assets/Presets/NormalTexture.preset.meta b/Assets/Presets/NormalTexture.preset.meta new file mode 100644 index 0000000..33fcecf --- /dev/null +++ b/Assets/Presets/NormalTexture.preset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 14a57cf3b9fa1c74b884aa7e0dcf1faa +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2655988077585873504 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Presets/UtilityTexture.preset b/Assets/Presets/UtilityTexture.preset new file mode 100644 index 0000000..6b879d8 --- /dev/null +++ b/Assets/Presets/UtilityTexture.preset @@ -0,0 +1,497 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!181963792 &2655988077585873504 +Preset: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_Name: UtilityTexture + m_TargetType: + m_NativeTypeID: 1006 + m_ManagedTypePPtr: {fileID: 0} + m_ManagedTypeFallback: + m_Properties: + - target: {fileID: 0} + propertyPath: m_FileIDToRecycleName.Array.size + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_ExternalObjects.Array.size + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_MipMapMode + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_EnableMipMap + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_sRGBTexture + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_LinearTexture + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_FadeOut + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_BorderMipMap + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_MipMapsPreserveCoverage + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_AlphaTestReferenceValue + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_MipMapFadeDistanceStart + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_MipMapFadeDistanceEnd + value: 3 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_ConvertToNormalMap + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_ExternalNormalMap + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_HeightScale + value: 0.25 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_NormalMapFilter + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_IsReadable + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_StreamingMipmaps + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_StreamingMipmapsPriority + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_GrayScaleToAlpha + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_GenerateCubemap + value: 6 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_CubemapConvolution + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_SeamlessCubemap + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_TextureFormat + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_MaxTextureSize + value: 2048 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_TextureSettings.m_FilterMode + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_TextureSettings.m_Aniso + value: -1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_TextureSettings.m_MipBias + value: -1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_TextureSettings.m_WrapU + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_TextureSettings.m_WrapV + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_TextureSettings.m_WrapW + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_NPOTScale + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_Lightmap + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_CompressionQuality + value: 50 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_SpriteMode + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_SpriteExtrude + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_SpriteMeshType + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_Alignment + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_SpritePivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_SpritePivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_SpritePixelsToUnits + value: 100 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_SpriteBorder.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_SpriteBorder.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_SpriteBorder.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_SpriteBorder.w + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_SpriteGenerateFallbackPhysicsShape + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_AlphaUsage + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_AlphaIsTransparency + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_SpriteTessellationDetail + value: -1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_TextureType + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_TextureShape + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_SingleChannelComponent + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_MaxTextureSizeSet + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_CompressionQualitySet + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_TextureFormatSet + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.size + value: 5 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[0].m_BuildTarget + value: DefaultTexturePlatform + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[0].m_MaxTextureSize + value: 8192 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[0].m_ResizeAlgorithm + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[0].m_TextureFormat + value: -1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[0].m_TextureCompression + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[0].m_CompressionQuality + value: 50 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[0].m_CrunchedCompression + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[0].m_AllowsAlphaSplitting + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[0].m_Overridden + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[0].m_AndroidETC2FallbackOverride + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[1].m_BuildTarget + value: Standalone + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[1].m_MaxTextureSize + value: 8192 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[1].m_ResizeAlgorithm + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[1].m_TextureFormat + value: -1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[1].m_TextureCompression + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[1].m_CompressionQuality + value: 50 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[1].m_CrunchedCompression + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[1].m_AllowsAlphaSplitting + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[1].m_Overridden + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[1].m_AndroidETC2FallbackOverride + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[2].m_BuildTarget + value: iPhone + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[2].m_MaxTextureSize + value: 8192 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[2].m_ResizeAlgorithm + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[2].m_TextureFormat + value: -1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[2].m_TextureCompression + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[2].m_CompressionQuality + value: 50 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[2].m_CrunchedCompression + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[2].m_AllowsAlphaSplitting + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[2].m_Overridden + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[2].m_AndroidETC2FallbackOverride + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[3].m_BuildTarget + value: Android + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[3].m_MaxTextureSize + value: 8192 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[3].m_ResizeAlgorithm + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[3].m_TextureFormat + value: -1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[3].m_TextureCompression + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[3].m_CompressionQuality + value: 50 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[3].m_CrunchedCompression + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[3].m_AllowsAlphaSplitting + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[3].m_Overridden + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[3].m_AndroidETC2FallbackOverride + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[4].m_BuildTarget + value: Windows Store Apps + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[4].m_MaxTextureSize + value: 8192 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[4].m_ResizeAlgorithm + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[4].m_TextureFormat + value: -1 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[4].m_TextureCompression + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[4].m_CompressionQuality + value: 50 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[4].m_CrunchedCompression + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[4].m_AllowsAlphaSplitting + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[4].m_Overridden + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PlatformSettings.Array.data[4].m_AndroidETC2FallbackOverride + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_SpriteSheet.m_Sprites.Array.size + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_SpriteSheet.m_Outline.Array.size + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_SpriteSheet.m_PhysicsShape.Array.size + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_SpriteSheet.m_Bones.Array.size + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_SpriteSheet.m_SpriteID + value: + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_SpriteSheet.m_Vertices.Array.size + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_SpriteSheet.m_Indices.Array.size + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_SpriteSheet.m_Edges.Array.size + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_SpriteSheet.m_Weights.Array.size + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_SpritePackingTag + value: + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PSDRemoveMatte + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_PSDShowRemoveMatteOption + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_UserData + value: + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_AssetBundleName + value: + objectReference: {fileID: 0} + - target: {fileID: 0} + propertyPath: m_AssetBundleVariant + value: + objectReference: {fileID: 0} diff --git a/Assets/Presets/UtilityTexture.preset.meta b/Assets/Presets/UtilityTexture.preset.meta new file mode 100644 index 0000000..a11d2e9 --- /dev/null +++ b/Assets/Presets/UtilityTexture.preset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 45f7b2e3c78185248b3adbb14429c2ab +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2655988077585873504 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Readme.asset b/Assets/Readme.asset new file mode 100644 index 0000000..4310d24 --- /dev/null +++ b/Assets/Readme.asset @@ -0,0 +1,50 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + 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: fcf7219bab7fe46a1ad266029b2fee19, type: 3} + m_Name: Readme + m_EditorClassIdentifier: + icon: {fileID: 2800000, guid: 7801804018a7dcf42abb827444e18660, type: 3} + title: Universal Render Pipeline Template + sections: + - heading: Universal Render Pipeline + text: 'The Universal Project Template configures Project settings for Projects where performance, wide platform support, and ease of customizing graphics are the primary considerations.' + linkText: + url: + - heading: + text: 'This Template uses the Universal Render Pipeline (URP) and Shader Graph.' + linkText: + url: + - heading: + text: 'URP is prebuilt Scriptable Render Pipeline that is quick and easy to customize, and lets you create optimized graphics across a wide range of platforms. URP also includes an optimized 2D renderer complete with 2D lights and pixel perfect rendering, and an integrated post-processing solution.' + linkText: + url: + - heading: + text: 'Shader Graph is a tool that allows you to create shaders using a visual node editor instead of writing code.' + linkText: + url: + - heading: + text: 'This template contains a sample Scene that contains examples of how to configure lighting settings, Materials, Shaders, and post-processing effects in URP, several preconfigured Universal Render Pipeline Assets that let you quickly swap between graphics quality levels, and Presets that have been optimized for use with URP.' + linkText: + url: + - heading: + text: 'This template contains a sample Scene that contains examples of how to configure lighting settings, Materials, Shaders, and post-processing effects in URP, several preconfigured Universal Render Pipeline Assets that let you quickly swap between graphics quality levels, and Presets that have been optimized for use with URP.' + linkText: + url: + - heading: + text: 'To read more about URP and its built-in features, see the ' + linkText: URP documentation. + url: https://docs.unity3d.com/Packages/com.unity.render-pipelines.universal@latest/index.html + - heading: + text: 'For more information about Shader Graph, see the ' + linkText: Shader Graph documentation + url: https://docs.unity3d.com/Packages/com.unity.shadergraph@latest + loadedLayout: 1 diff --git a/Assets/Readme.asset.meta b/Assets/Readme.asset.meta new file mode 100644 index 0000000..0f2df39 --- /dev/null +++ b/Assets/Readme.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 83c2ed844a8c74b779a4c823d16594b1 +timeCreated: 1484217493 +licenseType: Store +NativeFormatImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources.meta b/Assets/Resources.meta new file mode 100644 index 0000000..cc26ba8 --- /dev/null +++ b/Assets/Resources.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 715a014fd75359d4aac3e61c4090b531 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/DOTweenSettings.asset b/Assets/Resources/DOTweenSettings.asset new file mode 100644 index 0000000..dda3f55 --- /dev/null +++ b/Assets/Resources/DOTweenSettings.asset @@ -0,0 +1,48 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + 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: 16995157, guid: 1947c939544078f4eaf1f9bbeea7c70b, type: 3} + m_Name: DOTweenSettings + m_EditorClassIdentifier: + useSafeMode: 1 + safeModeOptions: + nestedTweenFailureBehaviour: 0 + timeScale: 1 + useSmoothDeltaTime: 0 + maxSmoothUnscaledTime: 0.15 + rewindCallbackMode: 0 + showUnityEditorReport: 0 + logBehaviour: 0 + drawGizmos: 1 + defaultRecyclable: 0 + defaultAutoPlay: 3 + defaultUpdateType: 0 + defaultTimeScaleIndependent: 0 + defaultEaseType: 6 + defaultEaseOvershootOrAmplitude: 1.70158 + defaultEasePeriod: 0 + defaultAutoKill: 1 + defaultLoopType: 0 + debugMode: 0 + debugStoreTargetId: 0 + showPreviewPanel: 1 + storeSettingsLocation: 0 + modules: + showPanel: 0 + audioEnabled: 1 + physicsEnabled: 1 + physics2DEnabled: 1 + spriteEnabled: 1 + uiEnabled: 1 + textMeshProEnabled: 0 + tk2DEnabled: 0 + showPlayingTweens: 0 + showPausedTweens: 0 diff --git a/Assets/Resources/DOTweenSettings.asset.meta b/Assets/Resources/DOTweenSettings.asset.meta new file mode 100644 index 0000000..8e32d9a --- /dev/null +++ b/Assets/Resources/DOTweenSettings.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 73184ef9e8bc03945bd42cb9b205d6f7 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Scenes.meta b/Assets/Scenes.meta new file mode 100644 index 0000000..0ee9f5d --- /dev/null +++ b/Assets/Scenes.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 0c87b110fcecde046881723ff5ef17bc +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Scenes/SampleScene.unity b/Assets/Scenes/SampleScene.unity new file mode 100644 index 0000000..079ed0e --- /dev/null +++ b/Assets/Scenes/SampleScene.unity @@ -0,0 +1,25048 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!29 &1 +OcclusionCullingSettings: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_OcclusionBakeSettings: + smallestOccluder: 5 + smallestHole: 0.25 + backfaceThreshold: 100 + m_SceneGUID: 00000000000000000000000000000000 + m_OcclusionCullingData: {fileID: 0} +--- !u!104 &2 +RenderSettings: + m_ObjectHideFlags: 0 + serializedVersion: 9 + m_Fog: 1 + m_FogColor: {r: 0.65080994, g: 0.666729, b: 0.7075472, a: 1} + m_FogMode: 3 + m_FogDensity: 0.05 + m_LinearFogStart: 0 + m_LinearFogEnd: 300 + m_AmbientSkyColor: {r: 0.212, g: 0.227, b: 0.259, a: 1} + m_AmbientEquatorColor: {r: 0.114, g: 0.125, b: 0.133, a: 1} + m_AmbientGroundColor: {r: 0.047, g: 0.043, b: 0.035, a: 1} + m_AmbientIntensity: 1 + m_AmbientMode: 0 + m_SubtractiveShadowColor: {r: 0.13296545, g: 0.19145328, b: 0.33962262, a: 1} + m_SkyboxMaterial: {fileID: 2100000, guid: 0ffaa0b7117ba8c47a9d05ae701d4b4d, type: 2} + m_HaloStrength: 0.5 + m_FlareStrength: 1 + m_FlareFadeSpeed: 3 + m_HaloTexture: {fileID: 0} + m_SpotCookie: {fileID: 10001, guid: 0000000000000000e000000000000000, type: 0} + m_DefaultReflectionMode: 0 + m_DefaultReflectionResolution: 128 + m_ReflectionBounces: 1 + m_ReflectionIntensity: 1 + m_CustomReflection: {fileID: 0} + m_Sun: {fileID: 2138677392} + m_IndirectSpecularColor: {r: 0.2850269, g: 0.3713935, b: 0.49601045, a: 1} + m_UseRadianceAmbientProbe: 0 +--- !u!157 &3 +LightmapSettings: + m_ObjectHideFlags: 0 + serializedVersion: 12 + m_GIWorkflowMode: 0 + m_GISettings: + serializedVersion: 2 + m_BounceScale: 1 + m_IndirectOutputScale: 1 + m_AlbedoBoost: 1 + m_EnvironmentLightingMode: 1 + m_EnableBakedLightmaps: 1 + m_EnableRealtimeLightmaps: 0 + m_LightmapEditorSettings: + serializedVersion: 12 + m_Resolution: 2 + m_BakeResolution: 32 + m_AtlasSize: 512 + m_AO: 1 + m_AOMaxDistance: 1 + m_CompAOExponent: 1 + m_CompAOExponentDirect: 0.3 + m_ExtractAmbientOcclusion: 0 + m_Padding: 2 + m_LightmapParameters: {fileID: 0} + m_LightmapsBakeMode: 0 + m_TextureCompression: 1 + m_FinalGather: 0 + m_FinalGatherFiltering: 1 + m_FinalGatherRayCount: 256 + m_ReflectionCompression: 2 + m_MixedBakeMode: 1 + m_BakeBackend: 1 + m_PVRSampling: 1 + m_PVRDirectSampleCount: 32 + m_PVRSampleCount: 256 + m_PVRBounces: 2 + m_PVREnvironmentSampleCount: 256 + m_PVREnvironmentReferencePointCount: 2048 + m_PVRFilteringMode: 2 + m_PVRDenoiserTypeDirect: 0 + m_PVRDenoiserTypeIndirect: 0 + m_PVRDenoiserTypeAO: 0 + m_PVRFilterTypeDirect: 0 + m_PVRFilterTypeIndirect: 0 + m_PVRFilterTypeAO: 0 + m_PVREnvironmentMIS: 0 + m_PVRCulling: 1 + m_PVRFilteringGaussRadiusDirect: 1 + m_PVRFilteringGaussRadiusIndirect: 5 + m_PVRFilteringGaussRadiusAO: 2 + m_PVRFilteringAtrousPositionSigmaDirect: 0.548 + m_PVRFilteringAtrousPositionSigmaIndirect: 2 + m_PVRFilteringAtrousPositionSigmaAO: 1 + m_ExportTrainingData: 0 + m_TrainingDataDestination: TrainingData + m_LightProbeSampleCountMultiplier: 4 + m_LightingDataAsset: {fileID: 0} + m_LightingSettings: {fileID: 4890085278179872738, guid: 477cc4148fad3449482a3bc3178594e2, type: 2} +--- !u!196 &4 +NavMeshSettings: + serializedVersion: 2 + m_ObjectHideFlags: 0 + m_BuildSettings: + serializedVersion: 2 + agentTypeID: 0 + agentRadius: 0.5 + agentHeight: 2 + agentSlope: 45 + agentClimb: 0.4 + ledgeDropHeight: 0 + maxJumpAcrossDistance: 0 + minRegionArea: 2 + manualCellSize: 0 + cellSize: 0.16666667 + manualTileSize: 0 + tileSize: 256 + accuratePlacement: 0 + maxJobWorkers: 0 + preserveTilesOutsideBounds: 0 + debug: + m_Flags: 0 + m_NavMeshData: {fileID: 0} +--- !u!1 &14415280 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 14415285} + - component: {fileID: 14415284} + - component: {fileID: 14415283} + - component: {fileID: 14415282} + - component: {fileID: 14415281} + m_Layer: 0 + m_Name: Cube + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!64 &14415281 +MeshCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 14415280} + m_Material: {fileID: 0} + m_IsTrigger: 0 + m_Enabled: 1 + serializedVersion: 4 + m_Convex: 0 + m_CookingOptions: 30 + m_Mesh: {fileID: 1755934346} +--- !u!33 &14415282 +MeshFilter: + m_ObjectHideFlags: 10 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 14415280} + m_Mesh: {fileID: 1755934346} +--- !u!23 &14415283 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 14415280} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 31321ba15b8f8eb4c954353edc038b1d, 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: 2 + 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!114 &14415284 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 14415280} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 8233d90336aea43098adf6dbabd606a2, type: 3} + m_Name: + m_EditorClassIdentifier: + m_MeshFormatVersion: 1 + m_Faces: + - m_Indexes: 000000000100000002000000010000000300000002000000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: 040000000500000006000000050000000700000006000000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: 08000000090000000a000000090000000b0000000a000000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: 0c0000000d0000000e0000000d0000000f0000000e000000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: 100000001100000012000000110000001300000012000000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: 140000001500000016000000150000001700000016000000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: 18000000190000001a000000190000001b0000001a000000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: 1c0000001d0000001e0000001d0000001f0000001e000000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: 200000002100000022000000210000002300000022000000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: 240000002500000026000000250000002700000026000000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: 28000000290000002a000000290000002b0000002a000000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: 2c0000002d0000002e0000002d0000002f0000002e000000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: 300000003100000032000000310000003300000032000000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: 340000003500000036000000350000003700000036000000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + m_SharedVertices: + - m_Vertices: 000000001a0000001f000000 + - m_Vertices: 0d00000016000000180000001d000000 + - m_Vertices: 010000001b00000022000000 + - m_Vertices: 04000000170000001900000020000000 + - m_Vertices: 020000001e0000003100000034000000 + - m_Vertices: 270000003300000036000000 + - m_Vertices: 0f000000100000001c0000002900000030000000 + - m_Vertices: 250000002b00000032000000 + - m_Vertices: 03000000230000002c00000035000000 + - m_Vertices: 260000002e00000037000000 + - m_Vertices: 060000001100000021000000280000002d000000 + - m_Vertices: 240000002a0000002f000000 + - m_Vertices: 050000000800000015000000 + - m_Vertices: 070000000a00000013000000 + - m_Vertices: 090000000c00000014000000 + - m_Vertices: 0b0000000e00000012000000 + m_SharedTextures: [] + m_Positions: + - {x: 0, y: 0, z: 1.3777962} + - {x: 20, y: 0, z: 1.3777962} + - {x: 0, y: 1, z: 1.3777962} + - {x: 20, y: 1, z: 1.3777962} + - {x: 20, y: 0, z: 0} + - {x: 20, y: 0, z: -20} + - {x: 20, y: 1, z: 0} + - {x: 20, y: 1, z: -20} + - {x: 20, y: 0, z: -20} + - {x: 0, y: 0, z: -20} + - {x: 20, y: 1, z: -20} + - {x: 0, y: 1, z: -20} + - {x: 0, y: 0, z: -20} + - {x: 0, y: 0, z: 0} + - {x: 0, y: 1, z: -20} + - {x: 0, y: 1, z: 0} + - {x: 0, y: 1, z: 0} + - {x: 20, y: 1, z: 0} + - {x: 0, y: 1, z: -20} + - {x: 20, y: 1, z: -20} + - {x: 0, y: 0, z: -20} + - {x: 20, y: 0, z: -20} + - {x: 0, y: 0, z: 0} + - {x: 20, y: 0, z: 0} + - {x: 0, y: 0, z: 0} + - {x: 20, y: 0, z: 0} + - {x: 0, y: 0, z: 1.3777962} + - {x: 20, y: 0, z: 1.3777962} + - {x: 0, y: 1, z: 0} + - {x: 0, y: 0, z: 0} + - {x: 0, y: 1, z: 1.3777962} + - {x: 0, y: 0, z: 1.3777962} + - {x: 20, y: 0, z: 0} + - {x: 20, y: 1, z: 0} + - {x: 20, y: 0, z: 1.3777962} + - {x: 20, y: 1, z: 1.3777962} + - {x: 20, y: 9.275699, z: 0} + - {x: 0, y: 9.275699, z: 0} + - {x: 20, y: 9.275699, z: 1.3777962} + - {x: 0, y: 9.275699, z: 1.3777962} + - {x: 20, y: 1, z: 0} + - {x: 0, y: 1, z: 0} + - {x: 20, y: 9.275699, z: 0} + - {x: 0, y: 9.275699, z: 0} + - {x: 20, y: 1, z: 1.3777962} + - {x: 20, y: 1, z: 0} + - {x: 20, y: 9.275699, z: 1.3777962} + - {x: 20, y: 9.275699, z: 0} + - {x: 0, y: 1, z: 0} + - {x: 0, y: 1, z: 1.3777962} + - {x: 0, y: 9.275699, z: 0} + - {x: 0, y: 9.275699, z: 1.3777962} + - {x: 0, y: 1, z: 1.3777962} + - {x: 20, y: 1, z: 1.3777962} + - {x: 0, y: 9.275699, z: 1.3777962} + - {x: 20, y: 9.275699, z: 1.3777962} + m_Textures0: + - {x: 0, y: 0} + - {x: -20, y: 0} + - {x: 0, y: 1} + - {x: -20, y: 1} + - {x: 0, y: 0} + - {x: -20, y: 0} + - {x: 0, y: 1} + - {x: -20, y: 1} + - {x: 20, y: 0} + - {x: 0, y: 0} + - {x: 20, y: 1} + - {x: 0, y: 1} + - {x: 20, y: 0} + - {x: 0, y: 0} + - {x: 20, y: 1} + - {x: 0, y: 1} + - {x: 0, y: 0} + - {x: 20, y: 0} + - {x: 0, y: -20} + - {x: 20, y: -20} + - {x: 0, y: -20} + - {x: -20, y: -20} + - {x: 0, y: 0} + - {x: -20, y: 0} + - {x: 0, y: 0} + - {x: -20, y: 0} + - {x: 0, y: 1.3777962} + - {x: -20, y: 1.3777962} + - {x: 0, y: 1} + - {x: 0, y: 0} + - {x: -1.3777962, y: 1} + - {x: -1.3777962, y: 0} + - {x: 0, y: 0} + - {x: 0, y: 1} + - {x: 1.3777962, y: 0} + - {x: 1.3777962, y: 1} + - {x: 20, y: 0} + - {x: 0, y: 0} + - {x: 20, y: 1.3777962} + - {x: 0, y: 1.3777962} + - {x: 20, y: 1} + - {x: 0, y: 1} + - {x: 20, y: 9.275699} + - {x: 0, y: 9.275699} + - {x: 1.3777962, y: 1} + - {x: 0, y: 1} + - {x: 1.3777962, y: 9.275699} + - {x: 0, y: 9.275699} + - {x: 0, y: 1} + - {x: -1.3777962, y: 1} + - {x: 0, y: 9.275699} + - {x: -1.3777962, y: 9.275699} + - {x: 0, y: 1} + - {x: -20, y: 1} + - {x: 0, y: 9.275699} + - {x: -20, y: 9.275699} + m_Textures2: [] + m_Textures3: [] + m_Tangents: + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + m_Colors: [] + m_UnwrapParameters: + m_HardAngle: 88 + m_PackMargin: 20 + m_AngleError: 8 + m_AreaError: 15 + m_PreserveMeshAssetOnDestroy: 0 + assetGuid: + m_Mesh: {fileID: 1755934346} + m_IsSelectable: 1 + m_SelectedFaces: + m_SelectedEdges: [] + m_SelectedVertices: +--- !u!4 &14415285 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 14415280} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: -1, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 4 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &28951429 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 28951430} + m_Layer: 3 + m_Name: RotationTarget + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &28951430 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 28951429} + m_LocalRotation: {x: 0.000000081977504, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0.6204083, z: 0.02056408} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 832844327} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &42140252 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 42140253} + - component: {fileID: 42140254} + m_Layer: 3 + m_Name: WalkRig + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &42140253 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 42140252} + 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_Children: + - {fileID: 1888020711} + - {fileID: 1767269157} + m_Father: {fileID: 539745478044430600} + m_RootOrder: 6 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &42140254 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 42140252} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 70b342d8ce5c2fd48b8fa3147d48d1d1, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Weight: 1 + m_Effectors: + - m_Transform: {fileID: 1399667852} + m_Style: + shape: {fileID: 4300000, guid: e050c2b16fe384bd994474655a4b4968, type: 2} + color: {r: 0.6416981, g: 1, b: 0, a: 0.5} + size: 0.05 + position: {x: 0, y: 0, z: 0} + rotation: {x: 0, y: 0, z: 0} + m_Visible: 1 + - m_Transform: {fileID: 1428345787} + m_Style: + shape: {fileID: 4300000, guid: e050c2b16fe384bd994474655a4b4968, type: 2} + color: {r: 0.6416981, g: 1, b: 0, a: 0.5} + size: 0.05 + position: {x: 0, y: 0, z: 0} + rotation: {x: 0, y: 0, z: 0} + m_Visible: 1 +--- !u!1 &94802074 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 94802075} + m_Layer: 3 + m_Name: LookPos + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &94802075 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 94802074} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 1, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 539745478044430600} + m_RootOrder: 8 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &132632202 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 132632203} + - component: {fileID: 132632204} + m_Layer: 3 + m_Name: RightHandIK + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &132632203 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 132632202} + 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_Children: + - {fileID: 322790082} + - {fileID: 550226749} + m_Father: {fileID: 708908355} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &132632204 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 132632202} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: aeda7bfbf984f2a4da5ab4b8967b115d, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Weight: 1 + m_Data: + m_Root: {fileID: 1736390053318990959} + m_Mid: {fileID: 2647666789508465143} + m_Tip: {fileID: 1245275053774927467} + m_Target: {fileID: 322790082} + m_Hint: {fileID: 0} + m_TargetPositionWeight: 1 + m_TargetRotationWeight: 1 + m_HintWeight: 1 + m_MaintainTargetPositionOffset: 0 + m_MaintainTargetRotationOffset: 0 + m_SourceObjectsGUIToggle: 1 + m_SettingsGUIToggle: 0 +--- !u!1 &132984675 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 132984679} + - component: {fileID: 132984678} + - component: {fileID: 132984677} + - component: {fileID: 132984676} + m_Layer: 5 + m_Name: Canvas + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &132984676 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 132984675} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: dc42784cf147c0c48a680349fa168899, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreReversedGraphics: 1 + m_BlockingObjects: 0 + m_BlockingMask: + serializedVersion: 2 + m_Bits: 4294967295 +--- !u!114 &132984677 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 132984675} + 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: 0 +--- !u!223 &132984678 +Canvas: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 132984675} + m_Enabled: 1 + serializedVersion: 3 + m_RenderMode: 0 + m_Camera: {fileID: 0} + m_PlaneDistance: 100 + m_PixelPerfect: 0 + m_ReceivesEvents: 1 + m_OverrideSorting: 0 + m_OverridePixelPerfect: 0 + m_SortingBucketNormalizedSize: 0 + m_AdditionalShaderChannelsFlag: 0 + m_SortingLayerID: 0 + m_SortingOrder: 0 + m_TargetDisplay: 0 +--- !u!224 &132984679 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 132984675} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 1034097081} + m_Father: {fileID: 0} + m_RootOrder: 6 + 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: 0, y: 0} + m_Pivot: {x: 0, y: 0} +--- !u!1 &144792027 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 144792028} + - component: {fileID: 144792029} + m_Layer: 3 + m_Name: LeftHandIK + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &144792028 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 144792027} + 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_Children: + - {fileID: 1797010380} + - {fileID: 663865639} + m_Father: {fileID: 508308508} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &144792029 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 144792027} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: aeda7bfbf984f2a4da5ab4b8967b115d, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Weight: 0.7 + m_Data: + m_Root: {fileID: 3772228501800882099} + m_Mid: {fileID: 3234227603773615720} + m_Tip: {fileID: 8561193508876723632} + m_Target: {fileID: 1797010380} + m_Hint: {fileID: 0} + m_TargetPositionWeight: 1 + m_TargetRotationWeight: 1 + m_HintWeight: 1 + m_MaintainTargetPositionOffset: 0 + m_MaintainTargetRotationOffset: 0 + m_SourceObjectsGUIToggle: 1 + m_SettingsGUIToggle: 1 +--- !u!1 &209627689 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 209627691} + - component: {fileID: 209627690} + - component: {fileID: 209627692} + m_Layer: 0 + m_Name: CM FreeLook1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &209627690 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 209627689} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 319d2fe34a804e245819465c9505ea59, type: 3} + m_Name: + m_EditorClassIdentifier: + m_ExcludedPropertiesInInspector: + - m_Script + m_LockStageInInspector: + m_StreamingVersion: 20170927 + m_Priority: 10 + m_StandbyUpdate: 2 + m_LookAt: {fileID: 539745478044430600} + m_Follow: {fileID: 539745478044430600} + m_CommonLens: 1 + m_Lens: + FieldOfView: 40 + OrthographicSize: 10 + NearClipPlane: 0.1 + FarClipPlane: 5000 + Dutch: 0 + LensShift: {x: 0, y: 0} + m_Transitions: + m_BlendHint: 0 + m_InheritPosition: 0 + m_OnCameraLive: + m_PersistentCalls: + m_Calls: [] + m_LegacyBlendHint: 0 + m_YAxis: + Value: 0.5 + m_SpeedMode: 0 + m_MaxSpeed: 2 + m_AccelTime: 0.2 + m_DecelTime: 0.1 + m_InputAxisName: Mouse Y + m_InputAxisValue: 0 + m_InvertInput: 1 + m_MinValue: 0 + m_MaxValue: 1 + m_Wrap: 0 + m_Recentering: + m_enabled: 0 + m_WaitTime: 1 + m_RecenteringTime: 2 + m_LegacyHeadingDefinition: -1 + m_LegacyVelocityFilterStrength: -1 + m_YAxisRecentering: + m_enabled: 0 + m_WaitTime: 1 + m_RecenteringTime: 2 + m_LegacyHeadingDefinition: -1 + m_LegacyVelocityFilterStrength: -1 + m_XAxis: + Value: 0 + m_SpeedMode: 0 + m_MaxSpeed: 300 + m_AccelTime: 0.1 + m_DecelTime: 0.1 + m_InputAxisName: Mouse X + m_InputAxisValue: 0 + m_InvertInput: 0 + m_MinValue: -180 + m_MaxValue: 180 + m_Wrap: 1 + m_Recentering: + m_enabled: 0 + m_WaitTime: 1 + m_RecenteringTime: 2 + m_LegacyHeadingDefinition: -1 + m_LegacyVelocityFilterStrength: -1 + m_Heading: + m_Definition: 2 + m_VelocityFilterStrength: 4 + m_Bias: 0 + m_RecenterToTargetHeading: + m_enabled: 0 + m_WaitTime: 1 + m_RecenteringTime: 2 + m_LegacyHeadingDefinition: -1 + m_LegacyVelocityFilterStrength: -1 + m_BindingMode: 4 + m_SplineCurvature: 0.2 + m_Orbits: + - m_Height: 4.5 + m_Radius: 4 + - m_Height: 2.5 + m_Radius: 7.04 + - m_Height: -1.29 + m_Radius: 4 + m_LegacyHeadingBias: 3.4028235e+38 + m_Rigs: + - {fileID: 2101118513} + - {fileID: 869074593} + - {fileID: 906262003} +--- !u!4 &209627691 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 209627689} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 11, y: 2.5, z: -20.79} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 2101118514} + - {fileID: 869074594} + - {fileID: 906262004} + m_Father: {fileID: 0} + m_RootOrder: 5 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &209627692 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 209627689} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e501d18bb52cf8c40b1853ca4904654f, type: 3} + m_Name: + m_EditorClassIdentifier: + m_CollideAgainst: + serializedVersion: 2 + m_Bits: 1 + m_IgnoreTag: + m_TransparentLayers: + serializedVersion: 2 + m_Bits: 0 + m_MinimumDistanceFromTarget: 0.1 + m_AvoidObstacles: 1 + m_DistanceLimit: 0 + m_MinimumOcclusionTime: 0 + m_CameraRadius: 0.1 + m_Strategy: 1 + m_MaximumEffort: 4 + m_SmoothingTime: 0 + m_Damping: 0 + m_DampingWhenOccluded: 0 + m_OptimalTargetDistance: 0 +--- !u!1 &275152777 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 275152778} + m_Layer: 3 + m_Name: Model + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &275152778 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 275152777} + 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_Children: + - {fileID: 8447345115298737374} + - {fileID: 2342561958520740612} + - {fileID: 1236401970514064221} + - {fileID: 4444495002138158157} + - {fileID: 2474195207096458730} + - {fileID: 2970148366285955608} + - {fileID: 413325650563895485} + - {fileID: 5597511937187855927} + - {fileID: 4232395462691045923} + - {fileID: 981696854506848924} + - {fileID: 2034393277314198108} + - {fileID: 9055611149445587334} + - {fileID: 1895166094368435029} + - {fileID: 4762027720914940156} + - {fileID: 8149820908250722595} + - {fileID: 348501149982687336} + - {fileID: 3481275315209732022} + - {fileID: 1968351752643184444} + - {fileID: 7690150860515383070} + - {fileID: 6344036241701769032} + - {fileID: 6599243431123627274} + - {fileID: 865260883641818419} + - {fileID: 4494418218027586743} + - {fileID: 4977372144985887714} + - {fileID: 3107201403938988194} + m_Father: {fileID: 539745478044430600} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &276323216 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 276323217} + - component: {fileID: 276323219} + - component: {fileID: 276323218} + m_Layer: 3 + m_Name: Particle System (1) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &276323217 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 276323216} + 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_Children: [] + m_Father: {fileID: 949289639} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!199 &276323218 +ParticleSystemRenderer: + serializedVersion: 6 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 276323216} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 0 + m_DynamicOccludee: 1 + 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: 8f366e22ce83f8046af5d649fb111607, 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_RenderMode: 4 + 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: 4 + 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: 10207, guid: 0000000000000000e000000000000000, type: 0} + m_Mesh1: {fileID: 0} + m_Mesh2: {fileID: 0} + m_Mesh3: {fileID: 0} + m_MaskInteraction: 0 +--- !u!198 &276323219 +ParticleSystem: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 276323216} + serializedVersion: 7 + lengthInSec: 5 + simulationSpeed: 1 + stopAction: 0 + cullingMode: 0 + ringBufferMode: 0 + ringBufferLoopRange: {x: 0, y: 1} + looping: 1 + prewarm: 0 + playOnAwake: 0 + useUnscaledTime: 0 + autoRandomSeed: 1 + useRigidbodyForVelocity: 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: 0 + moveWithCustomTransform: {fileID: 0} + scalingMode: 1 + randomSeed: 0 + InitialModule: + serializedVersion: 3 + enabled: 1 + startLifetime: + serializedVersion: 2 + minMaxState: 3 + scalar: 0.1 + minScalar: 0.25 + 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: 3 + scalar: 15.4 + minScalar: 7 + 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: 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 + startSize: + serializedVersion: 2 + minMaxState: 3 + scalar: 0.08 + minScalar: 0.05 + 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: 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 + startRotationY: + 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 + startRotation: + 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 + randomizeRotationDirection: 0 + maxNumParticles: 1000 + size3D: 0 + rotation3D: 0 + gravityModifier: + serializedVersion: 2 + minMaxState: 0 + scalar: 1 + 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: 4 + angle: 76.41 + length: 5 + boxThickness: {x: 0, y: 0, z: 0} + radiusThickness: 0.68 + donutRadius: 0.2 + m_Position: {x: 0, y: 0, z: 0} + m_Rotation: {x: 0, y: 0, z: 0} + 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: 1 + sphericalDirectionAmount: 0.2 + randomPositionAmount: 0 + radius: + value: 0.06 + 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: 360 + mode: 0 + spread: 0.93 + 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: 50 + 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 + 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: 2 + scalar: 1 + minScalar: 1 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 34 + weightedMode: 0 + inWeight: 0 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.85765755 + value: 1 + inSlope: 0 + outSlope: -7.025311 + tangentMode: 65 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0 + inSlope: -7.025311 + outSlope: -7.025311 + tangentMode: 34 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0 + 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: 0.8144143 + value: 1 + 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: 2 + scalar: 1 + minScalar: 1 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 34 + weightedMode: 0 + inWeight: 0 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.88469833 + value: 1 + inSlope: 0 + outSlope: -8.672901 + tangentMode: 65 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0 + inSlope: -8.672901 + outSlope: -8.672901 + tangentMode: 34 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0 + 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: 0.8342341 + value: 1 + 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: 2 + scalar: 2.7294087 + minScalar: 1 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 34 + weightedMode: 0 + inWeight: 0 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.94054043 + value: 1 + inSlope: 0 + outSlope: -16.818151 + tangentMode: 65 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0 + inSlope: -16.818151 + outSlope: -16.818151 + tangentMode: 34 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.37521374 + inSlope: -0.1629208 + outSlope: -0.1629208 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.90614307 + value: 0.6394021 + inSlope: -0.13991849 + outSlope: -0.13991849 + 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 + separateAxes: 1 + 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: 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 + 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: 2 + 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: 1 + 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: 3 + 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: 1 + 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: 1 + strength: + serializedVersion: 2 + minMaxState: 0 + scalar: 0 + 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: 0.2 + 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: 1 + 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: 1 + serializedVersion: 4 + type: 1 + 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: 1 + 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: 55 + 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: 1 + properties: 0 + emitProbability: 0.7 + 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!1 &322790081 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 322790082} + m_Layer: 3 + m_Name: RightHandIK_target + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &322790082 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 322790081} + m_LocalRotation: {x: 0.23131803, y: -0.3165383, z: -0.6592673, w: 0.64160895} + m_LocalPosition: {x: 0.30700016, y: 0.601, z: -0.034000397} + m_LocalScale: {x: 0.1, y: 0.1, z: 0.1} + m_Children: [] + m_Father: {fileID: 132632203} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: -6.923, y: 314.241, z: 271.36902} +--- !u!1 &368594550 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 368594551} + - component: {fileID: 368594552} + m_Layer: 3 + m_Name: HeadRot + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &368594551 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 368594550} + 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_Children: + - {fileID: 1220438444} + m_Father: {fileID: 1011058239} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &368594552 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 368594550} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fdb90b913935e644baaa86c076d788e0, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Weight: 1 + m_Data: + m_ConstrainedObject: {fileID: 7744703493503326207} + m_SourceObjects: + m_Length: 1 + m_Item0: + transform: {fileID: 1220438444} + weight: 1 + m_Item1: + transform: {fileID: 0} + weight: 0 + m_Item2: + transform: {fileID: 0} + weight: 0 + m_Item3: + transform: {fileID: 0} + weight: 0 + m_Item4: + transform: {fileID: 0} + weight: 0 + m_Item5: + transform: {fileID: 0} + weight: 0 + m_Item6: + transform: {fileID: 0} + weight: 0 + m_Item7: + transform: {fileID: 0} + weight: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_ConstrainedAxes: + x: 1 + y: 1 + z: 1 + m_MaintainOffset: 0 + m_SourceObjectsGUIToggle: 1 + m_SettingsGUIToggle: 0 +--- !u!1 &372318064 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 372318065} + m_Layer: 3 + m_Name: LeftHandIK_hint + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &372318065 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 372318064} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -11, y: 0, z: 13.75} + m_LocalScale: {x: 0.1, y: 0.1, z: 0.1} + m_Children: [] + m_Father: {fileID: 1767269157} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &439614334 +GameObject: + m_ObjectHideFlags: 3 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 439614335} + - component: {fileID: 439614338} + - component: {fileID: 439614337} + - component: {fileID: 439614336} + m_Layer: 0 + m_Name: cm + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &439614335 +Transform: + m_ObjectHideFlags: 3 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 439614334} + 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_Children: [] + m_Father: {fileID: 2101118514} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &439614336 +MonoBehaviour: + m_ObjectHideFlags: 3 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 439614334} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4044717213e31446939f7bd49c896ea, type: 3} + m_Name: + m_EditorClassIdentifier: + m_TrackedObjectOffset: {x: 0, y: 1.2, z: 0} + m_LookaheadTime: 0 + m_LookaheadSmoothing: 10 + m_LookaheadIgnoreY: 0 + m_HorizontalDamping: 0 + m_VerticalDamping: 0 + m_ScreenX: 0.45 + m_ScreenY: 0.5 + m_DeadZoneWidth: 0 + m_DeadZoneHeight: 0 + m_SoftZoneWidth: 0.8 + m_SoftZoneHeight: 0.8 + m_BiasX: 0 + m_BiasY: 0 + m_CenterOnActivate: 1 +--- !u!114 &439614337 +MonoBehaviour: + m_ObjectHideFlags: 3 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 439614334} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9384ab8608cdc3d479fe89cd51eed48f, type: 3} + m_Name: + m_EditorClassIdentifier: + m_BindingMode: 4 + m_FollowOffset: {x: 0, y: 2.5, z: -7.04} + m_XDamping: 1 + m_YDamping: 1 + m_ZDamping: 1 + m_AngularDampingMode: 0 + m_PitchDamping: 0 + m_YawDamping: 0 + m_RollDamping: 0 + m_AngularDamping: 0 + m_Heading: + m_Definition: 2 + m_VelocityFilterStrength: 4 + m_Bias: 0 + m_RecenterToTargetHeading: + m_enabled: 0 + m_WaitTime: 1 + m_RecenteringTime: 2 + m_LegacyHeadingDefinition: -1 + m_LegacyVelocityFilterStrength: -1 + m_XAxis: + Value: 0 + m_SpeedMode: 0 + m_MaxSpeed: 300 + m_AccelTime: 0.1 + m_DecelTime: 0.1 + m_InputAxisName: + m_InputAxisValue: 0 + m_InvertInput: 0 + m_MinValue: -180 + m_MaxValue: 180 + m_Wrap: 1 + m_Recentering: + m_enabled: 0 + m_WaitTime: 1 + m_RecenteringTime: 2 + m_LegacyHeadingDefinition: -1 + m_LegacyVelocityFilterStrength: -1 + m_LegacyRadius: 3.4028235e+38 + m_LegacyHeightOffset: 3.4028235e+38 + m_LegacyHeadingBias: 3.4028235e+38 + m_HeadingIsSlave: 1 +--- !u!114 &439614338 +MonoBehaviour: + m_ObjectHideFlags: 3 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 439614334} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: ac0b09e7857660247b1477e93731de29, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!1 &448196858 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 448196859} + - component: {fileID: 448196860} + m_Layer: 3 + m_Name: SpineRotRig + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &448196859 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 448196858} + 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_Children: + - {fileID: 832844327} + m_Father: {fileID: 539745478044430600} + m_RootOrder: 9 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &448196860 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 448196858} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 70b342d8ce5c2fd48b8fa3147d48d1d1, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Weight: 1 + m_Effectors: [] +--- !u!1 &476846417 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 476846418} + - component: {fileID: 476846419} + m_Layer: 3 + m_Name: LeftHandIK + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &476846418 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 476846417} + 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_Children: + - {fileID: 1987657340} + - {fileID: 2134056907} + m_Father: {fileID: 708908355} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &476846419 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 476846417} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: aeda7bfbf984f2a4da5ab4b8967b115d, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Weight: 1 + m_Data: + m_Root: {fileID: 3772228501800882099} + m_Mid: {fileID: 3234227603773615720} + m_Tip: {fileID: 8561193508876723632} + m_Target: {fileID: 1987657340} + m_Hint: {fileID: 0} + m_TargetPositionWeight: 1 + m_TargetRotationWeight: 1 + m_HintWeight: 1 + m_MaintainTargetPositionOffset: 0 + m_MaintainTargetRotationOffset: 0 + m_SourceObjectsGUIToggle: 1 + m_SettingsGUIToggle: 1 +--- !u!1 &497905162 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 497905163} + - component: {fileID: 497905164} + m_Layer: 3 + m_Name: ChestLookRig + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &497905163 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 497905162} + m_LocalRotation: {x: 0.00000008146034, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 567985405} + m_Father: {fileID: 539745478044430600} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &497905164 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 497905162} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 70b342d8ce5c2fd48b8fa3147d48d1d1, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Weight: 0.5 + m_Effectors: [] +--- !u!1 &508308507 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 508308508} + - component: {fileID: 508308509} + m_Layer: 3 + m_Name: Run Rig + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &508308508 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 508308507} + 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_Children: + - {fileID: 1937953392} + - {fileID: 144792028} + - {fileID: 1830846632} + m_Father: {fileID: 539745478044430600} + m_RootOrder: 7 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &508308509 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 508308507} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 70b342d8ce5c2fd48b8fa3147d48d1d1, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Weight: 0 + m_Effectors: + - m_Transform: {fileID: 1797010380} + m_Style: + shape: {fileID: 4300000, guid: e050c2b16fe384bd994474655a4b4968, type: 2} + color: {r: 0, g: 0.79581356, b: 1, a: 0.5} + size: 0.05 + position: {x: 0, y: 0, z: 0} + rotation: {x: 0, y: 0, z: 0} + m_Visible: 1 + - m_Transform: {fileID: 1042188897} + m_Style: + shape: {fileID: 4300000, guid: e050c2b16fe384bd994474655a4b4968, type: 2} + color: {r: 0, g: 0.79581356, b: 1, a: 0.5} + size: 0.05 + position: {x: 0, y: 0, z: 0} + rotation: {x: 0, y: 0, z: 0} + m_Visible: 1 + - m_Transform: {fileID: 1437094857} + m_Style: + shape: {fileID: 4300000, guid: c6793350c150f456688e39a81f97364a, type: 2} + color: {r: 0, g: 0.83998394, b: 1, a: 0.5} + size: 0.1 + position: {x: 0, y: 0, z: 0} + rotation: {x: 0, y: 0, z: 0} + m_Visible: 1 +--- !u!1 &518016458 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 518016459} + m_Layer: 3 + m_Name: RightHandIK_hint + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &518016459 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 518016458} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -11, y: 0, z: 13.75} + m_LocalScale: {x: 0.1, y: 0.1, z: 0.1} + m_Children: [] + m_Father: {fileID: 1937953392} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &544466390 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 544466391} + m_Layer: 3 + m_Name: RightHandIK_hint + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &544466391 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 544466390} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -11, y: 0, z: 13.75} + m_LocalScale: {x: 0.1, y: 0.1, z: 0.1} + m_Children: [] + m_Father: {fileID: 1113237307} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &550226748 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 550226749} + m_Layer: 3 + m_Name: RightHandIK_hint + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &550226749 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 550226748} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -11, y: 0, z: 13.75} + m_LocalScale: {x: 0.1, y: 0.1, z: 0.1} + m_Children: [] + m_Father: {fileID: 132632203} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &558676171 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 558676172} + m_Layer: 3 + m_Name: LeftHandIK_hint + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &558676172 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 558676171} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -11, y: 0, z: 13.75} + m_LocalScale: {x: 0.1, y: 0.1, z: 0.1} + m_Children: [] + m_Father: {fileID: 760636184} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &567985404 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 567985405} + - component: {fileID: 567985406} + m_Layer: 3 + m_Name: GameObject + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &567985405 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 567985404} + 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_Children: [] + m_Father: {fileID: 497905163} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &567985406 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 567985404} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3c430f382484144e925c097c2d33cfe, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Weight: 1 + m_Data: + m_ConstrainedObject: {fileID: 49447877241787944} + m_SourceObjects: + m_Length: 1 + m_Item0: + transform: {fileID: 322790082} + weight: 1 + m_Item1: + transform: {fileID: 0} + weight: 0 + m_Item2: + transform: {fileID: 0} + weight: 0 + m_Item3: + transform: {fileID: 0} + weight: 0 + m_Item4: + transform: {fileID: 0} + weight: 0 + m_Item5: + transform: {fileID: 0} + weight: 0 + m_Item6: + transform: {fileID: 0} + weight: 0 + m_Item7: + transform: {fileID: 0} + weight: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_MinLimit: -180 + m_MaxLimit: 180 + m_AimAxis: 4 + m_UpAxis: 2 + m_WorldUpType: 0 + m_WorldUpObject: {fileID: 0} + m_WorldUpAxis: 2 + m_MaintainOffset: 0 + m_ConstrainedAxes: + x: 1 + y: 1 + z: 1 + m_SourceObjectsGUIToggle: 1 + m_SettingsGUIToggle: 0 +--- !u!1 &584536251 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 584536252} + m_Layer: 3 + m_Name: RightHandIK_target + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &584536252 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 584536251} + m_LocalRotation: {x: 0.77522945, y: -0.42883083, z: -0.38963005, w: 0.25161874} + m_LocalPosition: {x: 0.21500015, y: 0.70199984, z: 0.123999596} + m_LocalScale: {x: 0.1, y: 0.1, z: 0.1} + m_Children: [] + m_Father: {fileID: 1113237307} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: -5.673, y: 223.931, z: 232.005} +--- !u!1 &653260035 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 653260038} + - component: {fileID: 653260036} + m_Layer: 0 + m_Name: Post-process Volume + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &653260036 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 653260035} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 172515602e62fb746b5d573b38a5fe58, type: 3} + m_Name: + m_EditorClassIdentifier: + isGlobal: 1 + priority: 0 + blendDistance: 0 + weight: 1 + sharedProfile: {fileID: 11400000, guid: 10fc4df2da32a41aaa32d77bc913491c, type: 2} +--- !u!4 &653260038 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 653260035} + 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_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &663865638 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 663865639} + m_Layer: 3 + m_Name: LeftHandIK_hint + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &663865639 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 663865638} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -11, y: 0, z: 13.75} + m_LocalScale: {x: 0.1, y: 0.1, z: 0.1} + m_Children: [] + m_Father: {fileID: 144792028} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &708908354 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 708908355} + - component: {fileID: 708908356} + m_Layer: 3 + m_Name: Idle Aim Rig + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &708908355 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 708908354} + 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_Children: + - {fileID: 132632203} + - {fileID: 476846418} + m_Father: {fileID: 539745478044430600} + m_RootOrder: 5 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &708908356 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 708908354} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 70b342d8ce5c2fd48b8fa3147d48d1d1, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Weight: 1 + m_Effectors: + - m_Transform: {fileID: 1987657340} + m_Style: + shape: {fileID: 4300000, guid: e050c2b16fe384bd994474655a4b4968, type: 2} + color: {r: 1, g: 0, b: 0, a: 0.5} + size: 0.05 + position: {x: 0, y: 0, z: 0} + rotation: {x: 0, y: 0, z: 0} + m_Visible: 1 + - m_Transform: {fileID: 322790082} + m_Style: + shape: {fileID: 4300000, guid: e050c2b16fe384bd994474655a4b4968, type: 2} + color: {r: 1, g: 0, b: 0, a: 0.5} + size: 0.05 + position: {x: 0, y: 0, z: 0} + rotation: {x: 0, y: 0, z: 0} + m_Visible: 1 + - m_Transform: {fileID: 1220438444} + m_Style: + shape: {fileID: 4300000, guid: c6793350c150f456688e39a81f97364a, type: 2} + color: {r: 1, g: 0, b: 0, a: 0.5} + size: 0.44 + position: {x: 0, y: 0, z: 0} + rotation: {x: 0, y: 0, z: 0} + m_Visible: 1 +--- !u!1 &760636183 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 760636184} + - component: {fileID: 760636185} + m_Layer: 3 + m_Name: LeftHandIK + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &760636184 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 760636183} + 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_Children: + - {fileID: 1684989135} + - {fileID: 558676172} + m_Father: {fileID: 1404392785} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &760636185 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 760636183} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: aeda7bfbf984f2a4da5ab4b8967b115d, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Weight: 1 + m_Data: + m_Root: {fileID: 3772228501800882099} + m_Mid: {fileID: 3234227603773615720} + m_Tip: {fileID: 8561193508876723632} + m_Target: {fileID: 1684989135} + m_Hint: {fileID: 0} + m_TargetPositionWeight: 1 + m_TargetRotationWeight: 1 + m_HintWeight: 1 + m_MaintainTargetPositionOffset: 0 + m_MaintainTargetRotationOffset: 0 + m_SourceObjectsGUIToggle: 1 + m_SettingsGUIToggle: 1 +--- !u!1 &822468431 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 822468432} + - component: {fileID: 822468434} + - component: {fileID: 822468433} + m_Layer: 0 + m_Name: SubEmitter0 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &822468432 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 822468431} + m_LocalRotation: {x: -0.7071068, y: 0, z: 0, w: 0.7071068} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1.0000001, z: 1.0000001} + m_Children: [] + m_Father: {fileID: 949289639} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: -90, y: 0, z: 0} +--- !u!199 &822468433 +ParticleSystemRenderer: + serializedVersion: 6 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 822468431} + m_Enabled: 1 + m_CastShadows: 0 + m_ReceiveShadows: 0 + m_DynamicOccludee: 1 + 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: 8f366e22ce83f8046af5d649fb111607, 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_RenderMode: 4 + 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: 4 + 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: 10207, guid: 0000000000000000e000000000000000, type: 0} + m_Mesh1: {fileID: 0} + m_Mesh2: {fileID: 0} + m_Mesh3: {fileID: 0} + m_MaskInteraction: 0 +--- !u!198 &822468434 +ParticleSystem: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 822468431} + serializedVersion: 7 + lengthInSec: 5 + simulationSpeed: 1 + stopAction: 0 + cullingMode: 0 + ringBufferMode: 0 + ringBufferLoopRange: {x: 0, y: 1} + looping: 0 + prewarm: 0 + playOnAwake: 0 + useUnscaledTime: 0 + autoRandomSeed: 1 + useRigidbodyForVelocity: 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: 0.5 + 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: 3 + scalar: 6 + minScalar: 2 + 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: 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 + startSize: + serializedVersion: 2 + minMaxState: 3 + scalar: 0.1 + minScalar: 0.05 + 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: 0.05 + 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: 0.05 + minScalar: 0.05 + 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: 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 + startRotationY: + 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 + startRotation: + 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 + randomizeRotationDirection: 0 + maxNumParticles: 1000 + size3D: 0 + rotation3D: 0 + gravityModifier: + serializedVersion: 2 + minMaxState: 0 + scalar: 2 + 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: 4 + angle: 25 + 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: 0} + 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.2 + 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: 360 + 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: 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: 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 + 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: 1 + m_Bursts: + - serializedVersion: 2 + time: 0 + countCurve: + serializedVersion: 2 + minMaxState: 3 + scalar: 5 + minScalar: 2 + 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 + cycleCount: 1 + repeatInterval: 0.01 + probability: 1 + SizeModule: + enabled: 1 + curve: + serializedVersion: 2 + minMaxState: 1 + scalar: 1 + minScalar: 1 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: -0.3400964 + outSlope: -0.3400964 + tangentMode: 34 + weightedMode: 0 + inWeight: 0 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.24143957 + value: 0.9178873 + inSlope: -0.0028495393 + outSlope: -0.0028495393 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.67387146 + value: 0.9764959 + inSlope: -0.13176844 + outSlope: -0.13176844 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.09230463 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0 + inSlope: -2.9942057 + outSlope: -2.9942057 + tangentMode: 34 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0 + 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: 1 + inSlope: -0.018974368 + outSlope: -0.018974368 + tangentMode: 34 + weightedMode: 0 + inWeight: 0 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6756769 + value: 0.98717946 + inSlope: -0.14823395 + outSlope: -0.14823395 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.078241184 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0 + inSlope: -3.0438147 + outSlope: -3.0438147 + tangentMode: 34 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0 + 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.7210659 + minScalar: 1 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 34 + weightedMode: 0 + inWeight: 0 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.6612612 + value: 1 + inSlope: 0.30228776 + outSlope: 0.30228776 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.13896458 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0 + inSlope: -2.9521272 + outSlope: -2.9521272 + tangentMode: 34 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0 + 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: 1 + 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: 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 + 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: 1 + serializedVersion: 4 + type: 1 + 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: 1 + 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!1 &832844326 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 832844327} + - component: {fileID: 832844328} + m_Layer: 3 + m_Name: RotationRig + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &832844327 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 832844326} + 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_Children: + - {fileID: 28951430} + m_Father: {fileID: 448196859} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &832844328 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 832844326} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fdb90b913935e644baaa86c076d788e0, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Weight: 1 + m_Data: + m_ConstrainedObject: {fileID: 49447877241787944} + m_SourceObjects: + m_Length: 1 + m_Item0: + transform: {fileID: 28951430} + weight: 1 + m_Item1: + transform: {fileID: 0} + weight: 0 + m_Item2: + transform: {fileID: 0} + weight: 0 + m_Item3: + transform: {fileID: 0} + weight: 0 + m_Item4: + transform: {fileID: 0} + weight: 0 + m_Item5: + transform: {fileID: 0} + weight: 0 + m_Item6: + transform: {fileID: 0} + weight: 0 + m_Item7: + transform: {fileID: 0} + weight: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_ConstrainedAxes: + x: 1 + y: 0 + z: 0 + m_MaintainOffset: 1 + m_SourceObjectsGUIToggle: 1 + m_SettingsGUIToggle: 1 +--- !u!1 &869074592 +GameObject: + m_ObjectHideFlags: 3 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 869074594} + - component: {fileID: 869074593} + m_Layer: 0 + m_Name: MiddleRig + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &869074593 +MonoBehaviour: + m_ObjectHideFlags: 3 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 869074592} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 45e653bab7fb20e499bda25e1b646fea, type: 3} + m_Name: + m_EditorClassIdentifier: + m_ExcludedPropertiesInInspector: + - m_Script + - Header + - Extensions + - m_Priority + - m_Transitions + - m_Follow + - m_StandbyUpdate + - m_Lens + m_LockStageInInspector: 00000000 + m_StreamingVersion: 20170927 + m_Priority: 10 + m_StandbyUpdate: 2 + m_LookAt: {fileID: 0} + m_Follow: {fileID: 0} + m_Lens: + FieldOfView: 40 + OrthographicSize: 10 + NearClipPlane: 0.1 + FarClipPlane: 5000 + Dutch: 0 + LensShift: {x: 0, y: 0} + m_Transitions: + m_BlendHint: 0 + m_InheritPosition: 0 + m_OnCameraLive: + m_PersistentCalls: + m_Calls: [] + m_LegacyBlendHint: 0 + m_ComponentOwner: {fileID: 2088085134} +--- !u!4 &869074594 +Transform: + m_ObjectHideFlags: 3 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 869074592} + m_LocalRotation: {x: 0.09107753, y: 0.04585489, z: -0.00419827, w: 0.9947787} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 2088085134} + m_Father: {fileID: 209627691} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &906262002 +GameObject: + m_ObjectHideFlags: 3 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 906262004} + - component: {fileID: 906262003} + m_Layer: 0 + m_Name: BottomRig + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &906262003 +MonoBehaviour: + m_ObjectHideFlags: 3 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 906262002} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 45e653bab7fb20e499bda25e1b646fea, type: 3} + m_Name: + m_EditorClassIdentifier: + m_ExcludedPropertiesInInspector: + - m_Script + - Header + - Extensions + - m_Priority + - m_Transitions + - m_Follow + - m_StandbyUpdate + - m_Lens + m_LockStageInInspector: 00000000 + m_StreamingVersion: 20170927 + m_Priority: 10 + m_StandbyUpdate: 2 + m_LookAt: {fileID: 0} + m_Follow: {fileID: 0} + m_Lens: + FieldOfView: 40 + OrthographicSize: 10 + NearClipPlane: 0.1 + FarClipPlane: 5000 + Dutch: 0 + LensShift: {x: 0, y: 0} + m_Transitions: + m_BlendHint: 0 + m_InheritPosition: 0 + m_OnCameraLive: + m_PersistentCalls: + m_Calls: [] + m_LegacyBlendHint: 0 + m_ComponentOwner: {fileID: 1441238722} +--- !u!4 &906262004 +Transform: + m_ObjectHideFlags: 3 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 906262002} + m_LocalRotation: {x: 0.054882146, y: 0.045977127, z: -0.0025298237, w: 0.99743056} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 1441238722} + m_Father: {fileID: 209627691} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &949289638 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 949289639} + - component: {fileID: 949289641} + - component: {fileID: 949289640} + m_Layer: 3 + m_Name: Particle System + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &949289639 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 949289638} + m_LocalRotation: {x: -0.12179504, y: 0.03463936, z: 0.004253176, w: 0.9919416} + m_LocalPosition: {x: 0.445, y: 0.88, z: 0.539} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 822468432} + - {fileID: 276323217} + m_Father: {fileID: 539745478044430600} + m_RootOrder: 10 + m_LocalEulerAnglesHint: {x: -14, y: 4, z: 0} +--- !u!199 &949289640 +ParticleSystemRenderer: + serializedVersion: 6 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 949289638} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 0 + m_DynamicOccludee: 1 + 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: 8f366e22ce83f8046af5d649fb111607, 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_RenderMode: 4 + 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: 4 + 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: 10207, guid: 0000000000000000e000000000000000, type: 0} + m_Mesh1: {fileID: 0} + m_Mesh2: {fileID: 0} + m_Mesh3: {fileID: 0} + m_MaskInteraction: 0 +--- !u!198 &949289641 +ParticleSystem: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 949289638} + serializedVersion: 7 + lengthInSec: 5 + simulationSpeed: 1 + stopAction: 0 + cullingMode: 0 + ringBufferMode: 0 + ringBufferLoopRange: {x: 0, y: 1} + looping: 1 + prewarm: 0 + playOnAwake: 0 + useUnscaledTime: 0 + autoRandomSeed: 1 + useRigidbodyForVelocity: 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: 5 + 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: 3 + scalar: 20 + minScalar: 25 + 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: 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 + startSize: + serializedVersion: 2 + minMaxState: 3 + scalar: 0.2 + minScalar: 0.05 + 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: 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 + startRotationY: + 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 + startRotation: + 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 + randomizeRotationDirection: 0 + maxNumParticles: 1000 + size3D: 0 + rotation3D: 0 + gravityModifier: + serializedVersion: 2 + minMaxState: 0 + scalar: 2.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 + ShapeModule: + serializedVersion: 6 + enabled: 1 + type: 4 + angle: 1.9 + length: 5 + boxThickness: {x: 0, y: 0, z: 0} + radiusThickness: 0 + donutRadius: 0.2 + m_Position: {x: 0, y: 0, z: 0} + m_Rotation: {x: 0, y: 0, z: 0} + 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.0001 + 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: 360 + 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: 30 + 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 + 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: 2 + scalar: 1 + minScalar: 1 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 34 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 34 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + 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: 2 + scalar: 1 + minScalar: 1 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 34 + weightedMode: 0 + inWeight: 0 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 34 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0 + 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: 2 + scalar: 3 + minScalar: 1 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.5902173 + inSlope: 0.0001291703 + outSlope: 0.0001291703 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.6529341 + - serializedVersion: 3 + time: 0.09940908 + value: 0.93067247 + inSlope: 0.072038956 + outSlope: 0.072038956 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.8655724 + outWeight: 0.079706885 + - serializedVersion: 3 + time: 1 + value: 0.34615326 + inSlope: -0.6490397 + outSlope: -0.6490397 + tangentMode: 34 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + minCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0.69548815 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 0.0902527 + 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: 1 + RotationModule: + enabled: 1 + x: + serializedVersion: 2 + minMaxState: 0 + scalar: 0.2617994 + 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 + 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: 1 + ColorModule: + 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 + 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: 2 + 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.05 + 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: 1 + serializedVersion: 4 + type: 1 + 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: 1 + 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: 55 + 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: 1 + subEmitters: + - serializedVersion: 3 + emitter: {fileID: 822468434} + type: 1 + properties: 0 + emitProbability: 0.7 + 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: 0 + 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: 1 + dieWithParticles: 1 + sizeAffectsWidth: 1 + sizeAffectsLifetime: 1 + 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: 1 + scalar: 0.67733765 + minScalar: 1 + maxCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: -1 + outSlope: -1 + tangentMode: 34 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 0 + inSlope: -1 + outSlope: -1 + tangentMode: 34 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + 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!1 &1011058238 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1011058239} + - component: {fileID: 1011058240} + m_Layer: 3 + m_Name: HeadRotRig + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1011058239 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1011058238} + 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_Children: + - {fileID: 368594551} + m_Father: {fileID: 539745478044430600} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &1011058240 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1011058238} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 70b342d8ce5c2fd48b8fa3147d48d1d1, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Weight: 0.6 + m_Effectors: [] +--- !u!1 &1034097080 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1034097081} + - component: {fileID: 1034097083} + - component: {fileID: 1034097082} + m_Layer: 5 + m_Name: Image + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1034097081 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1034097080} + 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_Children: [] + m_Father: {fileID: 132984679} + 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: 4.0872, y: 4.0872} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1034097082 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1034097080} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &1034097083 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1034097080} + m_CullTransparentMesh: 1 +--- !u!1 &1042188896 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1042188897} + m_Layer: 3 + m_Name: RightHandIK_target + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1042188897 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1042188896} + m_LocalRotation: {x: 0.21834977, y: -0.10924509, z: -0.813372, w: 0.5280292} + m_LocalPosition: {x: 0.31299973, y: 0.491, z: -0.024000168} + m_LocalScale: {x: 0.1, y: 0.1, z: 0.1} + m_Children: [] + m_Father: {fileID: 1937953392} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 20.98, y: 334, z: 260} +--- !u!1 &1113237306 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1113237307} + - component: {fileID: 1113237308} + m_Layer: 3 + m_Name: RightHandIK + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1113237307 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1113237306} + 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_Children: + - {fileID: 584536252} + - {fileID: 544466391} + m_Father: {fileID: 1404392785} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &1113237308 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1113237306} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: aeda7bfbf984f2a4da5ab4b8967b115d, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Weight: 1 + m_Data: + m_Root: {fileID: 1736390053318990959} + m_Mid: {fileID: 2647666789508465143} + m_Tip: {fileID: 1245275053774927467} + m_Target: {fileID: 584536252} + m_Hint: {fileID: 0} + m_TargetPositionWeight: 1 + m_TargetRotationWeight: 1 + m_HintWeight: 1 + m_MaintainTargetPositionOffset: 0 + m_MaintainTargetRotationOffset: 0 + m_SourceObjectsGUIToggle: 1 + m_SettingsGUIToggle: 0 +--- !u!1 &1220438443 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1220438444} + m_Layer: 3 + m_Name: RotObject + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1220438444 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1220438443} + m_LocalRotation: {x: 0.06928742, y: 1.5899535e-25, z: -1.2775253e-24, w: 0.99759674} + m_LocalPosition: {x: 0, y: 1.0229979, z: 0.02024746} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 368594551} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1220795587 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1220795588} + - component: {fileID: 1220795589} + m_Layer: 3 + m_Name: Splattershot + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1220795588 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1220795587} + m_LocalRotation: {x: -0.31800693, y: 0.27140856, z: 0.66228145, w: 0.6217655} + m_LocalPosition: {x: -0.0070577115, y: 0.0066698124, z: 0.003470722} + m_LocalScale: {x: 0.035714276, y: 0.03571428, z: 0.03571428} + m_Children: + - {fileID: 5723820410734444169} + - {fileID: 1632779021} + m_Father: {fileID: 1245275053774927467} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 37.99, y: 90, z: 90} +--- !u!114 &1220795589 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1220795587} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4f8cadbd2b3aeb1409a01ef193da371a, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!1 &1399667851 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1399667852} + - component: {fileID: 1399667853} + m_Layer: 3 + m_Name: LeftHandIK_target + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1399667852 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1399667851} + m_LocalRotation: {x: 0.059147395, y: -0.5039863, z: -0.83907604, w: 0.19608903} + m_LocalPosition: {x: -0.146801, y: 0.58770037, z: 0.070599556} + m_LocalScale: {x: 0.1, y: 0.1, z: 0.1} + m_Children: [] + m_Father: {fileID: 1767269157} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: -55.343, y: -31.474, z: 223.118} +--- !u!114 &1399667853 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1399667851} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 8935e03361a14ec4b8edc872f76bc822, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Weight: 1 + m_Data: + m_ConstrainedObject: {fileID: 1399667852} + m_SourceObjects: + m_Length: 1 + m_Item0: + transform: {fileID: 1632779021} + weight: 1 + m_Item1: + transform: {fileID: 0} + weight: 0 + m_Item2: + transform: {fileID: 0} + weight: 0 + m_Item3: + transform: {fileID: 0} + weight: 0 + m_Item4: + transform: {fileID: 0} + weight: 0 + m_Item5: + transform: {fileID: 0} + weight: 0 + m_Item6: + transform: {fileID: 0} + weight: 0 + m_Item7: + transform: {fileID: 0} + weight: 0 + m_ConstrainedPositionAxes: + x: 1 + y: 1 + z: 1 + m_ConstrainedRotationAxes: + x: 1 + y: 1 + z: 1 + m_MaintainPositionOffset: 0 + m_MaintainRotationOffset: 0 + m_SourceObjectsGUIToggle: 1 + m_SettingsGUIToggle: 1 +--- !u!1 &1404392784 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1404392785} + - component: {fileID: 1404392786} + m_Layer: 3 + m_Name: Idle Rig + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1404392785 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1404392784} + 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_Children: + - {fileID: 1113237307} + - {fileID: 760636184} + m_Father: {fileID: 539745478044430600} + m_RootOrder: 4 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &1404392786 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1404392784} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 70b342d8ce5c2fd48b8fa3147d48d1d1, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Weight: 1 + m_Effectors: + - m_Transform: {fileID: 1684989135} + m_Style: + shape: {fileID: 4300000, guid: e050c2b16fe384bd994474655a4b4968, type: 2} + color: {r: 1, g: 0, b: 0, a: 0.5} + size: 0.05 + position: {x: 0, y: 0, z: 0} + rotation: {x: 0, y: 0, z: 0} + m_Visible: 1 + - m_Transform: {fileID: 584536252} + m_Style: + shape: {fileID: 4300000, guid: e050c2b16fe384bd994474655a4b4968, type: 2} + color: {r: 1, g: 0, b: 0, a: 0.5} + size: 0.05 + position: {x: 0, y: 0, z: 0} + rotation: {x: 0, y: 0, z: 0} + m_Visible: 1 +--- !u!1 &1428345786 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1428345787} + m_Layer: 3 + m_Name: RightHandIK_target + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1428345787 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1428345786} + m_LocalRotation: {x: 0.25699413, y: -0.24257846, z: -0.73879707, w: 0.5738368} + m_LocalPosition: {x: 0.26399994, y: 0.602, z: 0.04300022} + m_LocalScale: {x: 0.1, y: 0.1, z: 0.1} + m_Children: [] + m_Father: {fileID: 1888020711} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: -5.673, y: 223.931, z: 232.005} +--- !u!1 &1437094856 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1437094857} + m_Layer: 3 + m_Name: HeadTarget + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1437094857 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1437094856} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0.755, z: 1.73} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1830846632} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1441238721 +GameObject: + m_ObjectHideFlags: 3 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1441238722} + - component: {fileID: 1441238725} + - component: {fileID: 1441238724} + - component: {fileID: 1441238723} + m_Layer: 0 + m_Name: cm + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1441238722 +Transform: + m_ObjectHideFlags: 3 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1441238721} + 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_Children: [] + m_Father: {fileID: 906262004} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &1441238723 +MonoBehaviour: + m_ObjectHideFlags: 3 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1441238721} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4044717213e31446939f7bd49c896ea, type: 3} + m_Name: + m_EditorClassIdentifier: + m_TrackedObjectOffset: {x: 0, y: 1.2, z: 0} + m_LookaheadTime: 0 + m_LookaheadSmoothing: 10 + m_LookaheadIgnoreY: 0 + m_HorizontalDamping: 0 + m_VerticalDamping: 0 + m_ScreenX: 0.45 + m_ScreenY: 0.6 + m_DeadZoneWidth: 0 + m_DeadZoneHeight: 0 + m_SoftZoneWidth: 0.8 + m_SoftZoneHeight: 0.8 + m_BiasX: 0 + m_BiasY: 0 + m_CenterOnActivate: 1 +--- !u!114 &1441238724 +MonoBehaviour: + m_ObjectHideFlags: 3 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1441238721} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9384ab8608cdc3d479fe89cd51eed48f, type: 3} + m_Name: + m_EditorClassIdentifier: + m_BindingMode: 4 + m_FollowOffset: {x: 0, y: 2.5, z: -7.04} + m_XDamping: 1 + m_YDamping: 1 + m_ZDamping: 1 + m_AngularDampingMode: 0 + m_PitchDamping: 0 + m_YawDamping: 0 + m_RollDamping: 0 + m_AngularDamping: 0 + m_Heading: + m_Definition: 2 + m_VelocityFilterStrength: 4 + m_Bias: 0 + m_RecenterToTargetHeading: + m_enabled: 0 + m_WaitTime: 1 + m_RecenteringTime: 2 + m_LegacyHeadingDefinition: -1 + m_LegacyVelocityFilterStrength: -1 + m_XAxis: + Value: 0 + m_SpeedMode: 0 + m_MaxSpeed: 300 + m_AccelTime: 0.1 + m_DecelTime: 0.1 + m_InputAxisName: + m_InputAxisValue: 0 + m_InvertInput: 0 + m_MinValue: -180 + m_MaxValue: 180 + m_Wrap: 1 + m_Recentering: + m_enabled: 0 + m_WaitTime: 1 + m_RecenteringTime: 2 + m_LegacyHeadingDefinition: -1 + m_LegacyVelocityFilterStrength: -1 + m_LegacyRadius: 3.4028235e+38 + m_LegacyHeightOffset: 3.4028235e+38 + m_LegacyHeadingBias: 3.4028235e+38 + m_HeadingIsSlave: 1 +--- !u!114 &1441238725 +MonoBehaviour: + m_ObjectHideFlags: 3 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1441238721} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: ac0b09e7857660247b1477e93731de29, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!1 &1476631783 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1476631786} + - component: {fileID: 1476631785} + - component: {fileID: 1476631784} + m_Layer: 0 + m_Name: EventSystem + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &1476631784 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1476631783} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4f231c4fb786f3946a6b90b886c48677, type: 3} + m_Name: + m_EditorClassIdentifier: + m_HorizontalAxis: Horizontal + m_VerticalAxis: Vertical + m_SubmitButton: Submit + m_CancelButton: Cancel + m_InputActionsPerSecond: 10 + m_RepeatDelay: 0.5 + m_ForceModuleActive: 0 +--- !u!114 &1476631785 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1476631783} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 76c392e42b5098c458856cdf6ecaaaa1, type: 3} + m_Name: + m_EditorClassIdentifier: + m_FirstSelected: {fileID: 0} + m_sendNavigationEvents: 1 + m_DragThreshold: 10 +--- !u!4 &1476631786 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1476631783} + 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_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 7 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1632779020 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1632779021} + m_Layer: 3 + m_Name: handle + m_TagString: Untagged + m_Icon: {fileID: -5487077368411116049, guid: 0000000000000000d000000000000000, type: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1632779021 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1632779020} + m_LocalRotation: {x: -0.5437612, y: -0.4188549, z: -0.5001858, w: 0.52791905} + m_LocalPosition: {x: -0.089, y: -0.155, z: 0.113} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1220795588} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: -96.718, y: -119.593, z: 38.362} +--- !u!1 &1684989134 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1684989135} + - component: {fileID: 1684989136} + m_Layer: 3 + m_Name: LeftHandIK_target + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1684989135 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1684989134} + m_LocalRotation: {x: 0.059147395, y: -0.5039863, z: -0.83907604, w: 0.19608903} + m_LocalPosition: {x: -0.146801, y: 0.58770037, z: 0.070599556} + m_LocalScale: {x: 0.1, y: 0.1, z: 0.1} + m_Children: [] + m_Father: {fileID: 760636184} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: -55.343, y: -31.474, z: 223.118} +--- !u!114 &1684989136 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1684989134} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 8935e03361a14ec4b8edc872f76bc822, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Weight: 1 + m_Data: + m_ConstrainedObject: {fileID: 1684989135} + m_SourceObjects: + m_Length: 1 + m_Item0: + transform: {fileID: 1632779021} + weight: 1 + m_Item1: + transform: {fileID: 0} + weight: 0 + m_Item2: + transform: {fileID: 0} + weight: 0 + m_Item3: + transform: {fileID: 0} + weight: 0 + m_Item4: + transform: {fileID: 0} + weight: 0 + m_Item5: + transform: {fileID: 0} + weight: 0 + m_Item6: + transform: {fileID: 0} + weight: 0 + m_Item7: + transform: {fileID: 0} + weight: 0 + m_ConstrainedPositionAxes: + x: 1 + y: 1 + z: 1 + m_ConstrainedRotationAxes: + x: 1 + y: 1 + z: 1 + m_MaintainPositionOffset: 0 + m_MaintainRotationOffset: 0 + m_SourceObjectsGUIToggle: 1 + m_SettingsGUIToggle: 1 +--- !u!1 &1687258581 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1687258585} + - component: {fileID: 1687258584} + - component: {fileID: 1687258582} + - component: {fileID: 1687258586} + - component: {fileID: 1687258583} + m_Layer: 0 + m_Name: Main Camera + m_TagString: MainCamera + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!81 &1687258582 +AudioListener: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1687258581} + m_Enabled: 1 +--- !u!114 &1687258583 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1687258581} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 72ece51f2901e7445ab60da3685d6b5f, type: 3} + m_Name: + m_EditorClassIdentifier: + m_ShowDebugText: 0 + m_ShowCameraFrustum: 1 + m_IgnoreTimeScale: 0 + m_WorldUpOverride: {fileID: 0} + m_UpdateMethod: 2 + m_BlendUpdateMethod: 1 + m_DefaultBlend: + m_Style: 1 + m_Time: 0.2 + m_CustomCurve: + serializedVersion: 2 + m_Curve: [] + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + m_CustomBlends: {fileID: 0} + m_CameraCutEvent: + m_PersistentCalls: + m_Calls: [] + m_CameraActivatedEvent: + m_PersistentCalls: + m_Calls: [] +--- !u!20 &1687258584 +Camera: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1687258581} + m_Enabled: 1 + serializedVersion: 2 + m_ClearFlags: 1 + m_BackGroundColor: {r: 0.19215687, g: 0.3019608, b: 0.4745098, 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.1 + far clip plane: 5000 + field of view: 40 + orthographic: 0 + orthographic size: 5 + m_Depth: -1 + 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: 1 + m_StereoConvergence: 10 + m_StereoSeparation: 0.022 +--- !u!4 &1687258585 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1687258581} + m_LocalRotation: {x: 0.091077544, y: 0.045854904, z: -0.0041982722, w: 0.9947787} + m_LocalPosition: {x: 11, y: 2.5, z: -20.79} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 20.146, y: 195.09, z: 0.001} +--- !u!114 &1687258586 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1687258581} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: a79441f348de89743a2939f4d699eac1, type: 3} + m_Name: + m_EditorClassIdentifier: + m_RenderShadows: 1 + m_RequiresDepthTextureOption: 2 + m_RequiresOpaqueTextureOption: 2 + m_CameraType: 0 + m_Cameras: [] + m_RendererIndex: -1 + m_VolumeLayerMask: + serializedVersion: 2 + m_Bits: 1 + m_VolumeTrigger: {fileID: 0} + m_RenderPostProcessing: 1 + m_Antialiasing: 1 + m_AntialiasingQuality: 2 + m_StopNaN: 1 + m_Dithering: 0 + m_ClearDepth: 1 + m_AllowXRRendering: 1 + m_RequiresDepthTexture: 0 + m_RequiresColorTexture: 0 + m_Version: 2 +--- !u!43 &1755934346 +Mesh: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: pb_Mesh20020 + serializedVersion: 10 + m_SubMeshes: + - serializedVersion: 2 + firstByte: 0 + indexCount: 84 + topology: 0 + baseVertex: 0 + firstVertex: 0 + vertexCount: 44 + localAABB: + m_Center: {x: 10, y: 4.6378493, z: -9.311102} + m_Extent: {x: 10, y: 4.6378493, z: 10.688898} + m_Shapes: + vertices: [] + shapes: [] + channels: [] + fullWeights: [] + m_BindPose: [] + m_BoneNameHashes: + m_RootBoneNameHash: 0 + m_BonesAABB: [] + m_VariableBoneCountWeights: + m_Data: + m_MeshCompression: 0 + m_IsReadable: 1 + m_KeepVertices: 1 + m_KeepIndices: 1 + m_IndexFormat: 0 + m_IndexBuffer: 000001000200010003000200040005000600050007000600080009000a0009000b000a000c000d000e000d000f000e001000110012001100130012001400150016001500170016001600170018001700190018000f000d001a000d001b001a00040006001c0006001d001c001e001f0020001f00210020002200230024002300250024001d00060026000600270026000f001a0028001a0029002800020003002a0003002b002a00 + m_VertexData: + serializedVersion: 3 + m_VertexCount: 44 + m_Channels: + - stream: 0 + offset: 0 + format: 0 + dimension: 3 + - stream: 0 + offset: 12 + format: 0 + dimension: 3 + - stream: 0 + offset: 24 + format: 0 + dimension: 4 + - stream: 0 + offset: 0 + format: 0 + dimension: 0 + - stream: 0 + offset: 40 + format: 0 + dimension: 2 + - stream: 0 + offset: 0 + format: 0 + dimension: 0 + - stream: 0 + offset: 0 + format: 0 + dimension: 0 + - stream: 0 + offset: 0 + format: 0 + dimension: 0 + - stream: 0 + offset: 0 + format: 0 + dimension: 0 + - stream: 0 + offset: 0 + format: 0 + dimension: 0 + - stream: 0 + offset: 0 + format: 0 + dimension: 0 + - stream: 0 + offset: 0 + format: 0 + dimension: 0 + - stream: 0 + offset: 0 + format: 0 + dimension: 0 + - stream: 0 + offset: 0 + format: 0 + dimension: 0 + m_DataSize: 2112 + _typelessdata: 0000000000000000a05bb03f00000000000000000000803f000080bf0000000000000000000080bf00000000000000000000a04100000000a05bb03f00000000000000000000803f000080bf0000000000000000000080bf0000a0c100000000000000000000803fa05bb03f00000000000000000000803f000080bf0000000000000000000080bf000000000000803f0000a0410000803fa05bb03f00000000000000000000803f000080bf0000000000000000000080bf0000a0c10000803f0000a04100000000000000000000803f000000000000000000000000000000000000803f000080bf00000000000000000000a041000000000000a0c10000803f000000000000000000000000000000000000803f000080bf0000a0c1000000000000a0410000803f000000000000803f000000000000000000000000000000000000803f000080bf000000000000803f0000a0410000803f0000a0c10000803f000000000000000000000000000000000000803f000080bf0000a0c10000803f0000a041000000000000a0c10000000000000000000080bf0000803f0000000000000000000080bf0000a0410000000000000000000000000000a0c10000000000000000000080bf0000803f0000000000000000000080bf00000000000000000000a0410000803f0000a0c10000000000000000000080bf0000803f0000000000000000000080bf0000a0410000803f000000000000803f0000a0c10000000000000000000080bf0000803f0000000000000000000080bf000000000000803f00000000000000000000a0c1000080bf00000000000000000000000000000000000080bf000080bf0000a04100000000000000000000000000000000000080bf00000000000000000000000000000000000080bf000080bf0000000000000000000000000000803f0000a0c1000080bf00000000000000000000000000000000000080bf000080bf0000a0410000803f000000000000803f00000000000080bf00000000000000000000000000000000000080bf000080bf000000000000803f000000000000803f00000000000000000000803f000000000000803f0000000000000000000080bf00000000000000000000a0410000803f00000000000000000000803f000000000000803f0000000000000000000080bf0000a04100000000000000000000803f0000a0c1000000000000803f000000000000803f0000000000000000000080bf000000000000a0c10000a0410000803f0000a0c1000000000000803f000000000000803f0000000000000000000080bf0000a0410000a0c100000000000000000000a0c100000000000080bf00000000000080bf0000000000000000000080bf000000000000a0c10000a041000000000000a0c100000000000080bf00000000000080bf0000000000000000000080bf0000a0c10000a0c100000000000000000000000000000000000080bf00000000000080bf0000000000000000000080bf00000000000000000000a041000000000000000000000000000080bf00000000000080bf0000000000000000000080bf0000a0c1000000000000000000000000a05bb03f00000000000080bf00000000000080bf0000000000000000000080bf00000000a05bb03f0000a04100000000a05bb03f00000000000080bf00000000000080bf0000000000000000000080bf0000a0c1a05bb03f000000000000803fa05bb03f000080bf00000000000000000000000000000000000080bf000080bfa05bb0bf0000803f0000000000000000a05bb03f000080bf00000000000000000000000000000000000080bf000080bfa05bb0bf000000000000a04100000000a05bb03f0000803f000000000000000000000000000000000000803f000080bfa05bb03f000000000000a0410000803fa05bb03f0000803f000000000000000000000000000000000000803f000080bfa05bb03f0000803f0000a0414369144100000000000000000000803f000000000000803f0000000000000000000080bf0000a04100000000000000004369144100000000000000000000803f000000000000803f0000000000000000000080bf00000000000000000000a04143691441a05bb03f000000000000803f000000000000803f0000000000000000000080bf0000a041a05bb03f0000000043691441a05bb03f000000000000803f000000000000803f0000000000000000000080bf00000000a05bb03f0000a0410000803f000000000000000000000000000080bf0000803f0000000000000000000080bf0000a0410000803f000000000000803f000000000000000000000000000080bf0000803f0000000000000000000080bf000000000000803f0000a04143691441000000000000000000000000000080bf0000803f0000000000000000000080bf0000a041436914410000000043691441000000000000000000000000000080bf0000803f0000000000000000000080bf00000000436914410000a04143691441a05bb03f0000803f000000000000000000000000000000000000803f000080bfa05bb03f436914410000a04143691441000000000000803f000000000000000000000000000000000000803f000080bf0000000043691441000000004369144100000000000080bf00000000000000000000000000000000000080bf000080bf00000000436914410000000043691441a05bb03f000080bf00000000000000000000000000000000000080bf000080bfa05bb0bf436914410000000043691441a05bb03f00000000000000000000803f000080bf0000000000000000000080bf00000000436914410000a04143691441a05bb03f00000000000000000000803f000080bf0000000000000000000080bf0000a0c143691441 + m_CompressedMesh: + m_Vertices: + m_NumItems: 0 + m_Range: 0 + m_Start: 0 + m_Data: + m_BitSize: 0 + m_UV: + m_NumItems: 0 + m_Range: 0 + m_Start: 0 + m_Data: + m_BitSize: 0 + m_Normals: + m_NumItems: 0 + m_Range: 0 + m_Start: 0 + m_Data: + m_BitSize: 0 + m_Tangents: + m_NumItems: 0 + m_Range: 0 + m_Start: 0 + m_Data: + m_BitSize: 0 + m_Weights: + m_NumItems: 0 + m_Data: + m_BitSize: 0 + m_NormalSigns: + m_NumItems: 0 + m_Data: + m_BitSize: 0 + m_TangentSigns: + m_NumItems: 0 + m_Data: + m_BitSize: 0 + m_FloatColors: + m_NumItems: 0 + m_Range: 0 + m_Start: 0 + m_Data: + m_BitSize: 0 + m_BoneIndices: + m_NumItems: 0 + m_Data: + m_BitSize: 0 + m_Triangles: + m_NumItems: 0 + m_Data: + m_BitSize: 0 + m_UVInfo: 0 + m_LocalAABB: + m_Center: {x: 10, y: 4.6378493, z: -9.311102} + m_Extent: {x: 10, y: 4.6378493, z: 10.688898} + m_MeshUsageFlags: 0 + m_BakedConvexCollisionMesh: + m_BakedTriangleCollisionMesh: + m_MeshMetrics[0]: 1 + m_MeshMetrics[1]: 1 + m_MeshOptimizationFlags: 1 + m_StreamData: + serializedVersion: 2 + offset: 0 + size: 0 + path: +--- !u!1 &1762848978 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1762848979} + m_Layer: 3 + m_Name: RightHandIK_hint + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1762848979 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1762848978} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -11, y: 0, z: 13.75} + m_LocalScale: {x: 0.1, y: 0.1, z: 0.1} + m_Children: [] + m_Father: {fileID: 1888020711} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1767269156 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1767269157} + - component: {fileID: 1767269158} + m_Layer: 3 + m_Name: LeftHandIK + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1767269157 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1767269156} + 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_Children: + - {fileID: 1399667852} + - {fileID: 372318065} + m_Father: {fileID: 42140253} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &1767269158 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1767269156} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: aeda7bfbf984f2a4da5ab4b8967b115d, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Weight: 0.85 + m_Data: + m_Root: {fileID: 3772228501800882099} + m_Mid: {fileID: 3234227603773615720} + m_Tip: {fileID: 8561193508876723632} + m_Target: {fileID: 1399667852} + m_Hint: {fileID: 0} + m_TargetPositionWeight: 1 + m_TargetRotationWeight: 1 + m_HintWeight: 1 + m_MaintainTargetPositionOffset: 0 + m_MaintainTargetRotationOffset: 0 + m_SourceObjectsGUIToggle: 1 + m_SettingsGUIToggle: 1 +--- !u!1 &1797010379 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1797010380} + - component: {fileID: 1797010381} + m_Layer: 3 + m_Name: LeftHandIK_target + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1797010380 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1797010379} + m_LocalRotation: {x: 0.059147395, y: -0.5039863, z: -0.83907604, w: 0.19608903} + m_LocalPosition: {x: -0.146801, y: 0.58770037, z: 0.070599556} + m_LocalScale: {x: 0.1, y: 0.1, z: 0.1} + m_Children: [] + m_Father: {fileID: 144792028} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: -55.343, y: -31.474, z: 223.118} +--- !u!114 &1797010381 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1797010379} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 8935e03361a14ec4b8edc872f76bc822, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Weight: 0.517 + m_Data: + m_ConstrainedObject: {fileID: 1797010380} + m_SourceObjects: + m_Length: 1 + m_Item0: + transform: {fileID: 1632779021} + weight: 1 + m_Item1: + transform: {fileID: 0} + weight: 0 + m_Item2: + transform: {fileID: 0} + weight: 0 + m_Item3: + transform: {fileID: 0} + weight: 0 + m_Item4: + transform: {fileID: 0} + weight: 0 + m_Item5: + transform: {fileID: 0} + weight: 0 + m_Item6: + transform: {fileID: 0} + weight: 0 + m_Item7: + transform: {fileID: 0} + weight: 0 + m_ConstrainedPositionAxes: + x: 1 + y: 1 + z: 1 + m_ConstrainedRotationAxes: + x: 1 + y: 1 + z: 1 + m_MaintainPositionOffset: 0 + m_MaintainRotationOffset: 0 + m_SourceObjectsGUIToggle: 1 + m_SettingsGUIToggle: 1 +--- !u!1 &1830846631 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1830846632} + - component: {fileID: 1830846633} + m_Layer: 3 + m_Name: HeadAim + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1830846632 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1830846631} + 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_Children: + - {fileID: 1437094857} + m_Father: {fileID: 508308508} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &1830846633 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1830846631} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e3c430f382484144e925c097c2d33cfe, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Weight: 0 + m_Data: + m_ConstrainedObject: {fileID: 7744703493503326207} + m_SourceObjects: + m_Length: 1 + m_Item0: + transform: {fileID: 1437094857} + weight: 1 + m_Item1: + transform: {fileID: 0} + weight: 0 + m_Item2: + transform: {fileID: 0} + weight: 0 + m_Item3: + transform: {fileID: 0} + weight: 0 + m_Item4: + transform: {fileID: 0} + weight: 0 + m_Item5: + transform: {fileID: 0} + weight: 0 + m_Item6: + transform: {fileID: 0} + weight: 0 + m_Item7: + transform: {fileID: 0} + weight: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_MinLimit: -180 + m_MaxLimit: 180 + m_AimAxis: 4 + m_UpAxis: 2 + m_WorldUpType: 0 + m_WorldUpObject: {fileID: 0} + m_WorldUpAxis: 2 + m_MaintainOffset: 0 + m_ConstrainedAxes: + x: 1 + y: 1 + z: 1 + m_SourceObjectsGUIToggle: 1 + m_SettingsGUIToggle: 0 +--- !u!1 &1888020710 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1888020711} + - component: {fileID: 1888020712} + m_Layer: 3 + m_Name: RightHandIK + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1888020711 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1888020710} + 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_Children: + - {fileID: 1428345787} + - {fileID: 1762848979} + m_Father: {fileID: 42140253} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &1888020712 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1888020710} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: aeda7bfbf984f2a4da5ab4b8967b115d, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Weight: 0.85 + m_Data: + m_Root: {fileID: 1736390053318990959} + m_Mid: {fileID: 2647666789508465143} + m_Tip: {fileID: 1245275053774927467} + m_Target: {fileID: 1428345787} + m_Hint: {fileID: 0} + m_TargetPositionWeight: 1 + m_TargetRotationWeight: 1 + m_HintWeight: 1 + m_MaintainTargetPositionOffset: 0 + m_MaintainTargetRotationOffset: 0 + m_SourceObjectsGUIToggle: 1 + m_SettingsGUIToggle: 0 +--- !u!1 &1937953391 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1937953392} + - component: {fileID: 1937953393} + m_Layer: 3 + m_Name: RightHandIK + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1937953392 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1937953391} + 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_Children: + - {fileID: 1042188897} + - {fileID: 518016459} + m_Father: {fileID: 508308508} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &1937953393 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1937953391} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: aeda7bfbf984f2a4da5ab4b8967b115d, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Weight: 0.572 + m_Data: + m_Root: {fileID: 1736390053318990959} + m_Mid: {fileID: 2647666789508465143} + m_Tip: {fileID: 1245275053774927467} + m_Target: {fileID: 1042188897} + m_Hint: {fileID: 0} + m_TargetPositionWeight: 1 + m_TargetRotationWeight: 1 + m_HintWeight: 1 + m_MaintainTargetPositionOffset: 0 + m_MaintainTargetRotationOffset: 0 + m_SourceObjectsGUIToggle: 1 + m_SettingsGUIToggle: 0 +--- !u!1 &1987657339 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1987657340} + - component: {fileID: 1987657341} + m_Layer: 3 + m_Name: LeftHandIK_target + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1987657340 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1987657339} + m_LocalRotation: {x: 0.059147395, y: -0.5039863, z: -0.83907604, w: 0.19608903} + m_LocalPosition: {x: -0.146801, y: 0.58770037, z: 0.070599556} + m_LocalScale: {x: 0.1, y: 0.1, z: 0.1} + m_Children: [] + m_Father: {fileID: 476846418} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: -55.343, y: -31.474, z: 223.118} +--- !u!114 &1987657341 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1987657339} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 8935e03361a14ec4b8edc872f76bc822, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Weight: 1 + m_Data: + m_ConstrainedObject: {fileID: 1987657340} + m_SourceObjects: + m_Length: 1 + m_Item0: + transform: {fileID: 1632779021} + weight: 1 + m_Item1: + transform: {fileID: 0} + weight: 0 + m_Item2: + transform: {fileID: 0} + weight: 0 + m_Item3: + transform: {fileID: 0} + weight: 0 + m_Item4: + transform: {fileID: 0} + weight: 0 + m_Item5: + transform: {fileID: 0} + weight: 0 + m_Item6: + transform: {fileID: 0} + weight: 0 + m_Item7: + transform: {fileID: 0} + weight: 0 + m_ConstrainedPositionAxes: + x: 1 + y: 1 + z: 1 + m_ConstrainedRotationAxes: + x: 1 + y: 1 + z: 1 + m_MaintainPositionOffset: 0 + m_MaintainRotationOffset: 0 + m_SourceObjectsGUIToggle: 1 + m_SettingsGUIToggle: 1 +--- !u!1 &2088085133 +GameObject: + m_ObjectHideFlags: 3 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2088085134} + - component: {fileID: 2088085137} + - component: {fileID: 2088085136} + - component: {fileID: 2088085135} + m_Layer: 0 + m_Name: cm + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2088085134 +Transform: + m_ObjectHideFlags: 3 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2088085133} + 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_Children: [] + m_Father: {fileID: 869074594} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &2088085135 +MonoBehaviour: + m_ObjectHideFlags: 3 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2088085133} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4044717213e31446939f7bd49c896ea, type: 3} + m_Name: + m_EditorClassIdentifier: + m_TrackedObjectOffset: {x: 0, y: 1.2, z: 0} + m_LookaheadTime: 0 + m_LookaheadSmoothing: 10 + m_LookaheadIgnoreY: 0 + m_HorizontalDamping: 0 + m_VerticalDamping: 0 + m_ScreenX: 0.45 + m_ScreenY: 0.5 + m_DeadZoneWidth: 0 + m_DeadZoneHeight: 0 + m_SoftZoneWidth: 0.8 + m_SoftZoneHeight: 0.8 + m_BiasX: 0 + m_BiasY: 0 + m_CenterOnActivate: 1 +--- !u!114 &2088085136 +MonoBehaviour: + m_ObjectHideFlags: 3 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2088085133} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9384ab8608cdc3d479fe89cd51eed48f, type: 3} + m_Name: + m_EditorClassIdentifier: + m_BindingMode: 4 + m_FollowOffset: {x: 0, y: 2.5, z: -7.04} + m_XDamping: 1 + m_YDamping: 1 + m_ZDamping: 1 + m_AngularDampingMode: 0 + m_PitchDamping: 0 + m_YawDamping: 0 + m_RollDamping: 0 + m_AngularDamping: 0 + m_Heading: + m_Definition: 2 + m_VelocityFilterStrength: 4 + m_Bias: 0 + m_RecenterToTargetHeading: + m_enabled: 0 + m_WaitTime: 1 + m_RecenteringTime: 2 + m_LegacyHeadingDefinition: -1 + m_LegacyVelocityFilterStrength: -1 + m_XAxis: + Value: 0 + m_SpeedMode: 0 + m_MaxSpeed: 300 + m_AccelTime: 0.1 + m_DecelTime: 0.1 + m_InputAxisName: + m_InputAxisValue: 0 + m_InvertInput: 0 + m_MinValue: -180 + m_MaxValue: 180 + m_Wrap: 1 + m_Recentering: + m_enabled: 0 + m_WaitTime: 1 + m_RecenteringTime: 2 + m_LegacyHeadingDefinition: -1 + m_LegacyVelocityFilterStrength: -1 + m_LegacyRadius: 3.4028235e+38 + m_LegacyHeightOffset: 3.4028235e+38 + m_LegacyHeadingBias: 3.4028235e+38 + m_HeadingIsSlave: 1 +--- !u!114 &2088085137 +MonoBehaviour: + m_ObjectHideFlags: 3 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2088085133} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: ac0b09e7857660247b1477e93731de29, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!1 &2101118512 +GameObject: + m_ObjectHideFlags: 3 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2101118514} + - component: {fileID: 2101118513} + m_Layer: 0 + m_Name: TopRig + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &2101118513 +MonoBehaviour: + m_ObjectHideFlags: 3 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2101118512} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 45e653bab7fb20e499bda25e1b646fea, type: 3} + m_Name: + m_EditorClassIdentifier: + m_ExcludedPropertiesInInspector: + - m_Script + - Header + - Extensions + - m_Priority + - m_Transitions + - m_Follow + - m_StandbyUpdate + - m_Lens + m_LockStageInInspector: 00000000 + m_StreamingVersion: 20170927 + m_Priority: 10 + m_StandbyUpdate: 2 + m_LookAt: {fileID: 0} + m_Follow: {fileID: 0} + m_Lens: + FieldOfView: 40 + OrthographicSize: 10 + NearClipPlane: 0.1 + FarClipPlane: 5000 + Dutch: 0 + LensShift: {x: 0, y: 0} + m_Transitions: + m_BlendHint: 0 + m_InheritPosition: 0 + m_OnCameraLive: + m_PersistentCalls: + m_Calls: [] + m_LegacyBlendHint: 0 + m_ComponentOwner: {fileID: 439614335} +--- !u!4 &2101118514 +Transform: + m_ObjectHideFlags: 3 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2101118512} + m_LocalRotation: {x: 0.09107753, y: 0.04585489, z: -0.00419827, w: 0.9947787} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 439614335} + m_Father: {fileID: 209627691} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &2134056906 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2134056907} + m_Layer: 3 + m_Name: LeftHandIK_hint + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2134056907 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2134056906} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -11, y: 0, z: 13.75} + m_LocalScale: {x: 0.1, y: 0.1, z: 0.1} + m_Children: [] + m_Father: {fileID: 476846418} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &2138677391 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2138677393} + - component: {fileID: 2138677392} + m_Layer: 0 + m_Name: Directional Light + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!108 &2138677392 +Light: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2138677391} + m_Enabled: 1 + serializedVersion: 10 + m_Type: 1 + m_Shape: 0 + m_Color: {r: 1, g: 0.95686275, b: 0.8392157, a: 1} + m_Intensity: 2 + m_Range: 10 + m_SpotAngle: 30 + m_InnerSpotAngle: 21.802082 + m_CookieSize: 10 + m_Shadows: + m_Type: 2 + m_Resolution: -1 + m_CustomResolution: -1 + m_Strength: 1 + m_Bias: 0.02 + m_NormalBias: 0.1 + m_NearPlane: 0.1 + 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: 1 + 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!4 &2138677393 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2138677391} + m_LocalRotation: {x: 0.7064338, y: 0.47771442, z: 0.030843567, w: 0.5213338} + m_LocalPosition: {x: 0.24, y: 3, z: 4.18} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 45, y: 130, z: 90} +--- !u!4 &38101693975860110 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6036028704667047898} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0, y: 0.017859343, z: 0.0008989906} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 9027401759568121703} + - {fileID: 3347735418752596719} + - {fileID: 49447877241787944} + m_Father: {fileID: 8231537208663976650} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: -13.065859, y: 40.13029, z: -1.3712748} +--- !u!4 &46986526619788425 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 969289617617483512} + m_LocalRotation: {x: -5.695085e-17, y: -0.00000023841983, z: 2.2725062e-12, w: 1} + m_LocalPosition: {x: 3.8882017e-10, y: 0.0022338866, z: 8.2124e-10} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 4038941365384921987} + m_Father: {fileID: 8263932002272948002} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 59.267494, y: -6.170245, z: -10.824888} +--- !u!4 &49447877241787944 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1702350966146966769} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0, y: 0.0042980956, z: -0.00016456126} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 3786663924149775962} + m_Father: {fileID: 38101693975860110} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 7.9942665, y: 0.13994017, z: 0.10983392} +--- !u!1 &146668805033809188 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2004308958918841471} + m_Layer: 3 + m_Name: mixamorig:Spine2 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &170941459908680804 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4444495002138158157} + - component: {fileID: 2434832479460746123} + m_Layer: 3 + m_Name: ears_low + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &191948013526948205 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7842801111992391080} + m_Layer: 3 + m_Name: mixamorig:RightHandThumb1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &255314166167999145 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2892780539131983700} + m_Layer: 3 + m_Name: mixamorig:LeftHandThumb3 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &330757602879729611 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 622707324964927136} + 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_Children: [] + m_Father: {fileID: 5723820410734444169} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &342978044781199717 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 348501149982687336} + - component: {fileID: 7532609882026144153} + m_Layer: 3 + m_Name: palm_low + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &348501149982687336 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 342978044781199717} + m_LocalRotation: {x: -0.7071068, y: -7.375698e-10, z: -0.0000000028449127, w: 0.7071067} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 28, y: 28, z: 28} + m_Children: [] + m_Father: {fileID: 275152778} + m_RootOrder: 15 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!4 &404684814557235294 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5860018414113201947} + m_LocalRotation: {x: 0.02006723, y: 0.04093222, z: 0.014504653, w: 0.9988551} + m_LocalPosition: {x: 8.9406965e-10, y: 0.0024554105, z: 2.2351741e-10} + m_LocalScale: {x: 1, y: 1, z: 1.0000001} + m_Children: [] + m_Father: {fileID: 2892780539131983700} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 2.2293847, y: 4.727412, z: 1.755922} +--- !u!4 &413325650563895485 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 923704446879601920} + m_LocalRotation: {x: -0.7071068, y: -7.375698e-10, z: -0.0000000028449127, w: 0.7071067} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 28, y: 28, z: 28} + m_Children: [] + m_Father: {fileID: 275152778} + m_RootOrder: 6 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!23 &529712424850844450 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6709806637713673305} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: a632a98bf15d54f4dbf0ae5733cd9df2, 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!4 &539745478044430600 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3541754001687102235} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 11, y: 0, z: -13.75} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 8231537208663976650} + - {fileID: 275152778} + - {fileID: 497905163} + - {fileID: 1011058239} + - {fileID: 1404392785} + - {fileID: 708908355} + - {fileID: 42140253} + - {fileID: 508308508} + - {fileID: 94802075} + - {fileID: 448196859} + - {fileID: 949289639} + m_Father: {fileID: 0} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &622707324964927136 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 330757602879729611} + - component: {fileID: 2945864370931266922} + - component: {fileID: 1591320645662485891} + m_Layer: 3 + m_Name: Cylinder003 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &632919408645977011 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8114064758663019197} + m_LocalRotation: {x: -5.695085e-17, y: 0.00000023841983, z: -2.2725062e-12, w: 1} + m_LocalPosition: {x: -3.8882017e-10, y: 0.0022338866, z: 8.2124e-10} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 8362226126444815203} + m_Father: {fileID: 789201071149236897} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 13.984161, y: 0.23246858, z: 1.8952888} +--- !u!1 &637568496476554880 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2557290871724805380} + m_Layer: 3 + m_Name: mixamorig:RightHandIndex4 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &650411999670426853 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2583774797951760557} + m_LocalRotation: {x: 0.0066927033, y: 0.0435071, z: 0.034402333, w: 0.99843824} + m_LocalPosition: {x: -4.4703483e-10, y: 0.0026198607, z: 0.0000000010430813} + m_LocalScale: {x: 1, y: 0.99999994, z: 1} + m_Children: + - {fileID: 2827324758456024331} + m_Father: {fileID: 5518930826931131428} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 12.057877, y: 0.69805557, z: -57.93119} +--- !u!4 &655058852357636101 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4730361222209491902} + 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_Children: [] + m_Father: {fileID: 5723820410734444169} + m_RootOrder: 5 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!4 &668006632431737210 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3200635893821158042} + m_LocalRotation: {x: -0.06928723, y: -7.231708e-26, z: 2.2915993e-24, w: 0.99759674} + m_LocalPosition: {x: 3.5411062e-19, y: 0.020393591, z: 0.0009455636} + m_LocalScale: {x: 1, y: 0.9999998, z: 0.9999999} + m_Children: [] + m_Father: {fileID: 7744703493503326207} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: -7.9460993, y: 0, z: 0} +--- !u!4 &789201071149236897 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6266911182013213407} + m_LocalRotation: {x: -0.025451161, y: -0.00014295697, z: -0.00014227511, w: 0.99967605} + m_LocalPosition: {x: 1.4959368e-10, y: 0.002752743, z: 0.000000002810193} + m_LocalScale: {x: 0.99999994, y: 1, z: 1} + m_Children: + - {fileID: 632919408645977011} + m_Father: {fileID: 2289493134365204732} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 63.21097, y: 9.402152, z: 15.250231} +--- !u!1 &837269256743658792 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5936567709178112463} + m_Layer: 3 + m_Name: mixamorig:LeftHandThumb1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &865260883641818419 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5853655481853726855} + m_LocalRotation: {x: -0.7071068, y: 5.301282e-10, z: 6.338494e-10, w: 0.7071067} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 28, y: 28, z: 28} + m_Children: [] + m_Father: {fileID: 275152778} + m_RootOrder: 21 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &923704446879601920 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 413325650563895485} + - component: {fileID: 1658602278263175824} + m_Layer: 3 + m_Name: finger_middle_low + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &969289617617483512 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 46986526619788425} + m_Layer: 3 + m_Name: mixamorig:RightHandPinky3 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &981696854506848924 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6044274241334701642} + m_LocalRotation: {x: -0.7071068, y: -0.0000000050312807, z: -0.0000000020810018, w: 0.7071067} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 28, y: 28, z: 28} + m_Children: [] + m_Father: {fileID: 275152778} + m_RootOrder: 9 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!4 &1029178351255460819 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5263768505814637931} + m_LocalRotation: {x: 0.084491365, y: 0.013635955, z: 0.012378372, w: 0.996254} + m_LocalPosition: {x: -7.4505804e-11, y: 0.00260657, z: 0.0000000028708018} + m_LocalScale: {x: 0.99999994, y: 0.9999999, z: 0.99999994} + m_Children: + - {fileID: 4830960991135789399} + m_Father: {fileID: 5130141285490113977} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 68.51642, y: -154.59825, z: -163.59277} +--- !u!137 &1056355096749552683 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4225218658054379477} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 60c2f0e0aaa8f8d4e9d23d7e3768653b, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: -2570044158647291608, guid: 82a2914d8f86c62488456950c8330e38, type: 3} + m_Bones: + - {fileID: 38101693975860110} + - {fileID: 49447877241787944} + - {fileID: 3786663924149775962} + - {fileID: 2004308958918841471} + - {fileID: 1589130315589705887} + - {fileID: 7744703493503326207} + - {fileID: 668006632431737210} + - {fileID: 2561657633566861447} + - {fileID: 8465185068757438057} + - {fileID: 5869159519349434605} + - {fileID: 3772228501800882099} + - {fileID: 3234227603773615720} + - {fileID: 8561193508876723632} + - {fileID: 5936567709178112463} + - {fileID: 7211998777874271499} + - {fileID: 2892780539131983700} + - {fileID: 404684814557235294} + - {fileID: 1449764107462391107} + - {fileID: 6381046285341082860} + - {fileID: 1821246363959634179} + - {fileID: 8568605348352331875} + - {fileID: 5793013738874131837} + - {fileID: 3963437824181322287} + - {fileID: 8283759473473236767} + - {fileID: 6376361113423677020} + - {fileID: 2289493134365204732} + - {fileID: 789201071149236897} + - {fileID: 632919408645977011} + - {fileID: 8362226126444815203} + - {fileID: 6713046130555606024} + - {fileID: 1736390053318990959} + - {fileID: 2647666789508465143} + - {fileID: 1245275053774927467} + - {fileID: 7842801111992391080} + - {fileID: 5518930826931131428} + - {fileID: 650411999670426853} + - {fileID: 2827324758456024331} + - {fileID: 4625820438220060375} + - {fileID: 4935914161791213493} + - {fileID: 3097883888289559569} + - {fileID: 2557290871724805380} + - {fileID: 5130141285490113977} + - {fileID: 1029178351255460819} + - {fileID: 4830960991135789399} + - {fileID: 3609869344849030578} + - {fileID: 7702342598346179876} + - {fileID: 8263932002272948002} + - {fileID: 46986526619788425} + - {fileID: 4038941365384921987} + - {fileID: 9027401759568121703} + - {fileID: 2006971927199184871} + - {fileID: 6099821193780923248} + - {fileID: 6095549731309093963} + - {fileID: 4281225623967377215} + - {fileID: 3347735418752596719} + - {fileID: 5460221536597941935} + - {fileID: 7720914278482711054} + - {fileID: 4523608188793301927} + - {fileID: 3119608742257546226} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 38101693975860110} + m_AABB: + m_Center: {x: 0.0000047078356, y: 0.012417832, z: 0.0028643752} + m_Extent: {x: 0.027433358, y: 0.002938442, z: 0.0029298165} + m_DirtyAABB: 0 +--- !u!4 &1132077972659446630 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4408420577911530385} + 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_Children: [] + m_Father: {fileID: 5723820410734444169} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!137 &1200846796344876583 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4926744772574748722} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: d5c0dc78f40c06c4e9356a3218da955b, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: -2863454572661910379, guid: 82a2914d8f86c62488456950c8330e38, type: 3} + m_Bones: + - {fileID: 38101693975860110} + - {fileID: 49447877241787944} + - {fileID: 3786663924149775962} + - {fileID: 2004308958918841471} + - {fileID: 1589130315589705887} + - {fileID: 7744703493503326207} + - {fileID: 668006632431737210} + - {fileID: 2561657633566861447} + - {fileID: 8465185068757438057} + - {fileID: 5869159519349434605} + - {fileID: 3772228501800882099} + - {fileID: 3234227603773615720} + - {fileID: 8561193508876723632} + - {fileID: 5936567709178112463} + - {fileID: 7211998777874271499} + - {fileID: 2892780539131983700} + - {fileID: 404684814557235294} + - {fileID: 1449764107462391107} + - {fileID: 6381046285341082860} + - {fileID: 1821246363959634179} + - {fileID: 8568605348352331875} + - {fileID: 5793013738874131837} + - {fileID: 3963437824181322287} + - {fileID: 8283759473473236767} + - {fileID: 6376361113423677020} + - {fileID: 2289493134365204732} + - {fileID: 789201071149236897} + - {fileID: 632919408645977011} + - {fileID: 8362226126444815203} + - {fileID: 6713046130555606024} + - {fileID: 1736390053318990959} + - {fileID: 2647666789508465143} + - {fileID: 1245275053774927467} + - {fileID: 7842801111992391080} + - {fileID: 5518930826931131428} + - {fileID: 650411999670426853} + - {fileID: 2827324758456024331} + - {fileID: 4625820438220060375} + - {fileID: 4935914161791213493} + - {fileID: 3097883888289559569} + - {fileID: 2557290871724805380} + - {fileID: 5130141285490113977} + - {fileID: 1029178351255460819} + - {fileID: 4830960991135789399} + - {fileID: 3609869344849030578} + - {fileID: 7702342598346179876} + - {fileID: 8263932002272948002} + - {fileID: 46986526619788425} + - {fileID: 4038941365384921987} + - {fileID: 9027401759568121703} + - {fileID: 2006971927199184871} + - {fileID: 6099821193780923248} + - {fileID: 6095549731309093963} + - {fileID: 4281225623967377215} + - {fileID: 3347735418752596719} + - {fileID: 5460221536597941935} + - {fileID: 7720914278482711054} + - {fileID: 4523608188793301927} + - {fileID: 3119608742257546226} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 38101693975860110} + m_AABB: + m_Center: {x: 4.656613e-10, y: 0.027823603, z: 0.0071387496} + m_Extent: {x: 0.0071336757, y: 0.004655117, z: 0.0010707472} + m_DirtyAABB: 0 +--- !u!137 &1227289702745011651 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6044274241334701642} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 60c2f0e0aaa8f8d4e9d23d7e3768653b, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: 7870532851561950741, guid: 82a2914d8f86c62488456950c8330e38, type: 3} + m_Bones: + - {fileID: 38101693975860110} + - {fileID: 49447877241787944} + - {fileID: 3786663924149775962} + - {fileID: 2004308958918841471} + - {fileID: 1589130315589705887} + - {fileID: 7744703493503326207} + - {fileID: 668006632431737210} + - {fileID: 2561657633566861447} + - {fileID: 8465185068757438057} + - {fileID: 5869159519349434605} + - {fileID: 3772228501800882099} + - {fileID: 3234227603773615720} + - {fileID: 8561193508876723632} + - {fileID: 5936567709178112463} + - {fileID: 7211998777874271499} + - {fileID: 2892780539131983700} + - {fileID: 404684814557235294} + - {fileID: 1449764107462391107} + - {fileID: 6381046285341082860} + - {fileID: 1821246363959634179} + - {fileID: 8568605348352331875} + - {fileID: 5793013738874131837} + - {fileID: 3963437824181322287} + - {fileID: 8283759473473236767} + - {fileID: 6376361113423677020} + - {fileID: 2289493134365204732} + - {fileID: 789201071149236897} + - {fileID: 632919408645977011} + - {fileID: 8362226126444815203} + - {fileID: 6713046130555606024} + - {fileID: 1736390053318990959} + - {fileID: 2647666789508465143} + - {fileID: 1245275053774927467} + - {fileID: 7842801111992391080} + - {fileID: 5518930826931131428} + - {fileID: 650411999670426853} + - {fileID: 2827324758456024331} + - {fileID: 4625820438220060375} + - {fileID: 4935914161791213493} + - {fileID: 3097883888289559569} + - {fileID: 2557290871724805380} + - {fileID: 5130141285490113977} + - {fileID: 1029178351255460819} + - {fileID: 4830960991135789399} + - {fileID: 3609869344849030578} + - {fileID: 7702342598346179876} + - {fileID: 8263932002272948002} + - {fileID: 46986526619788425} + - {fileID: 4038941365384921987} + - {fileID: 9027401759568121703} + - {fileID: 2006971927199184871} + - {fileID: 6099821193780923248} + - {fileID: 6095549731309093963} + - {fileID: 4281225623967377215} + - {fileID: 3347735418752596719} + - {fileID: 5460221536597941935} + - {fileID: 7720914278482711054} + - {fileID: 4523608188793301927} + - {fileID: 3119608742257546226} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 38101693975860110} + m_AABB: + m_Center: {x: 9.313226e-10, y: 0.013736222, z: -0.001545338} + m_Extent: {x: 0.020512447, y: 0.0039795022, z: 0.004044237} + m_DirtyAABB: 0 +--- !u!4 &1236401970514064221 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2229421803603254837} + m_LocalRotation: {x: -0.7071068, y: -0, z: -0, w: 0.7071067} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 28, y: 28, z: 28} + m_Children: [] + m_Father: {fileID: 275152778} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!4 &1245275053774927467 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5437356775743236286} + m_LocalRotation: {x: -0.024770312, y: 0.06330372, z: -0.049688194, w: 0.99644876} + m_LocalPosition: {x: -4.842877e-10, y: 0.007151887, z: -0.000000003740133} + m_LocalScale: {x: 1, y: 1, z: 1.0000001} + m_Children: + - {fileID: 1220795588} + - {fileID: 4625820438220060375} + - {fileID: 5130141285490113977} + - {fileID: 7702342598346179876} + - {fileID: 7842801111992391080} + m_Father: {fileID: 2647666789508465143} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: -27.223686, y: -37.65252, z: -23.120409} +--- !u!1 &1369469842245590497 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3107201403938988194} + - component: {fileID: 7312073801819737166} + m_Layer: 3 + m_Name: wrist_low + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &1426603960846516381 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8568605348352331875} + m_Layer: 3 + m_Name: mixamorig:LeftHandIndex4 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &1427359144495133728 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3481275315209732022} + - component: {fileID: 2051882659987897662} + m_Layer: 3 + m_Name: pelvis_low + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1449764107462391107 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6772751989522279837} + m_LocalRotation: {x: 0.025758917, y: 0.022072563, z: -0.034884524, w: 0.9988155} + m_LocalPosition: {x: 0.0025373795, y: 0.0046996134, z: -0.00022197569} + m_LocalScale: {x: 0.99999994, y: 0.9999999, z: 1} + m_Children: + - {fileID: 6381046285341082860} + m_Father: {fileID: 8561193508876723632} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 36.17132, y: 3.7333062, z: 2.2043753} +--- !u!137 &1469149459923311127 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4243624145117781529} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 60c2f0e0aaa8f8d4e9d23d7e3768653b, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: -735563127378357600, guid: 82a2914d8f86c62488456950c8330e38, type: 3} + m_Bones: + - {fileID: 38101693975860110} + - {fileID: 49447877241787944} + - {fileID: 3786663924149775962} + - {fileID: 2004308958918841471} + - {fileID: 1589130315589705887} + - {fileID: 7744703493503326207} + - {fileID: 668006632431737210} + - {fileID: 2561657633566861447} + - {fileID: 8465185068757438057} + - {fileID: 5869159519349434605} + - {fileID: 3772228501800882099} + - {fileID: 3234227603773615720} + - {fileID: 8561193508876723632} + - {fileID: 5936567709178112463} + - {fileID: 7211998777874271499} + - {fileID: 2892780539131983700} + - {fileID: 404684814557235294} + - {fileID: 1449764107462391107} + - {fileID: 6381046285341082860} + - {fileID: 1821246363959634179} + - {fileID: 8568605348352331875} + - {fileID: 5793013738874131837} + - {fileID: 3963437824181322287} + - {fileID: 8283759473473236767} + - {fileID: 6376361113423677020} + - {fileID: 2289493134365204732} + - {fileID: 789201071149236897} + - {fileID: 632919408645977011} + - {fileID: 8362226126444815203} + - {fileID: 6713046130555606024} + - {fileID: 1736390053318990959} + - {fileID: 2647666789508465143} + - {fileID: 1245275053774927467} + - {fileID: 7842801111992391080} + - {fileID: 5518930826931131428} + - {fileID: 650411999670426853} + - {fileID: 2827324758456024331} + - {fileID: 4625820438220060375} + - {fileID: 4935914161791213493} + - {fileID: 3097883888289559569} + - {fileID: 2557290871724805380} + - {fileID: 5130141285490113977} + - {fileID: 1029178351255460819} + - {fileID: 4830960991135789399} + - {fileID: 3609869344849030578} + - {fileID: 7702342598346179876} + - {fileID: 8263932002272948002} + - {fileID: 46986526619788425} + - {fileID: 4038941365384921987} + - {fileID: 9027401759568121703} + - {fileID: 2006971927199184871} + - {fileID: 6099821193780923248} + - {fileID: 6095549731309093963} + - {fileID: 4281225623967377215} + - {fileID: 3347735418752596719} + - {fileID: 5460221536597941935} + - {fileID: 7720914278482711054} + - {fileID: 4523608188793301927} + - {fileID: 3119608742257546226} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 38101693975860110} + m_AABB: + m_Center: {x: 9.313226e-10, y: 0.015755808, z: -0.0019112153} + m_Extent: {x: 0.01264705, y: 0.004342156, z: 0.0044564614} + m_DirtyAABB: 0 +--- !u!4 &1589130315589705887 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2127583716737487292} + m_LocalRotation: {x: 0.025515562, y: 9.017148e-20, z: -1.6228038e-17, w: 0.99967444} + m_LocalPosition: {x: -2.4632455e-21, y: 0.007856388, z: 0.000015783942} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 7744703493503326207} + m_Father: {fileID: 2004308958918841471} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 3.2797086, y: -7.512534, z: -1.074366} +--- !u!23 &1591320645662485891 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 622707324964927136} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 2c4716a8ce690bc4d8cfc9547b01bd9b, 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!137 &1658602278263175824 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 923704446879601920} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 60c2f0e0aaa8f8d4e9d23d7e3768653b, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: -5145736250498181034, guid: 82a2914d8f86c62488456950c8330e38, type: 3} + m_Bones: + - {fileID: 38101693975860110} + - {fileID: 49447877241787944} + - {fileID: 3786663924149775962} + - {fileID: 2004308958918841471} + - {fileID: 1589130315589705887} + - {fileID: 7744703493503326207} + - {fileID: 668006632431737210} + - {fileID: 2561657633566861447} + - {fileID: 8465185068757438057} + - {fileID: 5869159519349434605} + - {fileID: 3772228501800882099} + - {fileID: 3234227603773615720} + - {fileID: 8561193508876723632} + - {fileID: 5936567709178112463} + - {fileID: 7211998777874271499} + - {fileID: 2892780539131983700} + - {fileID: 404684814557235294} + - {fileID: 1449764107462391107} + - {fileID: 6381046285341082860} + - {fileID: 1821246363959634179} + - {fileID: 8568605348352331875} + - {fileID: 5793013738874131837} + - {fileID: 3963437824181322287} + - {fileID: 8283759473473236767} + - {fileID: 6376361113423677020} + - {fileID: 2289493134365204732} + - {fileID: 789201071149236897} + - {fileID: 632919408645977011} + - {fileID: 8362226126444815203} + - {fileID: 6713046130555606024} + - {fileID: 1736390053318990959} + - {fileID: 2647666789508465143} + - {fileID: 1245275053774927467} + - {fileID: 7842801111992391080} + - {fileID: 5518930826931131428} + - {fileID: 650411999670426853} + - {fileID: 2827324758456024331} + - {fileID: 4625820438220060375} + - {fileID: 4935914161791213493} + - {fileID: 3097883888289559569} + - {fileID: 2557290871724805380} + - {fileID: 5130141285490113977} + - {fileID: 1029178351255460819} + - {fileID: 4830960991135789399} + - {fileID: 3609869344849030578} + - {fileID: 7702342598346179876} + - {fileID: 8263932002272948002} + - {fileID: 46986526619788425} + - {fileID: 4038941365384921987} + - {fileID: 9027401759568121703} + - {fileID: 2006971927199184871} + - {fileID: 6099821193780923248} + - {fileID: 6095549731309093963} + - {fileID: 4281225623967377215} + - {fileID: 3347735418752596719} + - {fileID: 5460221536597941935} + - {fileID: 7720914278482711054} + - {fileID: 4523608188793301927} + - {fileID: 3119608742257546226} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 38101693975860110} + m_AABB: + m_Center: {x: 9.313226e-10, y: 0.014263178, z: -0.0015374265} + m_Extent: {x: 0.030787863, y: 0.0014776355, z: 0.0014066858} + m_DirtyAABB: 0 +--- !u!1 &1702350966146966769 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 49447877241787944} + m_Layer: 3 + m_Name: mixamorig:Spine + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1736390053318990959 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8529237798159229862} + m_LocalRotation: {x: 0.0856364, y: 0.006608644, z: -0.010808363, w: 0.9962459} + m_LocalPosition: {x: -9.3132255e-12, y: 0.0015929624, z: 7.4505804e-11} + m_LocalScale: {x: 0.9999999, y: 0.99999994, z: 1} + m_Children: + - {fileID: 2647666789508465143} + m_Father: {fileID: 6713046130555606024} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 37.450897, y: 66.341805, z: 105.79987} +--- !u!137 &1741508907910252431 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4933395398353100360} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 60c2f0e0aaa8f8d4e9d23d7e3768653b, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: 47422930541761884, guid: 82a2914d8f86c62488456950c8330e38, type: 3} + m_Bones: + - {fileID: 38101693975860110} + - {fileID: 49447877241787944} + - {fileID: 3786663924149775962} + - {fileID: 2004308958918841471} + - {fileID: 1589130315589705887} + - {fileID: 7744703493503326207} + - {fileID: 668006632431737210} + - {fileID: 2561657633566861447} + - {fileID: 8465185068757438057} + - {fileID: 5869159519349434605} + - {fileID: 3772228501800882099} + - {fileID: 3234227603773615720} + - {fileID: 8561193508876723632} + - {fileID: 5936567709178112463} + - {fileID: 7211998777874271499} + - {fileID: 2892780539131983700} + - {fileID: 404684814557235294} + - {fileID: 1449764107462391107} + - {fileID: 6381046285341082860} + - {fileID: 1821246363959634179} + - {fileID: 8568605348352331875} + - {fileID: 5793013738874131837} + - {fileID: 3963437824181322287} + - {fileID: 8283759473473236767} + - {fileID: 6376361113423677020} + - {fileID: 2289493134365204732} + - {fileID: 789201071149236897} + - {fileID: 632919408645977011} + - {fileID: 8362226126444815203} + - {fileID: 6713046130555606024} + - {fileID: 1736390053318990959} + - {fileID: 2647666789508465143} + - {fileID: 1245275053774927467} + - {fileID: 7842801111992391080} + - {fileID: 5518930826931131428} + - {fileID: 650411999670426853} + - {fileID: 2827324758456024331} + - {fileID: 4625820438220060375} + - {fileID: 4935914161791213493} + - {fileID: 3097883888289559569} + - {fileID: 2557290871724805380} + - {fileID: 5130141285490113977} + - {fileID: 1029178351255460819} + - {fileID: 4830960991135789399} + - {fileID: 3609869344849030578} + - {fileID: 7702342598346179876} + - {fileID: 8263932002272948002} + - {fileID: 46986526619788425} + - {fileID: 4038941365384921987} + - {fileID: 9027401759568121703} + - {fileID: 2006971927199184871} + - {fileID: 6099821193780923248} + - {fileID: 6095549731309093963} + - {fileID: 4281225623967377215} + - {fileID: 3347735418752596719} + - {fileID: 5460221536597941935} + - {fileID: 7720914278482711054} + - {fileID: 4523608188793301927} + - {fileID: 3119608742257546226} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 38101693975860110} + m_AABB: + m_Center: {x: -9.313226e-10, y: -0.01644269, z: 0.0048855105} + m_Extent: {x: 0.008058258, y: 0.0048007, z: 0.0050132154} + m_DirtyAABB: 0 +--- !u!4 &1821246363959634179 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2021755809698711476} + m_LocalRotation: {x: -1.1641565e-10, y: -0.00000035806318, z: -8.458274e-10, w: 1} + m_LocalPosition: {x: 1.6977413e-10, y: 0.0021414177, z: 0.000000002316954} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 8568605348352331875} + m_Father: {fileID: 6381046285341082860} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 24.037382, y: 0.7239395, z: 3.3993752} +--- !u!1 &1861397999525669211 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4494418218027586743} + - component: {fileID: 1944954649175505964} + m_Layer: 3 + m_Name: torso_mid_low + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1895166094368435029 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7047284500577548532} + m_LocalRotation: {x: -0.7071068, y: -0, z: -0, w: 0.7071067} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 28, y: 28, z: 28} + m_Children: [] + m_Father: {fileID: 275152778} + m_RootOrder: 12 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!137 &1944954649175505964 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1861397999525669211} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 60c2f0e0aaa8f8d4e9d23d7e3768653b, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: 2235691913216133658, guid: 82a2914d8f86c62488456950c8330e38, type: 3} + m_Bones: + - {fileID: 38101693975860110} + - {fileID: 49447877241787944} + - {fileID: 3786663924149775962} + - {fileID: 2004308958918841471} + - {fileID: 1589130315589705887} + - {fileID: 7744703493503326207} + - {fileID: 668006632431737210} + - {fileID: 2561657633566861447} + - {fileID: 8465185068757438057} + - {fileID: 5869159519349434605} + - {fileID: 3772228501800882099} + - {fileID: 3234227603773615720} + - {fileID: 8561193508876723632} + - {fileID: 5936567709178112463} + - {fileID: 7211998777874271499} + - {fileID: 2892780539131983700} + - {fileID: 404684814557235294} + - {fileID: 1449764107462391107} + - {fileID: 6381046285341082860} + - {fileID: 1821246363959634179} + - {fileID: 8568605348352331875} + - {fileID: 5793013738874131837} + - {fileID: 3963437824181322287} + - {fileID: 8283759473473236767} + - {fileID: 6376361113423677020} + - {fileID: 2289493134365204732} + - {fileID: 789201071149236897} + - {fileID: 632919408645977011} + - {fileID: 8362226126444815203} + - {fileID: 6713046130555606024} + - {fileID: 1736390053318990959} + - {fileID: 2647666789508465143} + - {fileID: 1245275053774927467} + - {fileID: 7842801111992391080} + - {fileID: 5518930826931131428} + - {fileID: 650411999670426853} + - {fileID: 2827324758456024331} + - {fileID: 4625820438220060375} + - {fileID: 4935914161791213493} + - {fileID: 3097883888289559569} + - {fileID: 2557290871724805380} + - {fileID: 5130141285490113977} + - {fileID: 1029178351255460819} + - {fileID: 4830960991135789399} + - {fileID: 3609869344849030578} + - {fileID: 7702342598346179876} + - {fileID: 8263932002272948002} + - {fileID: 46986526619788425} + - {fileID: 4038941365384921987} + - {fileID: 9027401759568121703} + - {fileID: 2006971927199184871} + - {fileID: 6099821193780923248} + - {fileID: 6095549731309093963} + - {fileID: 4281225623967377215} + - {fileID: 3347735418752596719} + - {fileID: 5460221536597941935} + - {fileID: 7720914278482711054} + - {fileID: 4523608188793301927} + - {fileID: 3119608742257546226} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 38101693975860110} + m_AABB: + m_Center: {x: 0.00000028312206, y: 0.0067705484, z: 0.00010433188} + m_Extent: {x: 0.0053279833, y: 0.00273103, z: 0.003697755} + m_DirtyAABB: 0 +--- !u!33 &1966235307278841930 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6709806637713673305} + m_Mesh: {fileID: 690106047850165013, guid: 6ecf4ed5e905303488757bf045c01010, type: 3} +--- !u!4 &1968351752643184444 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5219434189213378774} + m_LocalRotation: {x: -0.7071068, y: -0.000000007744487, z: 0.000000009430359, w: 0.7071067} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 28, y: 28, z: 28} + m_Children: [] + m_Father: {fileID: 275152778} + m_RootOrder: 17 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!4 &2004308958918841471 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 146668805033809188} + m_LocalRotation: {x: -0.012545594, y: 3.912023e-27, z: 4.4453675e-18, w: 0.9999213} + m_LocalPosition: {x: -0, y: 0.001946106, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 5869159519349434605} + - {fileID: 1589130315589705887} + - {fileID: 6713046130555606024} + m_Father: {fileID: 3786663924149775962} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 14.975883, y: 0.17816243, z: 0.7731313} +--- !u!4 &2006971927199184871 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8727390975659788858} + m_LocalRotation: {x: 0.07751489, y: -0.0025662382, z: -0.043736637, w: 0.9960281} + m_LocalPosition: {x: -3.910145e-10, y: 0.007955141, z: -8.731149e-13} + m_LocalScale: {x: 1, y: 0.99999994, z: 0.9999999} + m_Children: + - {fileID: 6099821193780923248} + m_Father: {fileID: 9027401759568121703} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: -28.064709, y: 1.090861, z: -4.6927133} +--- !u!1 &2021755809698711476 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1821246363959634179} + m_Layer: 3 + m_Name: mixamorig:LeftHandIndex3 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &2024321854237316635 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 9027401759568121703} + m_Layer: 3 + m_Name: mixamorig:LeftUpLeg + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2034393277314198108 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4926744772574748722} + m_LocalRotation: {x: 0.00000008146035, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 1.2791204, z: 0.22505379} + m_LocalScale: {x: 0.26551303, y: 0.265513, z: 0.265513} + m_Children: [] + m_Father: {fileID: 275152778} + m_RootOrder: 10 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!137 &2051882659987897662 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1427359144495133728} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 60c2f0e0aaa8f8d4e9d23d7e3768653b, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: -6474352736570428186, guid: 82a2914d8f86c62488456950c8330e38, type: 3} + m_Bones: + - {fileID: 38101693975860110} + - {fileID: 49447877241787944} + - {fileID: 3786663924149775962} + - {fileID: 2004308958918841471} + - {fileID: 1589130315589705887} + - {fileID: 7744703493503326207} + - {fileID: 668006632431737210} + - {fileID: 2561657633566861447} + - {fileID: 8465185068757438057} + - {fileID: 5869159519349434605} + - {fileID: 3772228501800882099} + - {fileID: 3234227603773615720} + - {fileID: 8561193508876723632} + - {fileID: 5936567709178112463} + - {fileID: 7211998777874271499} + - {fileID: 2892780539131983700} + - {fileID: 404684814557235294} + - {fileID: 1449764107462391107} + - {fileID: 6381046285341082860} + - {fileID: 1821246363959634179} + - {fileID: 8568605348352331875} + - {fileID: 5793013738874131837} + - {fileID: 3963437824181322287} + - {fileID: 8283759473473236767} + - {fileID: 6376361113423677020} + - {fileID: 2289493134365204732} + - {fileID: 789201071149236897} + - {fileID: 632919408645977011} + - {fileID: 8362226126444815203} + - {fileID: 6713046130555606024} + - {fileID: 1736390053318990959} + - {fileID: 2647666789508465143} + - {fileID: 1245275053774927467} + - {fileID: 7842801111992391080} + - {fileID: 5518930826931131428} + - {fileID: 650411999670426853} + - {fileID: 2827324758456024331} + - {fileID: 4625820438220060375} + - {fileID: 4935914161791213493} + - {fileID: 3097883888289559569} + - {fileID: 2557290871724805380} + - {fileID: 5130141285490113977} + - {fileID: 1029178351255460819} + - {fileID: 4830960991135789399} + - {fileID: 3609869344849030578} + - {fileID: 7702342598346179876} + - {fileID: 8263932002272948002} + - {fileID: 46986526619788425} + - {fileID: 4038941365384921987} + - {fileID: 9027401759568121703} + - {fileID: 2006971927199184871} + - {fileID: 6099821193780923248} + - {fileID: 6095549731309093963} + - {fileID: 4281225623967377215} + - {fileID: 3347735418752596719} + - {fileID: 5460221536597941935} + - {fileID: 7720914278482711054} + - {fileID: 4523608188793301927} + - {fileID: 3119608742257546226} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 38101693975860110} + m_AABB: + m_Center: {x: 0, y: 0.0024858133, z: -0.00003194576} + m_Extent: {x: 0.006243073, y: 0.0030128376, z: 0.004455878} + m_DirtyAABB: 0 +--- !u!1 &2127583716737487292 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1589130315589705887} + m_Layer: 3 + m_Name: mixamorig:Neck + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &2229421803603254837 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1236401970514064221} + - component: {fileID: 3490471807985950670} + m_Layer: 3 + m_Name: ear_joint_low + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &2234763685028092065 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6095549731309093963} + m_Layer: 3 + m_Name: mixamorig:LeftToeBase + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &2254620651537449810 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8447345115298737374} + - component: {fileID: 8284594815547491912} + m_Layer: 3 + m_Name: ankle_low + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2289493134365204732 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8806910139672723256} + m_LocalRotation: {x: 0.0489316, y: 0.016163496, z: -0.040470988, w: 0.997851} + m_LocalPosition: {x: -0.0020207374, y: 0.0049411217, z: -0.00019330285} + m_LocalScale: {x: 0.99999994, y: 0.99999994, z: 0.9999999} + m_Children: + - {fileID: 789201071149236897} + m_Father: {fileID: 8561193508876723632} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 72.08836, y: 15.626418, z: 8.623369} +--- !u!4 &2342561958520740612 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6389563099951942471} + m_LocalRotation: {x: -0.7071068, y: -2.6341795e-10, z: 1.0536695e-10, w: 0.7071067} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 28, y: 28, z: 28} + m_Children: [] + m_Father: {fileID: 275152778} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!4 &2370684232349202779 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4109878905305283364} + 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_Children: [] + m_Father: {fileID: 5723820410734444169} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &2416105712853072794 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5597511937187855927} + - component: {fileID: 5050214706237934646} + m_Layer: 3 + m_Name: finger_pinky_low + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!137 &2434832479460746123 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 170941459908680804} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 60c2f0e0aaa8f8d4e9d23d7e3768653b, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: -3749580715262166950, guid: 82a2914d8f86c62488456950c8330e38, type: 3} + m_Bones: + - {fileID: 38101693975860110} + - {fileID: 49447877241787944} + - {fileID: 3786663924149775962} + - {fileID: 2004308958918841471} + - {fileID: 1589130315589705887} + - {fileID: 7744703493503326207} + - {fileID: 668006632431737210} + - {fileID: 2561657633566861447} + - {fileID: 8465185068757438057} + - {fileID: 5869159519349434605} + - {fileID: 3772228501800882099} + - {fileID: 3234227603773615720} + - {fileID: 8561193508876723632} + - {fileID: 5936567709178112463} + - {fileID: 7211998777874271499} + - {fileID: 2892780539131983700} + - {fileID: 404684814557235294} + - {fileID: 1449764107462391107} + - {fileID: 6381046285341082860} + - {fileID: 1821246363959634179} + - {fileID: 8568605348352331875} + - {fileID: 5793013738874131837} + - {fileID: 3963437824181322287} + - {fileID: 8283759473473236767} + - {fileID: 6376361113423677020} + - {fileID: 2289493134365204732} + - {fileID: 789201071149236897} + - {fileID: 632919408645977011} + - {fileID: 8362226126444815203} + - {fileID: 6713046130555606024} + - {fileID: 1736390053318990959} + - {fileID: 2647666789508465143} + - {fileID: 1245275053774927467} + - {fileID: 7842801111992391080} + - {fileID: 5518930826931131428} + - {fileID: 650411999670426853} + - {fileID: 2827324758456024331} + - {fileID: 4625820438220060375} + - {fileID: 4935914161791213493} + - {fileID: 3097883888289559569} + - {fileID: 2557290871724805380} + - {fileID: 5130141285490113977} + - {fileID: 1029178351255460819} + - {fileID: 4830960991135789399} + - {fileID: 3609869344849030578} + - {fileID: 7702342598346179876} + - {fileID: 8263932002272948002} + - {fileID: 46986526619788425} + - {fileID: 4038941365384921987} + - {fileID: 9027401759568121703} + - {fileID: 2006971927199184871} + - {fileID: 6099821193780923248} + - {fileID: 6095549731309093963} + - {fileID: 4281225623967377215} + - {fileID: 3347735418752596719} + - {fileID: 5460221536597941935} + - {fileID: 7720914278482711054} + - {fileID: 4523608188793301927} + - {fileID: 3119608742257546226} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 38101693975860110} + m_AABB: + m_Center: {x: 4.656613e-10, y: 0.029559832, z: -0.0013150079} + m_Extent: {x: 0.01487066, y: 0.0059262114, z: 0.003893904} + m_DirtyAABB: 0 +--- !u!4 &2474195207096458730 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4933395398353100360} + m_LocalRotation: {x: -0.7071068, y: 5.301282e-10, z: 6.338494e-10, w: 0.7071067} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 28, y: 28, z: 28} + m_Children: [] + m_Father: {fileID: 275152778} + m_RootOrder: 4 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &2542026527552703885 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6099821193780923248} + m_Layer: 3 + m_Name: mixamorig:LeftFoot + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2557290871724805380 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 637568496476554880} + m_LocalRotation: {x: 0.04448823, y: -0.0000003572738, z: 0.000000017854878, w: 0.9990099} + m_LocalPosition: {x: -1.4183114e-10, y: 0.0008978241, z: 0.0000000035508958} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 3097883888289559569} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 5.0996995, y: 0.0000018534456, z: -0.0000031581092} +--- !u!4 &2561657633566861447 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 9000909490783435343} + m_LocalRotation: {x: 0.4050642, y: -0.45798048, z: 0.5935722, w: 0.5233059} + m_LocalPosition: {x: -0.01142189, y: 0.008629899, z: -0.0021856788} + m_LocalScale: {x: 1.0000001, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 7744703493503326207} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 75.38284, y: 0.3503092, z: 97.47056} +--- !u!1 &2583774797951760557 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 650411999670426853} + m_Layer: 3 + m_Name: mixamorig:RightHandThumb3 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2647666789508465143 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3938096646902384243} + m_LocalRotation: {x: -0.02349268, y: -0.011118597, z: 0.031047342, w: 0.99917996} + m_LocalPosition: {x: -3.7252902e-11, y: 0.006685836, z: 5.3085386e-10} + m_LocalScale: {x: 1, y: 0.99999994, z: 0.99999994} + m_Children: + - {fileID: 1245275053774927467} + m_Father: {fileID: 1736390053318990959} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 5.2191296, y: 4.7784057, z: 98.480576} +--- !u!1 &2718572270128479313 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4523608188793301927} + m_Layer: 3 + m_Name: mixamorig:RightToeBase + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!137 &2816789308805098538 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8822005322847335367} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 60c2f0e0aaa8f8d4e9d23d7e3768653b, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: 7762989289229432340, guid: 82a2914d8f86c62488456950c8330e38, type: 3} + m_Bones: + - {fileID: 38101693975860110} + - {fileID: 49447877241787944} + - {fileID: 3786663924149775962} + - {fileID: 2004308958918841471} + - {fileID: 1589130315589705887} + - {fileID: 7744703493503326207} + - {fileID: 668006632431737210} + - {fileID: 2561657633566861447} + - {fileID: 8465185068757438057} + - {fileID: 5869159519349434605} + - {fileID: 3772228501800882099} + - {fileID: 3234227603773615720} + - {fileID: 8561193508876723632} + - {fileID: 5936567709178112463} + - {fileID: 7211998777874271499} + - {fileID: 2892780539131983700} + - {fileID: 404684814557235294} + - {fileID: 1449764107462391107} + - {fileID: 6381046285341082860} + - {fileID: 1821246363959634179} + - {fileID: 8568605348352331875} + - {fileID: 5793013738874131837} + - {fileID: 3963437824181322287} + - {fileID: 8283759473473236767} + - {fileID: 6376361113423677020} + - {fileID: 2289493134365204732} + - {fileID: 789201071149236897} + - {fileID: 632919408645977011} + - {fileID: 8362226126444815203} + - {fileID: 6713046130555606024} + - {fileID: 1736390053318990959} + - {fileID: 2647666789508465143} + - {fileID: 1245275053774927467} + - {fileID: 7842801111992391080} + - {fileID: 5518930826931131428} + - {fileID: 650411999670426853} + - {fileID: 2827324758456024331} + - {fileID: 4625820438220060375} + - {fileID: 4935914161791213493} + - {fileID: 3097883888289559569} + - {fileID: 2557290871724805380} + - {fileID: 5130141285490113977} + - {fileID: 1029178351255460819} + - {fileID: 4830960991135789399} + - {fileID: 3609869344849030578} + - {fileID: 7702342598346179876} + - {fileID: 8263932002272948002} + - {fileID: 46986526619788425} + - {fileID: 4038941365384921987} + - {fileID: 9027401759568121703} + - {fileID: 2006971927199184871} + - {fileID: 6099821193780923248} + - {fileID: 6095549731309093963} + - {fileID: 4281225623967377215} + - {fileID: 3347735418752596719} + - {fileID: 5460221536597941935} + - {fileID: 7720914278482711054} + - {fileID: 4523608188793301927} + - {fileID: 3119608742257546226} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 38101693975860110} + m_AABB: + m_Center: {x: 9.313226e-10, y: 0.014146086, z: 0.0007876102} + m_Extent: {x: 0.03044666, y: 0.0013476508, z: 0.0013725013} + m_DirtyAABB: 0 +--- !u!4 &2827324758456024331 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7601808759760586489} + m_LocalRotation: {x: 0.02006723, y: -0.04093222, z: -0.014504653, w: 0.9988551} + m_LocalPosition: {x: -8.9406965e-10, y: 0.0024554105, z: 2.2351741e-10} + m_LocalScale: {x: 1, y: 1, z: 1.0000001} + m_Children: [] + m_Father: {fileID: 650411999670426853} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 2.2293863, y: -4.727418, z: -1.7559186} +--- !u!4 &2892780539131983700 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 255314166167999145} + m_LocalRotation: {x: 0.0066927033, y: -0.0435071, z: -0.034402333, w: 0.99843824} + m_LocalPosition: {x: 4.4703483e-10, y: 0.0026198607, z: 0.0000000010430813} + m_LocalScale: {x: 1, y: 0.99999994, z: 1} + m_Children: + - {fileID: 404684814557235294} + m_Father: {fileID: 7211998777874271499} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: -8.685145, y: -6.023947, z: -6.2341537} +--- !u!33 &2945864370931266922 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 622707324964927136} + m_Mesh: {fileID: 8245426573784773463, guid: 6ecf4ed5e905303488757bf045c01010, type: 3} +--- !u!4 &2970148366285955608 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8822005322847335367} + m_LocalRotation: {x: -0.7071068, y: -0.0000000050312807, z: -0.0000000020810018, w: 0.7071067} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 28, y: 28, z: 28} + m_Children: [] + m_Father: {fileID: 275152778} + m_RootOrder: 5 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!4 &3097883888289559569 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3539654176230995838} + m_LocalRotation: {x: -1.1641565e-10, y: 0.00000035806318, z: 8.458274e-10, w: 1} + m_LocalPosition: {x: -1.6977413e-10, y: 0.0021414177, z: 0.000000002316954} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 2557290871724805380} + m_Father: {fileID: 4935914161791213493} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 29.646189, y: -0.9657407, z: -3.6481032} +--- !u!4 &3107201403938988194 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1369469842245590497} + m_LocalRotation: {x: -0.7071068, y: -0.0000000050312807, z: -0.0000000020810018, w: 0.7071067} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 28, y: 28, z: 28} + m_Children: [] + m_Father: {fileID: 275152778} + m_RootOrder: 24 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!4 &3119608742257546226 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6887357796054244344} + m_LocalRotation: {x: 0.045736898, y: -0.039432693, z: -0.07275269, w: 0.9955201} + m_LocalPosition: {x: -1.6152625e-10, y: 0.0023627593, z: 4.842877e-10} + m_LocalScale: {x: 1, y: 0.99999994, z: 1} + m_Children: [] + m_Father: {fileID: 4523608188793301927} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 4.8948174, y: -4.903599, z: -8.569193} +--- !u!1 &3162565413196758898 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5818578454247393616} + - component: {fileID: 6948656990519213483} + - component: {fileID: 7810474265727998077} + m_Layer: 3 + m_Name: Cylinder006 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &3200635893821158042 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 668006632431737210} + m_Layer: 3 + m_Name: mixamorig:HeadTop_End + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3234227603773615720 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7473569449510357910} + m_LocalRotation: {x: -0.02349268, y: 0.011118597, z: -0.031047342, w: 0.99917996} + m_LocalPosition: {x: 3.7252902e-11, y: 0.006685836, z: 5.3085386e-10} + m_LocalScale: {x: 1, y: 0.99999994, z: 0.99999994} + m_Children: + - {fileID: 8561193508876723632} + m_Father: {fileID: 3772228501800882099} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 4.7804193, y: -1.765132, z: -64.893845} +--- !u!4 &3347735418752596719 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7085054738301409744} + m_LocalRotation: {x: -0.00023406364, y: -0.008087971, z: 0.99964195, w: 0.025505608} + m_LocalPosition: {x: 0.0046964264, y: -0.000097808836, z: 0.00006266594} + m_LocalScale: {x: 1.0000329, y: 1, z: 1.0000032} + m_Children: + - {fileID: 5460221536597941935} + m_Father: {fileID: 38101693975860110} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 12.203392, y: -4.7543273, z: -175.44138} +--- !u!1 &3356505892661325547 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3963437824181322287} + m_Layer: 3 + m_Name: mixamorig:LeftHandMiddle2 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &3465011011716791874 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7720914278482711054} + m_Layer: 3 + m_Name: mixamorig:RightFoot + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3481275315209732022 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1427359144495133728} + m_LocalRotation: {x: -0.7071068, y: 8.4295027e-10, z: -8.429241e-10, w: 0.7071067} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 28, y: 28, z: 28} + m_Children: [] + m_Father: {fileID: 275152778} + m_RootOrder: 16 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!137 &3490471807985950670 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2229421803603254837} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 60c2f0e0aaa8f8d4e9d23d7e3768653b, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: -1984047856435682999, guid: 82a2914d8f86c62488456950c8330e38, type: 3} + m_Bones: + - {fileID: 38101693975860110} + - {fileID: 49447877241787944} + - {fileID: 3786663924149775962} + - {fileID: 2004308958918841471} + - {fileID: 1589130315589705887} + - {fileID: 7744703493503326207} + - {fileID: 668006632431737210} + - {fileID: 2561657633566861447} + - {fileID: 8465185068757438057} + - {fileID: 5869159519349434605} + - {fileID: 3772228501800882099} + - {fileID: 3234227603773615720} + - {fileID: 8561193508876723632} + - {fileID: 5936567709178112463} + - {fileID: 7211998777874271499} + - {fileID: 2892780539131983700} + - {fileID: 404684814557235294} + - {fileID: 1449764107462391107} + - {fileID: 6381046285341082860} + - {fileID: 1821246363959634179} + - {fileID: 8568605348352331875} + - {fileID: 5793013738874131837} + - {fileID: 3963437824181322287} + - {fileID: 8283759473473236767} + - {fileID: 6376361113423677020} + - {fileID: 2289493134365204732} + - {fileID: 789201071149236897} + - {fileID: 632919408645977011} + - {fileID: 8362226126444815203} + - {fileID: 6713046130555606024} + - {fileID: 1736390053318990959} + - {fileID: 2647666789508465143} + - {fileID: 1245275053774927467} + - {fileID: 7842801111992391080} + - {fileID: 5518930826931131428} + - {fileID: 650411999670426853} + - {fileID: 2827324758456024331} + - {fileID: 4625820438220060375} + - {fileID: 4935914161791213493} + - {fileID: 3097883888289559569} + - {fileID: 2557290871724805380} + - {fileID: 5130141285490113977} + - {fileID: 1029178351255460819} + - {fileID: 4830960991135789399} + - {fileID: 3609869344849030578} + - {fileID: 7702342598346179876} + - {fileID: 8263932002272948002} + - {fileID: 46986526619788425} + - {fileID: 4038941365384921987} + - {fileID: 9027401759568121703} + - {fileID: 2006971927199184871} + - {fileID: 6099821193780923248} + - {fileID: 6095549731309093963} + - {fileID: 4281225623967377215} + - {fileID: 3347735418752596719} + - {fileID: 5460221536597941935} + - {fileID: 7720914278482711054} + - {fileID: 4523608188793301927} + - {fileID: 3119608742257546226} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 38101693975860110} + m_AABB: + m_Center: {x: 0, y: 0.027525559, z: -0.0011475475} + m_Extent: {x: 0.014168416, y: 0.0027696546, z: 0.0029953711} + m_DirtyAABB: 0 +--- !u!1 &3539654176230995838 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3097883888289559569} + m_Layer: 3 + m_Name: mixamorig:RightHandIndex3 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &3541754001687102235 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 539745478044430600} + - component: {fileID: 7635726065660501106} + - component: {fileID: 4757836857232311756} + - component: {fileID: 4757836857232311757} + - component: {fileID: 3541754001687102237} + - component: {fileID: 3541754001687102236} + - component: {fileID: 3541754001687102238} + m_Layer: 3 + m_Name: Jammo_Player + m_TagString: Player + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &3541754001687102236 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3541754001687102235} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fff0960ef4ea6e04eac66b4a7fd2189d, type: 3} + m_Name: + m_EditorClassIdentifier: + m_RigLayers: + - m_Rig: {fileID: 497905164} + m_Active: 1 + - m_Rig: {fileID: 448196860} + m_Active: 1 + - m_Rig: {fileID: 1011058240} + m_Active: 1 + - m_Rig: {fileID: 1404392786} + m_Active: 1 + - m_Rig: {fileID: 42140254} + m_Active: 1 + - m_Rig: {fileID: 508308509} + m_Active: 1 + - m_Rig: {fileID: 708908356} + m_Active: 1 + m_Effectors: [] +--- !u!114 &3541754001687102237 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3541754001687102235} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: b2d8418b0b9634b1892b0268dd9c2743, type: 3} + m_Name: + m_EditorClassIdentifier: + boneShape: 1 + drawBones: 1 + drawTripods: 0 + boneSize: 0.01 + tripodSize: 1 + boneColor: {r: 1, g: 1, b: 1, a: 0.5} + m_Transforms: + - {fileID: 38101693975860110} + - {fileID: 9027401759568121703} + - {fileID: 3347735418752596719} + - {fileID: 49447877241787944} + - {fileID: 3786663924149775962} + - {fileID: 2004308958918841471} + - {fileID: 1589130315589705887} + - {fileID: 7744703493503326207} + - {fileID: 668006632431737210} + - {fileID: 2561657633566861447} + - {fileID: 8465185068757438057} + - {fileID: 5869159519349434605} + - {fileID: 3772228501800882099} + - {fileID: 3234227603773615720} + - {fileID: 8561193508876723632} + - {fileID: 5936567709178112463} + - {fileID: 7211998777874271499} + - {fileID: 2892780539131983700} + - {fileID: 404684814557235294} + - {fileID: 1449764107462391107} + - {fileID: 6381046285341082860} + - {fileID: 1821246363959634179} + - {fileID: 8568605348352331875} + - {fileID: 5793013738874131837} + - {fileID: 3963437824181322287} + - {fileID: 8283759473473236767} + - {fileID: 6376361113423677020} + - {fileID: 2289493134365204732} + - {fileID: 789201071149236897} + - {fileID: 632919408645977011} + - {fileID: 8362226126444815203} + - {fileID: 6713046130555606024} + - {fileID: 1736390053318990959} + - {fileID: 2647666789508465143} + - {fileID: 1245275053774927467} + - {fileID: 7842801111992391080} + - {fileID: 5518930826931131428} + - {fileID: 650411999670426853} + - {fileID: 2827324758456024331} + - {fileID: 4625820438220060375} + - {fileID: 4935914161791213493} + - {fileID: 3097883888289559569} + - {fileID: 2557290871724805380} + - {fileID: 5130141285490113977} + - {fileID: 1029178351255460819} + - {fileID: 4830960991135789399} + - {fileID: 3609869344849030578} + - {fileID: 7702342598346179876} + - {fileID: 8263932002272948002} + - {fileID: 46986526619788425} + - {fileID: 4038941365384921987} + - {fileID: 2006971927199184871} + - {fileID: 6099821193780923248} + - {fileID: 6095549731309093963} + - {fileID: 4281225623967377215} + - {fileID: 5460221536597941935} + - {fileID: 7720914278482711054} + - {fileID: 4523608188793301927} + - {fileID: 3119608742257546226} +--- !u!114 &3541754001687102238 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3541754001687102235} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: bfb06fe47b1efa9418445b7194ad6456, type: 3} + m_Name: + m_EditorClassIdentifier: + inkParticle: {fileID: 949289641} + extraParticle: {fileID: 276323219} + ikHandlers: + - {fileID: 584536252} + - {fileID: 322790082} + - {fileID: 1428345787} + - {fileID: 1042188897} + splatGun: {fileID: 1220795588} + splatGunNozzle: {fileID: 1132077972659446630} +--- !u!4 &3609869344849030578 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4843127566726714991} + m_LocalRotation: {x: 0.010558283, y: 0.002861043, z: 0.0028609226, w: 0.9999361} + m_LocalPosition: {x: -0, y: 0.00075213314, z: -2.5785993e-10} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4830960991135789399} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 1.2089994, y: 0.331392, z: 0.33137217} +--- !u!4 &3772228501800882099 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7439667444361826450} + m_LocalRotation: {x: 0.0856364, y: -0.006608644, z: 0.010808363, w: 0.9962459} + m_LocalPosition: {x: 9.3132255e-12, y: 0.0015929624, z: 7.4505804e-11} + m_LocalScale: {x: 0.9999999, y: 0.99999994, z: 1} + m_Children: + - {fileID: 3234227603773615720} + m_Father: {fileID: 5869159519349434605} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 68.24664, y: 40.073177, z: 1.0048689} +--- !u!4 &3786663924149775962 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8537379886232157923} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0, y: 0.0015119934, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 2004308958918841471} + m_Father: {fileID: 49447877241787944} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 16.41346, y: 0.1278607, z: 0.7829991} +--- !u!1 &3921334144253840192 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4830960991135789399} + m_Layer: 3 + m_Name: mixamorig:RightHandMiddle3 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &3938096646902384243 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2647666789508465143} + m_Layer: 3 + m_Name: mixamorig:RightForeArm + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3963437824181322287 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3356505892661325547} + m_LocalRotation: {x: 0.084491365, y: -0.013635955, z: -0.012378372, w: 0.996254} + m_LocalPosition: {x: 7.4505804e-11, y: 0.00260657, z: 0.0000000028708018} + m_LocalScale: {x: 0.99999994, y: 0.9999999, z: 0.99999994} + m_Children: + - {fileID: 8283759473473236767} + m_Father: {fileID: 5793013738874131837} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 64.12838, y: 8.35785, z: 15.740139} +--- !u!4 &4038941365384921987 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 9016668082198405949} + m_LocalRotation: {x: 0.044519458, y: 0.00000011909107, z: -0.0000000033611263, w: 0.99900854} + m_LocalPosition: {x: 3.235408e-10, y: 0.0009765623, z: -5.703486e-10} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 46986526619788425} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 5.1032014, y: 0.000009438974, z: -0.000010595659} +--- !u!1 &4109878905305283364 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2370684232349202779} + - component: {fileID: 5165746311254560261} + - component: {fileID: 8981861724887187931} + m_Layer: 3 + m_Name: Cylinder002 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &4155757067688362347 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8231537208663976650} + m_Layer: 3 + m_Name: jammo_mixamo_rig + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &4225218658054379477 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4232395462691045923} + - component: {fileID: 1056355096749552683} + m_Layer: 3 + m_Name: finger_thumb_low + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!137 &4228262178037843591 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4628807416111532914} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 60c2f0e0aaa8f8d4e9d23d7e3768653b, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: 528271467952815888, guid: 82a2914d8f86c62488456950c8330e38, type: 3} + m_Bones: + - {fileID: 38101693975860110} + - {fileID: 49447877241787944} + - {fileID: 3786663924149775962} + - {fileID: 2004308958918841471} + - {fileID: 1589130315589705887} + - {fileID: 7744703493503326207} + - {fileID: 668006632431737210} + - {fileID: 2561657633566861447} + - {fileID: 8465185068757438057} + - {fileID: 5869159519349434605} + - {fileID: 3772228501800882099} + - {fileID: 3234227603773615720} + - {fileID: 8561193508876723632} + - {fileID: 5936567709178112463} + - {fileID: 7211998777874271499} + - {fileID: 2892780539131983700} + - {fileID: 404684814557235294} + - {fileID: 1449764107462391107} + - {fileID: 6381046285341082860} + - {fileID: 1821246363959634179} + - {fileID: 8568605348352331875} + - {fileID: 5793013738874131837} + - {fileID: 3963437824181322287} + - {fileID: 8283759473473236767} + - {fileID: 6376361113423677020} + - {fileID: 2289493134365204732} + - {fileID: 789201071149236897} + - {fileID: 632919408645977011} + - {fileID: 8362226126444815203} + - {fileID: 6713046130555606024} + - {fileID: 1736390053318990959} + - {fileID: 2647666789508465143} + - {fileID: 1245275053774927467} + - {fileID: 7842801111992391080} + - {fileID: 5518930826931131428} + - {fileID: 650411999670426853} + - {fileID: 2827324758456024331} + - {fileID: 4625820438220060375} + - {fileID: 4935914161791213493} + - {fileID: 3097883888289559569} + - {fileID: 2557290871724805380} + - {fileID: 5130141285490113977} + - {fileID: 1029178351255460819} + - {fileID: 4830960991135789399} + - {fileID: 3609869344849030578} + - {fileID: 7702342598346179876} + - {fileID: 8263932002272948002} + - {fileID: 46986526619788425} + - {fileID: 4038941365384921987} + - {fileID: 9027401759568121703} + - {fileID: 2006971927199184871} + - {fileID: 6099821193780923248} + - {fileID: 6095549731309093963} + - {fileID: 4281225623967377215} + - {fileID: 3347735418752596719} + - {fileID: 5460221536597941935} + - {fileID: 7720914278482711054} + - {fileID: 4523608188793301927} + - {fileID: 3119608742257546226} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 38101693975860110} + m_AABB: + m_Center: {x: 4.656613e-10, y: 0.01328192, z: -0.0015298394} + m_Extent: {x: 0.014194744, y: 0.0036940677, z: 0.002848199} + m_DirtyAABB: 0 +--- !u!4 &4232395462691045923 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4225218658054379477} + m_LocalRotation: {x: -0.7071068, y: 0.000000004214686, z: -0.0000000016858759, w: 0.7071067} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 28, y: 28, z: 28} + m_Children: [] + m_Father: {fileID: 275152778} + m_RootOrder: 8 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &4243624145117781529 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6599243431123627274} + - component: {fileID: 1469149459923311127} + m_Layer: 3 + m_Name: shoulder_low + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &4252157927006157951 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7211998777874271499} + m_Layer: 3 + m_Name: mixamorig:LeftHandThumb2 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &4275852571349641358 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5460221536597941935} + m_Layer: 3 + m_Name: mixamorig:RightLeg + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4281225623967377215 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4628757145954770741} + m_LocalRotation: {x: 0.045736898, y: 0.039432693, z: 0.07275269, w: 0.9955201} + m_LocalPosition: {x: 1.6152625e-10, y: 0.0023627593, z: 4.842877e-10} + m_LocalScale: {x: 1, y: 0.99999994, z: 1} + m_Children: [] + m_Father: {fileID: 6095549731309093963} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 4.8948174, y: 4.903599, z: 8.569193} +--- !u!1 &4408420577911530385 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1132077972659446630} + - component: {fileID: 8308698745039432427} + - component: {fileID: 8459402664625560588} + m_Layer: 3 + m_Name: Nozzle + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4444495002138158157 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 170941459908680804} + m_LocalRotation: {x: -0.7071068, y: -0, z: -0, w: 0.7071067} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 28, y: 28, z: 28} + m_Children: [] + m_Father: {fileID: 275152778} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &4483209743433825032 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8149820908250722595} + - component: {fileID: 8613443241758849405} + m_Layer: 3 + m_Name: heels_low + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4494418218027586743 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1861397999525669211} + m_LocalRotation: {x: -0.7071068, y: 8.4295027e-10, z: -8.429241e-10, w: 0.7071067} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 28, y: 28, z: 28} + m_Children: [] + m_Father: {fileID: 275152778} + m_RootOrder: 22 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!137 &4511302626613347861 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7047284500577548532} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 60c2f0e0aaa8f8d4e9d23d7e3768653b, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: 5773629445030022820, guid: 82a2914d8f86c62488456950c8330e38, type: 3} + m_Bones: + - {fileID: 38101693975860110} + - {fileID: 49447877241787944} + - {fileID: 3786663924149775962} + - {fileID: 2004308958918841471} + - {fileID: 1589130315589705887} + - {fileID: 7744703493503326207} + - {fileID: 668006632431737210} + - {fileID: 2561657633566861447} + - {fileID: 8465185068757438057} + - {fileID: 5869159519349434605} + - {fileID: 3772228501800882099} + - {fileID: 3234227603773615720} + - {fileID: 8561193508876723632} + - {fileID: 5936567709178112463} + - {fileID: 7211998777874271499} + - {fileID: 2892780539131983700} + - {fileID: 404684814557235294} + - {fileID: 1449764107462391107} + - {fileID: 6381046285341082860} + - {fileID: 1821246363959634179} + - {fileID: 8568605348352331875} + - {fileID: 5793013738874131837} + - {fileID: 3963437824181322287} + - {fileID: 8283759473473236767} + - {fileID: 6376361113423677020} + - {fileID: 2289493134365204732} + - {fileID: 789201071149236897} + - {fileID: 632919408645977011} + - {fileID: 8362226126444815203} + - {fileID: 6713046130555606024} + - {fileID: 1736390053318990959} + - {fileID: 2647666789508465143} + - {fileID: 1245275053774927467} + - {fileID: 7842801111992391080} + - {fileID: 5518930826931131428} + - {fileID: 650411999670426853} + - {fileID: 2827324758456024331} + - {fileID: 4625820438220060375} + - {fileID: 4935914161791213493} + - {fileID: 3097883888289559569} + - {fileID: 2557290871724805380} + - {fileID: 5130141285490113977} + - {fileID: 1029178351255460819} + - {fileID: 4830960991135789399} + - {fileID: 3609869344849030578} + - {fileID: 7702342598346179876} + - {fileID: 8263932002272948002} + - {fileID: 46986526619788425} + - {fileID: 4038941365384921987} + - {fileID: 9027401759568121703} + - {fileID: 2006971927199184871} + - {fileID: 6099821193780923248} + - {fileID: 6095549731309093963} + - {fileID: 4281225623967377215} + - {fileID: 3347735418752596719} + - {fileID: 5460221536597941935} + - {fileID: 7720914278482711054} + - {fileID: 4523608188793301927} + - {fileID: 3119608742257546226} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 38101693975860110} + m_AABB: + m_Center: {x: 0, y: 0.035298243, z: -0.00046736095} + m_Extent: {x: 0.0034444488, y: 0.005933445, z: 0.01150519} + m_DirtyAABB: 0 +--- !u!4 &4523608188793301927 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2718572270128479313} + m_LocalRotation: {x: 0.16970277, y: -0.028958654, z: 0.12204973, w: 0.9774795} + m_LocalPosition: {x: 5.937181e-11, y: 0.0059650694, z: 2.9802322e-10} + m_LocalScale: {x: 0.9999999, y: 1, z: 0.99999994} + m_Children: + - {fileID: 3119608742257546226} + m_Father: {fileID: 7720914278482711054} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 19.826118, y: -0.92552304, z: 14.073592} +--- !u!1 &4608544476943968397 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6344036241701769032} + - component: {fileID: 8103208097892180035} + m_Layer: 3 + m_Name: shin_low + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4625820438220060375 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 9211191337072355745} + m_LocalRotation: {x: 0.025758917, y: -0.022072563, z: 0.034884524, w: 0.9988155} + m_LocalPosition: {x: -0.0025373795, y: 0.0046996134, z: -0.00022197569} + m_LocalScale: {x: 0.99999994, y: 0.9999999, z: 1} + m_Children: + - {fileID: 4935914161791213493} + m_Father: {fileID: 1245275053774927467} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 12.111201, y: -2.4727466, z: 4.8269415} +--- !u!1 &4628757145954770741 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4281225623967377215} + m_Layer: 3 + m_Name: mixamorig:LeftToe_End + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &4628807416111532914 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4977372144985887714} + - component: {fileID: 4228262178037843591} + m_Layer: 3 + m_Name: upperarm_low + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &4640897207642432437 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7690150860515383070} + - component: {fileID: 4662889940464884653} + m_Layer: 3 + m_Name: screw_low + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!137 &4662889940464884653 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4640897207642432437} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 60c2f0e0aaa8f8d4e9d23d7e3768653b, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: -6982626855310005469, guid: 82a2914d8f86c62488456950c8330e38, type: 3} + m_Bones: + - {fileID: 38101693975860110} + - {fileID: 49447877241787944} + - {fileID: 3786663924149775962} + - {fileID: 2004308958918841471} + - {fileID: 1589130315589705887} + - {fileID: 7744703493503326207} + - {fileID: 668006632431737210} + - {fileID: 2561657633566861447} + - {fileID: 8465185068757438057} + - {fileID: 5869159519349434605} + - {fileID: 3772228501800882099} + - {fileID: 3234227603773615720} + - {fileID: 8561193508876723632} + - {fileID: 5936567709178112463} + - {fileID: 7211998777874271499} + - {fileID: 2892780539131983700} + - {fileID: 404684814557235294} + - {fileID: 1449764107462391107} + - {fileID: 6381046285341082860} + - {fileID: 1821246363959634179} + - {fileID: 8568605348352331875} + - {fileID: 5793013738874131837} + - {fileID: 3963437824181322287} + - {fileID: 8283759473473236767} + - {fileID: 6376361113423677020} + - {fileID: 2289493134365204732} + - {fileID: 789201071149236897} + - {fileID: 632919408645977011} + - {fileID: 8362226126444815203} + - {fileID: 6713046130555606024} + - {fileID: 1736390053318990959} + - {fileID: 2647666789508465143} + - {fileID: 1245275053774927467} + - {fileID: 7842801111992391080} + - {fileID: 5518930826931131428} + - {fileID: 650411999670426853} + - {fileID: 2827324758456024331} + - {fileID: 4625820438220060375} + - {fileID: 4935914161791213493} + - {fileID: 3097883888289559569} + - {fileID: 2557290871724805380} + - {fileID: 5130141285490113977} + - {fileID: 1029178351255460819} + - {fileID: 4830960991135789399} + - {fileID: 3609869344849030578} + - {fileID: 7702342598346179876} + - {fileID: 8263932002272948002} + - {fileID: 46986526619788425} + - {fileID: 4038941365384921987} + - {fileID: 9027401759568121703} + - {fileID: 2006971927199184871} + - {fileID: 6099821193780923248} + - {fileID: 6095549731309093963} + - {fileID: 4281225623967377215} + - {fileID: 3347735418752596719} + - {fileID: 5460221536597941935} + - {fileID: 7720914278482711054} + - {fileID: 4523608188793301927} + - {fileID: 3119608742257546226} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 38101693975860110} + m_AABB: + m_Center: {x: 0.000009047333, y: 0.010750489, z: 0.0039340025} + m_Extent: {x: 0.001538314, y: 0.0015559513, z: 0.0006459155} + m_DirtyAABB: 0 +--- !u!1 &4730361222209491902 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 655058852357636101} + - component: {fileID: 8001705484166854532} + - component: {fileID: 8339146439225600106} + m_Layer: 3 + m_Name: Line001 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!143 &4757836857232311756 +CharacterController: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3541754001687102235} + m_Material: {fileID: 0} + m_IsTrigger: 0 + m_Enabled: 1 + serializedVersion: 2 + m_Height: 1.8 + m_Radius: 0.5 + m_SlopeLimit: 45 + m_StepOffset: 0.3 + m_SkinWidth: 0.08 + m_MinMoveDistance: 0.001 + m_Center: {x: 0, y: 0.98, z: 0} +--- !u!114 &4757836857232311757 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3541754001687102235} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: caa9f165e2b4f1a4f9522501717c095d, type: 3} + m_Name: + m_EditorClassIdentifier: + Velocity: 7.5 + blockRotationPlayer: 0 + desiredRotationSpeed: 0.3 + Speed: 0 + allowPlayerRotation: 0.1 + HorizontalAnimSmoothTime: 0.2 + VerticalAnimTime: 0.2 + StartAnimTime: 0.3 + StopAnimTime: 0.15 + verticalVel: -0.5 +--- !u!1 &4761579679307265208 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8561193508876723632} + m_Layer: 3 + m_Name: mixamorig:LeftHand + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4762027720914940156 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8264871781157607501} + m_LocalRotation: {x: -0.7071068, y: -0, z: -0, w: 0.7071067} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 28, y: 28, z: 28} + m_Children: [] + m_Father: {fileID: 275152778} + m_RootOrder: 13 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!137 &4826562037211022792 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6389563099951942471} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 60c2f0e0aaa8f8d4e9d23d7e3768653b, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: -7287630029415824813, guid: 82a2914d8f86c62488456950c8330e38, type: 3} + m_Bones: + - {fileID: 38101693975860110} + - {fileID: 49447877241787944} + - {fileID: 3786663924149775962} + - {fileID: 2004308958918841471} + - {fileID: 1589130315589705887} + - {fileID: 7744703493503326207} + - {fileID: 668006632431737210} + - {fileID: 2561657633566861447} + - {fileID: 8465185068757438057} + - {fileID: 5869159519349434605} + - {fileID: 3772228501800882099} + - {fileID: 3234227603773615720} + - {fileID: 8561193508876723632} + - {fileID: 5936567709178112463} + - {fileID: 7211998777874271499} + - {fileID: 2892780539131983700} + - {fileID: 404684814557235294} + - {fileID: 1449764107462391107} + - {fileID: 6381046285341082860} + - {fileID: 1821246363959634179} + - {fileID: 8568605348352331875} + - {fileID: 5793013738874131837} + - {fileID: 3963437824181322287} + - {fileID: 8283759473473236767} + - {fileID: 6376361113423677020} + - {fileID: 2289493134365204732} + - {fileID: 789201071149236897} + - {fileID: 632919408645977011} + - {fileID: 8362226126444815203} + - {fileID: 6713046130555606024} + - {fileID: 1736390053318990959} + - {fileID: 2647666789508465143} + - {fileID: 1245275053774927467} + - {fileID: 7842801111992391080} + - {fileID: 5518930826931131428} + - {fileID: 650411999670426853} + - {fileID: 2827324758456024331} + - {fileID: 4625820438220060375} + - {fileID: 4935914161791213493} + - {fileID: 3097883888289559569} + - {fileID: 2557290871724805380} + - {fileID: 5130141285490113977} + - {fileID: 1029178351255460819} + - {fileID: 4830960991135789399} + - {fileID: 3609869344849030578} + - {fileID: 7702342598346179876} + - {fileID: 8263932002272948002} + - {fileID: 46986526619788425} + - {fileID: 4038941365384921987} + - {fileID: 9027401759568121703} + - {fileID: 2006971927199184871} + - {fileID: 6099821193780923248} + - {fileID: 6095549731309093963} + - {fileID: 4281225623967377215} + - {fileID: 3347735418752596719} + - {fileID: 5460221536597941935} + - {fileID: 7720914278482711054} + - {fileID: 4523608188793301927} + - {fileID: 3119608742257546226} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 38101693975860110} + m_AABB: + m_Center: {x: 4.656613e-10, y: 0.011495378, z: -0.00028370414} + m_Extent: {x: 0.006864876, y: 0.0049977154, z: 0.005147933} + m_DirtyAABB: 0 +--- !u!4 &4830960991135789399 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3921334144253840192} + m_LocalRotation: {x: -0.058209147, y: -0.002894446, z: -0.0026199205, w: 0.9982968} + m_LocalPosition: {x: 0.0000020551151, y: 0.0022241578, z: -0.0000000016406647} + m_LocalScale: {x: 0.99999994, y: 1, z: 1.0000001} + m_Children: + - {fileID: 3609869344849030578} + m_Father: {fileID: 1029178351255460819} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 18.715563, y: -0.7263581, z: -2.3214612} +--- !u!1 &4843127566726714991 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3609869344849030578} + m_Layer: 3 + m_Name: mixamorig:RightHandMiddle4 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &4910270473990087731 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5723820410734444169} + m_Layer: 3 + m_Name: model + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &4926744772574748722 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2034393277314198108} + - component: {fileID: 1200846796344876583} + m_Layer: 3 + m_Name: head_eyes_low + m_TagString: PlayerEyes + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &4933395398353100360 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2474195207096458730} + - component: {fileID: 1741508907910252431} + m_Layer: 3 + m_Name: feet_low + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4935914161791213493 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8832146669603861866} + m_LocalRotation: {x: -0.0019515395, y: 0.005228092, z: 0.0052265446, w: 0.9999708} + m_LocalPosition: {x: -1.862645e-10, y: 0.0026217757, z: 0.0000000013853423} + m_LocalScale: {x: 1, y: 1, z: 0.99999994} + m_Children: + - {fileID: 3097883888289559569} + m_Father: {fileID: 4625820438220060375} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 32.754833, y: -0.61345565, z: -4.124459} +--- !u!1 &4944228959823293859 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5518930826931131428} + m_Layer: 3 + m_Name: mixamorig:RightHandThumb2 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4977372144985887714 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4628807416111532914} + m_LocalRotation: {x: -0.7071068, y: -0.000000004333225, z: 0.0000000044385904, w: 0.7071067} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 28, y: 28, z: 28} + m_Children: [] + m_Father: {fileID: 275152778} + m_RootOrder: 23 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!137 &5022912871245775347 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5219434189213378774} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 60c2f0e0aaa8f8d4e9d23d7e3768653b, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: -5269394949532209711, guid: 82a2914d8f86c62488456950c8330e38, type: 3} + m_Bones: + - {fileID: 38101693975860110} + - {fileID: 49447877241787944} + - {fileID: 3786663924149775962} + - {fileID: 2004308958918841471} + - {fileID: 1589130315589705887} + - {fileID: 7744703493503326207} + - {fileID: 668006632431737210} + - {fileID: 2561657633566861447} + - {fileID: 8465185068757438057} + - {fileID: 5869159519349434605} + - {fileID: 3772228501800882099} + - {fileID: 3234227603773615720} + - {fileID: 8561193508876723632} + - {fileID: 5936567709178112463} + - {fileID: 7211998777874271499} + - {fileID: 2892780539131983700} + - {fileID: 404684814557235294} + - {fileID: 1449764107462391107} + - {fileID: 6381046285341082860} + - {fileID: 1821246363959634179} + - {fileID: 8568605348352331875} + - {fileID: 5793013738874131837} + - {fileID: 3963437824181322287} + - {fileID: 8283759473473236767} + - {fileID: 6376361113423677020} + - {fileID: 2289493134365204732} + - {fileID: 789201071149236897} + - {fileID: 632919408645977011} + - {fileID: 8362226126444815203} + - {fileID: 6713046130555606024} + - {fileID: 1736390053318990959} + - {fileID: 2647666789508465143} + - {fileID: 1245275053774927467} + - {fileID: 7842801111992391080} + - {fileID: 5518930826931131428} + - {fileID: 650411999670426853} + - {fileID: 2827324758456024331} + - {fileID: 4625820438220060375} + - {fileID: 4935914161791213493} + - {fileID: 3097883888289559569} + - {fileID: 2557290871724805380} + - {fileID: 5130141285490113977} + - {fileID: 1029178351255460819} + - {fileID: 4830960991135789399} + - {fileID: 3609869344849030578} + - {fileID: 7702342598346179876} + - {fileID: 8263932002272948002} + - {fileID: 46986526619788425} + - {fileID: 4038941365384921987} + - {fileID: 9027401759568121703} + - {fileID: 2006971927199184871} + - {fileID: 6099821193780923248} + - {fileID: 6095549731309093963} + - {fileID: 4281225623967377215} + - {fileID: 3347735418752596719} + - {fileID: 5460221536597941935} + - {fileID: 7720914278482711054} + - {fileID: 4523608188793301927} + - {fileID: 3119608742257546226} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 38101693975860110} + m_AABB: + m_Center: {x: 0.00000028219074, y: 0.01648675, z: -0.00057394337} + m_Extent: {x: 0.005252939, y: 0.0028486475, z: 0.0047477516} + m_DirtyAABB: 0 +--- !u!137 &5050214706237934646 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2416105712853072794} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 60c2f0e0aaa8f8d4e9d23d7e3768653b, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: 8491974139145053443, guid: 82a2914d8f86c62488456950c8330e38, type: 3} + m_Bones: + - {fileID: 38101693975860110} + - {fileID: 49447877241787944} + - {fileID: 3786663924149775962} + - {fileID: 2004308958918841471} + - {fileID: 1589130315589705887} + - {fileID: 7744703493503326207} + - {fileID: 668006632431737210} + - {fileID: 2561657633566861447} + - {fileID: 8465185068757438057} + - {fileID: 5869159519349434605} + - {fileID: 3772228501800882099} + - {fileID: 3234227603773615720} + - {fileID: 8561193508876723632} + - {fileID: 5936567709178112463} + - {fileID: 7211998777874271499} + - {fileID: 2892780539131983700} + - {fileID: 404684814557235294} + - {fileID: 1449764107462391107} + - {fileID: 6381046285341082860} + - {fileID: 1821246363959634179} + - {fileID: 8568605348352331875} + - {fileID: 5793013738874131837} + - {fileID: 3963437824181322287} + - {fileID: 8283759473473236767} + - {fileID: 6376361113423677020} + - {fileID: 2289493134365204732} + - {fileID: 789201071149236897} + - {fileID: 632919408645977011} + - {fileID: 8362226126444815203} + - {fileID: 6713046130555606024} + - {fileID: 1736390053318990959} + - {fileID: 2647666789508465143} + - {fileID: 1245275053774927467} + - {fileID: 7842801111992391080} + - {fileID: 5518930826931131428} + - {fileID: 650411999670426853} + - {fileID: 2827324758456024331} + - {fileID: 4625820438220060375} + - {fileID: 4935914161791213493} + - {fileID: 3097883888289559569} + - {fileID: 2557290871724805380} + - {fileID: 5130141285490113977} + - {fileID: 1029178351255460819} + - {fileID: 4830960991135789399} + - {fileID: 3609869344849030578} + - {fileID: 7702342598346179876} + - {fileID: 8263932002272948002} + - {fileID: 46986526619788425} + - {fileID: 4038941365384921987} + - {fileID: 9027401759568121703} + - {fileID: 2006971927199184871} + - {fileID: 6099821193780923248} + - {fileID: 6095549731309093963} + - {fileID: 4281225623967377215} + - {fileID: 3347735418752596719} + - {fileID: 5460221536597941935} + - {fileID: 7720914278482711054} + - {fileID: 4523608188793301927} + - {fileID: 3119608742257546226} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 38101693975860110} + m_AABB: + m_Center: {x: 0.000000006519258, y: 0.014158193, z: -0.0038883623} + m_Extent: {x: 0.030456163, y: 0.0014758785, z: 0.0014131323} + m_DirtyAABB: 0 +--- !u!137 &5070678820091915223 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6881047063770189019} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 60c2f0e0aaa8f8d4e9d23d7e3768653b, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: -141160598030540762, guid: 82a2914d8f86c62488456950c8330e38, type: 3} + m_Bones: + - {fileID: 38101693975860110} + - {fileID: 49447877241787944} + - {fileID: 3786663924149775962} + - {fileID: 2004308958918841471} + - {fileID: 1589130315589705887} + - {fileID: 7744703493503326207} + - {fileID: 668006632431737210} + - {fileID: 2561657633566861447} + - {fileID: 8465185068757438057} + - {fileID: 5869159519349434605} + - {fileID: 3772228501800882099} + - {fileID: 3234227603773615720} + - {fileID: 8561193508876723632} + - {fileID: 5936567709178112463} + - {fileID: 7211998777874271499} + - {fileID: 2892780539131983700} + - {fileID: 404684814557235294} + - {fileID: 1449764107462391107} + - {fileID: 6381046285341082860} + - {fileID: 1821246363959634179} + - {fileID: 8568605348352331875} + - {fileID: 5793013738874131837} + - {fileID: 3963437824181322287} + - {fileID: 8283759473473236767} + - {fileID: 6376361113423677020} + - {fileID: 2289493134365204732} + - {fileID: 789201071149236897} + - {fileID: 632919408645977011} + - {fileID: 8362226126444815203} + - {fileID: 6713046130555606024} + - {fileID: 1736390053318990959} + - {fileID: 2647666789508465143} + - {fileID: 1245275053774927467} + - {fileID: 7842801111992391080} + - {fileID: 5518930826931131428} + - {fileID: 650411999670426853} + - {fileID: 2827324758456024331} + - {fileID: 4625820438220060375} + - {fileID: 4935914161791213493} + - {fileID: 3097883888289559569} + - {fileID: 2557290871724805380} + - {fileID: 5130141285490113977} + - {fileID: 1029178351255460819} + - {fileID: 4830960991135789399} + - {fileID: 3609869344849030578} + - {fileID: 7702342598346179876} + - {fileID: 8263932002272948002} + - {fileID: 46986526619788425} + - {fileID: 4038941365384921987} + - {fileID: 9027401759568121703} + - {fileID: 2006971927199184871} + - {fileID: 6099821193780923248} + - {fileID: 6095549731309093963} + - {fileID: 4281225623967377215} + - {fileID: 3347735418752596719} + - {fileID: 5460221536597941935} + - {fileID: 7720914278482711054} + - {fileID: 4523608188793301927} + - {fileID: 3119608742257546226} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 38101693975860110} + m_AABB: + m_Center: {x: 9.313226e-10, y: 0.028362732, z: -0.00086725224} + m_Extent: {x: 0.011894388, y: 0.011190541, z: 0.011191756} + m_DirtyAABB: 0 +--- !u!4 &5130141285490113977 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 9104068794608199287} + m_LocalRotation: {x: -0.012620335, y: -0.03131938, z: 0.026116652, w: 0.99908847} + m_LocalPosition: {x: -0.00031127295, y: 0.0050714696, z: -0.000049081573} + m_LocalScale: {x: 0.99999994, y: 0.99999994, z: 1} + m_Children: + - {fileID: 1029178351255460819} + m_Father: {fileID: 1245275053774927467} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 50.31944, y: -6.5824795, z: -9.768472} +--- !u!33 &5165746311254560261 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4109878905305283364} + m_Mesh: {fileID: -2128599272216676504, guid: 6ecf4ed5e905303488757bf045c01010, type: 3} +--- !u!1 &5219434189213378774 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1968351752643184444} + - component: {fileID: 5022912871245775347} + m_Layer: 3 + m_Name: scarf_low + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &5263768505814637931 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1029178351255460819} + m_Layer: 3 + m_Name: mixamorig:RightHandMiddle2 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &5403959156318413020 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8362226126444815203} + m_Layer: 3 + m_Name: mixamorig:LeftHandPinky4 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &5437356775743236286 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1245275053774927467} + m_Layer: 3 + m_Name: mixamorig:RightHand + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5460221536597941935 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4275852571349641358} + m_LocalRotation: {x: 0.07751489, y: 0.0025662382, z: 0.043736637, w: 0.9960281} + m_LocalPosition: {x: 3.910145e-10, y: 0.007955141, z: -8.731149e-13} + m_LocalScale: {x: 1, y: 0.99999994, z: 0.9999999} + m_Children: + - {fileID: 7720914278482711054} + m_Father: {fileID: 3347735418752596719} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: -30.104753, y: -1.8229616, z: 4.824236} +--- !u!4 &5518930826931131428 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4944228959823293859} + m_LocalRotation: {x: 0.3080849, y: 0.11623043, z: -0.18718553, w: 0.9254922} + m_LocalPosition: {x: 0.000094732044, y: 0.0016309698, z: 0.000000058356672} + m_LocalScale: {x: 1, y: 1, z: 0.99999994} + m_Children: + - {fileID: 650411999670426853} + m_Father: {fileID: 7842801111992391080} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 13.140634, y: 34.497425, z: -28.206757} +--- !u!4 &5597511937187855927 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2416105712853072794} + m_LocalRotation: {x: -0.7071068, y: -8.0342444e-10, z: -8.034245e-10, w: 0.7071067} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 28, y: 28, z: 28} + m_Children: [] + m_Father: {fileID: 275152778} + m_RootOrder: 7 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!4 &5723820410734444169 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4910270473990087731} + m_LocalRotation: {x: 0.50000006, y: 0.49999854, z: -0.5, w: 0.50000155} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 8438434270281920853} + - {fileID: 1132077972659446630} + - {fileID: 2370684232349202779} + - {fileID: 330757602879729611} + - {fileID: 5818578454247393616} + - {fileID: 655058852357636101} + m_Father: {fileID: 1220795588} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 90, y: 0, z: -90} +--- !u!4 &5793013738874131837 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7678658565561492827} + m_LocalRotation: {x: -0.012620335, y: 0.03131938, z: -0.026116652, w: 0.99908847} + m_LocalPosition: {x: 0.00031127295, y: 0.0050714696, z: -0.000049081573} + m_LocalScale: {x: 0.99999994, y: 0.99999994, z: 1} + m_Children: + - {fileID: 3963437824181322287} + m_Father: {fileID: 8561193508876723632} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 51.551884, y: 7.701216, z: 7.3190107} +--- !u!4 &5818578454247393616 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3162565413196758898} + 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_Children: [] + m_Father: {fileID: 5723820410734444169} + m_RootOrder: 4 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &5853655481853726855 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 865260883641818419} + - component: {fileID: 6108489921763627774} + m_Layer: 3 + m_Name: thigh_low + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &5860018414113201947 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 404684814557235294} + m_Layer: 3 + m_Name: mixamorig:LeftHandThumb4 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5869159519349434605 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7195248419938027630} + m_LocalRotation: {x: 0.44886628, y: -0.5215398, z: 0.48690292, w: 0.53799707} + m_LocalPosition: {x: -0.0051535415, y: 0.0061933035, z: -0.0009587702} + m_LocalScale: {x: 1.0000001, y: 1.0000001, z: 1.0000001} + m_Children: + - {fileID: 3772228501800882099} + m_Father: {fileID: 2004308958918841471} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 47.89431, y: -12.769702, z: 76.49841} +--- !u!4 &5936567709178112463 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 837269256743658792} + m_LocalRotation: {x: -0.025027193, y: -0.03098387, z: -0.56412834, w: 0.8247259} + m_LocalPosition: {x: 0.0019131002, y: 0.0013891871, z: 0.00032658404} + m_LocalScale: {x: 0.9999999, y: 0.9999999, z: 1} + m_Children: + - {fileID: 7211998777874271499} + m_Father: {fileID: 8561193508876723632} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 14.857077, y: -26.906305, z: -32.202744} +--- !u!1 &6036028704667047898 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 38101693975860110} + m_Layer: 3 + m_Name: mixamorig:Hips + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &6044274241334701642 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 981696854506848924} + - component: {fileID: 1227289702745011651} + m_Layer: 3 + m_Name: forearm_low + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6095549731309093963 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2234763685028092065} + m_LocalRotation: {x: 0.16970277, y: 0.028958654, z: -0.12204973, w: 0.9774795} + m_LocalPosition: {x: -5.937181e-11, y: 0.0059650694, z: 2.9802322e-10} + m_LocalScale: {x: 0.9999999, y: 1, z: 0.99999994} + m_Children: + - {fileID: 4281225623967377215} + m_Father: {fileID: 6099821193780923248} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 19.805634, y: 0.92502654, z: -14.072977} +--- !u!4 &6099821193780923248 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2542026527552703885} + m_LocalRotation: {x: 0.47223574, y: -0.000778242, z: -0.010722834, w: 0.8814067} + m_LocalPosition: {x: 1.2369128e-12, y: 0.007032073, z: -2.3515895e-10} + m_LocalScale: {x: 1.0000001, y: 1, z: 1} + m_Children: + - {fileID: 6095549731309093963} + m_Father: {fileID: 2006971927199184871} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 70.96032, y: 18.41017, z: 17.900265} +--- !u!137 &6108489921763627774 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5853655481853726855} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 60c2f0e0aaa8f8d4e9d23d7e3768653b, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: 6041399054258687921, guid: 82a2914d8f86c62488456950c8330e38, type: 3} + m_Bones: + - {fileID: 38101693975860110} + - {fileID: 49447877241787944} + - {fileID: 3786663924149775962} + - {fileID: 2004308958918841471} + - {fileID: 1589130315589705887} + - {fileID: 7744703493503326207} + - {fileID: 668006632431737210} + - {fileID: 2561657633566861447} + - {fileID: 8465185068757438057} + - {fileID: 5869159519349434605} + - {fileID: 3772228501800882099} + - {fileID: 3234227603773615720} + - {fileID: 8561193508876723632} + - {fileID: 5936567709178112463} + - {fileID: 7211998777874271499} + - {fileID: 2892780539131983700} + - {fileID: 404684814557235294} + - {fileID: 1449764107462391107} + - {fileID: 6381046285341082860} + - {fileID: 1821246363959634179} + - {fileID: 8568605348352331875} + - {fileID: 5793013738874131837} + - {fileID: 3963437824181322287} + - {fileID: 8283759473473236767} + - {fileID: 6376361113423677020} + - {fileID: 2289493134365204732} + - {fileID: 789201071149236897} + - {fileID: 632919408645977011} + - {fileID: 8362226126444815203} + - {fileID: 6713046130555606024} + - {fileID: 1736390053318990959} + - {fileID: 2647666789508465143} + - {fileID: 1245275053774927467} + - {fileID: 7842801111992391080} + - {fileID: 5518930826931131428} + - {fileID: 650411999670426853} + - {fileID: 2827324758456024331} + - {fileID: 4625820438220060375} + - {fileID: 4935914161791213493} + - {fileID: 3097883888289559569} + - {fileID: 2557290871724805380} + - {fileID: 5130141285490113977} + - {fileID: 1029178351255460819} + - {fileID: 4830960991135789399} + - {fileID: 3609869344849030578} + - {fileID: 7702342598346179876} + - {fileID: 8263932002272948002} + - {fileID: 46986526619788425} + - {fileID: 4038941365384921987} + - {fileID: 9027401759568121703} + - {fileID: 2006971927199184871} + - {fileID: 6099821193780923248} + - {fileID: 6095549731309093963} + - {fileID: 4281225623967377215} + - {fileID: 3347735418752596719} + - {fileID: 5460221536597941935} + - {fileID: 7720914278482711054} + - {fileID: 4523608188793301927} + - {fileID: 3119608742257546226} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 38101693975860110} + m_AABB: + m_Center: {x: 0, y: -0.0026423736, z: -0.00009471271} + m_Extent: {x: 0.0086208135, y: 0.0067165233, z: 0.0038025386} + m_DirtyAABB: 0 +--- !u!1 &6254343686214442335 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8465185068757438057} + m_Layer: 3 + m_Name: mixamorig:RightEar + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &6266911182013213407 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 789201071149236897} + m_Layer: 3 + m_Name: mixamorig:LeftHandPinky2 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6344036241701769032 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4608544476943968397} + m_LocalRotation: {x: -0.7071068, y: 5.301282e-10, z: 6.338494e-10, w: 0.7071067} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 28, y: 28, z: 28} + m_Children: [] + m_Father: {fileID: 275152778} + m_RootOrder: 19 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &6348465275236812191 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6713046130555606024} + m_Layer: 3 + m_Name: mixamorig:RightShoulder + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6376361113423677020 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7623371496766492979} + m_LocalRotation: {x: 0.010558283, y: -0.002861043, z: -0.0028609226, w: 0.9999361} + m_LocalPosition: {x: -0, y: 0.00075213314, z: -2.5785993e-10} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 8283759473473236767} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 1.2090012, y: -0.3314006, z: -0.33136362} +--- !u!4 &6381046285341082860 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7969958674980872273} + m_LocalRotation: {x: -0.0019515395, y: -0.005228092, z: -0.0052265446, w: 0.9999708} + m_LocalPosition: {x: 1.862645e-10, y: 0.0026217757, z: 0.0000000013853423} + m_LocalScale: {x: 1, y: 1, z: 0.99999994} + m_Children: + - {fileID: 1821246363959634179} + m_Father: {fileID: 1449764107462391107} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 59.41203, y: 6.837783, z: 12.997457} +--- !u!1 &6389563099951942471 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2342561958520740612} + - component: {fileID: 4826562037211022792} + m_Layer: 3 + m_Name: chest_low + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6599243431123627274 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4243624145117781529} + m_LocalRotation: {x: -0.7071068, y: -0.000000004333225, z: 0.0000000044385904, w: 0.7071067} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 28, y: 28, z: 28} + m_Children: [] + m_Father: {fileID: 275152778} + m_RootOrder: 20 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &6709806637713673305 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8438434270281920853} + - component: {fileID: 1966235307278841930} + - component: {fileID: 529712424850844450} + m_Layer: 3 + m_Name: Box003 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6713046130555606024 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6348465275236812191} + m_LocalRotation: {x: 0.44886628, y: 0.5215398, z: -0.48690292, w: 0.53799707} + m_LocalPosition: {x: 0.0051535415, y: 0.0061933035, z: -0.0009587702} + m_LocalScale: {x: 1.0000001, y: 1.0000001, z: 1.0000001} + m_Children: + - {fileID: 1736390053318990959} + m_Father: {fileID: 2004308958918841471} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 45.31224, y: 25.76986, z: -80.28171} +--- !u!1 &6772751989522279837 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1449764107462391107} + m_Layer: 3 + m_Name: mixamorig:LeftHandIndex1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &6881047063770189019 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 9055611149445587334} + - component: {fileID: 5070678820091915223} + m_Layer: 3 + m_Name: head_main_low + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &6887357796054244344 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3119608742257546226} + m_Layer: 3 + m_Name: mixamorig:RightToe_End + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!33 &6948656990519213483 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3162565413196758898} + m_Mesh: {fileID: -4821300124380478740, guid: 6ecf4ed5e905303488757bf045c01010, type: 3} +--- !u!1 &6974470746557643305 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8283759473473236767} + m_Layer: 3 + m_Name: mixamorig:LeftHandMiddle3 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &6982769457195551606 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8263932002272948002} + m_Layer: 3 + m_Name: mixamorig:RightHandPinky2 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &7047284500577548532 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1895166094368435029} + - component: {fileID: 4511302626613347861} + m_Layer: 3 + m_Name: head_mohawk_low + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &7085054738301409744 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3347735418752596719} + m_Layer: 3 + m_Name: mixamorig:RightUpLeg + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &7195248419938027630 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5869159519349434605} + m_Layer: 3 + m_Name: mixamorig:LeftShoulder + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7211998777874271499 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4252157927006157951} + m_LocalRotation: {x: 0.3080849, y: -0.11623043, z: 0.18718553, w: 0.9254922} + m_LocalPosition: {x: -0.000094732044, y: 0.0016309698, z: 0.000000058356672} + m_LocalScale: {x: 1, y: 1, z: 0.99999994} + m_Children: + - {fileID: 2892780539131983700} + m_Father: {fileID: 5936567709178112463} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 8.527537, y: -34.274666, z: 6.087773} +--- !u!137 &7312073801819737166 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1369469842245590497} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 60c2f0e0aaa8f8d4e9d23d7e3768653b, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: 761989354644570109, guid: 82a2914d8f86c62488456950c8330e38, type: 3} + m_Bones: + - {fileID: 38101693975860110} + - {fileID: 49447877241787944} + - {fileID: 3786663924149775962} + - {fileID: 2004308958918841471} + - {fileID: 1589130315589705887} + - {fileID: 7744703493503326207} + - {fileID: 668006632431737210} + - {fileID: 2561657633566861447} + - {fileID: 8465185068757438057} + - {fileID: 5869159519349434605} + - {fileID: 3772228501800882099} + - {fileID: 3234227603773615720} + - {fileID: 8561193508876723632} + - {fileID: 5936567709178112463} + - {fileID: 7211998777874271499} + - {fileID: 2892780539131983700} + - {fileID: 404684814557235294} + - {fileID: 1449764107462391107} + - {fileID: 6381046285341082860} + - {fileID: 1821246363959634179} + - {fileID: 8568605348352331875} + - {fileID: 5793013738874131837} + - {fileID: 3963437824181322287} + - {fileID: 8283759473473236767} + - {fileID: 6376361113423677020} + - {fileID: 2289493134365204732} + - {fileID: 789201071149236897} + - {fileID: 632919408645977011} + - {fileID: 8362226126444815203} + - {fileID: 6713046130555606024} + - {fileID: 1736390053318990959} + - {fileID: 2647666789508465143} + - {fileID: 1245275053774927467} + - {fileID: 7842801111992391080} + - {fileID: 5518930826931131428} + - {fileID: 650411999670426853} + - {fileID: 2827324758456024331} + - {fileID: 4625820438220060375} + - {fileID: 4935914161791213493} + - {fileID: 3097883888289559569} + - {fileID: 2557290871724805380} + - {fileID: 5130141285490113977} + - {fileID: 1029178351255460819} + - {fileID: 4830960991135789399} + - {fileID: 3609869344849030578} + - {fileID: 7702342598346179876} + - {fileID: 8263932002272948002} + - {fileID: 46986526619788425} + - {fileID: 4038941365384921987} + - {fileID: 9027401759568121703} + - {fileID: 2006971927199184871} + - {fileID: 6099821193780923248} + - {fileID: 6095549731309093963} + - {fileID: 4281225623967377215} + - {fileID: 3347735418752596719} + - {fileID: 5460221536597941935} + - {fileID: 7720914278482711054} + - {fileID: 4523608188793301927} + - {fileID: 3119608742257546226} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 38101693975860110} + m_AABB: + m_Center: {x: 0.0000000018626451, y: 0.013736978, z: -0.0015361826} + m_Extent: {x: 0.021342257, y: 0.002496135, z: 0.0025212718} + m_DirtyAABB: 0 +--- !u!1 &7403674876930505105 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7702342598346179876} + m_Layer: 3 + m_Name: mixamorig:RightHandPinky1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &7439667444361826450 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3772228501800882099} + m_Layer: 3 + m_Name: mixamorig:LeftArm + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &7473569449510357910 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3234227603773615720} + m_Layer: 3 + m_Name: mixamorig:LeftForeArm + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!137 &7532609882026144153 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 342978044781199717} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 60c2f0e0aaa8f8d4e9d23d7e3768653b, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: 4841496781150244552, guid: 82a2914d8f86c62488456950c8330e38, type: 3} + m_Bones: + - {fileID: 38101693975860110} + - {fileID: 49447877241787944} + - {fileID: 3786663924149775962} + - {fileID: 2004308958918841471} + - {fileID: 1589130315589705887} + - {fileID: 7744703493503326207} + - {fileID: 668006632431737210} + - {fileID: 2561657633566861447} + - {fileID: 8465185068757438057} + - {fileID: 5869159519349434605} + - {fileID: 3772228501800882099} + - {fileID: 3234227603773615720} + - {fileID: 8561193508876723632} + - {fileID: 5936567709178112463} + - {fileID: 7211998777874271499} + - {fileID: 2892780539131983700} + - {fileID: 404684814557235294} + - {fileID: 1449764107462391107} + - {fileID: 6381046285341082860} + - {fileID: 1821246363959634179} + - {fileID: 8568605348352331875} + - {fileID: 5793013738874131837} + - {fileID: 3963437824181322287} + - {fileID: 8283759473473236767} + - {fileID: 6376361113423677020} + - {fileID: 2289493134365204732} + - {fileID: 789201071149236897} + - {fileID: 632919408645977011} + - {fileID: 8362226126444815203} + - {fileID: 6713046130555606024} + - {fileID: 1736390053318990959} + - {fileID: 2647666789508465143} + - {fileID: 1245275053774927467} + - {fileID: 7842801111992391080} + - {fileID: 5518930826931131428} + - {fileID: 650411999670426853} + - {fileID: 2827324758456024331} + - {fileID: 4625820438220060375} + - {fileID: 4935914161791213493} + - {fileID: 3097883888289559569} + - {fileID: 2557290871724805380} + - {fileID: 5130141285490113977} + - {fileID: 1029178351255460819} + - {fileID: 4830960991135789399} + - {fileID: 3609869344849030578} + - {fileID: 7702342598346179876} + - {fileID: 8263932002272948002} + - {fileID: 46986526619788425} + - {fileID: 4038941365384921987} + - {fileID: 9027401759568121703} + - {fileID: 2006971927199184871} + - {fileID: 6099821193780923248} + - {fileID: 6095549731309093963} + - {fileID: 4281225623967377215} + - {fileID: 3347735418752596719} + - {fileID: 5460221536597941935} + - {fileID: 7720914278482711054} + - {fileID: 4523608188793301927} + - {fileID: 3119608742257546226} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 38101693975860110} + m_AABB: + m_Center: {x: 0, y: 0.0138211055, z: -0.0015498907} + m_Extent: {x: 0.026481798, y: 0.0027623707, z: 0.004100331} + m_DirtyAABB: 0 +--- !u!1 &7601808759760586489 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2827324758456024331} + m_Layer: 3 + m_Name: mixamorig:RightHandThumb4 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &7623371496766492979 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6376361113423677020} + m_Layer: 3 + m_Name: mixamorig:LeftHandMiddle4 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!95 &7635726065660501106 +Animator: + serializedVersion: 3 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3541754001687102235} + m_Enabled: 1 + m_Avatar: {fileID: 9000000, guid: f8af0573aab879f4c9cd410a4e0a39f9, type: 3} + m_Controller: {fileID: 9100000, guid: 535d24752e3d6444da644e79e90ec2ca, type: 2} + m_CullingMode: 1 + m_UpdateMode: 0 + m_ApplyRootMotion: 0 + m_LinearVelocityBlending: 0 + m_WarningMessage: + m_HasTransformHierarchy: 1 + m_AllowConstantClipSamplingOptimization: 1 + m_KeepAnimatorControllerStateOnDisable: 0 +--- !u!1 &7678658565561492827 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5793013738874131837} + m_Layer: 3 + m_Name: mixamorig:LeftHandMiddle1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7690150860515383070 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4640897207642432437} + m_LocalRotation: {x: -0.7232109, y: -0.23895341, z: 0.30078816, w: 0.5739284} + m_LocalPosition: {x: 0.00024986267, y: 0.8024603, z: 0.14366627} + m_LocalScale: {x: 28.824783, y: 28.824766, z: 28.824772} + m_Children: [] + m_Father: {fileID: 275152778} + m_RootOrder: 18 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!4 &7702342598346179876 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7403674876930505105} + m_LocalRotation: {x: 0.0489316, y: -0.016163496, z: 0.040470988, w: 0.997851} + m_LocalPosition: {x: 0.0020207374, y: 0.0049411217, z: -0.00019330285} + m_LocalScale: {x: 0.99999994, y: 0.99999994, z: 0.9999999} + m_Children: + - {fileID: 8263932002272948002} + m_Father: {fileID: 1245275053774927467} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 64.26823, y: -7.8172235, z: -3.0439062} +--- !u!4 &7720914278482711054 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3465011011716791874} + m_LocalRotation: {x: 0.47223574, y: 0.000778242, z: 0.010722834, w: 0.8814067} + m_LocalPosition: {x: -1.2369128e-12, y: 0.007032073, z: -2.3515895e-10} + m_LocalScale: {x: 1.0000001, y: 1, z: 1} + m_Children: + - {fileID: 4523608188793301927} + m_Father: {fileID: 5460221536597941935} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 76.159676, y: -104.25627, z: -89.11984} +--- !u!4 &7744703493503326207 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 9193520577250169711} + m_LocalRotation: {x: 0.056340646, y: 8.164802e-19, z: 1.1755652e-17, w: 0.99841166} + m_LocalPosition: {x: 8.283988e-24, y: 0.0030691673, z: 0.000090436486} + m_LocalScale: {x: 0.88, y: 0.88, z: 0.88} + m_Children: + - {fileID: 668006632431737210} + - {fileID: 2561657633566861447} + - {fileID: 8465185068757438057} + m_Father: {fileID: 1589130315589705887} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: -0.015296315, y: -23.01758, z: -8.663084} +--- !u!23 &7810474265727998077 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3162565413196758898} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 4d55ac861bef7b447bb029a4da2cb51a, 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!4 &7842801111992391080 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 191948013526948205} + m_LocalRotation: {x: -0.025027193, y: 0.03098387, z: 0.56412834, w: 0.8247259} + m_LocalPosition: {x: -0.0019131002, y: 0.0013891871, z: 0.00032658404} + m_LocalScale: {x: 0.9999999, y: 0.9999999, z: 1} + m_Children: + - {fileID: 5518930826931131428} + m_Father: {fileID: 1245275053774927467} + m_RootOrder: 4 + m_LocalEulerAnglesHint: {x: 25.719746, y: 33.349575, z: 42.66236} +--- !u!1 &7969958674980872273 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6381046285341082860} + m_Layer: 3 + m_Name: mixamorig:LeftHandIndex2 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!33 &8001705484166854532 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4730361222209491902} + m_Mesh: {fileID: -7553716758358721678, guid: 6ecf4ed5e905303488757bf045c01010, type: 3} +--- !u!137 &8103208097892180035 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4608544476943968397} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 60c2f0e0aaa8f8d4e9d23d7e3768653b, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: -2388564476093731693, guid: 82a2914d8f86c62488456950c8330e38, type: 3} + m_Bones: + - {fileID: 38101693975860110} + - {fileID: 49447877241787944} + - {fileID: 3786663924149775962} + - {fileID: 2004308958918841471} + - {fileID: 1589130315589705887} + - {fileID: 7744703493503326207} + - {fileID: 668006632431737210} + - {fileID: 2561657633566861447} + - {fileID: 8465185068757438057} + - {fileID: 5869159519349434605} + - {fileID: 3772228501800882099} + - {fileID: 3234227603773615720} + - {fileID: 8561193508876723632} + - {fileID: 5936567709178112463} + - {fileID: 7211998777874271499} + - {fileID: 2892780539131983700} + - {fileID: 404684814557235294} + - {fileID: 1449764107462391107} + - {fileID: 6381046285341082860} + - {fileID: 1821246363959634179} + - {fileID: 8568605348352331875} + - {fileID: 5793013738874131837} + - {fileID: 3963437824181322287} + - {fileID: 8283759473473236767} + - {fileID: 6376361113423677020} + - {fileID: 2289493134365204732} + - {fileID: 789201071149236897} + - {fileID: 632919408645977011} + - {fileID: 8362226126444815203} + - {fileID: 6713046130555606024} + - {fileID: 1736390053318990959} + - {fileID: 2647666789508465143} + - {fileID: 1245275053774927467} + - {fileID: 7842801111992391080} + - {fileID: 5518930826931131428} + - {fileID: 650411999670426853} + - {fileID: 2827324758456024331} + - {fileID: 4625820438220060375} + - {fileID: 4935914161791213493} + - {fileID: 3097883888289559569} + - {fileID: 2557290871724805380} + - {fileID: 5130141285490113977} + - {fileID: 1029178351255460819} + - {fileID: 4830960991135789399} + - {fileID: 3609869344849030578} + - {fileID: 7702342598346179876} + - {fileID: 8263932002272948002} + - {fileID: 46986526619788425} + - {fileID: 4038941365384921987} + - {fileID: 9027401759568121703} + - {fileID: 2006971927199184871} + - {fileID: 6099821193780923248} + - {fileID: 6095549731309093963} + - {fileID: 4281225623967377215} + - {fileID: 3347735418752596719} + - {fileID: 5460221536597941935} + - {fileID: 7720914278482711054} + - {fileID: 4523608188793301927} + - {fileID: 3119608742257546226} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 38101693975860110} + m_AABB: + m_Center: {x: 0, y: -0.0123926215, z: 0.00073562376} + m_Extent: {x: 0.008636855, y: 0.0056809317, z: 0.004555068} + m_DirtyAABB: 0 +--- !u!1 &8114064758663019197 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 632919408645977011} + m_Layer: 3 + m_Name: mixamorig:LeftHandPinky3 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8149820908250722595 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4483209743433825032} + m_LocalRotation: {x: -0.7071068, y: 5.301282e-10, z: 6.338494e-10, w: 0.7071067} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 28, y: 28, z: 28} + m_Children: [] + m_Father: {fileID: 275152778} + m_RootOrder: 14 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!137 &8194485845428949230 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8264871781157607501} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 60c2f0e0aaa8f8d4e9d23d7e3768653b, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: 4128572229992806585, guid: 82a2914d8f86c62488456950c8330e38, type: 3} + m_Bones: + - {fileID: 38101693975860110} + - {fileID: 49447877241787944} + - {fileID: 3786663924149775962} + - {fileID: 2004308958918841471} + - {fileID: 1589130315589705887} + - {fileID: 7744703493503326207} + - {fileID: 668006632431737210} + - {fileID: 2561657633566861447} + - {fileID: 8465185068757438057} + - {fileID: 5869159519349434605} + - {fileID: 3772228501800882099} + - {fileID: 3234227603773615720} + - {fileID: 8561193508876723632} + - {fileID: 5936567709178112463} + - {fileID: 7211998777874271499} + - {fileID: 2892780539131983700} + - {fileID: 404684814557235294} + - {fileID: 1449764107462391107} + - {fileID: 6381046285341082860} + - {fileID: 1821246363959634179} + - {fileID: 8568605348352331875} + - {fileID: 5793013738874131837} + - {fileID: 3963437824181322287} + - {fileID: 8283759473473236767} + - {fileID: 6376361113423677020} + - {fileID: 2289493134365204732} + - {fileID: 789201071149236897} + - {fileID: 632919408645977011} + - {fileID: 8362226126444815203} + - {fileID: 6713046130555606024} + - {fileID: 1736390053318990959} + - {fileID: 2647666789508465143} + - {fileID: 1245275053774927467} + - {fileID: 7842801111992391080} + - {fileID: 5518930826931131428} + - {fileID: 650411999670426853} + - {fileID: 2827324758456024331} + - {fileID: 4625820438220060375} + - {fileID: 4935914161791213493} + - {fileID: 3097883888289559569} + - {fileID: 2557290871724805380} + - {fileID: 5130141285490113977} + - {fileID: 1029178351255460819} + - {fileID: 4830960991135789399} + - {fileID: 3609869344849030578} + - {fileID: 7702342598346179876} + - {fileID: 8263932002272948002} + - {fileID: 46986526619788425} + - {fileID: 4038941365384921987} + - {fileID: 9027401759568121703} + - {fileID: 2006971927199184871} + - {fileID: 6099821193780923248} + - {fileID: 6095549731309093963} + - {fileID: 4281225623967377215} + - {fileID: 3347735418752596719} + - {fileID: 5460221536597941935} + - {fileID: 7720914278482711054} + - {fileID: 4523608188793301927} + - {fileID: 3119608742257546226} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 38101693975860110} + m_AABB: + m_Center: {x: 0, y: 0.028118715, z: 0.0070655644} + m_Extent: {x: 0.009386432, y: 0.006465099, z: 0.0014776911} + m_DirtyAABB: 0 +--- !u!4 &8231537208663976650 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4155757067688362347} + m_LocalRotation: {x: 0.00000008146034, y: 0, z: -0, w: 1} + m_LocalPosition: {x: -0, y: 0, z: 0} + m_LocalScale: {x: 28, y: 28, z: 28} + m_Children: + - {fileID: 38101693975860110} + m_Father: {fileID: 539745478044430600} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!4 &8263932002272948002 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6982769457195551606} + m_LocalRotation: {x: -0.025451161, y: 0.00014295697, z: 0.00014227511, w: 0.99967605} + m_LocalPosition: {x: -1.4959368e-10, y: 0.002752743, z: 0.000000002810193} + m_LocalScale: {x: 0.99999994, y: 1, z: 1} + m_Children: + - {fileID: 46986526619788425} + m_Father: {fileID: 7702342598346179876} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 80.27447, y: -34.675125, z: -40.652172} +--- !u!1 &8264871781157607501 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4762027720914940156} + - component: {fileID: 8194485845428949230} + m_Layer: 3 + m_Name: head_screen_low + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8283759473473236767 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6974470746557643305} + m_LocalRotation: {x: -0.058209147, y: 0.002894446, z: 0.0026199205, w: 0.9982968} + m_LocalPosition: {x: -0.0000020551151, y: 0.0022241578, z: -0.0000000016406647} + m_LocalScale: {x: 0.99999994, y: 1, z: 1.0000001} + m_Children: + - {fileID: 6376361113423677020} + m_Father: {fileID: 3963437824181322287} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 17.745468, y: 0.7467746, z: 2.584129} +--- !u!137 &8284594815547491912 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2254620651537449810} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 60c2f0e0aaa8f8d4e9d23d7e3768653b, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: 1442480265255448480, guid: 82a2914d8f86c62488456950c8330e38, type: 3} + m_Bones: + - {fileID: 38101693975860110} + - {fileID: 49447877241787944} + - {fileID: 3786663924149775962} + - {fileID: 2004308958918841471} + - {fileID: 1589130315589705887} + - {fileID: 7744703493503326207} + - {fileID: 668006632431737210} + - {fileID: 2561657633566861447} + - {fileID: 8465185068757438057} + - {fileID: 5869159519349434605} + - {fileID: 3772228501800882099} + - {fileID: 3234227603773615720} + - {fileID: 8561193508876723632} + - {fileID: 5936567709178112463} + - {fileID: 7211998777874271499} + - {fileID: 2892780539131983700} + - {fileID: 404684814557235294} + - {fileID: 1449764107462391107} + - {fileID: 6381046285341082860} + - {fileID: 1821246363959634179} + - {fileID: 8568605348352331875} + - {fileID: 5793013738874131837} + - {fileID: 3963437824181322287} + - {fileID: 8283759473473236767} + - {fileID: 6376361113423677020} + - {fileID: 2289493134365204732} + - {fileID: 789201071149236897} + - {fileID: 632919408645977011} + - {fileID: 8362226126444815203} + - {fileID: 6713046130555606024} + - {fileID: 1736390053318990959} + - {fileID: 2647666789508465143} + - {fileID: 1245275053774927467} + - {fileID: 7842801111992391080} + - {fileID: 5518930826931131428} + - {fileID: 650411999670426853} + - {fileID: 2827324758456024331} + - {fileID: 4625820438220060375} + - {fileID: 4935914161791213493} + - {fileID: 3097883888289559569} + - {fileID: 2557290871724805380} + - {fileID: 5130141285490113977} + - {fileID: 1029178351255460819} + - {fileID: 4830960991135789399} + - {fileID: 3609869344849030578} + - {fileID: 7702342598346179876} + - {fileID: 8263932002272948002} + - {fileID: 46986526619788425} + - {fileID: 4038941365384921987} + - {fileID: 9027401759568121703} + - {fileID: 2006971927199184871} + - {fileID: 6099821193780923248} + - {fileID: 6095549731309093963} + - {fileID: 4281225623967377215} + - {fileID: 3347735418752596719} + - {fileID: 5460221536597941935} + - {fileID: 7720914278482711054} + - {fileID: 4523608188793301927} + - {fileID: 3119608742257546226} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 38101693975860110} + m_AABB: + m_Center: {x: -4.656613e-10, y: -0.013859185, z: 0.0008595688} + m_Extent: {x: 0.0074213846, y: 0.004341594, z: 0.0041096583} + m_DirtyAABB: 0 +--- !u!33 &8308698745039432427 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4408420577911530385} + m_Mesh: {fileID: -951608786083511892, guid: 6ecf4ed5e905303488757bf045c01010, type: 3} +--- !u!23 &8339146439225600106 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4730361222209491902} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: e84b818e2f8296a42bb635fb015c58ff, 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!4 &8362226126444815203 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5403959156318413020} + m_LocalRotation: {x: 0.044519458, y: -0.00000011909107, z: 0.0000000033611263, w: 0.99900854} + m_LocalPosition: {x: -3.235408e-10, y: 0.0009765623, z: -5.703486e-10} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 632919408645977011} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 5.1032014, y: 0.0000031968796, z: 0.0000053110252} +--- !u!4 &8438434270281920853 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6709806637713673305} + 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_Children: [] + m_Father: {fileID: 5723820410734444169} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!4 &8447345115298737374 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2254620651537449810} + m_LocalRotation: {x: -0.7071068, y: 5.301282e-10, z: 6.338494e-10, w: 0.7071067} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 28, y: 28, z: 28} + m_Children: [] + m_Father: {fileID: 275152778} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!23 &8459402664625560588 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4408420577911530385} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 3f147ecca71633d4a82c4caad97cb905, 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!4 &8465185068757438057 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6254343686214442335} + m_LocalRotation: {x: 0.4050642, y: 0.45798048, z: -0.5935722, w: 0.5233059} + m_LocalPosition: {x: 0.01142189, y: 0.008629899, z: -0.0021856788} + m_LocalScale: {x: 1.0000001, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 7744703493503326207} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 75.38284, y: -0.3503092, z: -97.47056} +--- !u!1 &8529237798159229862 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1736390053318990959} + m_Layer: 3 + m_Name: mixamorig:RightArm + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &8537379886232157923 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3786663924149775962} + m_Layer: 3 + m_Name: mixamorig:Spine1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8561193508876723632 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4761579679307265208} + m_LocalRotation: {x: -0.024770312, y: -0.06330372, z: 0.049688194, w: 0.99644876} + m_LocalPosition: {x: 4.842877e-10, y: 0.007151887, z: -0.000000003740133} + m_LocalScale: {x: 1, y: 1, z: 1.0000001} + m_Children: + - {fileID: 1449764107462391107} + - {fileID: 5793013738874131837} + - {fileID: 2289493134365204732} + - {fileID: 5936567709178112463} + m_Father: {fileID: 3234227603773615720} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: -31.979504, y: 113.027596, z: 5.0226564} +--- !u!4 &8568605348352331875 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1426603960846516381} + m_LocalRotation: {x: 0.04448823, y: 0.0000003572738, z: -0.000000017854878, w: 0.9990099} + m_LocalPosition: {x: 1.4183114e-10, y: 0.0008978241, z: 0.0000000035508958} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1821246363959634179} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 5.0996943, y: -0.000009465092, z: 0.000007306565} +--- !u!137 &8613443241758849405 +SkinnedMeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4483209743433825032} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 3 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 60c2f0e0aaa8f8d4e9d23d7e3768653b, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + serializedVersion: 2 + m_Quality: 0 + m_UpdateWhenOffscreen: 0 + m_SkinnedMotionVectors: 1 + m_Mesh: {fileID: -5547477151990014872, guid: 82a2914d8f86c62488456950c8330e38, type: 3} + m_Bones: + - {fileID: 38101693975860110} + - {fileID: 49447877241787944} + - {fileID: 3786663924149775962} + - {fileID: 2004308958918841471} + - {fileID: 1589130315589705887} + - {fileID: 7744703493503326207} + - {fileID: 668006632431737210} + - {fileID: 2561657633566861447} + - {fileID: 8465185068757438057} + - {fileID: 5869159519349434605} + - {fileID: 3772228501800882099} + - {fileID: 3234227603773615720} + - {fileID: 8561193508876723632} + - {fileID: 5936567709178112463} + - {fileID: 7211998777874271499} + - {fileID: 2892780539131983700} + - {fileID: 404684814557235294} + - {fileID: 1449764107462391107} + - {fileID: 6381046285341082860} + - {fileID: 1821246363959634179} + - {fileID: 8568605348352331875} + - {fileID: 5793013738874131837} + - {fileID: 3963437824181322287} + - {fileID: 8283759473473236767} + - {fileID: 6376361113423677020} + - {fileID: 2289493134365204732} + - {fileID: 789201071149236897} + - {fileID: 632919408645977011} + - {fileID: 8362226126444815203} + - {fileID: 6713046130555606024} + - {fileID: 1736390053318990959} + - {fileID: 2647666789508465143} + - {fileID: 1245275053774927467} + - {fileID: 7842801111992391080} + - {fileID: 5518930826931131428} + - {fileID: 650411999670426853} + - {fileID: 2827324758456024331} + - {fileID: 4625820438220060375} + - {fileID: 4935914161791213493} + - {fileID: 3097883888289559569} + - {fileID: 2557290871724805380} + - {fileID: 5130141285490113977} + - {fileID: 1029178351255460819} + - {fileID: 4830960991135789399} + - {fileID: 3609869344849030578} + - {fileID: 7702342598346179876} + - {fileID: 8263932002272948002} + - {fileID: 46986526619788425} + - {fileID: 4038941365384921987} + - {fileID: 9027401759568121703} + - {fileID: 2006971927199184871} + - {fileID: 6099821193780923248} + - {fileID: 6095549731309093963} + - {fileID: 4281225623967377215} + - {fileID: 3347735418752596719} + - {fileID: 5460221536597941935} + - {fileID: 7720914278482711054} + - {fileID: 4523608188793301927} + - {fileID: 3119608742257546226} + m_BlendShapeWeights: [] + m_RootBone: {fileID: 38101693975860110} + m_AABB: + m_Center: {x: 0, y: -0.016972732, z: -0.0018299504} + m_Extent: {x: 0.006482142, y: 0.0024608234, z: 0.0025217298} + m_DirtyAABB: 0 +--- !u!1 &8727390975659788858 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2006971927199184871} + m_Layer: 3 + m_Name: mixamorig:LeftLeg + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &8806910139672723256 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2289493134365204732} + m_Layer: 3 + m_Name: mixamorig:LeftHandPinky1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &8822005322847335367 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2970148366285955608} + - component: {fileID: 2816789308805098538} + m_Layer: 3 + m_Name: finger_index_low + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &8832146669603861866 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4935914161791213493} + m_Layer: 3 + m_Name: mixamorig:RightHandIndex2 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!23 &8981861724887187931 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4109878905305283364} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 5fc26080382b5bc44a6b4a21db209be2, 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 &9000909490783435343 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2561657633566861447} + m_Layer: 3 + m_Name: mixamorig:LeftEar + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &9016668082198405949 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4038941365384921987} + m_Layer: 3 + m_Name: mixamorig:RightHandPinky4 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &9027401759568121703 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2024321854237316635} + m_LocalRotation: {x: 0.00023406364, y: -0.008087971, z: 0.99964195, w: -0.025505608} + m_LocalPosition: {x: -0.0046964264, y: -0.000097808836, z: 0.00006266594} + m_LocalScale: {x: 1.0000329, y: 1, z: 1.0000032} + m_Children: + - {fileID: 2006971927199184871} + m_Father: {fileID: 38101693975860110} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: -10.349766, y: -45.957832, z: 166.35173} +--- !u!4 &9055611149445587334 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6881047063770189019} + m_LocalRotation: {x: -0.7071068, y: -2.6341795e-10, z: 1.0536695e-10, w: 0.7071067} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 28, y: 28, z: 28} + m_Children: [] + m_Father: {fileID: 275152778} + m_RootOrder: 11 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &9104068794608199287 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5130141285490113977} + m_Layer: 3 + m_Name: mixamorig:RightHandMiddle1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &9193520577250169711 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7744703493503326207} + m_Layer: 3 + m_Name: mixamorig:Head + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &9211191337072355745 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4625820438220060375} + m_Layer: 3 + m_Name: mixamorig:RightHandIndex1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 diff --git a/Assets/Scenes/SampleScene.unity.meta b/Assets/Scenes/SampleScene.unity.meta new file mode 100644 index 0000000..49be5f9 --- /dev/null +++ b/Assets/Scenes/SampleScene.unity.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: d1c3109bdb54ad54c8a2b2838528e640 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Scenes/SampleSceneLightingSettings.lighting b/Assets/Scenes/SampleSceneLightingSettings.lighting new file mode 100644 index 0000000..2c68dad --- /dev/null +++ b/Assets/Scenes/SampleSceneLightingSettings.lighting @@ -0,0 +1,63 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!850595691 &4890085278179872738 +LightingSettings: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: SampleSceneLightingSettings + serializedVersion: 3 + m_GIWorkflowMode: 0 + m_EnableBakedLightmaps: 1 + m_EnableRealtimeLightmaps: 0 + m_RealtimeEnvironmentLighting: 0 + m_BounceScale: 1 + m_AlbedoBoost: 1 + m_IndirectOutputScale: 1 + m_UsingShadowmask: 0 + m_BakeBackend: 1 + m_LightmapMaxSize: 512 + m_BakeResolution: 32 + m_Padding: 2 + m_TextureCompression: 1 + m_AO: 1 + m_AOMaxDistance: 1 + m_CompAOExponent: 1 + m_CompAOExponentDirect: 0.3 + m_ExtractAO: 0 + m_MixedBakeMode: 0 + m_LightmapsBakeMode: 1 + m_FilterMode: 1 + m_LightmapParameters: {fileID: 15204, guid: 0000000000000000f000000000000000, type: 0} + m_ExportTrainingData: 0 + m_TrainingDataDestination: TrainingData + m_RealtimeResolution: 2 + m_ForceWhiteAlbedo: 0 + m_ForceUpdates: 0 + m_FinalGather: 0 + m_FinalGatherRayCount: 256 + m_FinalGatherFiltering: 1 + m_PVRCulling: 1 + m_PVRSampling: 1 + m_PVRDirectSampleCount: 32 + m_PVRSampleCount: 256 + m_PVREnvironmentSampleCount: 256 + m_PVREnvironmentReferencePointCount: 2048 + m_LightProbeSampleCountMultiplier: 4 + m_PVRBounces: 2 + m_PVRMinBounces: 1 + m_PVREnvironmentMIS: 0 + m_PVRFilteringMode: 1 + m_PVRDenoiserTypeDirect: 0 + m_PVRDenoiserTypeIndirect: 0 + m_PVRDenoiserTypeAO: 0 + m_PVRFilterTypeDirect: 0 + m_PVRFilterTypeIndirect: 0 + m_PVRFilterTypeAO: 0 + m_PVRFilteringGaussRadiusDirect: 1 + m_PVRFilteringGaussRadiusIndirect: 5 + m_PVRFilteringGaussRadiusAO: 2 + m_PVRFilteringAtrousPositionSigmaDirect: 0.548 + m_PVRFilteringAtrousPositionSigmaIndirect: 2 + m_PVRFilteringAtrousPositionSigmaAO: 1 diff --git a/Assets/Scenes/SampleSceneLightingSettings.lighting.meta b/Assets/Scenes/SampleSceneLightingSettings.lighting.meta new file mode 100644 index 0000000..8ddc05b --- /dev/null +++ b/Assets/Scenes/SampleSceneLightingSettings.lighting.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 477cc4148fad3449482a3bc3178594e2 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Scripts.meta b/Assets/Scripts.meta new file mode 100644 index 0000000..2b27efa --- /dev/null +++ b/Assets/Scripts.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 02a3527b6b33a924e8ec66aa805ea717 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Scripts/SimpleCameraController.cs b/Assets/Scripts/SimpleCameraController.cs new file mode 100644 index 0000000..f9e8f85 --- /dev/null +++ b/Assets/Scripts/SimpleCameraController.cs @@ -0,0 +1,294 @@ +#if ENABLE_INPUT_SYSTEM +using UnityEngine.InputSystem; +#endif + +using UnityEngine; + +namespace UnityTemplateProjects +{ + public class SimpleCameraController : MonoBehaviour + { + class CameraState + { + public float yaw; + public float pitch; + public float roll; + public float x; + public float y; + public float z; + + public void SetFromTransform(Transform t) + { + pitch = t.eulerAngles.x; + yaw = t.eulerAngles.y; + roll = t.eulerAngles.z; + x = t.position.x; + y = t.position.y; + z = t.position.z; + } + + public void Translate(Vector3 translation) + { + Vector3 rotatedTranslation = Quaternion.Euler(pitch, yaw, roll) * translation; + + x += rotatedTranslation.x; + y += rotatedTranslation.y; + z += rotatedTranslation.z; + } + + public void LerpTowards(CameraState target, float positionLerpPct, float rotationLerpPct) + { + yaw = Mathf.Lerp(yaw, target.yaw, rotationLerpPct); + pitch = Mathf.Lerp(pitch, target.pitch, rotationLerpPct); + roll = Mathf.Lerp(roll, target.roll, rotationLerpPct); + + x = Mathf.Lerp(x, target.x, positionLerpPct); + y = Mathf.Lerp(y, target.y, positionLerpPct); + z = Mathf.Lerp(z, target.z, positionLerpPct); + } + + public void UpdateTransform(Transform t) + { + t.eulerAngles = new Vector3(pitch, yaw, roll); + t.position = new Vector3(x, y, z); + } + } + + CameraState m_TargetCameraState = new CameraState(); + CameraState m_InterpolatingCameraState = new CameraState(); + + [Header("Movement Settings")] + [Tooltip("Exponential boost factor on translation, controllable by mouse wheel.")] + public float boost = 3.5f; + + [Tooltip("Time it takes to interpolate camera position 99% of the way to the target."), Range(0.001f, 1f)] + public float positionLerpTime = 0.2f; + + [Header("Rotation Settings")] + [Tooltip("X = Change in mouse position.\nY = Multiplicative factor for camera rotation.")] + public AnimationCurve mouseSensitivityCurve = new AnimationCurve(new Keyframe(0f, 0.5f, 0f, 5f), new Keyframe(1f, 2.5f, 0f, 0f)); + + [Tooltip("Time it takes to interpolate camera rotation 99% of the way to the target."), Range(0.001f, 1f)] + public float rotationLerpTime = 0.01f; + + [Tooltip("Whether or not to invert our Y axis for mouse input to rotation.")] + public bool invertY = false; + +#if ENABLE_INPUT_SYSTEM + InputAction movementAction; + InputAction verticalMovementAction; + InputAction lookAction; + InputAction boostFactorAction; + bool mouseRightButtonPressed; + + void Start() + { + var map = new InputActionMap("Simple Camera Controller"); + + lookAction = map.AddAction("look", binding: "/delta"); + movementAction = map.AddAction("move", binding: "/leftStick"); + verticalMovementAction = map.AddAction("Vertical Movement"); + boostFactorAction = map.AddAction("Boost Factor", binding: "/scroll"); + + lookAction.AddBinding("/rightStick").WithProcessor("scaleVector2(x=15, y=15)"); + movementAction.AddCompositeBinding("Dpad") + .With("Up", "/w") + .With("Up", "/upArrow") + .With("Down", "/s") + .With("Down", "/downArrow") + .With("Left", "/a") + .With("Left", "/leftArrow") + .With("Right", "/d") + .With("Right", "/rightArrow"); + verticalMovementAction.AddCompositeBinding("Dpad") + .With("Up", "/pageUp") + .With("Down", "/pageDown") + .With("Up", "/e") + .With("Down", "/q") + .With("Up", "/rightshoulder") + .With("Down", "/leftshoulder"); + boostFactorAction.AddBinding("/Dpad").WithProcessor("scaleVector2(x=1, y=4)"); + + movementAction.Enable(); + lookAction.Enable(); + verticalMovementAction.Enable(); + boostFactorAction.Enable(); + } +#endif + + void OnEnable() + { + m_TargetCameraState.SetFromTransform(transform); + m_InterpolatingCameraState.SetFromTransform(transform); + } + + Vector3 GetInputTranslationDirection() + { + Vector3 direction = Vector3.zero; +#if ENABLE_INPUT_SYSTEM + var moveDelta = movementAction.ReadValue(); + direction.x = moveDelta.x; + direction.z = moveDelta.y; + direction.y = verticalMovementAction.ReadValue().y; +#else + if (Input.GetKey(KeyCode.W)) + { + direction += Vector3.forward; + } + if (Input.GetKey(KeyCode.S)) + { + direction += Vector3.back; + } + if (Input.GetKey(KeyCode.A)) + { + direction += Vector3.left; + } + if (Input.GetKey(KeyCode.D)) + { + direction += Vector3.right; + } + if (Input.GetKey(KeyCode.Q)) + { + direction += Vector3.down; + } + if (Input.GetKey(KeyCode.E)) + { + direction += Vector3.up; + } +#endif + return direction; + } + + void Update() + { + // Exit Sample + + if (IsEscapePressed()) + { + Application.Quit(); + #if UNITY_EDITOR + UnityEditor.EditorApplication.isPlaying = false; + #endif + } + + // Hide and lock cursor when right mouse button pressed + if (IsRightMouseButtonDown()) + { + Cursor.lockState = CursorLockMode.Locked; + } + + // Unlock and show cursor when right mouse button released + if (IsRightMouseButtonUp()) + { + Cursor.visible = true; + Cursor.lockState = CursorLockMode.None; + } + + // Rotation + if (IsCameraRotationAllowed()) + { + var mouseMovement = GetInputLookRotation() * Time.deltaTime * 5; + if (invertY) + mouseMovement.y = -mouseMovement.y; + + var mouseSensitivityFactor = mouseSensitivityCurve.Evaluate(mouseMovement.magnitude); + + m_TargetCameraState.yaw += mouseMovement.x * mouseSensitivityFactor; + m_TargetCameraState.pitch += mouseMovement.y * mouseSensitivityFactor; + } + + // Translation + var translation = GetInputTranslationDirection() * Time.deltaTime; + + // Speed up movement when shift key held + if (IsBoostPressed()) + { + translation *= 10.0f; + } + + // Modify movement by a boost factor (defined in Inspector and modified in play mode through the mouse scroll wheel) + boost += GetBoostFactor(); + translation *= Mathf.Pow(2.0f, boost); + + m_TargetCameraState.Translate(translation); + + // Framerate-independent interpolation + // Calculate the lerp amount, such that we get 99% of the way to our target in the specified time + var positionLerpPct = 1f - Mathf.Exp((Mathf.Log(1f - 0.99f) / positionLerpTime) * Time.deltaTime); + var rotationLerpPct = 1f - Mathf.Exp((Mathf.Log(1f - 0.99f) / rotationLerpTime) * Time.deltaTime); + m_InterpolatingCameraState.LerpTowards(m_TargetCameraState, positionLerpPct, rotationLerpPct); + + m_InterpolatingCameraState.UpdateTransform(transform); + } + + float GetBoostFactor() + { +#if ENABLE_INPUT_SYSTEM + return boostFactorAction.ReadValue().y * 0.01f; +#else + return Input.mouseScrollDelta.y * 0.2f; +#endif + } + + Vector2 GetInputLookRotation() + { +#if ENABLE_INPUT_SYSTEM + return lookAction.ReadValue(); +#else + return new Vector2(Input.GetAxis("Mouse X"), Input.GetAxis("Mouse Y")) * 10; +#endif + } + + bool IsBoostPressed() + { +#if ENABLE_INPUT_SYSTEM + bool boost = Keyboard.current != null ? Keyboard.current.leftShiftKey.isPressed : false; + boost |= Gamepad.current != null ? Gamepad.current.xButton.isPressed : false; + return boost; +#else + return Input.GetKey(KeyCode.LeftShift); +#endif + + } + + bool IsEscapePressed() + { +#if ENABLE_INPUT_SYSTEM + return Keyboard.current != null ? Keyboard.current.escapeKey.isPressed : false; +#else + return Input.GetKey(KeyCode.Escape); +#endif + } + + bool IsCameraRotationAllowed() + { +#if ENABLE_INPUT_SYSTEM + bool canRotate = Mouse.current != null ? Mouse.current.rightButton.isPressed : false; + canRotate |= Gamepad.current != null ? Gamepad.current.rightStick.ReadValue().magnitude > 0 : false; + return canRotate; +#else + return Input.GetMouseButton(1); +#endif + } + + bool IsRightMouseButtonDown() + { +#if ENABLE_INPUT_SYSTEM + return Mouse.current != null ? Mouse.current.rightButton.isPressed : false; +#else + return Input.GetMouseButtonDown(1); +#endif + } + + bool IsRightMouseButtonUp() + { +#if ENABLE_INPUT_SYSTEM + return Mouse.current != null ? !Mouse.current.rightButton.isPressed : false; +#else + return Input.GetMouseButtonUp(1); +#endif + } + + } + +} \ No newline at end of file diff --git a/Assets/Scripts/SimpleCameraController.cs.meta b/Assets/Scripts/SimpleCameraController.cs.meta new file mode 100644 index 0000000..5bb6da8 --- /dev/null +++ b/Assets/Scripts/SimpleCameraController.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: be76e5f14cfee674cb30b491fb72b09b +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Settings.meta b/Assets/Settings.meta new file mode 100644 index 0000000..8e9f13c --- /dev/null +++ b/Assets/Settings.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 0735c275001a2c84dafdb30deced5d8d +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Settings/ForwardRenderer.asset b/Assets/Settings/ForwardRenderer.asset new file mode 100644 index 0000000..4514a2b --- /dev/null +++ b/Assets/Settings/ForwardRenderer.asset @@ -0,0 +1,36 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + 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: de640fe3d0db1804a85f9fc8f5cadab6, type: 3} + m_Name: ForwardRenderer + m_EditorClassIdentifier: + m_RendererFeatures: [] + postProcessData: {fileID: 11400000, guid: 41439944d30ece34e96484bdb6645b55, type: 2} + shaders: + blitPS: {fileID: 4800000, guid: c17132b1f77d20942aa75f8429c0f8bc, type: 3} + copyDepthPS: {fileID: 4800000, guid: d6dae50ee9e1bfa4db75f19f99355220, type: 3} + screenSpaceShadowPS: {fileID: 4800000, guid: 0f854b35a0cf61a429bd5dcfea30eddd, + type: 3} + samplingPS: {fileID: 4800000, guid: 04c410c9937594faa893a11dceb85f7e, type: 3} + fallbackErrorPS: {fileID: 4800000, guid: e6e9a19c3678ded42a3bc431ebef7dbd, type: 3} + m_OpaqueLayerMask: + serializedVersion: 2 + m_Bits: 4294967295 + m_TransparentLayerMask: + serializedVersion: 2 + m_Bits: 4294967295 + m_DefaultStencilState: + overrideStencilState: 0 + stencilReference: 0 + stencilCompareFunction: 8 + passOperation: 0 + failOperation: 0 + zFailOperation: 0 diff --git a/Assets/Settings/ForwardRenderer.asset.meta b/Assets/Settings/ForwardRenderer.asset.meta new file mode 100644 index 0000000..06d9cab --- /dev/null +++ b/Assets/Settings/ForwardRenderer.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 4a8e21d5c33334b11b34a596161b9360 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Settings/SampleSceneProfile.asset b/Assets/Settings/SampleSceneProfile.asset new file mode 100644 index 0000000..09b3c36 --- /dev/null +++ b/Assets/Settings/SampleSceneProfile.asset @@ -0,0 +1,186 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-7893295128165547882 +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: 0b2db86121404754db890f4c8dfe81b2, type: 3} + m_Name: Bloom + m_EditorClassIdentifier: + active: 1 + m_AdvancedMode: 0 + threshold: + m_OverrideState: 1 + m_Value: 1 + min: 0 + intensity: + m_OverrideState: 1 + m_Value: 1 + min: 0 + scatter: + m_OverrideState: 0 + m_Value: 0.7 + min: 0 + max: 1 + clamp: + m_OverrideState: 0 + m_Value: 65472 + min: 0 + tint: + m_OverrideState: 0 + m_Value: {r: 1, g: 1, b: 1, a: 1} + hdr: 0 + showAlpha: 0 + showEyeDropper: 1 + highQualityFiltering: + m_OverrideState: 0 + m_Value: 0 + skipIterations: + m_OverrideState: 0 + m_Value: 1 + min: 0 + max: 16 + dirtTexture: + m_OverrideState: 0 + m_Value: {fileID: 0} + dirtIntensity: + m_OverrideState: 0 + m_Value: 0 + min: 0 +--- !u!114 &-7011558710299706105 +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: 899c54efeace73346a0a16faa3afe726, type: 3} + m_Name: Vignette + m_EditorClassIdentifier: + active: 1 + m_AdvancedMode: 0 + color: + m_OverrideState: 1 + m_Value: {r: 0, g: 0, b: 0, a: 1} + hdr: 0 + showAlpha: 0 + showEyeDropper: 1 + center: + m_OverrideState: 1 + m_Value: {x: 0.5, y: 0.5} + intensity: + m_OverrideState: 1 + m_Value: 0.25 + min: 0 + max: 1 + smoothness: + m_OverrideState: 1 + m_Value: 0.4 + min: 0.01 + max: 1 + rounded: + m_OverrideState: 1 + m_Value: 0 +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + 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: d7fd9488000d3734a9e00ee676215985, type: 3} + m_Name: SampleSceneProfile + m_EditorClassIdentifier: + components: + - {fileID: 849379129802519247} + - {fileID: -7893295128165547882} + - {fileID: -7011558710299706105} + - {fileID: 1357121555225210233} +--- !u!114 &849379129802519247 +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: 97c23e3b12dc18c42a140437e53d3951, type: 3} + m_Name: Tonemapping + m_EditorClassIdentifier: + active: 1 + m_AdvancedMode: 0 + mode: + m_OverrideState: 1 + m_Value: 2 +--- !u!114 &1357121555225210233 +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: c01700fd266d6914ababb731e09af2eb, type: 3} + m_Name: DepthOfField + m_EditorClassIdentifier: + active: 1 + m_AdvancedMode: 0 + mode: + m_OverrideState: 1 + m_Value: 2 + gaussianStart: + m_OverrideState: 1 + m_Value: 10 + min: 0 + gaussianEnd: + m_OverrideState: 1 + m_Value: 30 + min: 0 + gaussianMaxRadius: + m_OverrideState: 1 + m_Value: 1 + min: 0.5 + max: 1.5 + highQualitySampling: + m_OverrideState: 1 + m_Value: 0 + focusDistance: + m_OverrideState: 1 + m_Value: 10 + min: 0.1 + aperture: + m_OverrideState: 1 + m_Value: 5.6 + min: 1 + max: 32 + focalLength: + m_OverrideState: 1 + m_Value: 50 + min: 1 + max: 300 + bladeCount: + m_OverrideState: 1 + m_Value: 5 + min: 3 + max: 9 + bladeCurvature: + m_OverrideState: 1 + m_Value: 1 + min: 0 + max: 1 + bladeRotation: + m_OverrideState: 1 + m_Value: 0 + min: -180 + max: 180 diff --git a/Assets/Settings/SampleSceneProfile.asset.meta b/Assets/Settings/SampleSceneProfile.asset.meta new file mode 100644 index 0000000..b82270c --- /dev/null +++ b/Assets/Settings/SampleSceneProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 10fc4df2da32a41aaa32d77bc913491c +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Settings/UniversalRP-HighQuality.asset b/Assets/Settings/UniversalRP-HighQuality.asset new file mode 100644 index 0000000..2ac23c8 --- /dev/null +++ b/Assets/Settings/UniversalRP-HighQuality.asset @@ -0,0 +1,53 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + 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: bf2edee5c58d82540a51f03df9d42094, type: 3} + m_Name: UniversalRP-HighQuality + m_EditorClassIdentifier: + k_AssetVersion: 5 + k_AssetPreviousVersion: 5 + m_RendererType: 1 + m_RendererData: {fileID: 0} + m_RendererDataList: + - {fileID: 11400000, guid: 4a8e21d5c33334b11b34a596161b9360, type: 2} + m_DefaultRendererIndex: 0 + m_RequireDepthTexture: 0 + m_RequireOpaqueTexture: 0 + m_OpaqueDownsampling: 1 + m_SupportsHDR: 1 + m_MSAA: 2 + m_RenderScale: 1 + m_MainLightRenderingMode: 1 + m_MainLightShadowsSupported: 1 + m_MainLightShadowmapResolution: 2048 + m_AdditionalLightsRenderingMode: 1 + m_AdditionalLightsPerObjectLimit: 4 + m_AdditionalLightShadowsSupported: 1 + m_AdditionalLightsShadowmapResolution: 512 + m_ShadowDistance: 50 + m_ShadowCascades: 1 + m_Cascade2Split: 0.25 + m_Cascade4Split: {x: 0.067, y: 0.2, z: 0.467} + m_ShadowDepthBias: 1 + m_ShadowNormalBias: 1 + m_SoftShadowsSupported: 1 + m_UseSRPBatcher: 1 + m_SupportsDynamicBatching: 0 + m_MixedLightingSupported: 1 + m_DebugLevel: 0 + m_ColorGradingMode: 0 + m_ColorGradingLutSize: 32 + m_ShadowType: 1 + m_LocalShadowsSupported: 0 + m_LocalShadowsAtlasResolution: 256 + m_MaxPixelLights: 0 + m_ShadowAtlasResolution: 256 + m_ShaderVariantLogLevel: 0 diff --git a/Assets/Settings/UniversalRP-HighQuality.asset.meta b/Assets/Settings/UniversalRP-HighQuality.asset.meta new file mode 100644 index 0000000..c8fa317 --- /dev/null +++ b/Assets/Settings/UniversalRP-HighQuality.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 19ba41d7c0026c3459d37c2fe90c55a0 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Settings/UniversalRP-LowQuality.asset b/Assets/Settings/UniversalRP-LowQuality.asset new file mode 100644 index 0000000..ab81d03 --- /dev/null +++ b/Assets/Settings/UniversalRP-LowQuality.asset @@ -0,0 +1,53 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + 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: bf2edee5c58d82540a51f03df9d42094, type: 3} + m_Name: UniversalRP-LowQuality + m_EditorClassIdentifier: + k_AssetVersion: 5 + k_AssetPreviousVersion: 5 + m_RendererType: 1 + m_RendererData: {fileID: 0} + m_RendererDataList: + - {fileID: 11400000, guid: 4a8e21d5c33334b11b34a596161b9360, type: 2} + m_DefaultRendererIndex: 0 + m_RequireDepthTexture: 0 + m_RequireOpaqueTexture: 0 + m_OpaqueDownsampling: 1 + m_SupportsHDR: 0 + m_MSAA: 1 + m_RenderScale: 1 + m_MainLightRenderingMode: 1 + m_MainLightShadowsSupported: 0 + m_MainLightShadowmapResolution: 2048 + m_AdditionalLightsRenderingMode: 0 + m_AdditionalLightsPerObjectLimit: 4 + m_AdditionalLightShadowsSupported: 0 + m_AdditionalLightsShadowmapResolution: 512 + m_ShadowDistance: 50 + m_ShadowCascades: 0 + m_Cascade2Split: 0.25 + m_Cascade4Split: {x: 0.067, y: 0.2, z: 0.467} + m_ShadowDepthBias: 1 + m_ShadowNormalBias: 1 + m_SoftShadowsSupported: 0 + m_UseSRPBatcher: 1 + m_SupportsDynamicBatching: 0 + m_MixedLightingSupported: 1 + m_DebugLevel: 0 + m_ColorGradingMode: 0 + m_ColorGradingLutSize: 16 + m_ShadowType: 1 + m_LocalShadowsSupported: 0 + m_LocalShadowsAtlasResolution: 256 + m_MaxPixelLights: 0 + m_ShadowAtlasResolution: 256 + m_ShaderVariantLogLevel: 0 diff --git a/Assets/Settings/UniversalRP-LowQuality.asset.meta b/Assets/Settings/UniversalRP-LowQuality.asset.meta new file mode 100644 index 0000000..040da39 --- /dev/null +++ b/Assets/Settings/UniversalRP-LowQuality.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: a31e9f9f9c9d4b9429ed0d1234e22103 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Settings/UniversalRP-MediumQuality.asset b/Assets/Settings/UniversalRP-MediumQuality.asset new file mode 100644 index 0000000..23de11b --- /dev/null +++ b/Assets/Settings/UniversalRP-MediumQuality.asset @@ -0,0 +1,53 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + 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: bf2edee5c58d82540a51f03df9d42094, type: 3} + m_Name: UniversalRP-MediumQuality + m_EditorClassIdentifier: + k_AssetVersion: 5 + k_AssetPreviousVersion: 5 + m_RendererType: 1 + m_RendererData: {fileID: 0} + m_RendererDataList: + - {fileID: 11400000, guid: 4a8e21d5c33334b11b34a596161b9360, type: 2} + m_DefaultRendererIndex: 0 + m_RequireDepthTexture: 0 + m_RequireOpaqueTexture: 0 + m_OpaqueDownsampling: 1 + m_SupportsHDR: 0 + m_MSAA: 1 + m_RenderScale: 1 + m_MainLightRenderingMode: 1 + m_MainLightShadowsSupported: 1 + m_MainLightShadowmapResolution: 2048 + m_AdditionalLightsRenderingMode: 1 + m_AdditionalLightsPerObjectLimit: 4 + m_AdditionalLightShadowsSupported: 0 + m_AdditionalLightsShadowmapResolution: 512 + m_ShadowDistance: 50 + m_ShadowCascades: 0 + m_Cascade2Split: 0.25 + m_Cascade4Split: {x: 0.067, y: 0.2, z: 0.467} + m_ShadowDepthBias: 1 + m_ShadowNormalBias: 1 + m_SoftShadowsSupported: 0 + m_UseSRPBatcher: 1 + m_SupportsDynamicBatching: 0 + m_MixedLightingSupported: 1 + m_DebugLevel: 0 + m_ColorGradingMode: 0 + m_ColorGradingLutSize: 32 + m_ShadowType: 1 + m_LocalShadowsSupported: 0 + m_LocalShadowsAtlasResolution: 256 + m_MaxPixelLights: 0 + m_ShadowAtlasResolution: 256 + m_ShaderVariantLogLevel: 0 diff --git a/Assets/Settings/UniversalRP-MediumQuality.asset.meta b/Assets/Settings/UniversalRP-MediumQuality.asset.meta new file mode 100644 index 0000000..d8477b7 --- /dev/null +++ b/Assets/Settings/UniversalRP-MediumQuality.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d847b876476d3d6468f5dfcd34266f96 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ShootingSystem.cs b/Assets/ShootingSystem.cs new file mode 100644 index 0000000..9a04813 --- /dev/null +++ b/Assets/ShootingSystem.cs @@ -0,0 +1,55 @@ +using System.Collections; +using System.Collections.Generic; +using UnityEngine; +using DG.Tweening; + +public class ShootingSystem : MonoBehaviour +{ + + [SerializeField] ParticleSystem inkParticle; + [SerializeField] ParticleSystem extraParticle; + [SerializeField] Transform[] ikHandlers; + [SerializeField] Transform splatGun; + [SerializeField] Transform splatGunNozzle; + + // Start is called before the first frame update + void Start() + { + + } + + // Update is called once per frame + void Update() + { + + GetComponent().blockRotationPlayer= Input.GetMouseButton(0); + if (Input.GetMouseButton(0)) + { + foreach (Transform handler in ikHandlers) + { + if (!DOTween.IsTweening(handler)) + { + handler.DOComplete(); + handler.DOPunchPosition(-transform.forward / 13, .15f, 10, 1); + } + } + + if (!DOTween.IsTweening(splatGunNozzle)) + { + splatGunNozzle.DOComplete(); + splatGunNozzle.DOPunchScale(new Vector3(0,1,1) / 3, .15f, 10, 1); + } + GetComponent().RotateToCamera(transform); + } + if (Input.GetMouseButtonDown(0)) + { + inkParticle.Play(); + extraParticle.Play(); + } + else if (Input.GetMouseButtonUp(0)) + { + inkParticle.Stop(); + extraParticle.Stop(); + } + } +} diff --git a/Assets/ShootingSystem.cs.meta b/Assets/ShootingSystem.cs.meta new file mode 100644 index 0000000..5515af2 --- /dev/null +++ b/Assets/ShootingSystem.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: bfb06fe47b1efa9418445b7194ad6456 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/SplatGun.cs b/Assets/SplatGun.cs new file mode 100644 index 0000000..2b4d944 --- /dev/null +++ b/Assets/SplatGun.cs @@ -0,0 +1,8 @@ +using System.Collections; +using System.Collections.Generic; +using UnityEngine; + +[SelectionBase] +public class SplatGun : MonoBehaviour +{ +} diff --git a/Assets/SplatGun.cs.meta b/Assets/SplatGun.cs.meta new file mode 100644 index 0000000..765f652 --- /dev/null +++ b/Assets/SplatGun.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 4f8cadbd2b3aeb1409a01ef193da371a +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Splattershot-Splatoon.meta b/Assets/Splattershot-Splatoon.meta new file mode 100644 index 0000000..a7841d2 --- /dev/null +++ b/Assets/Splattershot-Splatoon.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: cec6b4fb65f153c439665cceaec00d9e +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Splattershot-Splatoon/base.mat b/Assets/Splattershot-Splatoon/base.mat new file mode 100644 index 0000000..4906030 --- /dev/null +++ b/Assets/Splattershot-Splatoon/base.mat @@ -0,0 +1,124 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 6 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: base + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_ShaderKeywords: _METALLICSPECGLOSSMAP _NORMALMAP _OCCLUSIONMAP + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: 2000 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: d23b99799ea4b1340b4bdb4e1303a3be, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 2800000, guid: a216015e5c81e5a4ea59c6943789f9aa, type: 3} + 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: d23b99799ea4b1340b4bdb4e1303a3be, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 2800000, guid: 2de120c1db4b8e04f9a6a2d4c8a143ac, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 2800000, guid: bbbc6f57cb2b0f14dbca7e3cbb4b1213, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Floats: + - _AlphaClip: 0 + - _Blend: 0 + - _BumpScale: 1 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 2 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 0 + - _Glossiness: 0 + - _GlossyReflections: 0 + - _Metallic: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.005 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 0.5 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _Surface: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] +--- !u!114 &1639270715320388115 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 4 diff --git a/Assets/Splattershot-Splatoon/base.mat.meta b/Assets/Splattershot-Splatoon/base.mat.meta new file mode 100644 index 0000000..e1fe533 --- /dev/null +++ b/Assets/Splattershot-Splatoon/base.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 2c4716a8ce690bc4d8cfc9547b01bd9b +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Splattershot-Splatoon/handle.mat b/Assets/Splattershot-Splatoon/handle.mat new file mode 100644 index 0000000..e6c5928 --- /dev/null +++ b/Assets/Splattershot-Splatoon/handle.mat @@ -0,0 +1,124 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 6 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: handle + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_ShaderKeywords: _METALLICSPECGLOSSMAP _NORMALMAP _OCCLUSIONMAP + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: 2000 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: d5ec62e2269fb4b489f03c4f0b9034e2, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 2800000, guid: e1a5c22d931ad884db093b61613c2c51, type: 3} + 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: d5ec62e2269fb4b489f03c4f0b9034e2, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 2800000, guid: 0fd3fafe2496beb4daa5e058338a29a9, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 2800000, guid: 5caf3e1772e56bd4393c0d6e49fe34f3, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Floats: + - _AlphaClip: 0 + - _Blend: 0 + - _BumpScale: 1 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 2 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 0 + - _Glossiness: 0 + - _GlossyReflections: 0 + - _Metallic: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.005 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 0.5 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _Surface: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] +--- !u!114 &1639270715320388115 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 4 diff --git a/Assets/Splattershot-Splatoon/handle.mat.meta b/Assets/Splattershot-Splatoon/handle.mat.meta new file mode 100644 index 0000000..cee66b6 --- /dev/null +++ b/Assets/Splattershot-Splatoon/handle.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: a632a98bf15d54f4dbf0ae5733cd9df2 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Splattershot-Splatoon/model.dae b/Assets/Splattershot-Splatoon/model.dae new file mode 100644 index 0000000..7d1cdb3 --- /dev/null +++ b/Assets/Splattershot-Splatoon/model.dae @@ -0,0 +1,560 @@ + + + + + Assimp + Assimp Exporter + + 2019-10-10T00:00:20 + 2019-10-10T00:00:20 + + Y_UP + + + + + + + + 0.588 0.588 0.588 1 + + + + + + + + + + + 0.588 0.588 0.588 1 + + + + + + + + + + + 0.588 0.588 0.588 1 + + + + + + + + + + + 0.588 0.588 0.588 1 + + + + + + + + + + + 0.588 0.588 0.588 1 + + + + + + + + + + + 0.588 0.588 0.588 1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0.963842 -0.225083 -0.00168724 0.963842 -0.239528 0.0802362 0.711908 -0.160621 0.0802362 0.711908 -0.150934 0.0253006 0.963843 -0.183489 -0.0737295 0.711908 -0.123043 -0.0230088 0.963843 -0.119764 -0.127201 0.711908 -0.0803104 -0.0588654 0.963843 -0.0415936 -0.155653 0.711908 -0.0278915 -0.0779444 0.963843 0.0415936 -0.155653 0.711908 0.0278915 -0.0779444 0.963843 0.119764 -0.127201 0.711908 0.0803103 -0.0588654 0.963843 0.183489 -0.0737295 0.711908 0.123043 -0.0230088 0.963843 0.225083 -0.00168725 0.711908 0.150934 0.0253006 0.963843 0.239528 0.0802361 0.711908 0.160621 0.0802361 0.963843 0.225083 0.16216 0.963843 0.239528 0.0802361 0.711908 0.160621 0.0802361 0.711908 0.150934 0.135172 0.963843 0.183489 0.234202 0.711908 0.123043 0.183481 0.963843 0.119764 0.287673 0.711908 0.0803104 0.219338 0.963843 0.0415937 0.316125 0.711908 0.0278915 0.238417 0.963843 -0.0415935 0.316125 0.711908 -0.0278914 0.238417 0.963843 -0.119764 0.287674 0.711908 -0.0803103 0.219338 0.963843 -0.183489 0.234202 0.711908 -0.123043 0.183481 0.963842 -0.225083 0.16216 0.711908 -0.150934 0.135172 0.963842 -0.239528 0.0802362 0.711908 -0.160621 0.0802362 0.971868 -0.00787336 0.124888 0.971868 -0.0226704 0.119502 0.971868 -0.0347331 0.109381 0.971868 -0.0426064 0.0957437 0.971868 -0.0453408 0.0802362 0.971868 -0.0426064 0.0647287 0.971868 -0.0347331 0.0510917 0.971868 -0.0226704 0.0409699 0.971868 -0.00787338 0.0355842 0.971868 0.00787323 0.0355842 0.971868 0.0226703 0.0409699 0.971868 0.0347329 0.0510917 0.971868 0.0426063 0.0647287 0.971868 0.0453407 0.0802361 0.971868 0.0426063 0.0957436 0.971868 0.0347329 0.109381 0.971868 0.0226703 0.119502 0.971868 0.00787327 0.124888 0.711908 -0.136691 0.0802362 0.711908 -0.128447 0.0334852 0.711908 -0.128447 0.126987 0.711908 -0.136691 0.0802362 0.711908 -0.104711 0.168099 0.711908 -0.0683453 0.198614 0.711908 -0.023736 0.21485 0.711908 0.0237361 0.21485 0.711908 0.0683453 0.198614 0.711908 0.104711 0.168099 0.711908 0.128447 0.126987 0.711908 0.136691 0.0802361 0.711908 0.128447 0.0334852 0.711908 0.136691 0.0802361 0.711908 0.104711 -0.00762685 0.711908 0.0683453 -0.0381413 0.711908 0.0237361 -0.0543778 0.711908 -0.0237361 -0.0543778 0.711908 -0.0683453 -0.0381414 0.711908 -0.104711 -0.00762685 0.660365 -0.136691 0.0802362 0.660365 -0.128447 0.0334852 0.711908 -0.128447 0.0334852 0.711908 -0.136691 0.0802362 0.660365 -0.128447 0.126987 0.660365 -0.136691 0.0802362 0.711908 -0.136691 0.0802362 0.711908 -0.128447 0.126987 0.660365 -0.104711 0.168099 0.711908 -0.104711 0.168099 0.660365 -0.0683452 0.198614 0.711908 -0.0683453 0.198614 0.660365 -0.023736 0.21485 0.711908 -0.023736 0.21485 0.660365 0.0237361 0.21485 0.711908 0.0237361 0.21485 0.660365 0.0683453 0.198614 0.711908 0.0683453 0.198614 0.660365 0.104711 0.168099 0.711908 0.104711 0.168099 0.660365 0.128447 0.126987 0.711908 0.128447 0.126987 0.660365 0.136691 0.0802361 0.711908 0.136691 0.0802361 0.660365 0.128447 0.0334852 0.660365 0.136691 0.0802361 0.711908 0.136691 0.0802361 0.711908 0.128447 0.0334852 0.660365 0.104711 -0.00762685 0.711908 0.104711 -0.00762685 0.660365 0.0683453 -0.0381414 0.711908 0.0683453 -0.0381413 0.660365 0.0237361 -0.0543778 0.711908 0.0237361 -0.0543778 0.660365 -0.0237361 -0.0543778 0.711908 -0.0237361 -0.0543778 0.660365 -0.0683453 -0.0381414 0.711908 -0.0683453 -0.0381414 0.660365 -0.104711 -0.00762685 0.711908 -0.104711 -0.00762685 0.963842 -0.120753 0.0362856 0.963842 -0.128503 0.0802362 0.963842 -0.239528 0.0802362 0.963842 -0.225083 -0.00168724 0.963843 -0.0984388 -0.00236379 0.963843 -0.183489 -0.0737295 0.963843 -0.0642514 -0.0310505 0.963843 -0.119764 -0.127201 0.963843 -0.0223143 -0.0463144 0.963843 -0.0415936 -0.155653 0.963843 0.0223142 -0.0463144 0.963843 0.0415936 -0.155653 0.963843 0.0642513 -0.0310505 0.963843 0.119764 -0.127201 0.963843 0.0984388 -0.0023638 0.963843 0.183489 -0.0737295 0.963843 0.120753 0.0362857 0.963843 0.225083 -0.00168725 0.963843 0.128503 0.0802361 0.963843 0.239528 0.0802361 0.963843 0.120753 0.124187 0.963843 0.225083 0.16216 0.963843 0.0984388 0.162836 0.963843 0.183489 0.234202 0.963843 0.0642513 0.191523 0.963843 0.119764 0.287673 0.963843 0.0223143 0.206787 0.963843 0.0415937 0.316125 0.963843 -0.0223142 0.206787 0.963843 -0.0415935 0.316125 0.963843 -0.0642513 0.191523 0.963843 -0.119764 0.287674 0.963843 -0.0984388 0.162836 0.963843 -0.183489 0.234202 0.963842 -0.120753 0.124187 0.963842 -0.225083 0.16216 1 -0.120753 0.0362856 1 -0.128503 0.0802362 0.963842 -0.128503 0.0802362 0.963842 -0.120753 0.0362856 1 -0.0984389 -0.00236379 0.963843 -0.0984388 -0.00236379 1 -0.0642514 -0.0310505 0.963843 -0.0642514 -0.0310505 1 -0.0223143 -0.0463144 0.963843 -0.0223143 -0.0463144 1 0.0223142 -0.0463144 0.963843 0.0223142 -0.0463144 1 0.0642513 -0.0310505 0.963843 0.0642513 -0.0310505 1 0.0984387 -0.0023638 0.963843 0.0984388 -0.0023638 1 0.120753 0.0362857 0.963843 0.120753 0.0362857 1 0.128503 0.0802361 0.963843 0.128503 0.0802361 1 0.120753 0.124187 0.963843 0.120753 0.124187 1 0.0984387 0.162836 0.963843 0.0984388 0.162836 1 0.0642513 0.191523 0.963843 0.0642513 0.191523 1 0.0223142 0.206787 0.963843 0.0223143 0.206787 1 -0.0223143 0.206787 0.963843 -0.0223142 0.206787 1 -0.0642514 0.191523 0.963843 -0.0642513 0.191523 1 -0.0984389 0.162836 0.963843 -0.0984388 0.162836 1 -0.120753 0.124187 0.963842 -0.120753 0.124187 1 -0.0727292 0.0537649 1 -0.0773968 0.0802362 1 -0.0592894 0.0304865 1 -0.0386984 0.0132086 1 -0.0134398 0.0040152 1 0.0134397 0.0040152 1 0.0386983 0.0132086 1 0.0592893 0.0304865 1 0.0727291 0.0537649 1 0.0773967 0.0802361 1 0.0727291 0.106707 1 0.0592893 0.129986 1 0.0386983 0.147264 1 0.0134397 0.156457 1 -0.0134398 0.156457 1 -0.0386984 0.147264 1 -0.0592894 0.129986 1 -0.0727292 0.106708 0.971868 -0.0727292 0.0537649 0.971868 -0.0773968 0.0802362 0.971868 -0.0592894 0.0304865 0.971868 -0.0386984 0.0132086 0.971868 -0.0134398 0.0040152 0.971868 0.0134397 0.0040152 0.971868 0.0386983 0.0132086 0.971868 0.0592893 0.0304865 0.971868 0.0727291 0.0537649 0.971868 0.0773967 0.0802361 0.971868 0.0727291 0.106707 0.971868 0.0592893 0.129986 0.971868 0.0386983 0.147264 0.971868 0.0134397 0.156457 0.971868 -0.0134398 0.156457 0.971868 -0.0386984 0.147264 0.971868 -0.0592894 0.129986 0.971868 -0.0727292 0.106708 0.971868 -0.0773968 0.0802362 0.971868 -0.0727292 0.0537649 0.971868 -0.0592894 0.0304865 0.971868 -0.0386984 0.0132086 0.971868 -0.0134398 0.0040152 0.971868 0.0134397 0.0040152 0.971868 0.0386983 0.0132086 0.971868 0.0592893 0.0304865 0.971868 0.0727291 0.0537649 0.971868 0.0773967 0.0802361 0.971868 0.0727291 0.106707 0.971868 0.0592893 0.129986 0.971868 0.0386983 0.147264 0.971868 0.0134397 0.156457 0.971868 -0.0134398 0.156457 0.971868 -0.0386984 0.147264 0.971868 -0.0592894 0.129986 0.971868 -0.0727292 0.106708 + + + + + + + + + + -0.298889 -0.896737 -0.326386 -0.298889 -0.954288 1.34306e-07 -0.775303 -0.631589 1.10935e-07 -0.775303 -0.5935 -0.216016 -0.298889 -0.731027 -0.613405 -0.775303 -0.483825 -0.405978 -0.298889 -0.477144 -0.826438 -0.775303 -0.315795 -0.546972 -0.298889 -0.165711 -0.93979 -0.775303 -0.109674 -0.621994 -0.298889 0.165711 -0.93979 -0.775303 0.109674 -0.621994 -0.298889 0.477144 -0.826437 -0.775303 0.315795 -0.546972 -0.298888 0.731027 -0.613405 -0.775303 0.483825 -0.405978 -0.298888 0.896737 -0.326386 -0.775303 0.5935 -0.216016 -0.298889 0.954288 -2.98458e-08 -0.775303 0.631589 -3.92893e-08 -0.298888 0.896738 0.326386 -0.298889 0.954288 -2.98458e-08 -0.775303 0.631589 -3.92893e-08 -0.775303 0.5935 0.216016 -0.298888 0.731027 0.613404 -0.775303 0.483825 0.405978 -0.298889 0.477144 0.826437 -0.775303 0.315795 0.546972 -0.298889 0.165711 0.93979 -0.775303 0.109675 0.621994 -0.298889 -0.16571 0.93979 -0.775303 -0.109674 0.621994 -0.298889 -0.477143 0.826438 -0.775303 -0.315794 0.546972 -0.298889 -0.731027 0.613405 -0.775303 -0.483825 0.405978 -0.298889 -0.896737 0.326386 -0.775303 -0.5935 0.216016 -0.298889 -0.954288 1.34306e-07 -0.775303 -0.631589 1.10935e-07 1 1.05839e-07 -3.52344e-07 1 2.22601e-07 -3.09846e-07 1 -5.83566e-07 -7.59549e-07 1 -3.30692e-06 -2.7072e-08 1 -1.53161e-06 -3.664e-13 1 -3.22853e-06 2.25677e-07 1 -3.72366e-07 7.2813e-07 1 2.22601e-07 3.09846e-07 1 1.05839e-07 3.52344e-07 1 -1.84166e-08 3.52344e-07 1 -1.35178e-07 3.09846e-07 1 -2.30364e-07 2.29976e-07 1 -2.92491e-07 1.22368e-07 1 -3.14068e-07 1.24395e-13 1 -2.92491e-07 -1.22368e-07 1 -2.30364e-07 -2.29976e-07 1 -1.35178e-07 -3.09846e-07 1 -1.84165e-08 -3.52344e-07 -0.748361 -0.663292 1.62927e-07 -0.748361 -0.623291 -0.226859 -0.748361 -0.62329 0.22686 -0.748361 -0.663292 1.62927e-07 -0.748361 -0.508111 0.426356 -0.748361 -0.331646 0.574428 -0.748361 -0.115179 0.653215 -0.748361 0.11518 0.653215 -0.74836 0.331646 0.574428 -0.74836 0.508111 0.426356 -0.74836 0.623291 0.226859 -0.74836 0.663292 -6.38931e-09 -0.74836 0.623291 -0.226859 -0.74836 0.663292 -6.38931e-09 -0.74836 0.508111 -0.426356 -0.74836 0.331646 -0.574428 -0.74836 0.11518 -0.653215 -0.748361 -0.115179 -0.653215 -0.74836 -0.331646 -0.574428 -0.748361 -0.508111 -0.426356 -3.56811e-07 -1 2.50451e-07 -3.35293e-07 -0.939693 -0.34202 -0.748361 -0.623291 -0.226859 -0.748361 -0.663292 1.62927e-07 -3.35293e-07 -0.939692 0.342021 -3.56811e-07 -1 2.50451e-07 -0.748361 -0.663292 1.62927e-07 -0.748361 -0.62329 0.22686 -2.73333e-07 -0.766044 0.642788 -0.748361 -0.508111 0.426356 -1.45534e-07 -0.499999 0.866026 -0.748361 -0.331646 0.574428 -4.45719e-08 -0.173648 0.984808 -0.748361 -0.115179 0.653215 3.58784e-08 0.173649 0.984808 -0.748361 0.11518 0.653215 1.23766e-07 0.5 0.866025 -0.74836 0.331646 0.574428 3.75161e-07 0.766045 0.642787 -0.74836 0.508111 0.426356 3.81623e-07 0.939693 0.34202 -0.74836 0.623291 0.226859 3.56811e-07 1 -1.92654e-08 -0.74836 0.663292 -6.38931e-09 3.35293e-07 0.939693 -0.34202 3.56811e-07 1 -1.92654e-08 -0.74836 0.663292 -6.38931e-09 -0.74836 0.623291 -0.226859 2.73333e-07 0.766044 -0.642788 -0.74836 0.508111 -0.426356 2.77984e-07 0.5 -0.866025 -0.74836 0.331646 -0.574428 9.48432e-08 0.173648 -0.984808 -0.74836 0.11518 -0.653215 -3.58783e-08 -0.173648 -0.984808 -0.748361 -0.115179 -0.653215 -8.28492e-08 -0.5 -0.866025 -0.74836 -0.331646 -0.574428 -2.38946e-07 -0.766044 -0.642788 -0.748361 -0.508111 -0.426356 0.74836 -0.623291 -0.226859 0.74836 -0.663292 -6.38931e-09 1 4.37114e-08 2.67655e-24 1 -1.1793e-07 2.56076e-07 0.74836 -0.508112 -0.426356 1 1.47114e-09 1.00365e-07 0.74836 -0.331646 -0.574428 1 1.52828e-07 -6.29984e-08 0.74836 -0.115179 -0.653215 1 4.37114e-08 2.67655e-24 0.748361 0.11518 -0.653215 1 4.37114e-08 2.67655e-24 0.748361 0.331646 -0.574428 1 4.37114e-08 2.67655e-24 0.748361 0.508111 -0.426356 1 -2.67622e-08 -1.34012e-07 0.748361 0.62329 -0.226859 1 6.17927e-10 -1.18398e-07 0.748361 0.663292 -7.98663e-08 1 4.37114e-08 2.67655e-24 0.748361 0.62329 0.226859 1 -3.71094e-08 1.28038e-07 0.748361 0.508111 0.426356 1 -3.72777e-08 9.65192e-08 0.748361 0.331646 0.574427 1 4.37114e-08 2.67655e-24 0.748361 0.11518 0.653215 1 4.37114e-08 2.67655e-24 0.74836 -0.115179 0.653215 1 4.37114e-08 2.67655e-24 0.74836 -0.331646 0.574429 1 1.5577e-07 1.01826e-07 0.74836 -0.508111 0.426357 1 -1.62468e-08 -1.71504e-07 0.74836 -0.623291 0.226859 1 -4.24756e-08 -2.36796e-07 0.67003 -0.697565 -0.253893 0.670031 -0.742334 -8.75959e-08 0.74836 -0.663292 -6.38931e-09 0.74836 -0.623291 -0.226859 0.670031 -0.56866 -0.477162 0.74836 -0.508112 -0.426356 0.670031 -0.371167 -0.642879 0.74836 -0.331646 -0.574428 0.670031 -0.128905 -0.731055 0.74836 -0.115179 -0.653215 0.670031 0.128905 -0.731055 0.748361 0.11518 -0.653215 0.670031 0.371166 -0.642879 0.748361 0.331646 -0.574428 0.670031 0.56866 -0.477162 0.748361 0.508111 -0.426356 0.670031 0.697565 -0.253893 0.748361 0.62329 -0.226859 0.670031 0.742333 -8.58082e-08 0.748361 0.663292 -7.98663e-08 0.670031 0.697565 0.253893 0.748361 0.62329 0.226859 0.670031 0.56866 0.477162 0.748361 0.508111 0.426356 0.670031 0.371167 0.642879 0.748361 0.331646 0.574427 0.670031 0.128905 0.731055 0.748361 0.11518 0.653215 0.670031 -0.128905 0.731055 0.74836 -0.115179 0.653215 0.670031 -0.371166 0.64288 0.74836 -0.331646 0.574429 0.670031 -0.56866 0.477163 0.74836 -0.508111 0.426357 0.67003 -0.697566 0.253893 0.74836 -0.623291 0.226859 0.74836 0.623291 0.22686 0.748361 0.663292 1.15007e-07 0.748361 0.508111 0.426356 0.74836 0.331646 0.574428 0.748361 0.11518 0.653215 0.748361 -0.11518 0.653215 0.74836 -0.331646 0.574428 0.748361 -0.508111 0.426356 0.74836 -0.623291 0.226859 0.74836 -0.663292 1.15008e-07 0.74836 -0.623291 -0.226859 0.74836 -0.508111 -0.426356 0.74836 -0.331646 -0.574428 0.748361 -0.11518 -0.653215 0.748361 0.115179 -0.653215 0.74836 0.331646 -0.574428 0.748361 0.50811 -0.426357 0.748361 0.62329 -0.22686 0.670031 0.697565 0.253893 0.670031 0.742333 1.32288e-07 0.670031 0.56866 0.477163 0.670031 0.371167 0.642879 0.670031 0.128905 0.731056 0.670031 -0.128905 0.731056 0.670031 -0.371167 0.642879 0.670031 -0.56866 0.477163 0.670031 -0.697565 0.253893 0.670031 -0.742333 1.28712e-07 0.670031 -0.697565 -0.253893 0.670031 -0.56866 -0.477163 0.670031 -0.371167 -0.642879 0.670031 -0.128905 -0.731056 0.670031 0.128905 -0.731056 0.670031 0.371166 -0.64288 0.67003 0.56866 -0.477164 0.670031 0.697565 -0.253894 0.670031 0.742333 1.32288e-07 0.670031 0.697565 0.253893 0.670031 0.56866 0.477163 0.670031 0.371167 0.642879 0.670031 0.128905 0.731056 0.670031 -0.128905 0.731056 0.670031 -0.371167 0.642879 0.670031 -0.56866 0.477163 0.670031 -0.697565 0.253893 0.670031 -0.742333 1.28712e-07 0.670031 -0.697565 -0.253893 0.670031 -0.56866 -0.477163 0.670031 -0.371167 -0.642879 0.670031 -0.128905 -0.731056 0.670031 0.128905 -0.731056 0.670031 0.371166 -0.64288 0.67003 0.56866 -0.477164 0.670031 0.697565 -0.253894 + + + + + + + + + + 0.379095 -0.425449 0.821754 0.469625 -0.147089 0.870527 0.314944 -0.386607 0.866802 0.21015 -0.564944 0.79792 0.27688 -0.681569 0.677349 0.146061 -0.762712 0.630029 0.16975 -0.878797 0.445982 0.0891317 -0.912065 0.400242 0.0611959 -0.986109 0.154415 0.0324119 -0.990419 0.134237 -0.0479452 -0.986172 -0.158641 -0.0245214 -0.989292 -0.143874 -0.15651 -0.878808 -0.450777 -0.0816524 -0.908874 -0.409001 -0.263618 -0.681025 -0.683163 -0.139543 -0.758122 -0.637007 -0.365377 -0.423495 -0.828946 -0.203238 -0.558267 -0.804383 -0.459412 -0.143891 -0.876491 -0.314513 -0.386078 -0.867194 0.38682 0.426509 -0.817594 0.476918 0.149373 -0.866162 0.319079 0.391683 -0.863002 0.214596 0.569212 -0.793692 0.284987 0.681831 -0.673713 0.150496 0.765792 -0.625231 0.178103 0.8787 -0.442906 0.0935546 0.913893 -0.395028 0.0696712 0.985969 -0.151695 0.0368388 0.990984 -0.128819 -0.0394713 0.986112 0.161324 -0.0200831 0.988591 0.149282 -0.148161 0.878727 0.453748 -0.0772014 0.906916 0.414179 -0.255517 0.680624 0.686631 -0.135069 0.75493 0.641746 -0.357618 0.42235 0.832905 -0.198717 0.553873 0.808539 -0.452082 0.141595 0.880666 -0.310333 0.380947 0.870961 3.52344e-07 5.80269e-08 1 3.09846e-07 5.26899e-08 1 7.59549e-07 -2.43899e-08 1 2.70718e-08 -7.28663e-08 1 4.28783e-13 3.99988e-08 1 -2.25678e-07 -8.72273e-08 1 -7.28131e-07 -7.90622e-08 1 -3.09846e-07 3.67724e-07 1 -3.52344e-07 -8.64432e-08 1 -3.52344e-07 1.00123e-06 1 -3.09846e-07 -7.62372e-08 1 -2.29976e-07 -1.28448e-06 1 -1.22368e-07 -8.3856e-08 1 -7.23589e-14 1.65684e-07 1 1.22368e-07 7.49426e-08 1 2.29976e-07 6.25577e-07 1 3.09846e-07 -2.51814e-08 1 3.52344e-07 8.88958e-07 1 0.329762 -0.372054 0.867659 0.217351 -0.553574 0.803937 -0.201346 0.539351 0.817655 -0.324826 0.366486 0.871881 -0.135474 0.746327 0.651646 -0.0773536 0.903753 0.421006 -0.0195708 0.988213 0.151827 0.0385538 0.990696 -0.130517 0.0968748 0.911388 -0.399983 0.155154 0.759053 -0.632271 0.22202 0.557679 -0.799814 0.334397 0.377284 -0.863617 -0.205957 -0.543472 -0.813769 -0.329371 -0.371613 -0.867997 -0.139975 -0.749291 -0.64728 -0.0818441 -0.905578 -0.416209 -0.0240839 -0.988877 -0.146774 0.0340102 -0.990176 0.135631 0.0922876 -0.909664 0.404963 0.15051 -0.756105 0.636908 -1 3.5682e-07 3.62811e-05 -1 -9.35569e-06 2.66849e-05 -0.663292 0.703211 0.256004 -0.663292 0.748361 5.8288e-05 1 -3.55088e-07 4.73325e-09 1 -3.56811e-07 -5.51075e-14 0.663292 -0.748361 1.83823e-07 0.663292 -0.703229 0.255955 1 -3.65645e-07 -1.05279e-08 0.663292 -0.573277 0.481037 1 -3.23017e-07 -1.84457e-08 0.663292 -0.37418 0.648099 1 -2.9342e-07 -6.47821e-09 0.663292 -0.129952 0.736991 1 -2.44297e-07 6.6444e-09 0.663292 0.129951 0.736991 1 -2.63254e-07 9.07707e-09 0.663292 0.37418 0.648099 1 -4.98489e-07 1.04296e-08 0.663292 0.573277 0.481037 1 -4.02214e-07 -1.07166e-08 0.663292 0.703229 0.255955 1 -3.56811e-07 2.7629e-07 0.663292 0.74836 8.80968e-07 -1 -1.81878e-05 -5.0951e-05 -1 3.5681e-07 -6.10717e-05 -0.663292 -0.74836 -8.6391e-05 -0.663292 -0.703252 0.25589 -1 -1.8995e-05 -2.30626e-05 -0.663292 -0.573294 0.481017 -1 -4.84469e-06 -3.11807e-06 -0.663292 -0.37418 0.648099 -1 -5.43831e-07 -1.92199e-07 -0.663292 -0.129952 0.736991 -1 -1.29045e-07 5.91859e-08 -0.663292 0.129951 0.736991 -1 -5.18309e-07 3.94912e-07 -0.663292 0.374176 0.648102 -1 -5.98941e-06 7.50964e-06 -0.663292 0.573261 0.481057 -0.174317 0.145185 -0.973927 -3.6037e-08 -3.10261e-08 -1 5.62625e-15 -1.28714e-07 -1 2.56076e-07 -4.86067e-07 -1 -0.352735 0.239494 -0.904555 1.00365e-07 -4.3839e-07 -1 -0.525168 0.232736 -0.818555 -6.29984e-08 4.4975e-07 -1 -0.645613 0.0993661 -0.757172 -1.58957e-14 3.63651e-07 -1 -0.645613 -0.0993656 -0.757173 -1.61781e-14 3.70113e-07 -1 -0.525168 -0.232735 -0.818555 -2.73178e-15 6.24958e-08 -1 -0.352734 -0.239495 -0.904556 -1.34012e-07 -1.80907e-07 -1 -0.174318 -0.145184 -0.973927 -1.18398e-07 3.25195e-07 -1 1.05978e-07 -2.39979e-07 -1 5.30272e-15 -1.21312e-07 -1 0.174318 0.145184 -0.973927 1.28038e-07 -4.12786e-07 -1 0.352734 0.239495 -0.904556 9.65192e-08 5.63169e-08 -1 0.525168 0.232736 -0.818556 -7.27641e-15 1.66465e-07 -1 0.645613 0.099366 -0.757173 1.04383e-14 -2.388e-07 -1 0.645613 -0.099366 -0.757172 1.38678e-14 -3.17258e-07 -1 0.525169 -0.232736 -0.818555 1.01826e-07 -1.57696e-07 -1 0.352735 -0.239495 -0.904555 -1.71504e-07 3.84895e-07 -1 0.174317 -0.145185 -0.973928 -2.36796e-07 8.08568e-08 -1 -0.193528 0.166048 -0.966941 0.00527471 0.00476108 -0.999975 0.0063388 0.00715177 -0.999954 -0.188838 0.127658 -0.973675 -0.391863 0.274984 -0.877967 -0.386392 0.188507 -0.902866 -0.580518 0.277767 -0.765405 -0.557411 0.154949 -0.81565 -0.716881 0.143305 -0.682308 -0.655086 0.0260876 -0.755104 -0.72898 -0.0716973 -0.68077 -0.639663 -0.135194 -0.756673 -0.606081 -0.226525 -0.762464 -0.526706 -0.229254 -0.818549 -0.414066 -0.247203 -0.876036 -0.367291 -0.217797 -0.904247 -0.207625 -0.152269 -0.966285 -0.191554 -0.124359 -0.973571 -0.0052745 0.00476066 -0.999975 -0.00633764 0.00715031 -0.999954 0.19352 0.166056 -0.966941 0.188831 0.127667 -0.973675 0.391851 0.274999 -0.877968 0.386381 0.188522 -0.902867 0.580512 0.277778 -0.765405 0.557409 0.154952 -0.81565 0.716879 0.143317 -0.682308 0.655085 0.0260913 -0.755104 0.728982 -0.0716778 -0.68077 0.639666 -0.135181 -0.756673 0.606096 -0.226497 -0.762461 0.526718 -0.229229 -0.818549 0.414088 -0.247177 -0.876034 0.36731 -0.21777 -0.904246 0.207639 -0.152256 -0.966284 0.191567 -0.124344 -0.973571 0.164649 0.156754 -0.973817 -0.00311425 0.00351384 -0.999989 0.343669 0.252749 -0.904439 0.523035 0.23753 -0.818544 0.648594 0.0790936 -0.757013 0.63631 -0.153365 -0.756035 0.502266 -0.2823 -0.817334 0.33339 -0.267545 -0.90403 0.166779 -0.154211 -0.97386 0.00311714 0.00351674 -0.999989 -0.164638 0.156765 -0.973817 -0.343657 0.252767 -0.904439 -0.523026 0.23755 -0.818544 -0.648593 0.0791064 -0.757014 -0.636314 -0.153341 -0.756036 -0.502283 -0.282266 -0.817336 -0.33341 -0.267518 -0.904031 -0.16679 -0.154199 -0.97386 0.143561 0.213801 -0.966271 -0.0109724 0.00990392 -0.999891 0.308411 0.371442 -0.875736 0.498019 0.417456 -0.760071 0.686295 0.2678 -0.676227 0.731747 -0.0510335 -0.679663 0.577386 -0.283734 -0.765585 0.359773 -0.313492 -0.878798 0.172681 -0.186175 -0.967223 0.0109768 0.00990753 -0.999891 -0.143548 0.213812 -0.96627 -0.308396 0.371458 -0.875735 -0.498005 0.417476 -0.760068 -0.686294 0.267804 -0.676226 -0.731749 -0.051014 -0.679662 -0.577408 -0.283693 -0.765584 -0.359802 -0.31346 -0.878798 -0.172692 -0.186166 -0.967223 -1.18479e-07 -7.12662e-08 1 -0.17588 -0.183107 0.967232 -0.363801 -0.308761 0.878815 -0.56236 -0.311522 0.765967 -0.717891 -0.138113 0.682318 -0.717891 0.138112 0.682318 -0.56236 0.311522 0.765967 -0.363801 0.308761 0.878815 -0.175879 0.183107 0.967232 -3.62104e-08 1.40705e-07 1 0.175879 -0.183107 0.967232 0.363801 -0.308761 0.878815 0.562359 -0.311522 0.765967 0.717891 -0.138113 0.682318 0.717891 0.138112 0.682318 0.56236 0.311521 0.765967 0.363802 0.308761 0.878815 0.17588 0.183107 0.967232 + + + + + + + + + + -0.875758 0.121882 0.46711 -0.830734 0.260191 0.49212 -0.547463 0.672034 0.498653 -0.595602 0.573234 0.562727 -0.913238 0.0326121 0.40612 -0.614468 0.429166 0.662001 -0.939069 -0.00698893 0.343658 -0.625268 0.261556 0.735274 -0.952324 -0.0113584 0.304878 -0.630757 0.0839143 0.77143 -0.953083 -0.00235744 0.3027 -0.631113 -0.0962935 0.769691 -0.941366 -0.00538617 0.337344 -0.626289 -0.272438 0.730438 -0.917154 -0.0424853 0.396262 -0.615981 -0.437223 0.655289 -0.88157 -0.128509 0.454225 -0.597996 -0.579738 0.553448 -0.836424 -0.261973 0.481419 -0.54771 -0.672338 0.497971 -0.872374 -0.118117 -0.474354 -0.826568 -0.258886 -0.499763 -0.545063 -0.669089 -0.5052 -0.594015 -0.568996 -0.568674 -0.91074 -0.026553 -0.412124 -0.613397 -0.423645 -0.666535 -0.937521 0.0148113 -0.347614 -0.624622 -0.255095 -0.738088 -0.951741 0.0201364 -0.30624 -0.630514 -0.0769601 -0.772353 -0.953471 0.0111233 -0.301278 -0.63127 0.103247 -0.76866 -0.942716 0.0131743 -0.333335 -0.626853 0.278887 -0.727514 -0.919444 0.0484909 -0.39022 -0.616977 0.442713 -0.650649 -0.884746 0.132224 -0.446925 -0.599514 0.583937 -0.547358 -0.840409 0.263221 -0.473737 -0.550089 0.675259 -0.491353 -1.05839e-07 1 -5.80268e-08 -2.22601e-07 1 -5.26899e-08 5.83566e-07 1 2.43894e-08 3.30692e-06 1 7.28662e-08 1.53161e-06 1 -3.99988e-08 3.22853e-06 1 8.7228e-08 3.72366e-07 1 7.90625e-08 -2.22601e-07 1 -3.67724e-07 -1.05839e-07 1 8.64431e-08 1.84169e-08 1 -1.00123e-06 1.35178e-07 1 7.62372e-08 2.30363e-07 1 1.28448e-06 2.92491e-07 1 8.3856e-08 3.14068e-07 1 -1.65684e-07 2.92491e-07 1 -7.49426e-08 2.30363e-07 1 -6.25577e-07 1.35178e-07 1 2.51814e-08 1.84162e-08 1 -8.88958e-07 -0.575511 0.649322 0.497159 -0.62667 0.552327 0.549746 -0.631994 0.566224 -0.529126 -0.578312 0.652481 -0.489718 -0.64931 0.429906 -0.627357 -0.658766 0.27063 -0.701987 -0.663003 0.100837 -0.741794 -0.662171 -0.0724902 -0.745839 -0.65618 -0.243684 -0.714175 -0.644891 -0.407016 -0.64688 -0.625031 -0.548182 -0.555728 -0.572831 -0.646297 -0.504148 -0.630506 -0.562269 0.535085 -0.575736 -0.649575 0.49657 -0.648355 -0.424719 0.631862 -0.658223 -0.264461 0.704842 -0.662855 -0.0941078 0.74281 -0.66242 0.0792845 0.744926 -0.656841 0.250046 0.711363 -0.64599 0.412466 0.642315 -3.62811e-05 -2.50438e-07 -1 -2.82754e-05 0.34202 -0.939693 -3.4824e-05 0.342057 -0.939679 -3.87839e-05 4.35124e-05 -1 1.17e-07 0.342021 0.939692 1.44471e-13 2.50451e-07 1 1.13687e-13 2.45634e-07 1 7.45058e-08 0.342021 0.939692 2.43097e-07 0.642788 0.766044 2.68221e-07 0.642788 0.766044 2.88964e-07 0.866026 0.499999 2.23517e-07 0.866026 0.5 2.90087e-07 0.984808 0.173648 2.98023e-07 0.984808 0.173648 2.4174e-07 0.984808 -0.173649 2.6077e-07 0.984808 -0.173648 2.32523e-07 0.866025 -0.5 3.27826e-07 0.866025 -0.5 3.28412e-07 0.642787 -0.766045 3.57628e-07 0.642788 -0.766044 1.27495e-07 0.34202 -0.939693 2.23517e-07 0.34202 -0.939693 2.7629e-07 -1.92655e-08 -1 5.89121e-07 6.55044e-07 -1 -5.40989e-05 0.34202 0.939693 -6.10717e-05 1.92872e-08 1 -5.73072e-05 -6.46473e-05 1 -4.57019e-05 0.341972 0.93971 -2.98767e-05 0.642788 0.766044 -1.75834e-05 0.642772 0.766057 -5.75466e-06 0.866025 0.5 -1.04308e-07 0.866025 0.5 -5.68944e-07 0.984808 0.173648 -6.48201e-07 0.984808 0.173649 -1.37362e-07 0.984808 -0.173648 -5.21541e-08 0.984808 -0.173648 -6.46324e-07 0.866025 -0.5 -3.27826e-06 0.866027 -0.499997 -9.60264e-06 0.642788 -0.766044 -1.69724e-05 0.642802 -0.766032 0.639977 0.768394 0 0.663292 0.74836 -4.71217e-08 -4.37114e-08 1 -1.28714e-07 1.1793e-07 1 -4.86067e-07 0.561725 0.827324 -7.7486e-07 -1.47109e-09 1 -4.3839e-07 0.40516 0.914246 -2.98023e-08 -1.52828e-07 1 4.4975e-07 0.152118 0.988362 2.5332e-07 -4.37114e-08 1 3.63651e-07 -0.152118 0.988362 2.90573e-07 -4.37114e-08 1 3.70113e-07 -0.405161 0.914246 -5.96046e-08 -4.37114e-08 1 6.24958e-08 -0.561724 0.827324 -1.63913e-07 2.67622e-08 1 -1.80907e-07 -0.639976 0.768395 5.88596e-07 -6.17888e-10 1 3.25195e-07 -0.663292 0.748361 -2.49886e-07 -4.37114e-08 1 -1.21312e-07 -0.639976 0.768395 -4.54485e-07 3.71094e-08 1 -4.12786e-07 -0.561725 0.827324 1.49012e-07 3.72777e-08 1 5.63169e-08 -0.405161 0.914245 1.78814e-07 -4.37114e-08 1 1.66465e-07 -0.152118 0.988362 1.49012e-08 -4.37114e-08 1 -2.388e-07 0.152118 0.988362 -2.83122e-07 -4.37114e-08 1 -3.17258e-07 0.40516 0.914246 -2.5332e-07 -1.5577e-07 1 -1.57696e-07 0.561725 0.827324 2.83122e-07 1.62469e-08 1 3.84895e-07 0.639977 0.768394 -2.16067e-07 4.24756e-08 1 8.08568e-08 0.716663 0.697015 -0.023741 0.742315 0.670014 0.00710566 0.663262 0.748326 0.00955658 0.635843 0.7715 -0.0221672 0.630478 0.775248 -0.0385891 0.539128 0.840409 -0.0552593 0.462663 0.886048 -0.0293569 0.359514 0.930592 -0.0689052 0.192717 0.981248 0.00360893 0.104013 0.993002 -0.0559295 -0.140169 0.989062 0.0459297 -0.175464 0.984102 -0.0274973 -0.42863 0.900512 0.0731779 -0.403159 0.915125 0.00311555 -0.616123 0.784549 0.0698292 -0.552316 0.833299 0.0236339 -0.712706 0.700156 0.0428066 -0.63503 0.772039 0.0263284 -0.742314 0.670014 0.00710523 -0.663261 0.748327 0.00955472 -0.716664 0.697014 -0.0237305 -0.635845 0.771499 -0.0221552 -0.630485 0.775243 -0.0385719 -0.539134 0.840406 -0.0552424 -0.462671 0.886044 -0.0293467 -0.359516 0.930591 -0.0689027 -0.192726 0.981246 0.00361764 -0.104016 0.993002 -0.0559269 0.140155 0.989063 0.045943 0.175456 0.984104 -0.0274883 0.42861 0.900519 0.0732022 0.403144 0.915131 0.00313815 0.616109 0.784557 0.0698591 0.552305 0.833306 0.0236642 0.712703 0.700157 0.0428257 0.635027 0.772041 0.0263484 -0.642532 0.766118 0.014684 -0.663285 0.748353 0.00469528 -0.567316 0.823372 0.0145257 -0.407911 0.913011 0.00429578 -0.138858 0.990191 -0.0155143 0.18726 0.981434 -0.0414823 0.433227 0.900176 -0.0446879 0.573417 0.818684 -0.0308207 0.641982 0.766634 -0.0114536 0.663285 0.748352 0.00469936 0.642535 0.766116 0.0146994 0.567324 0.823366 0.0145451 0.407923 0.913006 0.00431363 0.138866 0.99019 -0.0155046 -0.187244 0.981438 -0.0414641 -0.433208 0.900187 -0.0446568 -0.573405 0.818693 -0.0307908 -0.641979 0.766636 -0.011438 -0.728319 0.683881 0.04311 -0.742252 0.669958 0.0147811 -0.675234 0.733932 0.0734961 -0.550487 0.829437 0.0948603 -0.282946 0.954812 0.0909674 0.12492 0.990343 0.060132 0.466567 0.884155 0.0241955 0.649324 0.760492 -0.00546028 0.72197 0.691912 -0.00428689 0.742252 0.669957 0.0147868 0.728322 0.683877 0.0431268 0.675241 0.733924 0.0735156 0.550499 0.829427 0.0948789 0.282949 0.954811 0.0909701 -0.124906 0.990344 0.0601449 -0.466539 0.884169 0.0242311 -0.649309 0.760506 -0.00542305 -0.721967 0.691914 -0.00427342 -0.742333 0.670031 -4.02002e-08 -0.721197 0.69273 -5.81145e-07 -0.647076 0.762425 -4.47035e-08 -0.484573 0.874751 -1.19209e-07 -0.188922 0.981992 5.96046e-08 0.188922 0.981992 2.75671e-07 0.484572 0.874751 7.45058e-08 0.647076 0.762425 1.49012e-07 0.721197 0.69273 -5.21541e-08 0.742333 0.670031 -6.73968e-08 0.721197 0.69273 1.63913e-07 0.647076 0.762425 1.04308e-07 0.484573 0.874751 8.9407e-08 0.188923 0.981992 1.86265e-07 -0.188922 0.981992 -1.3411e-07 -0.484572 0.874751 -2.98023e-08 -0.647076 0.762426 6.4075e-07 -0.721197 0.69273 4.69387e-07 + + + + + + + + + + 0.630254 0.0569649 0.702735 0.0926234 0.577965 0.316792 0.530601 0.292399 0.55417 0.0294052 0.481349 0.274691 0.475399 0.0107303 0.430593 0.262701 0.39502 0.00106478 0.378827 0.256482 0.314063 0.0005 0.326689 0.256118 0.233558 0.00904258 0.274839 0.261614 0.154533 0.0266153 0.223919 0.272895 0.0780734 0.0531089 0.174424 0.289913 0.00510083 0.0877503 0.126723 0.313642 0.625901 0.36799 0.698067 0.404281 0.57134 0.62735 0.524191 0.602543 0.550062 0.339764 0.475097 0.584403 0.471457 0.3204 0.424447 0.571968 0.391165 0.31003 0.372737 0.565296 0.310217 0.308756 0.320604 0.564475 0.229638 0.316594 0.26871 0.569517 0.150462 0.333475 0.217695 0.580351 0.0737724 0.359301 0.168054 0.596937 0.0005 0.393305 0.120148 0.62025 0.896077 0.0719608 0.890817 0.0577306 0.880933 0.04613 0.867616 0.0385584 0.852473 0.0359287 0.83733 0.0385584 0.824013 0.0461301 0.814128 0.0577306 0.808869 0.0719607 0.808869 0.0871041 0.814129 0.101334 0.824013 0.112935 0.83733 0.120506 0.852473 0.123136 0.867616 0.120506 0.880933 0.112935 0.890817 0.101334 0.896077 0.0871041 0.562997 0.335425 0.521115 0.31319 0.177065 0.617939 0.134689 0.639217 0.223778 0.60255 0.272226 0.592318 0.321539 0.587534 0.371077 0.588314 0.420216 0.594647 0.468318 0.6064 0.514524 0.62325 0.55621 0.645851 0.183618 0.310836 0.141429 0.332482 0.230195 0.29504 0.278555 0.284384 0.327825 0.279168 0.377369 0.279514 0.42656 0.285416 0.474764 0.296746 0.0688638 0.534199 0.068862 0.580205 0.0189104 0.580203 0.0189122 0.534197 0.939071 0.0511073 0.939071 0.00510083 0.989022 0.00510083 0.989022 0.0511073 0.939071 0.0971134 0.989022 0.0971134 0.939071 0.143119 0.989022 0.143119 0.939071 0.189125 0.989022 0.189125 0.939071 0.235131 0.989022 0.235131 0.939071 0.281137 0.989022 0.281137 0.939071 0.327142 0.989022 0.327142 0.939071 0.373148 0.989022 0.373148 0.939071 0.419154 0.989022 0.419154 0.0688575 0.902249 0.0688548 0.948255 0.0189033 0.948252 0.0189061 0.902246 0.0688595 0.856242 0.018908 0.856241 0.0688597 0.810235 0.0189081 0.810235 0.0688599 0.764229 0.0189084 0.764229 0.0688602 0.718223 0.0189087 0.718223 0.0688605 0.672217 0.0189089 0.672217 0.0688607 0.626211 0.0189091 0.62621 0.812068 0.63922 0.769149 0.631767 0.769149 0.524995 0.849149 0.538887 0.84981 0.660679 0.9195 0.578887 0.877823 0.693557 0.971716 0.640171 0.892729 0.733887 0.9995 0.715346 0.892729 0.776806 0.9995 0.795347 0.877823 0.817136 0.971716 0.870522 0.84981 0.850014 0.9195 0.931806 0.812068 0.871473 0.849149 0.971806 0.769149 0.878926 0.769149 0.985698 0.72623 0.871473 0.689149 0.971806 0.688488 0.850014 0.618798 0.931806 0.660475 0.817136 0.566582 0.870522 0.64557 0.776806 0.538798 0.795347 0.64557 0.733887 0.538798 0.715347 0.660475 0.693557 0.566582 0.640171 0.688488 0.660679 0.618798 0.578887 0.72623 0.63922 0.689149 0.538887 0.407085 0.631261 0.364354 0.623715 0.364354 0.589407 0.418824 0.599019 0.444657 0.652964 0.466716 0.626681 0.472543 0.686206 0.502261 0.669051 0.487381 0.726979 0.521174 0.721021 0.487382 0.770368 0.521174 0.776325 0.472543 0.81114 0.50226 0.828295 0.444657 0.84438 0.466715 0.870664 0.407085 0.866083 0.418823 0.898325 0.364354 0.873628 0.364354 0.907936 0.321623 0.866083 0.309885 0.898325 0.284053 0.84438 0.261993 0.870663 0.256167 0.81114 0.22645 0.828294 0.241329 0.770368 0.207538 0.776325 0.24133 0.726979 0.207538 0.721022 0.256167 0.686206 0.226449 0.669052 0.284052 0.652965 0.261992 0.626682 0.321623 0.631261 0.309884 0.599019 0.390392 0.677134 0.364354 0.672505 0.413275 0.690359 0.430266 0.710611 0.439309 0.735454 0.439309 0.761891 0.430267 0.786734 0.413275 0.806986 0.390392 0.82021 0.364354 0.824838 0.338317 0.82021 0.315435 0.806986 0.298444 0.786734 0.289402 0.761892 0.289402 0.735454 0.298444 0.710611 0.315435 0.690359 0.338317 0.677133 0.381266 0.7021 0.364354 0.699047 0.396183 0.710713 0.407251 0.723897 0.413139 0.740069 0.413139 0.757277 0.407251 0.773447 0.396183 0.786631 0.381266 0.795243 0.364354 0.798296 0.347443 0.795244 0.332527 0.786631 0.32146 0.773448 0.315572 0.757277 0.315572 0.740069 0.32146 0.723897 0.332527 0.710713 0.347443 0.7021 0.852473 0.00510084 0.826623 0.00958961 0.803891 0.0225145 0.787019 0.0423166 0.778041 0.0666075 0.778041 0.0924573 0.787019 0.116748 0.803891 0.13655 0.826623 0.149475 0.852473 0.153964 0.878323 0.149475 0.901055 0.13655 0.917927 0.116748 0.926904 0.0924573 0.926904 0.0666076 0.917927 0.0423167 0.901055 0.0225145 0.878323 0.00958961 + + + + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 +

0 1 2 2 3 0 4 0 3 3 5 4 6 4 5 5 7 6 8 6 7 7 9 8 10 8 9 9 11 10 12 10 11 11 13 12 14 12 13 13 15 14 16 14 15 15 17 16 18 16 17 17 19 18 20 21 22 22 23 20 24 20 23 23 25 24 26 24 25 25 27 26 28 26 27 27 29 28 30 28 29 29 31 30 32 30 31 31 33 32 34 32 33 33 35 34 36 34 35 35 37 36 38 36 37 37 39 38 40 41 42 42 43 44 44 45 46 42 44 46 40 42 46 46 47 48 48 49 50 46 48 50 40 46 50 50 51 52 52 53 54 50 52 54 40 50 54 54 55 56 40 54 56 40 56 57 58 59 3 3 2 58 60 61 39 39 37 60 62 60 37 37 35 62 63 62 35 35 33 63 64 63 33 33 31 64 65 64 31 31 29 65 66 65 29 29 27 66 67 66 27 27 25 67 68 67 25 25 23 68 69 68 23 23 22 69 70 71 19 19 17 70 72 70 17 17 15 72 73 72 15 15 13 73 74 73 13 13 11 74 75 74 11 11 9 75 76 75 9 9 7 76 77 76 7 7 5 77 59 77 5 5 3 59 78 79 80 80 81 78 82 83 84 84 85 82 86 82 85 85 87 86 88 86 87 87 89 88 90 88 89 89 91 90 92 90 91 91 93 92 94 92 93 93 95 94 96 94 95 95 97 96 98 96 97 97 99 98 100 98 99 99 101 100 102 103 104 104 105 102 106 102 105 105 107 106 108 106 107 107 109 108 110 108 109 109 111 110 112 110 111 111 113 112 114 112 113 113 115 114 116 114 115 115 117 116 79 116 117 117 80 79 118 119 120 120 121 118 122 118 121 121 123 122 124 122 123 123 125 124 126 124 125 125 127 126 128 126 127 127 129 128 130 128 129 129 131 130 132 130 131 131 133 132 134 132 133 133 135 134 136 134 135 135 137 136 138 136 137 137 139 138 140 138 139 139 141 140 142 140 141 141 143 142 144 142 143 143 145 144 146 144 145 145 147 146 148 146 147 147 149 148 150 148 149 149 151 150 152 150 151 151 153 152 119 152 153 153 120 119 154 155 156 156 157 154 158 154 157 157 159 158 160 158 159 159 161 160 162 160 161 161 163 162 164 162 163 163 165 164 166 164 165 165 167 166 168 166 167 167 169 168 170 168 169 169 171 170 172 170 171 171 173 172 174 172 173 173 175 174 176 174 175 175 177 176 178 176 177 177 179 178 180 178 179 179 181 180 182 180 181 181 183 182 184 182 183 183 185 184 186 184 185 185 187 186 188 186 187 187 189 188 155 188 189 189 156 155 190 191 155 155 154 190 192 190 154 154 158 192 193 192 158 158 160 193 194 193 160 160 162 194 195 194 162 162 164 195 196 195 164 164 166 196 197 196 166 166 168 197 198 197 168 168 170 198 199 198 170 170 172 199 200 199 172 172 174 200 201 200 174 174 176 201 202 201 176 176 178 202 203 202 178 178 180 203 204 203 180 180 182 204 205 204 182 182 184 205 206 205 184 184 186 206 207 206 186 186 188 207 191 207 188 188 155 191 208 209 191 191 190 208 210 208 190 190 192 210 211 210 192 192 193 211 212 211 193 193 194 212 213 212 194 194 195 213 214 213 195 195 196 214 215 214 196 196 197 215 216 215 197 197 198 216 217 216 198 198 199 217 218 217 199 199 200 218 219 218 200 200 201 219 220 219 201 201 202 220 221 220 202 202 203 221 222 221 203 203 204 222 223 222 204 204 205 223 224 223 205 205 206 224 225 224 206 206 207 225 209 225 207 207 191 209 45 44 226 226 227 45 46 45 227 227 228 46 47 46 228 228 229 47 48 47 229 229 230 48 49 48 230 230 231 49 50 49 231 231 232 50 51 50 232 232 233 51 52 51 233 233 234 52 53 52 234 234 235 53 54 53 235 235 236 54 55 54 236 236 237 55 56 55 237 237 238 56 57 56 238 238 239 57 40 57 239 239 240 40 41 40 240 240 241 41 42 41 241 241 242 42 43 42 242 242 243 43 44 43 243 243 226 44

+
+
+
+ + + + 0.110845 -0.121147 0.162972 0.110845 0.122088 0.162972 0.110845 0.131145 0.135972 0.110845 -0.130204 0.135972 0.110845 0.139046 0.0394528 0.180104 0.139046 0.0394528 0.180104 0.139532 -0.0570665 0.110845 0.139532 -0.0570665 0.110845 0.122088 0.162972 0.180104 0.122088 0.162972 0.180104 0.131145 0.135972 0.110845 0.131145 0.135972 0.110845 0.0903574 0.207712 0.180104 0.0903574 0.207712 0.180104 0.106998 0.186349 0.110845 0.106998 0.186349 0.110845 0.0489322 0.23696 0.180104 0.0489322 0.23696 0.180104 0.0700011 0.22374 0.110845 0.0700011 0.22374 0.110845 -0.0236772 0.243636 0.180104 -0.0236771 0.243636 0.180104 0.0246183 0.243636 0.110845 0.0246183 0.243636 0.110845 -0.0479911 0.23696 0.180104 -0.0479911 0.23696 0.180104 -0.0236771 0.243636 0.110845 -0.0236772 0.243636 0.110845 -0.0894163 0.207712 0.180104 -0.0894163 0.207712 0.180104 -0.06906 0.22374 0.110845 -0.06906 0.22374 0.110845 -0.121147 0.162972 0.180104 -0.121147 0.162972 0.180104 -0.106056 0.186349 0.110845 -0.106056 0.186349 0.110845 -0.135445 0.0888341 0.180104 -0.135445 0.0888341 0.180104 -0.130204 0.135972 0.110845 -0.130204 0.135972 0.666566 0.139046 0.0394528 0.666566 -0.138105 0.0394529 0.666566 -0.138591 -0.0570665 0.666566 0.139532 -0.0570665 0.666566 -0.138591 -0.0570665 0.5938 -0.138591 -0.0570665 0.5938 0.139532 -0.0570665 0.666566 0.139532 -0.0570665 0.110845 0.139532 -0.0570665 0.110845 -0.138591 -0.0570665 0.110845 -0.138105 0.0394529 0.110845 0.139046 0.0394528 0.110845 0.136386 0.088834 0.180104 0.136386 0.088834 0.110845 -0.138591 -0.0570665 0.180104 -0.138591 -0.0570665 0.180104 -0.138105 0.0394529 0.110845 -0.138105 0.0394529 0.666566 0.122088 0.162972 0.666566 -0.121147 0.162972 0.666566 -0.130204 0.135972 0.666566 0.131145 0.135972 0.110845 0.136386 0.088834 0.110845 -0.135445 0.0888341 0.110845 -0.0479911 0.23696 0.110845 0.0489322 0.23696 0.110845 0.0700011 0.22374 0.110845 -0.06906 0.22374 0.110845 0.0903574 0.207712 0.110845 -0.0894163 0.207712 0.666566 -0.135445 0.0888341 0.666566 0.136386 0.088834 0.666566 0.0489323 0.23696 0.666566 -0.0479911 0.23696 0.666566 -0.06906 0.22374 0.666566 0.0700012 0.22374 0.666566 -0.0894163 0.207712 0.666566 0.0903575 0.207712 0.110845 -0.106056 0.186349 0.110845 0.106998 0.186349 0.666566 0.106998 0.186349 0.666566 -0.106056 0.186349 0.110845 -0.0236772 0.243636 0.110845 0.0246183 0.243636 0.666566 0.0246183 0.243636 0.666566 -0.0236771 0.243636 0.5938 0.139046 0.0394528 0.5938 0.139532 -0.0570665 0.5938 0.152262 0.183899 0.5938 0.164807 0.146695 0.180104 0.164807 0.146695 0.180104 0.152262 0.183899 0.5938 0.112739 0.239839 0.5938 0.133467 0.213597 0.180104 0.133467 0.213597 0.180104 0.112739 0.239839 0.5938 0.0609433 0.276324 0.5938 0.087592 0.259933 0.180104 0.087592 0.259933 0.180104 0.0609428 0.276324 0.5938 -0.0275706 0.285311 0.5938 0.0285122 0.285311 0.180104 0.0285118 0.285311 0.180104 -0.027571 0.285311 0.5938 -0.0600016 0.276324 0.5938 -0.0275706 0.285311 0.180104 -0.027571 0.285311 0.180104 -0.0600021 0.276324 0.5938 -0.111797 0.239839 0.5938 -0.0866508 0.259933 0.180104 -0.0866508 0.259933 0.180104 -0.111798 0.239839 0.5938 -0.151322 0.183898 0.5938 -0.132526 0.213597 0.180104 -0.132526 0.213597 0.180104 -0.151321 0.183899 0.5938 -0.170093 0.0929773 0.5938 -0.163866 0.146695 0.180104 -0.163866 0.146696 0.180104 -0.170093 0.0929771 0.110845 0.139532 -0.0570665 0.180104 0.139532 -0.0570665 0.5938 0.171035 0.0929772 0.5938 0.173792 0.0421684 0.180104 0.173792 0.0421684 0.180104 0.171035 0.0929772 0.5938 -0.138105 0.0394529 0.5938 -0.172851 0.0421685 0.180104 -0.172851 0.0421685 0.666566 0.139046 0.0394528 0.666566 0.139532 -0.0570665 0.666566 0.122088 0.162972 0.666566 0.131145 0.135972 0.5938 0.131145 0.135972 0.5938 0.122088 0.162972 0.666566 0.0903575 0.207712 0.666566 0.106998 0.186349 0.5938 0.106998 0.186349 0.5938 0.0903575 0.207712 0.666566 0.0489323 0.23696 0.666566 0.0700012 0.22374 0.5938 0.0700012 0.22374 0.5938 0.0489323 0.23696 0.666566 -0.0236771 0.243636 0.666566 0.0246183 0.243636 0.5938 0.0246183 0.243636 0.5938 -0.0236771 0.243636 0.666566 -0.0479911 0.23696 0.666566 -0.0236771 0.243636 0.5938 -0.0236771 0.243636 0.5938 -0.0479911 0.23696 0.666566 -0.0894163 0.207712 0.666566 -0.06906 0.22374 0.5938 -0.06906 0.22374 0.5938 -0.0894163 0.207712 0.666566 -0.121147 0.162972 0.666566 -0.106056 0.186349 0.5938 -0.106056 0.186349 0.5938 -0.121147 0.162972 0.666566 -0.135445 0.0888341 0.666566 -0.130204 0.135972 0.5938 -0.130204 0.135972 0.5938 -0.135445 0.0888341 0.666566 0.136386 0.088834 0.5938 0.136386 0.088834 0.666566 -0.138105 0.0394529 0.5938 0.139046 0.0394528 0.180104 0.139046 0.0394528 0.180104 0.139046 0.0394528 0.180104 0.136386 0.088834 0.180104 0.131145 0.135972 0.180104 0.122088 0.162972 0.180104 0.106998 0.186349 0.180104 0.0903574 0.207712 0.180104 0.0700011 0.22374 0.180104 0.0489322 0.23696 0.180104 0.0246183 0.243636 0.180104 -0.0236771 0.243636 0.180104 -0.0236771 0.243636 0.180104 -0.0479911 0.23696 0.180104 -0.06906 0.22374 0.180104 -0.0894163 0.207712 0.180104 -0.106056 0.186349 0.180104 -0.121147 0.162972 0.180104 -0.130204 0.135972 0.180104 -0.135445 0.0888341 0.180104 -0.138105 0.0394529 0.180104 -0.138105 0.0394529 0.5938 -0.138105 0.0394529 0.5938 -0.138105 0.0394529 0.5938 -0.135445 0.0888341 0.5938 -0.130204 0.135972 0.5938 -0.121147 0.162972 0.5938 -0.106056 0.186349 0.5938 -0.0894163 0.207712 0.5938 -0.06906 0.22374 0.5938 -0.0479911 0.23696 0.5938 -0.0236771 0.243636 0.5938 -0.0236771 0.243636 0.5938 0.0246183 0.243636 0.5938 0.0489323 0.23696 0.5938 0.0700012 0.22374 0.5938 0.0903575 0.207712 0.5938 0.106998 0.186349 0.5938 0.122088 0.162972 0.5938 0.131145 0.135972 0.5938 0.136386 0.088834 0.5938 0.139046 0.0394528 0.519128 0.161667 0.114841 0.506758 0.161925 0.109217 0.50676 0.176272 0.110939 0.520232 0.173229 0.118906 0.457314 0.157347 0.132585 0.455679 0.167488 0.136863 0.458132 0.173232 0.118905 0.459233 0.161667 0.114841 0.52102 -3.59723e-08 0.324019 0.521003 0.0237402 0.321283 0.507877 0.0266091 0.328229 0.507886 -3.73984e-08 0.330864 0.52102 -3.37895e-08 0.274248 0.521004 0.0201538 0.27284 0.525113 0.0203722 0.285476 0.525253 -3.39642e-08 0.287256 0.457139 0.120239 0.201324 0.454114 0.127282 0.210317 0.454555 0.140668 0.194175 0.457342 0.132745 0.186032 0.52102 0.163043 0.217334 0.519924 0.179393 0.19378 0.507488 0.184792 0.199823 0.507886 0.169402 0.224102 0.52102 0.132745 0.186032 0.520416 0.143475 0.169648 0.522993 0.152965 0.175793 0.523806 0.140668 0.194175 0.52102 0.0873588 0.291344 0.52111 0.110806 0.273023 0.507939 0.116471 0.27985 0.507886 0.092778 0.29818 0.52102 0.0740568 0.247091 0.521108 0.0914579 0.232016 0.524642 0.0958434 0.242736 0.524791 0.0765695 0.258663 0.457368 0.0588261 0.258357 0.453481 0.0602767 0.270268 0.453571 0.0765695 0.258663 0.457342 0.0740568 0.247091 0.457955 0.143446 0.169439 0.45534 0.153073 0.175615 0.455319 0.161766 0.156709 0.457782 0.150345 0.152141 0.518773 0.190678 0.169883 0.518611 0.194665 0.154305 0.506847 0.201194 0.153718 0.507035 0.195122 0.175189 0.519563 0.15042 0.152573 0.519168 0.15614 0.132202 0.522017 0.167395 0.137048 0.521651 0.161439 0.15701 0.457254 0.0914579 0.232016 0.45372 0.0958434 0.242736 0.453933 0.11122 0.228558 0.457197 0.105238 0.218743 0.521166 0.129581 0.256329 0.521261 0.147937 0.235817 0.507994 0.154299 0.242625 0.507972 0.135508 0.263143 0.521165 0.105238 0.218743 0.521224 0.120216 0.201322 0.524254 0.12728 0.210317 0.524429 0.11122 0.228558 0.520994 0.0444119 0.315127 0.520995 0.0689999 0.304024 0.507872 0.0745073 0.310965 0.507871 0.0496028 0.321969 0.520995 0.0374209 0.268044 0.520994 0.0588261 0.258357 0.524881 0.0602767 0.270268 0.524995 0.0379762 0.280356 0.457358 0.0201538 0.27284 0.453249 0.0203722 0.285476 0.453367 0.0379762 0.280356 0.457367 0.0374209 0.268044 0.471604 0.161929 0.109217 0.471602 0.176274 0.110903 0.489181 0.176791 0.106766 0.489181 0.161788 0.104859 0.489181 0.0528656 0.3242 0.470491 0.0496028 0.321969 0.470485 0.0266091 0.328229 0.489181 0.0284272 0.33053 0.489181 0.197024 0.177325 0.471327 0.195095 0.175199 0.470874 0.184776 0.199827 0.489181 0.186808 0.202041 0.489181 0.138035 0.265402 0.47039 0.135508 0.263143 0.470423 0.116471 0.27985 0.489181 0.11926 0.282096 0.471578 0.20109 0.132113 0.471515 0.201194 0.153658 0.489181 0.203612 0.153014 0.489181 0.203056 0.128711 0.489181 0.171497 0.226407 0.470475 0.169402 0.224102 0.470368 0.1543 0.242625 0.489181 0.156589 0.244904 0.489181 0.0958125 0.300417 0.470475 0.092778 0.29818 0.47049 0.0745073 0.310965 0.489181 0.0777941 0.313261 0.507939 0.116471 0.27985 0.506784 0.201089 0.132243 0.459233 0.161667 0.114841 0.458132 0.173232 0.118905 0.457368 0.0444119 0.315127 0.457359 0.0237402 0.321283 0.459588 0.18715 0.169883 0.458469 0.177223 0.193765 0.457196 0.129581 0.256329 0.457252 0.110806 0.273023 0.460777 0.194602 0.137852 0.459631 0.19267 0.154296 0.457342 0.163043 0.217334 0.4571 0.148174 0.235831 0.457342 0.0873588 0.291344 0.457367 0.069 0.304024 0.506763 0.196016 0.119859 0.519937 0.191007 0.130118 0.520669 0.182655 0.123349 0.506762 0.187371 0.113546 0.455479 0.172169 0.16131 0.455848 0.180319 0.165644 0.456561 0.186485 0.147945 0.455578 0.17783 0.14188 0.527214 0.0408391 0.304392 0.527389 0.0218023 0.310193 0.52702 0.0209739 0.298116 0.526853 0.0392108 0.292651 0.452415 0.117391 0.238355 0.452112 0.123429 0.247731 0.452382 0.141461 0.227914 0.452698 0.134434 0.219302 0.522782 0.182528 0.165715 0.524245 0.171474 0.18785 0.524146 0.162392 0.18196 0.522995 0.172222 0.161507 0.52625 0.123429 0.247731 0.526609 0.105345 0.263663 0.526284 0.100578 0.253433 0.525947 0.117391 0.238355 0.451509 0.0392108 0.292651 0.451147 0.0408391 0.304392 0.451322 0.0648 0.293564 0.451676 0.06237 0.282176 0.453258 0.148569 0.202317 0.452999 0.156129 0.210124 0.454185 0.170188 0.187807 0.454187 0.162366 0.181863 0.519937 0.191007 0.130118 0.522485 0.187859 0.147984 0.523444 0.177862 0.141979 0.520669 0.182655 0.123349 0.451818 0.0795926 0.270214 0.451473 0.0828222 0.281252 0.451752 0.105345 0.263663 0.452077 0.100578 0.253433 0.525363 0.156129 0.210124 0.525972 0.141304 0.227904 0.525668 0.134422 0.219301 0.525103 0.148569 0.202317 0.526888 0.0828222 0.281252 0.527039 0.0648 0.293564 0.526686 0.06237 0.282176 0.526544 0.0795926 0.270214 0.451146 -4.10655e-08 0.300259 0.450768 -4.15894e-08 0.312668 0.450972 0.0218023 0.310193 0.451342 0.0209739 0.298116 0.4716 0.187371 0.113479 0.471599 0.196016 0.119763 0.489181 0.197597 0.116144 0.489181 0.188449 0.109577 0.457696 0.18266 0.123348 0.458359 0.190935 0.130125 0.524642 0.0958434 0.242736 0.520232 0.173229 0.118906 0.45372 0.0958434 0.242736 0.453109 -4.03088e-08 0.287256 0.517585 0.194602 0.137852 0.52111 0.110806 0.273023 0.457252 0.110806 0.273023 0.457342 -4.15021e-08 0.324019 0.521108 0.0914579 0.232016 0.457254 0.0914579 0.232016 0.457342 -3.93775e-08 0.274248 0.470475 -4.07163e-08 0.330864 0.489181 -3.91447e-08 0.333093 0.489181 0.11926 0.282096 0.470423 0.116471 0.27985 0.527594 -3.48955e-08 0.312668 0.527216 -3.43716e-08 0.300259 0.526609 0.105345 0.263663 0.526284 0.100578 0.253433 0.452077 0.100578 0.253433 0.451752 0.105345 0.263663 0.519128 0.161667 0.114841 0.458359 0.190935 0.130125 0.457696 0.18266 0.123348 0.519128 -0.161667 0.114841 0.520232 -0.173229 0.118906 0.50676 -0.176272 0.110939 0.506758 -0.161925 0.109217 0.458132 -0.173232 0.118905 0.455679 -0.167488 0.136863 0.457314 -0.157347 0.132585 0.459233 -0.161667 0.114841 0.52102 -3.59723e-08 0.324019 0.507886 -3.73984e-08 0.330864 0.507877 -0.0266091 0.328229 0.521003 -0.0237403 0.321283 0.52102 -3.37895e-08 0.274248 0.525253 -3.39642e-08 0.287256 0.525113 -0.0203723 0.285476 0.521004 -0.0201539 0.27284 0.454555 -0.140668 0.194175 0.454114 -0.127282 0.210317 0.457139 -0.12024 0.201324 0.457342 -0.132745 0.186032 0.52102 -0.163044 0.217334 0.507886 -0.169402 0.224102 0.507488 -0.184792 0.199823 0.519924 -0.179393 0.19378 0.52102 -0.132745 0.186032 0.523806 -0.140668 0.194175 0.522993 -0.152965 0.175793 0.520416 -0.143475 0.169648 0.52102 -0.0873589 0.291344 0.507886 -0.0927781 0.29818 0.507939 -0.116472 0.27985 0.52111 -0.110806 0.273023 0.52102 -0.0740569 0.247091 0.524791 -0.0765696 0.258663 0.524642 -0.0958435 0.242736 0.521108 -0.091458 0.232016 0.453571 -0.0765696 0.258663 0.453481 -0.0602768 0.270268 0.457368 -0.0588261 0.258357 0.457342 -0.0740569 0.247091 0.45532 -0.161766 0.156709 0.45534 -0.153073 0.175615 0.457955 -0.143446 0.169439 0.457782 -0.150345 0.15214 0.518773 -0.190678 0.169883 0.507035 -0.195122 0.175189 0.506847 -0.201194 0.153718 0.518611 -0.194665 0.154305 0.519564 -0.15042 0.152573 0.521651 -0.161439 0.15701 0.522017 -0.167395 0.137048 0.519168 -0.15614 0.132202 0.453933 -0.11122 0.228558 0.45372 -0.0958435 0.242736 0.457254 -0.091458 0.232016 0.457197 -0.105238 0.218743 0.521166 -0.129581 0.256329 0.507972 -0.135508 0.263143 0.507994 -0.154299 0.242625 0.521261 -0.147937 0.235817 0.521165 -0.105238 0.218743 0.524429 -0.11122 0.228558 0.524254 -0.12728 0.210317 0.521224 -0.120216 0.201322 0.520994 -0.044412 0.315127 0.507871 -0.0496029 0.321969 0.507872 -0.0745074 0.310965 0.520995 -0.069 0.304024 0.520995 -0.037421 0.268044 0.524995 -0.0379762 0.280356 0.524881 -0.0602768 0.270268 0.520994 -0.0588261 0.258357 0.453367 -0.0379762 0.280356 0.453249 -0.0203723 0.285476 0.457358 -0.0201539 0.27284 0.457367 -0.037421 0.268044 0.489181 -0.176791 0.106766 0.471602 -0.176274 0.110903 0.471604 -0.161929 0.109217 0.489181 -0.161788 0.104859 0.489181 -0.0528657 0.3242 0.489181 -0.0284273 0.33053 0.470485 -0.0266091 0.328229 0.470491 -0.0496029 0.321969 0.489181 -0.197024 0.177325 0.489181 -0.186808 0.202041 0.470874 -0.184776 0.199827 0.471327 -0.195095 0.175199 0.489181 -0.138035 0.265402 0.489181 -0.11926 0.282096 0.470423 -0.116472 0.27985 0.47039 -0.135508 0.263143 0.489181 -0.203612 0.153014 0.471515 -0.201194 0.153658 0.471578 -0.20109 0.132113 0.489181 -0.203056 0.128711 0.489181 -0.171497 0.226407 0.489181 -0.156589 0.244904 0.470368 -0.1543 0.242625 0.470475 -0.169402 0.224102 0.489181 -0.0958126 0.300417 0.489181 -0.0777942 0.313261 0.47049 -0.0745074 0.310965 0.470475 -0.0927781 0.29818 0.507972 -0.135508 0.263143 0.506784 -0.201089 0.132243 0.458132 -0.173232 0.118905 0.459233 -0.161667 0.114841 0.457359 -0.0237403 0.321283 0.457368 -0.044412 0.315127 0.458469 -0.177223 0.193765 0.459588 -0.18715 0.169883 0.457252 -0.110806 0.273023 0.457196 -0.129581 0.256329 0.459631 -0.19267 0.154296 0.460777 -0.194602 0.137852 0.4571 -0.148174 0.235831 0.457342 -0.163044 0.217334 0.457367 -0.069 0.304024 0.457342 -0.0873589 0.291344 0.520669 -0.182655 0.123349 0.519937 -0.191007 0.130118 0.506763 -0.196016 0.119859 0.506762 -0.187371 0.113546 0.455479 -0.172169 0.16131 0.455578 -0.17783 0.14188 0.456562 -0.186485 0.147945 0.455848 -0.180319 0.165644 0.52702 -0.020974 0.298116 0.527389 -0.0218024 0.310193 0.527214 -0.0408391 0.304392 0.526853 -0.0392109 0.292651 0.452415 -0.117391 0.238355 0.452698 -0.134434 0.219302 0.452382 -0.141461 0.227914 0.452112 -0.123429 0.247731 0.524146 -0.162392 0.18196 0.524245 -0.171474 0.18785 0.522782 -0.182528 0.165715 0.522995 -0.172222 0.161507 0.526284 -0.100579 0.253433 0.526609 -0.105345 0.263663 0.52625 -0.123429 0.247731 0.525947 -0.117391 0.238355 0.451509 -0.0392109 0.292651 0.451676 -0.0623701 0.282176 0.451322 -0.0648 0.293564 0.451147 -0.0408392 0.304392 0.453258 -0.148569 0.202317 0.454187 -0.162366 0.181863 0.454185 -0.170188 0.187807 0.452999 -0.156129 0.210124 0.523444 -0.177862 0.141979 0.522485 -0.18786 0.147984 0.519937 -0.191007 0.130118 0.520669 -0.182655 0.123349 0.451818 -0.0795927 0.270214 0.452078 -0.100579 0.253433 0.451752 -0.105345 0.263663 0.451473 -0.0828223 0.281252 0.525668 -0.134422 0.219301 0.525972 -0.141304 0.227904 0.525363 -0.156129 0.210124 0.525103 -0.148569 0.202317 0.526686 -0.0623701 0.282176 0.527039 -0.0648 0.293564 0.526888 -0.0828223 0.281252 0.526544 -0.0795926 0.270214 0.451146 -4.10655e-08 0.300259 0.451342 -0.020974 0.298116 0.450972 -0.0218024 0.310193 0.450768 -4.15894e-08 0.312668 0.4716 -0.187371 0.113479 0.489181 -0.188449 0.109577 0.489181 -0.197597 0.116144 0.471599 -0.196016 0.119763 0.457696 -0.18266 0.123348 0.458359 -0.190935 0.130125 0.453933 -0.11122 0.228558 0.524429 -0.11122 0.228558 0.520232 -0.173229 0.118906 0.453109 -4.03088e-08 0.287256 0.517585 -0.194602 0.137852 0.457196 -0.129581 0.256329 0.521166 -0.129581 0.256329 0.457342 -4.15021e-08 0.324019 0.457197 -0.105238 0.218743 0.521165 -0.105238 0.218743 0.457342 -3.93775e-08 0.274248 0.489181 -3.91447e-08 0.333093 0.470475 -4.07163e-08 0.330864 0.489181 -0.138035 0.265402 0.47039 -0.135508 0.263143 0.527216 -3.43716e-08 0.300259 0.527594 -3.48955e-08 0.312668 0.452415 -0.117391 0.238355 0.452112 -0.123429 0.247731 0.525947 -0.117391 0.238355 0.52625 -0.123429 0.247731 0.519128 -0.161667 0.114841 0.457696 -0.18266 0.123348 0.458359 -0.190935 0.130125 0.318319 0.161667 0.114841 0.305949 0.161925 0.109217 0.30595 0.176272 0.110939 0.319422 0.173229 0.118906 0.256504 0.157347 0.132585 0.254869 0.167488 0.136863 0.257322 0.173232 0.118905 0.258424 0.161667 0.114841 0.320211 -5.34928e-08 0.324019 0.320194 0.0237402 0.321283 0.307067 0.026609 0.328229 0.307077 -5.4948e-08 0.330864 0.320211 -5.12809e-08 0.274248 0.320194 0.0201538 0.27284 0.324303 0.0203722 0.285476 0.324444 -5.15138e-08 0.287256 0.25633 0.120239 0.201324 0.253304 0.127282 0.210317 0.253746 0.140668 0.194175 0.256532 0.132745 0.186032 0.320211 0.163043 0.217334 0.319114 0.179393 0.19378 0.306679 0.184792 0.199823 0.307077 0.169402 0.224102 0.320211 0.132745 0.186032 0.319606 0.143475 0.169648 0.322184 0.152964 0.175793 0.322997 0.140668 0.194175 0.320211 0.0873588 0.291344 0.3203 0.110806 0.273023 0.30713 0.116471 0.27985 0.307077 0.092778 0.29818 0.320211 0.0740568 0.247091 0.320299 0.0914579 0.232016 0.323832 0.0958434 0.242736 0.323982 0.0765695 0.258663 0.256558 0.058826 0.258357 0.252672 0.0602767 0.270268 0.252761 0.0765695 0.258663 0.256532 0.0740568 0.247091 0.257146 0.143446 0.169439 0.25453 0.153073 0.175615 0.25451 0.161766 0.156709 0.256973 0.150345 0.152141 0.317964 0.190678 0.169883 0.317801 0.194665 0.154305 0.306037 0.201194 0.153718 0.306225 0.195122 0.175189 0.318754 0.15042 0.152573 0.318359 0.15614 0.132202 0.321207 0.167395 0.137048 0.320842 0.161439 0.15701 0.256444 0.0914579 0.232016 0.252911 0.0958434 0.242736 0.253124 0.11122 0.228558 0.256388 0.105238 0.218743 0.320356 0.129581 0.256329 0.320452 0.147937 0.235817 0.307185 0.154299 0.242625 0.307163 0.135508 0.263143 0.320355 0.105238 0.218743 0.320414 0.120216 0.201322 0.323444 0.12728 0.210317 0.323619 0.11122 0.228558 0.320185 0.0444119 0.315127 0.320185 0.0689999 0.304024 0.307062 0.0745073 0.310965 0.307062 0.0496028 0.321969 0.320185 0.0374209 0.268044 0.320185 0.058826 0.258357 0.324071 0.0602767 0.270268 0.324186 0.0379761 0.280356 0.256549 0.0201538 0.27284 0.25244 0.0203722 0.285476 0.252557 0.0379761 0.280356 0.256558 0.0374209 0.268044 0.270794 0.161928 0.109217 0.270793 0.176274 0.110903 0.288371 0.176791 0.106766 0.288371 0.161788 0.104859 0.288371 0.0528656 0.3242 0.269681 0.0496028 0.321969 0.269676 0.0266091 0.328229 0.288371 0.0284272 0.33053 0.288371 0.197024 0.177325 0.270517 0.195095 0.175199 0.270064 0.184776 0.199827 0.288371 0.186808 0.202041 0.288371 0.138035 0.265402 0.26958 0.135508 0.263143 0.269613 0.116471 0.27985 0.288371 0.11926 0.282096 0.270769 0.20109 0.132113 0.270706 0.201194 0.153658 0.288371 0.203612 0.153014 0.288371 0.203056 0.128711 0.288371 0.171497 0.226407 0.269666 0.169402 0.224102 0.269558 0.1543 0.242625 0.288371 0.156589 0.244904 0.288371 0.0958125 0.300417 0.269666 0.092778 0.29818 0.269681 0.0745073 0.310965 0.288371 0.0777941 0.313261 0.30713 0.116471 0.27985 0.305974 0.201089 0.132243 0.258424 0.161667 0.114841 0.257322 0.173232 0.118905 0.256558 0.0444119 0.315127 0.256549 0.0237402 0.321283 0.258779 0.18715 0.169883 0.25766 0.177223 0.193765 0.256386 0.129581 0.256329 0.256443 0.110806 0.273023 0.259967 0.194602 0.137852 0.258822 0.19267 0.154296 0.256532 0.163043 0.217334 0.256291 0.148174 0.235831 0.256532 0.0873588 0.291344 0.256558 0.0689999 0.304024 0.305954 0.196016 0.119859 0.319127 0.191007 0.130118 0.31986 0.182655 0.123349 0.305953 0.187371 0.113546 0.25467 0.172169 0.16131 0.255039 0.180318 0.165644 0.255752 0.186485 0.147945 0.254769 0.17783 0.14188 0.326405 0.0408391 0.304392 0.32658 0.0218023 0.310193 0.32621 0.0209739 0.298116 0.326043 0.0392108 0.292651 0.251605 0.117391 0.238355 0.251303 0.123429 0.247731 0.251573 0.141461 0.227914 0.251889 0.134434 0.219302 0.321972 0.182528 0.165715 0.323436 0.171474 0.18785 0.323336 0.162392 0.18196 0.322186 0.172222 0.161507 0.32544 0.123429 0.247731 0.3258 0.105345 0.263663 0.325475 0.100578 0.253433 0.325138 0.117391 0.238355 0.2507 0.0392108 0.292651 0.250338 0.0408391 0.304392 0.250513 0.0647999 0.293564 0.250867 0.06237 0.282176 0.252449 0.148569 0.202317 0.25219 0.156128 0.210124 0.253376 0.170188 0.187807 0.253378 0.162366 0.181863 0.319127 0.191007 0.130118 0.321676 0.187859 0.147984 0.322634 0.177862 0.141979 0.31986 0.182655 0.123349 0.251009 0.0795926 0.270214 0.250664 0.0828222 0.281252 0.250943 0.105345 0.263663 0.251268 0.100578 0.253433 0.324553 0.156128 0.210124 0.325162 0.141304 0.227904 0.324858 0.134422 0.219301 0.324294 0.148569 0.202317 0.326079 0.0828222 0.281252 0.32623 0.0647999 0.293564 0.325876 0.06237 0.282176 0.325734 0.0795926 0.270214 0.250336 -5.8586e-08 0.300259 0.249958 -5.9139e-08 0.312668 0.250163 0.0218023 0.310193 0.250533 0.0209739 0.298116 0.27079 0.187371 0.113479 0.270789 0.196016 0.119763 0.288371 0.197597 0.116144 0.288371 0.188449 0.109577 0.256887 0.18266 0.123348 0.25755 0.190934 0.130125 0.323832 0.0958434 0.242736 0.319422 0.173229 0.118906 0.252911 0.0958434 0.242736 0.252299 -5.78002e-08 0.287256 0.316776 0.194602 0.137852 0.3203 0.110806 0.273023 0.256443 0.110806 0.273023 0.256532 -5.90517e-08 0.324019 0.320299 0.0914579 0.232016 0.256444 0.0914579 0.232016 0.256532 -5.6898e-08 0.274248 0.269666 -5.82368e-08 0.330864 0.288371 -5.66652e-08 0.333093 0.288371 0.11926 0.282096 0.269613 0.116471 0.27985 0.326785 -5.2416e-08 0.312668 0.326407 -5.19212e-08 0.300259 0.3258 0.105345 0.263663 0.325475 0.100578 0.253433 0.251268 0.100578 0.253433 0.250943 0.105345 0.263663 0.318319 0.161667 0.114841 0.25755 0.190934 0.130125 0.256887 0.18266 0.123348 0.318319 -0.161667 0.114841 0.319422 -0.173229 0.118906 0.30595 -0.176272 0.110939 0.305949 -0.161925 0.109217 0.257322 -0.173232 0.118905 0.254869 -0.167488 0.136863 0.256504 -0.157347 0.132585 0.258424 -0.161667 0.114841 0.320211 -5.34928e-08 0.324019 0.307077 -5.4948e-08 0.330864 0.307067 -0.0266092 0.328229 0.320194 -0.0237403 0.321283 0.320211 -5.12809e-08 0.274248 0.324444 -5.15138e-08 0.287256 0.324303 -0.0203723 0.285476 0.320194 -0.0201539 0.27284 0.253746 -0.140668 0.194175 0.253304 -0.127282 0.210317 0.25633 -0.12024 0.201324 0.256532 -0.132745 0.186032 0.320211 -0.163044 0.217334 0.307077 -0.169402 0.224102 0.306679 -0.184792 0.199823 0.319114 -0.179393 0.19378 0.320211 -0.132745 0.186032 0.322997 -0.140668 0.194175 0.322184 -0.152965 0.175793 0.319606 -0.143475 0.169648 0.320211 -0.0873589 0.291344 0.307077 -0.0927781 0.29818 0.30713 -0.116472 0.27985 0.3203 -0.110806 0.273023 0.320211 -0.0740569 0.247091 0.323982 -0.0765696 0.258663 0.323832 -0.0958435 0.242736 0.320299 -0.091458 0.232016 0.252761 -0.0765696 0.258663 0.252672 -0.0602768 0.270268 0.256558 -0.0588261 0.258357 0.256532 -0.0740569 0.247091 0.25451 -0.161766 0.156709 0.25453 -0.153074 0.175615 0.257146 -0.143446 0.169439 0.256973 -0.150345 0.15214 0.317964 -0.190678 0.169883 0.306225 -0.195122 0.175189 0.306038 -0.201194 0.153718 0.317801 -0.194665 0.154305 0.318754 -0.15042 0.152573 0.320842 -0.161439 0.15701 0.321207 -0.167395 0.137048 0.318359 -0.15614 0.132202 0.253124 -0.11122 0.228558 0.252911 -0.0958435 0.242736 0.256444 -0.091458 0.232016 0.256388 -0.105238 0.218743 0.320356 -0.129581 0.256329 0.307163 -0.135508 0.263143 0.307185 -0.154299 0.242625 0.320452 -0.147937 0.235817 0.320355 -0.105238 0.218743 0.323619 -0.11122 0.228558 0.323444 -0.12728 0.210317 0.320414 -0.120216 0.201322 0.320185 -0.044412 0.315127 0.307062 -0.0496029 0.321969 0.307062 -0.0745074 0.310965 0.320185 -0.069 0.304024 0.320185 -0.037421 0.268044 0.324186 -0.0379762 0.280356 0.324071 -0.0602768 0.270268 0.320185 -0.0588261 0.258357 0.252557 -0.0379763 0.280356 0.25244 -0.0203723 0.285476 0.256549 -0.0201539 0.27284 0.256558 -0.037421 0.268044 0.288371 -0.176791 0.106766 0.270793 -0.176274 0.110903 0.270794 -0.161929 0.109217 0.288371 -0.161788 0.104859 0.288371 -0.0528657 0.3242 0.288371 -0.0284273 0.33053 0.269676 -0.0266092 0.328229 0.269681 -0.0496029 0.321969 0.288371 -0.197024 0.177325 0.288371 -0.186808 0.202041 0.270064 -0.184776 0.199827 0.270517 -0.195095 0.175199 0.288371 -0.138035 0.265402 0.288371 -0.11926 0.282096 0.269613 -0.116472 0.27985 0.26958 -0.135508 0.263143 0.288371 -0.203612 0.153014 0.270706 -0.201194 0.153658 0.270769 -0.20109 0.132113 0.288371 -0.203056 0.128711 0.288371 -0.171497 0.226407 0.288371 -0.156589 0.244904 0.269558 -0.1543 0.242625 0.269666 -0.169402 0.224102 0.288371 -0.0958126 0.300417 0.288371 -0.0777942 0.313261 0.269681 -0.0745074 0.310965 0.269666 -0.0927781 0.29818 0.307163 -0.135508 0.263143 0.305974 -0.201089 0.132243 0.257322 -0.173232 0.118905 0.258424 -0.161667 0.114841 0.256549 -0.0237403 0.321283 0.256558 -0.044412 0.315127 0.25766 -0.177223 0.193765 0.258779 -0.187151 0.169883 0.256443 -0.110806 0.273023 0.256386 -0.129581 0.256329 0.258822 -0.19267 0.154296 0.259967 -0.194602 0.137852 0.256291 -0.148174 0.235831 0.256532 -0.163044 0.217334 0.256558 -0.0690001 0.304024 0.256532 -0.0873589 0.291344 0.31986 -0.182655 0.123349 0.319127 -0.191007 0.130118 0.305954 -0.196017 0.119859 0.305953 -0.187371 0.113546 0.25467 -0.172169 0.16131 0.254769 -0.17783 0.14188 0.255752 -0.186485 0.147945 0.255039 -0.180319 0.165644 0.32621 -0.020974 0.298116 0.32658 -0.0218024 0.310193 0.326405 -0.0408392 0.304392 0.326043 -0.0392109 0.292651 0.251605 -0.117391 0.238355 0.251889 -0.134434 0.219302 0.251573 -0.141461 0.227914 0.251303 -0.123429 0.247731 0.323336 -0.162392 0.18196 0.323436 -0.171474 0.18785 0.321972 -0.182528 0.165715 0.322186 -0.172222 0.161507 0.325475 -0.100579 0.253433 0.3258 -0.105345 0.263663 0.32544 -0.123429 0.247731 0.325138 -0.117391 0.238355 0.2507 -0.0392109 0.292651 0.250867 -0.0623701 0.282176 0.250513 -0.0648001 0.293564 0.250338 -0.0408392 0.304392 0.252449 -0.148569 0.202317 0.253378 -0.162366 0.181863 0.253376 -0.170188 0.187807 0.25219 -0.156129 0.210124 0.322634 -0.177862 0.141979 0.321676 -0.18786 0.147984 0.319127 -0.191007 0.130118 0.31986 -0.182655 0.123349 0.251009 -0.0795927 0.270214 0.251268 -0.100579 0.253433 0.250943 -0.105345 0.263663 0.250664 -0.0828223 0.281252 0.324858 -0.134422 0.219301 0.325162 -0.141304 0.227904 0.324553 -0.156129 0.210124 0.324294 -0.148569 0.202317 0.325876 -0.0623701 0.282176 0.32623 -0.0648 0.293564 0.326079 -0.0828223 0.281252 0.325734 -0.0795927 0.270214 0.250336 -5.8586e-08 0.300259 0.250533 -0.020974 0.298116 0.250163 -0.0218024 0.310193 0.249958 -5.9139e-08 0.312668 0.27079 -0.187371 0.113479 0.288371 -0.188449 0.109577 0.288371 -0.197597 0.116144 0.270789 -0.196016 0.119763 0.256887 -0.18266 0.123348 0.25755 -0.190935 0.130125 0.253124 -0.11122 0.228558 0.323619 -0.11122 0.228558 0.319422 -0.173229 0.118906 0.252299 -5.78002e-08 0.287256 0.316776 -0.194602 0.137852 0.256386 -0.129581 0.256329 0.320356 -0.129581 0.256329 0.256532 -5.90517e-08 0.324019 0.256388 -0.105238 0.218743 0.320355 -0.105238 0.218743 0.256532 -5.6898e-08 0.274248 0.288371 -5.66652e-08 0.333093 0.269666 -5.82368e-08 0.330864 0.288371 -0.138035 0.265402 0.26958 -0.135508 0.263143 0.326407 -5.19212e-08 0.300259 0.326785 -5.2416e-08 0.312668 0.251605 -0.117391 0.238355 0.251303 -0.123429 0.247731 0.325138 -0.117391 0.238355 0.32544 -0.123429 0.247731 0.318319 -0.161667 0.114841 0.256887 -0.18266 0.123348 0.25755 -0.190935 0.130125 + + + + + + + + + + -0.622683 -0.705954 0.337483 -0.622683 0.705954 0.337483 -0.614016 0.770927 0.169279 -0.614016 -0.770928 0.169279 -0.631867 0.774741 0.0227988 -0.254364 0.938304 -0.234276 -8.57892e-08 0.771288 -0.636486 -0.537795 0.650254 -0.536606 -0.622683 0.705954 0.337483 -0.6886 0.654228 0.312755 -0.674239 0.721329 0.158388 -0.614016 0.770927 0.169279 -0.649664 0.540403 0.534698 -0.705277 0.503944 0.498624 -0.676241 0.600796 0.426312 -0.654367 0.616697 0.437595 -0.669859 0.300539 0.678944 -0.728147 0.27744 0.626761 -0.699186 0.411989 0.584297 -0.676403 0.424432 0.601944 -0.681756 -0.0982652 0.72495 -0.732212 -0.0914817 0.674905 -0.732212 0.0914824 0.674905 -0.681756 0.098266 0.72495 -0.669859 -0.300539 0.678945 -0.728147 -0.27744 0.626761 -0.732212 -0.0914817 0.674905 -0.681756 -0.0982652 0.72495 -0.649664 -0.540402 0.534699 -0.705276 -0.503943 0.498624 -0.699187 -0.411989 0.584297 -0.676403 -0.424432 0.601944 -0.622683 -0.705954 0.337483 -0.6886 -0.654228 0.312755 -0.676241 -0.600796 0.426312 -0.654367 -0.616697 0.437595 -0.631245 -0.772962 0.0637111 -0.647685 -0.759333 0.0625879 -0.674239 -0.721329 0.158388 -0.614016 -0.770928 0.169279 0.631867 0.774741 0.0227983 0.631867 -0.774741 0.0227984 0.537795 -0.650254 -0.536606 0.537795 0.650254 -0.536606 0.537795 -0.650254 -0.536606 3.36697e-08 -0.771288 -0.636486 -1.17139e-07 0.771288 -0.636486 0.537795 0.650254 -0.536606 -0.537795 0.650254 -0.536606 -0.537795 -0.650254 -0.536606 -0.631867 -0.774741 0.0227988 -0.631867 0.774741 0.0227988 -0.631246 0.772962 0.0637111 -0.647685 0.759334 0.0625875 -0.537795 -0.650254 -0.536606 6.8342e-08 -0.771288 -0.636486 -0.254364 -0.938304 -0.234276 -0.631867 -0.774741 0.0227988 0.622683 0.705954 0.337483 0.622683 -0.705954 0.337483 0.614016 -0.770928 0.169279 0.614016 0.770928 0.169279 -0.631246 0.772962 0.0637111 -0.631245 -0.772962 0.0637111 -0.669859 -0.300539 0.678945 -0.669859 0.300539 0.678944 -0.676403 0.424432 0.601944 -0.676403 -0.424432 0.601944 -0.649664 0.540403 0.534698 -0.649664 -0.540402 0.534699 0.631246 -0.772962 0.0637105 0.631246 0.772962 0.0637107 0.669859 0.300539 0.678944 0.669859 -0.300539 0.678944 0.676403 -0.424432 0.601944 0.676403 0.424432 0.601944 0.649664 -0.540402 0.534699 0.649664 0.540403 0.534698 -0.654367 -0.616697 0.437595 -0.654367 0.616697 0.437595 0.654366 0.616697 0.437595 0.654367 -0.616696 0.437596 -0.681756 -0.0982652 0.72495 -0.681756 0.098266 0.72495 0.681756 0.098266 0.72495 0.681756 -0.0982652 0.72495 0.254364 0.938304 -0.234276 -1.17139e-07 0.771288 -0.636486 0.623678 0.70641 0.33468 0.614543 0.769991 0.17161 -0.614543 0.769991 0.17161 -0.623678 0.70641 0.33468 0.651142 0.53945 0.53386 0.652405 0.618616 0.437815 -0.652405 0.618616 0.437815 -0.651142 0.53945 0.53386 0.67107 0.297726 0.678987 0.674791 0.424848 0.603458 -0.674791 0.424848 0.603458 -0.67107 0.297726 0.678988 0.681528 -0.099163 0.725042 0.681528 0.099164 0.725042 -0.681529 0.0991637 0.725042 -0.681528 -0.0991632 0.725042 0.67107 -0.297725 0.678988 0.681528 -0.099163 0.725042 -0.681528 -0.0991632 0.725042 -0.67107 -0.297726 0.678987 0.651142 -0.53945 0.533861 0.674791 -0.424847 0.603459 -0.674791 -0.424847 0.603459 -0.651142 -0.53945 0.533861 0.623678 -0.70641 0.334679 0.652405 -0.618616 0.437815 -0.652405 -0.618616 0.437814 -0.623678 -0.70641 0.334679 0.63068 -0.773255 0.0657143 0.614544 -0.769991 0.17161 -0.614543 -0.769991 0.17161 -0.63068 -0.773256 0.0657152 -0.537795 0.650254 -0.536606 -8.57892e-08 0.771288 -0.636486 0.63068 0.773256 0.0657147 0.533796 0.68341 -0.498009 -0.533796 0.68341 -0.498009 -0.63068 0.773256 0.0657147 0.254364 -0.938303 -0.234276 0.533796 -0.68341 -0.498009 -0.533797 -0.68341 -0.498008 0.631867 0.774741 0.0227983 0.537795 0.650254 -0.536606 0.622683 0.705954 0.337483 0.614016 0.770928 0.169279 0.674239 0.721329 0.158388 0.6886 0.654228 0.312755 0.649664 0.540403 0.534698 0.654366 0.616697 0.437595 0.676241 0.600796 0.426312 0.705276 0.503944 0.498624 0.669859 0.300539 0.678944 0.676403 0.424432 0.601944 0.699186 0.41199 0.584297 0.728147 0.27744 0.626761 0.681756 -0.0982652 0.72495 0.681756 0.098266 0.72495 0.732212 0.0914824 0.674905 0.732212 -0.0914817 0.674905 0.669859 -0.300539 0.678944 0.681756 -0.0982652 0.72495 0.732212 -0.0914817 0.674905 0.728147 -0.277439 0.626761 0.649664 -0.540402 0.534699 0.676403 -0.424432 0.601944 0.699187 -0.411989 0.584297 0.705277 -0.503943 0.498625 0.622683 -0.705954 0.337483 0.654367 -0.616696 0.437596 0.676242 -0.600795 0.426313 0.6886 -0.654228 0.312755 0.631246 -0.772962 0.0637105 0.614016 -0.770928 0.169279 0.674239 -0.721329 0.158388 0.647684 -0.759334 0.0625869 0.631246 0.772962 0.0637107 0.647684 0.759334 0.0625876 0.631867 -0.774741 0.0227984 0.254364 0.938304 -0.234276 -0.254364 0.938304 -0.234276 -0.254364 0.938304 -0.234276 -0.647685 0.759334 0.0625875 -0.674239 0.721329 0.158388 -0.6886 0.654228 0.312755 -0.676241 0.600796 0.426312 -0.705277 0.503944 0.498624 -0.699186 0.411989 0.584297 -0.728147 0.27744 0.626761 -0.732212 0.0914824 0.674905 -0.732212 -0.0914817 0.674905 -0.732212 -0.0914817 0.674905 -0.728147 -0.27744 0.626761 -0.699187 -0.411989 0.584297 -0.705276 -0.503943 0.498624 -0.676241 -0.600796 0.426312 -0.6886 -0.654228 0.312755 -0.674239 -0.721329 0.158388 -0.647685 -0.759333 0.0625879 -0.254364 -0.938304 -0.234276 -0.254364 -0.938304 -0.234276 0.254364 -0.938303 -0.234276 0.254364 -0.938303 -0.234276 0.647684 -0.759334 0.0625869 0.674239 -0.721329 0.158388 0.6886 -0.654228 0.312755 0.676242 -0.600795 0.426313 0.705277 -0.503943 0.498625 0.699187 -0.411989 0.584297 0.728147 -0.277439 0.626761 0.732212 -0.0914817 0.674905 0.732212 -0.0914817 0.674905 0.732212 0.0914824 0.674905 0.728147 0.27744 0.626761 0.699186 0.41199 0.584297 0.705276 0.503944 0.498624 0.676241 0.600796 0.426312 0.6886 0.654228 0.312755 0.674239 0.721329 0.158388 0.647684 0.759334 0.0625876 0.254364 0.938304 -0.234276 0.829306 0.0262073 -0.55818 0.356873 0.146729 -0.922558 0.386497 0.198016 -0.900783 0.844158 0.0770767 -0.530525 -0.98828 -0.118779 -0.0958865 -0.995459 -0.0509119 -0.0804278 -0.838472 0.109197 -0.533891 -0.808002 0.0638658 -0.585709 0.689488 2.86308e-08 0.724297 0.699295 0.137436 0.701497 0.318024 0.174246 0.931933 0.301302 1.46407e-08 0.953529 0.951003 9.40052e-08 -0.309181 0.950013 -0.0543063 -0.307451 0.973851 -0.0349326 -0.224486 0.974069 6.72864e-08 -0.226249 -0.965518 -0.192628 -0.175129 -0.981492 -0.137283 -0.133517 -0.984503 -0.123015 -0.124988 -0.970661 -0.17813 -0.161515 0.757963 0.534289 0.374203 0.733483 0.608027 0.303817 0.335474 0.835211 0.435752 0.36376 0.757123 0.542627 0.97069 -0.1774 -0.162144 0.97605 -0.165352 -0.141367 0.98673 -0.114163 -0.115459 0.984509 -0.122303 -0.125635 0.735945 0.40061 0.5458 0.742203 0.428376 0.515391 0.376152 0.591039 0.71357 0.377811 0.549862 0.744923 0.944812 -0.202686 -0.257389 0.952071 -0.202109 -0.229595 0.974331 -0.143582 -0.173389 0.970604 -0.143315 -0.193362 -0.94375 -0.170204 -0.283492 -0.971323 -0.114163 -0.208563 -0.970604 -0.143315 -0.193362 -0.944812 -0.202686 -0.257389 -0.975744 -0.184676 -0.117552 -0.989465 -0.113538 -0.0898201 -0.994838 -0.0909096 -0.0450953 -0.981099 -0.181927 -0.0659406 0.702586 0.676942 0.219366 0.689739 0.717991 0.0935361 0.299607 0.946946 0.116317 0.302273 0.900759 0.311872 0.980179 -0.174674 -0.0934734 0.98359 -0.164001 -0.075198 0.989885 -0.120448 -0.074964 0.988175 -0.134614 -0.0734113 -0.952071 -0.202109 -0.229595 -0.974331 -0.143582 -0.173389 -0.978613 -0.142162 -0.14868 -0.959409 -0.201228 -0.197588 0.748828 0.466475 0.470806 0.75935 0.496726 0.420297 0.37452 0.703856 0.60359 0.37481 0.65105 0.660039 0.959406 -0.201338 -0.197494 0.965513 -0.192629 -0.175152 0.981494 -0.137262 -0.133522 0.978612 -0.142256 -0.1486 0.718146 0.237144 0.65424 0.728764 0.33346 0.598086 0.371518 0.457682 0.807776 0.350301 0.315316 0.881967 0.947178 -0.111106 -0.300849 0.94375 -0.170203 -0.283492 0.971323 -0.114162 -0.208563 0.972398 -0.075201 -0.220877 -0.950013 -0.0543063 -0.307451 -0.973851 -0.0349327 -0.224486 -0.972398 -0.0752012 -0.220877 -0.947178 -0.111106 -0.300849 -0.356961 0.145517 -0.922715 -0.386453 0.196795 -0.901069 0.00092676 0.176982 -0.984214 0.00050594 0.122088 -0.992519 4.24569e-08 0.338887 0.940827 -0.350301 0.315316 0.881967 -0.318024 0.174246 0.931933 2.33188e-08 0.181168 0.983452 -0.000483373 0.945042 0.326949 -0.367738 0.879104 0.303225 -0.376282 0.827634 0.416454 -0.00028459 0.887929 0.45998 7.54736e-06 0.703281 0.710912 -0.3737 0.650869 0.660846 -0.376153 0.591039 0.71357 -4.15666e-08 0.639458 0.768826 -0.344951 0.922543 -0.172983 -0.341516 0.930962 0.129138 -0.00023273 0.992721 0.120437 0.000687259 0.975414 -0.220377 -6.05529e-05 0.813386 0.581725 -0.373085 0.758493 0.534318 -0.37235 0.70459 0.604076 1.45242e-05 0.758882 0.651228 -3.98178e-08 0.596664 0.802492 -0.377811 0.549862 0.744923 -0.371518 0.457682 0.807776 4.41315e-08 0.50099 0.865453 0.376152 0.591039 0.71357 0.3352 0.924972 -0.179077 -0.808002 0.0638658 -0.585709 -0.838472 0.109197 -0.533891 -0.718146 0.237143 0.654239 -0.699295 0.137435 0.701497 -0.766315 0.609566 0.202956 -0.76184 0.588775 0.27008 -0.748513 0.465759 0.472013 -0.742204 0.428376 0.515391 -0.698512 0.712571 -0.065748 -0.748499 0.652327 0.119244 -0.759953 0.540926 0.360374 -0.757349 0.498738 0.421524 -0.735945 0.400609 0.5458 -0.728764 0.33346 0.598086 0.394917 0.737082 -0.548408 0.798368 0.523861 -0.296948 0.853969 0.242885 -0.460157 0.418597 0.409705 -0.810505 -0.999262 0.0304371 -0.0234235 -0.967325 0.247407 0.0554211 -0.958195 0.285763 0.0142031 -0.996467 0.0682249 -0.0489841 0.969581 0.0903931 0.227467 0.967435 0.0569995 0.246617 0.996217 -0.00789629 -0.0865353 0.996065 -0.0236718 -0.0854047 -0.996965 -0.0461433 -0.0626982 -0.974945 0.161897 0.152552 -0.977855 0.167489 0.125485 -0.997203 -0.0438515 -0.0605286 0.969817 0.236353 0.0599425 0.975012 0.210568 0.0707958 0.997492 -0.0221383 -0.0672266 0.999089 -0.0260967 -0.0337687 0.974769 0.162939 0.152565 0.973495 0.152398 0.170533 0.996413 -0.0457858 -0.0711657 0.996976 -0.0460804 -0.0625792 -0.996065 -0.023672 -0.0854046 -0.969581 0.0903928 0.227467 -0.969468 0.124497 0.211266 -0.996042 -0.0377858 -0.0804548 -0.997593 -0.0300792 -0.0624791 -0.975581 0.195591 0.0999256 -0.969888 0.234423 0.0660519 -0.998598 -0.00361721 -0.0528128 0.798368 0.523861 -0.296948 0.948904 0.315445 -0.00873937 0.997974 0.0179956 -0.0610226 0.853969 0.242885 -0.460157 -0.995926 -0.0476949 -0.0765227 -0.971733 0.144089 0.187013 -0.973495 0.152398 0.170533 -0.996413 -0.0457857 -0.0711657 0.977519 0.184578 0.101918 0.977851 0.167447 0.125571 0.997221 -0.0436442 -0.0603739 0.99751 -0.0310471 -0.0633202 0.971733 0.144089 0.187013 0.969467 0.124497 0.211266 0.996042 -0.0377854 -0.0804549 0.995926 -0.0476947 -0.0765227 -0.99622 -4.33673e-08 -0.0868642 -0.966513 -4.22476e-08 0.256616 -0.967435 0.0569993 0.246617 -0.996217 -0.00789638 -0.0865353 -0.418226 0.408675 -0.811216 -0.394673 0.736508 -0.549353 0.00147744 0.783047 -0.62196 0.00156169 0.419592 -0.907711 -0.856938 0.256028 -0.447333 -0.812475 0.512511 -0.277879 0.974331 -0.143582 -0.173389 0.844158 0.0770767 -0.530525 -0.974331 -0.143582 -0.173389 -0.974069 -1.67952e-08 -0.226249 0.665468 0.739912 -0.0984008 0.742203 0.428376 0.515391 -0.742204 0.428376 0.515391 -0.689488 -3.31538e-08 0.724297 0.952071 -0.202109 -0.229595 -0.952071 -0.202109 -0.229595 -0.951003 1.29356e-08 -0.309181 -0.301302 -1.6111e-08 0.953529 1.20552e-08 1.45201e-09 1 -4.15666e-08 0.639458 0.768826 -0.376153 0.591039 0.71357 0.966513 4.37404e-08 0.256617 0.99622 4.3725e-08 -0.0868642 0.973495 0.152398 0.170533 0.996413 -0.0457858 -0.0711657 -0.996413 -0.0457857 -0.0711657 -0.973495 0.152398 0.170533 0.829306 0.0262073 -0.55818 -0.812475 0.512511 -0.277879 -0.856938 0.256028 -0.447333 0.829306 -0.026206 -0.55818 0.844158 -0.077076 -0.530525 0.386497 -0.198015 -0.900783 0.356873 -0.146728 -0.922558 -0.838472 -0.109196 -0.533892 -0.995459 0.0509119 -0.0804277 -0.98828 0.118779 -0.0958864 -0.808002 -0.0638646 -0.585709 0.689488 2.86308e-08 0.724297 0.301302 1.46407e-08 0.953529 0.318024 -0.174246 0.931933 0.699295 -0.137435 0.701497 0.951003 9.40052e-08 -0.309181 0.974069 6.72864e-08 -0.226249 0.973851 0.0349327 -0.224486 0.950013 0.0543064 -0.307451 -0.984503 0.123015 -0.124988 -0.981492 0.137283 -0.133517 -0.965517 0.192629 -0.175129 -0.970661 0.17813 -0.161515 0.757963 -0.534289 0.374203 0.36376 -0.757123 0.542627 0.335474 -0.835211 0.435752 0.733483 -0.608027 0.303817 0.97069 0.1774 -0.162144 0.984509 0.122304 -0.125635 0.98673 0.114163 -0.115459 0.97605 0.165352 -0.141367 0.735945 -0.40061 0.5458 0.377811 -0.549862 0.744923 0.376153 -0.591039 0.71357 0.742204 -0.428376 0.515391 0.944812 0.202686 -0.257388 0.970604 0.143315 -0.193362 0.974331 0.143582 -0.173389 0.952071 0.202109 -0.229595 -0.970604 0.143315 -0.193362 -0.971323 0.114162 -0.208563 -0.94375 0.170203 -0.283491 -0.944812 0.202686 -0.257388 -0.994838 0.0909094 -0.0450953 -0.989465 0.113538 -0.08982 -0.975744 0.184675 -0.117552 -0.981099 0.181926 -0.0659407 0.702586 -0.676942 0.219366 0.302273 -0.900759 0.311872 0.299607 -0.946946 0.116317 0.689739 -0.717991 0.0935361 0.980179 0.174675 -0.0934734 0.988175 0.134614 -0.0734113 0.989885 0.120448 -0.0749639 0.98359 0.164002 -0.075198 -0.978613 0.142162 -0.14868 -0.974331 0.143582 -0.173389 -0.952071 0.202109 -0.229595 -0.959409 0.201228 -0.197588 0.748828 -0.466475 0.470806 0.37481 -0.65105 0.660039 0.37452 -0.703857 0.60359 0.75935 -0.496726 0.420297 0.959406 0.201338 -0.197494 0.978612 0.142256 -0.1486 0.981494 0.137262 -0.133522 0.965513 0.19263 -0.175152 0.718146 -0.237143 0.65424 0.350301 -0.315316 0.881967 0.371518 -0.457682 0.807776 0.728764 -0.33346 0.598086 0.947178 0.111106 -0.300849 0.972398 0.0752013 -0.220877 0.971323 0.114163 -0.208563 0.94375 0.170204 -0.283492 -0.972398 0.0752009 -0.220877 -0.973851 0.0349326 -0.224486 -0.950013 0.0543063 -0.307451 -0.947178 0.111105 -0.300849 0.000926756 -0.176981 -0.984214 -0.386454 -0.196794 -0.901069 -0.356961 -0.145516 -0.922715 0.000505931 -0.122086 -0.992519 6.25383e-08 -0.338887 0.940827 3.9157e-08 -0.181168 0.983452 -0.318024 -0.174246 0.931933 -0.350301 -0.315316 0.881967 -0.000483334 -0.945042 0.326949 -0.000284533 -0.887929 0.45998 -0.376282 -0.827634 0.416454 -0.367738 -0.879104 0.303225 7.6178e-06 -0.703282 0.710912 4.15666e-08 -0.639458 0.768826 -0.376152 -0.591039 0.71357 -0.3737 -0.650869 0.660846 -0.000232676 -0.992721 0.120437 -0.341516 -0.930962 0.129138 -0.344951 -0.922543 -0.172983 0.000687319 -0.975414 -0.220378 -6.04948e-05 -0.813386 0.581725 1.45906e-05 -0.758882 0.651228 -0.37235 -0.704591 0.604076 -0.373085 -0.758493 0.534318 7.64492e-08 -0.596664 0.802491 5.01978e-08 -0.50099 0.865453 -0.371518 -0.457682 0.807776 -0.377811 -0.549862 0.744923 0.37481 -0.65105 0.660039 0.3352 -0.924971 -0.179078 -0.838472 -0.109196 -0.533892 -0.808002 -0.0638646 -0.585709 -0.699295 -0.137436 0.701497 -0.718146 -0.237144 0.654239 -0.76184 -0.588775 0.27008 -0.766315 -0.609566 0.202956 -0.742203 -0.428376 0.515391 -0.748513 -0.46576 0.472013 -0.748499 -0.652327 0.119244 -0.698512 -0.712571 -0.0657483 -0.757349 -0.498739 0.421524 -0.759953 -0.540926 0.360375 -0.728764 -0.333461 0.598086 -0.735945 -0.40061 0.5458 0.853969 -0.242884 -0.460157 0.798367 -0.523861 -0.296949 0.394917 -0.737081 -0.548408 0.418597 -0.409705 -0.810505 -0.999262 -0.0304372 -0.0234235 -0.996467 -0.068225 -0.0489841 -0.958195 -0.285764 0.0142031 -0.967325 -0.247407 0.0554211 0.996217 0.00789639 -0.0865353 0.967435 -0.0569994 0.246617 0.969581 -0.0903928 0.227467 0.996065 0.023672 -0.0854047 -0.996965 0.0461432 -0.0626984 -0.997203 0.0438511 -0.0605287 -0.977855 -0.167489 0.125485 -0.974945 -0.161897 0.152552 0.997492 0.0221383 -0.0672266 0.975012 -0.210568 0.0707958 0.969817 -0.236353 0.0599425 0.999089 0.0260967 -0.0337687 0.996413 0.0457859 -0.0711657 0.973495 -0.152398 0.170533 0.974769 -0.162938 0.152565 0.996976 0.0460806 -0.0625792 -0.996065 0.0236718 -0.0854048 -0.996042 0.0377855 -0.080455 -0.969467 -0.124497 0.211266 -0.969581 -0.0903931 0.227467 -0.997593 0.030079 -0.0624791 -0.998598 0.00361712 -0.0528129 -0.969888 -0.234423 0.0660519 -0.975581 -0.195591 0.0999256 0.997974 -0.0179955 -0.0610226 0.948904 -0.315444 -0.00873942 0.798367 -0.523861 -0.296949 0.853969 -0.242884 -0.460157 -0.995926 0.0476949 -0.0765227 -0.996413 0.0457859 -0.0711657 -0.973495 -0.152398 0.170533 -0.971733 -0.144089 0.187012 0.997221 0.0436446 -0.0603739 0.977851 -0.167447 0.125571 0.977519 -0.184578 0.101918 0.99751 0.0310473 -0.0633202 0.996042 0.0377857 -0.0804549 0.969468 -0.124497 0.211266 0.971733 -0.144089 0.187012 0.995926 0.0476949 -0.0765227 -0.99622 -4.33673e-08 -0.0868642 -0.996217 0.0078963 -0.0865353 -0.967435 -0.0569995 0.246617 -0.966513 -4.22476e-08 0.256616 -0.418226 -0.408675 -0.811216 0.00156172 -0.419593 -0.907711 0.00147747 -0.783047 -0.621961 -0.394673 -0.736508 -0.549354 -0.856938 -0.256028 -0.447333 -0.812475 -0.512511 -0.277879 -0.978613 0.142162 -0.14868 0.978612 0.142256 -0.1486 0.844158 -0.077076 -0.530525 -0.974069 -1.67952e-08 -0.226249 0.665469 -0.739911 -0.0984011 -0.748513 -0.46576 0.472013 0.748828 -0.466475 0.470806 -0.689488 -3.31538e-08 0.724297 -0.959409 0.201228 -0.197588 0.959406 0.201338 -0.197494 -0.951003 1.29356e-08 -0.309181 1.20552e-08 1.45201e-09 1 -0.301302 -1.6111e-08 0.953529 7.6178e-06 -0.703282 0.710912 -0.3737 -0.650869 0.660846 0.99622 4.3725e-08 -0.0868642 0.966513 4.37404e-08 0.256617 -0.996965 0.0461432 -0.0626984 -0.974945 -0.161897 0.152552 0.996976 0.0460806 -0.0625792 0.974769 -0.162938 0.152565 0.829306 -0.026206 -0.55818 -0.856938 -0.256028 -0.447333 -0.812475 -0.512511 -0.277879 0.829306 0.0262072 -0.55818 0.356873 0.14673 -0.922558 0.386497 0.198016 -0.900783 0.844158 0.0770771 -0.530525 -0.98828 -0.118779 -0.095886 -0.995459 -0.0509116 -0.0804275 -0.838473 0.109197 -0.533891 -0.808002 0.0638658 -0.585708 0.689488 3.61691e-08 0.724297 0.699295 0.137435 0.701497 0.318024 0.174246 0.931933 0.301303 2.0522e-08 0.953529 0.951003 9.6075e-08 -0.309181 0.950013 -0.0543062 -0.307451 0.973851 -0.0349326 -0.224486 0.974069 6.76445e-08 -0.22625 -0.965518 -0.192628 -0.175128 -0.981492 -0.137283 -0.133517 -0.984503 -0.123015 -0.124988 -0.970661 -0.17813 -0.161514 0.757963 0.534289 0.374203 0.733484 0.608027 0.303817 0.335474 0.835211 0.435752 0.36376 0.757123 0.542627 0.97069 -0.1774 -0.162144 0.97605 -0.165352 -0.141367 0.98673 -0.114163 -0.115459 0.984509 -0.122303 -0.125635 0.735945 0.40061 0.5458 0.742203 0.428376 0.515391 0.376153 0.591039 0.71357 0.377811 0.549862 0.744923 0.944812 -0.202686 -0.257388 0.952071 -0.202108 -0.229595 0.974331 -0.143582 -0.173389 0.970604 -0.143315 -0.193362 -0.943749 -0.170205 -0.283493 -0.971323 -0.114163 -0.208563 -0.970604 -0.143316 -0.193362 -0.944811 -0.202688 -0.25739 -0.975744 -0.184675 -0.117552 -0.989465 -0.113538 -0.0898202 -0.994838 -0.0909097 -0.0450954 -0.981099 -0.181926 -0.0659402 0.702586 0.676942 0.219366 0.689739 0.717991 0.0935362 0.299606 0.946946 0.116317 0.302273 0.900759 0.311872 0.980179 -0.174675 -0.0934736 0.98359 -0.164002 -0.075198 0.989885 -0.120448 -0.074964 0.988175 -0.134614 -0.0734114 -0.95207 -0.202109 -0.229595 -0.974331 -0.143582 -0.17339 -0.978613 -0.142162 -0.14868 -0.95941 -0.201227 -0.197587 0.748828 0.466475 0.470806 0.759351 0.496726 0.420297 0.37452 0.703857 0.60359 0.37481 0.65105 0.660039 0.959406 -0.201338 -0.197494 0.965513 -0.19263 -0.175152 0.981494 -0.137262 -0.133522 0.978612 -0.142256 -0.1486 0.718146 0.237143 0.65424 0.728764 0.33346 0.598086 0.371518 0.457682 0.807776 0.350301 0.315316 0.881967 0.947178 -0.111106 -0.300849 0.943749 -0.170203 -0.283492 0.971323 -0.114163 -0.208563 0.972398 -0.075201 -0.220878 -0.950013 -0.0543065 -0.307451 -0.973851 -0.0349327 -0.224486 -0.972398 -0.0752011 -0.220877 -0.947177 -0.111106 -0.300849 -0.356961 0.145517 -0.922715 -0.386454 0.196795 -0.901069 0.000926931 0.176983 -0.984214 0.000506059 0.122088 -0.992519 8.54094e-08 0.338887 0.940827 -0.350301 0.315315 0.881967 -0.318024 0.174246 0.931933 2.57217e-08 0.181168 0.983452 -0.000483322 0.945042 0.326949 -0.367738 0.879104 0.303225 -0.376282 0.827634 0.416454 -0.000284547 0.887929 0.45998 7.6101e-06 0.703281 0.710911 -0.3737 0.650869 0.660846 -0.376153 0.591039 0.71357 4.92001e-08 0.639458 0.768826 -0.344951 0.922543 -0.172982 -0.341516 0.930962 0.129138 -0.000232652 0.992721 0.120437 0.000687331 0.975414 -0.220377 -6.05268e-05 0.813386 0.581725 -0.373085 0.758493 0.534318 -0.37235 0.70459 0.604076 1.4555e-05 0.758882 0.651228 7.46555e-08 0.596664 0.802491 -0.377811 0.549862 0.744923 -0.371518 0.457682 0.807776 9.60126e-08 0.50099 0.865453 0.376153 0.591039 0.71357 0.3352 0.924972 -0.179077 -0.808002 0.0638658 -0.585708 -0.838473 0.109197 -0.533891 -0.718146 0.237144 0.65424 -0.699295 0.137435 0.701497 -0.766315 0.609566 0.202955 -0.76184 0.588775 0.27008 -0.748513 0.46576 0.472013 -0.742204 0.428376 0.515391 -0.698513 0.712571 -0.0657479 -0.748499 0.652327 0.119244 -0.759954 0.540926 0.360375 -0.757349 0.498738 0.421524 -0.735945 0.40061 0.5458 -0.728765 0.33346 0.598086 0.394917 0.737082 -0.548408 0.798368 0.523861 -0.296949 0.853969 0.242885 -0.460157 0.418597 0.409705 -0.810505 -0.999262 0.0304375 -0.0234235 -0.967325 0.247407 0.055421 -0.958195 0.285763 0.0142031 -0.996467 0.0682253 -0.048984 0.969581 0.0903931 0.227467 0.967435 0.0569996 0.246618 0.996217 -0.00789619 -0.0865352 0.996065 -0.0236716 -0.0854047 -0.996965 -0.0461436 -0.0626985 -0.974945 0.161897 0.152552 -0.977855 0.167489 0.125486 -0.997203 -0.0438516 -0.0605286 0.969817 0.236353 0.0599426 0.975012 0.210568 0.0707958 0.997492 -0.022138 -0.0672265 0.999089 -0.0260964 -0.0337685 0.974769 0.162939 0.152565 0.973495 0.152398 0.170533 0.996413 -0.0457857 -0.0711659 0.996976 -0.0460803 -0.0625792 -0.996065 -0.0236718 -0.0854051 -0.969581 0.090393 0.227466 -0.969468 0.124497 0.211265 -0.996042 -0.0377857 -0.0804546 -0.997593 -0.030079 -0.062479 -0.975581 0.195591 0.0999257 -0.969888 0.234423 0.0660518 -0.998598 -0.00361701 -0.0528128 0.798368 0.523861 -0.296949 0.948904 0.315445 -0.00873931 0.997974 0.0179956 -0.0610227 0.853969 0.242885 -0.460157 -0.995926 -0.0476947 -0.0765221 -0.971733 0.144089 0.187013 -0.973495 0.152398 0.170533 -0.996413 -0.0457857 -0.0711657 0.977519 0.184578 0.101919 0.977851 0.167447 0.125571 0.997221 -0.0436441 -0.0603737 0.99751 -0.0310468 -0.0633199 0.971733 0.14409 0.187013 0.969467 0.124497 0.211266 0.996042 -0.0377856 -0.080455 0.995926 -0.0476949 -0.0765228 -0.99622 -4.35462e-08 -0.0868648 -0.966513 -4.22476e-08 0.256616 -0.967435 0.0569992 0.246617 -0.996217 -0.00789658 -0.0865359 -0.418226 0.408675 -0.811216 -0.394673 0.736508 -0.549353 0.00147753 0.783047 -0.62196 0.00156186 0.419592 -0.907711 -0.856938 0.256029 -0.447333 -0.812476 0.51251 -0.277878 0.974331 -0.143582 -0.173389 0.844158 0.0770771 -0.530525 -0.974331 -0.143582 -0.17339 -0.974069 -1.93019e-08 -0.22625 0.665468 0.739912 -0.0984008 0.742203 0.428376 0.515391 -0.742204 0.428376 0.515391 -0.689488 -3.31538e-08 0.724298 0.952071 -0.202108 -0.229595 -0.95207 -0.202109 -0.229595 -0.951003 9.48594e-09 -0.309181 -0.301302 -1.31703e-08 0.953529 4.82208e-09 1.45201e-09 1 4.92001e-08 0.639458 0.768826 -0.376153 0.591039 0.71357 0.966513 4.52332e-08 0.256617 0.99622 4.38144e-08 -0.0868642 0.973495 0.152398 0.170533 0.996413 -0.0457857 -0.0711659 -0.996413 -0.0457857 -0.0711657 -0.973495 0.152398 0.170533 0.829306 0.0262072 -0.55818 -0.812476 0.51251 -0.277878 -0.856938 0.256029 -0.447333 0.829306 -0.0262064 -0.55818 0.844158 -0.0770759 -0.530525 0.386497 -0.198015 -0.900783 0.356873 -0.146728 -0.922558 -0.838472 -0.109196 -0.533892 -0.995459 0.0509124 -0.0804279 -0.98828 0.11878 -0.0958868 -0.808002 -0.063864 -0.585709 0.689488 3.61691e-08 0.724297 0.301303 2.0522e-08 0.953529 0.318024 -0.174246 0.931933 0.699295 -0.137435 0.701497 0.951003 9.6075e-08 -0.309181 0.974069 6.76445e-08 -0.22625 0.973851 0.0349327 -0.224486 0.950013 0.0543064 -0.307451 -0.984503 0.123015 -0.124988 -0.981492 0.137283 -0.133517 -0.965517 0.192629 -0.17513 -0.970661 0.178131 -0.161515 0.757962 -0.534289 0.374203 0.36376 -0.757123 0.542627 0.335474 -0.835211 0.435752 0.733483 -0.608028 0.303817 0.97069 0.1774 -0.162143 0.984509 0.122303 -0.125635 0.98673 0.114162 -0.115459 0.97605 0.165351 -0.141367 0.735944 -0.40061 0.5458 0.377811 -0.549862 0.744923 0.376153 -0.591039 0.71357 0.742204 -0.428376 0.515391 0.944812 0.202687 -0.257389 0.970604 0.143316 -0.193362 0.974331 0.143582 -0.173389 0.952071 0.202109 -0.229594 -0.970604 0.143316 -0.193362 -0.971323 0.114163 -0.208563 -0.94375 0.170203 -0.283491 -0.944812 0.202686 -0.257388 -0.994838 0.0909098 -0.0450952 -0.989465 0.113538 -0.0898199 -0.975744 0.184676 -0.117553 -0.981098 0.181928 -0.0659411 0.702586 -0.676942 0.219366 0.302273 -0.900759 0.311872 0.299607 -0.946946 0.116317 0.689739 -0.717991 0.093536 0.980179 0.174674 -0.0934731 0.988175 0.134614 -0.0734111 0.989885 0.120448 -0.074964 0.98359 0.164001 -0.075198 -0.978613 0.142162 -0.148681 -0.974331 0.143582 -0.17339 -0.952071 0.202108 -0.229594 -0.959409 0.201228 -0.197588 0.748828 -0.466475 0.470806 0.37481 -0.65105 0.660039 0.37452 -0.703857 0.60359 0.75935 -0.496726 0.420298 0.959406 0.201338 -0.197494 0.978612 0.142256 -0.1486 0.981494 0.137262 -0.133522 0.965513 0.192629 -0.175151 0.718146 -0.237143 0.65424 0.350301 -0.315316 0.881967 0.371518 -0.457682 0.807776 0.728764 -0.333461 0.598086 0.947177 0.111106 -0.300849 0.972398 0.0752014 -0.220878 0.971323 0.114163 -0.208563 0.943749 0.170204 -0.283493 -0.972398 0.0752007 -0.220878 -0.973851 0.0349327 -0.224486 -0.950013 0.0543064 -0.307451 -0.947178 0.111105 -0.300849 0.000926707 -0.176981 -0.984214 -0.386454 -0.196794 -0.901069 -0.356961 -0.145515 -0.922715 0.000505881 -0.122086 -0.992519 2.43582e-08 -0.338887 0.940827 2.71424e-08 -0.181168 0.983452 -0.318024 -0.174246 0.931933 -0.350301 -0.315316 0.881966 -0.00048334 -0.945042 0.326949 -0.000284542 -0.887929 0.45998 -0.376282 -0.827634 0.416454 -0.367738 -0.879104 0.303225 7.55506e-06 -0.703281 0.710912 -4.92002e-08 -0.639458 0.768826 -0.376152 -0.591039 0.71357 -0.3737 -0.650869 0.660846 -0.000232701 -0.992721 0.120437 -0.341516 -0.930962 0.129138 -0.344951 -0.922543 -0.172983 0.000687264 -0.975414 -0.220378 -6.05121e-05 -0.813386 0.581725 1.45467e-05 -0.758882 0.651228 -0.37235 -0.704591 0.604076 -0.373086 -0.758493 0.534318 -2.42873e-08 -0.596664 0.802492 7.74959e-09 -0.50099 0.865453 -0.371518 -0.457682 0.807776 -0.377811 -0.549862 0.744923 0.37481 -0.65105 0.660039 0.3352 -0.924971 -0.179078 -0.838472 -0.109196 -0.533892 -0.808002 -0.063864 -0.585709 -0.699295 -0.137436 0.701497 -0.718146 -0.237144 0.65424 -0.76184 -0.588775 0.27008 -0.766315 -0.609566 0.202956 -0.742203 -0.428376 0.515391 -0.748513 -0.46576 0.472013 -0.748499 -0.652327 0.119244 -0.698512 -0.712572 -0.0657483 -0.757349 -0.498739 0.421524 -0.759953 -0.540926 0.360375 -0.728764 -0.333461 0.598086 -0.735944 -0.40061 0.5458 0.853969 -0.242884 -0.460157 0.798367 -0.523862 -0.296949 0.394917 -0.737081 -0.548409 0.418597 -0.409705 -0.810505 -0.999262 -0.0304371 -0.0234233 -0.996467 -0.0682249 -0.048984 -0.958195 -0.285764 0.0142033 -0.967325 -0.247407 0.0554213 0.996217 0.00789628 -0.0865352 0.967435 -0.0569995 0.246618 0.969581 -0.0903929 0.227468 0.996065 0.023672 -0.0854046 -0.996965 0.0461436 -0.0626989 -0.997203 0.0438511 -0.0605291 -0.977855 -0.167489 0.125485 -0.974945 -0.161897 0.152552 0.997492 0.0221385 -0.0672268 0.975012 -0.210568 0.0707956 0.969817 -0.236353 0.0599424 0.999089 0.0260971 -0.0337686 0.996413 0.0457861 -0.0711659 0.973495 -0.152398 0.170533 0.974769 -0.162939 0.152566 0.996976 0.0460808 -0.0625795 -0.996065 0.0236716 -0.0854053 -0.996042 0.0377859 -0.0804553 -0.969468 -0.124497 0.211266 -0.969581 -0.0903933 0.227467 -0.997593 0.0300789 -0.0624791 -0.998598 0.00361734 -0.0528127 -0.969888 -0.234423 0.066052 -0.975581 -0.195591 0.0999253 0.997974 -0.0179955 -0.0610226 0.948904 -0.315444 -0.00873948 0.798367 -0.523862 -0.296949 0.853969 -0.242884 -0.460157 -0.995926 0.0476955 -0.0765231 -0.996413 0.0457864 -0.0711664 -0.973495 -0.152398 0.170534 -0.971733 -0.144089 0.187013 0.997221 0.0436448 -0.0603741 0.977851 -0.167447 0.125571 0.977519 -0.184578 0.101918 0.99751 0.0310474 -0.0633205 0.996042 0.0377856 -0.0804548 0.969467 -0.124497 0.211266 0.971733 -0.144089 0.187013 0.995926 0.0476948 -0.0765227 -0.99622 -4.35462e-08 -0.0868648 -0.996217 0.00789651 -0.0865359 -0.967435 -0.0569993 0.246617 -0.966513 -4.22476e-08 0.256616 -0.418226 -0.408675 -0.811216 0.00156163 -0.419593 -0.907711 0.00147739 -0.783047 -0.621961 -0.394673 -0.736508 -0.549354 -0.856938 -0.256028 -0.447333 -0.812475 -0.512511 -0.277879 -0.978613 0.142162 -0.148681 0.978612 0.142256 -0.1486 0.844158 -0.0770759 -0.530525 -0.974069 -1.93019e-08 -0.22625 0.665469 -0.739911 -0.0984011 -0.748513 -0.46576 0.472013 0.748828 -0.466475 0.470806 -0.689488 -3.31538e-08 0.724298 -0.959409 0.201228 -0.197588 0.959406 0.201338 -0.197494 -0.951003 9.48594e-09 -0.309181 4.82208e-09 1.45201e-09 1 -0.301302 -1.31703e-08 0.953529 7.55506e-06 -0.703281 0.710912 -0.3737 -0.650869 0.660846 0.99622 4.38144e-08 -0.0868642 0.966513 4.52332e-08 0.256617 -0.996965 0.0461436 -0.0626989 -0.974945 -0.161897 0.152552 0.996976 0.0460808 -0.0625795 0.974769 -0.162939 0.152566 0.829306 -0.0262064 -0.55818 -0.856938 -0.256028 -0.447333 -0.812475 -0.512511 -0.277879 + + + + + + + + + + -0.61809 0.708248 0.341101 0.623218 0.708248 -0.33164 0.744931 0.636909 -0.198555 -0.741444 0.636909 0.211206 0.775002 0.631942 0.00466572 0.967086 0.245147 -0.0681684 0.999993 -0.00239156 -0.0028982 0.843056 0.410453 -0.347542 0.781904 0.577848 0.233921 0.724701 0.635909 0.265383 0.738239 0.664148 0.117939 0.78892 0.606041 0.10158 0.759216 0.497369 0.41978 0.708033 0.536126 0.459628 0.736034 0.575253 0.356845 0.755346 0.560201 0.34004 0.741492 0.318139 0.590743 0.684341 0.345569 0.642074 0.713886 0.446662 0.539314 0.73545 0.433495 0.520765 0.730612 -0.0405075 0.68159 0.680036 -0.0434492 0.73189 0.680036 0.152961 0.717045 0.73061 0.142442 0.667771 -0.741458 0.318916 -0.590366 -0.684305 0.346407 -0.641661 -0.679977 0.154483 -0.716775 -0.730557 0.143822 -0.667534 -0.759369 0.494607 -0.422757 -0.707852 0.539396 -0.456067 -0.713797 0.448453 -0.537944 -0.735478 0.432932 -0.521193 -0.782095 0.574937 -0.240364 -0.724571 0.637872 -0.260991 -0.735851 0.578341 -0.352201 -0.755555 0.556703 -0.345281 -0.775494 0.630285 -0.0367407 -0.761752 0.64703 -0.0329719 -0.738165 0.664824 -0.114548 -0.789076 0.604605 -0.108687 0.774138 -0.632276 0.0306155 -0.774332 -0.632276 -0.0252534 -0.459191 -0.759716 0.460408 0.461425 -0.759716 -0.458168 -0.843075 -0.415666 -0.341243 -0.999999 -0.000748913 0.000907473 -0.999999 -0.000671148 -0.000813106 -0.843075 0.414013 -0.343246 0.457457 0.759711 0.462139 -0.463165 0.759711 -0.456419 -0.773972 0.632263 0.0347826 0.774466 0.632264 -0.0210849 0.775386 0.630805 0.0293598 0.761782 0.646887 0.0350157 -0.843073 0.413334 0.344068 -0.999998 -0.00119403 0.0014468 -0.967089 0.245254 0.0677429 -0.775054 0.631801 -0.0108995 0.619654 -0.708256 0.338234 -0.62166 -0.708256 -0.334532 -0.743881 -0.636921 -0.202418 0.742517 -0.636921 0.207367 0.76972 0.634438 -0.0708494 -0.768355 0.634438 0.0843792 -0.208804 0.953765 0.21618 0.21335 0.953765 -0.211695 0.319441 0.905454 -0.279483 -0.314686 0.905454 0.284826 0.419782 0.8414 -0.340337 -0.414727 0.8414 0.346479 -0.769319 -0.634451 -0.0749708 0.768785 -0.63445 0.0802651 0.210189 -0.953769 0.214816 -0.211966 -0.953769 -0.213062 -0.317993 -0.905459 -0.281113 0.316132 -0.905459 0.283204 -0.418243 -0.841406 -0.342212 0.416264 -0.841406 0.344617 -0.510089 0.787193 0.346607 0.515178 0.787192 -0.338999 0.511638 -0.787199 0.344302 -0.513629 -0.7872 -0.341324 -0.0651458 0.995156 0.0736267 0.069495 0.995156 -0.0695376 0.0664684 -0.99516 0.0723844 -0.0681689 -0.99516 -0.0707842 0.967106 -0.247366 0.0592985 0.999998 -0.00133352 -0.00161613 0.779763 -0.532258 -0.329653 0.786294 -0.58025 -0.212252 0.78201 0.565948 0.261081 0.774136 0.498834 0.389716 0.754755 -0.386355 -0.530164 0.75449 -0.475649 -0.452221 0.748391 0.434785 0.500872 0.74881 0.342002 0.567731 0.73985 -0.209849 -0.639207 0.73463 -0.308519 -0.604264 0.729253 0.258263 0.633632 0.736081 0.158106 0.65817 0.723252 -0.0596421 -0.688004 0.731599 -0.11504 -0.671958 0.731756 0.0826126 0.676541 0.724382 0.0492216 0.68764 0.740421 0.222221 -0.634346 0.726819 0.207034 -0.654883 0.725935 -0.216716 0.652727 0.741158 -0.246312 0.624512 0.749542 0.346633 -0.563943 0.731807 0.279408 -0.621602 0.735437 -0.318895 0.597861 0.75493 -0.388008 0.528707 0.774096 0.49865 -0.39003 0.748467 0.435199 -0.500399 0.754474 -0.475517 0.452385 0.779741 -0.532073 0.330004 0.772921 0.6183 -0.142473 0.781982 0.565869 -0.261336 0.786282 -0.580196 0.212447 0.774191 -0.621067 0.122083 -0.843075 -0.415682 0.341224 -0.999999 -0.000688686 -0.000834408 0.774193 -0.621074 -0.122034 0.794087 -0.607555 0.0174114 0.793056 0.60898 -0.0143525 0.772928 0.618314 0.142371 -0.967108 -0.247104 -0.060351 0.79305 0.608988 0.0143336 0.794086 -0.607556 -0.0174111 0.775075 -0.631525 -0.0208604 0.843074 -0.416074 0.340748 0.782474 -0.561817 -0.268507 0.789294 -0.599626 -0.132153 0.738513 -0.658343 -0.145543 0.725141 -0.621125 -0.297278 0.760222 -0.462294 -0.45645 0.756177 -0.533928 -0.378308 0.73668 -0.551622 -0.391172 0.708932 -0.501736 -0.495657 0.742488 -0.271962 -0.612166 0.736531 -0.390477 -0.552313 0.714939 -0.403538 -0.570981 0.685421 -0.295569 -0.665461 0.731579 0.0906466 -0.675703 0.73158 -0.0924949 -0.675453 0.681076 -0.0993169 -0.725446 0.681076 0.0973627 -0.725711 -0.742488 -0.272213 0.612055 -0.731579 -0.0927492 0.675418 -0.681076 -0.0996223 0.725404 -0.68542 -0.295911 0.665309 -0.760221 -0.462536 0.456206 -0.736531 -0.390738 0.552129 -0.714939 -0.403936 0.5707 -0.708932 -0.502198 0.49519 -0.782474 -0.561987 0.268151 -0.756177 -0.53415 0.377994 -0.73668 -0.552109 0.390485 -0.725141 -0.6216 0.296283 -0.775583 -0.629043 0.0526923 -0.789294 -0.59972 0.131723 -0.738513 -0.658625 0.144262 -0.761909 -0.645465 0.0535692 0.775582 -0.629005 -0.0531452 0.761907 -0.645344 -0.0550263 -0.775076 -0.631542 0.0203021 0.967108 -0.246788 0.0616182 0.967109 0.246788 -0.0616211 0.527912 0.337683 0.779281 0.754966 0.62855 0.186953 0.729992 0.618466 0.290879 0.719665 0.563663 0.40542 0.725142 0.440851 0.528979 0.69572 0.356842 0.623408 0.703298 0.24947 0.665685 0.680237 0.180253 0.710483 0.680342 0.144258 0.718557 0.650522 0.199538 0.732806 0.664686 -0.312069 0.678826 0.68129 -0.192706 0.706193 0.693288 -0.191103 0.694861 0.679405 -0.279589 0.678409 0.706203 -0.363959 0.607298 0.703689 -0.498749 0.506035 0.717098 -0.588179 0.37392 0.749818 -0.620676 0.229202 0.515355 -0.336493 0.788151 0.967108 -0.246788 -0.061618 0.967108 0.246788 0.0616201 0.527843 0.337677 -0.779331 0.754951 0.628525 -0.187096 0.72995 0.618348 -0.291238 0.7196 0.563298 -0.406042 0.725094 0.440601 -0.529254 0.696237 0.359855 -0.621095 0.705948 0.268635 -0.655342 0.684591 0.249387 -0.684939 0.657881 0.351409 -0.666111 0.657477 -0.163653 -0.735488 0.680909 -0.0763622 -0.728376 0.668062 -0.082778 -0.739487 0.686274 -0.157658 -0.71005 0.677657 -0.272624 -0.682976 0.706083 -0.363553 -0.607681 0.703805 -0.499125 -0.505502 0.717177 -0.588343 -0.373511 0.749838 -0.620705 -0.229058 0.515379 -0.336495 -0.788134 0.354062 -0.79744 0.4886 0.735183 -0.653404 0.180469 0.713591 -0.682962 0.156046 0.344386 -0.836376 0.426466 -0.114958 0.992375 -0.0444595 -0.0476274 0.997972 -0.0422434 0.118634 0.992797 0.0167424 0.0664029 0.997645 0.0171788 0.326567 -0.892588 -0.310872 0.433571 -0.861772 -0.263374 0.82075 -0.542645 -0.178623 0.771084 -0.588271 -0.243652 -0.0735442 -0.971298 -0.226214 -0.127106 -0.966727 -0.221996 -0.0857838 -0.971502 -0.220965 -0.0514234 -0.973828 -0.221393 -0.197884 0.980141 0.0128921 -0.141833 0.989571 0.0251417 -0.129119 0.990742 0.0419375 -0.188996 0.980465 0.0544878 0.579852 -0.814643 -0.0113611 0.637166 -0.770715 0.00416574 0.926696 -0.375752 0.00676989 0.901992 -0.431748 -0.00225239 -0.188937 -0.980238 -0.0586198 -0.173818 -0.983522 -0.0497174 -0.117583 -0.992791 -0.0232373 -0.128304 -0.990895 -0.0408085 0.570929 -0.800512 -0.182264 0.577717 -0.798747 -0.168065 0.886906 -0.452559 -0.0926772 0.879091 -0.465568 -0.102201 -0.257831 -0.944735 -0.202483 -0.243757 -0.95476 -0.170339 -0.174242 -0.968669 -0.176977 -0.181397 -0.96361 -0.196343 -0.245168 0.935472 0.254528 -0.163306 0.957876 0.236232 -0.184583 0.958813 0.215887 -0.262224 0.938825 0.223261 -0.194782 0.977484 0.0811542 -0.118003 0.991945 0.0460515 -0.0908764 0.995858 -0.00279016 -0.182886 0.983095 0.00876626 0.689172 -0.724088 0.0271828 0.717413 -0.695144 0.0457546 0.952562 -0.30374 0.0191809 0.946025 -0.323606 0.0177446 -0.174876 -0.984572 0.00609189 -0.160193 -0.985597 0.054189 -0.116738 -0.991797 0.0520578 -0.133791 -0.99088 0.0160348 -0.210262 0.977579 0.0113554 -0.147894 0.988929 0.0121406 -0.147015 0.988887 0.0221217 -0.209988 0.977404 0.0242109 0.535056 -0.844699 -0.0140901 0.554284 -0.832134 -0.0179701 0.884975 -0.465598 -0.00617457 0.869208 -0.494412 -0.00590993 -0.206291 -0.97848 -0.00461769 -0.200353 -0.979341 -0.0273697 -0.142205 -0.989436 -0.0281688 -0.145149 -0.989371 -0.00875317 0.486789 -0.843032 -0.228763 0.536807 -0.820468 -0.196648 0.861053 -0.495244 -0.115419 0.839565 -0.523154 -0.146425 -0.184197 -0.956384 -0.226719 -0.240132 -0.94218 -0.233738 -0.159784 -0.963 -0.217026 -0.125235 -0.96694 -0.222131 -0.133198 0.961139 0.241808 -0.0901294 0.966429 0.240606 -0.129265 0.961716 0.241648 -0.189852 0.950295 0.246771 0.724525 0.66662 -0.17516 0.704569 0.693443 -0.150729 0.999976 0.00656547 0.00212221 0.999959 0.00892659 0.00160777 0.999812 -0.0182267 0.00656523 0.853466 0.495369 0.16188 0.841037 0.505578 0.192476 0.999702 -0.024022 0.00442521 0.999982 -0.00148679 0.00577599 0.921534 0.388217 -0.00791428 0.911021 0.412344 0.00367597 0.999983 -0.00243453 0.00531822 0.999969 -0.00562223 0.00555128 0.87433 0.485044 0.016701 0.853642 0.52052 0.0188515 0.999952 -0.007563 0.00629046 0.936639 0.350296 0.000397234 0.938431 0.345372 -0.00804679 0.999985 -0.000435261 0.00552012 0.999988 0.00039689 0.00487518 0.999983 -0.00333517 0.00476743 0.901199 0.433167 0.0143561 0.889152 0.45738 0.0145841 0.999982 -0.00395057 0.00458134 0.999871 -0.0128698 0.0095689 0.887294 0.444875 0.121636 0.870959 0.473155 0.13249 0.999863 -0.0143107 0.00828405 0.84673 -0.531992 -0.00570527 0.940703 -0.339104 0.00927927 0.391149 0.801574 -0.452197 0.36308 0.842528 -0.397893 0.499609 0.830139 0.247509 0.450686 0.846493 0.283429 0.621008 0.783751 -0.00916484 0.614139 0.789105 0.0121072 0.539173 0.841843 0.0243253 0.510864 0.859395 0.0213833 0.715114 0.698465 -0.0275323 0.654077 0.755861 -0.029285 0.586243 0.809872 0.0206354 0.558261 0.829382 0.0217154 0.57998 0.788942 0.20296 0.546749 0.809213 0.215037 0.88414 -0.467138 0.00882996 0.580924 -0.799875 0.150756 0.409813 -0.858886 0.307193 0.772523 -0.629851 0.0805956 0.0304466 0.999536 -4.71132e-05 0.247604 0.968855 -0.00337596 0.285165 0.957877 -0.0339406 0.0698113 0.997065 -0.0314375 0.144879 -0.960973 -0.235669 0.119153 -0.962165 -0.245033 -0.0273042 -0.973868 -0.225468 -0.0424075 -0.973488 -0.224771 -0.0475851 0.998632 0.0216984 0.167398 0.985601 0.0238458 0.171546 0.984926 0.022178 -0.0453601 0.998688 0.0237781 0.235751 -0.971664 0.0170281 0.211361 -0.9774 -0.00382671 -0.0227554 -0.999706 -0.00842843 -0.0256265 -0.99957 0.0142818 0.166776 -0.985914 -0.0126155 0.154199 -0.988036 0.00271333 -0.0457745 -0.99895 0.00179055 -0.0467908 -0.998855 -0.00993384 -0.0439403 0.968793 0.243946 0.148939 0.955345 0.255211 0.17522 0.954417 0.241631 -0.055967 0.969795 0.237414 -0.0314619 0.999279 0.0212668 0.198283 0.979986 0.0176535 0.235649 0.971772 0.0113167 -0.00470163 0.99978 0.0204236 0.537871 -0.842102 -0.0394867 0.315479 -0.947627 0.0497645 0.0206691 -0.998841 0.0434685 0.253779 -0.966469 -0.0391629 -0.0642032 0.970975 0.230403 0.186676 0.953894 0.23503 0.189374 0.955203 0.227429 -0.0607108 0.972634 0.22427 0.187218 -0.982173 -0.0168951 0.171494 -0.984938 -0.0220619 -0.0450738 -0.99873 -0.0225227 -0.0324898 -0.999232 -0.021883 0.18344 -0.959475 -0.213912 0.171764 -0.959638 -0.222692 -0.0546269 -0.974255 -0.218731 -0.0628707 -0.975645 -0.210153 -0.020725 0.97112 0.237688 0.0692468 0.962904 0.260809 0.123996 0.956123 0.265432 -0.0289682 0.969075 0.245061 0.766995 0.637331 -0.0743527 0.881768 0.471682 -0.00111533 0.99999 0.00153169 0.00430383 0.999987 0.00376717 0.00346182 0.410554 0.863784 -0.2921 0.562962 0.813579 -0.145475 -0.145748 -0.989322 0.000245092 0.0892269 -0.996008 -0.00272818 -0.17704 0.964451 0.19619 -0.0559855 0.968901 0.241034 0.745764 -0.664628 0.0458971 0.504154 -0.863574 -0.00824622 0.586529 0.787252 0.190309 0.349191 0.87611 0.33241 -0.207146 -0.978308 0.0022084 -0.247427 0.950177 0.18959 -0.079953 0.965986 0.245926 0.801667 0.541444 0.253316 0.999502 -0.0315554 -1.1766e-08 0.999863 -0.0127143 0.010575 0.894746 0.431772 0.114028 0.0636921 -0.968709 -0.239888 -0.019006 -0.975769 -0.217975 0.186366 -0.960802 -0.205249 -0.0594353 -0.977286 -0.203417 -0.0466015 0.998865 0.00984364 0.156373 0.987647 0.0100455 0.0241305 -0.999647 -0.0110834 0.517849 0.853377 0.0598296 0.256172 0.96468 0.0613901 -0.380373 -0.758227 -0.529535 -0.368975 -0.801456 -0.470666 -0.740913 -0.648294 -0.175391 -0.759396 -0.620708 -0.195037 -0.103022 0.993814 -0.0414685 0.0497374 0.998625 0.0165415 0.117984 0.992918 0.0139375 -0.0485091 0.997944 -0.0418942 0.323784 0.894518 -0.308223 0.776424 0.580495 -0.24534 0.824138 0.536728 -0.180885 0.431433 0.8636 -0.260884 -0.0715566 0.972849 -0.220099 -0.0498813 0.975394 -0.214753 -0.0844145 0.973005 -0.214791 -0.125421 0.968185 -0.216533 0.129987 0.990293 -0.0492194 0.143536 0.988902 -0.038349 0.202816 0.978312 -0.0420948 0.190582 0.979513 -0.0650673 -0.582818 -0.81234 0.020655 -0.903457 -0.428611 0.00761145 -0.928532 -0.371237 0.00329762 -0.641049 -0.767409 0.0118248 0.189074 -0.980157 0.0595313 0.128795 -0.990655 0.0448856 0.118316 -0.99253 0.0297569 0.173094 -0.983911 0.0442553 0.565411 0.807103 -0.169985 0.877834 0.468544 -0.099367 0.885576 0.455836 -0.089262 0.573432 0.803958 -0.157563 -0.256129 0.94686 -0.194561 -0.180464 0.964921 -0.190683 -0.174026 0.968975 -0.175508 -0.242143 0.956619 -0.162008 -0.180546 -0.964807 0.191181 -0.158946 -0.964148 0.212495 -0.23988 -0.9425 0.232705 -0.256243 -0.94672 0.195092 0.0916319 0.995691 -0.0142178 0.116981 0.992551 -0.0340259 0.1908 0.980683 -0.0430821 0.183735 0.982719 -0.0224434 -0.69353 -0.720425 -0.00191946 -0.947772 -0.318937 -0.00256531 -0.953181 -0.302338 -0.00617402 -0.720413 -0.693462 -0.0107192 0.176735 -0.984156 0.0141728 0.135605 -0.990725 0.00866782 0.119382 -0.992675 -0.0185613 0.162973 -0.986435 -0.0196622 -0.168258 -0.96899 0.180964 -0.174098 -0.968872 0.175999 -0.242231 -0.95652 0.16246 -0.235625 -0.956943 0.169531 -0.536113 -0.843985 0.01648 -0.870857 -0.491439 0.0097786 -0.885603 -0.464374 0.00799071 -0.55521 -0.831459 0.0204406 0.207228 -0.978247 0.00940691 0.146491 -0.98905 0.0179008 0.142817 -0.989202 0.0329054 0.201691 -0.978812 0.035327 0.4842 0.845528 -0.225016 0.841248 0.519927 -0.148247 0.861164 0.495007 -0.115604 0.533218 0.824339 -0.190116 -0.18308 0.957524 -0.222777 -0.124081 0.96835 -0.216569 -0.158857 0.964269 -0.212012 -0.239748 0.942667 -0.232165 -0.124184 -0.968226 0.217065 -0.0845254 -0.972885 0.215291 -0.125577 -0.968052 0.217039 -0.183226 -0.957376 0.223293 -0.999997 0.00193232 -0.00128908 -0.736871 0.653437 0.173321 -0.754597 0.627158 0.193018 -0.999993 0.00351683 -0.000942319 1 0.000475353 0.000171155 1 0.000634432 0.000116829 0.824685 -0.535764 0.181252 0.841619 -0.519212 0.14865 -0.999995 -0.000551746 -0.00307313 -0.999993 -0.00141114 -0.0033426 -0.912021 0.410042 -0.00915476 -0.922728 0.385448 -0.0015635 1 0.000288144 0.000274337 1 0.000304835 0.000253476 0.885777 -0.455344 0.0897753 0.895873 -0.437875 0.0753407 -0.999996 -9.99096e-05 -0.00275543 -0.938781 0.344513 0.000928705 -0.937113 0.34894 0.00778315 -0.999997 -0.000136753 -0.00251354 -0.999992 -0.00233867 -0.00337399 -0.999988 -0.00322539 -0.00373618 -0.889716 0.456224 -0.016281 -0.902054 0.431261 -0.0176575 1 0.000328533 0.000244185 1 0.000370708 0.000214536 0.861426 -0.494449 0.116041 0.878054 -0.468027 0.0998604 0.895339 0.438945 -0.0754602 -0.940873 -0.338525 -0.0125918 -0.389289 0.805604 0.446606 -0.420333 0.759091 0.497092 0.431878 -0.863221 0.261402 0.484531 -0.845211 0.225495 -0.616581 0.786934 -0.0237277 -0.624119 0.781265 -0.0100479 0.573649 -0.803701 0.158089 0.585582 -0.798271 0.140915 -0.65704 0.753856 -0.000276691 -0.714241 0.699895 0.00274917 -0.560529 0.827667 -0.0278196 -0.589229 0.807384 -0.0306677 0.533472 -0.824068 0.190576 0.565643 -0.806832 0.170497 -0.431732 -0.824369 -0.366091 -0.592333 -0.771971 -0.230657 -0.892239 -0.449986 -0.037715 -0.795574 -0.595844 -0.109691 -0.0301364 0.99946 -0.0130904 -0.0685166 0.997641 0.00429708 -0.285826 0.958278 -0.00256739 -0.248567 0.968498 -0.015021 -0.0267177 0.975455 -0.21857 0.117719 0.963853 -0.23902 0.143353 0.962961 -0.228376 -0.0418112 0.9752 -0.217338 0.0474534 0.998682 -0.0195702 0.0457919 0.998468 -0.0310567 -0.172643 0.984487 -0.0313113 -0.165893 0.986048 -0.0137519 0.0238023 -0.999427 0.0240515 -0.212569 -0.9769 0.0219457 -0.237205 -0.971431 0.00742855 0.0264604 -0.999596 0.0103681 -0.058399 0.980675 -0.186725 0.183768 0.965098 -0.186586 0.189442 0.965368 -0.179376 -0.0568781 0.981371 -0.183511 -0.0418497 -0.975091 0.21782 -0.054046 -0.976057 0.210692 0.170034 -0.962073 0.213316 0.143456 -0.96283 0.228865 0.0324431 0.998782 -0.037175 0.00511089 0.99959 -0.0281766 -0.236514 0.971287 -0.02575 -0.199748 0.97928 -0.0333384 -0.0186139 -0.999781 -0.00958138 -0.315517 -0.948879 -0.00878721 -0.521542 -0.848046 0.0938734 -0.236351 -0.968936 0.0728074 -0.0621321 -0.978016 0.199061 -0.0584305 -0.980577 0.18723 0.183842 -0.964984 0.187104 0.181043 -0.96322 0.198572 0.045312 -0.998621 0.0265306 -0.171941 -0.98477 0.0257716 -0.188373 -0.981673 0.0288731 0.0331382 -0.998931 0.0322431 -0.0540128 0.976158 -0.210232 0.169947 0.962192 -0.212848 0.18096 0.963343 -0.19805 -0.062098 0.978121 -0.198552 -0.0184132 -0.977275 0.211176 -0.0267598 -0.975343 0.219066 0.117842 -0.963709 0.239537 0.0621325 -0.970246 0.234014 -0.793267 0.599397 0.107008 -0.999998 0.000325171 -0.00187081 -0.999998 -0.000207341 -0.00211446 -0.891305 0.452112 0.0342038 -0.433176 0.828077 0.355874 -0.574381 0.785328 0.230968 0.146975 0.988899 -0.0218442 -0.168272 0.969082 -0.180456 -0.0705001 -0.996977 0.0326653 -0.0499972 -0.975278 0.215253 -0.743917 -0.668243 -0.00623088 -0.53765 0.84291 -0.0208557 0.585556 0.798401 -0.140285 0.32437 -0.894114 0.308781 0.207373 0.978203 -0.0106979 -0.235637 0.957026 -0.169045 -0.0717195 -0.972724 0.220601 1 0.000840798 -1.18095e-08 0.777253 -0.579273 0.245602 -0.999984 -0.00402367 -0.00396977 -0.874406 0.484902 -0.0168841 -0.0183697 0.977383 -0.210677 0.0619921 0.970382 -0.233485 -0.0569891 -0.981271 0.18401 0.188492 -0.965425 0.180069 0.0471079 -0.998777 0.0150399 -0.166293 -0.986031 0.00940647 -0.00450157 -0.999181 0.0402224 -0.241959 0.966154 -0.0894613 -0.504063 0.857029 -0.106874 0.354062 -0.797439 0.488601 0.735184 -0.653403 0.180469 0.713591 -0.682963 0.156045 0.344386 -0.836376 0.426466 -0.114957 0.992375 -0.044459 -0.047627 0.997972 -0.0422432 0.118635 0.992797 0.0167421 0.0664032 0.997645 0.0171783 0.326568 -0.892587 -0.310873 0.433571 -0.861771 -0.263375 0.82075 -0.542646 -0.178623 0.771085 -0.58827 -0.243653 -0.0735439 -0.971298 -0.226212 -0.127106 -0.966727 -0.221997 -0.085784 -0.971502 -0.220966 -0.0514234 -0.973828 -0.221393 -0.197884 0.980141 0.0128922 -0.141833 0.989571 0.0251417 -0.129119 0.990742 0.0419375 -0.188996 0.980465 0.0544879 0.579852 -0.814643 -0.0113617 0.637166 -0.770716 0.00416552 0.926696 -0.375752 0.0067704 0.901992 -0.431748 -0.00225257 -0.188937 -0.980238 -0.05862 -0.173819 -0.983522 -0.0497174 -0.117584 -0.992791 -0.0232377 -0.128304 -0.990895 -0.0408081 0.57093 -0.800512 -0.182264 0.577717 -0.798747 -0.168065 0.886905 -0.452559 -0.0926772 0.879091 -0.465568 -0.102202 -0.257831 -0.944735 -0.202483 -0.243757 -0.954761 -0.170337 -0.174242 -0.968669 -0.176976 -0.181398 -0.96361 -0.196342 -0.245169 0.935472 0.254527 -0.163306 0.957875 0.236232 -0.184583 0.958812 0.215888 -0.262226 0.938825 0.223263 -0.194781 0.977484 0.0811546 -0.118003 0.991945 0.0460515 -0.0908765 0.995858 -0.00279052 -0.182885 0.983095 0.00876514 0.689171 -0.724088 0.027185 0.717413 -0.695144 0.045754 0.952562 -0.303739 0.0191799 0.946025 -0.323607 0.0177444 -0.174877 -0.984571 0.00609178 -0.160194 -0.985597 0.0541891 -0.116738 -0.991797 0.0520577 -0.133791 -0.99088 0.0160347 -0.210262 0.977579 0.0113552 -0.147894 0.988929 0.0121406 -0.147015 0.988887 0.0221215 -0.209987 0.977404 0.02421 0.535055 -0.844699 -0.0140899 0.554283 -0.832134 -0.017969 0.884975 -0.465597 -0.0061748 0.869208 -0.494412 -0.00590986 -0.206291 -0.97848 -0.00461783 -0.200354 -0.979341 -0.0273705 -0.142205 -0.989436 -0.028169 -0.145149 -0.989371 -0.00875339 0.486788 -0.843033 -0.228762 0.536807 -0.820468 -0.196647 0.861053 -0.495244 -0.115419 0.839564 -0.523155 -0.146424 -0.184198 -0.956383 -0.22672 -0.240133 -0.94218 -0.233738 -0.159784 -0.963 -0.217026 -0.125235 -0.96694 -0.222131 -0.133198 0.961138 0.241808 -0.0901294 0.966429 0.240606 -0.129265 0.961716 0.241648 -0.189852 0.950295 0.246769 0.724524 0.666622 -0.175159 0.704568 0.693444 -0.150728 0.999976 0.00656548 0.00212239 0.999959 0.00892747 0.001608 0.999812 -0.0182255 0.00656475 0.853465 0.49537 0.161879 0.841038 0.505578 0.192476 0.999702 -0.0240229 0.00442539 0.999982 -0.00148676 0.0057757 0.921534 0.388217 -0.00791421 0.911021 0.412344 0.00367599 0.999983 -0.0024346 0.00531827 0.999969 -0.00562216 0.00555112 0.87433 0.485044 0.0167011 0.853642 0.520519 0.0188519 0.999952 -0.00756304 0.00629037 0.936639 0.350296 0.00039692 0.938431 0.345372 -0.00804667 0.999985 -0.000435393 0.0055205 0.999988 0.000396833 0.00487528 0.999983 -0.00333531 0.00476758 0.901199 0.433167 0.0143559 0.889152 0.45738 0.0145842 0.999982 -0.00395043 0.00458111 0.999871 -0.0128699 0.00956886 0.887294 0.444875 0.121636 0.870959 0.473156 0.13249 0.999863 -0.0143102 0.00828375 0.84673 -0.531992 -0.00570537 0.940703 -0.339104 0.00927938 0.391149 0.801574 -0.452197 0.363081 0.842527 -0.397894 0.499609 0.830138 0.247509 0.450685 0.846494 0.283428 0.621008 0.783751 -0.00916555 0.614138 0.789106 0.0121069 0.539174 0.841843 0.0243255 0.510864 0.859395 0.0213834 0.715114 0.698465 -0.0275329 0.654077 0.755861 -0.0292851 0.586243 0.809872 0.0206356 0.558261 0.829382 0.0217153 0.579981 0.788942 0.202961 0.546749 0.809213 0.215037 0.88414 -0.467138 0.00883101 0.580923 -0.799875 0.150756 0.409813 -0.858887 0.307192 0.772523 -0.629851 0.0805961 0.030447 0.999536 -4.71021e-05 0.247605 0.968855 -0.00337599 0.285165 0.957877 -0.0339406 0.0698116 0.997065 -0.0314375 0.14488 -0.960973 -0.23567 0.119153 -0.962165 -0.245034 -0.027304 -0.973868 -0.225468 -0.0424074 -0.973488 -0.224771 -0.0475853 0.998631 0.0216986 0.167398 0.985601 0.023846 0.171546 0.984926 0.0221778 -0.0453602 0.998688 0.0237784 0.23575 -0.971664 0.0170292 0.211362 -0.9774 -0.00382731 -0.0227552 -0.999706 -0.00842884 -0.0256263 -0.999569 0.014281 0.166776 -0.985914 -0.0126157 0.154199 -0.988036 0.00271351 -0.0457744 -0.99895 0.00179055 -0.0467907 -0.998855 -0.0099339 -0.0439402 0.968793 0.243947 0.148939 0.955345 0.255211 0.17522 0.954417 0.24163 -0.0559669 0.969795 0.237414 -0.0314617 0.999279 0.0212669 0.198282 0.979986 0.0176536 0.235649 0.971772 0.0113167 -0.00470144 0.99978 0.0204237 0.537871 -0.842102 -0.0394862 0.315479 -0.947627 0.0497662 0.0206692 -0.998841 0.0434691 0.253779 -0.966469 -0.0391633 -0.0642029 0.970975 0.230403 0.186676 0.953893 0.23503 0.189374 0.955203 0.227429 -0.0607108 0.972634 0.22427 0.187218 -0.982173 -0.016895 0.171494 -0.984938 -0.0220615 -0.0450736 -0.99873 -0.0225225 -0.0324895 -0.999232 -0.0218826 0.18344 -0.959475 -0.213912 0.171764 -0.959638 -0.222691 -0.054627 -0.974255 -0.218731 -0.0628709 -0.975645 -0.210153 -0.0207251 0.97112 0.237688 0.0692468 0.962904 0.26081 0.123996 0.956123 0.265432 -0.0289685 0.969075 0.245061 0.766994 0.637332 -0.074352 0.881769 0.471681 -0.00111625 0.99999 0.00153162 0.0043039 0.999987 0.00376744 0.00346215 0.410554 0.863785 -0.292098 0.562961 0.81358 -0.145475 -0.145748 -0.989322 0.00024501 0.089228 -0.996008 -0.00272713 -0.17704 0.964451 0.196191 -0.0559858 0.9689 0.241035 0.745764 -0.664627 0.0458959 0.504154 -0.863574 -0.00824611 0.586529 0.787252 0.190309 0.349192 0.87611 0.332409 -0.207146 -0.978308 0.00220821 -0.247427 0.950176 0.189592 -0.0799536 0.965985 0.245928 0.801666 0.541445 0.253316 0.999502 -0.0315558 -7.8431e-09 0.999863 -0.0127143 0.0105749 0.894746 0.431772 0.114028 0.0636922 -0.968709 -0.239888 -0.019006 -0.975769 -0.217975 0.186366 -0.960802 -0.205249 -0.0594354 -0.977286 -0.203418 -0.0466014 0.998865 0.00984343 0.156373 0.987647 0.0100453 0.0241314 -0.999647 -0.0110819 0.517848 0.853378 0.0598301 0.256172 0.96468 0.0613906 -0.380367 -0.758238 -0.529524 -0.368973 -0.801458 -0.470663 -0.740911 -0.648297 -0.175389 -0.759393 -0.620712 -0.195035 -0.103023 0.993814 -0.0414655 0.0497382 0.998625 0.0165367 0.117986 0.992918 0.0139322 -0.0485088 0.997944 -0.0418937 0.323786 0.894517 -0.308225 0.776426 0.580492 -0.24534 0.824138 0.536727 -0.180886 0.431434 0.863599 -0.260886 -0.0715567 0.972849 -0.220099 -0.049881 0.975394 -0.214752 -0.0844145 0.973005 -0.21479 -0.125421 0.968186 -0.216531 0.129987 0.990293 -0.0492197 0.143536 0.988902 -0.038349 0.202816 0.978312 -0.0420913 0.190583 0.979512 -0.0650687 -0.582818 -0.81234 0.0206548 -0.903457 -0.42861 0.00761206 -0.928532 -0.371238 0.00329442 -0.641049 -0.767409 0.0118261 0.189073 -0.980157 0.0595278 0.128794 -0.990655 0.0448826 0.118315 -0.99253 0.0297546 0.173092 -0.983911 0.0442547 0.565411 0.807103 -0.169985 0.877834 0.468545 -0.0993664 0.885576 0.455836 -0.0892623 0.573433 0.803957 -0.157566 -0.256129 0.946861 -0.194557 -0.180464 0.964921 -0.190682 -0.174026 0.968974 -0.175509 -0.242143 0.956619 -0.162007 -0.180547 -0.964807 0.191181 -0.158947 -0.964148 0.212497 -0.23988 -0.9425 0.232705 -0.256242 -0.946722 0.195086 0.0916324 0.995691 -0.0142205 0.116981 0.992551 -0.0340259 0.190802 0.980683 -0.0430819 0.183737 0.982719 -0.0224411 -0.693531 -0.720425 -0.00191806 -0.947773 -0.318936 -0.00256254 -0.953181 -0.302338 -0.00617556 -0.720414 -0.693462 -0.0107178 0.176734 -0.984157 0.0141727 0.135605 -0.990725 0.00866758 0.119382 -0.992675 -0.018559 0.162972 -0.986435 -0.0196609 -0.168258 -0.96899 0.180964 -0.174099 -0.968873 0.175998 -0.24223 -0.956521 0.162459 -0.235625 -0.956944 0.169529 -0.536113 -0.843985 0.0164793 -0.870858 -0.491438 0.00978009 -0.885603 -0.464374 0.00799107 -0.55521 -0.831459 0.0204408 0.207228 -0.978247 0.00940789 0.146492 -0.98905 0.017906 0.142816 -0.989202 0.0329033 0.201691 -0.978812 0.0353262 0.484201 0.845527 -0.225018 0.841247 0.519929 -0.148246 0.861163 0.495009 -0.115603 0.533218 0.824339 -0.190116 -0.183079 0.957525 -0.222775 -0.124081 0.96835 -0.216568 -0.158858 0.964269 -0.212013 -0.23975 0.942665 -0.232171 -0.124184 -0.968226 0.217064 -0.0845253 -0.972885 0.21529 -0.125577 -0.968052 0.217038 -0.183224 -0.957378 0.223287 -0.999997 0.00193329 -0.00128921 -0.736871 0.653438 0.173321 -0.754598 0.627157 0.193018 -0.999993 0.00351595 -0.00094218 1 0.00047859 0.000172362 1 0.000637993 0.000117504 0.824685 -0.535763 0.181252 0.841618 -0.519213 0.14865 -0.999995 -0.000551644 -0.00307285 -0.999993 -0.00141173 -0.00334374 -0.912021 0.410042 -0.00915361 -0.922729 0.385447 -0.00156664 1 0.000289251 0.000275517 1 0.000306908 0.000255335 0.885777 -0.455344 0.0897755 0.895874 -0.437874 0.0753419 -0.999996 -9.96956e-05 -0.00275391 -0.938781 0.344513 0.000924647 -0.937113 0.34894 0.00778379 -0.999997 -0.00013629 -0.00251533 -0.999992 -0.00233917 -0.00337472 -0.999988 -0.00322572 -0.00373664 -0.889716 0.456224 -0.0162807 -0.902054 0.431262 -0.0176569 1 0.000329684 0.000245164 1 0.000368065 0.00021305 0.861426 -0.494448 0.116041 0.878054 -0.468027 0.0998601 0.89534 0.438945 -0.075461 -0.940873 -0.338525 -0.0125904 -0.38929 0.805602 0.446607 -0.42033 0.759096 0.497087 0.431878 -0.863221 0.261402 0.484532 -0.84521 0.225496 -0.616581 0.786934 -0.0237286 -0.624119 0.781264 -0.0100484 0.573649 -0.8037 0.158089 0.585581 -0.798272 0.140913 -0.657039 0.753856 -0.000270646 -0.714241 0.699894 0.0027466 -0.560531 0.827666 -0.0278225 -0.589229 0.807384 -0.0306655 0.533471 -0.824069 0.190575 0.565643 -0.806832 0.170497 -0.431732 -0.82437 -0.36609 -0.592333 -0.771971 -0.230656 -0.892239 -0.449986 -0.0377154 -0.795574 -0.595843 -0.109691 -0.0301363 0.99946 -0.0130894 -0.0685164 0.997641 0.00429485 -0.285827 0.958278 -0.00256137 -0.248567 0.968498 -0.0150192 -0.0267176 0.975455 -0.218571 0.117719 0.963852 -0.23902 0.143353 0.962962 -0.228374 -0.0418112 0.9752 -0.217338 0.0474539 0.998682 -0.0195722 0.0457918 0.998468 -0.0310551 -0.172643 0.984487 -0.031312 -0.165893 0.986048 -0.0137493 0.0238024 -0.999427 0.024051 -0.212569 -0.976899 0.0219514 -0.237205 -0.971431 0.00742591 0.0264607 -0.999596 0.0103676 -0.0583992 0.980675 -0.186725 0.183768 0.965099 -0.186584 0.189442 0.965368 -0.179376 -0.0568785 0.98137 -0.183513 -0.0418497 -0.975091 0.21782 -0.0540464 -0.976057 0.210692 0.170033 -0.962074 0.213314 0.143457 -0.962829 0.228867 0.0324431 0.998782 -0.0371755 0.00511098 0.99959 -0.0281742 -0.236514 0.971287 -0.0257492 -0.199748 0.97928 -0.0333398 -0.0186138 -0.999781 -0.00957836 -0.315517 -0.948879 -0.00878344 -0.521543 -0.848045 0.0938715 -0.23635 -0.968936 0.07281 -0.0621328 -0.978015 0.199062 -0.0584311 -0.980577 0.187229 0.183842 -0.964984 0.187104 0.181042 -0.963221 0.198568 0.0453122 -0.998621 0.0265293 -0.171942 -0.98477 0.0257731 -0.188373 -0.981673 0.0288737 0.0331382 -0.998931 0.0322412 -0.0540127 0.976158 -0.210231 0.169947 0.962192 -0.21285 0.180961 0.963343 -0.198051 -0.062098 0.978121 -0.198553 -0.0184133 -0.977275 0.211176 -0.0267601 -0.975343 0.219067 0.117842 -0.96371 0.239535 0.0621329 -0.970245 0.234015 -0.793267 0.599397 0.107008 -0.999998 0.000326516 -0.00187133 -0.999998 -0.000207295 -0.00211439 -0.891305 0.452112 0.0342037 -0.433178 0.828076 0.355876 -0.574381 0.78533 0.230964 0.146975 0.988899 -0.0218445 -0.168273 0.969082 -0.180457 -0.0704973 -0.996977 0.0326696 -0.0499964 -0.975279 0.215249 -0.743917 -0.668243 -0.00623509 -0.53765 0.84291 -0.020857 0.585556 0.798401 -0.140285 0.324367 -0.894115 0.308778 0.207373 0.978203 -0.0106995 -0.235636 0.957026 -0.169045 -0.07172 -0.972723 0.220602 1 0.000839311 -7.873e-09 0.77725 -0.579278 0.245601 -0.999984 -0.0040228 -0.003969 -0.874406 0.484901 -0.0168847 -0.0183695 0.977384 -0.210674 0.0619917 0.970383 -0.233483 -0.0569897 -0.98127 0.184013 0.188492 -0.965425 0.180068 0.0471078 -0.998777 0.0150355 -0.166293 -0.986032 0.00940358 -0.00449994 -0.99918 0.0402256 -0.24196 0.966153 -0.089459 -0.504063 0.857029 -0.106873 + + + + + + + + + + -0.479823 0.00380258 -0.877357 -0.473144 0.00381833 -0.880977 -0.260887 0.00418509 -0.96536 -0.27064 0.00417261 -0.962672 -0.0107928 0.0206172 -0.999729 -0.00653065 -0.243905 -0.969777 -0.00375754 -0.636482 -0.771283 -0.00573872 -0.639295 -0.76894 -0.0298764 0.409537 -0.911804 -0.0252628 0.409397 -0.912007 -0.0201206 0.196447 -0.980308 -0.0242789 0.19592 -0.980319 -0.0390921 0.678667 -0.733405 -0.0356989 0.677207 -0.734926 -0.0308459 0.555093 -0.831216 -0.0354393 0.553046 -0.832397 -0.0384571 0.899146 -0.435956 -0.038452 0.896443 -0.441489 -0.0387914 0.794203 -0.606413 -0.0399104 0.794946 -0.605366 -0.0376107 0.994335 0.09941 -0.0376304 0.994858 0.0940249 -0.0376374 0.983989 -0.174212 -0.0376441 0.984913 -0.168905 -0.0390985 -0.898871 -0.436466 -0.0390924 -0.896119 -0.442089 -0.0386895 -0.983751 -0.17532 -0.0386687 -0.984713 -0.16984 -0.0360068 -0.680683 -0.731693 -0.0391238 -0.674606 -0.737141 -0.040403 -0.793193 -0.607629 -0.0393901 -0.795253 -0.604997 -0.0243454 -0.413615 -0.910126 -0.02875 -0.406332 -0.913273 -0.0349526 -0.551875 -0.833194 -0.0306767 -0.556568 -0.830236 -0.011757 -0.0726 -0.997292 -0.0154596 -0.0690318 -0.997495 -0.0226734 -0.19415 -0.98071 -0.0185574 -0.20031 -0.979557 0.0381339 -0.00169585 -0.999271 0.0339797 -0.00169674 -0.999421 -0.70705 -0.00120044 -0.707162 -0.705594 -0.00120284 -0.708615 -0.00115378 0.635918 -0.771756 -0.0011766 0.636486 -0.771288 -0.00105432 0.636486 0.771288 -0.0010352 0.636995 0.770867 0.708173 0.00306161 -0.706032 0.704453 0.00307751 -0.709744 -0.0413624 0.00433235 -0.999135 -0.0307502 0.00433404 -0.999518 -0.0174953 0.0679339 -0.997536 -0.0138984 0.0703572 -0.997425 -0.00193387 0.637436 -0.770501 -0.00187588 0.636485 -0.771287 -0.00610645 0.243797 -0.969807 -0.00595999 -0.0245574 -0.999681 0.477802 -0.00149009 -0.878466 0.475189 -0.00149217 -0.879883 0.263867 -0.00163595 -0.964558 0.267682 -0.00163402 -0.963506 -0.0951846 0.00431634 -0.99545 -0.105643 0.00431124 -0.994395 -0.712524 0.0030435 -0.701641 -0.711176 0.00304748 -0.703008 -0.663654 0.00324216 -0.748033 -0.665922 0.00323384 -0.746014 -0.633814 0.00335202 -0.773478 -0.637133 0.00334059 -0.770746 0.0983707 -0.00168864 -0.995148 0.102463 -0.0016872 -0.994735 0.712117 -0.00119019 -0.70206 0.71159 -0.00119154 -0.702594 0.664349 -0.00126848 -0.747422 0.665236 -0.00126627 -0.746632 0.634831 -0.00131118 -0.77265 0.63613 -0.00130953 -0.771581 -0.558223 0.00359559 -0.829683 -0.553531 0.0036094 -0.832821 0.556804 -0.00140955 -0.830642 0.554968 -0.00141105 -0.83187 -0.728673 0.00296802 -0.684855 -0.728271 0.00297269 -0.685282 0.728554 -0.00116222 -0.684987 0.728397 -0.00116154 -0.685154 -0.00231207 -0.241653 -0.97036 -0.00209527 -0.636485 -0.771286 -0.0547343 0.466568 -0.88279 -0.0638552 0.265374 -0.962029 0.103907 0.294646 -0.94994 0.108349 0.502144 -0.857969 -0.0797376 0.748146 -0.658725 -0.0715052 0.625358 -0.777055 0.119492 0.654428 -0.746623 0.123681 0.769434 -0.626638 -0.0478238 0.931301 -0.361096 -0.0705415 0.85107 -0.520292 0.113346 0.867643 -0.484095 0.0886028 0.941468 -0.32525 0.111468 0.993282 0.0310721 0.0167749 0.988399 -0.150951 0.00719078 0.991636 -0.128866 -0.103876 0.993853 0.0382862 0.0379761 0.928427 0.369568 -0.0851685 0.973295 0.213173 0.0924015 0.971185 0.219684 -0.0186904 0.922328 0.385955 0.119165 0.767359 0.630048 0.0954743 0.861067 0.499448 -0.0615595 0.847237 0.527635 -0.0780683 0.747291 0.659895 0.108633 0.502327 0.857827 0.119018 0.654153 0.74694 -0.0716647 0.625458 0.77696 -0.0550444 0.466779 0.882659 0.0695366 0.140647 0.987615 0.104118 0.294798 0.94987 -0.0640145 0.265492 0.961986 -0.0535882 0.127872 0.990342 -0.00117485 0.635908 0.771764 -0.00108191 0.636486 0.771288 -0.0535496 0.12784 -0.990348 -0.290669 -0.404756 -0.866997 0.293468 -0.40261 -0.867053 0.0694571 0.140584 -0.98763 -0.00126317 0.241922 -0.970295 0.293486 -0.402597 0.867053 -0.290669 -0.404756 0.866997 -0.0017637 0.0308514 -0.999522 -0.00169541 -0.635651 -0.771975 5.01573e-05 0.431266 -0.902225 -0.000376016 0.214755 -0.976668 -0.000710212 0.215102 -0.976591 -0.000227585 0.431497 -0.902114 0.000521004 0.703028 -0.711162 0.000343084 0.578451 -0.815717 0.000148118 0.578582 -0.815624 0.000394255 0.703066 -0.711124 0.000666916 0.914173 -0.405323 0.000625789 0.816936 -0.576728 0.00054802 0.816959 -0.576696 0.000625476 0.914148 -0.405381 0.000683866 0.991023 0.133688 0.000680201 0.990852 -0.134948 0.000663929 0.990842 -0.135028 0.000678644 0.991036 0.133596 0.000871554 -0.914099 -0.405491 0.000868447 -0.990829 -0.135121 0.000874363 -0.990811 -0.135251 0.000882745 -0.914037 -0.40563 0.000782818 -0.70287 -0.711318 0.000861645 -0.816812 -0.576904 0.000896573 -0.816763 -0.576973 0.000860706 -0.702737 -0.71145 0.000358582 -0.431045 -0.90233 0.000633851 -0.578247 -0.815862 0.000769317 -0.578118 -0.815953 0.000572219 -0.430812 -0.902441 -0.000652503 -0.0826745 -0.996576 -2.85506e-05 -0.214491 -0.976726 0.000257842 -0.214239 -0.976781 -0.000279289 -0.0823815 -0.996601 -0.00100489 0.0829606 -0.996552 -0.00139279 0.0833256 -0.996521 -0.00133076 -0.0304987 -0.999534 -1.49012e-08 -0.242244 -0.970215 -2.92435e-06 -0.242245 -0.970215 0.810313 0.074544 -0.581237 0.10262 0.168338 -0.980373 0.111861 0.311744 -0.943559 0.0889488 0.504251 -0.858964 0.129869 0.666855 -0.733784 0.136232 0.786578 -0.602276 0.12849 0.876373 -0.464178 0.0841407 0.943682 -0.319976 -0.031625 0.985302 -0.167867 -0.201707 0.97561 -0.0865933 0.148516 0.945645 0.289307 -0.0751451 0.941218 0.329335 -0.174614 0.890924 0.419243 -0.20247 0.817234 0.539569 -0.209702 0.711743 0.670408 -0.175076 0.568538 0.803811 -0.176559 0.365692 0.913836 -0.135194 0.19538 0.971365 -0.818357 0.079742 0.569152 3.72529e-09 -0.242243 0.970215 -1.79186e-06 -0.242245 0.970215 0.810358 0.0745728 0.58117 0.102731 0.168429 0.980346 0.112139 0.311979 0.943448 0.0894693 0.504659 0.85867 0.13014 0.66702 0.733586 0.133564 0.785204 0.604661 0.113031 0.87069 0.478669 0.0337229 0.927811 0.371523 -0.176231 0.931742 0.31749 0.177734 0.982267 -0.0596814 -0.0150964 0.992874 -0.118205 -0.153281 0.95717 -0.245622 -0.200414 0.897446 -0.39297 -0.208244 0.819583 -0.533777 -0.210105 0.71195 -0.670062 -0.17461 0.568207 -0.804147 -0.176238 0.365428 -0.914004 -0.135083 0.195288 -0.971399 -0.818342 0.0797322 -0.569174 -0.43231 -0.602829 -0.670601 -0.576322 -0.742653 -0.341055 -0.584301 -0.703102 -0.405265 -0.410847 -0.54271 -0.732578 0.100436 -0.0329155 -0.994399 0.0824153 -0.038221 -0.995865 0.531874 -0.0492996 -0.845387 0.585426 -0.0250123 -0.81034 0.646499 0.450874 -0.615428 0.568333 0.488324 -0.662221 0.474585 0.82169 -0.315587 0.560933 0.808664 -0.177247 -0.300306 0.237868 -0.923707 -0.285165 0.249978 -0.925306 -0.21037 0.234444 -0.949095 -0.220328 0.227287 -0.948576 0.169168 0.0471028 -0.984461 0.128673 0.0436134 -0.990727 0.118672 0.0574259 -0.991272 0.148653 0.0834148 -0.985365 0.298772 0.225594 -0.927277 0.23669 0.190526 -0.952721 0.169389 0.401539 -0.900041 0.232573 0.490264 -0.839971 -0.14854 0.0875365 -0.985024 -0.130817 0.0730989 -0.988708 -0.111974 0.036505 -0.99304 -0.1195 0.0562958 -0.991237 0.363903 0.445749 -0.817852 0.339672 0.422489 -0.840313 0.268156 0.66773 -0.694427 0.290616 0.693468 -0.659275 -0.202123 0.257671 -0.944856 -0.184781 0.21814 -0.958265 -0.142546 0.202646 -0.968822 -0.158186 0.225646 -0.961281 0.221877 0.309714 -0.92458 0.172808 0.263517 -0.94905 0.154458 0.245232 -0.957081 0.196391 0.278433 -0.940162 0.0999182 0.102083 -0.989745 0.0838679 0.0561654 -0.994893 0.0451622 0.00132234 -0.998979 0.0632311 0.0206602 -0.997785 0.177241 0.132083 -0.975264 0.0978724 0.0355453 -0.994564 0.0534934 0.105052 -0.993027 0.116907 0.289675 -0.949958 -0.0930954 0.0103751 -0.995603 -0.083002 -0.0412535 -0.995695 -0.0806194 -0.04278 -0.995826 -0.0749003 -0.00602346 -0.997173 0.222152 0.0590862 -0.97322 0.169726 0.0374722 -0.984779 0.143883 0.0435068 -0.988638 0.188251 0.0647193 -0.979986 0.391117 0.262459 -0.882124 0.340817 0.24661 -0.907208 0.276684 0.536475 -0.797271 0.322483 0.575926 -0.751208 -0.192314 0.0451715 -0.980293 -0.166261 0.0615181 -0.984161 -0.128245 0.046635 -0.990645 -0.145775 0.030135 -0.988859 0.497296 0.482762 -0.720859 0.425136 0.464366 -0.776932 0.347221 0.738418 -0.57808 0.415234 0.791761 -0.447989 -0.262537 0.270158 -0.926331 -0.227317 0.288666 -0.930053 -0.17607 0.244128 -0.953625 -0.196871 0.243661 -0.949669 0.282371 0.270672 -0.920328 0.208545 0.254547 -0.944307 0.194249 0.26353 -0.944891 0.258477 0.290852 -0.921192 0.589612 -0.731055 -0.343389 0.595178 -0.693115 -0.406639 0.00683742 -0.984192 -0.176972 0.00905611 -0.992479 -0.122078 0.019373 0.940651 -0.338823 -0.385856 0.809435 -0.44264 -0.437627 0.845002 -0.307333 0.0244262 0.983159 -0.181114 0.00594466 0.326946 -0.945024 -0.124675 0.276522 -0.952886 -0.16868 0.380781 -0.909149 0.00584204 0.459973 -0.887913 0.00790103 0.710889 -0.70326 -0.309669 0.584039 -0.750336 -0.360285 0.616224 -0.70033 0.00983712 0.768789 -0.639427 0.0609616 -0.161885 -0.984925 -0.0520919 0.118439 -0.991594 0.00553237 0.120436 -0.992706 0.00484279 -0.220378 -0.975402 0.00581791 0.581715 -0.813372 -0.22056 0.486883 -0.845161 -0.266016 0.542545 -0.796793 0.00604942 0.651216 -0.758868 0.0160373 0.802388 -0.596587 -0.264515 0.706922 -0.655968 -0.321565 0.752763 -0.574408 0.0165354 0.865335 -0.500922 0.376242 0.606347 -0.700561 -0.0521427 -0.171569 -0.983791 0.440609 -0.594475 -0.672654 0.40637 -0.527468 -0.746084 -0.484414 0.504612 -0.71464 -0.554858 0.514356 -0.653889 -0.164653 0.119014 -0.979145 -0.205993 0.175091 -0.962762 -0.386031 0.272705 -0.881256 -0.433765 0.279166 -0.856688 0.026304 -0.066249 -0.997456 -0.109235 0.056075 -0.992433 -0.280695 0.226949 -0.932579 -0.338774 0.251766 -0.906557 -0.349297 0.465921 -0.812963 -0.412272 0.483714 -0.772044 -0.249674 -0.488356 -0.836164 -0.158546 -0.292863 -0.942918 -0.32061 -0.450911 -0.832999 -0.477477 -0.659871 -0.58016 0.0234112 -0.000760244 -0.999726 -0.0545303 0.0104569 -0.998457 -0.0233038 -0.0284715 -0.999323 0.0466954 -0.0347461 -0.998305 0.197287 0.261456 -0.944838 0.22332 0.266439 -0.937624 -0.0824936 0.226978 -0.9704 -0.0778198 0.227508 -0.970662 0.0616112 0.0246161 -0.997797 -0.146495 0.0487852 -0.988008 -0.119879 0.0432133 -0.991848 0.0594064 0.0264572 -0.997883 0.0622686 -0.0023827 -0.998057 0.0683901 0.0186946 -0.997483 -0.0670202 0.00993706 -0.997702 -0.0341268 -0.0134034 -0.999328 0.148361 0.0377415 -0.988213 0.168906 0.0236546 -0.985348 -0.071173 0.00147344 -0.997463 -0.0620498 0.0128319 -0.997991 0.0769647 0.246739 -0.966021 -0.19424 0.281326 -0.939748 -0.171553 0.271271 -0.947091 0.0690538 0.240977 -0.968071 0.0617943 0.0231813 -0.99782 -0.0944729 0.0370359 -0.994838 -0.0615346 0.0265409 -0.997752 0.0527274 0.0206432 -0.998395 -0.270746 -0.128195 -0.954077 0.0074163 -0.0499788 -0.998723 -0.0601696 -0.0446417 -0.997189 -0.454239 -0.0833342 -0.886973 0.0633126 0.234378 -0.970082 -0.144525 0.263297 -0.953828 -0.128234 0.253696 -0.958746 0.0589499 0.227786 -0.971925 0.096983 0.0355963 -0.994649 0.119985 0.0431079 -0.991839 -0.0593142 0.0251814 -0.997922 -0.0625922 0.0238857 -0.997753 0.148611 0.242171 -0.958785 0.175014 0.25218 -0.951722 -0.0701188 0.22226 -0.972463 -0.0646358 0.214108 -0.974669 0.0843556 0.23859 -0.96745 -0.247097 0.269846 -0.930659 -0.220667 0.287368 -0.932055 0.0819241 0.246641 -0.965638 0.486627 -0.653295 -0.58 0.258298 -0.484842 -0.83559 0.00432275 -0.62196 -0.783037 0.00487206 -0.907705 -0.419581 0.311614 -0.433965 -0.845323 0.151519 -0.27463 -0.949537 -0.171573 0.0250323 -0.984853 -0.528617 -0.0450341 -0.847665 0.139056 0.221851 -0.965114 0.219213 0.24745 -0.943776 -0.0314401 -0.103927 -0.994088 0.441546 0.265957 -0.856915 -0.324219 0.44354 -0.835557 -0.634564 0.482111 -0.604068 -0.22506 0.045457 -0.973284 0.179838 0.237311 -0.954642 0.298664 0.258596 -0.918656 -0.516282 0.840737 -0.163138 0.0315554 0.999502 -1.83169e-09 0.0165374 0.768721 -0.639371 -0.240704 0.681356 -0.691242 0.248587 0.248199 -0.93627 -0.0847594 0.218802 -0.972081 0.132569 0.231591 -0.963738 -0.0602357 0.206917 -0.976502 0.0706343 0.0131248 -0.997416 -0.166895 0.0364459 -0.985301 -0.558274 -0.00427761 -0.829646 0.267799 -0.0952891 -0.958751 0.447251 -0.0619868 -0.892258 -0.40935 0.651464 -0.63877 -0.388915 0.593067 -0.704994 -0.549243 0.73519 -0.397276 -0.544022 0.77019 -0.332938 0.535117 0.0202322 -0.844535 0.0811593 0.0124661 -0.996623 0.0968628 0.00246107 -0.995295 0.58718 -0.00543842 -0.809438 -0.647897 0.447031 0.616759 -0.553519 0.814263 0.174905 -0.468676 0.825567 0.314295 -0.569958 0.485084 0.663206 0.300786 0.231439 0.925183 0.220682 0.22047 0.950101 0.210923 0.228124 0.950511 0.28591 0.24427 0.9266 0.11772 -0.0647034 -0.990937 0.12677 -0.0568037 -0.990304 0.163222 -0.0761624 -0.983645 0.146615 -0.09394 -0.984723 0.292945 -0.233748 -0.927117 0.226813 -0.493009 -0.839939 0.159013 -0.405716 -0.900061 0.225962 -0.203435 -0.952657 -0.148365 -0.0884437 -0.98497 -0.118971 -0.0603715 -0.991061 -0.111199 -0.0430227 -0.992866 -0.131775 -0.0676652 -0.988967 -0.372419 0.433701 0.820492 -0.294392 0.691461 0.659709 -0.272514 0.665497 0.694874 -0.346856 0.412486 0.842345 0.204276 0.249748 0.946518 0.159251 0.219973 0.962419 0.14281 0.201177 0.969089 0.186891 0.209838 0.959708 -0.159158 0.220471 0.962321 -0.176827 0.239552 0.954645 -0.227584 0.287619 0.930312 -0.204132 0.250279 0.946409 0.0436085 -0.0182766 -0.998882 0.0852877 -0.0441747 -0.995377 0.107325 -0.0644661 -0.992132 0.0607181 -0.0341348 -0.997571 0.159336 -0.150788 -0.975641 0.101778 -0.294808 -0.950121 0.0410135 -0.109021 -0.993193 0.07256 -0.0599912 -0.995558 -0.0895168 -0.0304119 -0.995521 -0.0715636 -0.0185203 -0.997264 -0.0766505 0.00942422 -0.997013 -0.0774025 0.00708436 -0.996975 -0.118344 0.202111 0.972186 -0.142722 0.201669 0.969 -0.186777 0.210288 0.959632 -0.154966 0.209206 0.965515 0.389666 -0.264746 -0.882083 0.318003 -0.578465 -0.751168 0.274667 -0.537534 -0.797255 0.339307 -0.248875 -0.907156 -0.191304 -0.0499514 -0.980259 -0.144426 -0.0392865 -0.988735 -0.127564 -0.0513657 -0.990499 -0.164636 -0.0694353 -0.983907 -0.499817 0.478377 0.722038 -0.411814 0.793884 0.44739 -0.346945 0.738576 0.578043 -0.429629 0.45746 0.778556 0.263318 0.266089 0.927287 0.1976 0.237998 0.950953 0.176907 0.239063 0.954753 0.227723 0.287072 0.930447 -0.197536 0.238503 0.95084 -0.210878 0.228636 0.950398 -0.285842 0.244798 0.926482 -0.263216 0.266622 0.927163 0.00212996 0.984212 -0.176979 0.554684 0.730953 -0.397535 0.550601 0.765179 -0.333677 0.00360557 0.992513 -0.122083 -0.000505228 0.940827 0.338887 -0.000645099 0.983452 0.181168 0.467713 0.826194 0.314084 0.411056 0.794352 0.447256 0.00308463 -0.326949 -0.945037 0.00361709 -0.459978 -0.887923 -0.163187 -0.38326 -0.909111 -0.115503 -0.28037 -0.952918 -0.000397781 0.710911 0.703281 -0.000396452 0.768826 0.639458 0.271859 0.665833 0.694808 0.240331 0.620189 0.74673 0.0027474 -0.120437 -0.992717 -0.0453543 -0.120915 -0.991626 0.0531804 0.164789 -0.984894 0.00242161 0.220379 -0.975411 0.00410482 -0.58172 -0.813379 0.00493578 -0.65122 -0.758873 -0.264122 -0.543518 -0.796761 -0.217038 -0.488572 -0.845099 -0.000409341 0.802491 0.596664 -0.000428311 0.865453 0.50099 0.346294 0.73895 0.577956 0.293735 0.691811 0.659634 -0.240593 0.619242 0.747432 -0.0489752 0.17271 -0.983754 0.381337 0.582305 -0.717985 0.41286 0.647844 -0.640191 0.569621 0.485758 0.663002 0.499496 0.478938 0.721888 -0.198565 -0.184603 -0.962545 -0.152437 -0.134368 -0.979136 0.346499 0.412987 0.842247 0.311162 0.381879 0.870257 -0.0897123 -0.0785552 -0.992865 0.0440579 0.0488805 -0.997832 -0.335007 -0.257346 -0.90639 -0.274372 -0.235649 -0.932303 0.429314 0.457947 0.778443 0.372066 0.434204 0.820386 -0.290422 0.511295 -0.808847 -0.108404 0.360042 -0.926617 -0.218977 0.504205 -0.83536 -0.437993 0.690733 -0.575369 0.0238093 -0.0123749 -0.99964 0.0485753 0.00763811 -0.99879 -0.0128768 -0.00651967 -0.999896 -0.049959 -0.0283061 -0.99835 0.0826854 0.220056 0.971977 -0.224079 0.260268 0.939175 -0.198399 0.254037 0.946627 0.0781418 0.220054 0.972353 0.0617127 -0.0224861 -0.997841 0.0590741 -0.0337416 -0.997683 -0.118294 -0.0522821 -0.991601 -0.148197 -0.0387146 -0.9882 -0.0666556 -0.0255913 -0.997448 0.0645393 -0.0364463 -0.997249 0.0564742 -0.021423 -0.998174 -0.0334844 -0.0112522 -0.999376 0.0612411 0.190212 0.979831 -0.136146 0.212979 0.967525 -0.118054 0.203753 0.971879 0.0529571 0.186516 0.981024 -0.0781213 0.220537 0.972245 -0.0705676 0.214206 0.974236 0.176696 0.242725 0.953867 0.198324 0.254535 0.946509 0.0612848 -0.0391125 -0.997354 0.0526893 -0.028407 -0.998207 -0.058119 -0.0405968 -0.997484 -0.0913344 -0.0524842 -0.994436 -0.0608368 0.0106978 -0.99809 -0.00552078 0.0110957 -0.999923 -0.301003 0.0799261 -0.950268 -0.463546 0.0465834 -0.884847 -0.0653462 0.203004 0.976995 -0.061211 0.190717 0.979735 0.136048 0.213496 0.967425 0.151522 0.226816 0.962079 -0.0591327 -0.0291926 -0.997823 0.119343 -0.0467916 -0.99175 0.0947212 -0.0474226 -0.994374 -0.0622514 -0.0342612 -0.997472 0.0705929 0.213745 0.974335 -0.176779 0.242254 0.953972 -0.15162 0.226294 0.962186 0.0653786 0.202495 0.977099 -0.0848902 0.211977 0.973581 -0.0826717 0.220553 0.971865 0.224014 0.260799 0.939043 0.248981 0.242122 0.937755 0.442509 0.688265 -0.574872 0.00108014 0.907712 -0.419591 0.00152676 0.621963 -0.783045 0.223178 0.503141 -0.834889 0.279312 0.498736 -0.820516 0.0998529 0.347264 -0.932436 0.143925 -0.0432293 -0.988644 0.118334 0.201602 0.972293 -0.531439 0.00982741 -0.84704 -0.220656 0.220983 0.949988 -0.0611456 0.0773488 -0.995127 -0.388151 -0.269388 -0.881345 -0.310453 0.380733 0.871012 0.647604 0.44784 0.61648 0.191129 -0.0512381 -0.980227 0.154972 0.20872 0.965619 -0.300747 0.231967 0.925064 -0.000840798 1 -1.44187e-09 0.552354 0.815133 0.174537 0.00565234 -0.7109 -0.70327 -0.309456 -0.584157 -0.750332 0.0848996 0.211476 0.973689 -0.249016 0.241575 0.937887 -0.0530333 0.187025 0.980923 0.118125 0.204312 0.971753 -0.0618096 -0.0179424 -0.997927 0.148902 -0.0345397 -0.988249 -0.558777 -0.030844 -0.828744 0.455097 0.0315734 -0.889882 0.292924 0.0532364 -0.954653 -0.432309 -0.60283 -0.6706 -0.576322 -0.742654 -0.341055 -0.584302 -0.703101 -0.405266 -0.410847 -0.54271 -0.732578 0.100436 -0.0329152 -0.994399 0.082415 -0.0382209 -0.995865 0.531873 -0.0493002 -0.845388 0.585426 -0.0250129 -0.81034 0.646498 0.450876 -0.615428 0.568333 0.488326 -0.662221 0.474585 0.82169 -0.315587 0.560932 0.808665 -0.177247 -0.300307 0.237867 -0.923707 -0.285166 0.249979 -0.925306 -0.21037 0.234445 -0.949094 -0.220328 0.227286 -0.948576 0.169167 0.0471027 -0.984461 0.128673 0.0436135 -0.990728 0.118672 0.0574258 -0.991272 0.148653 0.0834149 -0.985365 0.298771 0.225594 -0.927277 0.236689 0.190526 -0.952721 0.16939 0.401538 -0.900041 0.232572 0.490264 -0.839971 -0.148541 0.0875369 -0.985024 -0.130817 0.073099 -0.988708 -0.111974 0.0365054 -0.99304 -0.1195 0.0562955 -0.991237 0.363902 0.44575 -0.817852 0.339672 0.422488 -0.840313 0.268157 0.66773 -0.694427 0.290616 0.693468 -0.659275 -0.202123 0.257671 -0.944855 -0.184781 0.218138 -0.958265 -0.142546 0.202645 -0.968822 -0.158187 0.225646 -0.961281 0.221878 0.309713 -0.92458 0.172808 0.263517 -0.94905 0.154458 0.245233 -0.957081 0.196391 0.278435 -0.940162 0.0999181 0.102083 -0.989745 0.0838681 0.0561654 -0.994893 0.0451623 0.00132199 -0.998979 0.0632309 0.0206589 -0.997785 0.177243 0.132081 -0.975264 0.0978721 0.0355458 -0.994564 0.0534924 0.105053 -0.993027 0.116907 0.289675 -0.949959 -0.0930956 0.0103754 -0.995603 -0.0830021 -0.0412536 -0.995695 -0.0806194 -0.0427799 -0.995826 -0.0749004 -0.00602326 -0.997173 0.222152 0.0590861 -0.97322 0.169727 0.0374722 -0.984778 0.143883 0.0435066 -0.988638 0.188251 0.064718 -0.979986 0.391117 0.262458 -0.882124 0.340818 0.246608 -0.907209 0.276684 0.536475 -0.797271 0.322484 0.575926 -0.751208 -0.192314 0.0451717 -0.980293 -0.166261 0.0615189 -0.984161 -0.128245 0.0466353 -0.990645 -0.145775 0.0301352 -0.988859 0.497296 0.482761 -0.72086 0.425136 0.464366 -0.776932 0.347221 0.738418 -0.57808 0.415236 0.791761 -0.44799 -0.262537 0.27016 -0.92633 -0.227317 0.288666 -0.930053 -0.17607 0.244128 -0.953625 -0.196871 0.243661 -0.949669 0.282371 0.270673 -0.920327 0.208545 0.254547 -0.944307 0.194249 0.263529 -0.944891 0.258478 0.290851 -0.921192 0.589613 -0.731054 -0.343389 0.595178 -0.693114 -0.406639 0.00683747 -0.984192 -0.176972 0.009057 -0.992479 -0.122078 0.0193717 0.940651 -0.338823 -0.385857 0.809435 -0.44264 -0.437626 0.845003 -0.307333 0.0244271 0.983159 -0.181114 0.00594437 0.326946 -0.945024 -0.124675 0.276522 -0.952886 -0.16868 0.380782 -0.909149 0.00584212 0.459974 -0.887913 0.00790085 0.710889 -0.70326 -0.309669 0.584039 -0.750336 -0.360285 0.616224 -0.70033 0.00983709 0.768789 -0.639427 0.0609613 -0.161885 -0.984925 -0.0520918 0.118439 -0.991594 0.00553275 0.120436 -0.992706 0.00484287 -0.220378 -0.975402 0.00581812 0.581715 -0.813372 -0.22056 0.486883 -0.845161 -0.266016 0.542545 -0.796793 0.00604915 0.651216 -0.758868 0.0160374 0.802388 -0.596587 -0.264515 0.706922 -0.655968 -0.321566 0.752762 -0.574408 0.0165349 0.865335 -0.500922 0.376242 0.606347 -0.700561 -0.0521426 -0.171569 -0.983791 0.440609 -0.594475 -0.672654 0.406369 -0.527469 -0.746083 -0.484414 0.504612 -0.71464 -0.55486 0.514354 -0.653889 -0.164653 0.119013 -0.979145 -0.205993 0.17509 -0.962762 -0.386031 0.272705 -0.881256 -0.433764 0.279166 -0.856688 0.0263035 -0.0662494 -0.997456 -0.109235 0.0560748 -0.992433 -0.280695 0.226949 -0.932579 -0.338774 0.251766 -0.906557 -0.349296 0.465921 -0.812963 -0.412272 0.483714 -0.772044 -0.249673 -0.488357 -0.836165 -0.158546 -0.292863 -0.942918 -0.320611 -0.450911 -0.833 -0.477477 -0.659871 -0.58016 0.0234112 -0.000760242 -0.999726 -0.0545301 0.0104568 -0.998457 -0.0233038 -0.0284715 -0.999323 0.0466954 -0.0347461 -0.998305 0.197287 0.261456 -0.944838 0.22332 0.266439 -0.937624 -0.0824936 0.226978 -0.9704 -0.0778198 0.227508 -0.970662 0.0616115 0.0246163 -0.997797 -0.146495 0.0487855 -0.988008 -0.11988 0.0432133 -0.991847 0.0594065 0.0264574 -0.997883 0.062269 -0.00238369 -0.998057 0.0683899 0.0186952 -0.997483 -0.0670201 0.00993745 -0.997702 -0.0341266 -0.0134027 -0.999328 0.148361 0.0377416 -0.988213 0.168906 0.0236544 -0.985348 -0.0711731 0.00147345 -0.997463 -0.0620498 0.012832 -0.997991 0.0769652 0.24674 -0.966021 -0.19424 0.281326 -0.939748 -0.171553 0.271271 -0.947091 0.0690536 0.240977 -0.968071 0.0617943 0.0231814 -0.99782 -0.0944729 0.037036 -0.994838 -0.0615344 0.0265409 -0.997752 0.0527273 0.0206433 -0.998395 -0.270746 -0.128196 -0.954077 0.00741688 -0.0499804 -0.998723 -0.0601697 -0.0446423 -0.997189 -0.45424 -0.083334 -0.886973 0.063312 0.234378 -0.970082 -0.144525 0.263297 -0.953828 -0.128234 0.253696 -0.958746 0.0589498 0.227786 -0.971925 0.0969832 0.0355962 -0.994649 0.119985 0.0431075 -0.991839 -0.059314 0.0251812 -0.997922 -0.0625919 0.0238854 -0.997753 0.148612 0.242171 -0.958785 0.175014 0.25218 -0.951722 -0.0701187 0.22226 -0.972463 -0.0646359 0.214108 -0.974669 0.0843562 0.23859 -0.96745 -0.247097 0.269846 -0.930659 -0.220667 0.287368 -0.932055 0.0819246 0.246641 -0.965638 0.486628 -0.653294 -0.58 0.258297 -0.484843 -0.83559 0.00432276 -0.62196 -0.783037 0.00487244 -0.907705 -0.419581 0.311614 -0.433964 -0.845324 0.151519 -0.274629 -0.949537 -0.171573 0.0250324 -0.984853 -0.528617 -0.0450355 -0.847665 0.139056 0.221852 -0.965114 0.219213 0.247451 -0.943776 -0.031441 -0.103926 -0.994088 0.441546 0.265957 -0.856915 -0.324219 0.44354 -0.835557 -0.634565 0.482111 -0.604067 -0.22506 0.0454571 -0.973284 0.179837 0.237313 -0.954642 0.298664 0.258598 -0.918655 -0.516283 0.840736 -0.163139 0.0315558 0.999502 -1.60345e-09 0.0165373 0.768721 -0.639371 -0.240704 0.681356 -0.691242 0.248587 0.248199 -0.93627 -0.0847594 0.218802 -0.972081 0.132569 0.231591 -0.963738 -0.0602358 0.206918 -0.976502 0.0706342 0.0131245 -0.997416 -0.166896 0.0364458 -0.985301 -0.558273 -0.00427933 -0.829646 0.267799 -0.0952885 -0.958751 0.447251 -0.0619863 -0.892258 -0.409356 0.651451 -0.638779 -0.388917 0.593063 -0.704996 -0.549246 0.735188 -0.397276 -0.544026 0.770187 -0.332939 0.535117 0.0202357 -0.844535 0.0811592 0.0124612 -0.996623 0.0968626 0.00245557 -0.995295 0.58718 -0.00543815 -0.809438 -0.647896 0.447034 0.616758 -0.553516 0.814266 0.174904 -0.468675 0.825568 0.314295 -0.569957 0.485086 0.663205 0.300787 0.231439 0.925183 0.220683 0.220468 0.950101 0.210923 0.228123 0.950511 0.285911 0.244268 0.9266 0.11772 -0.0647037 -0.990937 0.126771 -0.0568037 -0.990304 0.163223 -0.0761591 -0.983645 0.146615 -0.0939416 -0.984723 0.292945 -0.233748 -0.927117 0.226812 -0.493009 -0.839939 0.159016 -0.405715 -0.900061 0.225962 -0.203436 -0.952657 -0.148365 -0.08844 -0.98497 -0.118971 -0.0603684 -0.991061 -0.111199 -0.0430202 -0.992866 -0.131775 -0.0676643 -0.988968 -0.372419 0.433701 0.820492 -0.294392 0.691461 0.659709 -0.272513 0.665497 0.694874 -0.346855 0.412488 0.842345 0.204278 0.249744 0.946519 0.159252 0.219971 0.96242 0.14281 0.201178 0.969089 0.186891 0.209836 0.959708 -0.159158 0.220472 0.962321 -0.176826 0.239554 0.954645 -0.227583 0.287619 0.930312 -0.204134 0.250273 0.946411 0.0436081 -0.0182793 -0.998881 0.0852876 -0.0441747 -0.995377 0.107326 -0.0644662 -0.992132 0.0607189 -0.0341327 -0.997571 0.159335 -0.150789 -0.975641 0.101775 -0.294809 -0.950121 0.041015 -0.109021 -0.993193 0.0725589 -0.0599921 -0.995558 -0.0895166 -0.0304117 -0.995521 -0.0715634 -0.01852 -0.997264 -0.0766503 0.00942197 -0.997014 -0.0774024 0.00708305 -0.996975 -0.118344 0.20211 0.972186 -0.142722 0.201668 0.969 -0.186777 0.210287 0.959632 -0.154967 0.209204 0.965515 0.389666 -0.264746 -0.882083 0.318001 -0.578465 -0.751168 0.274667 -0.537534 -0.797255 0.339307 -0.248875 -0.907156 -0.191304 -0.0499523 -0.980259 -0.144425 -0.0392917 -0.988735 -0.127564 -0.0513635 -0.990499 -0.164635 -0.0694344 -0.983907 -0.499816 0.478379 0.722037 -0.411816 0.793883 0.44739 -0.346947 0.738575 0.578044 -0.429629 0.45746 0.778556 0.263319 0.266087 0.927287 0.197601 0.237997 0.950953 0.176907 0.239065 0.954752 0.227722 0.287078 0.930445 -0.197536 0.238502 0.95084 -0.210878 0.228635 0.950398 -0.285842 0.244797 0.926482 -0.263218 0.266615 0.927164 0.00213094 0.984212 -0.176979 0.554684 0.730953 -0.397535 0.5506 0.765179 -0.333676 0.00360468 0.992513 -0.122083 -0.000508682 0.940827 0.338887 -0.000648723 0.983452 0.181168 0.467713 0.826194 0.314084 0.411057 0.794351 0.447256 0.00308433 -0.326949 -0.945037 0.00361837 -0.459978 -0.887923 -0.163188 -0.383259 -0.909111 -0.1155 -0.280371 -0.952918 -0.000399398 0.710911 0.703281 -0.000399235 0.768826 0.639458 0.271859 0.665834 0.694808 0.24033 0.62019 0.74673 0.00274587 -0.120437 -0.992717 -0.0453504 -0.120916 -0.991626 0.0531798 0.16479 -0.984894 0.00242345 0.220379 -0.975411 0.0041057 -0.58172 -0.813379 0.00493635 -0.65122 -0.758873 -0.264122 -0.543518 -0.796761 -0.217038 -0.488572 -0.845099 -0.000410849 0.802491 0.596664 -0.000425279 0.865453 0.50099 0.346293 0.738951 0.577956 0.293735 0.691811 0.659634 -0.240592 0.619242 0.747432 -0.0489766 0.17271 -0.983754 0.381337 0.582307 -0.717984 0.412863 0.647838 -0.640195 0.569621 0.485758 0.663001 0.499495 0.478939 0.721888 -0.198565 -0.184604 -0.962545 -0.152437 -0.134369 -0.979136 0.346498 0.412988 0.842247 0.311163 0.381877 0.870257 -0.0897164 -0.0785507 -0.992865 0.0440598 0.0488787 -0.997832 -0.335005 -0.257349 -0.90639 -0.274373 -0.235647 -0.932303 0.429314 0.457946 0.778443 0.372067 0.434204 0.820386 -0.290422 0.511294 -0.808847 -0.108404 0.360041 -0.926617 -0.218977 0.504206 -0.83536 -0.437993 0.690733 -0.575369 0.0238091 -0.0123739 -0.99964 0.0485754 0.00763588 -0.99879 -0.0128787 -0.00651397 -0.999896 -0.0499596 -0.0283043 -0.99835 0.0826853 0.220056 0.971977 -0.224079 0.260268 0.939175 -0.198399 0.254035 0.946628 0.0781418 0.220054 0.972353 0.0617131 -0.0224881 -0.997841 0.0590746 -0.0337399 -0.997683 -0.118294 -0.0522827 -0.991601 -0.148198 -0.0387121 -0.9882 -0.0666558 -0.0255909 -0.997448 0.064538 -0.0364518 -0.997249 0.0564747 -0.0214204 -0.998174 -0.0334844 -0.0112517 -0.999376 0.0612412 0.190211 0.979831 -0.136146 0.212977 0.967525 -0.118055 0.203752 0.971879 0.0529572 0.186518 0.981023 -0.0781218 0.220537 0.972245 -0.0705677 0.214207 0.974236 0.176696 0.242723 0.953868 0.198323 0.254536 0.946509 0.0612848 -0.0391131 -0.997354 0.0526891 -0.0284046 -0.998207 -0.0581192 -0.0405961 -0.997484 -0.0913339 -0.0524856 -0.994436 -0.0608369 0.0106948 -0.99809 -0.00552203 0.0110921 -0.999923 -0.301002 0.0799279 -0.950268 -0.463547 0.0465805 -0.884847 -0.0653464 0.203006 0.976995 -0.0612116 0.190715 0.979735 0.136048 0.213496 0.967425 0.151523 0.226812 0.962079 -0.059133 -0.0291912 -0.997823 0.119343 -0.0467932 -0.99175 0.094721 -0.0474232 -0.994374 -0.0622517 -0.0342593 -0.997472 0.0705929 0.213745 0.974336 -0.176779 0.242256 0.953971 -0.15162 0.226295 0.962186 0.0653785 0.202496 0.977098 -0.0848908 0.211977 0.973581 -0.0826723 0.220554 0.971865 0.224014 0.260797 0.939044 0.248981 0.242123 0.937755 0.442509 0.688264 -0.574872 0.00108158 0.907713 -0.419591 0.00152674 0.621963 -0.783045 0.223178 0.503141 -0.834889 0.279311 0.498739 -0.820515 0.0998552 0.347261 -0.932437 0.143925 -0.0432297 -0.988644 0.118334 0.201603 0.972293 -0.531439 0.00982231 -0.847039 -0.220656 0.220979 0.949989 -0.0611424 0.0773515 -0.995127 -0.38815 -0.26939 -0.881345 -0.310453 0.380732 0.871012 0.647605 0.447837 0.616481 0.191128 -0.0512396 -0.980227 0.154972 0.208719 0.965619 -0.300747 0.231968 0.925063 -0.000839311 1 -1.44796e-09 0.552358 0.81513 0.174538 0.00565118 -0.7109 -0.70327 -0.309455 -0.584158 -0.750331 0.0848996 0.211474 0.973689 -0.249017 0.241573 0.937888 -0.0530335 0.187028 0.980922 0.118125 0.204312 0.971753 -0.0618101 -0.017938 -0.997927 0.148902 -0.0345369 -0.988249 -0.558777 -0.0308476 -0.828744 0.455097 0.031576 -0.889882 0.292924 0.0532369 -0.954652 + + + + + + + + + + 0.477928 0.349794 0.709752 0.350629 0.718308 0.372026 0.469219 0.371129 0.454816 0.913199 0.50965 0.912704 0.510018 0.989128 0.455276 0.989488 0.453049 0.813904 0.507831 0.812316 0.508427 0.835541 0.453636 0.836765 0.451403 0.767675 0.506159 0.765362 0.507068 0.78871 0.452298 0.79066 0.449321 0.721985 0.504069 0.719491 0.5051 0.742112 0.450352 0.744606 0.446144 0.652257 0.500893 0.649763 0.502988 0.695746 0.44824 0.69824 0.446315 0.457891 0.391569 0.455355 0.392669 0.431612 0.447415 0.434148 0.4442 0.503567 0.389445 0.501231 0.390522 0.477974 0.445268 0.48051 0.442571 0.549757 0.387788 0.54822 0.388535 0.524597 0.443306 0.526532 0.441371 0.610036 0.386571 0.609289 0.387221 0.571459 0.442014 0.572599 0.0688863 0.500996 0.333038 0.501368 0.333393 0.577745 0.0683155 0.577371 0.00103744 0.724342 0.0586142 0.724445 0.0580771 0.989526 0.0005 0.989412 0.725752 0.524807 0.460676 0.523852 0.461414 0.447478 0.725564 0.448429 0.454349 0.874218 0.509147 0.873357 0.440736 0.725254 0.38595 0.72509 0.386166 0.648646 0.440991 0.649003 0.085186 0.403278 0.317012 0.403604 0.325615 0.424981 0.0765238 0.424631 0.723169 0.409345 0.46409 0.408412 0.547862 0.291493 0.640238 0.291826 0.660281 0.302359 0.527743 0.301882 0.679637 0.315114 0.508297 0.314497 0.330557 0.462289 0.0714769 0.461924 0.154991 0.344827 0.247369 0.344957 0.267435 0.355447 0.134896 0.35526 0.286819 0.368158 0.115477 0.367916 0.492376 0.331346 0.695436 0.332077 0.0995939 0.384799 0.302655 0.385085 0.571054 0.286294 0.617084 0.286459 0.178172 0.339577 0.224203 0.339642 0.837086 0.911692 0.8373 0.988073 0.362702 0.190138 0.362622 0.219658 0.0359181 0.219664 0.0358313 0.190144 0.362912 0.136095 0.363276 0.162761 0.0352504 0.162764 0.0356061 0.136096 0.362679 0.0828048 0.36321 0.109298 0.035301 0.109298 0.0358258 0.0828045 0.364163 0.0005 0.362625 0.0530286 0.0358754 0.0530285 0.0343354 0.000500092 0.764508 0.252627 0.766285 0.283625 0.436116 0.283626 0.43789 0.252628 0.764735 0.198491 0.764938 0.225495 0.437456 0.225496 0.437653 0.198492 0.764606 0.144393 0.76516 0.171775 0.437221 0.171779 0.437768 0.144397 0.765046 0.0735246 0.764528 0.114877 0.437841 0.114882 0.437317 0.0735284 0.440226 0.990299 0.385426 0.990183 0.363145 0.261015 0.363416 0.300845 0.035134 0.300849 0.0354012 0.261021 0.0587543 0.648059 0.765314 0.033699 0.437045 0.0337013 0.894674 0.911578 0.894866 0.987937 0.894584 0.811823 0.894586 0.834845 0.837006 0.834877 0.837004 0.811827 0.894604 0.76524 0.894591 0.788408 0.837011 0.788392 0.837024 0.76521 0.894639 0.719433 0.894621 0.742069 0.837041 0.74203 0.837059 0.719388 0.894698 0.649639 0.894659 0.695668 0.837079 0.695621 0.837118 0.649591 0.00109192 0.455813 0.00106649 0.432046 0.0586464 0.431985 0.0586719 0.455753 0.00114143 0.501628 0.00111647 0.478453 0.0586964 0.478395 0.0587213 0.501574 0.00118372 0.54822 0.00116446 0.5248 0.0587443 0.524755 0.0587636 0.548191 0.00119775 0.60886 0.00119607 0.571248 0.0587762 0.57124 0.0587777 0.608885 0.894613 0.872452 0.837033 0.872521 0.0011687 0.647988 0.363031 0.334048 0.0355197 0.334048 0.00118254 0.299445 0.00214097 0.259355 0.00330768 0.218624 0.00315624 0.191032 0.00192439 0.163289 0.00264792 0.136097 0.00202467 0.108963 0.00311808 0.0822764 0.00320188 0.0545875 0.000500013 0.00685395 0.402549 0.275298 0.405241 0.250515 0.404352 0.225067 0.404791 0.198361 0.403932 0.171269 0.405104 0.143534 0.405234 0.115936 0.404058 0.0752012 0.403094 0.0351118 0.437431 0.0005 0.764928 0.0005 0.799265 0.0351042 0.798306 0.0751931 0.797135 0.115926 0.797271 0.143523 0.798449 0.171258 0.797597 0.198351 0.798042 0.225059 0.797157 0.250508 0.799852 0.275291 0.397998 0.00685075 0.395299 0.0545835 0.395387 0.0822701 0.396486 0.108954 0.39587 0.136086 0.396602 0.163276 0.395378 0.191019 0.395232 0.218612 0.396405 0.259344 0.397369 0.299435 0.967743 0.191851 0.960262 0.197606 0.958745 0.192357 0.967556 0.185319 0.916669 0.169256 0.919833 0.163967 0.927368 0.182817 0.92409 0.18815 0.916666 0.312563 0.911583 0.323401 0.900463 0.316653 0.903863 0.304066 0.960131 0.372777 0.953171 0.379919 0.942909 0.364871 0.949684 0.357217 0.908183 0.0914706 0.912343 0.0817371 0.917123 0.0997854 0.911971 0.107932 0.969805 0.0750907 0.970099 0.101539 0.961316 0.094762 0.961246 0.0676613 0.99098 0.108823 0.991869 0.127811 0.987069 0.121348 0.985646 0.100415 0.911642 0.375938 0.912625 0.404194 0.900502 0.397415 0.90012 0.369204 0.949575 0.426578 0.94928 0.450179 0.940879 0.437297 0.940575 0.412638 0.824262 0.405445 0.8347 0.391861 0.832104 0.410298 0.822511 0.423836 0.906489 0.126468 0.911769 0.120481 0.915644 0.141787 0.911189 0.147087 0.968925 0.127771 0.968205 0.14447 0.96013 0.144721 0.96085 0.121634 0.988651 0.147741 0.982994 0.170707 0.979576 0.164606 0.984356 0.142531 0.901477 0.0567217 0.904538 0.0448618 0.909605 0.0608393 0.905649 0.0715706 0.975229 0.0307756 0.97177 0.0541666 0.962429 0.0466106 0.964597 0.0230117 0.994807 0.0723123 0.991674 0.0916558 0.987142 0.0820362 0.991273 0.0614912 0.909805 0.336493 0.909715 0.356151 0.899154 0.349561 0.899267 0.330349 0.949983 0.390432 0.948619 0.408129 0.938777 0.394107 0.939871 0.375872 0.820931 0.377066 0.831833 0.362474 0.834394 0.373596 0.823663 0.387706 0.938344 0.197439 0.939953 0.192237 0.949315 0.196065 0.949274 0.201554 0.888125 0.328746 0.876924 0.329867 0.87632 0.316132 0.88843 0.314598 0.94986 0.119078 0.938819 0.121395 0.938631 0.0945431 0.950036 0.0921841 0.950945 0.0202839 0.937243 0.0227518 0.934951 0.00305297 0.951177 0.0005 0.940311 0.167681 0.939233 0.144576 0.949675 0.145264 0.949502 0.171365 0.950498 0.0650054 0.939813 0.0674611 0.938545 0.0464092 0.950553 0.0439374 0.887296 0.367166 0.874395 0.368649 0.876208 0.349066 0.887717 0.347652 0.967356 0.00337478 0.95875 0.167723 0.930951 0.191565 0.931237 0.185034 0.866131 0.335551 0.864919 0.322394 0.930019 0.127225 0.929094 0.100996 0.926452 0.0303241 0.922041 0.0110361 0.93372 0.161696 0.930806 0.14408 0.931469 0.0747314 0.928884 0.0538691 0.862593 0.374879 0.865373 0.355194 0.958295 0.180862 0.966405 0.170383 0.967251 0.178748 0.958123 0.1879 0.920387 0.13671 0.924903 0.131931 0.927106 0.151278 0.923523 0.158134 0.920244 0.347886 0.922692 0.335593 0.932791 0.349769 0.929933 0.361386 0.914162 0.0500719 0.919478 0.0397652 0.922513 0.0625262 0.917135 0.0719697 0.974391 0.132526 0.976276 0.108093 0.981868 0.114605 0.979538 0.137336 0.982022 0.0403092 0.988171 0.0224147 0.993181 0.0338925 0.987058 0.0506836 0.844947 0.359552 0.85521 0.346483 0.854908 0.365915 0.845 0.378435 0.921884 0.091054 0.926467 0.0825552 0.922827 0.10748 0.917335 0.113931 0.966224 0.170641 0.972129 0.151794 0.975973 0.158753 0.968549 0.178216 0.842065 0.397321 0.851932 0.385287 0.849981 0.412479 0.840326 0.423254 0.975248 0.0829946 0.977649 0.0628068 0.98252 0.0722336 0.980374 0.0915808 0.921845 0.386795 0.919707 0.367313 0.929066 0.38025 0.931183 0.399244 0.836363 0.339215 0.847613 0.324534 0.853294 0.334095 0.842593 0.347823 0.940645 0.187816 0.940575 0.1808 0.949402 0.184592 0.949347 0.191685 0.931641 0.178456 0.932571 0.170083 0.996834 0.0457272 0.971555 0.18343 0.830737 0.43492 0.825394 0.354535 0.965433 0.162039 0.980124 0.0116086 0.860392 0.403067 0.860308 0.311347 0.9995 0.0576647 0.821788 0.447428 0.814285 0.369629 0.873466 0.30341 0.888727 0.300826 0.88669 0.395254 0.872796 0.396817 0.928781 0.326285 0.939386 0.341438 0.92262 0.414046 0.931802 0.425228 0.908521 0.0330816 0.913821 0.021689 0.974751 0.188824 0.932775 0.170191 0.930403 0.177679 0.749345 0.47063 0.749224 0.464103 0.758347 0.47048 0.756943 0.475866 0.792514 0.459231 0.79799 0.4399 0.801733 0.444874 0.796256 0.464225 0.611126 0.832488 0.598445 0.840775 0.595281 0.828545 0.606209 0.821975 0.652858 0.773215 0.642919 0.788489 0.636224 0.781136 0.645997 0.766361 0.803205 0.37536 0.802916 0.356858 0.807502 0.366271 0.808337 0.38372 0.747629 0.35093 0.756292 0.343593 0.756696 0.370886 0.748547 0.37748 0.726576 0.384257 0.731649 0.375836 0.73284 0.396697 0.728183 0.403165 0.606417 0.771068 0.595547 0.777778 0.595939 0.750625 0.606865 0.743698 0.641668 0.720734 0.633277 0.73448 0.632265 0.710239 0.640603 0.697797 0.533496 0.734536 0.534969 0.752713 0.525599 0.738938 0.52509 0.720801 0.800113 0.417741 0.80142 0.396395 0.80609 0.402891 0.804873 0.422643 0.749026 0.403962 0.756814 0.398071 0.757316 0.421523 0.749581 0.420961 0.729509 0.422761 0.734075 0.417895 0.736741 0.440153 0.732762 0.445877 0.532244 0.689373 0.534481 0.710294 0.526129 0.697862 0.523125 0.678723 0.740835 0.306794 0.752137 0.298809 0.755105 0.322376 0.745947 0.329886 0.72225 0.347778 0.725522 0.337118 0.731153 0.357362 0.726728 0.36687 0.60449 0.809289 0.594258 0.815288 0.594365 0.796701 0.604445 0.790223 0.64276 0.75615 0.633121 0.770445 0.631825 0.752658 0.64118 0.738872 0.533693 0.770501 0.530602 0.781196 0.520813 0.766432 0.524038 0.756217 0.76757 0.474035 0.776759 0.470442 0.778207 0.475796 0.767586 0.479632 0.583434 0.816706 0.583441 0.830382 0.571599 0.828558 0.572607 0.8153 0.767358 0.395654 0.767292 0.368403 0.777921 0.370741 0.7779 0.397936 0.583383 0.728192 0.583397 0.752684 0.570853 0.750639 0.570278 0.726048 0.767498 0.422194 0.777692 0.421483 0.777286 0.444927 0.767525 0.448516 0.767109 0.340985 0.76692 0.319717 0.778741 0.322207 0.77798 0.343448 0.583412 0.779658 0.583423 0.798434 0.572479 0.796713 0.571275 0.777792 0.596485 0.726034 0.757757 0.444883 0.785863 0.463985 0.785776 0.470513 0.560664 0.822001 0.562369 0.809313 0.786529 0.377102 0.786277 0.403586 0.559919 0.743725 0.558834 0.71911 0.785842 0.420749 0.784259 0.438948 0.787863 0.32958 0.786806 0.35066 0.562392 0.790247 0.560399 0.771094 0.749266 0.457376 0.749806 0.4485 0.758612 0.458329 0.758966 0.465717 0.795471 0.412786 0.793795 0.43429 0.789822 0.427676 0.791114 0.408129 0.626634 0.796016 0.616985 0.809988 0.614519 0.798062 0.62372 0.784736 0.804658 0.326136 0.798364 0.347244 0.793553 0.338024 0.799894 0.316007 0.737813 0.390129 0.742956 0.38383 0.743824 0.408489 0.738899 0.41302 0.623866 0.722304 0.615703 0.733643 0.616899 0.710024 0.625536 0.699952 0.54311 0.784782 0.544123 0.766404 0.552928 0.779208 0.552326 0.798097 0.797898 0.366716 0.796521 0.389796 0.791848 0.383453 0.792553 0.358358 0.740927 0.434613 0.745369 0.427964 0.749037 0.447342 0.74601 0.454676 0.542208 0.747823 0.542894 0.72235 0.551069 0.733679 0.550861 0.760244 0.735599 0.347691 0.740294 0.338413 0.742037 0.358695 0.736838 0.367122 0.622687 0.766359 0.613896 0.779174 0.615942 0.760208 0.624581 0.747777 0.533706 0.804088 0.540209 0.796065 0.549874 0.810026 0.543906 0.819026 0.776113 0.465709 0.767559 0.469348 0.767542 0.461942 0.776442 0.458346 0.785797 0.457255 0.785282 0.448376 0.808529 0.336599 0.634478 0.689315 0.742562 0.459613 0.523915 0.788557 0.750786 0.439132 0.79299 0.306479 0.607922 0.719082 0.555759 0.83252 0.811859 0.347218 0.643585 0.678654 0.51396 0.773294 0.583449 0.843728 0.56845 0.840792 0.766806 0.295982 0.781535 0.298615 0.633147 0.804032 0.622964 0.818981 0.541198 0.7 0.549847 0.710062 0.72933 0.326588 0.734026 0.31639 0.738841 0.464631 0.789082 0.454326 0.786077 0.447044 0.86602 0.196695 0.858539 0.20245 0.857022 0.197201 0.865833 0.190163 0.814946 0.1741 0.81811 0.168811 0.825644 0.187661 0.822367 0.192994 0.926354 0.201152 0.921271 0.21199 0.910151 0.205242 0.913551 0.192655 0.969819 0.261366 0.962859 0.268508 0.952596 0.25346 0.959372 0.245806 0.806459 0.0963146 0.81062 0.086581 0.8154 0.104629 0.810248 0.112776 0.868082 0.0799346 0.868375 0.106383 0.859593 0.0996059 0.859523 0.0725052 0.889257 0.113667 0.890146 0.132655 0.885346 0.126192 0.883923 0.105259 0.92133 0.264527 0.922313 0.292783 0.91019 0.286004 0.909808 0.257793 0.959263 0.315167 0.958968 0.338768 0.950567 0.325886 0.950263 0.301227 0.83395 0.294034 0.844388 0.28045 0.841792 0.298887 0.832199 0.312425 0.804766 0.131312 0.810046 0.125325 0.813921 0.146631 0.809466 0.15193 0.867201 0.132615 0.866482 0.149314 0.858407 0.149565 0.859126 0.126477 0.886928 0.152585 0.881271 0.17555 0.877853 0.16945 0.882633 0.147375 0.799753 0.0615657 0.802815 0.0497058 0.807881 0.0656833 0.803926 0.0764146 0.873506 0.0356196 0.870047 0.0590105 0.860706 0.0514546 0.862873 0.0278556 0.893084 0.0771563 0.889951 0.0964997 0.885418 0.0868802 0.88955 0.0663351 0.919493 0.225082 0.919402 0.24474 0.908841 0.23815 0.908955 0.218938 0.959671 0.279021 0.958307 0.296718 0.948464 0.282695 0.949558 0.264461 0.830619 0.265655 0.841521 0.251063 0.844082 0.262185 0.833351 0.276295 0.836621 0.202283 0.83823 0.197081 0.847592 0.200909 0.847551 0.206398 0.897813 0.217335 0.886612 0.218456 0.886008 0.20472 0.898118 0.203187 0.848137 0.123922 0.837096 0.126239 0.836908 0.099387 0.848313 0.0970281 0.849222 0.0251279 0.83552 0.0275958 0.833228 0.00789693 0.849454 0.00534396 0.838588 0.172525 0.83751 0.14942 0.847952 0.150108 0.847778 0.176209 0.848775 0.0698494 0.83809 0.072305 0.836822 0.0512532 0.84883 0.0487814 0.896984 0.255755 0.884083 0.257238 0.885896 0.237655 0.897405 0.236241 0.865633 0.00821874 0.857027 0.172567 0.829228 0.196409 0.829514 0.189877 0.875818 0.22414 0.874607 0.210983 0.828295 0.132069 0.827371 0.10584 0.824729 0.035168 0.820318 0.0158801 0.831997 0.16654 0.829083 0.148924 0.829745 0.0795754 0.827161 0.058713 0.872281 0.263468 0.875061 0.243783 0.856572 0.185706 0.864682 0.175227 0.865528 0.183592 0.8564 0.192744 0.818664 0.141554 0.82318 0.136775 0.825383 0.156122 0.8218 0.162978 0.929931 0.236475 0.93238 0.224182 0.942479 0.238358 0.939621 0.249975 0.812439 0.0549159 0.817755 0.0446092 0.82079 0.0673702 0.815412 0.0768137 0.872668 0.13737 0.874553 0.112937 0.880145 0.119449 0.877815 0.14218 0.880299 0.0451531 0.886448 0.0272587 0.891457 0.0387364 0.885335 0.0555275 0.854635 0.248141 0.864898 0.235072 0.864596 0.254504 0.854688 0.267024 0.820161 0.0958979 0.824744 0.0873992 0.821104 0.112324 0.815612 0.118775 0.864501 0.175485 0.870406 0.156638 0.87425 0.163597 0.866826 0.18306 0.851753 0.28591 0.86162 0.273876 0.859669 0.301067 0.850014 0.311843 0.873525 0.0878386 0.875925 0.0676508 0.880797 0.0770776 0.878651 0.0964248 0.931533 0.275384 0.929395 0.255902 0.938754 0.268838 0.940871 0.287833 0.846051 0.227804 0.8573 0.213123 0.862982 0.222684 0.852281 0.236412 0.838922 0.19266 0.838852 0.185644 0.847678 0.189436 0.847624 0.196529 0.829918 0.1833 0.830848 0.174927 0.895111 0.0505712 0.869832 0.188274 0.840425 0.323509 0.835082 0.243124 0.86371 0.166883 0.878401 0.0164525 0.87008 0.291656 0.869996 0.199936 0.897777 0.0625087 0.831476 0.336017 0.823973 0.258218 0.883154 0.191999 0.898415 0.189414 0.896377 0.283843 0.882484 0.285406 0.938469 0.214874 0.949074 0.230027 0.932308 0.302635 0.94149 0.313817 0.806798 0.0379256 0.812098 0.026533 0.873028 0.193667 0.831052 0.175035 0.82868 0.182523 0.923727 0.974402 0.923607 0.967875 0.932729 0.974252 0.931325 0.979638 0.966896 0.963003 0.972373 0.943672 0.976116 0.948646 0.970639 0.967997 0.586906 0.682325 0.574225 0.690612 0.571061 0.678382 0.581989 0.671812 0.628638 0.623052 0.618699 0.638326 0.612004 0.630973 0.621777 0.616198 0.977588 0.879132 0.977298 0.86063 0.981885 0.870043 0.98272 0.887492 0.922011 0.854702 0.930674 0.847365 0.931079 0.874658 0.92293 0.881252 0.900959 0.888029 0.906032 0.879608 0.907223 0.900469 0.902566 0.906937 0.582197 0.620905 0.571328 0.627615 0.571719 0.600462 0.582646 0.593536 0.617448 0.570571 0.609058 0.584317 0.608045 0.560076 0.616383 0.547634 0.509276 0.584374 0.510749 0.602551 0.501379 0.588775 0.50087 0.570638 0.974496 0.921513 0.975803 0.900167 0.980473 0.906663 0.979256 0.926415 0.923408 0.907734 0.931197 0.901843 0.931699 0.925295 0.923964 0.924733 0.903892 0.926533 0.908458 0.921667 0.911124 0.943925 0.907144 0.949649 0.508025 0.53921 0.510261 0.560132 0.501909 0.547699 0.498905 0.52856 0.915218 0.810566 0.92652 0.802581 0.929488 0.826148 0.92033 0.833658 0.896633 0.85155 0.899905 0.84089 0.905535 0.861133 0.901111 0.870641 0.58027 0.659126 0.570038 0.665125 0.570145 0.646538 0.580225 0.64006 0.61854 0.605987 0.608901 0.620282 0.607605 0.602496 0.61696 0.588709 0.509473 0.620339 0.506383 0.631033 0.496593 0.616269 0.499818 0.606054 0.941952 0.977807 0.951141 0.974214 0.95259 0.979568 0.941969 0.983404 0.559214 0.666543 0.559221 0.680219 0.547379 0.678396 0.548387 0.665138 0.941741 0.899426 0.941675 0.872174 0.952304 0.874513 0.952282 0.901707 0.559163 0.578029 0.559177 0.602521 0.546634 0.600476 0.546059 0.575886 0.941881 0.925966 0.952075 0.925255 0.951669 0.948699 0.941908 0.952288 0.941492 0.844757 0.941302 0.823489 0.953124 0.825979 0.952362 0.84722 0.559193 0.629495 0.559203 0.648271 0.548259 0.646551 0.547055 0.627629 0.572266 0.575871 0.932139 0.948655 0.960246 0.967757 0.960158 0.974285 0.536444 0.671838 0.538149 0.65915 0.960912 0.880874 0.96066 0.907357 0.535699 0.593562 0.534615 0.568947 0.960225 0.924521 0.958642 0.94272 0.962246 0.833351 0.961188 0.854432 0.538172 0.640084 0.536179 0.620931 0.923649 0.961147 0.924189 0.952272 0.932995 0.9621 0.933349 0.969489 0.969854 0.916558 0.968177 0.938062 0.964205 0.931448 0.965497 0.911901 0.602414 0.645853 0.592766 0.659825 0.5903 0.647899 0.5995 0.634573 0.979041 0.829907 0.972747 0.851016 0.967936 0.841796 0.974277 0.819779 0.912195 0.893901 0.917338 0.887602 0.918207 0.912261 0.913282 0.916792 0.599646 0.572141 0.591484 0.58348 0.592679 0.559861 0.601316 0.549789 0.51889 0.634619 0.519903 0.616241 0.528708 0.629045 0.528106 0.647935 0.972281 0.870488 0.970903 0.893568 0.966231 0.887224 0.966936 0.86213 0.91531 0.938385 0.919751 0.931736 0.92342 0.951114 0.920392 0.958448 0.517988 0.597661 0.518674 0.572187 0.526849 0.583517 0.526641 0.610082 0.909982 0.851463 0.914677 0.842185 0.916419 0.862467 0.911221 0.870894 0.598467 0.616196 0.589676 0.629011 0.591722 0.610045 0.600361 0.597614 0.509486 0.653926 0.515989 0.645902 0.525654 0.659863 0.519686 0.668863 0.950496 0.969481 0.941941 0.97312 0.941924 0.965714 0.950825 0.962118 0.960179 0.961027 0.959665 0.952148 0.982912 0.840371 0.610258 0.539152 0.916944 0.963385 0.499696 0.638394 0.925169 0.942904 0.967372 0.810251 0.583702 0.568919 0.531539 0.682357 0.986242 0.85099 0.619365 0.528492 0.48974 0.623131 0.559229 0.693566 0.54423 0.690629 0.941189 0.799753 0.955918 0.802387 0.608927 0.653869 0.598744 0.668818 0.516978 0.549837 0.525627 0.559899 0.903713 0.83036 0.908409 0.820162 0.913224 0.968403 0.963465 0.958098 0.96046 0.950816 + + + + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 +

3 0 1 1 2 3 7 4 5 5 6 7 11 8 9 9 10 11 15 12 13 13 14 15 19 16 17 17 18 19 23 20 21 21 22 23 27 24 25 25 26 27 31 28 29 29 30 31 35 32 33 33 34 35 39 36 37 37 38 39 43 40 41 41 42 43 47 44 45 45 46 47 51 48 49 49 50 51 4 52 53 53 5 4 57 54 55 55 56 57 61 58 59 59 60 61 2 62 63 63 3 2 67 64 65 65 66 67 66 68 69 69 67 66 60 70 71 71 61 60 75 72 73 73 74 75 74 76 77 77 75 74 0 78 79 79 1 0 8 15 14 14 9 8 12 19 18 18 13 12 16 23 22 22 17 16 24 31 30 30 25 24 28 35 34 34 29 28 32 39 38 38 33 32 36 57 56 56 37 36 52 11 10 10 53 52 58 80 81 81 59 58 62 51 50 50 63 62 64 82 83 83 65 64 68 79 78 78 69 68 70 41 40 40 71 70 72 84 85 85 73 72 76 81 80 80 77 76 5 86 87 87 6 5 91 88 89 89 90 91 95 92 93 93 94 95 99 96 97 97 98 99 103 100 101 101 102 103 107 104 105 105 106 107 111 108 109 109 110 111 115 112 113 113 114 115 119 116 117 117 118 119 55 54 120 120 121 55 125 122 123 123 124 125 55 45 126 126 56 55 94 93 88 88 91 94 98 97 92 92 95 98 102 101 96 96 99 102 110 109 104 104 107 110 114 113 108 108 111 114 118 117 112 112 115 118 128 127 116 116 119 128 90 89 122 122 125 90 45 55 121 121 46 45 86 129 130 130 87 86 134 131 132 132 133 134 138 135 136 136 137 138 142 139 140 140 141 142 146 143 144 144 145 146 150 147 148 148 149 150 154 151 152 152 153 154 158 155 156 156 157 158 162 159 160 160 161 162 164 163 129 129 86 164 45 44 165 165 126 45 137 136 131 131 134 137 141 140 135 135 138 141 145 144 139 139 142 145 153 152 147 147 150 153 157 156 151 151 154 157 161 160 155 155 158 161 126 165 159 159 162 126 133 132 163 163 164 133 123 166 167 167 124 123 124 168 169 169 125 124 125 169 170 170 90 125 90 170 171 171 91 90 91 171 172 172 94 91 94 172 173 173 95 94 95 173 174 174 98 95 98 174 175 175 99 98 99 175 176 176 102 99 102 176 177 177 103 102 106 178 179 179 107 106 107 179 180 180 110 107 110 180 181 181 111 110 111 181 182 182 114 111 114 182 183 183 115 114 115 183 184 184 118 115 118 184 185 185 119 118 119 185 186 186 128 119 128 187 188 188 127 128 127 189 190 190 116 127 116 190 191 191 117 116 117 191 192 192 112 117 112 192 193 193 113 112 113 193 194 194 108 113 108 194 195 195 109 108 109 195 196 196 104 109 104 196 197 197 105 104 100 198 199 199 101 100 101 199 200 200 96 101 96 200 201 201 97 96 97 201 202 202 92 97 92 202 203 203 93 92 93 203 204 204 88 93 88 204 205 205 89 88 89 205 206 206 122 89 122 206 207 207 123 122 211 208 209 209 210 211 215 212 213 213 214 215 219 216 217 217 218 219 223 220 221 221 222 223 227 224 225 225 226 227 231 228 229 229 230 231 235 232 233 233 234 235 239 236 237 237 238 239 243 240 241 241 242 243 247 244 245 245 246 247 251 248 249 249 250 251 255 252 253 253 254 255 259 256 257 257 258 259 263 260 261 261 262 263 267 264 265 265 266 267 271 268 269 269 270 271 275 272 273 273 274 275 279 276 277 277 278 279 283 280 281 281 282 283 287 284 285 285 286 287 291 288 289 289 290 291 295 292 293 293 294 295 299 296 297 297 298 299 303 300 301 301 302 303 307 304 305 305 306 307 311 308 309 309 310 311 210 209 287 287 286 210 275 288 291 291 218 275 255 292 295 295 230 255 267 296 299 299 312 267 254 313 303 303 302 254 231 304 307 307 266 231 239 308 311 311 274 239 284 314 315 315 285 284 290 289 316 316 317 290 294 293 318 318 319 294 298 297 320 320 321 298 300 322 323 323 301 300 306 305 324 324 325 306 310 309 326 326 327 310 331 328 329 329 330 331 335 332 333 333 334 335 339 336 337 337 338 339 343 340 341 341 342 343 347 344 345 345 346 347 351 348 349 349 350 351 355 352 353 353 354 355 359 356 357 357 358 359 363 360 361 361 362 363 367 364 365 365 366 367 371 368 369 369 370 371 375 372 373 373 374 375 379 376 377 377 378 379 383 380 381 381 382 383 383 382 328 328 331 383 380 384 385 385 381 380 210 331 330 330 211 210 213 250 332 332 335 213 279 339 338 338 222 279 225 262 340 340 343 225 259 347 346 346 234 259 271 351 350 350 386 271 245 282 352 352 355 245 249 226 356 356 359 249 387 363 362 362 258 387 388 246 364 364 367 388 235 371 370 370 270 235 243 375 374 374 278 243 281 389 376 376 379 281 286 285 380 380 383 286 286 383 331 331 210 286 285 315 384 384 380 285 328 313 390 390 329 328 334 333 318 318 323 334 336 272 217 217 337 336 342 341 320 320 325 342 344 252 229 229 345 344 348 264 391 391 349 348 354 353 316 316 327 354 358 357 324 324 319 358 360 390 253 253 361 360 366 365 326 326 392 366 368 228 265 265 369 368 372 236 273 273 373 372 378 377 393 393 317 378 382 381 300 300 303 382 382 303 313 313 328 382 381 385 322 322 300 381 218 217 272 272 275 218 222 221 276 276 279 222 224 263 262 262 225 224 230 229 252 252 255 230 234 233 256 256 259 234 312 391 264 264 267 312 386 394 268 268 271 386 244 283 282 282 245 244 248 227 226 226 249 248 395 247 246 246 388 395 266 265 228 228 231 266 270 269 232 232 235 270 274 273 236 236 239 274 278 277 240 240 243 278 280 396 389 389 281 280 290 397 398 398 291 290 294 305 304 304 295 294 400 309 308 308 399 400 306 297 296 296 307 306 310 289 288 288 311 310 218 291 398 398 219 218 230 295 304 304 231 230 238 399 308 308 239 238 266 307 296 296 267 266 274 311 288 288 275 274 317 393 397 397 290 317 319 324 305 305 294 319 392 326 309 309 400 392 325 320 297 297 306 325 327 316 289 289 310 327 338 337 401 401 402 338 342 357 356 356 343 342 346 345 368 368 371 346 404 403 372 372 375 404 354 365 364 364 355 354 358 333 332 332 359 358 406 341 340 340 405 406 370 369 348 348 351 370 374 373 336 336 339 374 378 353 352 352 379 378 222 338 402 402 223 222 343 356 226 226 225 343 234 346 371 371 235 234 242 404 375 375 243 242 355 364 246 246 245 355 359 332 250 250 249 359 405 340 262 262 261 405 270 370 351 351 271 270 278 374 339 339 279 278 379 352 282 282 281 379 337 217 216 216 401 337 325 324 357 357 342 325 345 229 228 228 368 345 403 237 236 236 372 403 327 326 365 365 354 327 319 318 333 333 358 319 321 320 341 341 406 321 369 265 264 264 348 369 373 273 272 272 336 373 317 316 353 353 378 317 212 251 250 250 213 212 253 390 313 313 254 253 258 257 407 407 387 258 301 293 292 292 302 301 254 302 292 292 255 254 323 318 293 293 301 323 334 408 409 409 335 334 362 361 344 344 347 362 335 409 214 214 213 335 258 362 347 347 259 258 323 322 408 408 334 323 361 253 252 252 344 361 413 410 411 411 412 413 417 414 415 415 416 417 421 418 419 419 420 421 425 422 423 423 424 425 429 426 427 427 428 429 433 430 431 431 432 433 437 434 435 435 436 437 441 438 439 439 440 441 445 442 443 443 444 445 449 446 447 447 448 449 453 450 451 451 452 453 457 454 455 455 456 457 461 458 459 459 460 461 465 462 463 463 464 465 469 466 467 467 468 469 473 470 471 471 472 473 477 474 475 475 476 477 481 478 479 479 480 481 485 482 483 483 484 485 489 486 487 487 488 489 493 490 491 491 492 493 497 494 495 495 496 497 501 498 499 499 500 501 505 502 503 503 504 505 509 506 507 507 508 509 513 510 511 511 512 513 489 413 412 412 486 489 475 420 491 491 490 475 455 432 495 495 494 455 514 440 499 499 498 514 505 515 456 456 502 505 431 468 507 507 506 431 439 476 511 511 510 439 488 487 516 516 517 488 519 493 492 492 518 519 521 497 496 496 520 521 523 501 500 500 522 523 504 503 524 524 525 504 527 509 508 508 526 527 529 513 512 512 528 529 533 530 531 531 532 533 537 534 535 535 536 537 541 538 539 539 540 541 545 542 543 543 544 545 549 546 547 547 548 549 553 550 551 551 552 553 557 554 555 555 556 557 561 558 559 559 560 561 565 562 563 563 564 565 569 566 567 567 568 569 573 570 571 571 572 573 577 574 575 575 576 577 581 578 579 579 580 581 585 582 583 583 584 585 583 533 532 532 584 583 587 586 582 582 585 587 412 411 530 530 533 412 534 450 415 415 535 534 479 424 538 538 541 479 542 588 427 427 543 542 459 436 546 546 549 459 589 444 550 550 553 589 554 482 447 447 555 554 558 426 451 451 559 558 590 460 562 562 565 590 566 446 463 463 567 566 435 472 570 570 573 435 443 480 574 574 577 443 578 591 483 483 579 578 582 487 486 486 583 582 486 412 533 533 583 486 586 516 487 487 582 586 532 531 592 592 515 532 521 537 536 536 524 521 540 539 421 421 474 540 593 545 544 544 526 593 548 547 433 433 454 548 552 551 441 441 594 552 519 557 556 556 528 519 527 561 560 560 520 527 564 563 457 457 592 564 529 569 568 568 522 529 572 571 469 469 430 572 576 575 477 477 438 576 595 581 580 580 518 595 504 585 584 584 505 504 584 532 515 515 505 584 525 587 585 585 504 525 474 421 420 420 475 474 478 425 424 424 479 478 428 427 588 588 596 428 454 433 432 432 455 454 458 437 436 436 459 458 594 441 440 440 514 594 597 445 444 444 589 597 448 447 482 482 485 448 452 451 426 426 429 452 464 463 446 446 449 464 430 469 468 468 431 430 434 473 472 472 435 434 438 477 476 476 439 438 442 481 480 480 443 442 484 483 591 591 598 484 492 491 599 599 600 492 496 495 506 506 509 496 500 499 510 510 513 500 508 507 601 601 602 508 512 511 490 490 493 512 599 491 420 420 419 599 506 495 432 432 431 506 510 499 440 440 439 510 601 507 468 468 467 601 490 511 476 476 475 490 518 492 600 600 595 518 520 496 509 509 527 520 522 500 513 513 529 522 526 508 602 602 593 526 528 512 493 493 519 528 604 539 538 538 603 604 544 543 558 558 561 544 572 547 546 546 573 572 576 551 550 550 577 576 556 555 566 566 569 556 560 559 534 534 537 560 568 567 605 605 606 568 608 571 570 570 607 608 540 575 574 574 541 540 580 579 554 554 557 580 603 538 424 424 423 603 543 427 426 426 558 543 573 546 436 436 435 573 577 550 444 444 443 577 555 447 446 446 566 555 559 451 450 450 534 559 567 463 462 462 605 567 607 570 472 472 471 607 541 574 480 480 479 541 579 483 482 482 554 579 418 421 539 539 604 418 526 544 561 561 527 526 430 433 547 547 572 430 438 441 551 551 576 438 528 556 569 569 529 528 520 560 537 537 521 520 522 568 606 606 523 522 466 469 571 571 608 466 474 477 575 575 540 474 518 580 557 557 519 518 416 415 450 450 453 416 457 456 515 515 592 457 609 461 460 460 590 609 503 502 494 494 497 503 494 502 456 456 455 494 524 503 497 497 521 524 536 535 610 610 611 536 548 563 562 562 549 548 535 415 414 414 610 535 549 562 460 460 459 549 524 536 611 611 525 524 454 457 563 563 548 454 615 612 613 613 614 615 619 616 617 617 618 619 623 620 621 621 622 623 627 624 625 625 626 627 631 628 629 629 630 631 635 632 633 633 634 635 639 636 637 637 638 639 643 640 641 641 642 643 647 644 645 645 646 647 651 648 649 649 650 651 655 652 653 653 654 655 659 656 657 657 658 659 663 660 661 661 662 663 667 664 665 665 666 667 671 668 669 669 670 671 675 672 673 673 674 675 679 676 677 677 678 679 683 680 681 681 682 683 687 684 685 685 686 687 691 688 689 689 690 691 695 692 693 693 694 695 699 696 697 697 698 699 703 700 701 701 702 703 707 704 705 705 706 707 711 708 709 709 710 711 715 712 713 713 714 715 614 613 691 691 690 614 679 692 695 695 622 679 659 696 699 699 634 659 671 700 703 703 716 671 658 717 707 707 706 658 635 708 711 711 670 635 643 712 715 715 678 643 688 718 719 719 689 688 694 693 720 720 721 694 698 697 722 722 723 698 702 701 724 724 725 702 704 726 727 727 705 704 710 709 728 728 729 710 714 713 730 730 731 714 735 732 733 733 734 735 739 736 737 737 738 739 743 740 741 741 742 743 747 744 745 745 746 747 751 748 749 749 750 751 755 752 753 753 754 755 759 756 757 757 758 759 763 760 761 761 762 763 767 764 765 765 766 767 771 768 769 769 770 771 775 772 773 773 774 775 779 776 777 777 778 779 783 780 781 781 782 783 787 784 785 785 786 787 787 786 732 732 735 787 784 788 789 789 785 784 614 735 734 734 615 614 617 654 736 736 739 617 683 743 742 742 626 683 629 666 744 744 747 629 663 751 750 750 638 663 675 755 754 754 790 675 649 686 756 756 759 649 653 630 760 760 763 653 791 767 766 766 662 791 792 650 768 768 771 792 639 775 774 774 674 639 647 779 778 778 682 647 685 793 780 780 783 685 690 689 784 784 787 690 690 787 735 735 614 690 689 719 788 788 784 689 732 717 794 794 733 732 738 737 722 722 727 738 740 676 621 621 741 740 746 745 724 724 729 746 748 656 633 633 749 748 752 668 795 795 753 752 758 757 720 720 731 758 762 761 728 728 723 762 764 794 657 657 765 764 770 769 730 730 796 770 772 632 669 669 773 772 776 640 677 677 777 776 782 781 797 797 721 782 786 785 704 704 707 786 786 707 717 717 732 786 785 789 726 726 704 785 622 621 676 676 679 622 626 625 680 680 683 626 628 667 666 666 629 628 634 633 656 656 659 634 638 637 660 660 663 638 716 795 668 668 671 716 790 798 672 672 675 790 648 687 686 686 649 648 652 631 630 630 653 652 799 651 650 650 792 799 670 669 632 632 635 670 674 673 636 636 639 674 678 677 640 640 643 678 682 681 644 644 647 682 684 800 793 793 685 684 694 801 802 802 695 694 698 709 708 708 699 698 804 713 712 712 803 804 710 701 700 700 711 710 714 693 692 692 715 714 622 695 802 802 623 622 634 699 708 708 635 634 642 803 712 712 643 642 670 711 700 700 671 670 678 715 692 692 679 678 721 797 801 801 694 721 723 728 709 709 698 723 796 730 713 713 804 796 729 724 701 701 710 729 731 720 693 693 714 731 742 741 805 805 806 742 746 761 760 760 747 746 750 749 772 772 775 750 808 807 776 776 779 808 758 769 768 768 759 758 762 737 736 736 763 762 810 745 744 744 809 810 774 773 752 752 755 774 778 777 740 740 743 778 782 757 756 756 783 782 626 742 806 806 627 626 747 760 630 630 629 747 638 750 775 775 639 638 646 808 779 779 647 646 759 768 650 650 649 759 763 736 654 654 653 763 809 744 666 666 665 809 674 774 755 755 675 674 682 778 743 743 683 682 783 756 686 686 685 783 741 621 620 620 805 741 729 728 761 761 746 729 749 633 632 632 772 749 807 641 640 640 776 807 731 730 769 769 758 731 723 722 737 737 762 723 725 724 745 745 810 725 773 669 668 668 752 773 777 677 676 676 740 777 721 720 757 757 782 721 616 655 654 654 617 616 657 794 717 717 658 657 662 661 811 811 791 662 705 697 696 696 706 705 658 706 696 696 659 658 727 722 697 697 705 727 738 812 813 813 739 738 766 765 748 748 751 766 739 813 618 618 617 739 662 766 751 751 663 662 727 726 812 812 738 727 765 657 656 656 748 765 817 814 815 815 816 817 821 818 819 819 820 821 825 822 823 823 824 825 829 826 827 827 828 829 833 830 831 831 832 833 837 834 835 835 836 837 841 838 839 839 840 841 845 842 843 843 844 845 849 846 847 847 848 849 853 850 851 851 852 853 857 854 855 855 856 857 861 858 859 859 860 861 865 862 863 863 864 865 869 866 867 867 868 869 873 870 871 871 872 873 877 874 875 875 876 877 881 878 879 879 880 881 885 882 883 883 884 885 889 886 887 887 888 889 893 890 891 891 892 893 897 894 895 895 896 897 901 898 899 899 900 901 905 902 903 903 904 905 909 906 907 907 908 909 913 910 911 911 912 913 917 914 915 915 916 917 893 817 816 816 890 893 879 824 895 895 894 879 859 836 899 899 898 859 918 844 903 903 902 918 909 919 860 860 906 909 835 872 911 911 910 835 843 880 915 915 914 843 892 891 920 920 921 892 923 897 896 896 922 923 925 901 900 900 924 925 927 905 904 904 926 927 908 907 928 928 929 908 931 913 912 912 930 931 933 917 916 916 932 933 937 934 935 935 936 937 941 938 939 939 940 941 945 942 943 943 944 945 949 946 947 947 948 949 953 950 951 951 952 953 957 954 955 955 956 957 961 958 959 959 960 961 965 962 963 963 964 965 969 966 967 967 968 969 973 970 971 971 972 973 977 974 975 975 976 977 981 978 979 979 980 981 985 982 983 983 984 985 989 986 987 987 988 989 987 937 936 936 988 987 991 990 986 986 989 991 816 815 934 934 937 816 938 854 819 819 939 938 883 828 942 942 945 883 946 992 831 831 947 946 863 840 950 950 953 863 993 848 954 954 957 993 958 886 851 851 959 958 962 830 855 855 963 962 994 864 966 966 969 994 970 850 867 867 971 970 839 876 974 974 977 839 847 884 978 978 981 847 982 995 887 887 983 982 986 891 890 890 987 986 890 816 937 937 987 890 990 920 891 891 986 990 936 935 996 996 919 936 925 941 940 940 928 925 944 943 825 825 878 944 997 949 948 948 930 997 952 951 837 837 858 952 956 955 845 845 998 956 923 961 960 960 932 923 931 965 964 964 924 931 968 967 861 861 996 968 933 973 972 972 926 933 976 975 873 873 834 976 980 979 881 881 842 980 999 985 984 984 922 999 908 989 988 988 909 908 988 936 919 919 909 988 929 991 989 989 908 929 878 825 824 824 879 878 882 829 828 828 883 882 832 831 992 992 1000 832 858 837 836 836 859 858 862 841 840 840 863 862 998 845 844 844 918 998 1001 849 848 848 993 1001 852 851 886 886 889 852 856 855 830 830 833 856 868 867 850 850 853 868 834 873 872 872 835 834 838 877 876 876 839 838 842 881 880 880 843 842 846 885 884 884 847 846 888 887 995 995 1002 888 896 895 1003 1003 1004 896 900 899 910 910 913 900 904 903 914 914 917 904 912 911 1005 1005 1006 912 916 915 894 894 897 916 1003 895 824 824 823 1003 910 899 836 836 835 910 914 903 844 844 843 914 1005 911 872 872 871 1005 894 915 880 880 879 894 922 896 1004 1004 999 922 924 900 913 913 931 924 926 904 917 917 933 926 930 912 1006 1006 997 930 932 916 897 897 923 932 1008 943 942 942 1007 1008 948 947 962 962 965 948 976 951 950 950 977 976 980 955 954 954 981 980 960 959 970 970 973 960 964 963 938 938 941 964 972 971 1009 1009 1010 972 1012 975 974 974 1011 1012 944 979 978 978 945 944 984 983 958 958 961 984 1007 942 828 828 827 1007 947 831 830 830 962 947 977 950 840 840 839 977 981 954 848 848 847 981 959 851 850 850 970 959 963 855 854 854 938 963 971 867 866 866 1009 971 1011 974 876 876 875 1011 945 978 884 884 883 945 983 887 886 886 958 983 822 825 943 943 1008 822 930 948 965 965 931 930 834 837 951 951 976 834 842 845 955 955 980 842 932 960 973 973 933 932 924 964 941 941 925 924 926 972 1010 1010 927 926 870 873 975 975 1012 870 878 881 979 979 944 878 922 984 961 961 923 922 820 819 854 854 857 820 861 860 919 919 996 861 1013 865 864 864 994 1013 907 906 898 898 901 907 898 906 860 860 859 898 928 907 901 901 925 928 940 939 1014 1014 1015 940 952 967 966 966 953 952 939 819 818 818 1014 939 953 966 864 864 863 953 928 940 1015 1015 929 928 858 861 967 967 952 858

+
+
+
+ + + + -0.560133 -0.15037 0.145509 -0.560133 0.15037 0.145509 -0.560133 0.161674 0.111297 -0.560133 -0.161674 0.111297 -0.560133 0.169446 0.00780586 0.035007 0.169446 0.00780586 0.035007 0.17205 -0.0683846 -0.560133 0.17205 -0.0683846 -0.560133 0.15037 0.145509 0.035007 0.15037 0.145509 0.035007 0.161674 0.111297 -0.560133 0.161674 0.111297 -0.560133 0.11121 0.202219 0.035007 0.111211 0.202219 0.035007 0.131798 0.175144 -0.560133 0.131798 0.175144 -0.560133 0.0599581 0.239288 0.035007 0.0599582 0.239288 0.035007 0.0860252 0.222534 -0.560133 0.0860251 0.222534 -0.560133 0.0298762 0.247749 -0.560133 -0.0298762 0.247749 0.035007 -0.0298761 0.247749 0.035007 0.0298763 0.247749 -0.560133 -0.0599581 0.239288 0.035007 -0.059958 0.239288 0.035007 -0.0298761 0.247749 -0.560133 -0.0298762 0.247749 -0.560133 -0.11121 0.20222 0.035007 -0.11121 0.20222 0.035007 -0.0860251 0.222534 -0.560133 -0.0860251 0.222534 -0.560133 -0.15037 0.145509 0.035007 -0.15037 0.145509 0.035007 -0.131798 0.175145 -0.560133 -0.131798 0.175145 -0.560133 -0.169446 0.00780595 0.035007 -0.169446 0.00780595 0.035007 -0.161674 0.111297 -0.560133 -0.161674 0.111297 0.035007 0.169446 0.00780586 0.035007 -0.169446 0.00780595 0.035007 -0.17205 -0.0683846 0.035007 0.17205 -0.0683846 0.035007 -0.17205 -0.0683846 -0.560133 -0.17205 -0.0683846 -0.560133 0.17205 -0.0683846 0.035007 0.17205 -0.0683846 -0.560133 0.169446 0.00780586 -0.560133 -0.169446 0.00780595 -0.560133 -0.0599581 0.239288 -0.560133 0.0599581 0.239288 -0.560133 0.0860251 0.222534 -0.560133 -0.0860251 0.222534 -0.560133 0.11121 0.202219 -0.560133 -0.11121 0.20222 0.035007 0.111211 0.202219 0.035007 -0.11121 0.20222 0.035007 -0.131798 0.175145 0.035007 0.131798 0.175144 0.035007 -0.15037 0.145509 0.035007 0.15037 0.145509 0.035007 0.0599582 0.239288 0.035007 -0.059958 0.239288 0.035007 -0.0860251 0.222534 0.035007 0.0860252 0.222534 -0.560133 -0.131798 0.175145 -0.560133 0.131798 0.175144 -0.560133 -0.17205 -0.0683846 0.035007 -0.17205 -0.0683846 0.035007 0.161674 0.111297 0.035007 -0.161674 0.111297 -0.560133 0.17205 -0.0683846 -0.560133 -0.17205 -0.0683846 -0.560133 -0.0298762 0.247749 -0.560133 0.0298762 0.247749 0.035007 0.0298763 0.247749 0.035007 -0.0298761 0.247749 0.108555 -0.12252 0.0356425 0.108555 -0.130383 0.0802362 0.0355122 -0.130383 0.0802362 0.0355122 -0.12252 0.0356425 0.108555 -0.12252 0.12483 0.0355122 -0.12252 0.12483 0.108555 -0.0998794 0.164045 0.0355122 -0.0998794 0.164045 0.108555 -0.0651917 0.193151 0.0355122 -0.0651917 0.193151 0.108555 -0.0226408 0.208639 0.0355122 -0.0226408 0.208639 0.108555 -0.0226408 0.208639 0.108555 0.0226408 0.208639 0.0355122 0.0226408 0.208639 0.0355122 -0.0226408 0.208639 0.108555 0.0651916 0.193151 0.0355122 0.0651916 0.193151 0.108555 0.0998793 0.164045 0.0355122 0.0998794 0.164045 0.108555 0.12252 0.12483 0.0355122 0.12252 0.12483 0.108555 0.130383 0.0802361 0.0355122 0.130383 0.0802361 0.108555 0.12252 0.0356424 0.0355122 0.12252 0.0356424 0.108555 0.0998793 -0.0035726 0.0355122 0.0998793 -0.0035726 0.108555 0.0651916 -0.0326791 0.0355122 0.0651916 -0.0326791 0.108555 0.0226408 -0.0481663 0.0355122 0.0226408 -0.0481663 0.108555 -0.0226409 -0.0481663 0.0355122 -0.0226409 -0.0481663 0.108555 -0.0226409 -0.0481663 0.108555 -0.0651917 -0.0326791 0.0355122 -0.0651917 -0.0326791 0.0355122 -0.0226409 -0.0481663 0.108555 -0.0998795 -0.0035726 0.0355122 -0.0998795 -0.0035726 + + + + + + + + + + -0.615797 -0.713919 0.333337 -0.615797 0.71392 0.333336 -0.599888 0.784829 0.155496 -0.599887 -0.784829 0.155496 -0.623928 0.780319 0.0426083 0.623928 0.780319 0.0426083 0.529004 0.670107 -0.520684 -0.529004 0.670107 -0.520684 -0.615797 0.71392 0.333336 0.615797 0.71392 0.333336 0.599887 0.784829 0.155496 -0.599888 0.784829 0.155496 -0.645031 0.549632 0.530886 0.645031 0.549632 0.530886 0.647903 0.626722 0.432946 -0.647903 0.626722 0.432946 -0.66837 0.307184 0.677436 0.66837 0.307184 0.677436 0.673416 0.432861 0.599285 -0.673416 0.432861 0.599285 -0.681593 0.100638 0.724777 -0.681593 -0.100637 0.724778 0.681593 -0.100637 0.724778 0.681593 0.100638 0.724777 -0.66837 -0.307183 0.677436 0.66837 -0.307183 0.677436 0.681593 -0.100637 0.724778 -0.681593 -0.100637 0.724778 -0.645031 -0.549632 0.530886 0.645031 -0.549632 0.530886 0.673416 -0.43286 0.599286 -0.673416 -0.43286 0.599286 -0.615797 -0.713919 0.333337 0.615797 -0.713919 0.333337 0.647903 -0.626721 0.432946 -0.647903 -0.626721 0.432946 -0.623928 -0.780319 0.0426086 0.623928 -0.780319 0.0426085 0.599888 -0.784829 0.155496 -0.599887 -0.784829 0.155496 0.623928 0.780319 0.0426083 0.623928 -0.780319 0.0426085 0.529004 -0.670107 -0.520684 0.529004 0.670107 -0.520684 0.529004 -0.670107 -0.520684 -0.529004 -0.670107 -0.520684 -0.529004 0.670107 -0.520684 0.529004 0.670107 -0.520684 -0.623928 0.780319 0.0426083 -0.623928 -0.780319 0.0426086 -0.66837 -0.307183 0.677436 -0.66837 0.307184 0.677436 -0.673416 0.432861 0.599285 -0.673416 -0.43286 0.599286 -0.645031 0.549632 0.530886 -0.645031 -0.549632 0.530886 0.645031 0.549632 0.530886 0.645031 -0.549632 0.530886 0.647903 -0.626721 0.432946 0.647903 0.626722 0.432946 0.615797 -0.713919 0.333337 0.615797 0.71392 0.333336 0.66837 0.307184 0.677436 0.66837 -0.307183 0.677436 0.673416 -0.43286 0.599286 0.673416 0.432861 0.599285 -0.647903 -0.626721 0.432946 -0.647903 0.626722 0.432946 -0.529004 -0.670107 -0.520684 0.529004 -0.670107 -0.520684 0.599887 0.784829 0.155496 0.599888 -0.784829 0.155496 -0.529004 0.670107 -0.520684 -0.529004 -0.670107 -0.520684 -0.681593 -0.100637 0.724778 -0.681593 0.100638 0.724777 0.681593 0.100638 0.724777 0.681593 -0.100637 0.724778 1.13251e-07 -0.941297 -0.33758 1.20481e-07 -1 8.65521e-08 1.20481e-07 -1 8.65521e-08 1.13251e-07 -0.941297 -0.33758 1.78612e-07 -0.941297 0.337581 1.78612e-07 -0.941297 0.337581 1.23248e-07 -0.770125 0.637893 1.23248e-07 -0.770125 0.637893 -6.87461e-10 -0.504265 0.863549 -6.87469e-10 -0.504265 0.863549 -1.44906e-08 -0.175426 0.984493 -1.44906e-08 -0.175426 0.984493 -1.44906e-08 -0.175426 0.984493 2.83399e-08 0.175427 0.984492 2.83399e-08 0.175427 0.984492 -1.44906e-08 -0.175426 0.984493 1.19704e-07 0.504265 0.863549 1.19704e-07 0.504265 0.863549 1.60503e-07 0.770125 0.637892 1.60503e-07 0.770125 0.637892 7.36537e-08 0.941297 0.33758 7.36537e-08 0.941297 0.33758 8.38226e-09 1 -3.14735e-08 8.38226e-09 1 -3.14735e-08 -1.44015e-08 0.941297 -0.337581 -1.44015e-08 0.941297 -0.337581 -2.57354e-08 0.770125 -0.637893 -2.57354e-08 0.770125 -0.637893 2.10588e-08 0.504265 -0.863549 2.10588e-08 0.504265 -0.863549 2.83399e-08 0.175426 -0.984493 2.83399e-08 0.175426 -0.984493 3.39816e-08 -0.175426 -0.984493 3.39816e-08 -0.175426 -0.984493 3.39816e-08 -0.175426 -0.984493 8.96365e-08 -0.504265 -0.863549 8.96365e-08 -0.504265 -0.863549 3.39816e-08 -0.175426 -0.984493 1.21596e-07 -0.770125 -0.637892 1.21596e-07 -0.770125 -0.637892 + + + + + + + + + + -0.627837 0.700228 0.339854 0.627837 0.700228 -0.339855 0.759721 0.619713 -0.196926 -0.759721 0.619713 0.196926 0.781482 0.623 0.0340178 0.781482 -0.623 -0.0340185 0.84862 -0.417725 0.324578 0.84862 0.417724 -0.324579 0.787905 0.557972 0.260523 0.787905 -0.557973 -0.260523 0.800084 -0.588449 -0.116588 0.800084 0.588449 0.116588 0.764157 0.463949 0.448125 0.764156 -0.463949 -0.448125 0.761723 -0.533074 -0.368253 0.761723 0.533074 0.368253 0.743829 0.276021 0.608713 0.743829 -0.276021 -0.608713 0.739264 -0.394305 -0.545905 0.739264 0.394305 0.545905 0.731731 0.0937424 0.675116 0.731731 -0.093742 0.675116 0.731731 0.0937416 -0.675116 0.731731 -0.0937427 -0.675116 0.743829 -0.276021 0.608713 0.743829 0.276021 -0.608713 0.731731 0.0937418 -0.675116 0.731731 -0.0937417 0.675116 0.764156 -0.463949 0.448126 0.764156 0.463949 -0.448125 0.739264 0.394304 -0.545905 0.739264 -0.394304 0.545906 0.787905 -0.557972 0.260524 0.787905 0.557972 -0.260524 0.761723 0.533073 -0.368253 0.761723 -0.533073 0.368254 0.781482 -0.623 0.0340189 0.781482 0.623 -0.0340178 0.800084 0.588449 -0.116588 0.800084 -0.588449 0.116588 0.778506 -0.625382 0.053164 -0.778506 -0.625382 -0.0531654 -0.477578 -0.742264 0.470066 0.477578 -0.742265 -0.470067 0.84862 0.417725 0.324578 0.84862 -0.417724 -0.324579 0.84862 0.417725 -0.324579 0.84862 -0.417724 0.324579 0.778506 0.625382 -0.0531646 -0.778506 0.625381 0.0531645 -0.215743 0.95165 0.218669 0.215743 0.95165 -0.21867 0.323359 0.901461 -0.287764 -0.323359 0.901461 0.287763 0.424379 0.835407 -0.349281 -0.42438 0.835407 0.349281 0.42438 -0.835407 0.349281 -0.424379 -0.835407 -0.349281 -0.521088 -0.779244 -0.348205 0.521088 -0.779243 0.348205 -0.627837 -0.700228 -0.339855 0.627838 -0.700228 0.339854 0.215743 -0.95165 0.21867 -0.215743 -0.951651 -0.218669 -0.323359 -0.901461 -0.287763 0.323359 -0.90146 0.287764 -0.521088 0.779244 0.348205 0.521088 0.779243 -0.348205 0.84862 -0.417725 -0.324578 0.84862 0.417724 0.324579 0.759721 -0.619713 0.196926 -0.759721 -0.619713 -0.196927 0.477578 0.742264 0.470067 -0.477578 0.742264 -0.470067 -0.0689442 0.994923 0.0733116 0.068944 0.994923 -0.0733128 0.068944 -0.994923 0.0733129 -0.0689441 -0.994923 -0.0733116 5.71133e-05 -0.33758 0.941297 6.9531e-05 9.07862e-08 1 6.84762e-05 9.07862e-08 1 5.55595e-05 -0.33758 0.941297 6.13061e-05 0.337581 0.941296 6.13061e-05 0.337581 0.941297 2.93973e-05 0.637893 0.770125 2.83963e-05 0.637893 0.770125 4.2373e-06 0.863549 0.504265 3.73949e-06 0.863549 0.504265 2.24308e-06 0.984493 0.175426 3.24198e-06 0.984493 0.175425 0.00512823 0.98448 0.175423 0.00507103 0.98448 -0.175425 0.00507153 0.98448 -0.175425 0.00512923 0.98448 0.175423 0.00487556 0.863538 -0.504259 0.00487506 0.863539 -0.504259 0.00457403 0.637886 -0.770117 0.00457353 0.637886 -0.770117 0.00430393 0.337577 -0.941288 0.00430288 0.337577 -0.941288 0.00420354 -3.02621e-08 -0.999991 0.00420299 -3.02621e-08 -0.999991 0.00433841 -0.337578 -0.941288 0.00433946 -0.337578 -0.941288 0.00463285 -0.637886 -0.770117 0.00463285 -0.637886 -0.770117 0.00493666 -0.863538 -0.504259 0.00493716 -0.863538 -0.504259 0.00512147 -0.98448 -0.175424 0.00512252 -0.98448 -0.175424 0.00517122 -0.984479 0.175424 0.00517121 -0.984479 0.175424 3.07487e-06 -0.984493 0.175426 3.38583e-06 -0.863549 0.504265 3.38333e-06 -0.863549 0.504265 1.07708e-06 -0.984493 0.175426 2.60095e-05 -0.637892 0.770126 2.65116e-05 -0.637892 0.770126 + + + + + + + + + + -0.476041 -2.83122e-07 -0.879423 -0.47604 -2.83122e-07 -0.879423 -0.250916 -1.93715e-07 -0.968009 -0.250916 -2.5332e-07 -0.968009 -2.08616e-07 0.0545223 -0.998513 -3.11062e-07 0.0545227 -0.998513 -1.49012e-07 -0.613566 -0.789644 -2.38419e-07 -0.613566 -0.789644 1.19209e-07 0.423067 -0.906098 4.47035e-08 0.423067 -0.906099 -1.71363e-07 0.194349 -0.980932 5.21541e-08 0.194349 -0.980932 0 0.694734 -0.719267 1.49012e-07 0.694734 -0.719267 1.19209e-07 0.568377 -0.822768 1.04308e-07 0.568377 -0.822768 8.9407e-08 0.910742 -0.412976 1.49012e-08 0.910742 -0.412977 0 0.810651 -0.58553 2.98023e-08 0.810651 -0.58553 1.2666e-07 0.990497 -0.137534 1.19209e-07 0.990497 0.137533 8.19564e-08 0.990497 0.137533 8.19564e-08 0.990497 -0.137535 -1.49012e-08 0.910742 0.412976 -8.9407e-08 0.910742 0.412976 -5.96046e-08 0.990497 0.137533 -7.45058e-08 0.990497 0.137533 -1.04308e-07 0.694735 0.719266 -2.98023e-08 0.694735 0.719266 -5.96046e-08 0.810652 0.585529 -1.49012e-08 0.810652 0.585529 -1.78814e-07 0.423068 0.906098 -7.45058e-08 0.423068 0.906098 -4.47035e-08 0.568378 0.822768 -1.04308e-07 0.568378 0.822768 -4.71249e-07 0.0545232 0.998512 -3.63216e-07 0.0545225 0.998513 -2.08616e-07 0.19435 0.980932 -3.72529e-07 0.19435 0.980932 0.0681314 2.6077e-07 -0.997676 0.0681326 4.32134e-07 -0.997676 -0.70148 3.42727e-07 -0.712689 -0.70148 2.38419e-07 -0.712689 -1.19209e-07 0.613566 -0.789644 -1.19209e-07 0.613566 -0.789644 -1.19209e-07 0.613566 0.789644 -8.9407e-08 0.613566 0.789644 -0.0681318 -1.08033e-07 -0.997676 -0.0681319 -1.67638e-07 -0.997676 -0.711854 -4.32134e-07 -0.702328 -0.711854 -4.02331e-07 -0.702328 -0.664794 -4.76837e-07 -0.747027 -0.664794 -4.47035e-07 -0.747027 -0.635482 -3.42727e-07 -0.772116 -0.635482 -4.32134e-07 -0.772116 0.635482 -2.08616e-07 -0.772116 0.635482 -1.04308e-07 -0.772116 0.555598 1.04308e-07 -0.831451 0.555598 -1.19209e-07 -0.831451 0.476041 1.49012e-07 -0.879423 0.47604 1.19209e-07 -0.879424 0.711854 -4.32134e-07 -0.702328 0.711854 -4.32134e-07 -0.702328 0.664794 -1.49012e-07 -0.747027 0.664793 -4.47035e-07 -0.747027 -0.555598 -3.57628e-07 -0.831451 -0.555598 -2.38419e-07 -0.831451 -4.02331e-07 -0.613565 0.789644 -2.38419e-07 -0.613566 0.789644 0.250916 1.41561e-07 -0.968009 0.250917 2.01166e-07 -0.968009 0.70148 0 -0.712689 0.70148 -7.45058e-08 -0.712689 -0.728476 -5.17815e-07 -0.685071 -0.728476 -4.28408e-07 -0.685071 0.728476 -5.10365e-07 -0.685071 0.728476 -4.20958e-07 -0.685071 -1 -1.93869e-05 5.37224e-05 -1 -1.20475e-07 6.9531e-05 -1 -1.20475e-07 6.84762e-05 -1 -1.88624e-05 5.22597e-05 -1 2.05276e-05 5.77675e-05 -1 2.05276e-05 5.77675e-05 -1 1.86574e-05 2.27182e-05 -1 1.80189e-05 2.19473e-05 -1 3.65947e-06 2.13613e-06 -1 3.22958e-06 1.8851e-06 -1 2.21084e-06 3.79228e-07 -1 3.19424e-06 5.5446e-07 -0.999987 0.00504871 0.000899609 -0.999987 0.0049924 -0.000889567 -0.999987 0.00499289 -0.000889655 -0.999987 0.00504969 0.000899784 -0.999988 0.00421034 -0.00245847 -0.999988 0.00420991 -0.00245822 -0.99999 0.00291786 -0.00352248 -0.99999 0.00291755 -0.00352209 -0.999991 0.00145299 -0.00405125 -0.999991 0.00145264 -0.00405026 -0.999991 8.24989e-09 -0.00420354 -0.999991 8.2499e-09 -0.00420299 -0.999991 -0.00146458 -0.00408373 -0.999991 -0.00146493 -0.00408472 -0.999989 -0.00295528 -0.00356786 -0.999989 -0.00295528 -0.00356786 -0.999988 -0.00426304 -0.00248941 -0.999988 -0.00426347 -0.00248966 -0.999987 -0.00504204 -0.000898467 -0.999987 -0.00504308 -0.000898652 -0.999987 -0.00509103 0.000907132 -0.999987 -0.00509103 0.000907132 -1 -3.03315e-06 5.05957e-07 -1 -2.96903e-06 1.62995e-06 -1 -2.96687e-06 1.62869e-06 -1 -1.06634e-06 1.55493e-07 -1 -1.66849e-05 1.9953e-05 -1 -1.70052e-05 2.03397e-05 + + + + + + + + + + 0.531904 0.0869479 0.84283 0.086948 0.854518 0.115798 0.520217 0.115797 0.0005 0.69042 0.499363 0.69042 0.499363 0.754342 0.0005 0.754342 0.000500143 0.572328 0.499363 0.572328 0.499363 0.603298 0.0005 0.603298 0.000500238 0.509806 0.499363 0.509806 0.499363 0.540926 0.000500143 0.540926 0.000500238 0.448287 0.499363 0.448288 0.499363 0.478686 0.000500238 0.478686 0.000500238 0.416377 0.000500238 0.354579 0.499363 0.354579 0.499363 0.416378 0.500637 0.961603 0.9995 0.961603 0.9995 0.993514 0.500637 0.993514 0.500637 0.900083 0.9995 0.900083 0.9995 0.931204 0.500637 0.931204 0.500637 0.83756 0.9995 0.83756 0.9995 0.868962 0.500637 0.868962 0.500637 0.719469 0.9995 0.719469 0.9995 0.80659 0.500637 0.80659 0.503331 0.582263 0.853825 0.582263 0.856518 0.646128 0.500637 0.646128 0.508175 0.0005 0.004926 0.000500024 0.004926 0.351996 0.508175 0.351996 0.862552 0.202638 0.512182 0.202638 0.625378 0.00763263 0.749356 0.00763263 0.776306 0.0217934 0.598428 0.0217934 0.802345 0.0389979 0.57239 0.0389979 0.56356 0.4193 0.793596 0.4193 0.814888 0.441995 0.542267 0.441995 0.834096 0.466836 0.52306 0.466836 0.616567 0.388228 0.740589 0.388228 0.767548 0.402272 0.589607 0.402272 0.551105 0.0619001 0.82363 0.0619001 0.500637 0.655547 0.9995 0.655547 0.511368 0.495514 0.845787 0.495513 0.865245 0.266523 0.509489 0.266523 0.656479 0.0005 0.718255 0.0005 0.647679 0.381135 0.709477 0.381135 0.2275 0.823737 0.265754 0.823739 0.26575 0.884966 0.227497 0.884964 0.304008 0.823742 0.304005 0.884969 0.344366 0.823744 0.344364 0.884971 0.38775 0.823744 0.38775 0.884971 0.433633 0.823744 0.433633 0.884971 0.00075083 0.757345 0.0475821 0.757536 0.0473315 0.818762 0.0005 0.818571 0.0934641 0.757724 0.0932138 0.81895 0.136849 0.757901 0.136599 0.819127 0.177208 0.758066 0.176957 0.819292 0.215463 0.758223 0.215211 0.819448 0.253717 0.75838 0.253465 0.819606 0.294076 0.758547 0.293823 0.819773 0.337462 0.758726 0.337209 0.819952 0.383344 0.758916 0.383091 0.820142 0.430175 0.759109 0.429922 0.820335 0.0978718 0.823735 0.143754 0.823735 0.143754 0.884962 0.0978718 0.884962 0.18714 0.823735 0.187139 0.884962 + + + + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 +

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

+
+
+
+ + + + -0.822919 0.0340075 0.113445 -0.828383 -2.89195e-08 0.121075 -0.737901 -2.89098e-08 0.151359 -0.736132 0.0346294 0.142655 -0.807992 0.0589027 0.0925998 -0.731299 0.0599799 0.118874 -0.787601 0.068015 0.0641249 -0.724697 0.0692589 0.0863903 -0.76721 0.0589027 0.0356499 -0.718096 0.0599799 0.0539061 -0.752283 0.0340075 0.0148048 -0.713263 0.0346294 0.0301261 -0.746819 -3.48656e-08 0.007175 -0.711494 -3.49646e-08 0.021422 -0.713263 -0.0346295 0.0301261 -0.752283 -0.0340075 0.0148048 -0.746819 -3.48656e-08 0.007175 -0.711494 -3.49646e-08 0.021422 -0.718096 -0.05998 0.0539062 -0.76721 -0.0589028 0.0356499 -0.724697 -0.0692589 0.0863903 -0.787601 -0.068015 0.0641249 -0.731299 -0.05998 0.118874 -0.807992 -0.0589028 0.0925998 -0.736132 -0.0346295 0.142655 -0.822919 -0.0340075 0.113445 -0.737901 -2.89098e-08 0.151359 -0.828383 -2.89195e-08 0.121075 -0.655989 0.0366397 0.156749 -0.656293 -2.88783e-08 0.166561 -0.655158 0.0634618 0.129939 -0.654023 0.0732793 0.0933172 -0.652888 0.0634618 0.056695 -0.652057 0.0366397 0.0298858 -0.651752 -3.52846e-08 0.020073 -0.651752 -3.52846e-08 0.020073 -0.652057 -0.0366397 0.0298858 -0.652888 -0.0634618 0.0566951 -0.654023 -0.0732794 0.0933172 -0.655158 -0.0634618 0.129939 -0.655989 -0.0366397 0.156749 -0.656293 -2.88783e-08 0.166561 -0.959869 0.0324383 -0.0306028 -0.969897 -2.88383e-08 -0.027669 -0.94315 -2.89128e-08 0.0177037 -0.933877 0.0334448 0.0132535 -0.932474 0.0561848 -0.0386169 -0.908551 0.0578972 0.00110188 -0.895065 0.0648766 -0.0495603 -0.873979 0.0667952 -0.0154795 -0.857673 0.0561848 -0.0604965 -0.839442 0.0577812 -0.0320361 -0.830315 0.0324383 -0.0684949 -0.814189 0.0333245 -0.0441391 -0.820305 -3.451e-08 -0.0714203 -0.804952 -3.47282e-08 -0.0485658 -0.814189 -0.0333246 -0.0441391 -0.830315 -0.0324383 -0.0684949 -0.820305 -3.451e-08 -0.0714203 -0.804952 -3.47282e-08 -0.0485658 -0.839442 -0.0577812 -0.0320361 -0.857673 -0.0561848 -0.0604965 -0.873979 -0.0667952 -0.0154795 -0.895065 -0.0648766 -0.0495603 -0.908551 -0.0578972 0.00110188 -0.932474 -0.0561848 -0.0386169 -0.933877 -0.0334448 0.0132535 -0.959869 -0.0324383 -0.0306028 -0.94315 -2.89128e-08 0.0177037 -0.969897 -2.88383e-08 -0.027669 -0.989413 0.0313856 -0.150325 -0.999402 -2.87684e-08 -0.150325 -0.997318 -2.88989e-08 -0.118602 -0.987322 0.0314138 -0.119349 -0.962123 0.0543558 -0.150325 -0.960008 0.0544099 -0.121387 -0.924851 0.0627542 -0.150325 -0.922689 0.062826 -0.124163 -0.887588 0.0543358 -0.150325 -0.88536 0.0544072 -0.126928 -0.860317 0.0313653 -0.150325 -0.858027 0.0314111 -0.128941 -0.850338 -3.42533e-08 -0.150325 -0.848021 -3.43886e-08 -0.129675 -0.858027 -0.0314111 -0.128941 -0.860317 -0.0313653 -0.150325 -0.850338 -3.42533e-08 -0.150325 -0.848021 -3.43886e-08 -0.129675 -0.88536 -0.0544073 -0.126928 -0.887588 -0.0543359 -0.150325 -0.922689 -0.0628261 -0.124163 -0.924851 -0.0627543 -0.150325 -0.960008 -0.05441 -0.121387 -0.962123 -0.0543558 -0.150325 -0.987322 -0.0314139 -0.119349 -0.989413 -0.0313856 -0.150325 -0.997318 -2.88989e-08 -0.118602 -0.999402 -2.87684e-08 -0.150325 -0.977172 -2.86411e-08 -0.266937 -0.995849 -2.8742e-08 -0.210656 -0.985523 0.0318075 -0.209494 -0.967354 0.0328778 -0.263847 -0.957318 0.0550922 -0.206322 -0.940551 0.0568609 -0.255411 -0.918812 0.0636149 -0.201993 -0.903985 0.0655108 -0.243887 -0.88034 0.0550922 -0.197676 -0.867458 0.0565983 -0.232332 -0.852204 0.0318075 -0.194526 -0.840687 0.0326245 -0.223792 -0.841912 -3.43034e-08 -0.193377 -0.830847 -3.43585e-08 -0.220623 -0.840687 -0.0326246 -0.223792 -0.830847 -3.43585e-08 -0.220623 -0.841912 -3.43034e-08 -0.193377 -0.852204 -0.0318075 -0.194526 -0.867458 -0.0565984 -0.232332 -0.88034 -0.0550922 -0.197676 -0.903985 -0.0655109 -0.243887 -0.918812 -0.063615 -0.201993 -0.940551 -0.056861 -0.255411 -0.957318 -0.0550922 -0.206322 -0.967354 -0.0328778 -0.263847 -0.985523 -0.0318075 -0.209494 -0.977172 -2.86411e-08 -0.266937 -0.995849 -2.8742e-08 -0.210656 -1 -2.87452e-08 -0.180712 -0.999402 -2.87684e-08 -0.150325 -0.989413 0.0313856 -0.150325 -0.989829 0.031477 -0.180128 -0.962123 0.0543558 -0.150325 -0.962051 0.0545159 -0.178533 -0.924851 0.0627542 -0.150325 -0.924127 0.0629416 -0.176356 -0.887588 0.0543358 -0.150325 -0.886245 0.0544986 -0.174184 -0.860317 0.0313653 -0.150325 -0.858559 0.0314572 -0.172605 -0.850338 -3.42533e-08 -0.150325 -0.848442 -3.42457e-08 -0.172032 -0.858559 -0.0314572 -0.172605 -0.848442 -3.42457e-08 -0.172032 -0.850338 -3.42533e-08 -0.150325 -0.860317 -0.0313653 -0.150325 -0.886245 -0.0544987 -0.174185 -0.887588 -0.0543359 -0.150325 -0.924127 -0.0629417 -0.176356 -0.924851 -0.0627543 -0.150325 -0.962051 -0.054516 -0.178533 -0.962123 -0.0543558 -0.150325 -0.989829 -0.031477 -0.180128 -0.989413 -0.0313856 -0.150325 -1 -2.87452e-08 -0.180712 -0.999402 -2.87684e-08 -0.150325 -0.780206 -2.89129e-08 -0.427322 -0.820056 -2.89071e-08 -0.417113 -0.816541 0.0347948 -0.409043 -0.7788 0.0344248 -0.418587 -0.806925 0.0602314 -0.386986 -0.774952 0.0596058 -0.394716 -0.793757 0.0694828 -0.356825 -0.769676 0.0687897 -0.362084 -0.780535 0.060101 -0.326616 -0.764365 0.0595334 -0.329413 -0.770809 0.0346607 -0.30446 -0.760436 0.0343508 -0.305454 -0.767236 -3.49669e-08 -0.296339 -0.758982 -3.49189e-08 -0.296672 -0.767236 -3.49669e-08 -0.296339 -0.770809 -0.0346607 -0.30446 -0.760436 -0.0343509 -0.305454 -0.758982 -3.49189e-08 -0.296672 -0.780535 -0.0601011 -0.326617 -0.764365 -0.0595335 -0.329413 -0.793757 -0.0694829 -0.356825 -0.769676 -0.0687897 -0.362084 -0.806925 -0.0602315 -0.386986 -0.774952 -0.0596058 -0.394716 -0.816541 -0.0347949 -0.409043 -0.7788 -0.0344248 -0.418587 -0.820056 -2.89071e-08 -0.417113 -0.780206 -2.89129e-08 -0.427322 -0.859968 -2.88926e-08 -0.399672 -0.854684 0.0350178 -0.392113 -0.840239 0.0606041 -0.37144 -0.820475 0.069887 -0.343129 -0.800663 0.0604249 -0.314675 -0.786111 0.0348399 -0.29366 -0.780768 -3.49729e-08 -0.285882 -0.780768 -3.49729e-08 -0.285882 -0.786111 -0.03484 -0.29366 -0.800663 -0.0604249 -0.314675 -0.820475 -0.0698871 -0.343129 -0.840239 -0.0606041 -0.37144 -0.854684 -0.0350178 -0.392113 -0.859968 -2.88926e-08 -0.399672 -0.740107 0.0340075 -0.425258 -0.739388 -2.89195e-08 -0.434614 -0.742071 0.0589027 -0.399694 -0.744754 0.068015 -0.364774 -0.747437 0.0589027 -0.329854 -0.749401 0.0340075 -0.304291 -0.75012 -3.48656e-08 -0.294934 -0.749402 -0.0340075 -0.304291 -0.75012 -3.48656e-08 -0.294934 -0.747437 -0.0589028 -0.329854 -0.744754 -0.068015 -0.364774 -0.742071 -0.0589028 -0.399694 -0.740107 -0.0340075 -0.425258 -0.739388 -2.89195e-08 -0.434614 -0.906938 -2.88196e-08 -0.363216 -0.944837 -2.87242e-08 -0.316923 -0.936149 0.0335453 -0.312182 -0.899622 0.0346987 -0.356968 -0.912424 0.0580216 -0.299221 -0.879628 0.0600398 -0.339886 -0.880033 0.066862 -0.281483 -0.852288 0.0692293 -0.316503 -0.847619 0.0577875 -0.263643 -0.824851 0.0598774 -0.293 -0.823768 0.0333298 -0.250408 -0.804572 0.0345595 -0.275609 -0.814952 -3.45651e-08 -0.245482 -0.797037 -3.48721e-08 -0.269159 -0.814952 -3.45651e-08 -0.245482 -0.823768 -0.0333299 -0.250408 -0.804572 -0.0345596 -0.275609 -0.797037 -3.48721e-08 -0.269159 -0.847619 -0.0577875 -0.263643 -0.824851 -0.0598775 -0.293 -0.880033 -0.066862 -0.281483 -0.852288 -0.0692294 -0.316503 -0.912424 -0.0580216 -0.299221 -0.879628 -0.0600399 -0.339886 -0.936149 -0.0335453 -0.312182 -0.899622 -0.0346988 -0.356968 -0.944837 -2.87242e-08 -0.316923 -0.906938 -2.88196e-08 -0.363216 -0.90099 0.0337907 0.0518288 -0.909161 -2.89324e-08 0.0575392 -0.87208 -2.89349e-08 0.0937755 -0.865144 0.0339562 0.0869418 -0.878673 0.0584964 0.0362318 -0.8462 0.0587928 0.0682735 -0.848205 0.0674867 0.0149367 -0.820328 0.0678471 0.0427747 -0.817764 0.0583785 -0.00634688 -0.794466 0.0587098 0.0172752 -0.7955 0.0336676 -0.021925 -0.77554 0.0338688 -0.00139977 -0.787355 -3.48086e-08 -0.0276287 -0.768612 -3.48504e-08 -0.00823987 -0.77554 -0.0338689 -0.00139977 -0.7955 -0.0336677 -0.021925 -0.787355 -3.48086e-08 -0.0276287 -0.768612 -3.48504e-08 -0.00823987 -0.794467 -0.0587099 0.0172752 -0.817764 -0.0583785 -0.00634687 -0.820328 -0.0678471 0.0427747 -0.848205 -0.0674868 0.0149367 -0.8462 -0.0587928 0.0682735 -0.878673 -0.0584965 0.0362318 -0.865144 -0.0339562 0.0869418 -0.90099 -0.0337907 0.0518288 -0.87208 -2.89349e-08 0.0937755 -0.909161 -2.89324e-08 0.0575392 -0.980854 0.0316558 -0.0889889 -0.990904 -2.89968e-08 -0.0874867 -0.953395 0.0548317 -0.0930874 -0.915883 0.0633176 -0.09867 -0.87837 0.0548375 -0.104229 -0.85091 0.0316617 -0.108278 -0.840859 -3.45291e-08 -0.109755 -0.85091 -0.0316618 -0.108278 -0.840859 -3.45291e-08 -0.109755 -0.87837 -0.0548375 -0.104229 -0.915883 -0.0633177 -0.09867 -0.953395 -0.0548318 -0.0930874 -0.980854 -0.0316559 -0.0889889 -0.990904 -2.89968e-08 -0.0874867 -0.668536 0.145203 0.0301246 -0.668536 0.154522 0.0829743 -0.577027 0.154522 0.0829743 -0.577027 0.145203 0.0301246 -0.668536 0.118371 -0.0163507 -0.577027 0.118371 -0.0163507 -0.668536 0.077261 -0.0508458 -0.577027 0.077261 -0.0508458 -0.668536 0.0268324 -0.0692004 -0.577027 0.0268325 -0.0692004 -0.668536 -0.0268325 -0.0692004 -0.577027 -0.0268325 -0.0692004 -0.668536 -0.0772611 -0.0508458 -0.577027 -0.0772611 -0.0508458 -0.668536 -0.118371 -0.0163507 -0.577027 -0.118371 -0.0163507 -0.668536 -0.145203 0.0301246 -0.577027 -0.145203 0.0301246 -0.668536 -0.154522 0.0829743 -0.577027 -0.154522 0.0829743 -0.668536 -0.145203 0.135824 -0.668536 -0.154522 0.0829743 -0.577027 -0.154522 0.0829743 -0.577027 -0.145203 0.135824 -0.668536 -0.118371 0.182299 -0.577027 -0.118371 0.182299 -0.668536 -0.0772612 0.216794 -0.577027 -0.0772612 0.216794 -0.668536 -0.0268326 0.235149 -0.577027 -0.0268326 0.235149 -0.668536 0.0268324 0.235149 -0.577027 0.0268324 0.235149 -0.668536 0.077261 0.216794 -0.577027 0.077261 0.216794 -0.668536 0.118371 0.182299 -0.577027 0.118371 0.182299 -0.668536 0.145203 0.135824 -0.577027 0.145203 0.135824 -0.668536 0.154522 0.0829743 -0.577027 0.154522 0.0829743 -0.699235 0.013163 0.166893 -0.699235 0.0379018 0.157889 -0.699235 0.0580689 0.140967 -0.699235 0.0712321 0.118168 -0.699235 0.0758037 0.0922412 -0.699235 0.0712322 0.0663148 -0.699235 0.058069 0.0435155 -0.699235 0.0379018 0.0265932 -0.699235 0.0131631 0.0175891 -0.699235 -0.0131633 0.0175891 -0.699235 -0.037902 0.0265932 -0.699236 -0.0580692 0.0435155 -0.699236 -0.0712324 0.0663148 -0.699236 -0.0758039 0.0922412 -0.699236 -0.0712324 0.118168 -0.699236 -0.0580692 0.140967 -0.699235 -0.037902 0.157889 -0.699235 -0.0131633 0.166893 -0.562261 0.139146 0.0829743 -0.562261 0.130754 0.0353836 -0.562261 0.130754 0.130565 -0.562261 0.139146 0.0829743 -0.562261 0.106592 0.172416 -0.562261 0.0695728 0.203478 -0.562261 0.0241623 0.220006 -0.562261 -0.0241625 0.220006 -0.562261 -0.069573 0.203478 -0.562261 -0.106592 0.172415 -0.562261 -0.130754 0.130565 -0.562261 -0.139146 0.0829743 -0.562261 -0.130754 0.0353836 -0.562261 -0.139146 0.0829743 -0.562261 -0.106592 -0.00646697 -0.562261 -0.069573 -0.0375296 -0.562261 -0.0241625 -0.0540577 -0.562261 0.0241624 -0.0540577 -0.562261 0.0695729 -0.0375296 -0.562261 0.106592 -0.00646697 -0.68454 0.130754 0.0353836 -0.68454 0.139146 0.0829743 -0.668536 0.154522 0.0829743 -0.668536 0.145203 0.0301246 -0.68454 0.106592 -0.00646697 -0.668536 0.118371 -0.0163507 -0.68454 0.0695729 -0.0375296 -0.668536 0.077261 -0.0508458 -0.68454 0.0241624 -0.0540577 -0.668536 0.0268324 -0.0692004 -0.68454 -0.0241625 -0.0540577 -0.668536 -0.0268325 -0.0692004 -0.68454 -0.069573 -0.0375296 -0.668536 -0.0772611 -0.0508458 -0.68454 -0.106592 -0.00646697 -0.668536 -0.118371 -0.0163507 -0.68454 -0.130754 0.0353836 -0.668536 -0.145203 0.0301246 -0.68454 -0.139146 0.0829743 -0.668536 -0.154522 0.0829743 -0.68454 -0.130754 0.130565 -0.668536 -0.145203 0.135824 -0.68454 -0.106592 0.172415 -0.668536 -0.118371 0.182299 -0.68454 -0.069573 0.203478 -0.668536 -0.0772612 0.216794 -0.68454 -0.0241625 0.220006 -0.668536 -0.0268326 0.235149 -0.68454 0.0241623 0.220006 -0.668536 0.0268324 0.235149 -0.68454 0.0695728 0.203478 -0.668536 0.077261 0.216794 -0.68454 0.106592 0.172416 -0.668536 0.118371 0.182299 -0.68454 0.130754 0.130565 -0.668536 0.145203 0.135824 -0.68454 0.0815698 0.0625522 -0.68454 0.0868048 0.0922412 -0.68454 0.0664963 0.0364442 -0.68454 0.0434024 0.0170661 -0.68454 0.0150735 0.00675517 -0.68454 -0.0150735 0.00675517 -0.68454 -0.0434024 0.0170661 -0.68454 -0.0664964 0.0364442 -0.68454 -0.0815699 0.0625522 -0.68454 -0.0868049 0.0922412 -0.68454 -0.0815699 0.12193 -0.68454 -0.0664964 0.148038 -0.68454 -0.0434025 0.167416 -0.68454 -0.0150736 0.177727 -0.68454 0.0150734 0.177727 -0.68454 0.0434023 0.167416 -0.68454 0.0664963 0.148038 -0.68454 0.0815698 0.12193 -0.687603 0.0882797 0.0925085 -0.68454 0.0868048 0.0922412 -0.68454 0.0815698 0.0625522 -0.687603 0.0830335 0.0622721 -0.68454 0.0664963 0.0364442 -0.687603 0.0677375 0.0356442 -0.68454 0.0434024 0.0170661 -0.687603 0.0442333 0.015861 -0.68454 0.0150735 0.00675517 -0.687603 0.0153656 0.00532873 -0.68454 -0.0150735 0.00675517 -0.687603 -0.0153657 0.00532873 -0.68454 -0.0434024 0.0170661 -0.687603 -0.0442334 0.015861 -0.68454 -0.0664964 0.0364442 -0.687603 -0.0677376 0.0356442 -0.68454 -0.0815699 0.0625522 -0.687603 -0.0830336 0.0622721 -0.68454 -0.0868049 0.0922412 -0.687603 -0.0882798 0.0925085 -0.68454 -0.0815699 0.12193 -0.687603 -0.0828631 0.122686 -0.68454 -0.0664964 0.148038 -0.687603 -0.0674705 0.149159 -0.68454 -0.0434025 0.167416 -0.687603 -0.0439922 0.168757 -0.68454 -0.0150736 0.177727 -0.687603 -0.0152687 0.179164 -0.68454 0.0150734 0.177727 -0.687603 0.0152686 0.179164 -0.68454 0.0434023 0.167416 -0.687603 0.043992 0.168757 -0.68454 0.0664963 0.148038 -0.687603 0.0674703 0.149159 -0.68454 0.0815698 0.12193 -0.687603 0.082863 0.122686 -0.691888 0.0868047 0.0922412 -0.691888 0.0815698 0.0625522 -0.696324 0.0783376 0.0637286 -0.696324 0.0833652 0.0922412 -0.691888 0.0664963 0.0364442 -0.696324 0.0638614 0.0386551 -0.691888 0.0434023 0.0170661 -0.696324 0.0416825 0.0200448 -0.691888 0.0150734 0.00675517 -0.696324 0.0144761 0.0101425 -0.691888 -0.0150736 0.00675517 -0.696324 -0.0144763 0.0101425 -0.691888 -0.0434025 0.0170661 -0.696324 -0.0416827 0.0200448 -0.691888 -0.0664964 0.0364442 -0.696324 -0.0638616 0.0386551 -0.691888 -0.0815699 0.0625522 -0.696324 -0.0783378 0.0637286 -0.691888 -0.0868049 0.0922412 -0.696324 -0.0833654 0.0922412 -0.691888 -0.0815699 0.12193 -0.696324 -0.0783378 0.120754 -0.691888 -0.0664965 0.148038 -0.696324 -0.0638616 0.145827 -0.691888 -0.0434025 0.167416 -0.696324 -0.0416827 0.164438 -0.691888 -0.0150736 0.177727 -0.696324 -0.0144763 0.17434 -0.691888 0.0150734 0.177727 -0.696324 0.0144761 0.17434 -0.691888 0.0434023 0.167416 -0.696324 0.0416825 0.164438 -0.691888 0.0664962 0.148038 -0.696324 0.0638614 0.145827 -0.691888 0.0815697 0.12193 -0.696324 0.0783376 0.120754 -0.579906 0.0896003 -0.432296 -0.579906 0.109911 -0.397116 -0.579906 0.116965 -0.357112 -0.579906 0.109911 -0.317108 -0.579906 0.0896003 -0.281928 -0.579906 0.0584824 -0.255817 -0.579906 0.0203107 -0.241924 -0.579906 -0.0203108 -0.241924 -0.579906 -0.0584825 -0.255817 -0.579906 -0.0896004 -0.281928 -0.579906 -0.109911 -0.317108 -0.579906 -0.116965 -0.357112 -0.579906 -0.109911 -0.397116 -0.579906 -0.0896004 -0.432296 -0.579906 -0.0584825 -0.458407 -0.579906 -0.0203108 -0.4723 -0.579906 0.0203107 -0.4723 -0.579906 0.0584824 -0.458407 -0.729922 0.181729 -0.423256 -0.729922 0.193392 -0.357112 -0.615394 0.193392 -0.357112 -0.615394 0.181729 -0.423256 -0.729922 0.148147 -0.481422 -0.615394 0.148147 -0.481422 -0.729922 0.0966961 -0.524595 -0.615394 0.0966961 -0.524595 -0.729922 0.0335822 -0.547566 -0.615394 0.0335822 -0.547566 -0.729922 -0.0335823 -0.547566 -0.615394 -0.0335823 -0.547566 -0.729922 -0.0966962 -0.524595 -0.615394 -0.0966961 -0.524595 -0.729922 -0.148147 -0.481422 -0.615394 -0.148147 -0.481422 -0.729922 -0.181729 -0.423256 -0.615394 -0.181729 -0.423256 -0.729922 -0.193392 -0.357112 -0.615394 -0.193392 -0.357112 -0.729922 -0.181729 -0.290968 -0.729922 -0.193392 -0.357112 -0.615394 -0.193392 -0.357112 -0.615394 -0.181729 -0.290968 -0.729922 -0.148147 -0.232802 -0.615394 -0.148147 -0.232802 -0.729922 -0.0966962 -0.189629 -0.615394 -0.0966962 -0.189629 -0.729922 -0.0335823 -0.166658 -0.615394 -0.0335823 -0.166658 -0.729922 0.0335821 -0.166658 -0.615394 0.0335821 -0.166658 -0.729922 0.096696 -0.189629 -0.615394 0.096696 -0.189629 -0.729922 0.148147 -0.232802 -0.615394 0.148147 -0.232802 -0.729922 0.181729 -0.290968 -0.615394 0.181729 -0.290968 -0.729922 0.193392 -0.357112 -0.615394 0.193392 -0.357112 -0.75795 0.00999177 -0.308834 -0.75795 0.0287703 -0.315669 -0.75795 0.0440787 -0.328514 -0.75795 0.0540705 -0.345821 -0.75795 0.0575407 -0.365501 -0.75795 0.0540706 -0.385181 -0.75795 0.0440787 -0.402487 -0.75795 0.0287703 -0.415333 -0.75795 0.00999179 -0.422168 -0.75795 -0.00999189 -0.422168 -0.75795 -0.0287704 -0.415333 -0.75795 -0.0440788 -0.402487 -0.75795 -0.0540706 -0.385181 -0.75795 -0.0575408 -0.365501 -0.75795 -0.0540706 -0.345821 -0.75795 -0.0440788 -0.328515 -0.75795 -0.0287704 -0.315669 -0.75795 -0.0099919 -0.308834 -0.596912 0.174148 -0.357112 -0.596912 0.163646 -0.416674 -0.615394 0.181729 -0.423256 -0.615394 0.193392 -0.357112 -0.596912 0.163646 -0.29755 -0.615394 0.181729 -0.290968 -0.596912 0.133405 -0.245172 -0.615394 0.148147 -0.232802 -0.596912 0.0870739 -0.206295 -0.615394 0.096696 -0.189629 -0.596912 0.0302404 -0.18561 -0.615394 0.0335821 -0.166658 -0.596912 -0.0302406 -0.18561 -0.615394 -0.0335823 -0.166658 -0.596912 -0.0870741 -0.206295 -0.615394 -0.0966962 -0.189629 -0.596912 -0.133405 -0.245172 -0.615394 -0.148147 -0.232802 -0.596912 -0.163646 -0.29755 -0.615394 -0.181729 -0.290968 -0.596912 -0.174148 -0.357112 -0.615394 -0.193392 -0.357112 -0.596912 -0.163646 -0.416674 -0.615394 -0.181729 -0.423256 -0.596912 -0.133405 -0.469052 -0.615394 -0.148147 -0.481422 -0.596912 -0.087074 -0.507929 -0.615394 -0.0966961 -0.524595 -0.596912 -0.0302405 -0.528614 -0.615394 -0.0335823 -0.547566 -0.596912 0.0302404 -0.528614 -0.615394 0.0335822 -0.547566 -0.596912 0.087074 -0.507929 -0.615394 0.0966961 -0.524595 -0.596912 0.133405 -0.469052 -0.615394 0.148147 -0.481422 -0.749951 0.163646 -0.416674 -0.749951 0.174148 -0.357112 -0.729922 0.193392 -0.357112 -0.729922 0.181729 -0.423256 -0.749951 0.133405 -0.469052 -0.729922 0.148147 -0.481422 -0.749951 0.087074 -0.507929 -0.729922 0.0966961 -0.524595 -0.749951 0.0302404 -0.528614 -0.729922 0.0335822 -0.547566 -0.749951 -0.0302405 -0.528614 -0.729922 -0.0335823 -0.547566 -0.749951 -0.0870741 -0.507929 -0.729922 -0.0966962 -0.524595 -0.749951 -0.133405 -0.469052 -0.729922 -0.148147 -0.481422 -0.749951 -0.163646 -0.416674 -0.729922 -0.181729 -0.423256 -0.749951 -0.174148 -0.357112 -0.729922 -0.193392 -0.357112 -0.749951 -0.163646 -0.29755 -0.729922 -0.181729 -0.290968 -0.749951 -0.133405 -0.245172 -0.729922 -0.148147 -0.232802 -0.749951 -0.0870741 -0.206295 -0.729922 -0.0966962 -0.189629 -0.749951 -0.0302406 -0.18561 -0.729922 -0.0335823 -0.166658 -0.749951 0.0302404 -0.18561 -0.729922 0.0335821 -0.166658 -0.749951 0.0870739 -0.206295 -0.729922 0.096696 -0.189629 -0.749951 0.133405 -0.245172 -0.729922 0.148147 -0.232802 -0.749951 0.163646 -0.29755 -0.729922 0.181729 -0.290968 -0.596912 0.116965 -0.357112 -0.596912 0.109911 -0.397116 -0.596912 0.109911 -0.317108 -0.596912 0.0896003 -0.281928 -0.596912 0.0584824 -0.255817 -0.596912 0.0203107 -0.241924 -0.596912 -0.0203108 -0.241924 -0.596912 -0.0584825 -0.255817 -0.596912 -0.0896004 -0.281928 -0.596912 -0.109911 -0.317108 -0.596912 -0.116965 -0.357112 -0.596912 -0.109911 -0.397116 -0.596912 -0.0896004 -0.432296 -0.596912 -0.0584825 -0.458407 -0.596912 -0.0203108 -0.4723 -0.596912 0.0203107 -0.4723 -0.596912 0.0584824 -0.458407 -0.596912 0.0896003 -0.432296 -0.593434 0.114711 -0.397475 -0.596912 0.109911 -0.397116 -0.596912 0.116965 -0.357112 -0.593434 0.122073 -0.357112 -0.596912 0.109911 -0.317108 -0.593434 0.114711 -0.316749 -0.596912 0.0896003 -0.281928 -0.593434 0.0935135 -0.281254 -0.596912 0.0584824 -0.255817 -0.593434 0.0610366 -0.254909 -0.596912 0.0203107 -0.241924 -0.593434 0.0211977 -0.240891 -0.596912 -0.0203108 -0.241924 -0.593434 -0.0211979 -0.240891 -0.596912 -0.0584825 -0.255817 -0.593434 -0.0610367 -0.254909 -0.596912 -0.0896004 -0.281928 -0.593434 -0.0935137 -0.281254 -0.596912 -0.109911 -0.317108 -0.593434 -0.114711 -0.316749 -0.596912 -0.116965 -0.357112 -0.593434 -0.122073 -0.357112 -0.596912 -0.109911 -0.397116 -0.593434 -0.114711 -0.397475 -0.596912 -0.0896004 -0.432296 -0.593434 -0.0935136 -0.43297 -0.596912 -0.0584825 -0.458407 -0.593434 -0.0610367 -0.459315 -0.596912 -0.0203108 -0.4723 -0.593434 -0.0211979 -0.473333 -0.596912 0.0203107 -0.4723 -0.593434 0.0211978 -0.473333 -0.596912 0.0584824 -0.458407 -0.593434 0.0610366 -0.459315 -0.596912 0.0896003 -0.432296 -0.593434 0.0935135 -0.43297 -0.588409 0.115735 -0.399052 -0.588409 0.123162 -0.357112 -0.583414 0.12238 -0.357112 -0.583414 0.114999 -0.398968 -0.588409 0.115735 -0.315172 -0.583414 0.114999 -0.315255 -0.588409 0.0943479 -0.278291 -0.583414 0.0937484 -0.278448 -0.588409 0.0615812 -0.250917 -0.583414 0.0611899 -0.251128 -0.588409 0.0213869 -0.236352 -0.583414 0.021251 -0.236591 -0.588409 -0.021387 -0.236352 -0.583414 -0.0212511 -0.236591 -0.588409 -0.0615813 -0.250917 -0.583414 -0.0611901 -0.251128 -0.588409 -0.094348 -0.278291 -0.583414 -0.0937486 -0.278448 -0.588409 -0.115735 -0.315172 -0.583414 -0.115 -0.315256 -0.588409 -0.123163 -0.357112 -0.583414 -0.12238 -0.357112 -0.588409 -0.115735 -0.399052 -0.583414 -0.115 -0.398968 -0.588409 -0.094348 -0.435933 -0.583414 -0.0937485 -0.435776 -0.588409 -0.0615813 -0.463307 -0.583414 -0.06119 -0.463096 -0.588409 -0.021387 -0.477872 -0.583414 -0.0212511 -0.477633 -0.588409 0.0213869 -0.477872 -0.583414 0.021251 -0.477633 -0.588409 0.0615812 -0.463307 -0.583414 0.0611899 -0.463096 -0.588409 0.0943479 -0.435933 -0.583414 0.0937484 -0.435776 -0.751114 0.0692414 -0.390703 -0.751114 0.0736852 -0.365501 -0.751114 0.0564461 -0.412865 -0.751114 0.0368426 -0.429314 -0.751114 0.0127953 -0.438067 -0.751114 -0.0127954 -0.438067 -0.751114 -0.0368427 -0.429314 -0.751114 -0.0564462 -0.412865 -0.751114 -0.0692415 -0.390703 -0.751114 -0.0736853 -0.365501 -0.751114 -0.0692415 -0.340299 -0.751114 -0.0564462 -0.318137 -0.751114 -0.0368427 -0.301688 -0.751114 -0.0127954 -0.292935 -0.751114 0.0127952 -0.292935 -0.751114 0.0368425 -0.301688 -0.751114 0.0564461 -0.318137 -0.751114 0.0692414 -0.340299 -0.752524 0.0753293 -0.365501 -0.751114 0.0736852 -0.365501 -0.751114 0.0692414 -0.390703 -0.752524 0.0707864 -0.391265 -0.751114 0.0564461 -0.412865 -0.752524 0.0577056 -0.413922 -0.751114 0.0368426 -0.429314 -0.752524 0.0376646 -0.430738 -0.751114 0.0127953 -0.438067 -0.752524 0.0130808 -0.439686 -0.751114 -0.0127954 -0.438067 -0.752524 -0.0130808 -0.439686 -0.751114 -0.0368427 -0.429314 -0.752524 -0.0376647 -0.430738 -0.751114 -0.0564462 -0.412865 -0.752524 -0.0577057 -0.413922 -0.751114 -0.0692415 -0.390703 -0.752524 -0.0707865 -0.391265 -0.751114 -0.0736853 -0.365501 -0.752524 -0.0753294 -0.365501 -0.751114 -0.0692415 -0.340299 -0.752524 -0.0707865 -0.339737 -0.751114 -0.0564462 -0.318137 -0.752524 -0.0577057 -0.31708 -0.751114 -0.0368427 -0.301688 -0.752524 -0.0376647 -0.300264 -0.751114 -0.0127954 -0.292935 -0.752524 -0.0130809 -0.291316 -0.751114 0.0127952 -0.292935 -0.752524 0.0130807 -0.291316 -0.751114 0.0368425 -0.301688 -0.752524 0.0376646 -0.300264 -0.751114 0.0564461 -0.318137 -0.752524 0.0577055 -0.31708 -0.751114 0.0692414 -0.340299 -0.752524 0.0707863 -0.339737 -0.754532 0.0758034 -0.365501 -0.754532 0.0712319 -0.391427 -0.75654 0.0709358 -0.39132 -0.75654 0.0754882 -0.365501 -0.754532 0.0580688 -0.414226 -0.75654 0.0578273 -0.414024 -0.754532 0.0379017 -0.431149 -0.75654 0.0377441 -0.430876 -0.754532 0.0131631 -0.440153 -0.75654 0.0131084 -0.439842 -0.754532 -0.0131632 -0.440153 -0.75654 -0.0131085 -0.439842 -0.754532 -0.0379018 -0.431149 -0.75654 -0.0377442 -0.430876 -0.754532 -0.0580688 -0.414226 -0.75654 -0.0578274 -0.414024 -0.754532 -0.071232 -0.391427 -0.75654 -0.0709358 -0.39132 -0.754532 -0.0758035 -0.365501 -0.75654 -0.0754883 -0.365501 -0.754532 -0.071232 -0.339575 -0.75654 -0.0709359 -0.339682 -0.754532 -0.0580689 -0.316776 -0.75654 -0.0578275 -0.316978 -0.754532 -0.0379018 -0.299853 -0.75654 -0.0377442 -0.300126 -0.754532 -0.0131632 -0.290849 -0.75654 -0.0131085 -0.29116 -0.754532 0.0131631 -0.290849 -0.75654 0.0131083 -0.29116 -0.754532 0.0379016 -0.299853 -0.75654 0.0377441 -0.300126 -0.754532 0.0580687 -0.316775 -0.75654 0.0578273 -0.316978 -0.754532 0.0712318 -0.339575 -0.75654 0.0709357 -0.339682 -0.75795 0.0540706 -0.385181 -0.75795 0.0575407 -0.365501 -0.75795 0.0440787 -0.402487 -0.75795 0.0287703 -0.415333 -0.75795 0.00999179 -0.422168 -0.75795 -0.00999189 -0.422168 -0.75795 -0.0287704 -0.415333 -0.75795 -0.0440788 -0.402487 -0.75795 -0.0540706 -0.385181 -0.75795 -0.0575408 -0.365501 -0.75795 -0.0540706 -0.345821 -0.75795 -0.0440788 -0.328515 -0.75795 -0.0287704 -0.315669 -0.75795 -0.0099919 -0.308834 -0.75795 0.00999177 -0.308834 -0.75795 0.0287703 -0.315669 -0.75795 0.0440787 -0.328514 -0.75795 0.0540705 -0.345821 + + + + + + + + + + -0.374553 0.496344 0.783168 -0.430366 -1.51416e-08 0.902655 -0.250241 4.96529e-09 0.968184 -0.223532 0.481066 0.847708 -0.223532 0.86003 0.458674 -0.148933 0.849883 0.505488 -0.0144306 0.999782 0.015099 -0.0439215 0.998932 0.0143734 0.209822 0.877207 -0.431837 0.0638524 0.870483 -0.48804 0.39685 0.5126 -0.761414 0.146711 0.500533 -0.853195 0.472654 -0.000913886 -0.881248 0.178747 -5.32257e-08 -0.983895 0.146711 -0.500534 -0.853195 0.394732 -0.512856 -0.762342 0.472654 -0.000913886 -0.881248 0.178747 -5.32257e-08 -0.983895 0.0638523 -0.870483 -0.48804 0.209393 -0.876503 -0.433471 -0.0439215 -0.998932 0.0143733 -0.0144306 -0.999782 0.015099 -0.148933 -0.849883 0.505488 -0.223532 -0.86003 0.458674 -0.223532 -0.481065 0.847708 -0.374553 -0.496344 0.783168 -0.250241 4.96529e-09 0.968184 -0.430366 -1.51416e-08 0.902655 -0.16441 0.487505 0.857501 -0.183139 3.01995e-08 0.983087 -0.115411 0.854583 0.506328 -0.0582457 0.998258 0.00941073 -0.02082 0.866825 -0.498178 -0.0130893 0.496493 -0.867942 -0.0160464 2.4733e-08 -0.999871 -0.0160464 2.4733e-08 -0.999871 -0.0130894 -0.496493 -0.867942 -0.02082 -0.866825 -0.498178 -0.0582457 -0.998258 0.00941062 -0.115411 -0.854583 0.506328 -0.16441 -0.487505 0.857501 -0.183139 3.01995e-08 0.983087 -0.760327 0.54743 0.349605 -0.907482 1.27335e-07 0.420091 -0.816412 4.04531e-08 0.57747 -0.691958 0.53589 0.483751 -0.418558 0.89036 0.179077 -0.390009 0.884687 0.255383 -0.0203741 0.999329 -0.0304412 -0.0212208 0.999542 -0.0215611 0.37612 0.892677 -0.248318 0.351663 0.888899 -0.293583 0.71201 0.549358 -0.437319 0.665285 0.541908 -0.513549 0.855147 -1.18209e-07 -0.518386 0.797195 -1.35041e-07 -0.603722 0.665285 -0.541908 -0.513548 0.71201 -0.549358 -0.437319 0.855147 -1.18209e-07 -0.518386 0.797195 -1.35041e-07 -0.603722 0.351663 -0.888899 -0.293583 0.376119 -0.892677 -0.248318 -0.0212208 -0.999542 -0.0215611 -0.0203741 -0.999329 -0.0304412 -0.39001 -0.884687 0.255384 -0.418558 -0.89036 0.179077 -0.691958 -0.53589 0.483751 -0.760327 -0.54743 0.349605 -0.816412 4.04531e-08 0.57747 -0.907482 1.27335e-07 0.420091 -0.831812 0.553967 0.0347791 -0.999099 -1.15014e-07 0.0424364 -0.991032 -1.11216e-07 0.133622 -0.827341 0.550287 0.112655 -0.447982 0.893856 0.0182806 -0.449228 0.891334 0.0609729 -0.00684755 0.999972 0.00293037 -0.012488 0.999889 -0.00816148 0.435104 0.900354 -0.00691088 0.424513 0.900581 -0.093504 0.825075 0.564903 -0.0116586 0.805566 0.563323 -0.183662 0.999914 -2.06157e-07 -0.0130925 0.973646 -1.27336e-07 -0.228064 0.805566 -0.563323 -0.183662 0.825075 -0.564903 -0.0116588 0.999914 -2.06157e-07 -0.0130925 0.973646 -1.27336e-07 -0.228064 0.424513 -0.900581 -0.093504 0.435104 -0.900353 -0.00691094 -0.012488 -0.999889 -0.00816143 -0.00684748 -0.999972 0.00293029 -0.449228 -0.891334 0.0609728 -0.447982 -0.893856 0.0182807 -0.827341 -0.550287 0.112655 -0.831812 -0.553966 0.0347791 -0.991032 -1.11216e-07 0.133622 -0.999099 -1.15014e-07 0.0424364 -0.903564 -6.15287e-08 -0.428453 -0.974229 0.000500268 -0.22556 -0.811636 0.554074 -0.185065 -0.762708 0.539629 -0.356479 -0.440672 0.893207 -0.0893807 -0.426459 0.885903 -0.182506 -0.0129346 0.999464 0.0300603 -0.0227924 0.999425 0.0251203 0.413561 0.896315 0.159959 0.385181 0.894705 0.226139 0.781888 0.556669 0.280661 0.734817 0.554465 0.390657 0.941857 -2.12369e-07 0.336014 0.886855 -1.96125e-07 0.462048 0.734874 -0.553613 0.391757 0.886855 -1.96125e-07 0.462048 0.941857 -2.12369e-07 0.336014 0.781888 -0.55667 0.280661 0.384425 -0.894953 0.226442 0.413561 -0.896315 0.159959 -0.0227925 -0.999425 0.0251202 -0.0129347 -0.999464 0.0300602 -0.426459 -0.885903 -0.182506 -0.43983 -0.893555 -0.090051 -0.762708 -0.539629 -0.356479 -0.811597 -0.553689 -0.186384 -0.903564 -6.15287e-08 -0.428453 -0.974229 0.000500268 -0.22556 -0.998166 0.000475786 -0.0605336 -0.999099 -1.15014e-07 0.0424364 -0.831812 0.553967 0.0347791 -0.830641 0.554328 -0.0524948 -0.447982 0.893856 0.0182806 -0.449257 0.892976 -0.0275919 -0.00684755 0.999972 0.00293037 -0.0119489 0.999811 0.0153477 0.435104 0.900354 -0.00691088 0.424995 0.901746 0.0789486 0.825075 0.564903 -0.0116586 0.809932 0.566064 0.153567 0.999914 -2.06157e-07 -0.0130925 0.981463 -2.67417e-07 0.191651 0.809931 -0.566064 0.153567 0.981463 -2.67417e-07 0.191651 0.999914 -2.06157e-07 -0.0130925 0.825075 -0.564903 -0.0116588 0.424995 -0.901746 0.0789485 0.435104 -0.900353 -0.00691094 -0.0119489 -0.999811 0.0153476 -0.00684748 -0.999972 0.00293029 -0.448493 -0.893392 -0.0265543 -0.447982 -0.893856 0.0182807 -0.830886 -0.554078 -0.0512378 -0.831812 -0.553966 0.0347791 -0.998166 0.000475786 -0.0605336 -0.999099 -1.15014e-07 0.0424364 -0.208162 -3.94417e-08 -0.978094 -0.326842 -0.000566247 -0.945079 -0.284503 0.476432 -0.831908 -0.172479 0.484919 -0.857382 -0.162824 0.849342 -0.502102 -0.0795553 0.855754 -0.511229 0.0134611 0.999591 -0.0252367 0.0262618 0.999564 -0.0135097 0.189122 0.871098 0.453235 0.0787394 0.862217 0.500382 0.305382 0.514055 0.801554 0.0158006 0.498265 0.866881 0.338343 -7.82476e-08 0.941023 -0.0714388 1.81721e-08 0.997445 0.338343 -7.82476e-08 0.941023 0.305382 -0.514056 0.801554 0.0158007 -0.498265 0.866881 -0.0714388 1.81721e-08 0.997445 0.189122 -0.871098 0.453235 0.0787398 -0.862217 0.500382 0.0134611 -0.999591 -0.0252366 0.0262618 -0.999564 -0.0135095 -0.162824 -0.849342 -0.502102 -0.0795553 -0.855754 -0.511229 -0.285193 -0.475947 -0.831949 -0.172479 -0.484919 -0.857382 -0.326842 -0.000566247 -0.945079 -0.208162 -3.94417e-08 -0.978094 -0.513133 -0.00124053 -0.858308 -0.450628 0.48612 -0.748747 -0.271191 0.856068 -0.440003 -0.0054885 0.999904 -0.0127336 0.291944 0.870461 0.396316 0.549888 0.507823 0.663128 0.662616 -1.36428e-07 0.74896 0.662616 -1.36428e-07 0.74896 0.549888 -0.507824 0.663128 0.291944 -0.870461 0.396316 -0.00548846 -0.999904 -0.0127335 -0.273856 -0.855203 -0.440034 -0.45222 -0.486514 -0.74753 -0.513133 -0.00124053 -0.858308 -0.14686 0.477833 -0.866088 -0.175878 -2.05097e-08 -0.984412 -0.0687655 0.846494 -0.527938 0.0217652 0.999195 -0.0336912 0.0389783 0.867095 0.496616 -0.0836698 0.494658 0.865051 -0.19243 9.03107e-08 0.981311 -0.0836698 -0.494658 0.865051 -0.19243 9.03107e-08 0.981311 0.0389792 -0.867095 0.496616 0.0217652 -0.999195 -0.0336911 -0.0687656 -0.846494 -0.527938 -0.14686 -0.477833 -0.866088 -0.175878 -2.05097e-08 -0.984412 -0.701342 -0.000671884 -0.712825 -0.80957 -7.252e-08 -0.587024 -0.693217 0.525446 -0.493312 -0.612124 0.504566 -0.608865 -0.399231 0.879594 -0.258707 -0.368077 0.866956 -0.336015 -0.0245994 0.999269 0.0292708 -0.0310866 0.999401 0.0152195 0.359327 0.883636 0.300117 0.328572 0.879853 0.343364 0.681226 0.535044 0.499658 0.631318 0.525179 0.570635 0.817626 -1.54934e-07 0.57575 0.758553 -1.46707e-07 0.651611 0.817626 -1.54934e-07 0.57575 0.68203 -0.534453 0.499194 0.631318 -0.525179 0.570635 0.758553 -1.46707e-07 0.651611 0.359158 -0.884035 0.299143 0.328572 -0.879853 0.343364 -0.0245995 -0.999269 0.0292707 -0.0310865 -0.999401 0.0152195 -0.399231 -0.879594 -0.258707 -0.367591 -0.86602 -0.338948 -0.693217 -0.525446 -0.493312 -0.610078 -0.505177 -0.610411 -0.80957 -7.252e-08 -0.587024 -0.701342 -0.000671884 -0.712825 -0.624316 0.525774 0.577746 -0.731855 4.98751e-09 0.68146 -0.620295 -5.05392e-09 0.784369 -0.533452 0.512392 0.672967 -0.353679 0.879687 0.317904 -0.308321 0.870309 0.384058 -0.010737 0.999924 -0.00601026 -0.0127494 0.999874 0.00942904 0.338199 0.883496 -0.324124 0.293868 0.883887 -0.363848 0.624435 0.530887 -0.572922 0.54596 0.527443 -0.650947 0.741424 -1.13008e-07 -0.671037 0.649293 -0.000995101 -0.760538 0.547539 -0.528077 -0.649104 0.624435 -0.530887 -0.572922 0.741424 -1.13008e-07 -0.671037 0.649293 -0.000995101 -0.760538 0.295298 -0.88338 -0.363922 0.338199 -0.883496 -0.324124 -0.0127493 -0.999874 0.00942897 -0.0107369 -0.999924 -0.0060103 -0.308322 -0.870309 0.384058 -0.353679 -0.879687 0.317904 -0.533452 -0.512392 0.672967 -0.624317 -0.525774 0.577747 -0.620295 -5.05392e-09 0.784369 -0.731855 4.98751e-09 0.68146 -0.804538 0.550352 0.22323 -0.963788 7.57821e-08 0.266669 -0.436498 0.89207 0.116966 -0.0120157 0.999719 -0.0204473 0.408036 0.895127 -0.179595 0.762533 0.553349 -0.335185 0.913227 -1.1297e-07 -0.407452 0.762532 -0.553349 -0.335185 0.913227 -1.1297e-07 -0.407452 0.408036 -0.895127 -0.179595 -0.0120157 -0.999719 -0.0204472 -0.436499 -0.892069 0.116966 -0.804538 -0.550352 0.22323 -0.963788 7.57821e-08 0.266669 -0.359843 0.876745 -0.319109 -0.359843 0.933013 1.39874e-07 0.37718 0.92614 1.00492e-07 0.377179 0.870287 -0.316759 -0.359843 0.714729 -0.599729 0.377179 0.709465 -0.595311 -0.359843 0.466506 -0.808013 0.377179 0.46307 -0.802061 -0.359843 0.162016 -0.918838 0.377179 0.160823 -0.91207 -0.359843 -0.162016 -0.918838 0.377179 -0.160823 -0.91207 -0.359843 -0.466507 -0.808013 0.377179 -0.46307 -0.802061 -0.359843 -0.714729 -0.599729 0.377179 -0.709465 -0.595312 -0.359843 -0.876745 -0.319109 0.377179 -0.870287 -0.316759 -0.359843 -0.933013 -1.34494e-07 0.377179 -0.92614 -1.54812e-07 -0.359843 -0.876745 0.319109 -0.359843 -0.933013 -1.34494e-07 0.377179 -0.92614 -1.54812e-07 0.377179 -0.870287 0.316758 -0.359843 -0.714729 0.599729 0.377179 -0.709465 0.595312 -0.359843 -0.466507 0.808013 0.377179 -0.46307 0.802061 -0.359843 -0.162017 0.918838 0.377179 -0.160823 0.91207 -0.359843 0.162015 0.918838 0.377179 0.160822 0.91207 -0.359843 0.466506 0.808013 0.377179 0.46307 0.802061 -0.359843 0.714729 0.599729 0.377179 0.709464 0.595312 -0.359843 0.876745 0.31911 0.377179 0.870287 0.316759 -0.359843 0.933013 1.39874e-07 0.37718 0.92614 1.00492e-07 -0.97934 0.0351152 0.19915 -0.97934 0.101111 0.17513 -0.97934 0.154911 0.129986 -0.97934 0.190027 0.0691642 -0.97934 0.202222 8.1187e-08 -0.97934 0.190027 -0.0691642 -0.97934 0.154911 -0.129986 -0.97934 0.101111 -0.17513 -0.97934 0.0351155 -0.19915 -0.97934 -0.0351157 -0.19915 -0.97934 -0.101111 -0.17513 -0.97934 -0.154912 -0.129986 -0.979339 -0.190028 -0.0691647 -0.979339 -0.202224 -3.99877e-08 -0.979339 -0.190028 0.0691646 -0.97934 -0.154911 0.129986 -0.97934 -0.101111 0.17513 -0.97934 -0.0351158 0.19915 0.721257 0.692668 2.65482e-08 0.721256 0.650895 -0.236906 0.721256 0.650895 0.236907 0.721257 0.692668 2.65482e-08 0.721256 0.530615 0.445239 0.721256 0.346334 0.599868 0.721256 0.12028 0.682146 0.721256 -0.120281 0.682146 0.721256 -0.346335 0.599869 0.721256 -0.530615 0.445239 0.721256 -0.650896 0.236907 0.721256 -0.692669 -2.07961e-07 0.721256 -0.650896 -0.236907 0.721256 -0.692669 -2.07961e-07 0.721256 -0.530615 -0.445239 0.721256 -0.346334 -0.599869 0.721256 -0.120281 -0.682145 0.721256 0.120281 -0.682146 0.721256 0.346334 -0.599869 0.721256 0.530615 -0.445239 -0.904027 0.401695 -0.146205 -0.904027 0.427475 7.23895e-08 -0.359843 0.933013 1.39874e-07 -0.359843 0.876745 -0.319109 -0.904027 0.327465 -0.274776 -0.359843 0.714729 -0.599729 -0.904027 0.213738 -0.370205 -0.359843 0.466506 -0.808013 -0.904027 0.0742304 -0.420981 -0.359843 0.162016 -0.918838 -0.904027 -0.0742304 -0.420981 -0.359843 -0.162016 -0.918838 -0.904027 -0.213738 -0.370205 -0.359843 -0.466507 -0.808013 -0.904027 -0.327465 -0.274776 -0.359843 -0.714729 -0.599729 -0.904027 -0.401695 -0.146205 -0.359843 -0.876745 -0.319109 -0.904027 -0.427476 -8.97435e-08 -0.359843 -0.933013 -1.34494e-07 -0.904027 -0.401696 0.146205 -0.359843 -0.876745 0.319109 -0.904027 -0.327466 0.274776 -0.359843 -0.714729 0.599729 -0.904027 -0.213738 0.370205 -0.359843 -0.466507 0.808013 -0.904027 -0.0742306 0.420981 -0.359843 -0.162017 0.918838 -0.904027 0.0742302 0.420981 -0.359843 0.162015 0.918838 -0.904027 0.213737 0.370205 -0.359843 0.466506 0.808013 -0.904027 0.327465 0.274776 -0.359843 0.714729 0.599729 -0.904027 0.401696 0.146205 -0.359843 0.876745 0.31911 -1 0 0 -1 0 0 -1 -1.03546e-07 -9.67518e-08 -1 -9.79191e-08 -1.94734e-07 -1 1.76202e-07 -1.24437e-07 -1 9.97341e-08 -1.39691e-07 -1 -2.25118e-07 -6.00306e-08 -1 -3.4898e-07 -7.90414e-08 -1 -3.13757e-07 -1.06952e-07 -1 -3.51792e-07 8.13892e-09 -1 -3.48921e-07 1.36219e-07 -1 -3.89332e-07 1.11878e-07 -1 -2.43994e-07 9.96571e-08 -1 1.19491e-07 2.42554e-07 -1 1.59676e-07 2.1336e-07 -1 -1.48864e-08 2.65058e-07 -1 -8.81333e-08 1.84666e-07 -1 0 0 0.0563329 0.998374 0.00875346 0.432538 0.901587 -0.00712721 0.431847 0.845368 -0.314422 0.0562162 0.940835 -0.334169 0.430657 0.688202 -0.583877 0.0560249 0.768732 -0.637113 0.429545 0.448883 -0.783579 0.055843 0.502591 -0.862719 0.428961 0.155949 -0.88976 0.0557359 0.174798 -0.983025 0.429153 -0.155596 -0.889729 0.0557414 -0.174464 -0.983085 0.430111 -0.448484 -0.783496 0.055859 -0.502295 -0.86289 0.431581 -0.687714 -0.58377 0.0560512 -0.768512 -0.637375 0.433086 -0.844764 -0.31434 0.0562528 -0.940726 -0.33447 0.434007 -0.900881 -0.00712411 0.056375 -0.998374 0.00850001 0.433785 -0.84904 0.301599 0.0563439 -0.935202 0.349604 0.432217 -0.694572 0.575117 0.0561336 -0.759854 0.647666 0.429806 -0.454813 0.780007 0.0558153 -0.494426 0.867426 0.427804 -0.158083 0.889941 0.0555666 -0.171178 0.983672 0.427416 0.158773 0.890004 0.0555559 0.171811 0.983562 0.428756 0.45553 0.780167 0.0557856 0.494795 0.867217 0.430776 0.695324 0.575289 0.0560928 0.759939 0.64757 0.432222 0.8498 0.301701 0.0562994 0.935165 0.349708 -0.46757 0.883952 -0.00276207 -0.467291 0.829945 -0.304682 -0.788342 0.578133 -0.210423 -0.788342 0.615237 1.26078e-07 -0.466812 0.676237 -0.569904 -0.788342 0.471299 -0.395467 -0.46637 0.441285 -0.76666 -0.788342 0.307619 -0.532812 -0.466149 0.153296 -0.871324 -0.788342 0.106835 -0.605891 -0.466249 -0.153106 -0.871304 -0.788341 -0.106835 -0.605891 -0.466664 -0.441063 -0.766609 -0.788341 -0.307619 -0.532812 -0.46729 -0.675957 -0.569844 -0.78834 -0.471301 -0.395469 -0.46793 -0.829597 -0.304648 -0.78834 -0.578137 -0.210425 -0.468328 -0.88355 -0.00278217 -0.788339 -0.615241 -3.21499e-08 -0.46825 -0.831229 0.299666 -0.78834 -0.578137 0.210424 -0.467608 -0.678582 0.566453 -0.78834 -0.471301 0.395469 -0.46661 -0.443486 0.765241 -0.788342 -0.307619 0.532811 -0.46576 -0.154044 0.8714 -0.788341 -0.106835 0.605891 -0.465559 0.154414 0.871442 -0.78834 0.106835 0.605893 -0.466068 0.443872 0.765348 -0.788342 0.307619 0.532812 -0.466866 0.678992 0.566575 -0.788342 0.471299 0.395467 -0.467444 0.831652 0.299751 -0.788343 0.578133 0.210424 0.95012 0.238916 -0.200475 0.950121 0.293074 -0.10667 0.950121 0.311883 7.25193e-08 0.950121 0.293074 0.10667 0.95012 0.238916 0.200475 0.950121 0.155941 0.270099 0.950121 0.0541576 0.307144 0.950121 -0.0541581 0.307145 0.950121 -0.155942 0.270098 0.950121 -0.238916 0.200474 0.950121 -0.293074 0.10667 0.950121 -0.311883 -9.50253e-08 0.950121 -0.293074 -0.10667 0.950121 -0.238916 -0.200475 0.950121 -0.155941 -0.270098 0.950121 -0.054158 -0.307144 0.950121 0.0541578 -0.307144 0.950121 0.155941 -0.270098 -0.359843 0.876745 -0.319109 -0.359843 0.933013 8.06962e-08 0.377179 0.92614 1.16788e-07 0.377179 0.870287 -0.316759 -0.359843 0.714729 -0.599729 0.377179 0.709465 -0.595311 -0.359843 0.466506 -0.808013 0.377179 0.46307 -0.802061 -0.359843 0.162016 -0.918838 0.377179 0.160822 -0.91207 -0.359843 -0.162016 -0.918838 0.377179 -0.160823 -0.91207 -0.359843 -0.466507 -0.808013 0.377179 -0.46307 -0.802061 -0.359843 -0.714729 -0.599729 0.377179 -0.709465 -0.595312 -0.359843 -0.876745 -0.319109 0.377179 -0.870287 -0.316759 -0.359843 -0.933013 -1.50633e-07 0.377179 -0.92614 -2.19996e-07 -0.359843 -0.876745 0.319109 -0.359843 -0.933013 -1.50633e-07 0.377179 -0.92614 -2.19996e-07 0.377179 -0.870287 0.316759 -0.359843 -0.714729 0.599729 0.377179 -0.709465 0.595311 -0.359843 -0.466507 0.808013 0.377179 -0.46307 0.802061 -0.359843 -0.162016 0.918838 0.377179 -0.160823 0.91207 -0.359843 0.162016 0.918838 0.377179 0.160822 0.91207 -0.359843 0.466506 0.808013 0.377179 0.46307 0.802061 -0.359843 0.714729 0.59973 0.377179 0.709464 0.595312 -0.359843 0.876745 0.31911 0.37718 0.870287 0.316759 -0.359843 0.933013 8.06962e-08 0.377179 0.92614 1.16788e-07 -0.999052 0.00756068 0.0428754 -0.999052 0.021769 0.0377046 -0.999052 0.033351 0.0279847 -0.999052 0.0409109 0.0148903 -0.999052 0.0435364 1.14245e-08 -0.999052 0.0409109 -0.0148903 -0.999052 0.033351 -0.0279847 -0.999052 0.0217692 -0.0377044 -0.999052 0.00756026 -0.0428751 -0.999052 -0.00755978 -0.0428749 -0.999052 -0.021768 -0.0377033 -0.999052 -0.0333506 -0.0279845 -0.999052 -0.0409106 -0.0148902 -0.999052 -0.0435361 -9.19897e-09 -0.999052 -0.0409106 0.0148902 -0.999052 -0.0333506 0.0279845 -0.999052 -0.0217681 0.0377034 -0.999052 -0.00756 0.0428748 0.913029 0.407895 9.38017e-08 0.913029 0.383296 -0.139508 0.377179 0.870287 -0.316759 0.377179 0.92614 1.16788e-07 0.913029 0.383296 0.139508 0.37718 0.870287 0.316759 0.913029 0.312466 0.26219 0.377179 0.709464 0.595312 0.913029 0.203948 0.353248 0.377179 0.46307 0.802061 0.913029 0.0708301 0.401699 0.377179 0.160822 0.91207 0.913029 -0.0708304 0.401699 0.377179 -0.160823 0.91207 0.913029 -0.203948 0.353248 0.377179 -0.46307 0.802061 0.913028 -0.312466 0.26219 0.377179 -0.709465 0.595311 0.913028 -0.383297 0.139509 0.377179 -0.870287 0.316759 0.913028 -0.407896 -1.19858e-07 0.377179 -0.92614 -2.19996e-07 0.913029 -0.383296 -0.139509 0.377179 -0.870287 -0.316759 0.913029 -0.312466 -0.26219 0.377179 -0.709465 -0.595312 0.913029 -0.203948 -0.353248 0.377179 -0.46307 -0.802061 0.913029 -0.0708304 -0.401699 0.377179 -0.160823 -0.91207 0.913029 0.0708303 -0.401699 0.377179 0.160822 -0.91207 0.913029 0.203948 -0.353248 0.377179 0.46307 -0.802061 0.913029 0.312466 -0.26219 0.377179 0.709465 -0.595311 -0.901744 0.406216 -0.147803 -0.90181 0.432133 4.51595e-05 -0.359843 0.933013 8.06962e-08 -0.359843 0.876745 -0.319109 -0.901683 0.33126 -0.27791 -0.359843 0.714729 -0.599729 -0.901635 0.216271 -0.374541 -0.359843 0.466506 -0.808013 -0.901609 0.0751212 -0.425979 -0.359843 0.162016 -0.918838 -0.901609 -0.0751211 -0.425979 -0.359843 -0.162016 -0.918838 -0.901635 -0.216272 -0.37454 -0.359843 -0.466507 -0.808013 -0.901683 -0.33126 -0.27791 -0.359843 -0.714729 -0.599729 -0.901745 -0.406215 -0.147803 -0.359843 -0.876745 -0.319109 -0.90181 -0.432132 4.51096e-05 -0.359843 -0.933013 -1.50633e-07 -0.901872 -0.405937 0.147791 -0.359843 -0.876745 0.319109 -0.901923 -0.330832 0.277642 -0.359843 -0.714729 0.599729 -0.901959 -0.215894 0.373977 -0.359843 -0.466507 0.808013 -0.901978 -0.0749716 0.425223 -0.359843 -0.162016 0.918838 -0.901978 0.0749713 0.425223 -0.359843 0.162016 0.918838 -0.901959 0.215893 0.373978 -0.359843 0.466506 0.808013 -0.901923 0.330832 0.277642 -0.359843 0.714729 0.59973 -0.901872 0.405937 0.147792 -0.359843 0.876745 0.31911 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 4.01262e-07 -4.95942e-08 1 1.45774e-07 -4.86917e-09 1 0 0 1 0 0 1 0 0 1 1.47325e-07 -1.75575e-07 1 1.8086e-07 1.33317e-07 1 1.05478e-07 5.96945e-08 1 0 0 1 0 0 1 0 0 -0.554611 0.786574 -0.271492 -0.794814 0.562183 -0.22852 -0.826009 0.563655 -0.00168744 -0.540417 0.841395 -0.00203726 -0.797696 0.56012 0.223489 -0.555139 0.786908 0.269439 -0.692545 0.527 0.492597 -0.576287 0.639879 0.508378 -0.495294 0.392307 0.775099 -0.559223 0.432059 0.707528 -0.317425 0.139996 0.937892 -0.514086 0.157109 0.843228 -0.315269 -0.144396 0.937953 -0.514764 -0.161399 0.842003 -0.488558 -0.393091 0.778967 -0.560083 -0.435309 0.70485 -0.686189 -0.528539 0.499792 -0.57592 -0.641182 0.50715 -0.794816 -0.56218 0.228519 -0.554613 -0.786573 0.271492 -0.82601 -0.563652 0.00168739 -0.540418 -0.841394 0.00203731 -0.797698 -0.560117 -0.223488 -0.555142 -0.786906 -0.269438 -0.692547 -0.526999 -0.492597 -0.576288 -0.639878 -0.508377 -0.495291 -0.392308 -0.775101 -0.559222 -0.43206 -0.707528 -0.31743 -0.139997 -0.937891 -0.514087 -0.15711 -0.843227 -0.315273 0.144395 -0.937952 -0.514766 0.161399 -0.842002 -0.488559 0.393091 -0.778967 -0.560083 0.435308 -0.70485 -0.686185 0.528542 -0.499794 -0.575917 0.641184 -0.507152 -0.0766408 0.932305 -0.35346 -0.0293558 0.999568 -0.00130925 0.524643 0.851323 -0.00020181 0.519094 0.802229 -0.294908 -0.0739115 0.933349 0.351278 0.519439 0.802144 0.294529 -0.17554 0.744735 0.64386 0.505856 0.658274 0.557482 -0.26917 0.472222 0.839377 0.490195 0.432677 0.756637 -0.319838 0.160184 0.933833 0.479838 0.150789 0.864302 -0.320512 -0.16192 0.933303 0.479659 -0.151182 0.864333 -0.271342 -0.472418 0.838567 0.48974 -0.432956 0.756772 -0.178948 -0.743453 0.644403 0.50533 -0.658439 0.557763 -0.0766416 -0.932305 0.35346 0.519094 -0.802229 0.294908 -0.0293575 -0.999568 0.00130913 0.524641 -0.851323 0.000201591 -0.0739122 -0.933349 -0.351277 0.51944 -0.802144 -0.294529 -0.175542 -0.744734 -0.64386 0.505854 -0.658275 -0.557482 -0.269169 -0.472223 -0.839377 0.490197 -0.432677 -0.756636 -0.319839 -0.160184 -0.933833 0.479836 -0.15079 -0.864303 -0.320513 0.161919 -0.933303 0.479659 0.151181 -0.864333 -0.271344 0.472417 -0.838567 0.489738 0.432956 -0.756773 -0.17895 0.743454 -0.644402 0.505327 0.65844 -0.557765 -0.999929 0.01116 -0.00419697 -0.999933 0.0115826 -0.000127454 -0.999925 0.0093029 -0.00794846 -0.999922 0.00617444 -0.0108429 -0.99992 0.00216369 -0.0124224 -0.99992 -0.0021636 -0.0124223 -0.999922 -0.00617448 -0.0108428 -0.999925 -0.00930318 -0.00794857 -0.999929 -0.0111603 -0.00419711 -0.999933 -0.011583 -0.000127464 -0.999937 -0.0106194 0.00374462 -0.99994 -0.00847406 0.00699569 -0.999942 -0.00544514 0.00932009 -0.999943 -0.00187548 0.0105274 -0.999943 0.00187555 0.0105275 -0.999942 0.00544509 0.00932021 -0.99994 0.0084738 0.00699559 -0.999937 0.010619 0.00374451 0.505348 0.862915 -8.9864e-07 0.75909 0.650985 6.41015e-07 0.759092 0.611725 -0.222649 0.505346 0.810876 -0.295135 0.759095 0.49868 -0.418442 0.505345 0.661033 -0.554673 0.759095 0.32549 -0.563765 0.505343 0.431459 -0.74731 0.759093 0.113042 -0.641092 0.505345 0.149844 -0.849808 0.759081 -0.113045 -0.641105 0.505342 -0.149845 -0.849809 0.759087 -0.325495 -0.563773 0.505342 -0.43146 -0.74731 0.759086 -0.498687 -0.418449 0.505339 -0.661036 -0.554674 0.759085 -0.611732 -0.222653 0.505339 -0.810881 -0.295136 0.759087 -0.650989 -2.86241e-07 0.505341 -0.86292 -1.53236e-07 0.759088 -0.611728 0.222651 0.505338 -0.810881 0.295136 0.759086 -0.498687 0.418449 0.505342 -0.661034 0.554673 0.759085 -0.325496 0.563775 0.50534 -0.43146 0.747311 0.759085 -0.113044 0.641102 0.505339 -0.149845 0.849811 0.759093 0.113041 0.641092 0.505345 0.149843 0.849808 0.759093 0.325491 0.563768 0.505344 0.431459 0.747309 0.759091 0.498683 0.418445 0.505345 0.661033 0.554672 0.759093 0.611723 0.222649 0.505344 0.810878 0.295136 0.0372992 0.999304 8.16954e-07 0.0373017 0.939039 -0.341782 -0.701087 0.670072 -0.243887 -0.701091 0.713072 5.70183e-07 0.0372964 0.765512 -0.64234 -0.701089 0.546246 -0.458355 0.0372973 0.499652 -0.865423 -0.701086 0.356538 -0.617543 0.0373003 0.173527 -0.984122 -0.701086 0.123825 -0.702244 0.0373018 -0.173527 -0.984122 -0.701089 -0.123824 -0.70224 0.0373007 -0.499652 -0.865423 -0.701087 -0.356538 -0.617542 0.0372989 -0.765511 -0.642341 -0.701086 -0.546249 -0.458356 0.0372991 -0.939038 -0.341783 -0.701086 -0.670073 -0.243886 0.0372946 -0.999304 -4.36042e-07 -0.701091 -0.713072 -5.4345e-07 0.0372968 -0.939039 0.341782 -0.701086 -0.670073 0.243886 0.0372979 -0.765512 0.64234 -0.70109 -0.546246 0.458355 0.0372987 -0.499652 0.865423 -0.701088 -0.356537 0.617541 0.0372978 -0.173528 0.984122 -0.701088 -0.123825 0.702242 0.0372982 0.173527 0.984123 -0.701088 0.123824 0.702242 0.0373006 0.499651 0.865423 -0.701086 0.356539 0.617543 0.0373006 0.765511 0.642341 -0.701087 0.546247 0.458356 0.0372966 0.939038 0.341783 -0.701088 0.670071 0.243886 -0.999052 0.0409109 -0.0148903 -0.999052 0.0435364 1.14245e-08 -0.999052 0.033351 -0.0279847 -0.999052 0.0217692 -0.0377044 -0.999052 0.00756026 -0.0428751 -0.999052 -0.00755978 -0.0428749 -0.999052 -0.021768 -0.0377033 -0.999052 -0.0333506 -0.0279845 -0.999052 -0.0409106 -0.0148902 -0.999052 -0.0435361 -9.19897e-09 -0.999052 -0.0409106 0.0148902 -0.999052 -0.0333506 0.0279845 -0.999052 -0.0217681 0.0377034 -0.999052 -0.00756 0.0428748 -0.999052 0.00756068 0.0428754 -0.999052 0.021769 0.0377046 -0.999052 0.033351 0.0279847 -0.999052 0.0409109 0.0148903 + + + + + + + + + + 0.829427 -0.198182 0.522278 0.878551 -0.229548 0.418874 0.908631 -0.345305 0.234849 0.865927 -0.301235 0.399284 0.791763 -0.114233 0.600052 0.830234 -0.170211 0.530791 0.772591 0.00156287 0.634902 0.813952 0.0274387 0.580284 0.776593 0.11882 0.618696 0.823646 0.230168 0.518295 0.805512 0.203217 0.556644 0.85546 0.368862 0.363496 0.858949 0.224011 0.460462 0.900502 0.402906 0.163597 -0.869415 0.346142 -0.352567 -0.820046 0.177553 -0.544058 -0.864291 0.194746 -0.463761 -0.911186 0.377276 -0.165538 -0.839947 0.217204 -0.497304 -0.795594 0.105011 -0.59666 -0.83073 0.0285266 -0.555945 -0.791008 0.00217759 -0.611801 -0.845567 -0.155574 -0.510698 -0.807679 -0.0999808 -0.581084 -0.878619 -0.277074 -0.38892 -0.840756 -0.174331 -0.51258 -0.918054 -0.317605 -0.237284 -0.884003 -0.202237 -0.421473 0.874405 -0.330286 0.355425 0.908884 -0.381133 0.169316 0.841973 -0.186289 0.506337 0.820538 0.0425027 0.570009 0.822741 0.29796 0.484063 0.842624 0.472807 0.257754 0.855328 0.517905 -0.0137267 -0.869549 0.493649 0.0139549 -0.857897 0.451476 -0.245322 -0.83928 0.285931 -0.462442 -0.837166 0.0437068 -0.545199 -0.857131 -0.171931 -0.485557 -0.88738 -0.306511 -0.344396 -0.919514 -0.353767 -0.171296 0.546118 0.247378 0.800349 0.400826 0.299359 0.865866 0.569525 0.165317 0.805178 0.636625 0.136954 0.758915 0.632473 0.14426 0.76103 0.674016 0.0853172 0.733773 0.664013 0.0362877 0.74684 0.688904 0.0302479 0.724221 0.653392 -0.0655076 0.75418 0.683585 -0.0295755 0.729271 0.59726 -0.146338 0.788584 0.649557 -0.0810223 0.755983 0.510686 -0.171714 0.842445 0.60098 -0.0951994 0.793574 -0.659765 -0.104787 -0.74413 -0.607453 -0.169522 -0.776056 -0.508107 -0.198146 -0.838192 -0.599242 -0.121598 -0.791279 -0.702002 -0.0429363 -0.710879 -0.672062 -0.0783369 -0.73634 -0.709553 0.0302502 -0.704002 -0.685248 0.0361289 -0.727413 -0.691637 0.0983551 -0.715517 -0.650797 0.156512 -0.742945 -0.646154 0.16086 -0.746062 -0.555911 0.270045 -0.786154 -0.566445 0.194472 -0.800825 -0.396992 0.327026 -0.857585 0.327797 0.439708 0.836186 0.0364883 0.510568 0.859063 0.116695 0.487139 0.865493 0.383612 0.407046 0.828949 0.539296 0.253863 0.802941 0.562845 0.229349 0.794106 0.62284 0.00197243 0.782347 0.625268 0.0141782 0.780281 0.541687 -0.255629 0.800768 0.569275 -0.185176 0.801022 0.300233 -0.420841 0.85601 0.418284 -0.321143 0.84965 0.0118503 -0.425137 0.905051 0.213016 -0.357219 0.909406 -0.430107 -0.342769 -0.835175 -0.313762 -0.440912 -0.840922 -0.0116896 -0.45037 -0.892766 -0.210728 -0.382427 -0.899635 -0.589683 -0.196632 -0.783332 -0.56258 -0.265863 -0.782828 -0.648013 0.0143089 -0.761495 -0.645792 0.0021848 -0.76351 -0.582712 0.240583 -0.776252 -0.559958 0.264582 -0.785139 -0.395105 0.427578 -0.813062 -0.340483 0.459762 -0.820177 -0.114777 0.51203 -0.851265 -0.0358496 0.535108 -0.844023 -0.419176 -0.206974 0.883998 -0.210952 -0.356052 0.910344 -0.398321 -0.293185 0.869128 -0.5148 -0.172915 0.839691 -0.511365 -0.167951 0.842792 -0.56849 -0.10558 0.815887 -0.553061 -0.0321966 0.832519 -0.585286 -0.0337101 0.810126 -0.529779 0.094012 0.842909 -0.572783 0.0396487 0.818748 -0.448437 0.189464 0.873503 -0.525105 0.100491 0.845084 -0.327993 0.217194 0.919373 -0.458916 0.116222 0.880845 0.521499 0.0919718 -0.84828 0.459309 0.108722 -0.881598 0.328487 0.210479 -0.920758 0.445254 0.183537 -0.876392 0.56671 0.0351497 -0.823168 0.524861 0.0911391 -0.846295 0.58048 -0.0336872 -0.813577 0.548635 -0.0322272 -0.83544 0.564891 -0.103273 -0.818678 0.509145 -0.165494 -0.84462 0.512928 -0.168986 -0.841634 0.396019 -0.286853 -0.872287 0.419594 -0.202301 -0.884881 0.211168 -0.349462 -0.912844 -0.0545091 -0.442014 0.89535 0.0373227 -0.475905 0.878704 -0.237677 -0.412108 0.879589 -0.304275 -0.372936 0.876547 -0.445858 -0.241085 0.862026 -0.474984 -0.212579 0.853932 -0.532052 -0.00612453 0.84669 -0.535723 -0.019361 0.844172 -0.458482 0.228159 0.858917 -0.487443 0.154494 0.859378 -0.240412 0.36966 0.897526 -0.357982 0.269691 0.893933 0.0121901 0.364846 0.930988 -0.182693 0.30215 0.93559 0.354071 0.263146 -0.897434 0.183121 0.295014 -0.937781 -0.0122296 0.357035 -0.934011 0.235897 0.363144 -0.901376 0.482318 0.151784 -0.862746 0.453821 0.22593 -0.861976 0.532057 -0.0193527 -0.846487 0.529407 -0.00611117 -0.848346 0.471758 -0.211385 -0.856014 0.443554 -0.23996 -0.863527 0.301925 -0.371576 -0.877937 0.236021 -0.409719 -0.881149 0.0539963 -0.445068 -0.893867 -0.037393 -0.472826 -0.880362 -0.858155 0.479807 0.182636 -0.8597 0.415534 0.297066 -0.801096 0.358513 0.479285 -0.81006 0.425384 0.403549 -0.754164 0.220991 0.618385 -0.768384 0.274066 0.578337 -0.731387 0.0270533 0.681426 -0.750948 0.0286466 0.659739 -0.748675 -0.170748 0.640571 -0.783657 -0.256716 0.565667 -0.808076 -0.305402 0.503728 -0.853376 -0.445087 0.271381 -0.888158 -0.330456 0.319335 -0.882811 -0.465454 -0.0632284 0.887992 -0.330959 -0.319276 0.807528 -0.306273 -0.504078 0.852562 -0.446246 -0.272033 0.882365 -0.466302 0.0631966 0.747566 -0.171551 -0.64165 0.782411 -0.257597 -0.566989 0.729911 0.0270732 -0.683006 0.749517 0.0286309 -0.661365 0.752651 0.222128 -0.619819 0.766934 0.275066 -0.579785 0.800559 0.359004 -0.479814 0.808711 0.427219 -0.404315 0.86154 0.410886 -0.298197 0.856994 0.48197 -0.182389 -0.827492 0.266268 0.494325 -0.763222 0.22527 0.605595 -0.711317 0.129721 0.690797 -0.686253 0.00549569 0.727342 -0.689039 -0.0959603 0.718343 -0.704251 -0.144955 0.694995 -0.740326 -0.151397 0.654978 0.740221 -0.152311 -0.654885 0.703797 -0.145812 -0.695276 0.687887 -0.0967984 -0.719335 0.684449 0.0055272 -0.729039 0.709074 0.129578 -0.693126 0.760349 0.227822 -0.608248 0.826709 0.268128 -0.49463 -0.815478 0.437078 0.37942 -0.855315 0.495059 0.152814 -0.778042 0.285726 0.559475 -0.752545 0.0385593 0.657411 -0.786301 -0.28007 0.550719 -0.855522 -0.480781 0.192174 -0.854978 -0.490819 -0.167657 0.854429 -0.482326 -0.193164 0.854174 -0.492271 0.167499 0.78481 -0.281063 -0.552338 0.750992 0.0385851 -0.659182 0.776554 0.286794 -0.560993 0.814109 0.438935 -0.380213 0.854101 0.497219 -0.152597 -0.71057 0.080135 0.699048 -0.586025 -0.0582999 0.808193 -0.604324 -0.0507879 0.795118 -0.678493 0.0603357 0.732125 -0.609729 -0.04398 0.791389 -0.654251 0.0152878 0.756123 -0.613936 -0.0382084 0.78843 -0.646174 -0.0317117 0.762531 -0.614134 -0.0182371 0.788991 -0.646116 -0.0557738 0.761199 -0.59689 0.0107773 0.802251 -0.642298 -0.0582768 0.764236 -0.575607 0.0223195 0.817422 -0.650554 -0.0569406 0.757323 0.575678 0.0158491 -0.817523 0.593728 0.00611294 -0.804643 0.641268 -0.0602861 -0.764946 0.650451 -0.0596452 -0.757203 0.608752 -0.0210471 -0.793081 0.644012 -0.0572127 -0.762873 0.609099 -0.038199 -0.792173 0.643386 -0.0316609 -0.764887 0.606376 -0.0416649 -0.794086 0.652674 0.0193982 -0.757391 0.602551 -0.0469667 -0.796697 0.677338 0.0672158 -0.732595 0.586173 -0.0538054 -0.808397 0.710064 0.0872787 -0.698707 0.696221 0.0390957 0.716762 0.680702 0.0471661 0.731041 0.78211 -0.0758353 0.618509 0.758541 -0.0622063 0.648649 0.703812 0.0264241 0.709895 0.742225 -0.0324381 0.669365 0.707144 0.0118426 0.706971 0.73336 0.00294006 0.679834 0.703 -0.00821301 0.711142 0.731117 0.0373489 0.681229 0.687174 -0.0246991 0.726073 0.737945 0.0651431 0.671709 0.670775 -0.027932 0.741134 0.758633 0.0716046 0.647572 -0.749715 0.0349444 -0.660837 -0.697727 -0.0494311 -0.714657 -0.670034 -0.0546629 -0.740315 -0.760047 0.0350997 -0.648919 -0.749275 0.0222056 -0.661887 -0.721419 -0.0222346 -0.692141 -0.752949 0.00339508 -0.658071 -0.727444 0.0119349 -0.686063 -0.758543 -0.0187089 -0.651354 -0.7211 0.039958 -0.691678 -0.768603 -0.0384903 -0.638568 -0.706188 0.0636863 -0.705154 -0.783473 -0.0477621 -0.619587 -0.679435 0.077041 -0.72968 0.459206 0.338093 0.821476 0.243041 0.411528 0.878394 0.594278 0.188263 0.781915 0.64012 0.0233999 0.767919 0.612675 -0.122633 0.780762 0.525798 -0.228209 0.819425 0.393517 -0.259293 0.881993 -0.536246 -0.250768 -0.80595 -0.390519 -0.285288 -0.875275 -0.631927 -0.134935 -0.763191 -0.66214 0.0232779 -0.749018 -0.613417 0.199974 -0.764022 -0.469703 0.35961 -0.806263 -0.239765 0.437722 -0.866552 -0.0935158 0.306406 0.947296 -0.0420691 -0.0162253 0.998983 -0.166893 0.0679687 0.98363 -0.0958454 0.376864 0.921297 -0.0687917 0.620714 0.781013 -0.0650636 0.661498 0.747119 -0.0436543 0.856659 0.514033 -0.0420615 0.873697 0.484649 -0.0191883 0.983314 0.1809 -0.0187563 0.985932 0.16609 0.00517538 0.984446 -0.175611 0.00474177 0.98513 -0.171744 0.0296964 0.85986 -0.509666 0.0282349 0.871372 -0.489809 0.0549807 0.625427 -0.778343 0.0517682 0.657933 -0.751295 0.0766904 0.313069 -0.946629 0.078657 0.370886 -0.925341 0.0316976 -0.0122249 -0.999423 0.160531 0.0653778 -0.984863 -0.0872314 -0.308907 -0.947083 -0.0356943 0.0137667 -0.999268 -0.160923 -0.0655373 -0.984789 -0.0897506 -0.374757 -0.922769 -0.0624847 -0.622883 -0.779815 -0.0589821 -0.659884 -0.749049 -0.0373427 -0.85813 -0.512072 -0.0359715 -0.872697 -0.486936 -0.012874 -0.983852 -0.178522 -0.0126549 -0.985611 -0.168557 0.011494 -0.983963 0.178 0.0108532 -0.985508 0.169283 0.0360111 -0.858436 0.511655 0.034353 -0.872425 0.487539 0.0612777 -0.623296 0.779582 0.0579006 -0.659594 0.749388 0.082971 -0.310595 0.946914 0.0848432 -0.373052 0.923923 0.0380538 0.0146764 0.999168 0.166591 -0.067846 0.983689 0.199319 0.00133719 0.979934 0.176816 0.00789266 0.984212 0.132537 0.00621161 0.991159 0.0723856 0.0100559 0.997326 9.5107e-05 0.000460179 1 -0.0724939 -0.010619 0.997312 -0.132596 -0.00659641 0.991148 -0.176885 -0.00859099 0.984194 -0.199362 -0.00260493 0.979922 -0.1993 0.000792185 0.979938 -0.176533 0.00503157 0.984282 -0.132315 0.0047719 0.991196 -0.0715087 0.00549757 0.997425 -9.94197e-05 0.000481269 1 0.0716028 -0.00598651 0.997415 0.132344 -0.00495726 0.991192 0.176663 -0.00633854 0.984251 0.199319 -0.00133371 0.979934 -0.175901 0.183161 0.967218 -0.0820866 0.41993 0.903837 0.0714417 -0.410101 0.909238 0.177578 -0.184907 0.966579 0.0474792 -0.679149 0.732464 0.028352 -0.880061 0.474014 0.00884091 -0.986326 0.164567 -0.010817 -0.986643 -0.162535 -0.0302187 -0.880934 -0.472274 -0.0488088 -0.680123 -0.731472 -0.0770134 -0.415255 -0.906439 -0.171113 -0.178174 -0.969007 0.0663152 0.405337 -0.911759 0.17273 0.179859 -0.968409 0.0423758 0.675385 -0.736247 0.0232493 0.877642 -0.478753 0.00372953 0.985468 -0.169821 -0.0159359 0.987429 0.157261 -0.0353385 0.883296 0.467482 -0.053918 0.683846 0.727632 -0.13536 0.0554251 0.989245 0.000819127 0.00173213 0.999998 0.00212664 0.000820045 0.999997 -0.300972 0.214659 0.92916 -0.2608 0.0867954 0.961483 -0.580891 0.331387 0.743471 -0.361414 0.0803307 0.928939 -0.800182 0.291059 0.524399 -0.4194 0.0365014 0.907067 -0.919245 0.106996 0.378868 -0.4204 -0.0240514 0.90702 -0.914934 -0.131656 0.381528 -0.363766 -0.0702122 0.928841 -0.790911 -0.306892 0.529411 -0.263254 -0.0799554 0.961407 -0.574471 -0.336771 0.746035 -0.137247 -0.0511668 0.989214 -0.301635 -0.214335 0.929019 -0.00074758 0.00158077 0.999998 -0.0021266 0.000820035 0.999997 0.135336 0.0554775 0.989245 0.300972 0.214658 0.92916 0.260619 0.0872958 0.961487 0.580883 0.331393 0.743474 0.361244 0.0810528 0.928942 0.800174 0.291074 0.524403 0.419376 0.0367934 0.907067 0.919244 0.107 0.378869 0.420361 -0.0245539 0.907025 0.914932 -0.131664 0.381529 0.36357 -0.0710606 0.928853 0.790908 -0.306898 0.529413 0.263062 -0.0804931 0.961415 0.574474 -0.336769 0.746034 0.137222 -0.0512232 0.989215 0.301636 -0.214335 0.929019 0 0.00456357 0.99999 0 -4.06076e-05 1 -9.74867e-08 0.00712165 0.999975 -1.95384e-07 0.00668608 0.999978 -1.23807e-07 0.0035705 0.999994 -1.39772e-07 -0.000811756 1 -5.9016e-08 -0.00450412 0.99999 -7.70233e-08 -0.00577893 0.999983 -1.05739e-07 -0.0038632 0.999993 7.91099e-09 0.000647896 1 1.34174e-07 0.00585326 0.999983 1.08281e-07 0.00922658 0.999958 9.75019e-08 0.00881744 0.999961 2.43097e-07 0.00456885 0.99999 2.13136e-07 -0.00140026 0.999999 2.65143e-07 -0.00604499 0.999982 1.85297e-07 -0.00722243 0.999974 0 -0.00472146 0.999989 0.00941106 -0.00929797 0.999913 -0.00668501 0.0111117 0.999916 -0.346621 0.477383 0.80744 -0.362817 0.331067 0.871067 -0.623601 0.694577 0.358725 -0.677038 0.498244 0.541639 -0.80555 0.582636 -0.107818 -0.888698 0.418855 0.186486 -0.891603 0.231247 -0.389319 -0.987827 0.15286 -0.0288271 -0.89513 -0.204903 -0.395925 -0.984394 -0.17421 -0.0248994 -0.815219 -0.565798 -0.123656 -0.880588 -0.432114 0.194532 -0.634412 -0.691457 0.345555 -0.669312 -0.502619 0.547171 -0.348062 -0.478431 0.806199 -0.359123 -0.331643 0.872378 -0.000253915 -0.00803001 0.999968 0.0125656 0.00922236 0.999879 0.34346 0.465275 0.815816 0.380634 0.343836 0.858426 0.62536 0.690358 0.363774 0.686363 0.500469 0.527672 0.808863 0.57785 -0.108768 0.891408 0.416022 0.179771 0.892777 0.227697 -0.388721 0.988059 0.151224 -0.0294986 0.89651 -0.201359 -0.394619 0.984678 -0.172512 -0.0254842 0.819125 -0.560264 -0.123035 0.883103 -0.429706 0.188364 0.635951 -0.686183 0.353156 0.677297 -0.505499 0.534547 0.342996 -0.464346 0.816539 0.374901 -0.344434 0.860706 -0.00291833 0.00158101 0.999995 -0.348221 0.14399 0.926288 -0.228067 0.0430393 0.972694 0.000234774 0.00030063 1 -0.619621 0.209706 0.756368 -0.414274 0.0685802 0.907565 -0.792716 0.176121 0.583594 -0.542642 0.0604473 0.837786 -0.874689 0.0679315 0.4799 -0.606989 0.0256641 0.794296 -0.875045 -0.0649558 0.479664 -0.60755 -0.0200142 0.794029 -0.793732 -0.173503 0.582998 -0.544014 -0.0559354 0.837209 -0.621115 -0.20769 0.755699 -0.415668 -0.0658877 0.907127 -0.35187 -0.141328 0.925318 -0.229347 -0.0412157 0.972472 -0.00483074 -0.000588275 0.999988 -0.000266364 0.000341254 1 0.342563 0.141841 0.928726 0.227989 0.0431528 0.972707 0.616433 0.208949 0.759178 0.414179 0.0687698 0.907594 0.791578 0.176573 0.585 0.542576 0.0606604 0.837813 0.874786 0.0683844 0.479659 0.606981 0.025744 0.794299 0.875269 -0.0654097 0.479194 0.607541 -0.0201278 0.794033 0.792895 -0.174263 0.583909 0.543948 -0.0561524 0.837238 0.61816 -0.207586 0.758147 0.415575 -0.0660626 0.907157 0.346203 -0.139776 0.927689 0.229287 -0.0412994 0.972482 0.00297672 -0.649705 -0.760181 0.120294 -0.65992 -0.741643 0.215315 -0.655934 -0.723457 0.278379 -0.642695 -0.713756 0.308735 -0.629391 -0.713127 0.307166 -0.617932 -0.723747 0.275476 -0.607471 -0.745045 0.21258 -0.608151 -0.764828 0.115822 -0.627674 -0.769812 -0.00292096 -0.649576 -0.760291 -0.12034 -0.66003 -0.741538 -0.215332 -0.65599 -0.723401 -0.278408 -0.642842 -0.713612 -0.308739 -0.629453 -0.71307 -0.307246 -0.616775 -0.724699 -0.275549 -0.607077 -0.745339 -0.212449 -0.608605 -0.764503 -0.115897 -0.627477 -0.769962 -0.933013 -0.338142 0.123073 -0.933013 -0.359843 -6.46541e-07 -0.92614 0.377179 -1.70855e-07 -0.92614 0.354433 -0.129003 -0.933013 -0.275656 0.231303 -0.92614 0.288936 -0.242446 -0.933013 -0.179922 0.311633 -0.92614 0.18859 -0.326647 -0.933013 -0.0624862 0.354376 -0.92614 0.0654964 -0.371449 -0.933013 0.0624861 0.354376 -0.92614 -0.0654966 -0.371449 -0.933013 0.179922 0.311633 -0.92614 -0.18859 -0.326647 -0.933013 0.275656 0.231303 -0.92614 -0.288936 -0.242446 -0.933013 0.338142 0.123074 -0.92614 -0.354432 -0.129003 -0.933013 0.359843 5.80959e-08 -0.92614 -0.377179 -8.95952e-08 0.933013 -0.338142 0.123074 0.933013 -0.359843 -5.80959e-08 0.92614 0.377179 8.95952e-08 0.92614 0.354432 -0.129003 0.933013 -0.275656 0.231303 0.92614 0.288936 -0.242446 0.933013 -0.179922 0.311633 0.92614 0.18859 -0.326647 0.933013 -0.0624862 0.354376 0.92614 0.0654967 -0.371449 0.933013 0.062486 0.354376 0.92614 -0.0654963 -0.371449 0.933013 0.179921 0.311633 0.92614 -0.188589 -0.326647 0.933013 0.275656 0.231303 0.92614 -0.288936 -0.242446 0.933013 0.338142 0.123074 0.92614 -0.354433 -0.129003 0.933013 0.359843 3.11228e-08 0.92614 -0.377179 -4.7563e-08 0.0428741 -0.00032419 0.99908 0.0376957 -0.000819849 0.999289 0.0279692 -0.000933292 0.999608 0.014878 -0.000606067 0.999889 2.02072e-08 2.0129e-07 1 -0.0148779 0.000607496 0.999889 -0.0279692 0.000933001 0.999608 -0.0376956 0.000814248 0.999289 -0.0428739 0.000322926 0.99908 -0.0428736 -0.000325952 0.99908 -0.0376944 -0.000821472 0.999289 -0.027969 -0.000930866 0.999608 -0.0148778 -0.000609518 0.999889 1.13929e-08 -4.72735e-07 1 0.0148777 0.000609155 0.999889 0.0279688 0.000935446 0.999608 0.0376944 0.000821404 0.999289 0.0428735 0.000327999 0.99908 -0.000681012 0.00152459 -0.999999 -0.131799 -0.0464477 -0.990188 -0.296283 -0.210659 -0.931579 -0.00190413 0.000775604 -0.999998 0.130176 0.0503229 -0.990213 0.295551 0.21103 -0.931727 0.250162 0.0787538 -0.964996 0.571868 0.327201 -0.752268 0.345707 0.0727176 -0.935521 0.791064 0.289271 -0.539018 0.400354 0.0328872 -0.91577 0.911869 0.107729 -0.396092 0.401187 -0.02194 -0.915734 0.908059 -0.129429 -0.398343 0.347678 -0.0637572 -0.935444 0.782987 -0.303093 -0.5432 0.252242 -0.0726253 -0.964935 0.566434 -0.331834 -0.754347 0.131793 -0.0464622 -0.990188 0.296268 -0.210667 -0.931582 0.00067044 0.00150099 -0.999999 0.00188004 0.000765898 -0.999998 -0.130182 0.0503085 -0.990213 -0.295567 0.211023 -0.931724 -0.250163 0.0787511 -0.964996 -0.571868 0.3272 -0.752268 -0.345704 0.0727306 -0.935521 -0.791051 0.289293 -0.539025 -0.400353 0.0329011 -0.91577 -0.911866 0.10775 -0.396094 -0.401186 -0.0219419 -0.915734 -0.908058 -0.129434 -0.398343 -0.347677 -0.0637658 -0.935444 -0.782981 -0.303102 -0.543203 -0.252241 -0.0726271 -0.964935 -0.566432 -0.331835 -0.754348 -0.137085 0.0555399 0.989001 0.000831601 0.00163095 0.999998 0.00212994 0.00082139 0.999997 -0.300994 0.214648 0.929155 -0.264039 0.0871549 0.960566 -0.580919 0.331363 0.743459 -0.365805 0.0806738 0.927189 -0.800195 0.291036 0.524391 -0.424418 0.0364527 0.904732 -0.919246 0.106986 0.378867 -0.42538 -0.0246039 0.90468 -0.914935 -0.131647 0.381527 -0.368089 -0.0709603 0.927079 -0.790923 -0.306872 0.529405 -0.266464 -0.0804823 0.960479 -0.574496 -0.336749 0.746026 -0.138989 -0.0513003 0.988964 -0.301654 -0.214326 0.929015 -0.000765759 0.00170244 0.999998 -0.00212395 0.000819002 0.999997 0.137088 0.0555021 0.989003 0.300995 0.214647 0.929155 0.263837 0.0869151 0.960643 0.580903 0.331376 0.743466 0.365297 0.0803628 0.927416 0.800182 0.291059 0.524399 0.423666 0.0363684 0.905088 0.919244 0.106997 0.378869 0.424642 -0.0243215 0.905034 0.914934 -0.131655 0.381528 0.367606 -0.0705215 0.927304 0.790921 -0.306876 0.529406 0.266273 -0.080199 0.960555 0.574499 -0.336748 0.746024 0.138989 -0.0512655 0.988966 0.30166 -0.214324 0.929014 0 0.000289326 -1 0 -0.00334686 -0.999994 0 0.00409347 -0.999992 0 0.00631756 -0.99998 0 0.00592046 -0.999982 0 0.00305796 -0.999995 0 -0.000932801 -1 -4.79234e-08 -0.00416292 -0.999991 -4.12362e-09 -0.00511401 -0.999987 0 -0.00336235 -0.999994 0 0.000259693 -1 0 0.00407382 -0.999992 -1.76502e-07 0.00631669 -0.99998 1.32243e-07 0.00592444 -0.999982 5.93714e-08 0.00306103 -0.999995 0 -0.000933754 -0.999999 0 -0.00416781 -0.999991 0 -0.00511297 -0.999987 0.384153 -0.0473881 -0.922052 0.249282 -0.0408687 -0.967568 0.406829 0.59411 -0.693919 0.627016 0.401107 -0.667805 0.536986 0.828381 -0.159474 0.770189 0.60864 -0.190698 0.70141 0.651475 0.289144 0.813816 0.506263 0.285308 0.867851 0.183422 0.461726 0.819425 0.158623 0.5508 0.880868 -0.322722 0.346297 0.783767 -0.31334 0.536216 0.702314 -0.700216 0.128268 0.624322 -0.743664 0.239134 0.363741 -0.903248 -0.227673 0.317391 -0.898653 -0.302796 -0.00162535 -0.685955 -0.727642 -0.0584943 -0.586452 -0.807869 -0.249266 -0.0408894 -0.967571 -0.384138 -0.0473998 -0.922058 -0.406813 0.594091 -0.693945 -0.627022 0.401112 -0.667797 -0.536987 0.828382 -0.15946 -0.770188 0.608642 -0.190696 -0.701416 0.651453 0.289179 -0.813816 0.506257 0.28532 -0.867854 0.18346 0.461705 -0.819429 0.158647 0.550788 -0.880888 -0.322665 0.346301 -0.783774 -0.313319 0.536218 -0.702297 -0.700233 0.128263 -0.624335 -0.74365 0.239147 -0.36378 -0.90324 -0.227644 -0.317413 -0.898652 -0.302778 0.00162712 -0.685954 -0.727643 0.0584986 -0.58645 -0.80787 0.45607 -0.282463 -0.843928 0.782947 0.0221796 -0.621693 0.630029 -0.388426 -0.67245 0.363615 -0.519528 -0.773224 0.937875 0.184796 -0.293669 0.786508 -0.314063 -0.53176 0.980802 0.188721 0.0491144 0.857609 -0.314236 -0.407139 0.952056 -0.00110094 0.305923 0.860398 -0.379016 -0.34068 0.871493 -0.336982 0.35629 0.798339 -0.483617 -0.358844 0.718096 -0.684086 0.127923 0.647829 -0.603365 -0.465047 0.437636 -0.836538 -0.329665 0.370541 -0.682341 -0.630167 0.0162955 -0.657125 -0.753606 -0.00167219 -0.647109 -0.762396 -0.456078 -0.28246 -0.843925 -0.363645 -0.519539 -0.773202 -0.78295 0.0221812 -0.621689 -0.630019 -0.388419 -0.672463 -0.93787 0.184801 -0.293682 -0.786513 -0.314072 -0.531748 -0.980802 0.18872 0.0491194 -0.857611 -0.314239 -0.407134 -0.952056 -0.00110029 0.305922 -0.860397 -0.379013 -0.340684 -0.871509 -0.336942 0.35629 -0.798365 -0.483558 -0.358866 -0.718127 -0.68405 0.127941 -0.647861 -0.603324 -0.465056 -0.437642 -0.836536 -0.329661 -0.370526 -0.682353 -0.630163 -0.0162964 -0.657124 -0.753606 0.00166898 -0.647108 -0.762397 -0.00410169 0.00854653 0.999955 -0.000118319 0.000789346 1 -0.00782269 0.0134782 0.999879 -0.0107615 0.0130622 0.999857 -0.0124064 0.00728495 0.999896 -0.0124199 -0.00110347 0.999922 -0.0107934 -0.00797964 0.99991 -0.00785446 -0.0101091 0.999918 -0.00412199 -0.0067455 0.999969 -0.00013067 0.000275979 1 0.00366369 0.00763024 0.999964 0.00689354 0.0120247 0.999904 0.0092567 0.0115536 0.99989 0.010515 0.00647773 0.999924 0.0105259 -0.000859204 0.999944 0.00928176 -0.00704359 0.999932 0.00691787 -0.00916673 0.999934 0.00367941 -0.00614367 0.999974 -0.000890366 0.00052247 0.999999 -0.00230432 0.00268599 0.999994 -0.24194 0.582626 0.775894 -0.32463 0.495542 0.805639 -0.446718 0.866597 0.222381 -0.599215 0.731356 0.325669 -0.581652 0.728024 -0.362853 -0.776637 0.604877 -0.175949 -0.642927 0.284627 -0.711078 -0.854781 0.221842 -0.469186 -0.645248 -0.261226 -0.717925 -0.852078 -0.242266 -0.463973 -0.588343 -0.713699 -0.380114 -0.769974 -0.616435 -0.164768 -0.45425 -0.866191 0.208253 -0.592199 -0.733192 0.33426 -0.242671 -0.583269 0.775183 -0.320644 -0.493981 0.80819 0.0023288 0.00271505 0.999994 0.000922475 0.000540039 0.999999 0.241997 0.582674 0.77584 0.324686 0.495559 0.805605 0.446747 0.866592 0.222343 0.599265 0.731341 0.325611 0.581679 0.727984 -0.362889 0.77665 0.604856 -0.175967 0.642938 0.284612 -0.711074 0.854786 0.221834 -0.469182 0.64524 -0.261166 -0.717954 0.85208 -0.242239 -0.463983 0.58831 -0.713759 -0.38005 0.769931 -0.616505 -0.164702 0.454199 -0.866197 0.208341 0.592142 -0.73321 0.334322 0.242642 -0.58325 0.775206 0.320645 -0.493984 0.808187 0.00233005 -8.77777e-05 0.999997 -0.390051 0.328572 0.860175 -0.212728 0.129908 0.968437 0.00073435 0.00072121 0.999999 -0.704409 0.476073 0.526462 -0.415727 0.209131 0.885119 -0.900204 0.392801 0.187988 -0.589582 0.197284 0.783245 -0.988645 0.149864 -0.0110467 -0.697855 0.0832521 0.711384 -0.989025 -0.147298 -0.0115151 -0.698392 -0.0795722 0.711278 -0.901041 -0.39131 0.187087 -0.590983 -0.194083 0.782989 -0.70567 -0.475304 0.525468 -0.417411 -0.206773 0.88488 -0.393125 -0.328232 0.858904 -0.214285 -0.128235 0.968317 -0.00229914 -8.62389e-05 0.999997 -0.000722433 0.000709542 0.999999 0.390107 0.328564 0.860152 0.212759 0.129875 0.968435 0.704508 0.476014 0.526383 0.415789 0.209043 0.88511 0.900215 0.392783 0.187975 0.589591 0.197258 0.783244 0.988639 0.149901 -0.0110373 0.697846 0.0833043 0.711387 0.989014 -0.147375 -0.0114975 0.698379 -0.0796745 0.71128 0.900991 -0.3914 0.18714 0.590946 -0.194171 0.782995 0.705643 -0.475321 0.525488 0.417405 -0.206782 0.884881 0.393174 -0.328225 0.858884 0.214304 -0.128214 0.968315 -0.0145539 0.00850893 0.999858 2.22039e-05 0.00050925 1 -0.0275607 0.0131071 0.999534 -0.0374468 0.0121217 0.999225 -0.0428302 0.00600929 0.999064 -0.0428581 -0.00236441 0.999078 -0.0375138 -0.00905327 0.999255 -0.0276338 -0.0109301 0.999558 -0.0146094 -0.00715433 0.999868 -2.16013e-05 0.000495477 1 0.0145554 0.00847046 0.999858 0.0275617 0.0130695 0.999535 0.0374459 0.0121176 0.999225 0.0428298 0.00601126 0.999064 0.0428586 -0.00236726 0.999078 0.0375144 -0.00907882 0.999255 0.0276331 -0.0109583 0.999558 0.0146092 -0.00716133 0.999868 + + + + + + + + + + 0.414439 0.845202 -0.337451 0.207203 0.973297 0.0987896 0.334319 0.93849 0.0864095 0.447441 0.823307 -0.349232 0.568458 0.497292 -0.655405 0.53715 0.498726 -0.680251 0.63474 0.0208274 -0.772445 0.579269 0.0371861 -0.814287 0.594036 -0.465178 -0.656301 0.563498 -0.435067 -0.702273 0.440069 -0.834233 -0.332259 0.496653 -0.783203 -0.37407 0.196989 -0.974586 0.106665 0.396417 -0.915241 0.0720184 0.471798 0.793506 -0.384389 0.41438 0.839913 -0.35048 0.172043 0.980853 0.0912574 0.3712 0.926101 0.067437 0.538899 0.441682 -0.71729 0.568494 0.469803 -0.675352 0.554941 -0.0363582 -0.831095 0.611635 -0.0207721 -0.790867 0.512674 -0.503484 -0.695463 0.545609 -0.500352 -0.672279 0.421973 -0.831749 -0.360738 0.390946 -0.850442 -0.352008 0.3075 -0.948223 0.0794777 0.18255 -0.979337 0.0870357 0.456492 0.808239 -0.371974 0.374687 0.92452 0.0698004 0.52703 0.484751 -0.698037 0.568616 0.0409225 -0.821584 0.568035 -0.399794 -0.719375 0.538343 -0.727975 -0.424546 0.517838 -0.855438 -0.00831051 0.493586 0.869661 -0.00792125 0.513656 0.741393 -0.431849 0.543301 0.408483 -0.733461 0.543838 -0.0396338 -0.838253 0.502002 -0.490028 -0.712647 0.430728 -0.817551 -0.382208 0.347784 -0.935334 0.0647886 0.35165 0.799453 -0.48705 -0.125758 0.954141 -0.271663 -0.0954656 0.986241 -0.134967 0.340443 0.833106 -0.435928 0.651757 0.431797 -0.62351 0.627371 0.458311 -0.629568 0.747444 -0.00499718 -0.664307 0.724542 0.000515037 -0.689231 0.656973 -0.445911 -0.607907 0.639566 -0.457147 -0.618039 0.369218 -0.822673 -0.432304 0.368064 -0.836524 -0.405903 -0.0890141 -0.985147 -0.14684 -0.0574741 -0.995458 -0.0758924 0.349437 0.83388 -0.427245 0.352198 0.81821 -0.45441 -0.102716 0.980173 -0.169444 -0.073411 0.99258 -0.096937 0.619295 0.456086 -0.639109 0.637861 0.443836 -0.629398 0.704332 0.00035925 -0.70987 0.728024 0.00603943 -0.685525 0.607891 -0.455691 -0.650242 0.633461 -0.427509 -0.644953 0.321992 -0.828822 -0.457576 0.335955 -0.792083 -0.509645 -0.112302 -0.980908 -0.158769 -0.137381 -0.945015 -0.29677 0.447926 0.70695 -0.547343 -0.0216668 0.859837 -0.510108 -0.0650923 0.873325 -0.48277 0.410304 0.729039 -0.547862 0.713072 0.369561 -0.595779 0.69383 0.391053 -0.604713 0.78232 0.00718231 -0.622836 0.78031 0.00464105 -0.625376 0.719207 -0.352161 -0.598935 0.70407 -0.393273 -0.591288 0.478656 -0.709772 -0.516828 0.419646 -0.761272 -0.494331 -0.0055663 -0.905129 -0.425101 -0.0814688 -0.934021 -0.347805 0.407519 0.751782 -0.518412 0.469899 0.697482 -0.54103 -0.00589629 0.892842 -0.450331 -0.0872176 0.923986 -0.372348 0.687068 0.387672 -0.614531 0.702985 0.3445 -0.622199 0.761527 -0.00422082 -0.64812 0.763483 -0.00712048 -0.645789 0.677231 -0.384244 -0.627468 0.696964 -0.361965 -0.619049 0.399248 -0.71719 -0.571174 0.43836 -0.694075 -0.571051 -0.0684182 -0.858968 -0.507438 -0.0227079 -0.844784 -0.534626 -0.0886789 0.978346 0.187015 -0.0798558 0.934466 0.346982 0.427303 0.779131 0.458659 0.391481 0.823955 0.409684 0.737776 0.417101 0.530766 0.703528 0.451695 0.548653 0.833041 -0.00585685 0.553181 0.810506 0.00376219 0.585718 0.740474 -0.433337 0.513728 0.723572 -0.444895 0.527743 0.433077 -0.80884 0.39777 0.429312 -0.826118 0.364994 -0.0729804 -0.976129 0.204566 -0.0537004 -0.993223 0.103072 0.433589 0.82768 0.356297 -0.0502345 0.994072 0.0964206 -0.0707236 0.977598 0.198241 0.436349 0.810206 0.391365 0.728737 0.444773 0.520691 0.743968 0.43395 0.508133 0.813955 -0.00396164 0.580914 0.835962 0.00568597 0.548758 0.706421 -0.452228 0.54448 0.739812 -0.417338 0.527738 0.39393 -0.824769 0.405678 0.42951 -0.781757 0.452081 -0.0866766 -0.979323 0.182792 -0.0792814 -0.93695 0.34035 -0.0263307 0.897008 0.441229 0.0201956 0.879497 0.475477 0.501596 0.723387 0.474461 0.466317 0.744069 0.478444 0.774934 0.378021 0.506535 0.756676 0.396741 0.519652 0.846684 0.00423864 0.532079 0.844309 0.00186481 0.535853 0.774906 -0.37055 0.512069 0.762744 -0.403714 0.505209 0.511325 -0.737724 0.440807 0.464607 -0.778999 0.421071 0.00477656 -0.931068 0.364815 -0.0579075 -0.95326 0.296549 0.467595 0.781233 0.413557 -0.0565394 0.955493 0.289546 0.00467468 0.934091 0.357004 0.513424 0.740952 0.43288 0.765995 0.404741 0.499436 0.777644 0.371913 0.506903 0.846624 -0.00194882 0.532188 0.848341 -0.00425772 0.529434 0.759143 -0.396444 0.51627 0.776255 -0.378736 0.503971 0.467407 -0.744935 0.476027 0.502377 -0.724742 0.471557 -0.0273669 -0.895496 0.444226 0.0200651 -0.881156 0.4724 0.469296 0.877374 -0.0998773 0.392544 0.909578 -0.136301 0.526596 0.802796 0.27967 0.560405 0.764135 0.319443 0.63618 0.479355 0.60456 0.635025 0.43883 0.635745 0.68183 0.00928509 0.731452 0.659839 -0.00718088 0.751373 0.635389 -0.460472 0.619877 0.616183 -0.436668 0.655469 0.503741 -0.801546 0.322132 0.521056 -0.744063 0.418174 0.310966 -0.943821 -0.111808 0.464265 -0.885072 0.0332515 0.31144 0.943645 -0.111978 0.504618 0.801214 0.321585 0.522387 0.743368 0.417751 0.465111 0.884626 0.033312 0.636693 0.460173 0.618759 0.617764 0.436149 0.654325 0.68341 -0.00922651 0.729977 0.661464 0.00724303 0.749942 0.637969 -0.478829 0.60309 0.636775 -0.438204 0.634424 0.527039 -0.802864 0.278639 0.56235 -0.763111 0.318473 0.388488 -0.911687 -0.133807 0.471412 -0.876188 -0.100328 0.227927 0.963898 -0.137657 0.463062 0.844358 0.269504 0.648447 0.500319 0.573757 0.727342 0.0127305 0.686157 0.66332 -0.482793 0.571767 0.449059 -0.849178 0.277926 0.11339 -0.988473 -0.100318 0.114075 0.988333 -0.100923 0.44977 0.849031 0.277225 0.664516 0.482625 0.570519 0.72904 -0.0127167 0.684353 0.649782 -0.501833 0.570917 0.466225 -0.843446 0.266895 0.23075 -0.963382 -0.13656 0.559847 0.761997 0.325473 0.487342 0.868859 -0.0870703 0.624438 0.44923 0.63896 0.658181 0.0110455 0.752778 0.616612 -0.411956 0.670881 0.510961 -0.723991 0.463417 0.481646 -0.871261 0.0944483 0.512787 0.722962 0.463006 0.483071 0.870442 0.0947276 0.618509 0.411279 0.669549 0.659952 -0.0109545 0.751228 0.626287 -0.44855 0.637627 0.561835 -0.760928 0.324546 0.489468 -0.867625 -0.08745 0.0566526 0.996784 -0.0566795 -0.0342235 0.998299 0.0471978 0.392737 0.84931 0.352747 0.406142 0.861262 0.305412 0.684723 0.473688 0.553872 0.660662 0.49815 0.56158 0.788972 0.00142455 0.614427 0.762557 0.01387 0.646772 0.702655 -0.467818 0.536118 0.688894 -0.471962 0.550161 0.423855 -0.844755 0.326704 0.434615 -0.848994 0.30053 -0.0128506 -0.999751 0.0182489 0.037103 -0.998378 -0.0431926 -0.00912498 0.999874 0.0129587 0.426992 0.845176 0.321489 0.436135 0.848854 0.29872 0.0388656 0.99822 -0.045244 0.707408 0.466946 0.530599 0.690861 0.471789 0.547838 0.792712 -0.00165829 0.609594 0.76491 -0.0139856 0.643985 0.687694 -0.473897 0.549999 0.662491 -0.499633 0.558098 0.395452 -0.84953 0.349166 0.411119 -0.860394 0.301168 -0.031585 -0.998551 0.0435593 0.0626839 -0.996184 -0.0607351 0.354267 0.849726 -0.390463 -0.0321418 0.998887 -0.0345188 0.0594828 0.99712 0.0470403 0.374225 0.856496 -0.355486 0.616085 0.474819 -0.62848 0.595012 0.491437 -0.635964 0.706988 0.00334062 -0.707217 0.679721 0.0155823 -0.733305 0.625629 -0.468367 -0.623875 0.615719 -0.466207 -0.635249 0.371312 -0.847083 -0.380235 0.396693 -0.847089 -0.353658 -0.0187435 -0.99961 -0.0207094 0.0538136 -0.997433 0.0472472 0.371655 0.848477 -0.376774 0.351082 0.846 -0.40128 -0.0366807 0.998505 -0.0405284 0.0273404 0.999383 0.0220336 0.592779 0.468131 -0.655337 0.604297 0.467911 -0.644891 0.657956 -0.0154895 -0.752897 0.686083 -0.00299406 -0.727517 0.574064 -0.492151 -0.654399 0.595757 -0.473872 -0.648474 0.353099 -0.857889 -0.373293 0.333957 -0.848237 -0.411056 0.0374631 -0.998859 0.0296266 -0.0525004 -0.997028 -0.0563829 0.376629 0.763417 -0.524733 -0.109741 0.911397 -0.396625 0.675502 0.410815 -0.612314 0.768181 -0.00386163 -0.640221 0.676857 -0.428612 -0.598461 0.376936 -0.801078 -0.464967 -0.105649 -0.965799 -0.236793 0.361918 0.794305 -0.48795 -0.116241 0.958442 -0.260532 0.658919 0.4249 -0.620713 0.749283 0.00453894 -0.662234 0.658171 -0.405244 -0.634499 0.363453 -0.753521 -0.547822 -0.116727 -0.89911 -0.421871 0.928315 0.37072 -0.0282686 0.932064 0.359477 0.0450896 0.910979 -0.371005 0.180203 0.921167 -0.317134 0.225558 0.930473 0.322299 -0.174192 0.923852 -0.243065 0.295664 0.931991 0.220244 -0.287898 0.925185 -0.149064 0.349018 0.932816 0.0827264 -0.35073 0.92595 -0.0455386 0.374889 0.932999 -0.0679478 -0.353407 0.926128 0.0604535 0.372333 0.93254 -0.207395 -0.295561 0.92571 0.1621 0.341738 0.931392 -0.313055 -0.185759 0.924692 0.252554 0.284886 0.929856 -0.365111 -0.0454177 0.922794 0.324104 0.208345 0.932474 -0.359635 0.0339733 0.912122 0.37147 0.173333 0.928926 -0.368638 0.0346785 0.93233 -0.35958 -0.0382571 0.912052 0.371442 -0.173757 0.921781 0.31962 -0.219459 0.930918 -0.318085 0.179481 0.92426 0.247413 -0.29074 0.932265 -0.214439 0.291371 0.925442 0.154811 -0.34582 0.932924 -0.076069 0.351946 0.926054 0.052034 -0.373787 0.932942 0.0746132 0.35221 0.926077 -0.0539509 -0.373458 0.932318 0.213213 0.292103 0.925503 -0.156337 -0.344968 0.930998 0.317277 0.180492 0.924329 -0.248185 -0.289864 0.929316 0.367217 0.0390212 0.922246 -0.32161 -0.214545 0.932236 0.359544 -0.0407859 0.911034 -0.371028 -0.179877 0.0341443 0.999382 -0.00830869 0.0981326 0.994844 -0.0256077 0.152734 0.987909 -0.0266147 0.188823 0.981727 -0.0236033 0.202222 0.97934 -0.000469904 0.188782 0.981722 0.0241754 0.152682 0.987906 0.0270008 0.0980084 0.994838 0.0262985 0.0338916 0.99938 0.0095518 -0.0342534 0.999383 -0.00777439 -0.0986406 0.994862 -0.0227771 -0.152928 0.987917 -0.0251704 -0.189159 0.981763 -0.0189727 -0.202224 0.979339 -0.000491431 -0.189123 0.98176 0.0194694 -0.152903 0.987916 0.0253564 -0.0984089 0.994855 0.0240702 -0.0341456 0.999382 0.0083054 0.669961 -0.697613 0.253947 0.687787 -0.632451 0.356307 0.688974 -0.638869 -0.342289 0.669518 -0.697152 -0.256368 0.69104 -0.507154 -0.515033 0.692088 -0.324878 -0.644569 0.692613 -0.112664 -0.712457 0.692584 0.109851 -0.712923 0.69201 0.322503 -0.645844 0.690947 0.505847 -0.516441 0.688374 0.635529 -0.349633 0.671201 0.698902 -0.247034 0.689487 0.641901 0.335516 0.670787 0.69847 0.249369 0.691371 0.512155 0.509611 0.692278 0.331357 0.641056 0.692659 0.119941 0.711223 0.692485 -0.102555 0.714105 0.691767 -0.315976 0.649322 0.690567 -0.500803 0.521838 0.405479 0.914095 0.00426759 0.427475 0.904025 -0.00191605 0.93301 0.359842 -0.00227927 0.883136 0.430395 0.186632 0.338702 0.940868 0.00693746 0.730123 0.61591 0.295932 0.228288 0.973583 0.00462663 0.479815 0.835258 0.268554 0.0826984 0.996573 -0.00186604 0.159695 0.98097 0.110431 -0.0774537 0.996951 -0.00946334 -0.182784 0.977966 -0.100859 -0.224521 0.974365 -0.0142769 -0.494947 0.829571 -0.258532 -0.336798 0.941474 -0.013925 -0.735185 0.612983 -0.289407 -0.404844 0.914343 -0.00887528 -0.882909 0.430556 -0.187331 -0.427475 0.904025 -0.00174863 -0.93301 0.359842 -0.00227923 -0.405487 0.914091 0.00421086 -0.883136 0.430394 0.186633 -0.338841 0.940822 0.00642612 -0.730129 0.615906 0.295925 -0.228556 0.973523 0.00393773 -0.479829 0.835253 0.268546 -0.0828215 0.996562 -0.00213173 -0.159699 0.98097 0.110429 0.0776654 0.996939 -0.0090061 0.182792 0.977965 -0.100855 0.224837 0.974303 -0.0134678 0.494952 0.82957 -0.258528 0.336948 0.941428 -0.0133758 0.735183 0.612984 -0.289409 0.404852 0.91434 -0.00881442 0.882909 0.430556 -0.187331 0 0.99999 -0.00456357 0 1 4.06076e-05 -1.02854e-07 0.999975 -0.00712165 -9.66149e-08 0.999978 -0.00668608 1.76645e-07 0.999994 -0.0035705 9.96207e-08 1 0.000811756 -2.25386e-07 0.99999 0.00450412 -3.49431e-07 0.999983 0.00577893 -3.14168e-07 0.999993 0.0038632 -3.51797e-07 1 -0.000647896 -3.49713e-07 0.999983 -0.00585326 -3.90347e-07 0.999958 -0.00922658 -2.44863e-07 0.999961 -0.00881744 1.18381e-07 0.99999 -0.00456885 1.59974e-07 0.999999 0.00140026 -1.32839e-08 0.999982 0.00604499 -8.67973e-08 0.999974 0.00722243 0 0.999989 0.00472146 0.998368 -0.0562456 -0.00991954 0.901591 -0.432454 0.0108333 0.832683 -0.239706 0.499179 0.930163 0.0722741 0.359963 0.652423 0.209619 0.728289 0.733813 0.401004 0.548374 0.408144 0.677524 0.611866 0.455081 0.756282 0.470042 0.145041 0.960315 0.23824 0.145226 0.972666 0.181191 -0.120704 0.966336 -0.227214 -0.166919 0.96913 -0.181452 -0.387843 0.691907 -0.608969 -0.47058 0.748984 -0.466452 -0.641295 0.221216 -0.734714 -0.740864 0.395933 -0.542547 -0.831438 -0.239744 -0.501232 -0.931593 0.071042 -0.356492 -0.900909 -0.433991 -0.00371383 -0.998331 -0.0562614 0.0130651 -0.832986 -0.250302 0.49344 -0.923008 0.0847044 0.375343 -0.649703 0.202426 0.732741 -0.72509 0.414914 0.549628 -0.401258 0.677668 0.616245 -0.449751 0.763197 0.463956 -0.141187 0.960814 0.238542 -0.143706 0.973565 0.177537 0.116556 0.966564 -0.228405 0.165297 0.969908 -0.178762 0.381053 0.691806 -0.613353 0.46585 0.755334 -0.460927 0.640311 0.213725 -0.737783 0.733569 0.408612 -0.543059 0.833989 -0.249444 -0.492179 0.925354 0.082649 -0.369986 0.883951 0.467575 0.00184043 0.812639 0.538943 0.221719 0.571403 0.814806 0.0979234 0.615237 0.788342 -0.000381441 0.630996 0.706206 0.321117 0.454856 0.879303 0.141183 0.392556 0.879915 0.267676 0.289926 0.949588 0.119274 0.132757 0.985843 0.10242 0.100408 0.993946 0.0446155 -0.130036 0.986073 -0.103689 -0.0969566 0.994075 -0.0491297 -0.390148 0.880545 -0.269118 -0.287345 0.949864 -0.123253 -0.629171 0.707069 -0.322795 -0.453587 0.879508 -0.143963 -0.810697 0.54018 -0.225779 -0.570894 0.814898 -0.100102 -0.883542 0.468336 -0.0039927 -0.615241 0.788339 -0.000432902 -0.814489 0.53753 0.218331 -0.571438 0.814798 0.0977899 -0.633524 0.704178 0.320594 -0.454946 0.879287 0.140989 -0.394561 0.878716 0.268663 -0.290048 0.949574 0.119085 -0.133479 0.985695 0.102905 -0.100457 0.993943 0.044552 0.130995 0.985839 -0.104701 0.0970257 0.994073 -0.0490389 0.392553 0.878982 -0.270726 0.287469 0.949851 -0.123061 0.632389 0.704186 -0.32281 0.453667 0.879496 -0.14378 0.813412 0.537417 -0.222583 0.570915 0.814897 -0.1 -0.311869 0.721666 -0.618009 -0.28775 0.691819 -0.662259 -0.225634 0.687371 -0.690369 -0.140627 0.707849 -0.692224 -0.0442009 0.73945 -0.671759 0.0540407 0.770612 -0.63501 0.146231 0.792494 -0.59209 0.228212 0.791972 -0.566304 0.289579 0.762697 -0.578305 0.311869 0.721783 -0.617873 0.287731 0.691714 -0.662376 0.225616 0.687319 -0.690428 0.140569 0.707716 -0.692372 0.0441746 0.739397 -0.671819 -0.0535795 0.771538 -0.633923 -0.146094 0.792795 -0.59172 -0.228333 0.791623 -0.566743 -0.289549 0.76286 -0.578105 -1.86265e-07 0.34202 0.939693 -5.74194e-07 -3.07944e-07 1 -2.02286e-07 -4.3719e-08 1 -7.45058e-09 0.34202 0.939692 -7.45058e-08 0.642788 0.766044 -4.47035e-08 0.642788 0.766044 -1.04308e-07 0.866025 0.5 -8.9407e-08 0.866025 0.5 -7.45058e-08 0.984808 0.173648 -6.33299e-08 0.984808 0.173648 -3.35276e-08 0.984808 -0.173648 -3.72529e-08 0.984808 -0.173648 -4.47035e-08 0.866025 -0.5 -2.98023e-08 0.866025 -0.5 1.49012e-08 0.642788 -0.766044 0 0.642788 -0.766044 -1.49012e-08 0.34202 -0.939693 1.49012e-08 0.34202 -0.939693 7.10543e-15 1.61448e-07 -1 -7.10543e-15 2.3754e-07 -1 0 0.34202 0.939693 -3.55271e-15 -1.61448e-07 1 0 -2.3754e-07 1 -7.45058e-09 0.34202 0.939693 -4.47035e-08 0.642787 0.766045 -5.96046e-08 0.642787 0.766045 -7.45058e-08 0.866025 0.5 -7.45058e-08 0.866025 0.5 -6.33299e-08 0.984808 0.173649 -4.47035e-08 0.984808 0.173649 -3.72529e-08 0.984808 -0.173648 -4.09782e-08 0.984808 -0.173648 -5.96046e-08 0.866026 -0.5 -4.47035e-08 0.866026 -0.5 -2.98023e-08 0.642788 -0.766044 0 0.642788 -0.766044 0 0.342021 -0.939692 0 0.342021 -0.939692 -1.77636e-15 8.649e-08 -1 0 1.26102e-07 -1 0.00756763 0.999971 -2.75206e-07 0.0217845 0.999763 -1.52714e-06 0.0333641 0.999443 -3.92669e-07 0.0409153 0.999163 -3.17977e-06 0.0435364 0.999052 -2.01979e-07 0.0409154 0.999163 1.74879e-06 0.033364 0.999443 6.82892e-07 0.0217844 0.999763 7.12677e-06 0.00756715 0.999971 1.51829e-06 -0.0075668 0.999971 1.52746e-06 -0.0217835 0.999763 1.61235e-07 -0.0333636 0.999443 -2.79892e-06 -0.0409151 0.999163 2.82307e-07 -0.0435361 0.999052 4.72782e-07 -0.0409151 0.999163 7.8755e-08 -0.0333637 0.999443 -1.78121e-06 -0.0217836 0.999763 -8.94652e-08 -0.00756711 0.999971 -3.56423e-06 -0.407895 0.913027 0.00166978 -0.386015 0.922457 0.00810995 -0.877469 0.445223 0.178395 -0.926138 0.377179 0.00205603 -0.386565 0.922254 -0.00394975 -0.877716 0.445047 -0.177618 -0.322177 0.946659 -0.0062625 -0.728494 0.62418 -0.282306 -0.216485 0.976277 -0.00411294 -0.481616 0.837788 -0.257211 -0.0780749 0.996946 0.00166985 -0.161957 0.981086 -0.106016 0.0736751 0.997247 0.00838436 0.182111 0.97846 0.0972188 0.213304 0.976903 0.0126961 0.494639 0.832887 0.248258 0.320552 0.947148 0.0125081 0.732727 0.621728 0.276704 0.386018 0.922456 0.00809457 0.877474 0.445219 0.178379 0.407895 0.913027 0.00164392 0.926139 0.377178 0.00203006 0.386564 0.922254 -0.00396532 0.877711 0.44505 -0.177634 0.322176 0.946659 -0.00626528 0.728493 0.624179 -0.282307 0.216489 0.976276 -0.00410037 0.481637 0.83778 -0.257197 0.0780807 0.996946 0.00168251 0.161976 0.981084 -0.106008 -0.0736757 0.997247 0.00838256 -0.182115 0.978459 0.0972165 -0.213307 0.976903 0.0126878 -0.494648 0.832884 0.248251 -0.320552 0.947149 0.012506 -0.732728 0.621728 0.276702 0.409957 0.912088 0.00560338 0.432132 0.901809 -0.00183017 0.93301 0.359842 -0.00228283 0.883128 0.4304 0.186656 0.342418 0.939506 0.00887965 0.7301 0.615923 0.295961 0.23074 0.972995 0.00637463 0.479793 0.835266 0.268569 0.0834927 0.996508 -0.000983357 0.159686 0.980971 0.110434 -0.0784414 0.996871 -0.00977194 -0.182776 0.977967 -0.100862 -0.227078 0.973751 -0.0156268 -0.494928 0.829579 -0.258545 -0.340535 0.940101 -0.0156994 -0.735165 0.612994 -0.289432 -0.409315 0.912336 -0.0101996 -0.882903 0.43056 -0.18735 -0.432132 0.901809 -0.00186619 -0.93301 0.359842 -0.00227639 -0.409675 0.912214 0.0055933 -0.883128 0.4304 0.186657 -0.341943 0.939678 0.00889497 -0.730113 0.615915 0.295945 -0.230277 0.973104 0.00638124 -0.479815 0.835258 0.268555 -0.0833206 0.996522 -0.0010406 -0.159696 0.98097 0.110431 0.0781937 0.996889 -0.00989855 0.182783 0.977966 -0.100858 0.226572 0.973867 -0.0157562 0.494931 0.829578 -0.258543 0.340049 0.940276 -0.0157584 0.735163 0.612996 -0.289434 0.409034 0.912462 -0.0101861 0.882901 0.430562 -0.187356 -0 1 0.000289326 0 0.999994 -0.00334686 -0 0.999992 0.00409347 -0 0.99998 0.00631756 -0 0.999982 0.00592046 -0 0.999995 0.00305796 0 1 -0.000932801 -4.01465e-07 0.999991 -0.00416292 -1.45797e-07 0.999987 -0.00511401 0 0.999994 -0.00336235 -0 1 0.000259693 -0 0.999992 0.00407382 -1.46213e-07 0.99998 0.00631669 -1.81647e-07 0.999982 0.00592444 -1.0566e-07 0.999995 0.00306103 0 0.999999 -0.000933754 0 0.999991 -0.00416781 0 0.999987 -0.00511297 -0.738128 -0.615675 -0.275883 -0.55329 -0.826002 -0.107659 -0.390128 -0.57387 -0.720051 -0.561071 -0.36217 -0.744333 -0.274458 -0.00720128 -0.961572 -0.314053 0.101655 -0.943948 -0.168536 0.545758 -0.820819 -0.0748105 0.578146 -0.812497 0.0389687 0.901361 -0.431312 0.125748 0.887786 -0.442746 0.351159 0.936083 -0.020878 0.348461 0.936555 0.0379464 0.638248 0.699176 0.322167 0.587571 0.648779 0.483577 0.793097 0.172111 0.584273 0.765225 0.054122 0.641484 0.727422 -0.500112 0.469836 0.815411 -0.494933 0.300244 0.553293 -0.826003 -0.107633 0.738135 -0.615676 -0.275864 0.390141 -0.573892 -0.720026 0.561063 -0.362167 -0.744341 0.274449 -0.0071905 -0.961575 0.314051 0.101655 -0.943948 0.168507 0.545785 -0.820807 0.0747999 0.578152 -0.812493 -0.0389308 0.901353 -0.431332 -0.125726 0.887781 -0.442761 -0.351105 0.936103 -0.020898 -0.348444 0.936561 0.0379344 -0.638264 0.699159 0.322173 -0.587556 0.648796 0.483572 -0.793079 0.172155 0.584285 -0.765216 0.0541482 0.641492 -0.727426 -0.500111 0.469831 -0.815413 -0.494933 0.300238 -0.886638 -0.225882 -0.403548 -0.621396 -0.0192754 -0.78326 -0.572551 0.352669 -0.740142 -0.773515 0.294142 -0.561386 -0.33901 0.307749 -0.889023 -0.334048 0.507867 -0.79403 -0.0849324 0.640121 -0.763565 -0.0928284 0.684055 -0.7235 0.145388 0.881479 -0.449285 0.139373 0.818008 -0.558066 0.371757 0.927785 -0.0318195 0.363881 0.862193 -0.352439 0.617746 0.711202 0.335532 0.591814 0.783004 -0.191469 0.857233 0.277535 0.433735 0.789211 0.589033 -0.173742 0.983724 -0.124356 0.129706 0.862924 0.384329 -0.328105 0.886633 -0.225885 -0.403556 0.773501 0.294122 -0.561416 0.621391 -0.0192762 -0.783263 0.572562 0.352675 -0.740131 0.339024 0.307746 -0.889019 0.334035 0.507862 -0.794038 0.0849284 0.640121 -0.763565 0.0928234 0.684053 -0.723502 -0.145387 0.881479 -0.449286 -0.139369 0.818009 -0.558066 -0.37172 0.927799 -0.0318348 -0.363827 0.862226 -0.352414 -0.617709 0.711237 0.335525 -0.59178 0.783036 -0.191445 -0.857229 0.277541 0.433739 -0.789219 0.589019 -0.173753 -0.983723 -0.124356 0.129708 -0.862926 0.384329 -0.3281 0.0111953 0.999901 -0.00850015 0.0115827 0.999933 -0.000787923 0.0094089 0.999866 -0.0134044 0.00631519 0.999896 -0.0129947 0.00225396 0.999971 -0.00725753 -0.00217714 0.999997 0.00107651 -0.00626044 0.999949 0.00791237 -0.00938277 0.999906 0.0100353 -0.0111883 0.999915 0.00669902 -0.011583 0.999933 -0.000277474 -0.0106476 0.999914 -0.00759086 -0.00855737 0.999892 -0.0119655 -0.00555222 0.999918 -0.0115026 -0.00194353 0.999977 -0.00645764 0.00188449 0.999998 0.000839413 0.00551037 0.99996 0.00699264 0.00853737 0.999922 0.00910756 0.0106418 0.999925 0.00610421 0.862915 -0.505348 0.00103234 0.650981 -0.759085 0.00353899 0.604355 -0.535107 0.590268 0.799525 -0.311317 0.513655 0.473517 0.0181174 0.880598 0.620941 0.167793 0.765688 0.292329 0.603355 0.741961 0.376116 0.669303 0.640757 0.102091 0.95195 0.288736 0.118219 0.9635 0.240191 -0.0863153 0.958636 -0.271234 -0.136356 0.958569 -0.250107 -0.278639 0.620231 -0.733262 -0.389577 0.658673 -0.643723 -0.46631 0.0319982 -0.884043 -0.627641 0.159563 -0.761976 -0.604071 -0.534398 -0.5912 -0.801137 -0.313776 -0.509631 -0.650985 -0.759082 0.00357699 -0.862919 -0.505341 0.00106893 -0.604336 -0.535051 0.590337 -0.799507 -0.311276 0.513707 -0.473504 0.0181634 0.880604 -0.620895 0.167852 0.765712 -0.2923 0.6034 0.741936 -0.376093 0.669322 0.640751 -0.102083 0.951954 0.288725 -0.118212 0.963502 0.240187 0.0862734 0.958652 -0.271188 0.136331 0.958576 -0.250093 0.278692 0.620164 -0.733299 0.389658 0.658608 -0.643741 0.466352 0.0319072 -0.884024 0.627689 0.159497 -0.76195 0.604071 -0.53443 -0.591171 0.801133 -0.313779 -0.509636 0.999301 -0.0372991 -0.0023317 0.920038 0.101226 0.378529 0.680605 0.730841 0.0514664 0.713071 0.701091 -0.00102928 0.708814 0.432835 0.556989 0.579349 0.811098 0.0804704 0.433868 0.772046 0.464439 0.401088 0.913214 0.0718952 0.145567 0.97336 0.177147 0.14655 0.988806 0.0280447 -0.142961 0.973751 -0.177117 -0.143952 0.989109 -0.0306902 -0.432127 0.772803 -0.464803 -0.39902 0.9139 -0.0746387 -0.707558 0.433681 -0.557926 -0.57814 0.8117 -0.0830451 -0.918728 0.102327 -0.381402 -0.680118 0.731135 -0.0536826 -0.999302 -0.0372946 -0.00230076 -0.713072 0.70109 -0.0010126 -0.920014 0.101251 0.37858 -0.680597 0.730845 0.0515104 -0.708715 0.432901 0.557063 -0.579303 0.811121 0.080565 -0.433846 0.772055 0.464445 -0.401071 0.91322 0.0719161 -0.145606 0.973354 0.177148 -0.146587 0.988801 0.0280068 0.14304 0.97374 -0.177117 0.144024 0.9891 -0.0306172 0.432231 0.772758 -0.464781 0.399077 0.913881 -0.0745647 0.707585 0.433662 -0.557907 0.578144 0.811699 -0.0830343 0.918707 0.102347 -0.381447 0.68011 0.73114 -0.0537092 0.0410318 0.999127 -0.00790545 0.0435364 0.999052 -0.000509734 0.0337022 0.999358 -0.0121755 0.0222093 0.99969 -0.011295 0.00781083 0.999953 -0.00567979 -0.00765418 0.999969 0.00203817 -0.0220931 0.999722 0.00822809 -0.0336417 0.999384 0.00999811 -0.0410117 0.999137 0.00654986 -0.0435361 0.999052 -0.000495947 -0.0410309 0.999127 -0.00786696 -0.0337008 0.999358 -0.012138 -0.0222081 0.99969 -0.0112909 -0.00781066 0.999953 -0.00568177 0.00765521 0.999969 0.00204098 0.0220951 0.999722 0.00825356 0.0336429 0.999384 0.0100263 0.0410121 0.999137 0.00655686 + + + + + + + + + + 0.47501 0.0366418 0.480528 0.0075599 0.558191 0.0333669 0.54728 0.061444 0.471778 0.0665246 0.535539 0.0886983 0.469458 0.0971712 0.522853 0.115263 0.466678 0.127992 0.509762 0.141974 0.462366 0.158134 0.496903 0.169418 0.456059 0.187241 0.4842 0.197033 0.333704 0.37793 0.368631 0.367697 0.373794 0.396962 0.345522 0.405897 0.321711 0.350156 0.365226 0.337511 0.30944 0.323096 0.363373 0.306648 0.297558 0.296189 0.361973 0.27597 0.286636 0.268616 0.35964 0.246046 0.276575 0.240232 0.354941 0.216846 0.60928 0.0901461 0.622986 0.0610288 0.593074 0.118073 0.57527 0.144459 0.557758 0.170004 0.541761 0.19603 0.526014 0.223079 0.302987 0.430697 0.288068 0.403199 0.272885 0.37673 0.256164 0.3507 0.239163 0.323817 0.2238 0.295432 0.210978 0.265919 0.309568 0.042784 0.29973 0.0159054 0.344596 0.00503726 0.350892 0.033741 0.322267 0.0712475 0.359781 0.0636689 0.336985 0.101515 0.370152 0.0950188 0.351444 0.132004 0.380153 0.12648 0.36318 0.161069 0.387982 0.156674 0.370751 0.188785 0.392699 0.185608 0.443014 0.368641 0.467686 0.373749 0.45931 0.401237 0.437438 0.397435 0.451744 0.33867 0.480276 0.345031 0.462679 0.307498 0.495634 0.314971 0.473975 0.276454 0.511244 0.285143 0.483749 0.246793 0.52478 0.257063 0.490899 0.218287 0.535412 0.230487 0.216566 0.0873545 0.20141 0.0636793 0.22443 0.0493281 0.238452 0.0732842 0.23482 0.112101 0.254965 0.0984574 0.255605 0.137154 0.273918 0.124726 0.275827 0.161654 0.292779 0.151185 0.292266 0.185682 0.308463 0.177195 0.304506 0.210034 0.320022 0.202616 0.52192 0.391454 0.537864 0.400409 0.524922 0.424394 0.509628 0.416527 0.538359 0.365914 0.554998 0.376874 0.557991 0.340019 0.575931 0.35298 0.577712 0.31432 0.597446 0.32855 0.594961 0.289644 0.616422 0.304352 0.609682 0.266112 0.632268 0.281133 0.901399 0.0116918 0.95078 0.027073 0.940035 0.0530629 0.894363 0.0396519 0.926482 0.080764 0.885096 0.0690751 0.91055 0.110237 0.874369 0.100333 0.894836 0.139959 0.86399 0.13199 0.882244 0.168348 0.855822 0.16227 0.873878 0.195319 0.850633 0.190742 0.552765 0.95135 0.55779 0.979885 0.534499 0.984286 0.526327 0.957252 0.545102 0.920933 0.514164 0.928699 0.534817 0.889279 0.498575 0.898958 0.524186 0.857992 0.482746 0.869457 0.515025 0.82854 0.469292 0.841722 0.508105 0.800553 0.458655 0.815695 0.974837 0.0382481 0.997443 0.051103 0.983894 0.0758213 0.962383 0.063178 0.968058 0.102373 0.947928 0.0899826 0.949985 0.129609 0.931162 0.118291 0.932461 0.156199 0.914543 0.146723 0.918395 0.18178 0.901 0.174153 0.907974 0.207017 0.891179 0.20035 0.507546 0.96291 0.51716 0.989183 0.500302 0.995709 0.490096 0.970377 0.4944 0.935329 0.476402 0.944675 0.477917 0.906889 0.459047 0.918118 0.46126 0.878569 0.441082 0.890883 0.446901 0.851739 0.425348 0.864302 0.434542 0.826769 0.411888 0.83954 0.6767 0.0450605 0.708521 0.0281784 0.720043 0.056017 0.691418 0.0712236 0.730635 0.0833598 0.706926 0.0964063 0.741179 0.11014 0.723301 0.120497 0.752076 0.137222 0.739794 0.14451 0.762776 0.165401 0.754817 0.169952 0.771606 0.19456 0.76613 0.197672 0.637172 0.984049 0.646076 0.954911 0.654041 0.959466 0.642661 0.98716 0.656897 0.926758 0.669166 0.934065 0.667892 0.899689 0.685739 0.910084 0.678523 0.872922 0.702188 0.886026 0.689199 0.8456 0.717766 0.860878 0.700802 0.817793 0.732562 0.834755 0.744953 0.0144524 0.752277 0.043818 0.758709 0.0729997 0.765062 0.102224 0.771854 0.13178 0.778785 0.161631 0.784618 0.191571 0.624115 0.981052 0.63004 0.951127 0.637133 0.921285 0.644047 0.891715 0.650497 0.862485 0.657026 0.83331 0.664448 0.803965 0.663077 0.0881132 0.646284 0.0631294 0.683482 0.111403 0.706201 0.132841 0.7285 0.153418 0.747177 0.175456 0.759794 0.201498 0.661676 0.964984 0.648993 0.990996 0.680434 0.942999 0.702798 0.92247 0.725586 0.901082 0.74606 0.87784 0.762918 0.852901 0.796853 0.00528358 0.849559 0.00546109 0.846813 0.0348793 0.798784 0.0353691 0.842334 0.0654923 0.799408 0.0658475 0.836977 0.097292 0.799443 0.0969555 0.832062 0.129198 0.799885 0.128336 0.828644 0.159902 0.801198 0.159304 0.826977 0.189165 0.803052 0.189535 0.581534 0.978515 0.579997 0.949275 0.607553 0.948779 0.605586 0.978989 0.577051 0.918495 0.609152 0.917789 0.572211 0.886494 0.609705 0.886338 0.566951 0.854645 0.609845 0.855194 0.56258 0.824005 0.610577 0.824701 0.559953 0.794575 0.612623 0.794619 0.392855 0.030134 0.390245 0.0005 0.435738 0.000505033 0.434431 0.0301312 0.397642 0.0608817 0.435101 0.0606831 0.403614 0.0926232 0.436807 0.0922299 0.409185 0.124272 0.438102 0.123894 0.412977 0.154757 0.437831 0.154632 0.414595 0.184159 0.435829 0.184254 0.393294 0.365122 0.418086 0.366002 0.415528 0.395369 0.394135 0.394854 0.393923 0.334334 0.4228 0.335599 0.396158 0.302704 0.429312 0.304103 0.398803 0.271206 0.436224 0.272531 0.400378 0.240651 0.441918 0.241921 0.39989 0.210978 0.445409 0.212369 0.261346 0.061472 0.248873 0.0364313 0.276603 0.0877874 0.294199 0.115501 0.311667 0.143483 0.326104 0.170614 0.336048 0.196931 0.504476 0.384363 0.493772 0.410381 0.519703 0.357664 0.537989 0.330204 0.556397 0.303019 0.572426 0.277165 0.585634 0.252503 0.371116 0.779846 0.416357 0.785031 0.407523 0.862181 0.363258 0.856482 0.325488 0.775578 0.319562 0.852534 0.279707 0.772661 0.275894 0.849782 0.233859 0.771026 0.232173 0.848226 0.187984 0.770657 0.188426 0.847874 0.142115 0.771553 0.144686 0.848726 0.0962935 0.773733 0.10098 0.850774 0.0506021 0.777266 0.0572247 0.854019 0.00528359 0.781723 0.0128738 0.859004 0.371095 0.898127 0.416372 0.902989 0.40809 0.9802 0.363785 0.974818 0.325437 0.894185 0.320061 0.971181 0.279636 0.891595 0.276374 0.968741 0.233778 0.890287 0.232644 0.967497 0.1879 0.890246 0.188896 0.967458 0.14204 0.891471 0.145163 0.968623 0.0962343 0.893979 0.101472 0.970984 0.0505691 0.897839 0.0577409 0.974542 0.00528359 0.902619 0.0134267 0.979844 0.983679 0.880747 0.976071 0.901514 0.961893 0.918494 0.942719 0.929553 0.920954 0.93355 0.89919 0.929552 0.880016 0.918493 0.865839 0.901513 0.858231 0.880746 0.858232 0.858639 0.865839 0.837872 0.880017 0.820892 0.89919 0.809833 0.920954 0.805835 0.942719 0.809832 0.961893 0.820891 0.976071 0.837872 0.983679 0.858639 0.402477 0.879928 0.36107 0.874074 0.0597718 0.992153 0.018314 0.997636 0.102695 0.988792 0.145882 0.986489 0.189125 0.98534 0.232382 0.985379 0.275624 0.986606 0.318806 0.988985 0.361723 0.992425 0.403171 0.997983 0.0591293 0.871644 0.0176336 0.87683 0.102075 0.86859 0.145277 0.866597 0.188528 0.865757 0.231784 0.866105 0.275015 0.867641 0.318179 0.870329 0.82536 0.770508 0.865066 0.777509 0.865066 0.796143 0.818987 0.788018 0.790444 0.750349 0.778467 0.764624 0.764528 0.719464 0.748391 0.728781 0.750739 0.681577 0.732388 0.684813 0.750739 0.641259 0.732388 0.638023 0.764528 0.603373 0.748391 0.594056 0.790444 0.572487 0.778467 0.558213 0.82536 0.552329 0.818987 0.534819 0.865066 0.545328 0.865066 0.526694 0.904772 0.552329 0.911145 0.534819 0.939689 0.572487 0.951666 0.558213 0.965605 0.603373 0.981743 0.594055 0.979396 0.641259 0.997746 0.638023 0.979396 0.681577 0.997746 0.684813 0.965605 0.719464 0.981743 0.728781 0.939689 0.750349 0.951666 0.764624 0.904772 0.770508 0.911145 0.788018 0.848279 0.729046 0.872893 0.733386 0.826633 0.716549 0.810567 0.697402 0.802019 0.673915 0.802019 0.648921 0.810567 0.625434 0.826633 0.606288 0.848279 0.593791 0.872893 0.589451 0.897507 0.593791 0.919154 0.606288 0.93522 0.625434 0.943769 0.648921 0.943769 0.673915 0.93522 0.697402 0.919154 0.716549 0.897508 0.729046 0.921177 0.947069 0.920967 0.949593 0.893691 0.944667 0.894736 0.942346 0.869701 0.930803 0.871439 0.928957 0.851921 0.909559 0.854162 0.908369 0.842411 0.883543 0.844907 0.883134 0.842411 0.855842 0.844907 0.856252 0.851922 0.829826 0.854163 0.831016 0.869701 0.808582 0.87144 0.810428 0.893691 0.794717 0.894736 0.797038 0.920968 0.789791 0.921177 0.792315 0.948242 0.794724 0.947569 0.797182 0.972226 0.808593 0.970738 0.81065 0.989997 0.829838 0.987865 0.831215 0.9995 0.855847 0.99702 0.856332 0.9995 0.883539 0.99702 0.883055 0.989997 0.909548 0.987865 0.908171 0.972226 0.930792 0.970738 0.928735 0.948241 0.94466 0.947568 0.942202 0.920952 0.94388 0.895647 0.939249 0.897029 0.935411 0.920954 0.939848 0.873379 0.926392 0.875985 0.923263 0.856901 0.906669 0.860439 0.904615 0.848063 0.882541 0.852081 0.88183 0.848064 0.856845 0.852081 0.857556 0.856901 0.832717 0.860439 0.834771 0.87338 0.812992 0.875986 0.816122 0.895647 0.800136 0.897029 0.803974 0.920953 0.795504 0.920954 0.799536 0.946259 0.800133 0.944879 0.803973 0.968529 0.812989 0.965924 0.81612 0.985011 0.832713 0.981472 0.834769 0.993851 0.856844 0.989832 0.857555 0.993851 0.882542 0.989832 0.881831 0.985011 0.906672 0.981472 0.904616 0.968529 0.926396 0.965924 0.923265 0.946259 0.939251 0.944878 0.935412 0.110118 0.727446 0.0765407 0.721199 0.0471143 0.703824 0.025389 0.677445 0.0140146 0.645242 0.0143899 0.611116 0.0264159 0.579195 0.048585 0.553277 0.0782564 0.53645 0.111912 0.53079 0.145489 0.537037 0.174916 0.554412 0.19664 0.58079 0.208015 0.612994 0.207639 0.64712 0.195613 0.67904 0.173444 0.704958 0.143773 0.721786 0.0970971 0.458469 0.0970971 0.515118 0.0005 0.515118 0.0005 0.458469 0.0970971 0.401821 0.000500069 0.401821 0.0970971 0.345173 0.000500069 0.345173 0.0970971 0.288525 0.000500069 0.288525 0.0970971 0.231877 0.000500069 0.231877 0.0970971 0.175229 0.0005 0.175229 0.0970971 0.118581 0.0005 0.118581 0.0970971 0.0619322 0.0005 0.0619322 0.0970971 0.00528359 0.000500069 0.00528359 0.100955 0.0619323 0.100955 0.00528359 0.197552 0.00528359 0.197552 0.0619323 0.100955 0.118581 0.197552 0.118581 0.100955 0.175229 0.197552 0.175229 0.100955 0.231877 0.197552 0.231877 0.100955 0.288525 0.197552 0.288525 0.100955 0.345173 0.197552 0.345173 0.100955 0.401821 0.197552 0.401821 0.100955 0.458469 0.197552 0.458469 0.100955 0.515118 0.197552 0.515118 0.63258 0.430142 0.626772 0.445859 0.615855 0.458671 0.601146 0.467034 0.584421 0.469939 0.567695 0.467034 0.552987 0.458671 0.54207 0.445859 0.536261 0.430142 0.536261 0.413416 0.54207 0.397699 0.552987 0.384887 0.567695 0.376524 0.584421 0.373619 0.601146 0.376524 0.615855 0.384887 0.626772 0.397699 0.63258 0.413416 0.409832 0.710956 0.459597 0.702179 0.467264 0.72324 0.409833 0.73337 0.360066 0.702184 0.352401 0.723246 0.316302 0.676919 0.301896 0.694089 0.28382 0.638209 0.264409 0.649417 0.266536 0.590724 0.244463 0.594617 0.266536 0.540191 0.244463 0.5363 0.283818 0.492706 0.264407 0.481499 0.316299 0.453994 0.301892 0.436825 0.360061 0.428727 0.352395 0.407665 0.409826 0.419951 0.409825 0.397537 0.459591 0.428725 0.467257 0.407662 0.503355 0.45399 0.517761 0.436819 0.535838 0.492699 0.555248 0.481491 0.553124 0.540183 0.575197 0.53629 0.553124 0.590716 0.575198 0.594607 0.535842 0.638201 0.555253 0.649408 0.50336 0.676912 0.517768 0.694081 0.781756 0.496947 0.831442 0.505709 0.831442 0.529026 0.773781 0.518858 0.738064 0.47172 0.723076 0.489581 0.705635 0.43307 0.685442 0.444728 0.688381 0.385659 0.665418 0.389708 0.688381 0.335208 0.665418 0.331159 0.705635 0.287798 0.685442 0.27614 0.738064 0.249148 0.723076 0.231287 0.781756 0.223921 0.773781 0.202011 0.831442 0.21516 0.831442 0.191843 0.881128 0.223922 0.889103 0.202011 0.924822 0.249149 0.939809 0.231287 0.957251 0.287798 0.977445 0.276139 0.974507 0.335207 0.99747 0.331158 0.974507 0.385659 0.99747 0.389708 0.957251 0.433069 0.977445 0.444728 0.924822 0.471719 0.93981 0.489581 0.881129 0.496947 0.889104 0.518858 0.409831 0.662757 0.443112 0.656887 0.376551 0.656891 0.347284 0.639996 0.325562 0.61411 0.314003 0.582355 0.314002 0.548561 0.32556 0.516805 0.347281 0.490917 0.376546 0.474019 0.409826 0.46815 0.443106 0.474017 0.472373 0.490913 0.494097 0.516799 0.505656 0.548553 0.505658 0.582346 0.4941 0.614101 0.472378 0.639989 0.0721946 0.730207 0.071738 0.734423 0.0378506 0.714655 0.0407088 0.711314 0.0130716 0.684239 0.0171658 0.683134 0.0005 0.647253 0.00414022 0.648284 0.00131694 0.60845 0.003786 0.610362 0.0150573 0.572381 0.0169092 0.574131 0.0400935 0.543112 0.0421095 0.54467 0.0735973 0.523948 0.0758683 0.526091 0.111804 0.517127 0.113388 0.520563 0.150292 0.523815 0.149835 0.528031 0.18418 0.543581 0.181322 0.546922 0.208958 0.573997 0.204863 0.575101 0.221528 0.610983 0.217888 0.609951 0.22071 0.649785 0.218241 0.647874 0.20697 0.685853 0.205118 0.684103 0.181934 0.715124 0.179918 0.713565 0.148432 0.73429 0.146161 0.732147 0.110225 0.741112 0.108642 0.737675 0.0740892 0.727689 0.0426157 0.709084 0.0444284 0.706965 0.0751272 0.725098 0.0193602 0.680873 0.0217572 0.679446 0.00720346 0.646411 0.00991047 0.645861 0.00771865 0.60991 0.0103679 0.610315 0.0206903 0.575834 0.0229465 0.577126 0.0443778 0.548142 0.046003 0.55017 0.0760318 0.530046 0.0768423 0.532601 0.112012 0.52388 0.111888 0.52664 0.147941 0.530549 0.146903 0.533139 0.179415 0.549151 0.177602 0.551271 0.202669 0.577363 0.200272 0.57879 0.214825 0.611824 0.212118 0.612374 0.214309 0.648325 0.21166 0.64792 0.201337 0.682401 0.199081 0.681109 0.17765 0.710094 0.176026 0.708065 0.145998 0.728192 0.145188 0.725637 0.110018 0.734359 0.110142 0.731598 0.803656 0.41732 0.824358 0.420971 0.78545 0.406808 0.771938 0.390702 0.764748 0.370946 0.764748 0.349921 0.771938 0.330165 0.78545 0.31406 0.803656 0.303548 0.824358 0.299898 0.845061 0.303548 0.863267 0.31406 0.876781 0.330165 0.883972 0.349921 0.883972 0.370946 0.876781 0.390702 0.863267 0.406808 0.845061 0.41732 0.630812 0.257223 0.630812 0.258819 0.607925 0.254774 0.608472 0.253274 0.587809 0.243132 0.588837 0.241909 0.572893 0.225311 0.574277 0.224513 0.564963 0.203467 0.566537 0.20319 0.564963 0.180228 0.566537 0.180505 0.572893 0.158384 0.574278 0.159182 0.587809 0.140562 0.588837 0.141785 0.607924 0.128919 0.608471 0.130419 0.630812 0.124873 0.630812 0.12647 0.653699 0.12892 0.653152 0.13042 0.673814 0.140563 0.672786 0.141786 0.688732 0.158384 0.687347 0.159182 0.696664 0.180228 0.695089 0.180505 0.696664 0.203467 0.695089 0.20319 0.688733 0.225311 0.687348 0.224513 0.673815 0.243132 0.672787 0.241909 0.653699 0.254773 0.653152 0.253273 0.630812 0.255846 0.608943 0.25198 0.609431 0.250638 0.630812 0.254419 0.589723 0.240854 0.590642 0.239758 0.575472 0.223823 0.576711 0.223108 0.567897 0.20295 0.569307 0.202701 0.567897 0.180745 0.569307 0.180993 0.575473 0.159871 0.576712 0.160587 0.589724 0.14284 0.590642 0.143936 0.608943 0.131713 0.609431 0.133055 0.630812 0.127847 0.630812 0.129274 0.652681 0.131714 0.652193 0.133056 0.6719 0.142841 0.670982 0.143936 0.686152 0.159871 0.684914 0.160587 0.69373 0.180745 0.692319 0.180994 0.69373 0.20295 0.69232 0.202701 0.686153 0.223824 0.684914 0.223108 0.671901 0.240853 0.670983 0.239758 0.652681 0.251979 0.652193 0.250638 0.614651 0.236335 0.630812 0.239194 0.600445 0.228108 0.589908 0.21551 0.584304 0.200064 0.584304 0.183631 0.589908 0.168185 0.600445 0.155586 0.614651 0.147358 0.630812 0.144499 0.646973 0.147358 0.661179 0.155587 0.671717 0.168185 0.677321 0.183631 0.677322 0.200064 0.671717 0.21551 0.661179 0.228107 0.646973 0.236335 + + + + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 +

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

+
+
+
+ + + + 0.477581 -0.00994582 -0.300317 0.477581 -0.0286379 -0.307121 0.477581 -0.0438759 -0.319907 0.477581 -0.0538218 -0.337134 0.477581 -0.057276 -0.356723 0.477581 -0.0538218 -0.376313 0.477581 -0.0438759 -0.39354 0.477581 -0.028638 -0.406326 0.477581 -0.00994584 -0.413129 0.477581 0.00994594 -0.413129 0.477581 0.0286381 -0.406326 0.477581 0.0438761 -0.39354 0.477581 0.053822 -0.376313 0.477581 0.0572761 -0.356723 0.477581 0.0538219 -0.337134 0.477581 0.0438761 -0.319907 0.477581 0.0286381 -0.307121 0.477581 0.00994592 -0.300317 0.339593 -0.264285 -0.356723 0.282159 -0.280312 -0.356723 0.282159 -0.263407 -0.452596 0.339593 -0.248347 -0.447114 0.282159 -0.214732 -0.536905 0.339593 -0.202454 -0.526603 0.282159 -0.140156 -0.599481 0.339593 -0.132142 -0.585601 0.282159 -0.0486757 -0.632777 0.339593 -0.0458926 -0.616993 0.282159 0.0486757 -0.632777 0.339593 0.0458926 -0.616993 0.282159 0.140156 -0.599481 0.339593 0.132143 -0.585601 0.282159 0.214732 -0.536905 0.339593 0.202454 -0.526603 0.282159 0.263407 -0.452596 0.339593 0.248347 -0.447114 0.282159 0.280312 -0.356723 0.339593 0.264285 -0.356723 0.282159 0.263407 -0.260851 0.339593 0.248347 -0.266333 0.282159 0.214732 -0.176542 0.339593 0.202454 -0.186844 0.282159 0.140156 -0.113966 0.339593 0.132143 -0.127846 0.282159 0.0486758 -0.0806698 0.339593 0.0458927 -0.0964535 0.282159 -0.0486756 -0.0806697 0.339593 -0.0458925 -0.0964535 0.282159 -0.140156 -0.113966 0.339593 -0.132142 -0.127846 0.282159 -0.214731 -0.176542 0.339593 -0.202454 -0.186844 0.282159 -0.263407 -0.260851 0.339593 -0.248347 -0.266332 0.388456 -0.231605 -0.356723 0.388456 -0.217637 -0.435937 0.431142 -0.180486 -0.422415 0.431142 -0.19207 -0.356723 0.388456 -0.177419 -0.505596 0.431142 -0.147134 -0.480183 0.388456 -0.115802 -0.557299 0.431142 -0.0960348 -0.523061 0.388456 -0.0402177 -0.584809 0.431142 -0.0333525 -0.545875 0.388456 0.0402178 -0.584809 0.431142 0.0333526 -0.545875 0.388456 0.115802 -0.557299 0.431142 0.0960349 -0.523061 0.388456 0.177419 -0.505596 0.431142 0.147134 -0.480183 0.388456 0.217637 -0.435937 0.431142 0.180486 -0.422415 0.388456 0.231605 -0.356723 0.431142 0.19207 -0.356723 0.388456 0.217637 -0.27751 0.431142 0.180487 -0.291032 0.388456 0.177419 -0.207851 0.431142 0.147134 -0.233263 0.388456 0.115802 -0.156148 0.431142 0.0960349 -0.190386 0.388456 0.0402178 -0.128637 0.431142 0.0333527 -0.167572 0.388456 -0.0402176 -0.128637 0.431142 -0.0333524 -0.167572 0.388456 -0.115802 -0.156148 0.431142 -0.0960347 -0.190386 0.388456 -0.177419 -0.207851 0.431142 -0.147134 -0.233263 0.388456 -0.217637 -0.27751 0.431142 -0.180486 -0.291032 0.455478 -0.129424 -0.40383 0.455478 -0.13773 -0.356723 0.455478 -0.105507 -0.445255 0.455477 -0.0688651 -0.476001 0.455477 -0.0239166 -0.492361 0.455477 0.0239167 -0.492361 0.455477 0.0688652 -0.476001 0.455477 0.105508 -0.445255 0.455477 0.129424 -0.40383 0.455477 0.13773 -0.356723 0.455477 0.129424 -0.309617 0.455477 0.105508 -0.268192 0.455477 0.0688653 -0.237445 0.455477 0.0239167 -0.221086 0.455477 -0.0239165 -0.221085 0.455477 -0.068865 -0.237445 0.455478 -0.105507 -0.268192 0.455478 -0.129424 -0.309617 0.469513 -0.0992359 -0.356723 0.469513 -0.0932512 -0.390664 0.469513 -0.0760191 -0.420511 0.469513 -0.0496179 -0.442664 0.469513 -0.0172321 -0.454452 0.469513 0.0172322 -0.454452 0.469513 0.049618 -0.442664 0.469513 0.0760192 -0.420511 0.469513 0.0932513 -0.390664 0.469513 0.099236 -0.356723 0.469513 0.0932513 -0.322783 0.469513 0.0760192 -0.292936 0.469513 0.0496181 -0.270783 0.469513 0.0172322 -0.258995 0.469513 -0.0172321 -0.258995 0.469513 -0.0496179 -0.270783 0.469513 -0.076019 -0.292936 0.469513 -0.0932512 -0.322783 -0.000836521 -0.263407 -0.452596 0.282159 -0.263407 -0.452596 0.282159 -0.280312 -0.356723 -0.000836521 -0.280312 -0.356723 -0.000836521 -0.214732 -0.536905 0.282159 -0.214732 -0.536905 -0.000836536 -0.140156 -0.599481 0.282159 -0.140156 -0.599481 -0.000836536 0.0486757 -0.632777 0.282159 0.0486757 -0.632777 0.282159 -0.0486757 -0.632777 -0.000836536 -0.0486757 -0.632777 -0.000836536 0.140156 -0.599481 0.282159 0.140156 -0.599481 -0.000836551 0.214732 -0.536905 0.282159 0.214732 -0.536905 -0.000836551 0.263407 -0.452596 0.282159 0.263407 -0.452596 -0.000836551 0.280312 -0.356723 0.282159 0.280312 -0.356723 -0.000836551 0.263407 -0.260851 0.282159 0.263407 -0.260851 0.282159 0.280312 -0.356723 -0.000836551 0.280312 -0.356723 -0.000836551 0.214732 -0.176542 0.282159 0.214732 -0.176542 -0.000836536 0.140156 -0.113966 0.282159 0.140156 -0.113966 -0.000836536 0.0486758 -0.0806698 0.282159 0.0486758 -0.0806698 -0.000836536 -0.0486756 -0.0806697 0.282159 -0.0486756 -0.0806697 -0.000836521 -0.263407 -0.260851 0.282159 -0.263407 -0.260851 0.282159 -0.214731 -0.176542 -0.000836521 -0.214731 -0.176542 -0.000836521 -0.280312 -0.356723 0.282159 -0.280312 -0.356723 -0.379042 -0.264285 -0.356723 -0.379042 -0.248347 -0.447114 -0.321607 -0.263407 -0.452596 -0.321607 -0.280312 -0.356723 -0.379042 -0.202454 -0.526603 -0.321607 -0.214732 -0.536905 -0.379042 -0.132142 -0.585601 -0.321607 -0.140156 -0.599481 -0.379042 -0.0458926 -0.616993 -0.321607 -0.0486757 -0.632777 -0.379042 0.0458926 -0.616993 -0.321607 0.0486757 -0.632777 -0.379042 0.132142 -0.585601 -0.321607 0.140156 -0.599481 -0.379042 0.202454 -0.526603 -0.321607 0.214732 -0.536905 -0.379042 0.248347 -0.447114 -0.321607 0.263407 -0.452596 -0.379042 0.264285 -0.356723 -0.321607 0.280312 -0.356723 -0.379042 0.264285 -0.356723 -0.379042 0.248347 -0.266333 -0.321607 0.263407 -0.260851 -0.321607 0.280312 -0.356723 -0.379042 0.202454 -0.186844 -0.321607 0.214732 -0.176542 -0.379042 0.132143 -0.127846 -0.321607 0.140156 -0.113966 -0.379042 0.0458927 -0.0964536 -0.321607 0.0486758 -0.0806698 -0.379042 -0.0458925 -0.0964535 -0.321607 -0.0486756 -0.0806697 -0.379042 -0.132142 -0.127846 -0.321607 -0.140156 -0.113966 -0.379042 -0.202454 -0.186844 -0.321607 -0.214731 -0.176542 -0.379042 -0.248347 -0.266332 -0.321607 -0.263407 -0.260851 -0.379042 -0.264285 -0.356723 -0.321607 -0.280312 -0.356723 -0.427904 -0.225072 -0.356723 -0.47059 -0.175126 -0.356723 -0.47059 -0.164565 -0.41662 -0.427904 -0.211498 -0.433702 -0.47059 -0.134154 -0.469292 -0.427904 -0.172415 -0.501397 -0.47059 -0.0875631 -0.508387 -0.427904 -0.112536 -0.551641 -0.47059 -0.0304103 -0.529189 -0.427904 -0.0390833 -0.578376 -0.47059 0.0304104 -0.529189 -0.427904 0.0390833 -0.578376 -0.47059 0.0875631 -0.508387 -0.427904 0.112536 -0.551641 -0.47059 0.134154 -0.469292 -0.427904 0.172415 -0.501397 -0.47059 0.164565 -0.41662 -0.427904 0.211498 -0.433702 -0.47059 0.175126 -0.356723 -0.427904 0.225072 -0.356723 -0.427904 0.225072 -0.356723 -0.47059 0.175126 -0.356723 -0.47059 0.164565 -0.296827 -0.427904 0.211498 -0.279744 -0.47059 0.134154 -0.244154 -0.427904 0.172415 -0.21205 -0.47059 0.0875631 -0.20506 -0.427904 0.112536 -0.161805 -0.47059 0.0304104 -0.184258 -0.427904 0.0390834 -0.135071 -0.47059 -0.0304103 -0.184258 -0.427904 -0.0390832 -0.135071 -0.47059 -0.087563 -0.20506 -0.427904 -0.112536 -0.161805 -0.47059 -0.134154 -0.244154 -0.427904 -0.172415 -0.21205 -0.47059 -0.164565 -0.296827 -0.427904 -0.211498 -0.279744 -0.47059 -0.175126 -0.356723 -0.427904 -0.225072 -0.356723 -0.494926 -0.13773 -0.356723 -0.494926 -0.129424 -0.40383 -0.494926 -0.105508 -0.445255 -0.494926 -0.0688652 -0.476001 -0.494926 -0.0239166 -0.492361 -0.494926 0.0239166 -0.492361 -0.494926 0.0688652 -0.476001 -0.494926 0.105508 -0.445255 -0.494926 0.129424 -0.40383 -0.494926 0.13773 -0.356723 -0.494926 0.13773 -0.356723 -0.494926 0.129424 -0.309617 -0.494926 0.105508 -0.268192 -0.494926 0.0688652 -0.237445 -0.494926 0.0239167 -0.221086 -0.494926 -0.0239166 -0.221085 -0.494926 -0.0688651 -0.237445 -0.494926 -0.105507 -0.268192 -0.494926 -0.129424 -0.309617 -0.494926 -0.13773 -0.356723 -0.494926 -0.129424 -0.40383 -0.494926 -0.13773 -0.356723 -0.516194 -0.122039 -0.356723 -0.516194 -0.114679 -0.398463 -0.494926 -0.105508 -0.445255 -0.516194 -0.0934873 -0.435169 -0.494926 -0.0688652 -0.476001 -0.516194 -0.0610195 -0.462412 -0.494926 -0.0239166 -0.492361 -0.516194 -0.0211918 -0.476908 -0.494926 0.0239166 -0.492361 -0.516194 0.0211919 -0.476908 -0.494926 0.0688652 -0.476001 -0.516194 0.0610195 -0.462412 -0.494926 0.105508 -0.445255 -0.516194 0.0934873 -0.435169 -0.494926 0.129424 -0.40383 -0.516194 0.114679 -0.398463 -0.494926 0.13773 -0.356723 -0.516194 0.122039 -0.356723 -0.494926 0.129424 -0.309617 -0.494926 0.13773 -0.356723 -0.516194 0.122039 -0.356723 -0.516194 0.114679 -0.314984 -0.494926 0.105508 -0.268192 -0.516194 0.0934873 -0.278278 -0.494926 0.0688652 -0.237445 -0.516194 0.0610195 -0.251035 -0.494926 0.0239167 -0.221086 -0.516194 0.0211919 -0.236538 -0.494926 -0.0239166 -0.221085 -0.516194 -0.0211918 -0.236538 -0.494926 -0.0688651 -0.237445 -0.516194 -0.0610194 -0.251034 -0.494926 -0.105507 -0.268192 -0.516194 -0.0934872 -0.278278 -0.494926 -0.129424 -0.309617 -0.516194 -0.114679 -0.314984 -0.494926 -0.13773 -0.356723 -0.516194 -0.122039 -0.356723 -0.000836536 -0.140156 -0.113966 0.282159 -0.140156 -0.113966 -0.542801 -0.106022 -0.395312 -0.542801 -0.112826 -0.356723 -0.57154 -0.104799 -0.356723 -0.57154 -0.0984791 -0.392567 -0.542801 -0.0864296 -0.429246 -0.57154 -0.0802809 -0.424087 -0.542801 -0.0564129 -0.454433 -0.57154 -0.0523997 -0.447482 -0.542801 -0.019592 -0.467835 -0.57154 -0.0181982 -0.459931 -0.542801 0.019592 -0.467835 -0.57154 0.0181982 -0.459931 -0.542801 0.0564129 -0.454433 -0.57154 0.0523997 -0.447482 -0.542801 0.0864296 -0.429246 -0.57154 0.0802809 -0.424087 -0.542801 0.106022 -0.395312 -0.57154 0.0984792 -0.392567 -0.542801 0.112826 -0.356723 -0.57154 0.104799 -0.356723 -0.542801 0.106022 -0.318135 -0.542801 0.112826 -0.356723 -0.57154 0.104799 -0.356723 -0.57154 0.0984792 -0.32088 -0.542801 0.0864297 -0.2842 -0.57154 0.080281 -0.28936 -0.542801 0.056413 -0.259013 -0.57154 0.0523997 -0.265965 -0.542801 0.019592 -0.245612 -0.57154 0.0181982 -0.253516 -0.542801 -0.019592 -0.245612 -0.57154 -0.0181982 -0.253516 -0.542801 -0.0564129 -0.259013 -0.57154 -0.0523996 -0.265964 -0.542801 -0.0864296 -0.2842 -0.57154 -0.0802809 -0.28936 -0.542801 -0.106022 -0.318135 -0.57154 -0.0984791 -0.32088 -0.542801 -0.112826 -0.356723 -0.57154 -0.104799 -0.356723 -0.601189 -0.0992359 -0.356723 -0.601189 -0.0932513 -0.390664 -0.601189 -0.0760191 -0.420511 -0.601189 -0.049618 -0.442664 -0.601189 -0.0172321 -0.454452 -0.601189 0.0172321 -0.454452 -0.601189 0.049618 -0.442664 -0.601189 0.0760191 -0.420511 -0.601189 0.0932513 -0.390664 -0.601189 0.099236 -0.356723 -0.601189 0.099236 -0.356723 -0.601189 0.0932513 -0.322783 -0.601189 0.0760192 -0.292936 -0.601189 0.049618 -0.270783 -0.601189 0.0172322 -0.258995 -0.601189 -0.0172321 -0.258995 -0.601189 -0.0496179 -0.270783 -0.601189 -0.0760191 -0.292936 -0.601189 -0.0932512 -0.322783 -0.601189 -0.0992359 -0.356723 -0.253122 -0.263407 -0.452596 -0.253122 -0.280312 -0.356723 -0.253122 -0.214732 -0.536905 -0.253122 -0.140156 -0.599481 -0.253122 0.0486757 -0.632777 -0.253122 -0.0486757 -0.632777 -0.253122 0.140156 -0.599481 -0.253122 0.214732 -0.536905 -0.253122 0.263407 -0.452596 -0.253122 0.280312 -0.356723 -0.253122 0.263407 -0.260851 -0.253122 0.280312 -0.356723 -0.253122 0.214732 -0.176542 -0.253122 0.140156 -0.113966 -0.253122 0.0486758 -0.0806698 -0.253122 -0.0486756 -0.0806697 -0.253122 -0.263407 -0.260851 -0.253122 -0.214731 -0.176542 -0.253122 -0.280312 -0.356723 -0.253122 -0.140156 -0.113966 -0.000836521 -0.284172 -0.460153 -0.000836521 -0.302409 -0.356723 -0.0271426 -0.302409 -0.356723 -0.0271426 -0.284172 -0.460153 -0.000836521 -0.231659 -0.551108 -0.0271426 -0.231659 -0.551108 -0.000836536 -0.151205 -0.618617 -0.0271426 -0.151205 -0.618617 -0.000836536 0.0525128 -0.654538 -0.000836536 -0.0525128 -0.654538 -0.0271426 -0.0525128 -0.654538 -0.0271426 0.0525128 -0.654538 -0.000836536 0.151205 -0.618617 -0.000836536 0.0525128 -0.654538 -0.0271426 0.0525128 -0.654538 -0.0271426 0.151205 -0.618617 -0.000836551 0.231659 -0.551108 -0.0271426 0.231659 -0.551108 -0.000836551 0.284172 -0.460154 -0.0271426 0.284172 -0.460154 -0.000836551 0.302409 -0.356723 -0.0271426 0.302409 -0.356723 -0.000836551 0.284172 -0.253293 -0.000836551 0.302409 -0.356723 -0.0271426 0.302409 -0.356723 -0.0271426 0.284172 -0.253293 -0.000836551 0.231659 -0.162339 -0.0271426 0.231659 -0.162339 -0.000836536 0.151205 -0.0948295 -0.0271426 0.151205 -0.0948295 -0.000836536 0.0525129 -0.0589086 -0.0271426 0.0525129 -0.0589086 -0.000836536 -0.0525127 -0.0589085 -0.000836536 0.0525129 -0.0589086 -0.0271426 0.0525129 -0.0589086 -0.0271426 -0.0525127 -0.0589085 -0.000836521 -0.284172 -0.253293 -0.000836521 -0.231659 -0.162338 -0.0271426 -0.231659 -0.162338 -0.0271426 -0.284172 -0.253293 -0.000836521 -0.302409 -0.356723 -0.0271426 -0.302409 -0.356723 -0.000836536 -0.151204 -0.0948293 -0.0271426 -0.151204 -0.0948293 -0.253122 -0.284172 -0.460153 -0.253122 -0.302409 -0.356723 -0.253122 -0.280312 -0.356723 -0.253122 -0.263407 -0.452596 -0.253122 -0.231659 -0.551108 -0.253122 -0.214732 -0.536905 -0.253122 -0.151204 -0.618618 -0.253122 -0.140156 -0.599481 -0.253122 -0.0525128 -0.654538 -0.253122 -0.0486757 -0.632777 -0.253122 0.0525128 -0.654538 -0.253122 0.0486757 -0.632777 -0.253122 0.151205 -0.618617 -0.253122 0.0525128 -0.654538 -0.253122 0.0486757 -0.632777 -0.253122 0.140156 -0.599481 -0.253122 0.231659 -0.551108 -0.253122 0.214732 -0.536905 -0.253122 0.284172 -0.460153 -0.253122 0.263407 -0.452596 -0.253122 0.302409 -0.356724 -0.253122 0.280312 -0.356723 -0.253122 0.284172 -0.253293 -0.253122 0.302409 -0.356724 -0.253122 0.280312 -0.356723 -0.253122 0.263407 -0.260851 -0.253122 0.231659 -0.162339 -0.253122 0.214732 -0.176542 -0.253122 0.151205 -0.0948295 -0.253122 0.140156 -0.113966 -0.253122 0.0525129 -0.0589086 -0.253122 0.0486758 -0.0806698 -0.253122 -0.0525127 -0.0589085 -0.253122 0.0525129 -0.0589086 -0.253122 0.0486758 -0.0806698 -0.253122 -0.0486756 -0.0806697 -0.253122 -0.151204 -0.0948293 -0.253122 -0.140156 -0.113966 -0.253122 -0.231659 -0.162338 -0.253122 -0.214731 -0.176542 -0.253122 -0.284171 -0.253293 -0.253122 -0.263407 -0.260851 -0.253122 -0.302409 -0.356723 -0.253122 -0.280312 -0.356723 -0.000836521 -0.263407 -0.452596 -0.000836521 -0.280312 -0.356723 -0.000836521 -0.280312 -0.356723 -0.000836521 -0.263407 -0.260851 -0.000836521 -0.214731 -0.176542 -0.000836536 -0.140156 -0.113966 -0.000836536 -0.0486756 -0.0806697 -0.000836536 0.0486758 -0.0806698 -0.000836536 0.0486758 -0.0806698 -0.000836536 0.140156 -0.113966 -0.000836551 0.214732 -0.176542 -0.000836551 0.263407 -0.260851 -0.000836551 0.280312 -0.356723 -0.000836551 0.280312 -0.356723 -0.000836551 0.263407 -0.452596 -0.000836551 0.214732 -0.536905 -0.000836536 0.140156 -0.599481 -0.000836536 0.0486757 -0.632777 -0.000836536 0.0486757 -0.632777 -0.000836536 -0.0486757 -0.632777 -0.000836536 -0.140156 -0.599481 -0.000836521 -0.214732 -0.536905 -0.22352 -0.284172 -0.460153 -0.22352 -0.302409 -0.356723 -0.22352 -0.231659 -0.551108 -0.22352 -0.151204 -0.618618 -0.22352 0.0525128 -0.654538 -0.22352 -0.0525128 -0.654538 -0.22352 0.151205 -0.618617 -0.22352 0.0525128 -0.654538 -0.22352 0.231659 -0.551108 -0.22352 0.284172 -0.460153 -0.22352 0.302409 -0.356724 -0.22352 0.284172 -0.253293 -0.22352 0.302409 -0.356724 -0.22352 0.231659 -0.162339 -0.22352 0.151205 -0.0948294 -0.22352 0.0525129 -0.0589086 -0.22352 -0.0525127 -0.0589085 -0.22352 0.0525129 -0.0589086 -0.22352 -0.284171 -0.253293 -0.22352 -0.231659 -0.162338 -0.22352 -0.302409 -0.356723 -0.22352 -0.151204 -0.0948293 -0.0271426 -0.270438 -0.455155 -0.0271426 -0.287794 -0.356723 -0.22352 -0.287794 -0.356723 -0.22352 -0.270438 -0.455155 -0.0271426 -0.220463 -0.541714 -0.22352 -0.220463 -0.541714 -0.0271426 -0.143897 -0.605961 -0.22352 -0.143897 -0.605961 -0.0271426 0.049975 -0.640145 -0.0271426 -0.0499752 -0.640145 -0.22352 -0.049975 -0.640145 -0.22352 0.0499747 -0.640145 -0.0271426 0.143897 -0.60596 -0.22352 0.143897 -0.60596 -0.0271426 0.220463 -0.541714 -0.22352 0.220463 -0.541714 -0.0271426 0.270438 -0.455155 -0.22352 0.270438 -0.455155 -0.0271426 0.287794 -0.356723 -0.22352 0.287794 -0.356724 -0.0271426 0.270438 -0.258292 -0.0271426 0.287794 -0.356723 -0.22352 0.287794 -0.356724 -0.22352 0.270438 -0.258292 -0.0271426 0.220463 -0.171733 -0.22352 0.220463 -0.171733 -0.0271426 0.143897 -0.107486 -0.22352 0.143897 -0.107486 -0.0271426 0.0499751 -0.0733013 -0.22352 0.0499751 -0.0733014 -0.0271426 -0.0499748 -0.0733013 -0.22352 -0.0499748 -0.0733013 -0.0271426 -0.270438 -0.258291 -0.0271426 -0.220463 -0.171733 -0.22352 -0.220463 -0.171733 -0.22352 -0.270438 -0.258291 -0.0271426 -0.287794 -0.356723 -0.22352 -0.287794 -0.356723 -0.0271426 -0.143897 -0.107486 -0.22352 -0.143897 -0.107486 -0.22352 -0.270438 -0.455155 -0.22352 -0.287794 -0.356723 -0.22352 -0.220463 -0.541714 -0.22352 -0.143897 -0.605961 -0.22352 -0.049975 -0.640145 -0.22352 0.0499747 -0.640145 -0.22352 0.143897 -0.60596 -0.22352 0.0499747 -0.640145 -0.22352 0.220463 -0.541714 -0.22352 0.270438 -0.455155 -0.22352 0.287794 -0.356724 -0.22352 0.270438 -0.258292 -0.22352 0.287794 -0.356724 -0.22352 0.220463 -0.171733 -0.22352 0.143897 -0.107486 -0.22352 0.0499751 -0.0733014 -0.22352 -0.0499748 -0.0733013 -0.22352 0.0499751 -0.0733014 -0.22352 -0.143897 -0.107486 -0.22352 -0.220463 -0.171733 -0.22352 -0.270438 -0.258291 -0.22352 -0.287794 -0.356723 -0.0271426 -0.287794 -0.356723 -0.0271426 -0.270438 -0.455155 -0.0271426 -0.270438 -0.258291 -0.0271426 -0.287794 -0.356723 -0.0271426 -0.220463 -0.171733 -0.0271426 -0.143897 -0.107486 -0.0271426 -0.0499748 -0.0733013 -0.0271426 0.0499751 -0.0733013 -0.0271426 0.143897 -0.107486 -0.0271426 0.0499751 -0.0733013 -0.0271426 0.220463 -0.171733 -0.0271426 0.270438 -0.258292 -0.0271426 0.287794 -0.356723 -0.0271426 0.270438 -0.455155 -0.0271426 0.287794 -0.356723 -0.0271426 0.220463 -0.541714 -0.0271426 0.143897 -0.60596 -0.0271426 0.049975 -0.640145 -0.0271426 -0.0499752 -0.640145 -0.0271426 0.049975 -0.640145 -0.0271426 -0.143897 -0.605961 -0.0271426 -0.220463 -0.541714 + + + + + + + + + + 0.994445 -0.0182769 0.103656 0.994445 -0.0526278 0.0911578 0.994445 -0.0806275 0.0676567 0.994445 -0.0989058 0.0359988 0.994445 -0.105253 8.05052e-08 0.994445 -0.0989058 -0.0359988 0.994445 -0.0806278 -0.0676567 0.994445 -0.0526277 -0.0911578 0.994445 -0.0182771 -0.103657 0.994445 0.0182773 -0.103655 0.994445 0.0526274 -0.091153 0.994445 0.0806295 -0.0676562 0.994445 0.0989068 -0.0359991 0.994445 0.105254 -5.36701e-09 0.994445 0.0989067 0.0359991 0.994445 0.0806296 0.0676562 0.994445 0.0526272 0.0911529 0.994445 0.0182774 0.103655 0.411116 -0.911583 2.47126e-07 0.133672 -0.991026 2.56462e-07 0.133672 -0.931259 -0.338951 0.411116 -0.856608 -0.31178 0.133672 -0.75917 -0.637019 0.411116 -0.698313 -0.585954 0.133672 -0.495513 -0.858253 0.411116 -0.455792 -0.789454 0.133672 -0.17209 -0.97597 0.411116 -0.158295 -0.897734 0.133672 0.17209 -0.97597 0.411116 0.158295 -0.897734 0.133672 0.495513 -0.858253 0.411116 0.455792 -0.789454 0.133672 0.75917 -0.637019 0.411116 0.698313 -0.585954 0.133672 0.931259 -0.338951 0.411116 0.856608 -0.31178 0.133672 0.991026 -1.08503e-07 0.411116 0.911583 -5.43677e-08 0.133672 0.93126 0.33895 0.411116 0.856608 0.311779 0.133672 0.75917 0.637019 0.411116 0.698313 0.585954 0.133672 0.495513 0.858253 0.411116 0.455792 0.789454 0.133672 0.17209 0.97597 0.411116 0.158295 0.897734 0.133672 -0.172089 0.97597 0.411116 -0.158294 0.897734 0.133672 -0.495512 0.858254 0.411116 -0.455791 0.789454 0.133672 -0.759169 0.637019 0.411116 -0.698313 0.585955 0.133672 -0.931259 0.338951 0.411116 -0.856608 0.31178 0.615441 -0.788183 2.58765e-07 0.615441 -0.74065 -0.269575 0.802058 -0.561227 -0.20427 0.802058 -0.597246 2.15776e-07 0.615441 -0.603783 -0.506635 0.802058 -0.457516 -0.383903 0.615441 -0.394091 -0.682586 0.802058 -0.298622 -0.51723 0.615441 -0.136866 -0.776208 0.802058 -0.103711 -0.588172 0.615441 0.136867 -0.776208 0.802058 0.103711 -0.588172 0.615441 0.394091 -0.682586 0.802058 0.298623 -0.51723 0.615441 0.603783 -0.506634 0.802058 0.457517 -0.383902 0.615441 0.740649 -0.269575 0.802058 0.561227 -0.20427 0.615441 0.788183 -4.59489e-08 0.802058 0.597246 -7.52134e-08 0.615441 0.74065 0.269574 0.802058 0.561227 0.20427 0.615441 0.603783 0.506634 0.802058 0.457517 0.383902 0.615441 0.394092 0.682586 0.802058 0.298623 0.51723 0.615441 0.136867 0.776208 0.802058 0.103711 0.588172 0.615441 -0.136866 0.776209 0.802058 -0.10371 0.588172 0.615441 -0.394091 0.682587 0.802058 -0.298622 0.51723 0.615441 -0.603783 0.506635 0.802058 -0.457516 0.383903 0.615441 -0.74065 0.269575 0.802058 -0.561227 0.20427 0.925284 -0.356403 -0.12972 0.925284 -0.379276 1.47089e-07 0.925284 -0.290542 -0.243795 0.925284 -0.189637 -0.328463 0.925284 -0.0658604 -0.373513 0.925284 0.0658605 -0.373513 0.925284 0.189638 -0.328462 0.925284 0.290542 -0.243794 0.925284 0.356402 -0.12972 0.925284 0.379275 -6.31231e-08 0.925284 0.356402 0.12972 0.925284 0.290542 0.243793 0.925284 0.189638 0.328462 0.925284 0.0658608 0.373513 0.925284 -0.0658602 0.373513 0.925284 -0.189637 0.328463 0.925284 -0.290541 0.243795 0.925284 -0.356403 0.12972 0.961523 -0.274723 1.29536e-07 0.961523 -0.258155 -0.0939609 0.961523 -0.210449 -0.17659 0.961523 -0.13736 -0.237918 0.961523 -0.0477051 -0.270549 0.961523 0.0477052 -0.270549 0.961523 0.137362 -0.237917 0.961523 0.21045 -0.176589 0.961523 0.258155 -0.0939609 0.961523 0.274723 -5.85002e-08 0.961523 0.258155 0.0939608 0.961523 0.21045 0.176589 0.961523 0.137362 0.237917 0.961523 0.0477054 0.270549 0.961523 -0.0477049 0.270549 0.961523 -0.13736 0.237918 0.961523 -0.210449 0.17659 0.961523 -0.258155 0.093961 0.748361 -0.623291 -0.226859 0.133672 -0.931259 -0.338951 0.133672 -0.991026 2.56462e-07 0.748361 -0.663292 1.30981e-07 0.748361 -0.508111 -0.426356 0.133672 -0.75917 -0.637019 0.748361 -0.331646 -0.574428 0.133672 -0.495513 -0.858253 0.748361 0.11518 -0.653215 0.133672 0.17209 -0.97597 0.133672 -0.17209 -0.97597 0.748361 -0.115179 -0.653215 0.748361 0.331646 -0.574428 0.133672 0.495513 -0.858253 0.748361 0.508111 -0.426356 0.133672 0.75917 -0.637019 0.748361 0.623291 -0.226859 0.133672 0.931259 -0.338951 0.748361 0.663292 -8.3061e-08 0.133672 0.991026 -1.08503e-07 0.74836 0.623291 0.226859 0.133672 0.93126 0.33895 0.133672 0.991026 -1.08503e-07 0.748361 0.663292 -8.3061e-08 0.748361 0.508111 0.426356 0.133672 0.75917 0.637019 0.74836 0.331646 0.574428 0.133672 0.495513 0.858253 0.748361 0.11518 0.653215 0.133672 0.17209 0.97597 0.748361 -0.115179 0.653215 0.133672 -0.172089 0.97597 0.748361 -0.623291 0.22686 0.133672 -0.931259 0.338951 0.133672 -0.759169 0.637019 0.748361 -0.508111 0.426356 0.748361 -0.663292 1.30981e-07 0.133672 -0.991026 2.56462e-07 -0.447839 -0.894114 1.74946e-07 -0.447839 -0.840192 -0.305805 -0.133672 -0.931259 -0.338951 -0.133672 -0.991026 2.31803e-07 -0.44784 -0.684931 -0.574725 -0.133672 -0.75917 -0.637019 -0.44784 -0.447057 -0.774325 -0.133672 -0.495513 -0.858253 -0.44784 -0.155261 -0.88053 -0.133672 -0.17209 -0.97597 -0.44784 0.155261 -0.88053 -0.133672 0.17209 -0.97597 -0.44784 0.447057 -0.774325 -0.133672 0.495513 -0.858253 -0.44784 0.684931 -0.574725 -0.133672 0.75917 -0.637019 -0.44784 0.840192 -0.305805 -0.133672 0.931259 -0.338951 -0.447839 0.894114 1.37458e-08 -0.133672 0.991026 -6.65816e-08 -0.447839 0.894114 1.37458e-08 -0.447839 0.840192 0.305805 -0.133672 0.93126 0.33895 -0.133672 0.991026 -6.65816e-08 -0.44784 0.684931 0.574725 -0.133672 0.75917 0.637019 -0.44784 0.447057 0.774325 -0.133672 0.495513 0.858253 -0.447839 0.155262 0.88053 -0.133673 0.17209 0.97597 -0.44784 -0.155261 0.880531 -0.133672 -0.172089 0.97597 -0.44784 -0.447057 0.774326 -0.133672 -0.495512 0.858254 -0.447839 -0.684931 0.574726 -0.133672 -0.759169 0.637019 -0.447839 -0.840192 0.305805 -0.133672 -0.931259 0.338951 -0.447839 -0.894114 1.74946e-07 -0.133672 -0.991026 2.31803e-07 -0.690953 -0.7229 1.86288e-07 -0.797418 -0.603427 1.9204e-07 -0.797418 -0.567036 -0.206384 -0.690953 -0.679304 -0.247246 -0.797418 -0.462252 -0.387876 -0.690953 -0.553773 -0.464672 -0.797418 -0.301713 -0.522584 -0.690953 -0.36145 -0.62605 -0.797418 -0.104784 -0.59426 -0.690953 -0.12553 -0.711917 -0.797418 0.104784 -0.59426 -0.690953 0.12553 -0.711917 -0.797418 0.301714 -0.522583 -0.690953 0.36145 -0.626049 -0.797418 0.462252 -0.387876 -0.690953 0.553773 -0.464671 -0.797418 0.567036 -0.206384 -0.690953 0.679303 -0.247246 -0.797418 0.603427 -1.04422e-07 -0.690953 0.7229 7.25797e-09 -0.690953 0.7229 7.25797e-09 -0.797418 0.603427 -1.04422e-07 -0.797418 0.567036 0.206384 -0.690953 0.679304 0.247246 -0.797418 0.462252 0.387875 -0.690953 0.553773 0.464671 -0.797418 0.301714 0.522583 -0.690953 0.36145 0.626049 -0.797418 0.104785 0.594259 -0.690953 0.125531 0.711917 -0.797418 -0.104784 0.59426 -0.690953 -0.12553 0.711918 -0.797418 -0.301713 0.522583 -0.690953 -0.361449 0.62605 -0.797418 -0.462251 0.387876 -0.690953 -0.553773 0.464671 -0.797418 -0.567036 0.206384 -0.690953 -0.679303 0.247247 -0.797418 -0.603427 1.9204e-07 -0.690953 -0.7229 1.86288e-07 -0.737538 -0.675305 2.39439e-07 -0.737538 -0.634579 -0.230968 -0.737538 -0.517314 -0.434078 -0.737538 -0.337652 -0.584832 -0.737538 -0.117266 -0.665046 -0.737538 0.117265 -0.665046 -0.737538 0.337653 -0.584832 -0.737538 0.517314 -0.434078 -0.737538 0.63458 -0.230968 -0.737538 0.675306 -9.817e-08 -0.737538 0.675306 -9.817e-08 -0.737538 0.63458 0.230968 -0.737538 0.517314 0.434078 -0.737538 0.337653 0.584832 -0.737538 0.117266 0.665046 -0.737538 -0.117265 0.665046 -0.737538 -0.337652 0.584832 -0.737538 -0.517313 0.434079 -0.737538 -0.634579 0.230968 -0.737538 -0.675305 2.39439e-07 -0.737538 -0.634579 -0.230968 -0.737538 -0.675305 2.39439e-07 -0.472759 -0.881192 2.85824e-07 -0.472759 -0.82805 -0.301385 -0.737538 -0.517314 -0.434078 -0.472758 -0.675032 -0.56642 -0.737538 -0.337652 -0.584832 -0.472759 -0.440596 -0.763135 -0.737538 -0.117266 -0.665046 -0.472758 -0.153017 -0.867805 -0.737538 0.117265 -0.665046 -0.472758 0.153017 -0.867805 -0.737538 0.337653 -0.584832 -0.472759 0.440596 -0.763135 -0.737538 0.517314 -0.434078 -0.472758 0.675032 -0.566419 -0.737538 0.63458 -0.230968 -0.472758 0.82805 -0.301386 -0.737538 0.675306 -9.817e-08 -0.472758 0.881192 -7.1755e-08 -0.737538 0.63458 0.230968 -0.737538 0.675306 -9.817e-08 -0.472758 0.881192 -7.1755e-08 -0.472758 0.82805 0.301385 -0.737538 0.517314 0.434078 -0.472759 0.675032 0.566419 -0.737538 0.337653 0.584832 -0.472759 0.440596 0.763135 -0.737538 0.117266 0.665046 -0.472758 0.153018 0.867805 -0.737538 -0.117265 0.665046 -0.472759 -0.153017 0.867805 -0.737538 -0.337652 0.584832 -0.472758 -0.440596 0.763135 -0.737538 -0.517313 0.434079 -0.472759 -0.675032 0.56642 -0.737538 -0.634579 0.230968 -0.472759 -0.828049 0.301386 -0.737538 -0.675305 2.39439e-07 -0.472759 -0.881192 2.85824e-07 0.748361 -0.331646 0.574428 0.133672 -0.495512 0.858254 -0.299208 -0.896643 -0.326351 -0.299208 -0.954188 3.54947e-07 -0.227994 -0.973663 4.09936e-07 -0.227994 -0.914944 -0.333012 -0.299208 -0.73095 -0.61334 -0.227994 -0.745869 -0.625858 -0.299208 -0.477094 -0.826351 -0.227994 -0.486831 -0.843217 -0.299208 -0.165693 -0.939692 -0.227994 -0.169075 -0.95887 -0.299208 0.165693 -0.939692 -0.227994 0.169075 -0.95887 -0.299208 0.477094 -0.826351 -0.227994 0.486831 -0.843217 -0.299208 0.73095 -0.61334 -0.227994 0.745869 -0.625858 -0.299208 0.896643 -0.326352 -0.227994 0.914943 -0.333013 -0.299208 0.954188 -8.63384e-08 -0.227994 0.973662 -1.39042e-07 -0.299208 0.896643 0.326352 -0.299208 0.954188 -8.63384e-08 -0.227994 0.973662 -1.39042e-07 -0.227994 0.914943 0.333012 -0.299208 0.73095 0.61334 -0.227994 0.745869 0.625858 -0.299208 0.477094 0.826351 -0.227994 0.486831 0.843216 -0.299208 0.165694 0.939692 -0.227994 0.169075 0.95887 -0.299208 -0.165692 0.939692 -0.227994 -0.169074 0.95887 -0.299208 -0.477094 0.826351 -0.227994 -0.486831 0.843216 -0.299208 -0.73095 0.61334 -0.227994 -0.745868 0.625859 -0.299208 -0.896643 0.326352 -0.227994 -0.914943 0.333013 -0.299208 -0.954188 3.54947e-07 -0.227994 -0.973663 4.09936e-07 -0.184421 -0.982847 4.43463e-07 -0.184421 -0.923575 -0.336154 -0.184421 -0.752905 -0.631762 -0.184422 -0.491423 -0.851171 -0.184421 -0.17067 -0.967916 -0.184421 0.170669 -0.967916 -0.184421 0.491424 -0.851171 -0.184421 0.752905 -0.631762 -0.184421 0.923574 -0.336154 -0.184421 0.982847 -1.36813e-07 -0.184421 0.982847 -1.36813e-07 -0.184421 0.923574 0.336154 -0.184421 0.752905 0.631762 -0.184421 0.491424 0.851171 -0.184421 0.17067 0.967915 -0.184421 -0.170669 0.967916 -0.184421 -0.491424 0.851171 -0.184421 -0.752905 0.631763 -0.184421 -0.923574 0.336154 -0.184421 -0.982847 4.43463e-07 -0.748361 -0.623291 -0.226859 -0.748361 -0.663292 1.812e-07 -0.748361 -0.508111 -0.426356 -0.748361 -0.331646 -0.574428 -0.748361 0.115179 -0.653215 -0.748361 -0.115179 -0.653215 -0.748361 0.331646 -0.574428 -0.748361 0.508111 -0.426356 -0.748361 0.623291 -0.226859 -0.748361 0.663292 -7.02824e-08 -0.74836 0.623291 0.226859 -0.748361 0.663292 -7.02824e-08 -0.748361 0.508111 0.426356 -0.74836 0.331646 0.574428 -0.748361 0.11518 0.653215 -0.748361 -0.115179 0.653215 -0.748361 -0.623291 0.22686 -0.748361 -0.508111 0.426356 -0.748361 -0.663292 1.812e-07 -0.748361 -0.331646 0.574428 0.670031 -0.697565 -0.253893 0.670031 -0.742333 3.84349e-08 -0.670031 -0.742333 3.28932e-07 -0.670031 -0.697565 -0.253893 0.670031 -0.56866 -0.477163 -0.670031 -0.56866 -0.477162 0.670031 -0.371167 -0.642879 -0.670031 -0.371166 -0.642879 0.670031 0.128905 -0.731056 0.670031 -0.128905 -0.731055 -0.670031 -0.128905 -0.731056 -0.670031 0.128905 -0.731055 0.670031 0.371167 -0.642879 0.670031 0.128905 -0.731056 -0.670031 0.128905 -0.731055 -0.670031 0.371167 -0.642879 0.670031 0.56866 -0.477162 -0.670031 0.56866 -0.477162 0.670031 0.697565 -0.253893 -0.670031 0.697565 -0.253893 0.670031 0.742333 5.07699e-07 -0.670031 0.742333 -5.72055e-08 0.670031 0.697565 0.253893 0.670031 0.742333 5.07699e-07 -0.670031 0.742333 -5.72055e-08 -0.670031 0.697565 0.253893 0.670031 0.56866 0.477163 -0.670031 0.56866 0.477162 0.670031 0.371167 0.642879 -0.670031 0.371167 0.642879 0.670031 0.128905 0.731055 -0.670031 0.128905 0.731055 0.670031 -0.128904 0.731056 0.670031 0.128905 0.731055 -0.670031 0.128905 0.731055 -0.670031 -0.128904 0.731056 0.670031 -0.697565 0.253893 0.670031 -0.56866 0.477163 -0.670031 -0.56866 0.477163 -0.670031 -0.697565 0.253893 0.670031 -0.742333 3.84349e-08 -0.670031 -0.742333 3.28932e-07 0.670031 -0.371166 0.642879 -0.670031 -0.371166 0.64288 -0.670031 -0.697565 -0.253892 -0.670031 -0.742333 1.34433e-06 -0.748361 -0.663292 1.812e-07 -0.748361 -0.623291 -0.226859 -0.670031 -0.56866 -0.477162 -0.748361 -0.508111 -0.426356 -0.670031 -0.371166 -0.64288 -0.748361 -0.331646 -0.574428 -0.670031 -0.128904 -0.731055 -0.748361 -0.115179 -0.653215 -0.670031 0.128905 -0.731055 -0.748361 0.115179 -0.653215 -0.670031 0.371166 -0.642879 -0.670031 0.128905 -0.731055 -0.748361 0.115179 -0.653215 -0.748361 0.331646 -0.574428 -0.670031 0.56866 -0.477162 -0.748361 0.508111 -0.426356 -0.670031 0.697565 -0.253892 -0.748361 0.623291 -0.226859 -0.670031 0.742333 -6.39986e-07 -0.748361 0.663292 -7.02824e-08 -0.670031 0.697565 0.253893 -0.670031 0.742333 -6.39986e-07 -0.748361 0.663292 -7.02824e-08 -0.74836 0.623291 0.226859 -0.670031 0.56866 0.477162 -0.748361 0.508111 0.426356 -0.670031 0.371167 0.642879 -0.74836 0.331646 0.574428 -0.670031 0.128905 0.731055 -0.748361 0.11518 0.653215 -0.670031 -0.128904 0.731055 -0.670031 0.128905 0.731055 -0.748361 0.11518 0.653215 -0.748361 -0.115179 0.653215 -0.670031 -0.371166 0.642879 -0.748361 -0.331646 0.574428 -0.670031 -0.56866 0.477163 -0.748361 -0.508111 0.426356 -0.670031 -0.697565 0.253894 -0.748361 -0.623291 0.22686 -0.670031 -0.742333 1.34433e-06 -0.748361 -0.663292 1.812e-07 0.748361 -0.623291 -0.226859 0.748361 -0.663292 1.30981e-07 0.748361 -0.663292 1.30981e-07 0.748361 -0.623291 0.22686 0.748361 -0.508111 0.426356 0.748361 -0.331646 0.574428 0.748361 -0.115179 0.653215 0.748361 0.11518 0.653215 0.748361 0.11518 0.653215 0.74836 0.331646 0.574428 0.748361 0.508111 0.426356 0.74836 0.623291 0.226859 0.748361 0.663292 -8.3061e-08 0.748361 0.663292 -8.3061e-08 0.748361 0.623291 -0.226859 0.748361 0.508111 -0.426356 0.748361 0.331646 -0.574428 0.748361 0.11518 -0.653215 0.748361 0.11518 -0.653215 0.748361 -0.115179 -0.653215 0.748361 -0.331646 -0.574428 0.748361 -0.508111 -0.426356 0.670031 -0.697565 -0.253892 0.670031 -0.742333 1.06756e-06 0.670031 -0.56866 -0.477163 0.670031 -0.371166 -0.64288 0.670031 0.128905 -0.731055 0.670031 -0.128904 -0.731055 0.670031 0.371167 -0.642879 0.670031 0.128905 -0.731055 0.670031 0.56866 -0.477162 0.670031 0.697565 -0.253893 0.670031 0.742333 -7.15068e-08 0.670031 0.697565 0.253893 0.670031 0.742333 -7.15068e-08 0.670031 0.56866 0.477162 0.670031 0.371167 0.642879 0.670031 0.128905 0.731055 0.670031 -0.128904 0.731056 0.670031 0.128905 0.731055 0.670031 -0.697565 0.253894 0.670031 -0.56866 0.477163 0.670031 -0.742333 1.06756e-06 0.670031 -0.371166 0.64288 -0.748361 -0.623291 -0.226859 -0.74836 -0.663292 1.29703e-06 0.748361 -0.663292 8.42551e-07 0.748361 -0.623291 -0.226859 -0.748361 -0.508111 -0.426356 0.748361 -0.508111 -0.426356 -0.748361 -0.331646 -0.574428 0.748361 -0.331646 -0.574428 -0.748361 0.11518 -0.653215 -0.748361 -0.11518 -0.653215 0.74836 -0.115179 -0.653216 0.748361 0.115179 -0.653215 -0.748361 0.331647 -0.574427 0.748361 0.331646 -0.574427 -0.74836 0.508112 -0.426356 0.74836 0.508112 -0.426356 -0.748361 0.623291 -0.22686 0.74836 0.623291 -0.226859 -0.748361 0.663292 1.34175e-07 0.748361 0.663292 -3.58138e-07 -0.748361 0.623291 0.226859 -0.748361 0.663292 1.34175e-07 0.748361 0.663292 -3.58138e-07 0.748361 0.623291 0.226859 -0.748361 0.508111 0.426356 0.748361 0.508111 0.426356 -0.74836 0.331646 0.574428 0.748361 0.331646 0.574428 -0.748361 0.11518 0.653215 0.74836 0.11518 0.653215 -0.748361 -0.115179 0.653215 0.748361 -0.115179 0.653215 -0.748361 -0.62329 0.22686 -0.748361 -0.508111 0.426356 0.74836 -0.508111 0.426356 0.748361 -0.623291 0.22686 -0.74836 -0.663292 1.29703e-06 0.748361 -0.663292 8.42551e-07 -0.748361 -0.331646 0.574428 0.748361 -0.331646 0.574428 0.748361 -0.623291 -0.226859 0.748361 -0.663292 8.42551e-07 0.748361 -0.508111 -0.426356 0.748361 -0.331646 -0.574428 0.74836 -0.115179 -0.653216 0.748361 0.115179 -0.653215 0.748361 0.331646 -0.574427 0.748361 0.115179 -0.653215 0.74836 0.508112 -0.426356 0.74836 0.623291 -0.226859 0.748361 0.663292 -3.58138e-07 0.748361 0.623291 0.226859 0.748361 0.663292 -3.58138e-07 0.748361 0.508111 0.426356 0.748361 0.331646 0.574428 0.74836 0.11518 0.653215 0.748361 -0.115179 0.653215 0.74836 0.11518 0.653215 0.748361 -0.331646 0.574428 0.74836 -0.508111 0.426356 0.748361 -0.623291 0.22686 0.748361 -0.663292 8.42551e-07 -0.74836 -0.663292 1.29703e-06 -0.748361 -0.623291 -0.226859 -0.748361 -0.62329 0.22686 -0.74836 -0.663292 1.29703e-06 -0.748361 -0.508111 0.426356 -0.748361 -0.331646 0.574428 -0.748361 -0.115179 0.653215 -0.748361 0.11518 0.653215 -0.74836 0.331646 0.574428 -0.748361 0.11518 0.653215 -0.748361 0.508111 0.426356 -0.748361 0.623291 0.226859 -0.748361 0.663292 1.34175e-07 -0.748361 0.623291 -0.22686 -0.748361 0.663292 1.34175e-07 -0.74836 0.508112 -0.426356 -0.748361 0.331647 -0.574427 -0.748361 0.11518 -0.653215 -0.748361 -0.11518 -0.653215 -0.748361 0.11518 -0.653215 -0.748361 -0.331646 -0.574428 -0.748361 -0.508111 -0.426356 + + + + + + + + + + 0.10368 0.000378201 -0.994611 0.0913961 0.00213437 -0.995812 0.0680988 0.00274232 -0.997675 0.0363604 0.00185459 -0.999337 -1.46825e-05 -0.000139504 -1 -0.0364011 -0.0022657 -0.999335 -0.0681582 -0.00348028 -0.997668 -0.0914538 -0.0032389 -0.995804 -0.103705 -0.00171781 -0.994607 -0.10368 0.00040319 -0.994611 -0.091392 0.00214794 -0.995813 -0.0680982 0.00274157 -0.997675 -0.0363607 0.00185508 -0.999337 1.46075e-05 -0.000138057 -1 0.0364013 -0.00226455 -0.999335 0.0681579 -0.00348313 -0.997668 0.0914499 -0.00325851 -0.995804 0.103704 -0.00175488 -0.994607 -0.00315418 -0.00142278 -0.999994 -0.0061507 -0.000829893 -0.999981 -0.398172 0.262733 -0.87888 -0.362448 0.16022 -0.918129 -0.697744 0.384372 -0.604492 -0.648984 0.227187 -0.726089 -0.8856 0.328968 -0.327861 -0.827363 0.177 -0.533049 -0.976259 0.146508 -0.159545 -0.90487 0.0484286 -0.422924 -0.984997 -0.0853903 -0.149965 -0.897701 -0.100912 -0.428894 -0.908371 -0.284987 -0.306015 -0.809702 -0.215255 -0.545938 -0.720874 -0.366603 -0.588169 -0.630593 -0.24632 -0.735988 -0.401274 -0.261868 -0.877727 -0.351428 -0.16665 -0.921263 0.00614834 -0.000829417 -0.999981 0.00315204 -0.00142161 -0.999994 0.398174 0.262732 -0.87888 0.362448 0.16022 -0.918129 0.697752 0.384366 -0.604487 0.648989 0.227181 -0.726087 0.885604 0.32896 -0.327858 0.827366 0.176995 -0.533047 0.976258 0.146508 -0.159545 0.90487 0.0484311 -0.422924 0.984998 -0.0853852 -0.149965 0.897702 -0.100906 -0.428894 0.908373 -0.284983 -0.306013 0.809704 -0.21525 -0.545936 0.720877 -0.366601 -0.588167 0.630597 -0.246317 -0.735986 0.401275 -0.261868 -0.877726 0.35143 -0.166649 -0.921263 0.00323671 0.00252701 -0.999992 -0.298429 0.0975858 -0.94943 -0.212077 0.052103 -0.975863 0.00151033 0.00202791 -0.999997 -0.54255 0.141732 -0.82798 -0.393545 0.0786505 -0.915935 -0.702021 0.119636 -0.702036 -0.521985 0.0703497 -0.850048 -0.778518 0.0481926 -0.62577 -0.588317 0.0324542 -0.807979 -0.779339 -0.0414396 -0.62523 -0.589766 -0.017836 -0.807377 -0.704175 -0.114122 -0.700795 -0.52555 -0.0585212 -0.848748 -0.545884 -0.137142 -0.826561 -0.397572 -0.0706752 -0.914845 -0.303645 -0.0928232 -0.948253 -0.215497 -0.0470362 -0.975371 -0.00323925 0.00252926 -0.999992 -0.00151176 0.00203006 -0.999997 0.298426 0.0975877 -0.949431 0.212075 0.0521058 -0.975863 0.542552 0.14173 -0.82798 0.393545 0.0786497 -0.915935 0.702022 0.119634 -0.702035 0.521985 0.0703514 -0.850049 0.778517 0.0481956 -0.62577 0.588316 0.0324608 -0.807979 0.77934 -0.0414342 -0.62523 0.589767 -0.0178279 -0.807377 0.704178 -0.114116 -0.700793 0.525552 -0.0585163 -0.848747 0.545888 -0.137138 -0.826559 0.397573 -0.0706732 -0.914845 0.303647 -0.0928217 -0.948252 0.215497 -0.0470365 -0.975371 -0.134718 0.0108792 -0.990824 0.000183399 0.000447031 -1 -0.249848 0.0166821 -0.968141 -0.331701 0.0153358 -0.94326 -0.37384 0.00775962 -0.927461 -0.374167 -0.00258281 -0.927358 -0.33248 -0.0111596 -0.943044 -0.250644 -0.014007 -0.967978 -0.135246 -0.00948813 -0.990767 -0.000183352 0.00044715 -1 0.134718 0.0108789 -0.990824 0.249848 0.0166809 -0.968141 0.3317 0.0153386 -0.94326 0.373839 0.00776886 -0.927461 0.374167 -0.00257202 -0.927358 0.332481 -0.0111532 -0.943044 0.250646 -0.0140059 -0.967978 0.135244 -0.00949229 -0.990767 -4.19922e-05 -0.000147445 -1 -0.0971435 0.000429047 -0.99527 -0.180476 0.000751109 -0.983579 -0.240104 0.000676006 -0.970747 -0.270847 0.000245604 -0.962622 -0.270842 -0.000337465 -0.962624 -0.240085 -0.000808394 -0.970752 -0.180432 -0.000952444 -0.983587 -0.0970729 -0.000694735 -0.995277 4.22525e-05 -0.000148103 -1 0.0971445 0.000425088 -0.99527 0.180476 0.000747318 -0.983579 0.240103 0.000673587 -0.970747 0.270846 0.000246937 -0.962623 0.270842 -0.000336789 -0.962624 0.240086 -0.000811625 -0.970751 0.180433 -0.000958487 -0.983587 0.0970715 -0.00070015 -0.995277 -0.663292 -0.70323 -0.25595 -0.991026 -0.125612 -0.0457166 -0.991026 -0.133672 2.97015e-06 -0.663292 -0.74836 5.308e-06 -0.663292 -0.573279 -0.481035 -0.991026 -0.1024 -0.0859223 -0.663292 -0.374181 -0.648099 -0.991026 -0.0668363 -0.115764 -0.663292 0.129951 -0.736991 -0.991026 0.0232119 -0.131642 -0.991026 -0.0232121 -0.131642 -0.663292 -0.129952 -0.736991 -0.663292 0.37418 -0.648099 -0.991026 0.0668351 -0.115764 -0.663292 0.573276 -0.481039 -0.991026 0.102396 -0.0859265 -0.663292 0.703226 -0.255962 -0.991026 0.125608 -0.0457257 -0.663292 0.748361 -1.11224e-05 -0.991026 0.133672 -8.12616e-06 0.663292 -0.703232 -0.255944 0.991026 -0.125613 -0.045714 0.991026 -0.133672 6.79603e-06 0.663292 -0.74836 1.16862e-05 0.663292 -0.573281 -0.481032 0.991026 -0.1024 -0.0859217 0.663292 -0.374181 -0.648098 0.991026 -0.0668361 -0.115764 0.663292 -0.129952 -0.736991 0.991026 -0.0232121 -0.131642 0.663292 0.129951 -0.736991 0.991026 0.0232117 -0.131642 0.663292 0.703227 -0.255958 0.991026 0.12561 -0.0457217 0.991026 0.102398 -0.0859245 0.663292 0.573276 -0.481038 0.663292 0.748361 -4.88336e-06 0.991026 0.133672 -3.48832e-06 0.586801 -0.293914 0.754506 0.492216 -0.517199 0.700163 0.526561 -0.356488 0.771783 0.564558 -0.076149 0.821873 0.361697 -0.726625 0.584115 0.410409 -0.627484 0.661686 0.211924 -0.894421 0.393826 0.247419 -0.855288 0.455265 0.0572149 -0.987766 0.14507 0.0663041 -0.984154 0.164452 -0.097166 -0.987426 -0.124691 -0.116282 -0.980729 -0.157003 -0.251086 -0.894058 -0.370966 -0.294432 -0.846779 -0.44303 -0.397732 -0.728296 -0.558027 -0.451903 -0.618763 -0.642586 -0.517035 -0.522389 -0.678074 -0.558944 -0.353276 -0.750185 -0.605976 -0.303518 -0.735303 -0.612603 -0.0826297 -0.786059 0.606213 0.303637 -0.735058 0.513851 0.521749 -0.680981 0.550599 0.354163 -0.755916 0.587846 0.0792903 -0.805078 0.385268 0.727878 -0.567241 0.436967 0.62208 -0.649673 0.236752 0.894405 -0.379457 0.276273 0.850325 -0.447906 0.0825858 0.987781 -0.13217 0.0963175 0.982401 -0.160032 -0.0718637 0.987872 0.137638 -0.086464 0.983078 0.1615 -0.226425 0.894502 0.385485 -0.265904 0.852203 0.450605 -0.374413 0.727375 0.5751 -0.425536 0.624483 0.654935 -0.49563 0.517941 0.6972 -0.534814 0.355729 0.76644 -0.586739 0.293883 0.754566 -0.590365 0.0796303 0.803199 0.539962 -0.5161 0.664892 0.480309 -0.634719 0.605339 0.371913 -0.731173 0.571898 0.423025 -0.657292 0.623712 0.258534 -0.842521 0.472566 0.300128 -0.804523 0.51251 0.147996 -0.937362 0.315356 0.172712 -0.923485 0.342557 0.0391926 -0.991722 0.122276 0.0464917 -0.990485 0.129527 -0.0689203 -0.994179 -0.0828184 -0.0785315 -0.992014 -0.0987 -0.176183 -0.944702 -0.276583 -0.204072 -0.928329 -0.310742 -0.284468 -0.854851 -0.433944 -0.331545 -0.813952 -0.477032 -0.395551 -0.74948 -0.530867 -0.455073 -0.674478 -0.581368 -0.495497 -0.654791 -0.570728 -0.556214 -0.531633 -0.638743 0.554136 0.529647 -0.642189 0.491321 0.649273 -0.580559 0.386621 0.742698 -0.546739 0.440821 0.667001 -0.600655 0.275487 0.85077 -0.447546 0.319802 0.810623 -0.490527 0.166075 0.942313 -0.290628 0.193286 0.926867 -0.321804 0.0577326 0.993538 -0.0977189 0.0673531 0.991703 -0.109495 -0.0504656 0.992938 0.107363 -0.0577561 0.991246 0.118728 -0.158346 0.940303 0.301259 -0.183755 0.925397 0.331472 -0.267873 0.847153 0.458886 -0.312273 0.808365 0.49903 -0.3813 0.738579 0.555977 -0.437967 0.665472 0.604427 -0.484561 0.640339 0.595959 -0.541731 0.51779 0.662134 0.542741 -0.592757 0.595038 0.420477 -0.699163 0.578248 0.293106 -0.824309 0.484359 0.169709 -0.930907 0.323436 0.044795 -0.991134 0.125086 -0.0817292 -0.993069 -0.0844667 -0.205877 -0.937224 -0.281472 -0.326264 -0.835755 -0.441662 -0.447865 -0.71562 -0.536008 -0.561793 -0.613565 -0.554912 0.555038 0.606187 -0.569623 0.436714 0.709072 -0.553622 0.312155 0.831155 -0.460153 0.190549 0.934889 -0.299456 0.0666602 0.99264 -0.101104 -0.0597637 0.992278 0.108687 -0.184841 0.933891 0.306076 -0.307145 0.829425 0.466601 -0.431817 0.706129 0.561174 -0.549662 0.600317 0.58094 0.260751 -0.583102 0.769416 0.380893 -0.415994 0.825754 0.469793 -0.252043 0.846031 0.344103 -0.488342 0.801944 0.180154 -0.770217 0.611809 0.243578 -0.717849 0.652198 0.108755 -0.91411 0.390608 0.147885 -0.893413 0.424198 0.0378285 -0.990436 0.132688 0.0512663 -0.987916 0.146267 -0.0336505 -0.989966 -0.137239 -0.0460358 -0.987752 -0.149088 -0.105138 -0.912879 -0.39446 -0.14257 -0.89286 -0.427171 -0.177947 -0.768947 -0.614048 -0.238828 -0.716883 -0.655011 -0.261356 -0.583594 -0.768837 -0.343092 -0.487999 -0.802586 -0.377163 -0.411921 -0.829499 -0.460297 -0.246949 -0.852727 0.265691 0.587112 -0.764662 0.385273 0.420778 -0.821286 0.475862 0.255299 -0.841652 0.350702 0.490571 -0.797715 0.185229 0.773105 -0.606629 0.250448 0.719209 -0.648085 0.11393 0.915826 -0.385075 0.154933 0.894095 -0.420226 0.0430736 0.990971 -0.126967 0.0584072 0.988083 -0.142408 -0.0283884 0.989321 0.142961 -0.0389045 0.987472 0.152923 -0.0999041 0.911052 0.400005 -0.135538 0.892078 0.431076 -0.172785 0.765951 0.619245 -0.231979 0.715454 0.659024 -0.256348 0.579508 0.7736 -0.336529 0.485755 0.806716 -0.372674 0.407018 0.833937 -0.454116 0.243633 0.856984 0.663292 0.37418 -0.648099 0.991026 0.0668357 -0.115764 0.366437 -0.42377 0.828337 0.471583 -0.147875 0.869335 0.449228 -0.105191 0.887203 0.364446 -0.39735 0.842195 0.267286 -0.681259 0.681501 0.271411 -0.665994 0.694829 0.163843 -0.878851 0.44808 0.166709 -0.872755 0.458809 0.0565884 -0.986156 0.155867 0.0572491 -0.985432 0.160146 -0.0519539 -0.986176 -0.157347 -0.0532241 -0.9855 -0.161115 -0.159287 -0.878847 -0.449727 -0.162393 -0.872908 -0.460065 -0.263746 -0.6811 -0.683039 -0.267186 -0.66604 -0.696421 -0.366771 -0.423818 -0.828165 -0.362624 -0.397207 -0.843048 -0.45977 -0.144172 -0.876257 -0.43997 -0.103024 -0.892083 0.373629 0.424804 -0.824586 0.478334 0.149993 -0.865274 0.456205 0.106826 -0.883439 0.371759 0.39791 -0.838727 0.274796 0.681564 -0.678202 0.279018 0.665879 -0.691921 0.171609 0.87881 -0.445245 0.174552 0.872432 -0.456503 0.0644916 0.986067 -0.153336 0.0652216 0.985248 -0.158219 -0.0440467 0.986156 0.15986 -0.0452577 0.985584 0.163023 -0.151514 0.878793 0.45251 -0.154564 0.87314 0.462316 -0.256227 0.680728 0.686263 -0.259606 0.666086 0.699238 -0.359606 0.422765 0.831837 -0.355348 0.39662 0.846416 -0.452868 0.142008 0.880196 -0.432906 0.10137 0.895721 0.435822 -0.0817768 0.89631 0.361883 -0.381801 0.850452 0.269683 -0.656881 0.704115 0.164898 -0.869221 0.466116 0.0563174 -0.985025 0.162956 -0.0530647 -0.9851 -0.163589 -0.161778 -0.869391 -0.466891 -0.266674 -0.657007 -0.705143 -0.359783 -0.38172 -0.851379 -0.429248 -0.0805442 -0.899588 0.442887 0.0831032 -0.892718 0.369196 0.382071 -0.847181 0.277211 0.656537 -0.701508 0.172617 0.868759 -0.464178 0.0641592 0.984798 -0.161423 -0.0452122 0.985238 0.165109 -0.154011 0.869776 0.468796 -0.259102 0.657293 0.707695 -0.352457 0.381419 0.854572 -0.422112 0.0792052 0.903077 0.257129 -0.587886 0.76699 0.331049 -0.373506 0.866545 0.201662 -0.786654 0.583531 0.119709 -0.919336 0.374822 -0.055888 -0.992255 -0.110933 0.0313264 -0.989846 0.138647 -0.14227 -0.926128 -0.349352 -0.221 -0.797067 -0.561999 -0.272982 -0.60113 -0.751082 -0.350323 -0.395253 -0.849146 0.271638 0.600017 -0.752457 0.343308 0.387338 -0.855633 0.216447 0.794674 -0.567137 0.134436 0.92389 -0.358266 0.0458266 0.991433 -0.122315 -0.0416204 0.991021 0.127061 -0.258751 0.589253 0.765394 -0.206739 0.78945 0.577951 -0.338477 0.381888 0.859997 -0.128042 0.921968 0.365486 -0.735537 -0.577684 -0.353931 -0.71111 -0.641849 -0.286972 -0.742329 0.670027 0.00344031 -0.738514 0.661031 0.132793 -0.740574 -0.467836 -0.482368 -0.740841 0.552972 0.381283 -0.742089 -0.312693 -0.592897 -0.742125 0.35543 0.568261 -0.733089 -0.040031 -0.678953 -0.742275 -0.128599 -0.657639 -0.74226 0.13019 0.657344 -0.735712 0.0159317 0.677108 -0.742242 0.348553 -0.572353 -0.733316 0.267965 -0.624853 -0.735116 -0.252208 0.629282 -0.7422 -0.351364 0.570686 -0.741755 0.487523 -0.460565 -0.741582 -0.541652 0.395814 -0.737571 0.586905 -0.333963 -0.739669 -0.656314 0.148801 -0.713603 0.644099 -0.275512 -0.74225 -0.669956 0.0149601 0.736036 -0.57983 -0.349353 0.712187 -0.642821 -0.282081 0.742305 0.670005 0.00875838 0.7389 0.659565 0.137841 0.740872 -0.471946 -0.477887 0.741072 0.549852 0.385324 0.742333 -0.333968 -0.580868 0.74203 0.359634 0.565734 0.734011 -0.262094 -0.626526 0.734804 0.255078 0.628489 0.742027 0.144563 -0.654597 0.732425 0.0455639 -0.679321 0.736014 -0.0128654 0.676844 0.742326 -0.120556 0.659104 0.736972 0.584046 -0.340239 0.741539 0.483006 -0.465644 0.741377 -0.545222 0.39127 0.739217 -0.658285 0.142194 0.712125 0.642765 -0.282366 0.742311 -0.670011 0.00779624 0.74233 0.332512 -0.581706 0.742293 -0.344064 0.574997 -0.738527 0.591805 0.323023 -0.716543 0.646753 0.261298 -0.608372 0.686397 0.398425 -0.657682 0.652891 0.37575 -0.741936 0.491975 0.455513 -0.662126 0.534166 0.525601 -0.742283 0.345104 0.574386 -0.663186 0.358665 0.656919 -0.740857 0.178196 0.647594 -0.662403 0.180741 0.727018 -0.725208 0.0966439 0.681713 -0.626583 0.20032 0.753171 -0.742333 -0.334955 0.580299 -0.734012 -0.262089 0.626527 -0.63292 -0.418596 0.651299 -0.662845 -0.405704 0.629317 -0.741105 -0.475461 0.474026 -0.663099 -0.557598 0.499384 -0.73703 -0.584315 0.339651 -0.659645 -0.663547 0.35295 -0.71502 -0.645378 0.268762 -0.614337 -0.693126 0.37705 0.739611 0.598051 0.308725 0.719507 0.649428 0.246075 0.612084 0.690585 0.385285 0.658847 0.658984 0.36285 0.742233 0.502623 0.443239 0.662667 0.54483 0.513842 0.741524 0.375058 0.556303 0.66283 0.406259 0.628976 0.727722 0.308488 0.612581 0.629754 0.432571 0.645208 0.742277 -0.128423 0.657672 0.733186 -0.0392088 0.678897 0.631703 -0.176533 0.754843 0.662538 -0.176762 0.727873 0.742116 -0.313985 0.59218 0.663266 -0.381847 0.643639 0.740838 -0.471466 0.478413 0.663011 -0.554306 0.503152 0.736573 -0.582214 0.344219 0.659319 -0.661638 0.357119 0.713996 -0.644453 0.273662 0.613174 -0.691815 0.381327 -0.658495 -0.657085 -0.366911 -0.609757 -0.68796 -0.393582 0.602939 0.680267 -0.416776 0.656066 0.645218 -0.3915 0.661652 0.526684 -0.533685 0.662997 0.348157 -0.662739 0.663179 0.148127 -0.733657 0.636895 0.150279 -0.756162 0.632988 -0.418285 -0.651432 0.662865 -0.405014 -0.629741 0.663017 -0.554509 -0.50292 0.658855 -0.65903 -0.362752 0.610952 -0.689308 -0.389348 -0.60472 0.682276 -0.410868 -0.656675 0.648022 -0.385805 -0.661963 0.531446 -0.528555 -0.663268 0.381557 -0.643809 -0.637888 0.394913 -0.661167 -0.631723 -0.176439 -0.754848 -0.662543 -0.176585 -0.727911 -0.66327 -0.381229 -0.644001 -0.662913 -0.551214 -0.506665 -0.740348 -0.652937 -0.159871 -0.742006 -0.669735 -0.0297104 -0.741822 -0.536768 -0.40197 -0.742324 -0.330767 -0.582707 -0.739891 0.036158 -0.671754 -0.742015 -0.0874682 -0.664653 -0.742056 0.358578 -0.566371 -0.734808 0.255036 -0.628501 -0.741295 0.54654 -0.389585 -0.739638 0.656457 -0.148323 -0.742134 0.669851 -0.0231578 0.741106 -0.64824 -0.174777 0.741564 -0.669337 -0.0455088 0.742158 -0.527099 -0.413965 0.742283 -0.324871 -0.586068 0.73875 -0.212434 -0.639625 0.742258 0.130326 -0.657318 0.735632 0.016729 -0.677175 0.739298 0.657944 -0.143344 0.741092 0.549573 -0.385684 0.742215 0.669924 -0.0178821 0.742152 0.354075 -0.569071 -0.663292 0.703229 0.255954 -0.663292 0.74836 -1.40311e-06 -0.663292 -0.748361 9.75815e-07 -0.663292 -0.703229 -0.255954 -0.663292 0.573278 0.481037 -0.663292 -0.573277 -0.481037 -0.663292 0.37418 0.6481 -0.663292 -0.37418 -0.648099 -0.663292 -0.129951 0.736992 -0.663292 0.129951 0.736991 -0.663292 -0.129951 -0.736991 -0.663292 0.129951 -0.736991 -0.663292 -0.374181 0.648099 -0.663292 0.37418 -0.648099 -0.663292 -0.573278 0.481036 -0.663292 0.573278 -0.481037 -0.663292 -0.703229 0.255955 -0.663292 0.703229 -0.255954 -0.663292 -0.748361 -5.2835e-07 -0.663292 0.748361 -8.8623e-07 0.663292 0.703229 0.255955 0.663292 0.748361 -1.49964e-07 0.663292 -0.748361 3.4817e-07 0.663292 -0.703229 -0.255954 0.663292 0.573277 0.481037 0.663292 -0.573278 -0.481036 0.663292 0.37418 0.648099 0.663292 -0.374181 -0.648099 0.663292 0.129952 0.736991 0.663292 -0.129952 -0.736991 0.663292 -0.129951 0.736991 0.663292 0.129951 -0.736991 0.663292 -0.703228 0.255956 0.663292 -0.573277 0.481037 0.663292 0.573277 -0.481037 0.663292 0.703229 -0.255955 0.663292 -0.748361 2.36742e-06 0.663292 0.748361 -4.65672e-08 0.663292 -0.37418 0.648099 0.663292 0.37418 -0.648099 -0.661811 -0.724501 -0.192626 -0.654272 -0.738184 -0.164352 -0.662344 -0.606811 -0.439409 -0.663204 -0.38823 -0.639874 -0.66329 -0.132795 -0.736486 -0.644936 -0.103723 -0.757165 -0.663065 0.396701 -0.634802 -0.639015 0.389193 -0.663467 -0.663004 0.591991 -0.458227 -0.662509 0.719013 -0.210002 -0.652492 0.736175 -0.179727 0.662384 -0.720159 -0.206443 0.652548 -0.736238 -0.179262 0.662778 -0.59815 -0.450492 0.663166 -0.391003 -0.638222 0.642325 -0.371497 -0.670379 0.663232 0.143237 -0.73458 0.640358 0.131266 -0.756776 0.663291 0.375713 -0.647213 0.662933 0.594116 -0.455572 0.662346 0.72049 -0.205407 0.653089 0.736848 -0.174729 -0.654666 0.738629 0.160746 -0.661942 0.723609 0.195507 0.660924 -0.729595 0.1757 0.656477 -0.740672 0.142979 0.661864 -0.614204 0.429756 0.662989 -0.400168 0.632701 0.662907 -0.163416 0.73065 0.637037 -0.149527 0.756191 0.663053 0.397305 0.634437 0.638938 0.389591 0.663308 0.662915 0.594626 0.454933 0.66214 0.722153 0.200161 0.654111 0.738002 0.165809 -0.661272 -0.727762 0.181885 -0.655807 -0.739915 0.149812 -0.66207 -0.611231 0.433659 -0.662544 -0.414888 0.623622 -0.635486 -0.406657 0.656344 -0.66323 0.143487 0.734533 -0.640335 0.131398 0.756773 -0.66329 0.376241 0.646907 -0.662835 0.596735 0.452279 + + + + + + + + + + 0.0181392 0.999833 0.00227104 0.0522129 0.998612 0.00693249 0.0802545 0.99674 0.00821771 0.0987734 0.995095 0.00544053 0.105253 0.994445 -0.000140274 0.0987585 0.995094 -0.00585339 0.0802044 0.996738 -0.00895639 0.0521117 0.998609 -0.00803392 0.0180004 0.999831 -0.00360369 -0.018137 0.999833 0.00229593 -0.0522112 0.998612 0.00694573 -0.0802566 0.99674 0.00821706 -0.0987744 0.995095 0.00544109 -0.105254 0.994445 -0.000138827 -0.0987594 0.995094 -0.00585231 -0.0802059 0.996738 -0.00895932 -0.0521094 0.998609 -0.00805316 -0.0179969 0.999831 -0.00364057 0.911578 0.411113 -0.00346023 0.991006 0.13367 -0.00620643 0.907519 0.252443 -0.335681 0.83643 0.490461 -0.244606 0.703764 0.52528 -0.478326 0.640159 0.678782 -0.359794 0.444797 0.803895 -0.394852 0.382693 0.87231 -0.304338 0.170443 0.974126 -0.14842 0.110423 0.986204 -0.123326 -0.109146 0.981373 0.158094 -0.158484 0.982222 0.100615 -0.396225 0.820518 0.412015 -0.418768 0.863666 0.280561 -0.680053 0.537832 0.498261 -0.658282 0.672075 0.339086 -0.906152 0.25334 0.338685 -0.84112 0.488314 0.232524 -0.991007 0.13367 -0.00620403 -0.911578 0.411113 -0.00345779 -0.907518 0.252443 -0.335683 -0.83643 0.490461 -0.244607 -0.703757 0.525284 -0.478333 -0.640154 0.678784 -0.3598 -0.444789 0.803898 -0.394855 -0.382688 0.872311 -0.304341 -0.170444 0.974125 -0.148421 -0.110425 0.986203 -0.123326 0.109141 0.981374 0.158094 0.158478 0.982222 0.100617 0.396221 0.820519 0.412015 0.418763 0.863668 0.280563 0.68005 0.537834 0.498263 0.658279 0.672077 0.339089 0.906151 0.25334 0.338687 0.841119 0.488315 0.232526 0.788176 0.615436 0.00410635 0.729502 0.664767 -0.160973 0.558324 0.82602 -0.0772338 0.597244 0.802056 0.00252855 0.571727 0.784448 -0.240355 0.449249 0.885716 -0.116971 0.358328 0.911252 -0.203032 0.290231 0.951775 -0.099452 0.123054 0.989416 -0.0768932 0.102885 0.994078 -0.0349845 -0.117739 0.989722 0.0811619 -0.0942242 0.994448 0.0468595 -0.354076 0.911958 0.207274 -0.283724 0.952575 0.110004 -0.568544 0.785263 0.245193 -0.445689 0.886388 0.12521 -0.727346 0.665449 0.167767 -0.557013 0.826324 0.0832171 -0.788176 0.615436 0.00410973 -0.597244 0.802056 0.00253112 -0.729503 0.664767 -0.16097 -0.558325 0.82602 -0.0772303 -0.571725 0.784448 -0.240357 -0.449249 0.885716 -0.116972 -0.358327 0.911252 -0.203033 -0.290232 0.951775 -0.0994507 -0.123057 0.989416 -0.0768919 -0.102889 0.994078 -0.0349796 0.117734 0.989723 0.0811648 0.094219 0.994448 0.0468658 0.354071 0.911959 0.207278 0.283721 0.952576 0.110008 0.568541 0.785264 0.245198 0.445688 0.886388 0.125212 0.727345 0.665449 0.16777 0.557013 0.826324 0.083217 0.354544 0.934269 -0.0379476 0.379276 0.925284 0.000483189 0.285352 0.956717 -0.0571557 0.183914 0.981734 -0.0487128 0.0639812 0.997799 -0.0174414 -0.0620409 0.997825 0.022253 -0.182502 0.981791 0.0527249 -0.284653 0.95676 0.0598622 -0.354342 0.934284 0.0394226 -0.379275 0.925284 0.000483281 -0.354543 0.934269 -0.0379477 -0.285352 0.956717 -0.0571567 -0.183916 0.981734 -0.0487103 -0.0639851 0.997799 -0.017433 0.0620366 0.997826 0.0222629 0.182499 0.981791 0.0527308 0.284652 0.95676 0.0598635 0.354343 0.934284 0.0394184 0.274723 0.961523 -0.000153308 0.256975 0.966103 -0.0246656 0.207126 0.977604 -0.0372588 0.133502 0.990521 -0.0323306 0.0459884 0.998861 -0.0126846 -0.0460134 0.998861 0.0125961 -0.133536 0.990521 0.0322012 -0.207164 0.977604 0.0370562 -0.257001 0.966103 0.0243919 -0.274723 0.961523 -0.000154012 -0.256974 0.966103 -0.0246696 -0.207126 0.977604 -0.0372626 -0.133504 0.990521 -0.0323333 -0.0459891 0.998861 -0.0126834 0.046013 0.998862 0.0125967 0.133536 0.990521 0.0321978 0.207164 0.977604 0.0370502 0.257002 0.966103 0.0243863 -3.01003e-06 0.342017 -0.939694 -2.20165e-06 0.34202 -0.939693 -2.90922e-06 -6.51188e-07 -1 -3.42273e-06 -4.05917e-06 -1 -1.84774e-06 0.642786 -0.766046 -8.19564e-07 0.642787 -0.766044 -4.91738e-07 0.866025 -0.5 -7.82311e-08 0.866025 -0.5 -1.04308e-07 0.984808 0.173648 -1.19209e-07 0.984808 0.173648 -1.41561e-07 0.984808 -0.173648 -1.3411e-07 0.984808 -0.173648 -1.63913e-07 0.866026 0.5 -1.25542e-06 0.866025 0.5 -1.92225e-06 0.642789 0.766043 -4.50015e-06 0.642788 0.766044 -5.58794e-06 0.342026 0.93969 -7.4394e-06 0.342021 0.939692 -7.31525e-06 8.37867e-06 1 -8.03872e-06 1.19377e-06 1 6.80983e-06 0.342013 -0.939695 4.88013e-06 0.342019 -0.939693 6.72054e-06 -1.01597e-06 -1 7.6892e-06 -8.80057e-06 -1 3.8296e-06 0.642784 -0.766047 1.49757e-06 0.642787 -0.766045 8.19564e-07 0.866025 -0.500001 -6.70552e-08 0.866025 -0.5 -5.96046e-08 0.984808 -0.173649 7.45058e-08 0.984808 -0.173649 1.56462e-07 0.984808 0.173647 1.47149e-07 0.984808 0.173648 2.38419e-06 0.342023 0.939691 3.14415e-06 0.342021 0.939692 1.9297e-06 0.642788 0.766044 8.19564e-07 0.642789 0.766043 3.14107e-06 3.74139e-06 1 3.42273e-06 7.20453e-07 1 -0.674614 0.337898 0.656293 -0.746434 0.163038 0.645179 -0.839563 -0.0753122 0.538017 -0.814498 0.109862 0.56967 -0.817689 0.0537135 0.573149 -0.902051 -0.172989 0.395447 -0.868636 0.0122729 0.4953 -0.959643 -0.151491 0.236927 -0.892281 0.0145887 0.451244 -0.988805 -0.0427281 0.142964 -0.888818 0.0297159 0.457295 -0.98418 0.0925004 0.151107 -0.858135 0.0282892 0.512645 -0.946278 0.193476 0.259086 -0.80078 -0.0213203 0.598578 -0.881995 0.201975 0.425782 -0.729462 -0.145557 0.668355 -0.81836 0.0891758 0.567745 -0.657444 -0.329298 0.677739 -0.779005 -0.105074 0.618151 -0.657226 -0.329188 -0.678004 -0.731708 -0.147832 -0.665394 -0.823998 0.0855809 -0.560093 -0.797853 -0.107617 -0.593169 -0.806851 -0.0326096 -0.589855 -0.889489 0.191513 -0.414887 -0.862199 0.0133872 -0.506392 -0.951738 0.17724 -0.250562 -0.890292 0.0135286 -0.45519 -0.986334 0.072611 -0.147895 -0.891221 -0.0016386 -0.453566 -0.987247 -0.0627981 -0.14629 -0.864969 -0.00269161 -0.501818 -0.954687 -0.16798 -0.245675 -0.811945 0.0423673 -0.582195 -0.895014 -0.183528 -0.40653 -0.744171 0.160667 -0.648379 -0.834329 -0.078824 -0.545602 -0.674668 0.337924 -0.656224 -0.79599 0.107365 -0.595711 -0.48065 0.459409 0.746939 -0.365277 0.482708 0.795968 -0.475189 0.379285 0.793939 -0.586203 0.326364 0.741521 -0.545238 0.276554 0.791349 -0.657653 0.214659 0.72209 -0.584997 0.174131 0.792122 -0.701965 0.128564 0.700512 -0.602153 0.0742145 0.794924 -0.721403 0.0563987 0.690215 -0.599478 -0.0250844 0.799998 -0.718621 -0.0122892 0.695293 -0.577134 -0.128482 0.806479 -0.693497 -0.0869486 0.715194 -0.532167 -0.235697 0.81317 -0.642388 -0.175548 0.746003 -0.455702 -0.341688 0.82194 -0.561687 -0.289182 0.775165 -0.344393 -0.455109 0.821139 -0.461747 -0.441341 0.769421 -0.464238 -0.443722 -0.766546 -0.350325 -0.462948 -0.814218 -0.463302 -0.356187 -0.811469 -0.57294 -0.306033 -0.760318 -0.536872 -0.250027 -0.805764 -0.648314 -0.190329 -0.7372 -0.580123 -0.144964 -0.801525 -0.696581 -0.101345 -0.710285 -0.600659 -0.0436147 -0.798315 -0.719755 -0.0277061 -0.693675 -0.601313 0.0556237 -0.797075 -0.720589 0.0409175 -0.692154 -0.582281 0.157481 -0.79759 -0.699155 0.113992 -0.705824 -0.540711 0.262022 -0.79936 -0.651974 0.199702 -0.731471 -0.46769 0.364652 -0.805168 -0.575125 0.309345 -0.757322 -0.359618 0.475229 -0.803015 -0.478657 0.457503 -0.749386 -0.401832 0.438864 0.803697 -0.528428 0.329363 0.782485 -0.60838 0.230002 0.759587 -0.653633 0.139295 0.743882 -0.673818 0.0624648 0.736252 -0.670342 -0.00794374 0.74201 -0.643158 -0.0871925 0.760753 -0.591261 -0.184118 0.785182 -0.505426 -0.291884 0.812003 -0.374735 -0.409269 0.831909 -0.38467 -0.420119 -0.821906 -0.51509 -0.30745 -0.800098 -0.59883 -0.203881 -0.774491 -0.647865 -0.109421 -0.753856 -0.672008 -0.0302356 -0.739927 -0.672656 0.0404149 -0.738851 -0.649516 0.117641 -0.751192 -0.601415 0.210811 -0.770622 -0.519203 0.314151 -0.794819 -0.392312 0.428465 -0.813946 -0.622934 0.507248 0.595527 -0.557636 0.609025 0.564031 -0.745516 0.399969 0.533134 -0.811229 0.275419 0.515802 -0.650832 0.373032 0.66126 -0.846859 0.170365 0.503792 -0.666491 0.224485 0.710913 -0.868694 0.0876869 0.487526 -0.674245 0.0727051 0.73492 -0.8797 0.02466 0.47489 -0.674467 -0.07884 0.734084 -0.879989 -0.0305325 0.474012 -0.667071 -0.229441 0.708783 -0.869582 -0.093149 0.484923 -0.651439 -0.375641 0.659182 -0.84821 -0.174385 0.500129 -0.62268 -0.506682 0.596274 -0.811657 -0.276026 0.514803 -0.560166 -0.611787 0.558508 -0.751416 -0.403134 0.522357 -0.620843 -0.502601 -0.60162 -0.554619 -0.60573 -0.570517 -0.741657 -0.397898 -0.540021 -0.808398 -0.27143 -0.52232 -0.649406 -0.367008 -0.666016 -0.844852 -0.164529 -0.509073 -0.665626 -0.217378 -0.713925 -0.867465 -0.080431 -0.490954 -0.673931 -0.064997 -0.73593 -0.879254 -0.0166384 -0.476062 -0.674708 0.0865592 -0.732991 -0.880333 0.0385341 -0.472789 -0.667875 0.236592 -0.705668 -0.870706 0.100361 -0.481455 -0.652827 0.381715 -0.654302 -0.850109 0.180162 -0.49483 -0.624758 0.511351 -0.590082 -0.8144 0.279957 -0.508308 -0.563162 0.61506 -0.55186 -0.755168 0.405147 -0.515342 8.9407e-08 0.866026 0.499999 5.02914e-07 0.866026 0.499999 -0.881021 0.128258 0.455359 -0.829508 0.260112 0.494224 -0.863836 0.202277 0.461379 -0.902883 0.0706506 0.42404 -0.915987 0.0399731 0.399211 -0.935069 -0.0114478 0.354279 -0.940016 -0.00132231 0.341128 -0.959284 -0.0359663 0.280143 -0.952509 -0.00653885 0.304442 -0.971978 -0.0183821 0.234352 -0.952772 0.00174131 0.30368 -0.972207 0.0143017 0.233687 -0.940799 -0.00293508 0.338953 -0.960024 0.0320405 0.278076 -0.917013 -0.0426047 0.396575 -0.936285 0.00844038 0.351139 -0.880882 -0.128097 0.455673 -0.903616 -0.0714518 0.422342 -0.836114 -0.262183 0.481844 -0.868588 -0.20339 0.451872 -0.877995 -0.124788 -0.462117 -0.825634 -0.258897 -0.5013 -0.860172 -0.201419 -0.468545 -0.899897 -0.0674246 -0.43086 -0.913762 -0.0343797 -0.404792 -0.932828 0.0168715 -0.359927 -0.938629 0.00858837 -0.344821 -0.957888 0.0431047 -0.283887 -0.952006 0.0147228 -0.305725 -0.971475 0.0264661 -0.235658 -0.953171 0.00644122 -0.302364 -0.97261 -0.00622794 -0.232359 -0.942082 0.0101907 -0.335229 -0.961316 -0.0249259 -0.274318 -0.919142 0.048181 -0.390969 -0.938416 -0.00305426 -0.345495 -0.883831 0.131534 -0.448933 -0.906502 0.0746426 -0.41555 -0.839872 0.263361 -0.474611 -0.872131 0.204219 -0.444616 -0.880936 0.165298 0.443428 -0.9138 0.0351927 0.404638 -0.945124 -0.0405221 0.324188 -0.968915 -0.0543947 0.241338 -0.981233 -0.0244579 0.191271 -0.981414 0.0211929 0.19073 -0.969441 0.0515964 0.239836 -0.945978 0.0384308 0.321946 -0.914628 -0.03607 0.402683 -0.884158 -0.165903 0.436739 -0.877405 -0.164636 -0.450616 -0.910869 -0.0321317 -0.411442 -0.942944 0.0457581 -0.329793 -0.96757 0.0613226 -0.245046 -0.980751 0.0323309 -0.192568 -0.981807 -0.013312 -0.189415 -0.970706 -0.0446338 -0.23609 -0.94808 -0.0331776 -0.316298 -0.917476 0.0391209 -0.395862 -0.887587 0.166546 -0.429479 -0.611425 0.515653 0.600217 -0.574772 0.648488 0.4991 -0.631893 0.350712 0.691167 -0.6524 0.211738 0.727696 -0.660934 -0.0465107 0.749002 -0.662552 0.0832952 0.74437 -0.647855 -0.179718 0.740261 -0.625392 -0.326353 0.708786 -0.604514 -0.500151 0.620009 -0.563232 -0.635467 0.528159 -0.605119 -0.501486 -0.618339 -0.567535 -0.640322 -0.517582 -0.626983 -0.33214 -0.704682 -0.649526 -0.190889 -0.735988 -0.661707 -0.0616012 -0.747227 -0.661985 0.0679001 -0.746435 -0.610741 0.514091 -0.602251 -0.63025 0.344371 -0.69584 -0.570429 0.643588 -0.510299 -0.650816 0.199965 -0.732429 0.10022 0.423892 -0.900151 0.213029 0.19228 -0.957939 -0.00255408 0.00230487 -0.999994 0.0751993 0.276479 -0.958073 0.0510693 0.676576 -0.7346 0.047037 0.608973 -0.791795 0.0190399 0.874333 -0.484952 0.0175791 0.857849 -0.513601 -0.116785 0.990849 0.0676769 -0.00923993 0.983283 -0.181848 0.0104416 0.983074 -0.182912 0.0989295 0.991529 0.0841622 0.0116384 0.860666 0.509037 0.115351 0.954766 0.274073 -0.10326 0.959049 0.263747 -0.0140647 0.859522 0.510905 -0.0292778 0.66253 0.748463 -0.0333724 0.619062 0.784632 -0.0839494 0.41103 0.907748 -0.0628351 0.287497 0.955718 -0.204522 0.184601 0.961298 0.0111054 0.0100238 0.999888 -0.0964817 0.420952 -0.901937 -0.209398 0.189003 -0.959391 0.00650168 0.00586834 -0.999962 -0.071306 0.279959 -0.95736 -0.0465607 0.673716 -0.737523 -0.0432503 0.611791 -0.789836 -0.000897795 0.86643 -0.499298 -0.0212196 0.856095 -0.516383 0.110843 0.956394 -0.270229 -0.105461 0.958289 -0.26563 -0.0213036 0.981063 0.192513 -0.120878 0.99061 -0.0638842 0.0966541 0.991574 -0.0862558 0.00317156 0.984302 0.176465 0.0890539 0.415083 0.905415 0.0343205 0.665831 0.745313 0.0376598 0.615921 0.786907 0.0679448 0.282957 0.956723 0.20961 0.189194 0.959307 -0.00578718 0.00522396 0.99997 0.00214487 0.86699 0.498321 0.00777212 0.862471 0.506047 -0.075075 0.403942 -0.911699 -0.193971 0.175077 -0.965258 -0.264273 0.298166 -0.917201 -0.0860872 0.430398 -0.898525 -0.0242804 0.659232 -0.751548 -0.0393191 0.67564 -0.736182 0.00866786 0.862055 -0.506741 -0.0118375 0.872565 -0.488354 0.0467932 0.975515 -0.214896 0.0343251 0.976763 -0.211554 0.158528 0.986936 0.0287284 0.217602 0.972937 -0.0777419 5.18858e-05 0.866049 0.499959 -0.11084 0.956396 0.270226 -0.198417 0.900839 0.38616 -0.0243373 0.851713 0.523443 0.0426875 0.671239 0.74001 0.0160076 0.656436 0.754212 0.0885751 0.414703 0.905636 0.069459 0.413781 0.907723 0.19951 0.180079 0.963207 0.250094 0.282169 0.926193 0.0635154 0.394637 -0.916639 0.18267 0.164878 -0.969251 0.255557 0.288332 -0.922798 0.0766646 0.421008 -0.903811 0.0122196 0.651149 -0.758851 0.0287976 0.667071 -0.744438 -0.0346361 0.849451 -0.52653 -0.0247689 0.851448 -0.523853 -0.146557 0.942454 -0.300503 -0.208247 0.894213 -0.396254 0.0091076 0.983306 0.18173 0.116177 0.990881 -0.0682403 0.202257 0.977532 0.0593511 0.0316277 0.977491 0.208592 -0.0179427 0.87387 0.485828 0.00588357 0.862672 0.505729 -0.0470883 0.674052 0.737182 -0.0193255 0.659218 0.751704 -0.0922947 0.417649 0.903909 -0.0724902 0.416827 0.906091 -0.203148 0.183363 0.961826 -0.252931 0.28537 0.92444 0.0796262 0.423967 -0.90217 0.26106 0.294541 -0.919289 0.276444 0.311899 0.909009 0.0976442 0.441818 0.891775 0.0466163 0.681489 0.730343 0.0198033 0.876811 0.480427 -0.012257 0.982238 0.187237 -0.185259 0.981911 0.039105 0.198198 0.900984 -0.385935 0.0238003 0.852041 -0.522933 -0.0191212 0.659047 -0.751859 -0.0765929 0.420937 -0.903851 -0.258252 0.291373 -0.921091 -0.272526 0.307478 0.911695 -0.093459 0.437694 0.894253 -0.0419796 0.677782 0.734064 0.00566031 0.862801 0.505513 0.18181 0.91147 0.369009 -0.202196 0.977549 -0.0592785 -0.0315076 0.977523 -0.20846 -0.00540808 0.862946 -0.505267 0.0224289 0.661805 -0.74934 -0.0542549 0.295087 -0.953929 0.0220558 0.0199061 -0.999559 -0.0275416 0.623302 -0.781496 0.00363822 0.867657 -0.49715 -0.0601588 0.990998 0.119602 0.0217326 0.987792 -0.154255 0.0203041 0.856538 0.515684 0.105429 0.958301 0.265602 0.0392467 0.614752 0.787744 0.0632047 0.28717 0.955792 -0.0171907 0.0155165 0.999732 0.0426652 0.305267 -0.951311 -0.0337827 0.0304922 -0.998964 0.0161063 0.6315 -0.775209 -0.00867598 0.869882 -0.493184 0.0728501 0.968636 -0.237566 -0.0105447 0.983056 0.183003 -0.0995213 0.991516 -0.0836178 -0.0670559 0.283748 0.956551 -0.0429129 0.612042 0.78966 0.0132737 0.0119823 0.99984 -0.0164077 0.858409 0.512703 -1.49012e-08 0.342019 -0.939693 -3.99758e-08 -1.91034e-06 -1 -1.67186e-08 -1.28912e-06 -1 0 0.34202 -0.939693 -2.98023e-08 0.642788 -0.766044 -8.9407e-08 0.642788 -0.766044 -3.12924e-07 0.866026 -0.499999 -3.72529e-07 0.866026 -0.5 2.30968e-07 0.984808 0.173648 -1.3411e-07 0.984808 -0.173648 1.3411e-07 0.984808 -0.173647 1.41561e-07 0.984808 0.173648 -5.96046e-08 0.866025 0.500001 -2.38419e-07 0.866025 0.5 -8.9407e-08 0.642787 0.766045 -8.9407e-08 0.642787 0.766045 -4.47035e-08 0.342021 0.939692 -1.19209e-07 0.34202 0.939693 -2.50039e-07 -4.84394e-07 1 -3.19814e-07 9.0077e-07 1 1.49012e-08 0.34202 -0.939692 -1.99882e-07 -2.323e-08 -1 -3.70775e-08 -4.98107e-07 -1 2.08616e-07 0.342019 -0.939693 2.23517e-07 0.642788 -0.766044 2.38419e-07 0.642787 -0.766045 1.63913e-07 0.866025 -0.5 8.9407e-08 0.866025 -0.5 2.98023e-08 0.984808 -0.173649 -5.21541e-08 0.984808 -0.173649 -5.96046e-08 0.984808 0.173648 -3.72529e-08 0.984808 0.173647 -3.72529e-07 0.342022 0.939692 -2.98023e-08 0.642788 0.766044 -1.63913e-07 0.642788 0.766044 -5.36442e-07 0.342021 0.939692 -5.99645e-07 2.63199e-06 1 -5.99644e-07 5.93707e-07 1 -1.49012e-08 0.866026 0.5 -1.49012e-08 0.866026 0.5 -0.0442974 0.294292 -0.954688 0.109014 0.122994 -0.986402 -0.0354494 0.611231 -0.790658 -0.0107988 0.859819 -0.510484 -0.00191604 0.984428 -0.175776 -0.154963 0.987915 -0.00333884 0.0173465 0.855943 0.516779 0.177809 0.913927 0.364858 0.0195682 0.625595 0.779903 0.032222 0.307454 0.951017 -0.119211 0.134501 0.983717 0.0347002 0.304762 -0.951796 -0.118903 0.134152 -0.983802 0.0261246 0.619709 -0.784396 0.0129393 0.858561 -0.512548 0.165454 0.921262 -0.351997 -0.00895616 0.982963 0.183583 -0.17291 0.984633 0.0244779 -0.00117452 0.865362 0.501146 -0.021824 0.623578 0.781457 -0.0354224 0.303978 0.95202 0.115896 0.130761 0.984617 -0.106622 0.120295 -0.986996 0.0422991 0.296477 -0.954103 0.0560043 0.281424 0.957948 -0.0948362 0.107001 0.989726 0.0435059 0.603802 0.795946 0.0200354 0.854328 0.519348 0.0225901 0.979811 0.198647 0.184772 0.982026 0.0385266 -0.0178142 0.855663 -0.517226 -0.178087 0.913757 -0.365147 -0.0223659 0.623092 -0.781829 -0.0390687 0.300006 -0.953137 0.10998 0.124085 -0.986158 -0.0517329 0.286131 0.956793 0.0993693 0.112113 0.988714 -0.0402544 0.606811 0.793826 -0.0315011 0.847277 0.530216 -0.190037 0.906291 0.377521 0.00912485 0.982927 -0.183771 0.172996 0.984616 -0.0245796 0.00157917 0.865132 -0.501541 0.0246136 0.621072 -0.783367 + + + + + + + + + + 0.76055 0.204638 0.764446 0.193934 0.771768 0.185209 0.781633 0.179513 0.79285 0.177535 0.804068 0.179513 0.813933 0.185208 0.821255 0.193934 0.825151 0.204638 0.825151 0.216029 0.821255 0.226733 0.813933 0.235458 0.804068 0.241154 0.79285 0.243132 0.781633 0.241154 0.771768 0.235458 0.764446 0.226733 0.760551 0.216029 0.79285 0.0350554 0.79285 0.0005 0.864618 0.0131544 0.8528 0.0456259 0.92773 0.049591 0.905519 0.0760622 0.974575 0.105416 0.944649 0.122694 0.9995 0.173896 0.965469 0.179897 0.9995 0.246771 0.965469 0.240771 0.974575 0.315252 0.944649 0.297974 0.927731 0.371078 0.905519 0.344606 0.864618 0.407515 0.8528 0.375043 0.79285 0.420169 0.79285 0.385613 0.721083 0.407515 0.732901 0.375043 0.657971 0.371077 0.680183 0.344606 0.611129 0.315251 0.641055 0.297974 0.586204 0.246771 0.620235 0.240771 0.586204 0.173896 0.620235 0.179897 0.611129 0.105417 0.641055 0.122694 0.657972 0.0495914 0.680183 0.0760624 0.721083 0.0131543 0.732901 0.0456258 0.79285 0.0672395 0.841792 0.0758692 0.831008 0.105499 0.79285 0.0987706 0.884831 0.100717 0.864563 0.124871 0.916776 0.138786 0.889469 0.154552 0.933774 0.185485 0.902721 0.190961 0.933774 0.235182 0.902721 0.229706 0.916776 0.281882 0.889469 0.266116 0.884831 0.319951 0.864563 0.295797 0.841792 0.344799 0.831008 0.315169 0.79285 0.353429 0.79285 0.321897 0.743909 0.344799 0.754693 0.315169 0.700871 0.319951 0.721139 0.295797 0.668927 0.281882 0.696234 0.266116 0.65193 0.235182 0.682982 0.229706 0.65193 0.185485 0.682982 0.190961 0.668927 0.138786 0.696234 0.154552 0.700871 0.100717 0.721139 0.124871 0.743909 0.0758689 0.754693 0.105499 0.819763 0.136395 0.79285 0.13165 0.843429 0.150058 0.860995 0.170991 0.870341 0.19667 0.870341 0.223997 0.860995 0.249676 0.843429 0.27061 0.819762 0.284273 0.79285 0.289018 0.765939 0.284273 0.742273 0.27061 0.724708 0.249676 0.715362 0.223997 0.715362 0.19667 0.724708 0.170991 0.742273 0.150058 0.765939 0.136395 0.79285 0.153816 0.812181 0.157224 0.82918 0.167038 0.841797 0.182075 0.848511 0.200519 0.848511 0.220147 0.841797 0.238592 0.82918 0.253629 0.812181 0.263443 0.79285 0.266852 0.77352 0.263443 0.756522 0.253629 0.743905 0.238592 0.737191 0.220147 0.737191 0.200519 0.743905 0.182074 0.756522 0.167038 0.77352 0.157224 0.582163 0.058275 0.414215 0.0582746 0.414215 0.0005 0.582163 0.000500584 0.582163 0.116049 0.414215 0.116049 0.582162 0.173823 0.414214 0.173823 0.582161 0.289371 0.414214 0.289371 0.414214 0.231597 0.582162 0.231597 0.582161 0.347145 0.414213 0.347145 0.58216 0.404919 0.414213 0.404919 0.58216 0.462694 0.414212 0.462692 0.582159 0.520468 0.414212 0.520467 0.24222 0.462693 0.410167 0.462694 0.410167 0.520468 0.242219 0.520467 0.24222 0.404919 0.410168 0.404919 0.242221 0.347145 0.410168 0.347145 0.242221 0.289371 0.410169 0.289371 0.242222 0.231597 0.410169 0.231597 0.242223 0.0582746 0.410171 0.0582751 0.41017 0.116049 0.242222 0.116049 0.242223 0.0005 0.410171 0.000500584 0.468322 0.913252 0.426452 0.879724 0.444492 0.849758 0.49152 0.882912 0.381043 0.853773 0.394541 0.821919 0.332575 0.83649 0.340781 0.802752 0.282149 0.828357 0.284433 0.793613 0.231178 0.829521 0.227328 0.794949 0.181165 0.839889 0.171415 0.806504 0.13355 0.859378 0.11861 0.828153 0.0893866 0.887399 0.0699931 0.858286 0.0491005 0.922816 0.0245391 0.893574 0.466499 0.705201 0.425653 0.670433 0.444582 0.641021 0.490596 0.67557 0.381041 0.643133 0.395486 0.611698 0.333112 0.624405 0.342324 0.590927 0.282953 0.614766 0.286274 0.580103 0.23197 0.614404 0.229155 0.579729 0.18167 0.623278 0.172923 0.589621 0.133494 0.641337 0.119493 0.609681 0.0885122 0.668025 0.069997 0.638347 0.0471859 0.702224 0.0235087 0.672261 0.438924 0.940951 0.406181 0.965736 0.380328 0.940304 0.404986 0.909874 0.348583 0.921876 0.365773 0.887038 0.313612 0.909918 0.323545 0.87219 0.276951 0.904327 0.279663 0.865269 0.239838 0.905167 0.235345 0.866273 0.203473 0.912411 0.191823 0.875166 0.169091 0.925951 0.150326 0.891927 0.138231 0.945817 0.112208 0.916541 0.113572 0.972407 0.0797314 0.949142 0.436285 0.732007 0.402814 0.7558 0.377735 0.729605 0.403294 0.699927 0.346558 0.710233 0.364783 0.675926 0.31196 0.697233 0.323019 0.659819 0.275484 0.690548 0.279363 0.651587 0.238365 0.690277 0.235036 0.651266 0.2018 0.696432 0.191268 0.658856 0.16703 0.70894 0.149289 0.674371 0.13559 0.727875 0.110453 0.697836 0.110148 0.753717 0.0770171 0.729452 0.384115 0.981403 0.36353 0.960936 0.337066 0.945745 0.307042 0.935647 0.275176 0.930869 0.242819 0.931601 0.21121 0.937817 0.18169 0.94927 0.155957 0.965659 0.136334 0.987048 0.380289 0.770799 0.360326 0.749724 0.33433 0.733746 0.304624 0.722754 0.272917 0.717025 0.240554 0.716789 0.208775 0.722058 0.178926 0.732625 0.152715 0.748238 0.132462 0.769031 0.681912 0.90653 0.706803 0.919453 0.698157 0.932319 0.675565 0.920935 0.655891 0.897463 0.651491 0.912556 0.629214 0.891461 0.626581 0.906938 0.602103 0.888416 0.601202 0.904082 0.574833 0.888354 0.575663 0.904024 0.547709 0.891275 0.550271 0.906765 0.521005 0.897156 0.525336 0.912268 0.494943 0.906103 0.501224 0.920537 0.469993 0.918912 0.47858 0.931817 0.714544 0.805127 0.739331 0.818249 0.730582 0.831045 0.708082 0.81948 0.688597 0.79585 0.684075 0.810907 0.661969 0.789633 0.659212 0.805089 0.634884 0.78637 0.633856 0.802028 0.607616 0.786088 0.608319 0.801764 0.580468 0.78879 0.582906 0.8043 0.553718 0.794456 0.557927 0.809603 0.527584 0.803194 0.533749 0.817678 0.502532 0.815802 0.511015 0.828776 0.242222 0.173823 0.41017 0.173823 0.668985 0.936398 0.690047 0.946441 0.682119 0.961849 0.662427 0.952898 0.646787 0.928695 0.641944 0.9458 0.623753 0.923462 0.620789 0.940942 0.600234 0.920795 0.599213 0.938469 0.576554 0.920741 0.577494 0.93842 0.553024 0.923301 0.555908 0.940795 0.529966 0.928429 0.53473 0.945555 0.507732 0.936031 0.514215 0.95256 0.486625 0.945976 0.494481 0.96142 0.701378 0.83489 0.722358 0.845101 0.714307 0.860445 0.694687 0.851336 0.679242 0.827008 0.674262 0.844073 0.65625 0.82159 0.653146 0.839045 0.632754 0.818733 0.631591 0.836398 0.609076 0.818488 0.609873 0.836173 0.585525 0.820858 0.588268 0.838374 0.562427 0.8258 0.567053 0.842964 0.540133 0.833223 0.546483 0.849804 0.518947 0.842999 0.526679 0.858506 0.674479 0.977878 0.655957 0.969606 0.637082 0.963047 0.617787 0.958588 0.598177 0.956327 0.578449 0.956282 0.558829 0.958454 0.539513 0.962825 0.520608 0.969298 0.502048 0.977484 0.706538 0.876412 0.688083 0.867991 0.669261 0.861281 0.650002 0.856666 0.630411 0.854246 0.610684 0.854042 0.591047 0.856056 0.571698 0.860272 0.552742 0.866592 0.534117 0.87463 0.464641 0.814738 0.513964 0.847718 0.410303 0.784997 0.350436 0.76379 0.222917 0.755056 0.287126 0.753548 0.160072 0.767968 0.10117 0.791982 0.0482513 0.824229 0.0005 0.859453 0.465771 0.60662 0.514084 0.641064 0.412348 0.575264 0.353142 0.552272 0.290164 0.540137 0.225931 0.53972 0.0492829 0.603656 0.103141 0.573006 0.0005 0.637437 0.16273 0.550768 0.847978 0.477106 0.84068 0.415847 0.856616 0.414212 0.86337 0.475839 0.851775 0.537912 0.867371 0.53726 0.851858 0.598837 0.867451 0.598657 0.851459 0.721687 0.85193 0.659914 0.86737 0.659989 0.867506 0.721872 0.739715 0.480685 0.739266 0.418946 0.755305 0.41886 0.755145 0.480769 0.739592 0.541658 0.755167 0.542234 0.736107 0.602478 0.751503 0.603667 0.729137 0.66377 0.74508 0.665323 0.860539 0.927855 0.867609 0.989134 0.851669 0.990709 0.845145 0.929063 0.856965 0.867042 0.841391 0.86763 0.856839 0.806072 0.841409 0.806162 0.857286 0.744335 0.841247 0.744252 0.954434 0.91093 0.954904 0.972703 0.938857 0.972889 0.938993 0.911005 0.958384 0.728122 0.954588 0.788928 0.938993 0.788276 0.942993 0.726856 0.965682 0.666863 0.949747 0.665228 0.954505 0.849853 0.938912 0.849674 0.968715 0.416713 0.974966 0.355344 0.987794 0.359225 0.981556 0.417839 0.965641 0.477541 0.978631 0.477949 0.965586 0.538427 0.978469 0.538424 0.965577 0.599389 0.978483 0.598775 0.96941 0.660956 0.982381 0.657588 0.90528 0.796781 0.905728 0.735044 0.918898 0.737846 0.918081 0.796967 0.905399 0.857745 0.918378 0.857322 0.908596 0.918564 0.921432 0.917413 0.914965 0.979913 0.927784 0.976008 0.795214 0.607503 0.789661 0.668932 0.776791 0.665197 0.782364 0.606521 0.797601 0.54665 0.784652 0.54639 0.797658 0.485749 0.784778 0.486216 0.794566 0.424149 0.781557 0.427365 0.902025 0.641421 0.901554 0.703193 0.888371 0.700332 0.889212 0.641133 0.901955 0.580343 0.889062 0.580447 0.901877 0.519426 0.888874 0.5199 0.898459 0.458614 0.885625 0.45981 0.891862 0.397282 0.879057 0.401234 0.835148 0.478411 0.827923 0.419934 0.978439 0.67095 0.971215 0.729427 0.9676 0.789447 0.967396 0.849963 0.967246 0.910644 0.968088 0.969842 0.870455 0.747134 0.869639 0.806251 0.869952 0.866575 0.873373 0.926597 0.88038 0.985094 0.716361 0.659749 0.723272 0.601238 0.726607 0.5412 0.726915 0.480867 0.726097 0.421747 0.838276 0.718826 0.839117 0.659628 0.838968 0.598947 0.838764 0.538431 0.951354 0.415518 0.957054 0.353782 0.948086 0.476988 0.94804 0.538421 0.951452 0.661814 0.948171 0.5999 0.887891 0.796862 0.887731 0.734955 0.887866 0.858331 0.89124 0.919791 0.897058 0.981509 0.812585 0.608499 0.807588 0.67029 0.815131 0.547001 0.815056 0.48545 0.812533 0.423509 0.919424 0.641499 0.919559 0.703381 0.915813 0.457321 0.919433 0.518771 0.909765 0.395618 0.919506 0.58017 0.0005 0.0598169 0.0005 0.0005 0.117043 0.000500146 0.117043 0.059817 0.0005 0.119133 0.117043 0.119134 0.0005 0.17845 0.117043 0.17845 0.0005 0.297082 0.0005 0.237766 0.117043 0.237766 0.117043 0.297082 0.0005 0.356398 0.117043 0.356398 0.0005 0.415714 0.117043 0.415714 0.0005 0.47503 0.117043 0.47503 0.0005 0.534346 0.117043 0.534346 0.237903 0.475029 0.237903 0.534346 0.12136 0.534346 0.12136 0.475029 0.237903 0.415713 0.12136 0.415713 0.237903 0.356398 0.12136 0.356398 0.237903 0.297082 0.12136 0.297082 0.237903 0.237765 0.12136 0.237765 0.237903 0.0598166 0.237903 0.119133 0.12136 0.119133 0.12136 0.0598167 0.237903 0.000500073 0.12136 0.0005 0.237903 0.178449 0.12136 0.178449 0.942916 0.415119 0.948218 0.354873 0.939616 0.476723 0.939486 0.538409 0.939745 0.599973 0.942667 0.660377 0.879387 0.797083 0.879057 0.736754 0.879408 0.858621 0.882805 0.920206 0.888221 0.980435 0.821025 0.608801 0.81641 0.669098 0.823613 0.547171 0.823501 0.485487 0.8213 0.425053 0.927926 0.641364 0.928227 0.701635 0.928057 0.580069 0.927892 0.518454 0.924248 0.456874 0.918606 0.396659 0.865471 0.415159 0.871794 0.475323 0.934569 0.726339 0.940891 0.666176 0.930543 0.787931 0.930361 0.849568 0.93049 0.910869 0.930189 0.971142 0.832904 0.806388 0.832572 0.746054 0.832943 0.867949 0.836721 0.929547 0.842818 0.989728 0.759929 0.60414 0.753929 0.664329 0.763617 0.542546 0.76365 0.480993 0.76398 0.420661 0.875873 0.659852 0.876174 0.720125 0.876002 0.598552 0.87582 0.536915 + + + + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 +

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

+
+
+
+ + + + -0.334335 -0.032949 0.370427 -0.213237 -0.032949 0.370427 -0.216277 -0.032949 0.413282 -0.341053 -0.032949 0.413282 -0.217195 0.0463528 0.413282 -0.213237 0.0463528 0.370427 -0.334335 0.0463528 0.370427 -0.340531 0.0463528 0.413282 -0.361769 -0.0157255 0.239323 -0.345748 -0.0157255 0.289865 -0.345748 0.00582035 0.289865 -0.361769 0.00776128 0.239323 -0.339229 -0.032949 0.239323 -0.184036 -0.032949 0.239323 -0.205796 -0.032949 0.289865 -0.323207 -0.032949 0.289865 -0.184954 0.0463528 0.239323 -0.338708 0.0463528 0.239323 -0.322686 0.0463528 0.289865 -0.20474 0.0463528 0.289865 -0.349819 -0.0157255 0.318018 -0.349819 0.00622156 0.318018 -0.220574 -0.032949 0.440261 -0.344725 -0.032949 0.440242 -0.344725 0.0463528 0.440242 -0.220574 0.0463528 0.440261 -0.363593 0.00757919 0.413282 -0.363593 -0.0157255 0.413282 -0.367787 -0.0157255 0.440239 -0.367787 0.00799707 0.440239 -0.216277 -0.032949 0.521228 -0.213796 -0.0327054 0.539008 -0.354909 -0.032949 0.539331 -0.353837 -0.032949 0.521228 -0.217195 0.0463528 0.521228 -0.353316 0.0463528 0.521228 -0.354388 0.0463185 0.539285 -0.213796 0.0461093 0.539008 -0.376377 -0.0157255 0.521228 -0.377449 -0.0157255 0.539331 -0.377449 0.00887708 0.539331 -0.376377 0.0087954 0.521228 -0.221143 -0.032949 0.494297 -0.351266 -0.032949 0.494215 -0.348936 -0.032949 0.467255 -0.221286 -0.032949 0.467255 -0.351266 0.0463528 0.494215 -0.221143 0.0463528 0.494297 -0.222204 0.0463528 0.467255 -0.348415 0.0463528 0.467255 -0.374328 -0.0157255 0.4942 -0.374328 0.00862228 0.4942 -0.371477 0.00835745 0.467255 -0.371477 -0.0157255 0.467255 -0.208455 -0.032949 0.557306 -0.353399 -0.032949 0.557306 -0.352878 0.0463528 0.557306 -0.209373 0.0463528 0.557306 -0.375939 -0.0157255 0.557306 -0.375939 0.00866453 0.557306 -0.208397 -0.032949 0.318018 -0.326757 -0.032949 0.318018 -0.208397 0.0463528 0.318018 -0.326757 0.0463528 0.318018 -0.357397 -0.0157255 0.370427 -0.357397 0.00696846 0.370427 -0.360168 0.0420469 0.617479 -0.364447 0.0366646 0.616852 -0.360168 0.0366653 0.617479 -0.158454 -0.032949 0.647046 -0.343332 -0.032949 0.616643 -0.343055 0.0463528 0.619987 -0.170799 0.0454744 0.645404 -0.365873 -0.0157255 0.616643 -0.365873 0.00738315 0.616643 -0.162351 -0.0305374 0.239323 -0.183193 -0.0305374 0.289865 -0.194592 0.0439412 0.413282 -0.190634 0.0439412 0.370427 -0.185793 -0.0305374 0.318018 -0.183193 0.0439412 0.289865 -0.162351 0.0439412 0.239323 -0.194592 -0.0305374 0.413282 -0.197971 -0.0305374 0.440264 -0.165531 0.00670192 0.413282 -0.16876 0.0246487 0.413282 -0.172139 0.0246487 0.440268 -0.16891 0.00670192 0.440269 -0.194592 -0.0305374 0.521228 -0.191193 -0.0302602 0.538964 -0.165531 0.00670192 0.521228 -0.16876 0.0246487 0.521228 -0.165361 0.0243331 0.538913 -0.162132 0.00670192 0.538906 -0.199601 -0.0305374 0.467255 -0.19854 -0.0305374 0.494311 -0.17054 0.00740851 0.467255 -0.173769 0.0246487 0.467255 -0.172708 0.0246487 0.494327 -0.169479 0.00670192 0.494329 -0.18677 -0.0305374 0.557306 -0.160938 0.0246487 0.557306 -0.157709 0.00670192 0.557306 -0.185793 0.0439412 0.318018 -0.190634 -0.0305374 0.370427 -0.13609 -0.0305374 0.650324 -0.110531 0.0246487 0.65407 -0.107336 0.00656164 0.654538 -0.146206 -0.0233027 0.239323 -0.167048 -0.0233027 0.289865 -0.136519 -0.0112449 0.239323 -0.157361 -0.0112449 0.289865 -0.13329 0.00670192 0.239323 -0.154132 0.0064021 0.289865 -0.178447 0.0367066 0.413282 -0.174489 0.0367066 0.370427 -0.164802 0.0246487 0.370427 -0.161573 0.00670192 0.370427 -0.169648 -0.0233027 0.318018 -0.159961 -0.0112449 0.318018 -0.156732 0.00670192 0.318018 -0.167048 0.0367066 0.289865 -0.146206 0.0367066 0.239323 -0.157361 0.0246487 0.289865 -0.136519 0.0246487 0.239323 -0.154132 0.0064021 0.289865 -0.13329 0.00670192 0.239323 -0.178447 -0.0233027 0.413282 -0.181826 -0.0233027 0.440267 -0.16876 -0.0112449 0.413282 -0.172139 -0.0112449 0.440268 -0.165531 0.00670192 0.413282 -0.16891 0.00670192 0.440269 -0.181826 0.0367066 0.440267 -0.197971 0.0439412 0.440264 -0.178447 -0.0233027 0.521228 -0.175048 -0.0230015 0.538932 -0.16876 -0.0112449 0.521228 -0.165361 -0.0109293 0.538913 -0.165531 0.00670192 0.521228 -0.162132 0.00670192 0.538906 -0.178447 0.0367066 0.521228 -0.175048 0.0364053 0.538932 -0.194592 0.0439412 0.521228 -0.191193 0.0436641 0.538964 -0.183456 -0.0233027 0.467255 -0.182395 -0.0233027 0.494321 -0.173769 -0.0112449 0.467255 -0.172708 -0.0112449 0.494327 -0.17054 0.00740851 0.467255 -0.169479 0.00670192 0.494329 -0.183456 0.0367066 0.467255 -0.182395 0.0367066 0.494321 -0.199601 0.0439412 0.467255 -0.19854 0.0439412 0.494311 -0.170625 -0.0233027 0.557306 -0.160938 -0.0112449 0.557306 -0.157709 0.00670192 0.557306 -0.170625 0.0367066 0.557306 -0.18677 0.0439412 0.557306 -0.169648 0.0367066 0.318018 -0.159961 0.0246487 0.318018 -0.156732 0.00670192 0.318018 -0.174489 -0.0233027 0.370427 -0.164802 -0.0112449 0.370427 -0.161573 0.00670192 0.370427 -0.120116 -0.0233027 0.652665 -0.110531 -0.0112449 0.65407 -0.107336 0.00656164 0.654538 -0.120116 0.0367066 0.652665 -0.13609 0.0439412 0.650324 -0.350621 -0.0318725 0.413282 -0.344425 -0.0318725 0.370427 -0.348797 0.0452763 0.239323 -0.332776 0.0452763 0.289865 -0.332776 -0.0318725 0.289865 -0.348797 -0.0318725 0.239323 -0.336847 0.0452763 0.318018 -0.362152 -0.0232608 0.413282 -0.366345 -0.0232608 0.440239 -0.350621 0.0452763 0.413282 -0.354814 0.0452763 0.440241 -0.374936 -0.0232608 0.521228 -0.376008 -0.0232586 0.539328 -0.363405 0.0452763 0.521228 -0.364477 0.045257 0.539305 -0.370036 -0.0232608 0.467255 -0.372887 -0.0232608 0.494201 -0.358505 0.0452763 0.467255 -0.361356 0.0452763 0.494209 -0.374498 -0.0232608 0.557306 -0.362967 0.0452763 0.557306 -0.344425 0.0452763 0.370427 -0.336847 -0.0318725 0.318018 -0.364447 -0.0232608 0.616852 -0.353038 0.0452763 0.618524 -0.357828 -0.0286431 0.413282 -0.351631 -0.0286431 0.370427 -0.355955 -0.0232608 0.370427 -0.356004 0.0420469 0.239323 -0.339983 0.0420469 0.289865 -0.360328 0.0366646 0.239323 -0.344307 0.0366646 0.289865 -0.361769 0.0293836 0.239323 -0.345748 0.0293836 0.289865 -0.339983 -0.0286431 0.289865 -0.356004 -0.0286431 0.239323 -0.344307 -0.0232608 0.289865 -0.360328 -0.0232608 0.239323 -0.344053 0.0420469 0.318018 -0.348377 0.0366646 0.318018 -0.349819 0.0291293 0.318018 -0.362021 -0.0286431 0.44024 -0.354814 -0.0318725 0.440241 -0.357828 0.0420469 0.413282 -0.362021 0.0420469 0.44024 -0.362152 0.0366646 0.413282 -0.366345 0.0366646 0.440239 -0.363593 0.0293836 0.413282 -0.367787 0.0291293 0.440239 -0.370612 -0.0286431 0.521228 -0.371684 -0.0286345 0.53932 -0.363405 -0.0318725 0.521228 -0.364477 -0.0318532 0.539305 -0.370612 0.0420469 0.521228 -0.371684 0.0420384 0.53932 -0.374936 0.0366646 0.521228 -0.376008 0.0366625 0.539328 -0.376377 0.0293836 0.521228 -0.377449 0.0293836 0.539331 -0.365711 -0.0286431 0.467255 -0.368563 -0.0286431 0.494204 -0.358505 -0.0318725 0.467255 -0.361356 -0.0318725 0.494209 -0.365711 0.0420469 0.467255 -0.368563 0.0420469 0.494204 -0.370036 0.0366646 0.467255 -0.372887 0.0366646 0.494201 -0.371477 0.0293836 0.467255 -0.374328 0.0291293 0.4942 -0.370174 -0.0286431 0.557306 -0.362967 -0.0318725 0.557306 -0.370174 0.0420469 0.557306 -0.374498 0.0366646 0.557306 -0.375939 0.0293836 0.557306 -0.351631 0.0420469 0.370427 -0.355955 0.0366646 0.370427 -0.357397 0.0291293 0.370427 -0.344053 -0.0286431 0.318018 -0.348377 -0.0232608 0.318018 -0.360168 -0.0286431 0.617479 -0.353038 -0.0318725 0.618524 -0.360168 0.0420469 0.617479 -0.364447 0.0366646 0.616852 -0.365873 0.0293836 0.616643 -0.364447 -0.0232608 0.616852 -0.360168 -0.0232615 0.617479 -0.360168 -0.0156254 0.617479 -0.365873 -0.0157255 0.616643 -0.360168 -0.0286431 0.617479 -0.365873 0.0293836 0.616643 -0.360168 0.0290292 0.617479 -0.360168 0.00736813 0.617479 -0.365873 0.00738315 0.616643 -0.353038 -0.0318725 0.618524 -0.343332 -0.032949 0.616643 -0.343055 -0.0232644 0.619987 -0.353038 -0.0232627 0.618524 -0.343055 -0.0153251 0.619987 -0.353038 -0.0155003 0.618524 -0.343055 0.00732303 0.619987 -0.353038 0.00734933 0.618524 -0.353038 0.0289041 0.618524 -0.343055 0.0287289 0.619987 -0.343055 0.0366683 0.619987 -0.353038 0.0366666 0.618524 -0.343055 0.0463528 0.619987 -0.353038 0.0452763 0.618524 -0.13609 -0.0305374 0.650324 -0.13609 -0.0233 0.650324 -0.158454 -0.0232961 0.647046 -0.158454 -0.032949 0.647046 -0.13609 -0.0116934 0.650324 -0.158454 -0.0120858 0.647046 -0.13609 0.00677768 0.650324 -0.158454 0.00683661 0.647046 -0.158454 0.0254897 0.647046 -0.13609 0.0250972 0.650324 -0.13609 0.0367038 0.650324 -0.158454 0.0367 0.647046 -0.13609 0.0439412 0.650324 -0.170799 0.0454744 0.645404 -0.120116 -0.0233027 0.652665 -0.110531 -0.0112449 0.65407 -0.120116 -0.0114131 0.652665 -0.107336 0.00656164 0.654538 -0.120116 0.00673559 0.652665 -0.120116 0.0248169 0.652665 -0.110531 0.0246487 0.65407 -0.120116 0.0367066 0.652665 -0.375939 0.00866453 0.557306 -0.365873 0.00738315 0.616643 -0.377449 0.00887708 0.539331 -0.376377 0.0087954 0.521228 -0.374328 0.00862228 0.4942 -0.371477 0.00835745 0.467255 -0.367787 0.00799707 0.440239 -0.363593 0.00757919 0.413282 -0.357397 0.00696846 0.370427 -0.349819 0.00622156 0.318018 -0.345748 0.00582035 0.289865 -0.361769 0.00776128 0.239323 -0.167899 -0.0107813 0.38226 -0.163446 -0.0107813 0.34091 -0.0607409 -0.0117322 0.340779 -0.0484379 -0.0117322 0.381838 -0.162983 -0.00389723 0.332589 -0.0649739 -0.00445588 0.332212 -0.163446 0.022596 0.34091 -0.167899 0.022596 0.38226 -0.0484379 0.0235469 0.381838 -0.0607409 0.0235469 0.340779 -0.168366 0.0157119 0.392535 -0.044603 0.0162706 0.392439 -0.0607409 -0.0117322 0.340779 -0.044373 -0.0112108 0.321582 -0.0192802 -0.0112529 0.353206 -0.0484379 -0.0117322 0.381838 -0.0649739 -0.00445588 0.332212 -0.0509777 -0.00414492 0.315034 -0.0607409 0.0235469 0.340779 -0.0484379 0.0235469 0.381838 -0.0192802 0.0230676 0.353206 -0.044373 0.0230255 0.321582 -0.044603 0.0162706 0.392439 -0.0117469 0.0159937 0.361187 -0.0347768 -0.0103173 0.293094 -0.0310847 -0.00956652 0.268593 0.00274655 -0.00956652 0.277086 -0.00178631 -0.0103173 0.309873 -0.0428448 -0.00362462 0.289773 -0.0395046 -0.00318355 0.266907 -0.0347768 0.022132 0.293094 -0.00178631 0.022132 0.309873 0.00274655 0.0213812 0.277086 -0.0310847 0.0213812 0.268593 0.00819162 0.0154393 0.313524 0.0131741 0.0149983 0.278938 -0.162983 0.0157119 0.332589 -0.0649739 0.0162706 0.332212 -0.0657082 0.00590735 0.332164 -0.163446 0.00590735 0.332548 -0.167899 0.00590735 0.392363 -0.168295 -0.00392793 0.391624 -0.0449104 -0.00449251 0.391505 -0.0441698 0.00590735 0.392342 -0.0657082 0.00590735 0.332164 -0.0649739 0.0162706 0.332212 -0.0509777 0.0159596 0.315034 -0.0517435 0.00590735 0.316362 -0.0449104 -0.00449251 0.391505 -0.0123718 -0.00421463 0.360463 -0.0112182 0.00590735 0.360791 -0.0441698 0.00590735 0.392342 -0.0429537 0.00590735 0.290689 -0.0428448 0.0154393 0.289773 -0.0395046 0.0149983 0.266907 -0.0396091 0.00590735 0.26739 0.00735366 -0.00366089 0.313157 0.0123002 -0.00322322 0.27875 0.0137601 0.00590735 0.278548 0.00872979 0.00590735 0.312798 -0.0517435 0.00590735 0.316362 -0.0429537 0.00590735 0.290689 0.00872979 0.00590735 0.312798 -0.0112182 0.00590735 0.360791 -0.0304105 -0.00881576 0.244091 0.00426152 -0.00881576 0.244298 -0.0396091 0.00590735 0.26739 -0.0392825 0.00590735 0.244091 -0.0389702 -0.00274248 0.244069 0.00426152 0.0206305 0.244298 -0.0304105 0.0206305 0.244091 0.0137601 0.00590735 0.278548 0.0157726 0.00590735 0.244298 0.0149265 0.0145572 0.244321 -0.0389702 0.0145572 0.244069 0.0140496 -0.00278692 0.244318 -0.167899 0.00590735 0.392363 -0.0441698 0.00590735 0.392342 -0.0441698 0.00590735 0.392342 0.0157726 0.00590735 0.244298 -0.163446 0.00590735 0.332548 -0.0657082 0.00590735 0.332164 -0.0657082 0.00590735 0.332164 -0.0392825 0.00590735 0.244091 -0.164321 -0.00616428 0.294618 -0.161395 -0.00629521 0.28465 -0.127085 -0.00616428 0.300313 -0.119019 -0.00616428 0.316136 -0.164321 0.0133908 0.294618 -0.119019 0.0133908 0.316136 -0.127085 0.0133908 0.300313 -0.161395 0.0135217 0.28465 -0.164321 -0.00616428 0.294618 -0.119019 -0.00616428 0.316136 -0.119019 0.0133908 0.316136 -0.164321 0.0133908 0.294618 -0.157228 -0.00616428 0.270453 -0.153682 -0.00616428 0.258371 -0.133871 -0.00616428 0.263927 -0.132481 -0.00616428 0.281212 -0.133871 0.0133908 0.263927 -0.153682 0.0133908 0.258371 -0.157228 0.0133908 0.270453 -0.132481 0.0133908 0.281212 -0.150135 -0.00616428 0.246289 -0.13406 -0.00616428 0.246289 -0.13406 0.0133908 0.246289 -0.150135 0.0133908 0.246289 + + + + + + + + + + -0.0535434 -0.998534 -0.00789135 0.0533294 -0.998566 0.00462237 0.0557062 -0.998427 0.0063549 -0.0548579 -0.998461 -0.008146 0.0536644 0.998542 0.0058983 0.0531178 0.998576 0.00490615 -0.0531152 0.998559 -0.00768002 -0.0529342 0.998567 -0.00791619 -0.949521 -0.088399 0.300991 -0.992035 -0.0953125 0.0823561 -0.996665 -8.52925e-09 0.0815969 -0.953253 -2.82391e-08 0.302174 -0.0668633 -0.997537 0.0211951 0.0681473 -0.997262 0.0287211 0.0482098 -0.998776 0.0110699 -0.0476209 -0.998858 0.00374868 0.0672132 0.997373 0.0270148 -0.0634458 0.997783 0.0201118 -0.0455165 0.998958 0.00328783 0.0501554 0.998674 0.0116076 -0.98538 -0.0934133 -0.142478 -0.989708 5.25654e-09 -0.143104 0.0519448 -0.998639 0.00466471 -0.0541761 -0.9985 -0.00791239 -0.0534267 0.998541 -0.0078505 0.0520336 0.998634 0.00472826 -0.988926 9.08733e-18 -0.148407 -0.984599 -0.0933703 -0.147805 -0.985191 -0.0933461 -0.143822 -0.9895 8.85e-18 -0.144532 0.055297 -0.998462 -0.00389067 0.052521 -0.998567 -0.0103068 -0.0586353 -0.998279 0.000757036 -0.0558489 -0.998437 -0.00219858 0.0527502 0.998602 -0.00338428 -0.0530205 0.998593 -0.00125998 -0.0547925 0.998498 0.000703101 0.0530481 0.998535 -0.0106847 -0.993303 -0.0941093 -0.0670222 -0.9955 -0.0939655 0.0122275 -0.999924 -7.54851e-19 0.0123277 -0.997729 4.12431e-18 -0.0673551 0.0512259 -0.998677 -0.00453703 -0.0543625 -0.998509 -0.00495253 -0.0556947 -0.998424 -0.00685345 0.0536667 -0.998559 0.00055483 -0.0536166 0.998549 -0.00491413 0.0513264 0.998671 -0.00460127 0.0514416 0.998676 0.000526427 -0.053628 0.998539 -0.00656193 -0.99151 -0.0939034 -0.089946 -0.995903 5.53687e-18 -0.0904239 -0.992737 7.36634e-18 -0.120301 -0.988391 -0.0936119 -0.119666 0.0515521 -0.998364 -0.0247422 -0.0567924 -0.998372 0.00532573 -0.0539211 0.99853 0.00556638 0.0447696 0.998851 -0.0171197 -0.987867 -0.0926355 0.124648 -0.992082 -7.69034e-18 0.125593 0.0531178 -0.998576 0.00490615 -0.053562 -0.998537 -0.00747234 0.0530709 0.998576 0.00537002 -0.0531152 0.998559 -0.00768002 -0.98538 -0.0934133 -0.142478 -0.989708 8.76257e-18 -0.143104 -0.49748 0.565011 0.658238 -0.688138 0.29228 0.664107 -0.145027 2.17752e-08 0.989428 -0.0451729 -0.763071 0.644734 -0.0777339 -0.807473 0.584761 -0.130573 0.711529 0.690418 -0.0683252 0.71578 0.694976 -0.716301 -0.0597758 0.695227 -0.699103 -4.37824e-17 0.715021 0.294863 -0.947723 0.121972 0.246685 -0.967286 0.0591946 0.262062 0.964625 0.0286621 0.260608 0.965145 0.0240707 0.260608 -0.965145 0.0240707 0.247364 0.967118 0.0591053 0.295017 0.947771 0.121221 0.263105 -0.964334 0.0288932 0.258695 -0.965666 0.0238031 0.99416 9.65573e-09 0.10792 0.905948 0.411807 0.0983475 0.905545 0.415919 0.0836622 0.9957 0.000242184 0.092636 0.2596 -0.965054 -0.0357519 0.259948 -0.964011 -0.0557725 0.986017 -4.80716e-09 -0.166646 0.898343 0.413205 -0.149132 0.892513 0.407268 -0.193789 0.977296 1.29737e-17 -0.211877 0.257182 -0.966359 0.00266966 0.256752 -0.966192 -0.0234839 0.999923 0.00641768 0.0106341 0.907911 0.419051 0.0096579 0.904958 0.417158 -0.0838481 0.995679 0.000244923 -0.0928653 0.25218 -0.962264 -0.102242 0.857552 0.393825 -0.330917 0.934761 -0.000239818 -0.355277 0.261249 0.964956 0.0246755 0.261106 -0.965016 0.0238403 0.159912 -0.770402 0.617179 0.761171 0.358864 0.540217 0.836985 -0.000698783 0.547225 0.623296 -0.738537 0.257032 0.589721 -0.794306 0.145968 0.85949 -0.368582 0.354153 0.882575 -0.414241 0.222409 0.92448 -0.000783892 0.38123 0.969955 -0.00234362 0.243272 0.611143 0.788718 0.0665417 0.610098 0.79032 0.0563508 0.906765 0.413234 0.083752 0.995762 -5.63166e-18 0.0919721 0.610098 -0.79032 0.0563508 0.906596 -0.41356 0.083978 0.995762 -0.00012957 0.0919728 0.589721 0.794306 0.145968 0.623296 0.738537 0.257032 0.883181 0.412975 0.222356 0.859817 0.367155 0.354841 0.969955 -0.00234362 0.243272 0.92448 -0.000783892 0.38123 0.611143 -0.788718 0.0665417 0.607101 -0.792635 0.056201 0.905948 -0.411808 0.0983475 0.906157 -0.414332 0.0849085 0.99416 9.65573e-09 0.10792 0.9957 0.000242184 0.092636 0.6071 0.792635 0.056201 0.257618 0.965958 0.0236465 0.60541 -0.790158 -0.0955484 0.604435 -0.785854 -0.130733 0.898343 -0.413206 -0.149132 0.892513 -0.407268 -0.193789 0.986017 -4.80716e-09 -0.166646 0.977296 1.29737e-17 -0.211877 0.605409 0.790158 -0.0955485 0.604435 0.785854 -0.130733 0.258522 0.965337 -0.0359402 0.258873 0.964323 -0.0553729 0.606548 -0.795021 0.00639924 0.60513 -0.794156 -0.0559929 0.909335 -0.415952 0.00967377 0.905572 -0.415572 -0.0850802 0.999923 0.00641768 0.0106341 0.995679 0.000244923 -0.0928653 0.606548 0.795021 0.00639924 0.60513 0.794156 -0.0559929 0.256092 0.966649 0.00266496 0.25566 0.966485 -0.023322 0.588166 -0.775131 -0.230722 0.857438 -0.394074 -0.330918 0.934761 -0.000239818 -0.355277 0.588166 0.775131 -0.230722 0.238419 0.966878 -0.0911225 0.610098 0.79032 0.0563508 0.906932 0.412914 0.0835296 0.995762 -0.00012957 0.0919728 0.610098 -0.79032 0.0563508 0.906765 -0.413234 0.083752 0.995762 -5.63166e-18 0.0919721 0.489733 -0.666812 0.561715 0.760749 -0.359389 0.540464 0.836985 -0.000698783 0.547225 0.489733 0.666812 0.561715 0.154128 0.774564 0.613429 -0.261259 -0.964481 -0.0389972 -0.261159 -0.96455 -0.0379443 -0.287598 0.953403 0.0911662 -0.239477 0.970718 0.0189056 -0.241883 -0.970107 0.0196094 -0.289794 -0.95267 0.0918623 -0.260425 0.964759 -0.0376553 -0.899096 -0.416412 -0.135007 -0.89994 -0.415769 -0.131316 -0.259905 0.964849 -0.0389332 -0.261273 0.964505 -0.0382837 -0.906202 -0.41841 -0.0610777 -0.909531 -0.415486 0.0111349 -0.261096 0.965161 -0.0171309 -0.266733 0.963765 0.00334318 -0.902588 -0.416427 -0.109196 -0.905009 -0.417406 -0.0820397 -0.261918 0.964563 -0.0319035 -0.261983 0.964776 -0.0239067 -0.903965 -0.412285 0.113437 -0.265826 0.963463 0.0328069 -0.260425 0.964759 -0.0376553 -0.26104 -0.964599 -0.0375123 -0.689384 -0.290659 0.663526 -0.262815 0.69588 0.668341 -0.60774 -0.788885 -0.0911731 -0.608444 -0.788705 -0.087976 -0.899846 -0.41635 -0.13011 -0.625543 0.75457 0.198292 -0.588635 0.806914 0.0489846 -0.877874 0.389741 0.278279 -0.897666 0.434037 0.076214 -0.949267 0.0913481 0.30091 -0.991752 0.0980351 0.0825633 -0.588635 -0.806914 0.0489846 -0.625544 -0.75457 0.198292 -0.898674 -0.431954 0.0761548 -0.879061 -0.386786 0.278655 -0.608444 0.788706 -0.0879759 -0.899547 0.41708 -0.129843 -0.985363 0.0939177 -0.142266 -0.609225 -0.787982 -0.089041 -0.262612 -0.964132 -0.0385264 -0.60774 0.788885 -0.0911731 -0.609225 0.787982 -0.089041 -0.898461 0.417837 -0.134833 -0.899294 0.417197 -0.131214 -0.984423 0.0953877 -0.14769 -0.985097 0.0943463 -0.143817 -0.611209 -0.790403 -0.0410666 -0.617492 -0.78654 0.00763425 -0.263603 -0.964467 -0.017789 -0.270171 -0.962806 0.00337503 -0.611208 0.790404 -0.0410666 -0.617492 0.78654 0.00763424 -0.905187 0.420577 -0.0612445 -0.908178 0.418436 0.0111198 -0.993033 0.096778 -0.0672278 -0.995196 0.0971414 0.0122224 -0.610654 -0.788425 -0.074075 -0.611498 -0.789292 -0.0555774 -0.263253 -0.964195 -0.0320225 -0.263319 -0.964409 -0.0240565 -0.610654 0.788425 -0.074075 -0.611497 0.789292 -0.0555773 -0.901936 0.417856 -0.109125 -0.904351 0.418842 -0.0819755 -0.988192 0.0957342 -0.11963 -0.991415 0.0949056 -0.0899427 -0.615544 -0.784323 0.077098 -0.268023 -0.962832 0.0334269 -0.615543 0.784323 0.0770981 -0.902657 0.415182 0.113284 -0.987574 0.0957753 0.124601 -0.608444 0.788706 -0.0879759 -0.89951 0.417047 -0.130204 -0.985303 0.0940269 -0.142609 -0.608444 -0.788705 -0.087976 -0.899847 -0.41635 -0.13011 -0.49748 -0.565011 0.658238 -0.199538 -0.704637 0.680934 -0.49748 0.565011 0.658238 -0.688138 0.29228 0.664107 -0.71676 0.0619194 0.694566 -0.689384 -0.290659 0.663526 -0.145027 -2.0808e-08 0.989428 -0.145026 5.41748e-08 0.989428 -0.716301 -0.0597758 0.695227 -0.49748 -0.565011 0.658238 -0.71676 0.0619194 0.694566 -0.145026 -6.10601e-08 0.989428 -0.145026 -6.35819e-09 0.989428 -0.699103 -4.37824e-17 0.715021 -0.199538 -0.704637 0.680934 -0.0777339 -0.807473 0.584761 -0.110225 -0.0869516 0.990096 -0.106585 -0.0452343 0.993274 -0.145027 1.68718e-07 0.989428 -0.145027 -2.91734e-08 0.989428 -0.145028 -5.5508e-09 0.989428 -0.145027 -1.19135e-08 0.989428 -0.145027 1.72604e-08 0.989428 -0.145027 -1.74675e-07 0.989428 -0.145146 -0.00233665 0.989407 -0.145027 -2.92693e-08 0.989428 -0.130573 0.711529 0.690418 -0.262815 0.69588 0.668341 0.159912 -0.770402 0.617179 -0.145027 -2.74153e-08 0.989428 -0.147042 -0.0417015 0.988251 -0.0451729 -0.763071 0.644734 -0.145027 3.93839e-07 0.989428 -0.145027 7.22188e-07 0.989428 -0.145027 -6.0585e-17 0.989428 -0.145027 -6.0585e-17 0.989428 -0.145027 -7.20163e-07 0.989428 -0.145027 -3.91858e-07 0.989428 -0.144367 -0.0020817 0.989522 -0.144011 -0.00426265 0.989567 0.154128 0.774564 0.613429 -0.0683252 0.71578 0.694976 0.489733 -0.666812 0.561715 0.760749 -0.359389 0.540464 -0.145026 -1.54073e-07 0.989428 0.836985 -0.000698783 0.547225 -0.145026 1.78315e-09 0.989428 -0.145026 1.53439e-07 0.989428 0.761171 0.358864 0.540217 0.489733 0.666812 0.561715 -0.992082 -7.69034e-18 0.125593 -0.699103 -4.37824e-17 0.715021 -0.999924 -7.54851e-19 0.0123277 -0.997729 4.12431e-18 -0.0673551 -0.995903 5.53687e-18 -0.0904239 -0.992737 7.36634e-18 -0.120301 -0.9895 8.85e-18 -0.144532 -0.988926 9.08733e-18 -0.148407 -0.989708 8.76257e-18 -0.143104 -0.989708 5.25654e-09 -0.143104 -0.996665 -8.52925e-09 0.0815969 -0.953253 -2.82391e-08 0.302174 -0.00631802 -0.944154 0.329445 -0.00851157 -0.945594 -0.325238 -0.0946394 -0.972396 -0.213283 0.137714 -0.934259 0.328931 -0.0062168 -0.424036 -0.905624 -0.364293 -0.514524 -0.776245 -0.00851158 0.945594 -0.325238 -0.0064131 0.951008 0.309101 0.129497 0.942341 0.308585 -0.0946394 0.972396 -0.213283 -0.00195524 0.462543 0.886594 0.326752 0.443046 0.834831 -0.0946394 -0.972396 -0.213283 -0.236437 -0.957807 -0.163408 0.295585 -0.939134 0.175091 0.137714 -0.934259 0.328931 -0.364293 -0.514524 -0.776245 -0.776858 -0.464543 -0.425079 -0.0946394 0.972396 -0.213283 0.129497 0.942341 0.308585 0.27848 0.946375 0.163777 -0.236438 0.957807 -0.163408 0.326752 0.443046 0.834831 0.72812 0.460102 0.508081 -0.291206 -0.9518 -0.0963086 -0.298633 -0.952958 -0.0518684 0.296799 -0.954916 0.00680368 0.317635 -0.945937 0.0656511 -0.86738 -0.450082 -0.212318 -0.883336 -0.461265 -0.0833835 -0.291206 0.9518 -0.0963086 0.298932 0.952354 0.0605061 0.27896 0.96029 0.00501985 -0.298633 0.952958 -0.0518685 0.845536 0.480883 0.231992 0.855335 0.512301 0.0771373 -0.00621681 0.424036 -0.905624 -0.364293 0.514523 -0.776245 -0.406914 -1.00306e-08 -0.913466 -0.00389791 1.37525e-08 -0.999992 0.000443332 -0.0454162 0.998968 -0.00181109 -0.483812 0.87517 0.322666 -0.471295 0.820834 0.380348 -0.0479673 0.923599 -0.406914 -1.00306e-08 -0.913466 -0.364293 0.514523 -0.776245 -0.776858 0.464542 -0.425079 -0.862626 -2.83831e-08 -0.505843 0.322666 -0.471295 0.820834 0.718793 -0.484729 0.498372 0.827402 -0.0451751 0.55979 0.380348 -0.0479673 0.923599 -0.971878 -1.05724e-08 -0.235484 -0.86738 0.450082 -0.212318 -0.883336 0.461265 -0.0833835 -0.996517 5.10634e-18 -0.0833928 0.832366 -0.50552 0.22719 0.83967 -0.537834 0.0754313 0.994118 -0.0474299 0.0973652 0.964675 -0.045776 0.259435 -0.862626 -2.83831e-08 -0.505843 -0.971878 -1.05724e-08 -0.235484 0.964675 -0.045776 0.259435 0.827402 -0.0451751 0.55979 -0.305689 -0.951584 -0.0322867 0.289862 -0.957042 -0.00716528 -0.996517 5.10634e-18 -0.0833928 -0.999822 1.15599e-18 -0.0188787 -0.886514 -0.461714 -0.0302159 0.272288 0.962181 -0.00812212 -0.305689 0.951584 -0.0322868 0.994118 -0.0474299 0.0973652 0.997396 -0.0480783 0.0537629 0.853219 0.520293 0.0362252 -0.886514 0.461715 -0.030216 0.836278 -0.547157 0.0354653 0.000443332 -0.0454162 0.998968 0.380348 -0.0479673 0.923599 0.380348 -0.0479673 0.923599 0.997396 -0.0480783 0.0537629 -0.00389791 1.37525e-08 -0.999992 -0.406914 -1.00306e-08 -0.913466 -0.406914 -1.00306e-08 -0.913466 -0.999822 1.15599e-18 -0.0188787 -0.2884 -0.738233 0.609785 0.00184113 -0.999998 0.000154055 0.637065 -0.730033 -0.247387 0.600331 -0.543143 0.587025 -0.2884 0.738233 0.609785 0.600332 0.543143 0.587025 0.637065 0.730033 -0.247387 0.00184113 0.999998 0.000154054 -0.2884 -0.738233 0.609785 0.600331 -0.543143 0.587025 0.600332 0.543143 0.587025 -0.2884 0.738233 0.609785 0.00186109 -0.999997 -0.00187875 0 -1 -6.12323e-17 0.69839 -0.715012 -0.0317737 0.67392 -0.728539 -0.122732 0.69839 0.715012 -0.0317738 0 1 6.12323e-17 0.00186109 0.999997 -0.00187875 0.67392 0.728539 -0.122732 0 -1 -6.12323e-17 0.70466 -0.709505 -0.00754823 0.70466 0.709505 -0.00754823 0 1 6.12323e-17 + + + + + + + + + + -0.997557 0.0538428 -0.0445145 -0.997684 -0.0534769 -0.0420297 -0.997545 -0.0559252 -0.0421458 -0.99749 0.0551667 -0.044386 0.996928 -0.0539132 0.0568064 0.99696 -0.053311 0.0568164 0.996823 0.0534769 0.0590351 0.996836 0.0533098 0.0589616 -0.113555 0.991263 -0.0670985 -0.0994032 0.993933 -0.0470781 -0.00659036 0.996733 -0.0804979 -0.0371659 0.992407 -0.117246 -0.997762 0.0668696 -0.000413484 -0.995662 -0.0698096 -0.0615163 -0.997831 -0.0486556 -0.0443414 -0.998151 0.0474445 -0.0379939 0.995125 -0.0689711 0.070495 0.997941 0.0632411 0.0106541 0.997682 0.0452912 0.0507845 0.997063 -0.0507413 0.0573727 -0.0962524 0.99527 0.0131511 -0.000615421 0.999991 0.0042563 -0.997796 -0.0520929 -0.0410911 -0.997585 0.0544679 -0.0430975 0.996863 0.0537933 0.058049 0.997091 -0.0522161 0.0555276 -0.0136405 0.995767 0.0908947 -0.103979 0.992404 0.0657401 -0.103203 0.992685 0.0626586 -0.0126786 0.996145 0.0868013 -0.997918 -0.0551366 -0.033453 -0.998163 -0.0521822 -0.0307735 -0.99795 0.0585964 -0.0257536 -0.997935 0.0558905 -0.0316514 0.997491 -0.0525307 0.0474611 0.997468 0.0530206 0.0473888 0.997597 0.0547132 0.0424957 0.997641 -0.0525276 0.0442051 -0.0942481 0.995548 -0.00109476 -0.0942953 0.995093 -0.0299807 -0.000698001 0.998396 -0.0566165 0.000135387 0.999998 -0.00200548 -0.998041 -0.0510288 -0.0361914 -0.997825 0.0545091 -0.0370564 -0.997605 0.0559284 -0.0407085 -0.997785 -0.0536469 -0.0393393 0.997219 0.0537989 0.0515717 0.997388 -0.0510249 0.0511244 0.997234 -0.0513957 0.0536942 0.997015 0.0539093 0.055267 -0.0964684 0.995032 0.0245977 -0.00419734 0.998922 0.0462283 -0.00864868 0.997412 0.0713696 -0.0999623 0.993823 0.048202 -0.998318 -0.0508604 -0.0278148 -0.998121 0.0566537 -0.0233291 0.997799 0.0536645 0.0389534 0.998186 -0.0440359 0.0410671 -0.101251 0.992758 -0.0646478 -0.0119771 0.995442 -0.0946096 -0.997664 -0.0532793 -0.0427556 -0.997642 0.0538327 -0.042574 0.996945 -0.0532913 0.0571037 0.996961 0.0534659 0.0566498 -0.101681 0.993463 0.0518787 -0.0108248 0.997135 0.0748643 0.861381 0.231957 0.451905 0.722446 0.191033 0.664513 0.989268 -0.0179575 0.145004 -0.996748 -0.00868312 -0.0801135 -0.996966 0.0652853 -0.0423797 0.991429 0.0906458 0.0940839 0.9967 0.018369 0.0790697 -0.13972 0.988434 -0.0589691 -0.0697382 0.995232 -0.0681857 -0.94911 -0.305266 -0.0774826 -0.967302 -0.249483 -0.0456519 0.962944 -0.263336 0.0582544 0.963638 -0.261564 0.0546508 -0.964412 -0.261401 -0.0397309 0.966101 -0.250836 0.0610739 0.947942 -0.306238 0.0873151 -0.963511 -0.264172 -0.0431206 -0.964685 -0.25954 -0.0449634 0.00414169 -0.999263 -0.0381531 0.41303 -0.910677 0.00854582 0.414844 -0.909375 0.0306775 0.00158874 -0.999894 -0.0144625 -0.965259 -0.25816 -0.0403629 -0.965323 -0.257995 -0.0398707 0.0356574 -0.97684 0.210979 0.434118 -0.886997 0.157412 0.442953 -0.872421 0.206576 0.0615369 -0.956894 0.283844 -0.965376 -0.257043 -0.044484 -0.965839 -0.255624 -0.0425583 0.0058938 -0.998802 0.048585 0.41751 -0.906136 0.0678443 0.424528 -0.898507 0.111629 0.0126055 -0.991098 0.132539 -0.967619 -0.249559 -0.0378701 0.480776 -0.842393 0.243369 0.138632 -0.92048 0.365373 0.963452 -0.262241 0.0546844 -0.964289 -0.261886 -0.0395242 -0.95739 -0.273358 -0.0931614 0.311708 -0.932875 0.180506 -0.0678924 -0.992406 0.102575 -0.756255 -0.652918 -0.0421478 -0.801158 -0.598173 -0.0183076 -0.420508 -0.90376 0.0799448 -0.437421 -0.89688 0.0653368 -0.0870011 -0.974043 0.208974 -0.0407294 -0.987405 0.152881 0.787816 -0.614253 0.0451448 0.789877 -0.612259 0.035105 0.415061 -0.909781 -0.0048971 0.00432281 -0.998895 -0.0468021 -0.791057 -0.611602 -0.0131088 -0.417866 -0.907547 0.0417988 -0.00747109 -0.996808 0.0794832 0.799607 -0.599641 0.0325644 0.753675 -0.654995 0.0543687 0.431884 -0.900946 -0.0421103 0.407373 -0.912239 -0.0432099 0.0328218 -0.989551 -0.140398 0.0684812 -0.98339 -0.168089 -0.788921 -0.613787 -0.0294699 -0.79197 -0.609334 -0.0386847 -0.414412 -0.910064 0.00675762 -0.414853 -0.909806 -0.0122436 -0.00503436 -0.998911 0.0463767 -0.0010024 -0.99991 0.0133884 0.790774 -0.6096 0.0553618 0.964104 -0.258598 0.0602541 -0.795913 -0.601263 -0.0707559 -0.796574 -0.598507 -0.0852014 -0.432374 -0.891701 -0.133875 -0.440404 -0.87964 -0.179661 -0.0377542 -0.973999 -0.223386 -0.066004 -0.950239 -0.304449 0.795792 -0.598831 0.0900947 0.796638 -0.595192 0.105424 0.964943 -0.256314 0.0564703 0.965107 -0.255894 0.0555542 -0.793939 -0.606108 -0.0478993 -0.796028 -0.602447 -0.0582859 -0.415148 -0.908629 -0.04524 -0.422281 -0.902191 -0.0879173 0.00699879 -0.998432 -0.0555415 -0.0128355 -0.990036 -0.14023 0.793059 -0.605581 0.0657949 0.795655 -0.600852 0.0768713 0.964874 -0.255787 0.0599308 0.965454 -0.253982 0.0582433 -0.806496 -0.583397 -0.0959775 -0.477216 -0.849537 -0.224837 -0.143287 -0.915318 -0.376381 0.807459 -0.57888 0.11361 0.970751 -0.234536 0.0513349 0.790224 -0.612116 0.0293261 0.41596 -0.909109 -0.0223081 0.00700452 -0.996988 -0.0772406 -0.79075 -0.611826 -0.0195714 -0.416124 -0.909092 0.0198071 -0.00525721 -0.998365 0.0569187 -0.742164 -0.656933 -0.132788 -0.316983 -0.932369 -0.173811 0.0657935 -0.992617 -0.101899 0.737911 -0.660151 0.140316 0.958547 -0.267803 0.0973073 -0.963588 0.262974 -0.048405 -0.963581 0.262836 -0.0492891 0.955699 0.291906 -0.0378131 0.970175 0.238499 0.0433424 -0.970034 0.241288 -0.0285214 -0.954266 0.294972 0.0486651 0.963217 0.26229 0.0584564 -0.421544 0.906746 0.0105808 -0.420969 0.906977 0.0133578 0.963023 0.261954 0.0629881 0.962776 0.26324 0.061372 -0.41819 0.908201 -0.0169449 -0.415629 0.909038 -0.0300348 0.963982 0.261626 0.047862 0.963039 0.266394 0.0398898 -0.419727 0.907614 0.00810333 -0.41862 0.908157 -0.00262079 0.96294 0.263397 0.0580349 0.963321 0.262919 0.0537232 -0.418608 0.907372 -0.0380069 0.96373 0.264756 0.0336116 0.962853 0.262398 0.0637327 -0.963872 0.262583 -0.0447401 -0.431081 0.900737 -0.0533106 0.956783 0.277335 0.0874779 -0.789764 0.612428 -0.0347025 -0.789013 0.613099 -0.0396091 -0.419555 0.907725 -0.00304951 0.762045 0.645427 -0.052082 0.808396 0.587724 0.0328167 0.400304 0.916158 -0.0202958 0.437489 0.898508 0.0358603 0.116373 0.990992 0.0662779 0.103443 0.992575 0.0639865 -0.808249 0.588612 -0.0164198 -0.760257 0.646629 0.0622933 -0.434509 0.900443 -0.0201177 -0.395295 0.918145 0.0274081 0.787952 0.613591 0.0513571 0.416503 0.908539 0.0328839 0.0927251 0.995579 0.0150047 -0.788984 0.613591 -0.0317754 -0.96332 0.264258 -0.0467228 0.78844 0.613117 0.049492 0.787753 0.614261 0.0461302 0.421067 0.907016 0.0049886 0.420793 0.907157 0.000351417 0.103958 0.993252 -0.0514194 0.102725 0.993351 -0.0519795 -0.790045 0.612398 -0.0282302 -0.78646 0.617203 -0.0232543 -0.963969 0.264061 -0.0321964 -0.96258 0.270028 -0.0229038 0.789234 0.612558 0.0433803 0.786132 0.616787 0.0396249 0.419474 0.907255 0.0305006 0.418495 0.907119 0.0446891 0.0952819 0.995133 0.0251217 0.0977306 0.993126 0.0644198 -0.78887 0.613824 -0.030078 -0.789171 0.613471 -0.0293599 -0.96341 0.264483 -0.0434659 -0.963718 0.264097 -0.0387257 0.787807 0.614331 0.0442398 0.788257 0.613782 0.0438377 0.419852 0.907578 0.00510611 0.419035 0.907835 0.015678 0.10102 0.994123 -0.0389202 0.0964595 0.995251 -0.0130809 -0.787367 0.616245 -0.0171732 -0.963392 0.26763 -0.0158105 0.787863 0.614819 0.0356322 0.423033 0.904363 0.0563101 0.108079 0.989492 0.0960451 0.787674 0.613699 0.0542466 0.41832 0.908106 0.0187368 0.0996938 0.994467 -0.0331109 -0.789245 0.612971 -0.036856 -0.417837 0.908363 -0.0169674 -0.783297 0.618651 -0.060966 -0.968341 0.248172 -0.0269484 0.788775 0.610431 0.0721615 0.44327 0.893965 0.0658664 0.158196 0.984518 0.0754827 0.723267 -0.225049 0.652869 0.989339 -0.0133939 0.145014 0.989315 -0.0150829 0.14501 0.697788 -0.0646415 0.713382 0.863974 -0.254609 0.434422 0.696794 0.0249082 0.716838 0.989271 -0.0177808 0.145004 0.989285 -0.0169762 0.145005 0.714859 -0.0212634 0.698945 0.979113 -0.171041 0.10992 0.994563 -0.0220398 0.101776 0.993897 -0.0140823 0.109411 0.994302 -0.00676005 0.106388 0.989276 -0.0174963 0.145005 0.989313 -0.0152549 0.14501 0.989267 -0.0180336 0.145004 0.989282 -0.0171694 0.145006 0.989271 -0.0177728 0.145004 0.989262 -0.0182795 0.145003 0.98925 -0.018321 0.14508 0.989268 -0.0179598 0.145003 0.984595 0.0113818 0.174479 0.958 0.105833 0.266525 0.98156 0.190428 -0.0166191 0.989259 -0.0184494 0.145002 0.989042 -0.0195663 0.146334 0.99347 0.033369 0.109101 0.98925 -0.0189338 0.145001 0.989253 -0.0188161 0.145002 0.989252 -0.0188143 0.145002 0.989255 -0.0187004 0.145002 0.989255 -0.0186722 0.145002 0.989254 -0.0187544 0.145002 0.989356 -0.0187305 0.144303 0.989415 -0.0186815 0.143908 0.980162 -0.198159 0.00393831 0.990855 -0.0325569 0.130945 0.86544 0.449902 -0.220457 0.644483 0.516855 -0.563474 0.989254 -0.0187383 0.145 0.546691 -0.0431365 -0.836223 0.989253 -0.0187741 0.145 0.989254 -0.0187505 0.145 0.639176 -0.556207 -0.531119 0.862318 -0.465565 -0.199142 0.0126111 0.994946 0.0996178 0.0800519 0.993713 0.0782699 0.000564523 0.998951 0.0457898 -0.000163249 0.999997 0.00241821 0.00251968 0.999612 -0.0277511 0.00605815 0.998731 -0.0499923 0.0101358 0.997538 -0.0693925 0.0116876 0.996894 -0.0778815 0.00982767 0.997639 -0.0679684 0.00248211 0.99985 -0.0171663 0.00597847 0.997312 0.0730241 0.0432798 0.98969 0.136533 -0.00724608 0.329486 0.944133 -0.0541527 -0.324337 0.94439 -0.0426928 -0.210083 0.976751 0.00027893 0.332132 0.943233 -0.122014 -0.898553 0.421563 -0.0714373 -0.815626 0.574152 0.0162479 0.325338 0.945458 0.0593644 -0.3082 0.949468 0.0679772 -0.31891 0.945344 0.0240279 0.216413 0.976006 0.125052 -0.879523 0.45913 0.13146 -0.896035 0.424074 -0.509202 -0.136813 0.849703 -0.419029 -0.0512206 0.906527 -0.467204 0.0177575 0.883971 -0.597913 0.186344 0.7796 -0.794632 -0.262928 0.5472 -0.453363 -0.0558409 0.889575 -0.527599 0.132689 0.839067 -0.597924 -0.174052 0.782428 -0.472564 -0.0134402 0.881194 -0.430886 0.0473781 0.901162 -0.854552 -0.238809 0.461207 -0.558852 -0.03072 0.828698 -0.264924 -0.0165018 0.964128 -0.171206 2.63814e-05 0.985235 -0.185025 -0.0505151 0.981435 -0.285989 -0.0295592 0.957777 -0.230006 -0.0157659 0.973062 -0.0972412 0.00630874 0.995241 -0.274282 0.0133783 0.961556 -0.295628 0.032135 0.954762 -0.196877 0.0520739 0.979044 -0.180757 -0.00311241 0.983523 -0.280825 0.0310013 0.959258 -0.128985 0.0663749 0.989423 -0.000999651 0.905638 0.42405 0.0300491 0.839581 0.542403 -0.00539818 0.999983 0.00240467 -0.00431636 0.999991 1.68386e-05 0.00690116 0.998945 0.0454121 0.00537796 0.875154 0.483814 0.0272735 0.871488 0.489658 -0.00399564 0.99856 0.0535058 -0.912422 0.0477978 0.406449 -0.801064 0.251976 0.542959 -0.456916 0.0486233 0.88818 -0.505443 0.0397229 0.861945 -0.84461 0.248067 0.474444 -0.553704 0.0343475 0.832005 -0.559051 0.0287766 0.828633 -0.919367 0.0889057 0.383223 -0.235467 0.0121022 0.971807 -0.232225 0.0112685 0.972597 -0.0996463 -0.0109646 0.994962 -0.0833899 -0.00838007 0.996482 -0.278048 -0.0262863 0.960208 -0.128545 -0.0618696 0.989772 -0.100104 -0.059265 0.99321 -0.260804 -0.0269138 0.965017 -0.505274 -0.0473782 0.861657 -0.235452 -0.016468 0.971747 -0.258201 0.0311716 0.965588 -0.561098 -0.0239515 0.827403 -0.146165 0.0133924 0.98917 -0.159128 -0.0555753 0.985692 -0.0833922 0.00387353 0.996509 -0.0188766 0.0149821 0.99971 -0.0469698 0.0248338 0.998588 -0.171728 0.0568994 0.9835 -0.155874 -0.0165633 0.987638 -0.0942971 0.063122 0.993541 -0.0502173 0.0721393 0.99613 -0.088125 0.0753596 0.993255 -0.0495225 -0.029752 0.99833 -0.0880459 -0.0701646 0.993642 0.136381 -0.989632 -0.0450523 0.102407 -0.990329 -0.0936054 -0.924488 -0.0473842 0.378254 -0.0569845 -0.0683575 0.996032 -0.13386 -0.991 0.000521762 -0.113819 -0.992207 0.0507022 -0.912033 -0.05599 0.406276 -0.018875 -0.0197381 0.999627 -0.937393 0.347541 -0.0225947 -0.975447 -0.001762 0.220226 -0.727467 -0.675541 0.120151 -0.596141 -0.793206 -0.124257 0.932165 0.362025 0.00258728 0.600588 -0.790871 0.117549 0.719212 -0.678424 -0.149917 0.968836 -0.0017456 -0.247696 -0.903601 -0.000835984 -0.428373 -0.701831 -0.70972 0.0610741 -0.701839 0.709712 0.0610897 -0.903607 0.000824235 -0.428361 -0.983898 -0.0021669 0.178717 -0.993535 -6.95124e-18 0.113522 -0.713347 -0.699001 0.0503437 -0.724524 -0.684215 0.0831588 0.711344 -0.698339 -0.0794537 0.990068 8.60864e-18 -0.14059 0.978477 -0.00220871 -0.206342 0.719656 -0.684908 -0.114001 -0.996919 -4.80267e-18 0.0784335 -0.708755 -0.704337 0.0397052 0.70754 -0.703427 -0.0676614 0.994474 6.42835e-18 -0.104983 + + + + + + + + + + 0.0448741 0.00548861 -0.998978 0.0422166 -0.00237025 -0.999106 0.0424349 -0.00399152 -0.999091 0.0447671 0.00569063 -0.998981 0.0570415 0.00283171 -0.998368 0.056997 0.00187328 -0.998373 0.0593607 -0.00451996 -0.998226 0.0592991 -0.00477006 -0.998229 -0.29243 -0.0978904 -0.951264 -0.0773693 -0.0548896 -0.99549 -0.0813303 -0.0807672 -0.993409 -0.299879 -0.122995 -0.946015 -0.00100484 -0.0211753 -0.999775 0.0633529 -0.0244044 -0.997693 0.0448258 -0.00890818 -0.998955 0.0377727 -0.00555105 -0.999271 0.0721731 0.0221449 -0.997146 0.00935862 0.0207464 -0.999741 0.0505827 0.00559174 -0.998704 0.0578856 0.00869592 -0.998285 0.140575 0.0266727 -0.989711 0.143102 0.00430056 -0.989699 0.0412782 -0.00251996 -0.999144 0.0434638 0.00555843 -0.99904 0.0583866 -0.00472451 -0.998283 0.0556987 0.00182521 -0.998446 0.147779 0.0919125 -0.98474 0.140545 0.0800963 -0.986829 0.136921 0.0765736 -0.987618 0.143974 0.0877224 -0.985686 0.033187 0.00573242 -0.999433 0.0301915 0.0119041 -0.999473 0.0256649 -0.00226555 -0.999668 0.0317248 0.000426339 -0.999497 0.047217 -0.00587937 -0.998867 0.0473889 0.00125579 -0.998876 0.0423934 0.00302986 -0.999096 0.0435791 -0.0130045 -0.998965 0.0668268 0.00522928 -0.997751 -0.00935036 -0.0309988 -0.999476 -0.0123079 -0.0566208 -0.99832 0.0673549 -0.00201005 -0.997727 0.035912 0.00638208 -0.999335 0.0372711 0.00292729 -0.999301 0.0410277 0.00456979 -0.999148 0.0393124 0.00155761 -0.999226 0.0517612 -0.00213537 -0.998657 0.0508217 -0.00721329 -0.998682 0.0536502 -0.00223715 -0.998557 0.05554 -0.00357849 -0.99845 0.0871893 0.0330658 -0.995643 0.0903264 0.0464185 -0.99483 0.11999 0.0718917 -0.990169 0.114415 0.0596045 -0.991643 0.0265109 0.0261345 -0.999307 0.0229894 -0.00664064 -0.999714 0.0385974 0.00765454 -0.999225 0.0402661 -0.0189272 -0.99901 -0.117757 -0.0764842 -0.990093 -0.12502 -0.0953647 -0.98756 0.0429561 -0.0026236 -0.999073 0.042914 0.00517437 -0.999065 0.0573086 0.00232307 -0.998354 0.0569788 -0.00464771 -0.998365 0.1367 0.0656075 -0.988437 0.142694 0.0756428 -0.986872 0.102648 0.791807 -0.602084 0.0673578 0.937059 -0.342614 0.0177676 0.999839 0.0026043 0.0667306 -0.646256 -0.760198 -0.00395586 -0.586281 -0.810098 0.00435988 0.696786 -0.717266 0.0438305 0.698085 -0.714672 -0.683661 -0.139376 -0.716368 -0.711612 -0.0975331 -0.69577 0.110666 -0.0929184 -0.989505 0.0589265 -0.0459974 -0.997202 0.0637415 0.0123337 -0.99789 0.059042 0.00895298 -0.998215 0.0446382 -0.0128599 -0.99892 0.0738914 0.0419942 -0.996382 0.119877 0.0891508 -0.988778 0.0492155 -0.0164936 -0.998652 0.0495975 -0.0113307 -0.998705 0.10784 0.0383772 -0.993427 0.0930821 0.0328784 -0.995115 0.0888396 0.00692694 -0.996022 0.0926227 0.0145474 -0.995595 0.0297227 0.044988 -0.998545 0.0240467 0.0642027 -0.997647 -0.162786 -0.213971 -0.963181 -0.0672362 -0.206151 -0.976207 -0.0849334 -0.270211 -0.959048 -0.202743 -0.290438 -0.935169 0.0436737 0.00886324 -0.999007 0.0351164 0.0336087 -0.998818 0.0109332 -0.0485186 -0.998762 0.0371816 -0.0575644 -0.997649 -0.028771 -0.136616 -0.990206 -0.0920061 -0.133137 -0.986818 0.0109255 0.108482 -0.994038 -0.182917 -0.367799 -0.911738 -0.327113 -0.39079 -0.860396 0.0592389 0.0094874 -0.998199 0.0443849 -0.0126689 -0.998934 0.240482 -0.575983 -0.781288 0.568732 0.0309944 -0.821938 0.542998 -0.123006 -0.830676 0.198948 -0.168111 -0.965483 0.101856 -0.106147 -0.98912 0.290603 -0.217636 -0.931764 0.172409 -0.154951 -0.972762 0.371171 -0.22636 -0.900552 0.239849 -0.158196 -0.957834 0.07648 0.0248327 -0.996762 0.0622455 0.0230928 -0.997794 0.0741723 0.0392027 -0.996475 0.0918704 0.0470013 -0.994661 0.0448244 -0.036579 -0.998325 0.0589276 -0.0729861 -0.995591 0.0916689 -0.0798335 -0.992584 0.113395 0.0975132 -0.988753 0.208508 0.159831 -0.964872 0.18294 0.133223 -0.974056 0.307835 0.181705 -0.933928 0.241059 0.144164 -0.959743 0.37503 0.181502 -0.909071 0.0640859 -0.0344858 -0.997348 0.064908 -0.021024 -0.99767 0.0867197 -0.0468785 -0.995129 0.0823231 -0.02413 -0.996314 0.107802 -0.0466492 -0.993077 0.0926309 -0.0134237 -0.99561 0.0781418 0.0108321 -0.996883 0.0643179 0.00727512 -0.997903 -0.00154138 0.118884 -0.992907 -0.0112885 0.155637 -0.98775 -0.077663 0.184747 -0.979713 -0.0972941 0.245695 -0.964452 -0.162313 0.226554 -0.960379 -0.201333 0.311521 -0.928665 0.0139716 -0.130581 -0.991339 0.00503685 -0.167868 -0.985796 0.0453009 -0.049279 -0.997757 0.0394027 -0.0678223 -0.996919 0.0419596 0.0239726 -0.998832 0.0125554 0.0798425 -0.996728 0.0276075 0.0371223 -0.998929 -0.0402227 0.115543 -0.992488 0.010261 0.0556117 -0.9984 -0.0919743 0.140816 -0.985754 0.0561836 -0.0348328 -0.997813 0.0274043 -0.0910681 -0.995468 0.0586137 -0.0127765 -0.998199 0.0503679 -0.0374068 -0.99803 -0.0602074 0.242527 -0.968275 -0.192525 0.350703 -0.916484 -0.325101 0.402732 -0.855638 -0.0454978 -0.25312 -0.966365 0.028263 -0.100696 -0.994516 0.0576701 0.026638 -0.99798 0.0667262 0.0549769 -0.996256 0.0917057 0.0775574 -0.992761 0.0499445 -0.032619 -0.998219 0.0679533 -0.0528117 -0.99629 0.0918217 -0.057161 -0.994133 0.457553 -0.351854 -0.816605 0.566377 -0.0390917 -0.823218 0.543256 0.121292 -0.830759 0.464381 0.345778 -0.815345 0.239648 0.573003 -0.783733 0.0569409 0.024931 -0.998066 0.0575149 0.0236901 -0.998064 -0.0626631 0.0762525 -0.995118 0.0375643 0.0287212 -0.998881 0.0229373 -0.0259206 -0.999401 -0.0734586 -0.0735582 -0.994582 0.066273 -0.0210467 -0.99758 0.118011 0.0664247 -0.990788 0.113547 0.0673012 -0.991251 0.0709727 -0.0211227 -0.997255 0.0692714 -0.0208238 -0.997381 0.0625607 0.0101866 -0.997989 0.00235701 -0.0319456 -0.999487 0.0506764 -0.00401729 -0.998707 0.0375538 0.0138596 -0.999199 0.0957332 0.0531464 -0.993987 0.0755989 0.0319717 -0.996626 0.0643816 -0.0155208 -0.997805 0.0581164 -0.00895528 -0.99827 -0.0872602 -0.0818427 -0.992818 0.0236977 0.0405518 -0.998896 0.0713674 -0.0196589 -0.997256 0.0530063 0.0244781 -0.998294 -0.582168 -0.322785 -0.746251 -0.12448 0.662447 -0.738694 0.0832133 0.0509152 -0.99523 0.0851779 0.0453142 -0.995335 0.119374 0.0518443 -0.991495 -0.167283 0.118528 -0.978758 -0.00230919 0.058916 -0.99826 -0.262858 0.093579 -0.960286 -0.0529142 0.0655333 -0.996446 -0.292145 0.0979332 -0.951346 -0.0756773 0.0719993 -0.99453 -0.0155836 -0.0492571 -0.998665 -0.175226 -0.111786 -0.978161 -0.0598831 -0.0511692 -0.996893 -0.266447 -0.0860577 -0.96 0.0944869 -0.0380729 -0.994798 0.131683 -0.0244996 -0.990989 0.143046 0.00159345 -0.989715 0.0796732 0.0508936 -0.995521 0.0552279 0.0248433 -0.998165 0.0949433 -0.0418063 -0.994604 0.0910442 -0.0420387 -0.994959 0.12438 -0.0522916 -0.990856 0.119178 -0.054898 -0.991354 0.141789 -0.065972 -0.987696 0.137957 -0.0659784 -0.988238 0.0474623 0.0151899 -0.998758 0.0135786 -0.0203634 -0.9997 0.0357498 0.00866101 -0.999323 0.0211405 -0.00943668 -0.999732 0.0594436 -0.00589677 -0.998214 0.0264579 0.0304696 -0.999185 0.0683922 0.00191832 -0.997657 0.00861253 0.0452392 -0.998939 0.0693318 0.018541 -0.997421 -0.00588055 0.0653048 -0.997848 0.0691833 0.0400683 -0.996799 0.0572686 0.0259066 -0.998023 0.050379 0.0194083 -0.998542 0.0437007 0.0129865 -0.99896 0.0803864 -0.0313416 -0.996271 0.0687132 -0.0170026 -0.997491 0.101173 -0.041211 -0.994015 0.0809868 -0.0201721 -0.996511 0.115201 -0.0505456 -0.992055 0.0882741 -0.0216444 -0.995861 -0.034042 -0.0712753 -0.996876 0.00627682 -0.0364407 -0.999316 -0.0194542 0.0826759 -0.996387 -0.0790707 0.0987515 -0.991966 -0.114093 0.108318 -0.987547 0.0967753 -0.0362904 -0.994644 0.126053 -0.0376129 -0.99131 0.138707 -0.0468415 -0.989225 0.0829953 0.0470098 -0.995441 0.125252 0.0390969 -0.991354 -0.372773 -0.545925 -0.750338 -0.15 -0.664754 -0.731848 -0.361037 0.555101 -0.749344 -0.574437 0.339704 -0.74473 -0.679139 0.16398 -0.715458 -0.0404364 0.929984 0.365369 0.0132523 0.99991 0.0019425 0.0149234 0.999886 0.00218736 0.00229757 0.996117 0.0880136 -0.0778597 0.784817 0.614818 0.0270859 0.99777 -0.0609983 0.0175928 0.999842 0.00257875 0.0167968 0.999856 0.002462 0.0152038 0.999774 0.0148653 0.039014 0.688645 0.724048 -0.0692936 0.589493 0.804796 0.0044293 0.996113 0.0879732 0.0019022 0.998953 0.0456971 0.0173113 0.999847 0.00253727 0.0150936 0.999884 0.0022124 0.0178429 0.999837 0.00261537 0.0169879 0.999853 0.00249004 0.0175849 0.999842 0.00257751 0.0180863 0.999833 0.0026512 0.0177879 0.999829 0.00497076 0.0177699 0.999839 0.00260468 0.116289 0.702565 -0.702054 0.114737 0.710317 -0.694467 -0.104725 0.608456 0.786647 0.0182543 0.99983 0.00267569 0.0132341 0.998939 0.0441216 -0.104766 0.645452 0.756581 0.0187336 0.999821 0.00274552 0.0186173 0.999823 0.00272813 0.0186153 0.999823 0.00272858 0.0185027 0.999825 0.00271207 0.0184747 0.999826 0.00270869 0.0185561 0.999824 0.00272029 0.0182338 0.999822 0.0047636 0.0178732 0.999816 0.00690787 0.124607 0.600652 -0.78974 0.116354 0.697567 -0.707009 -0.105713 0.594096 0.797418 -0.0768353 0.776981 0.624817 0.0185402 0.999824 0.00271768 0.0241897 0.999069 -0.0357226 0.0185756 0.999824 0.00272273 0.0185523 0.999824 0.00271915 0.109873 0.749566 -0.652746 0.128724 0.581903 -0.803006 -0.124958 0.100413 -0.987068 -0.710525 0.111958 -0.694708 -0.0123147 0.0457932 -0.998875 0.0673549 0.00242371 -0.997726 0.0903888 -0.0278652 -0.995517 0.120149 -0.050358 -0.991478 0.144176 -0.0701289 -0.987064 0.147946 -0.0787536 -0.985855 0.142766 -0.0686752 -0.987371 0.143082 -0.0173448 -0.989559 -0.0813776 0.0732684 -0.993987 -0.299058 0.143228 -0.943425 -0.999954 0.00357786 -0.00892311 -0.998496 0.0256508 -0.0484458 -0.994596 0.101545 -0.0216322 -0.990472 -0.129805 0.0459998 -0.992509 0.113119 -0.0461521 -0.928541 0.264612 0.26037 0.999832 0.00276291 -0.018133 0.998216 0.0244386 -0.0544795 0.989247 -0.101443 -0.105356 0.995222 0.0872439 -0.0438459 0.992148 0.111768 -0.0561224 0.935923 -0.0288195 -0.351024 -0.855428 0.189019 -0.482198 -0.876648 0.282809 -0.389238 -0.833276 -0.343092 -0.433519 -0.789642 -0.304034 -0.532943 -0.485644 0.816171 -0.313074 -0.436982 0.883788 -0.167226 0.844205 0.191936 0.500477 0.791023 -0.285832 0.540909 0.836141 -0.32279 0.44348 0.870881 0.283479 0.401504 0.403701 -0.864107 0.300575 0.396894 -0.887334 0.234761 -0.919247 0.306274 -0.247349 -0.938886 0.303104 -0.16316 -0.936844 -0.292547 -0.191676 -0.904056 -0.322999 -0.279917 -0.441305 0.892848 -0.0898464 -0.458543 0.88724 -0.0504267 0.916498 0.306427 0.257166 0.907328 -0.303297 0.291149 0.939905 -0.274102 0.203585 0.937094 0.303088 0.173183 0.454099 -0.876237 0.161257 0.501762 -0.856237 0.122852 0.99998 0.00354154 -0.00520629 0.9308 0.174268 -0.321314 0.91345 0.00590956 -0.406907 0.999983 0.00431639 -0.00389787 -0.999976 0.0068739 0.000756289 -0.999984 0.00558286 0.00101693 -0.94612 -0.135609 0.294053 -0.924835 -0.0240412 0.379609 0.0436617 0.998857 -0.0194496 0.474961 0.819618 0.320373 0.433266 0.884215 0.174483 0.0200935 0.999211 -0.034266 -0.427224 -0.846371 -0.318017 -0.420414 -0.87399 -0.243707 -0.0535425 -0.998564 -0.00144538 -0.100495 -0.994884 -0.0102844 0.00284987 0.999927 -0.0117619 0.440141 0.892916 0.0947464 0.458027 0.887195 0.0556487 -0.000698837 0.999965 0.00835088 -0.479432 -0.862414 -0.162439 -0.527666 -0.840777 -0.121086 -0.0413375 -0.997115 -0.0636643 -0.0371923 -0.998589 -0.0379016 -0.0239659 0.998877 0.0408696 -0.00387796 0.999864 0.0160049 -0.0522878 -0.998465 0.0182511 -0.0239702 -0.998692 -0.0451652 -0.940845 0.307097 -0.143182 -0.943747 -0.284574 -0.168401 0.000323025 0.999993 -0.00386004 0.000282842 0.999888 -0.0149794 -0.460312 0.886681 -0.0437022 0.946767 -0.266401 0.180726 0.939286 0.306942 0.153391 -0.0532694 -0.996878 0.0582782 -0.0517707 -0.996235 0.069537 0.514053 -0.850657 0.110149 0.460044 0.88653 0.0492408 -0.54119 -0.834084 -0.106852 0.990656 0.13626 0.00575515 0.919156 0.130186 -0.371758 0.0256202 -0.997724 -0.0623677 -0.0442125 -0.996502 -0.0709192 -0.990993 0.133861 0.00386283 -0.906348 0.124602 0.403743 -0.0511449 0.998431 0.0227831 -0.000372631 0.999805 0.0197346 -0.195245 -0.578124 -0.792245 -0.220226 -0.000555738 -0.975449 -0.254834 0.103421 -0.961438 0.533121 -0.275354 -0.799976 -0.218847 0.569167 -0.792563 0.528106 0.281992 -0.80099 -0.277278 -0.0824165 -0.957249 -0.247695 0.000605294 -0.968838 -0.316749 0.674545 0.666827 -0.383451 0.448657 0.807262 0.383438 0.448671 -0.807261 0.316733 0.674545 -0.666835 -0.17872 0.00151589 -0.983899 -0.113522 6.08365e-17 -0.993535 -0.0582062 -0.0124938 -0.998226 -0.14456 0.0328802 -0.98895 -0.0789992 0.0328876 -0.996332 -0.14059 6.06242e-17 -0.990068 -0.206346 -0.00145429 -0.978478 -0.167114 -0.0114979 -0.98587 -0.0784335 6.10437e-17 -0.996919 -0.0334875 -0.0226288 -0.999183 -0.0533158 0.0423376 -0.99768 -0.104983 6.0894e-17 -0.994474 + + + + + + + + + + 0.88239 0.459922 0.683957 0.468103 0.68575 0.397315 0.890198 0.389064 0.304541 0.701666 0.30679 0.772558 0.108504 0.761447 0.1026 0.690524 0.943578 0.677706 0.928205 0.591844 0.963818 0.589074 0.980952 0.672457 0.898706 0.675648 0.646188 0.685335 0.677474 0.600759 0.870788 0.593247 0.339853 0.990208 0.089876 0.976976 0.118941 0.894982 0.312994 0.905401 0.928105 0.544909 0.964022 0.545871 0.690595 0.352416 0.894073 0.344585 0.098511 0.645936 0.301842 0.656791 0.980884 0.391552 0.942829 0.387976 0.9474 0.343581 0.986158 0.346959 0.677924 0.218777 0.672838 0.189332 0.904165 0.181967 0.903379 0.211576 0.314959 0.523283 0.0919707 0.512845 0.0916316 0.483312 0.32199 0.494 0.955612 0.210313 0.955322 0.180653 0.995456 0.178849 0.995804 0.210429 0.687541 0.263082 0.900874 0.255857 0.898927 0.300074 0.689659 0.307772 0.0929769 0.557111 0.306187 0.567507 0.301919 0.612079 0.0951447 0.6014 0.954213 0.254731 0.99411 0.256371 0.990761 0.3018 0.951368 0.299077 0.663386 0.159171 0.901178 0.152651 0.0951078 0.453988 0.330406 0.463947 0.953012 0.151331 0.992705 0.147522 0.679724 0.5545 0.874101 0.546646 0.309726 0.859005 0.115466 0.848288 0.935467 0.458424 0.972498 0.461473 0.0145282 0.123816 0.00759603 0.114859 0.0146891 0.114989 0.578523 0.0134457 0.883077 0.0556774 0.114561 0.351827 0.39866 0.321569 0.939588 0.0536298 0.977582 0.0490363 0.612417 0.68799 0.639514 0.602525 0.341577 0.703891 0.343957 0.774718 0.642117 0.556143 0.349147 0.907627 0.375133 0.993451 0.650184 0.398932 0.653373 0.354096 0.425186 0.705778 0.395391 0.706291 0.393362 0.661918 0.423283 0.662111 0.642235 0.220016 0.635431 0.190551 0.435169 0.535257 0.405903 0.52974 0.413475 0.501336 0.441829 0.508704 0.653826 0.309311 0.65024 0.264518 0.422404 0.61931 0.393671 0.617646 0.397794 0.573456 0.427478 0.57712 0.627214 0.160162 0.422869 0.471642 0.451113 0.481776 0.347323 0.861199 0.646773 0.469717 0.542198 0.00835512 0.508823 0.314447 0.536721 0.325415 0.585741 0.690376 0.609445 0.603689 0.561592 0.690882 0.583288 0.603465 0.532148 0.685941 0.553981 0.599842 0.37029 0.705502 0.372841 0.776152 0.3981 0.7766 0.427957 0.775781 0.612905 0.557118 0.587559 0.556915 0.557779 0.555011 0.379087 0.909252 0.401873 0.996179 0.405654 0.909218 0.424965 0.997008 0.436518 0.906235 0.453518 0.993683 0.621455 0.400129 0.624387 0.355416 0.59635 0.400565 0.599014 0.356224 0.566569 0.399634 0.5691 0.356024 0.367995 0.660753 0.339031 0.659014 0.613424 0.221414 0.606352 0.192109 0.588413 0.223843 0.58126 0.195338 0.559071 0.228921 0.552803 0.202289 0.380925 0.526938 0.38843 0.497738 0.352132 0.525117 0.359376 0.495757 0.624723 0.310676 0.621202 0.265875 0.599279 0.311939 0.595868 0.267675 0.568225 0.313274 0.566136 0.270866 0.368279 0.616014 0.372482 0.571275 0.339214 0.614226 0.343465 0.569491 0.59779 0.161631 0.572299 0.165516 0.543913 0.175241 0.397437 0.467383 0.368035 0.46548 0.376569 0.862605 0.402026 0.862768 0.431898 0.861246 0.617886 0.47073 0.592633 0.470819 0.562793 0.469594 0.513722 0.00545094 0.488586 0.00712078 0.460938 0.0174747 0.483715 0.312409 0.455203 0.314889 0.90596 0.388303 0.898929 0.459119 0.0753805 0.97727 0.101114 0.894117 0.887746 0.592669 0.91242 0.676141 0.0985352 0.847292 0.930257 0.387459 0.934851 0.343033 0.0860202 0.689483 0.0819584 0.644911 0.943087 0.210401 0.943139 0.181068 0.0754636 0.512047 0.0752515 0.482616 0.938829 0.298654 0.941647 0.254531 0.0785828 0.600427 0.0764001 0.556223 0.940665 0.151988 0.0786591 0.453399 0.091998 0.760403 0.891018 0.545891 0.926168 0.0541664 0.0971972 0.353451 0.918913 0.387686 0.911781 0.458475 0.923005 0.458156 0.0645985 0.977996 0.0868691 0.893652 0.0553132 0.978597 0.074228 0.893311 0.0449207 0.978566 0.0609137 0.892787 0.901956 0.592409 0.923282 0.677003 0.914552 0.59224 0.932662 0.677714 0.0853858 0.846538 0.0739668 0.846046 0.0613887 0.845803 0.923553 0.343217 0.91065 0.343803 0.0730978 0.68868 0.0690766 0.644141 0.0617809 0.688292 0.0577952 0.643799 0.0496348 0.688596 0.0452529 0.644181 0.931846 0.210659 0.93225 0.181335 0.919017 0.211063 0.91968 0.181635 0.0626107 0.511441 0.0626528 0.482102 0.0513444 0.511006 0.0517288 0.481642 0.039203 0.510731 0.0399228 0.481032 0.927545 0.29884 0.93035 0.254744 0.914651 0.299378 0.917447 0.255217 0.0656967 0.599701 0.0634911 0.555557 0.0544183 0.599358 0.0521856 0.55518 0.0422874 0.599593 0.039607 0.555212 0.929532 0.152209 0.916769 0.152356 0.0658744 0.453022 0.0547204 0.452584 0.0427664 0.451709 0.0791792 0.759576 0.0679856 0.759098 0.0555494 0.75918 0.90415 0.545319 0.915548 0.544978 0.913881 0.0535193 0.900021 0.0520879 0.0834597 0.354657 0.0713084 0.355083 0.0584531 0.35432 0.00932573 0.0166378 0.0164231 0.0167353 0.0162536 0.029232 0.00679378 0.0289238 0.0165036 0.00792693 0.00545094 0.102875 0.0149193 0.102464 0.0155802 0.066937 0.00612231 0.0667978 0.0282927 0.00282819 0.0440569 0.0005 0.0448359 0.0171147 0.0282882 0.0168539 0.044628 0.0301729 0.0280775 0.0296109 0.0439489 0.0673508 0.027401 0.0671044 0.0267443 0.102467 0.0432983 0.102477 0.0430579 0.115504 0.0265099 0.115202 0.0427655 0.131392 0.0262524 0.129326 0.388255 0.0116542 0.388035 0.0235229 0.350952 0.0228141 0.351263 0.00708803 0.387672 0.0425561 0.350597 0.0412081 0.387104 0.0728534 0.350022 0.072253 0.349454 0.102854 0.386544 0.102905 0.38619 0.121945 0.349114 0.121243 0.385968 0.133817 0.328419 0.135258 0.414519 0.0240103 0.430037 0.044087 0.414151 0.0435128 0.434785 0.0733946 0.413591 0.0732822 0.413037 0.102942 0.428933 0.102964 0.412673 0.122446 0.00912697 0.447761 0.0224507 0.349078 0.00651128 0.478967 0.00545094 0.510372 0.00598399 0.556173 0.00787225 0.601543 0.0106981 0.646741 0.0139994 0.691436 0.0193615 0.761564 0.0238759 0.846168 0.0219925 0.889276 0.0106582 0.973615 0.42706 0.304514 0.36501 0.298936 0.36211 0.145056 0.423283 0.125554 0.332359 0.299661 0.328035 0.152886 0.828937 0.690704 0.890714 0.682355 0.894933 0.861417 0.832911 0.844655 0.924544 0.6801 0.930813 0.865521 0.164937 0.254875 0.131549 0.247211 0.157916 0.2009 0.208446 0.216876 0.152843 0.281455 0.123411 0.277055 0.621902 0.878793 0.665199 0.916839 0.614408 0.932262 0.588435 0.885475 0.678441 0.948764 0.620191 0.961193 0.0900131 0.247431 0.0560309 0.250285 0.0555893 0.203761 0.0978882 0.199102 0.0873596 0.276158 0.0560269 0.27776 0.547027 0.884654 0.554243 0.933223 0.51194 0.927965 0.513069 0.881332 0.552867 0.962201 0.507684 0.956443 0.796266 0.691438 0.7985 0.838351 0.753043 0.837184 0.753259 0.690682 0.503348 0.304666 0.460216 0.305158 0.458176 0.120324 0.503786 0.119323 0.606909 0.812454 0.610948 0.851834 0.581195 0.855332 0.579631 0.815933 0.221213 0.185583 0.163571 0.172651 0.165909 0.134222 0.227455 0.14442 0.544884 0.818483 0.544916 0.855785 0.513509 0.853779 0.514715 0.818353 0.0967366 0.170851 0.0516898 0.176021 0.0458763 0.140925 0.0935916 0.134175 0.121173 0.316466 0.0867291 0.31339 0.54915 0.998697 0.621762 0.9995 0.023471 0.255715 0.0129829 0.21069 0.0567056 0.31313 0.0262429 0.314016 0.0256012 0.280903 0.469366 0.920432 0.480541 0.875436 0.501347 0.99132 0.455987 0.981905 0.462587 0.948339 0.483068 0.85021 0.00677729 0.183512 0.967538 0.678779 0.976252 0.864033 0.683636 0.990021 0.0005 0.149739 0.289455 0.302334 0.282704 0.156079 0.148202 0.320506 0.484194 0.817047 0.741679 0.742964 0.732255 0.758481 0.677637 0.71984 0.674138 0.688681 0.594613 0.744959 0.660657 0.688864 0.658004 0.720106 0.604455 0.760214 0.459666 0.614419 0.426281 0.614417 0.426281 0.695378 0.459666 0.695381 0.720191 0.780462 0.712319 0.799634 0.678146 0.786849 0.678602 0.75554 0.659313 0.787104 0.625499 0.800812 0.61711 0.78186 0.658007 0.755819 0.705278 0.82004 0.677689 0.818244 0.66062 0.818475 0.63309 0.82102 + + + + + + + + + + + + + + + + + 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 +

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

+
+
+
+
+ + + + 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 + + + + + + + + + + 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 + + + + + + + + + + 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 + + + + + + + + + + 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 + + + + + + + + + + 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 + + + + + + + + + + 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 + + + + + + + + + + + + + +
diff --git a/Assets/Splattershot-Splatoon/model.dae.meta b/Assets/Splattershot-Splatoon/model.dae.meta new file mode 100644 index 0000000..c297151 --- /dev/null +++ b/Assets/Splattershot-Splatoon/model.dae.meta @@ -0,0 +1,102 @@ +fileFormatVersion: 2 +guid: 6ecf4ed5e905303488757bf045c01010 +ModelImporter: + serializedVersion: 20200 + internalIDToNameTable: [] + externalObjects: {} + materials: + materialImportMode: 2 + materialName: 0 + materialSearch: 1 + materialLocation: 1 + animations: + legacyGenerateAnimations: 4 + bakeSimulation: 0 + resampleCurves: 1 + optimizeGameObjects: 0 + 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: 0.33 + meshCompression: 0 + addColliders: 0 + useSRGBMaterialColor: 1 + sortHierarchyByName: 1 + importVisibility: 1 + importBlendShapes: 1 + importCameras: 1 + importLights: 1 + fileIdsGeneration: 2 + swapUVChannels: 0 + generateSecondaryUV: 0 + useFileUnits: 1 + keepQuads: 0 + weldVertices: 1 + bakeAxisConversion: 0 + preserveHierarchy: 0 + skinWeightsMode: 0 + maxBonesPerVertex: 4 + minBoneWeight: 0.001 + 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: 0.33 + rootMotionBoneName: + hasTranslationDoF: 0 + hasExtraRoot: 0 + skeletonHasParents: 1 + lastHumanDescriptionAvatarSource: {instanceID: 0} + autoGenerateAvatarMappingIfUnspecified: 1 + animationType: 2 + humanoidOversampling: 1 + avatarSetup: 0 + addHumanoidExtraRootOnlyWhenUsingAvatar: 1 + additionalBone: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Splattershot-Splatoon/nozzle.mat b/Assets/Splattershot-Splatoon/nozzle.mat new file mode 100644 index 0000000..8f4047b --- /dev/null +++ b/Assets/Splattershot-Splatoon/nozzle.mat @@ -0,0 +1,124 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 6 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: nozzle + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_ShaderKeywords: _METALLICSPECGLOSSMAP _NORMALMAP _OCCLUSIONMAP + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: 2000 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 0a7f92328b17539488101015fbd273e8, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 2800000, guid: 9addcee3a1884c64f83f875b6d337eb2, type: 3} + 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: 0a7f92328b17539488101015fbd273e8, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 2800000, guid: fab246434076a134c8a87308ef824b0b, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 2800000, guid: c3527419edc68824d9bf2b783d55324c, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Floats: + - _AlphaClip: 0 + - _Blend: 0 + - _BumpScale: 1 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 2 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 0 + - _Glossiness: 0 + - _GlossyReflections: 0 + - _Metallic: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.005 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 0.5 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _Surface: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] +--- !u!114 &1639270715320388115 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 4 diff --git a/Assets/Splattershot-Splatoon/nozzle.mat.meta b/Assets/Splattershot-Splatoon/nozzle.mat.meta new file mode 100644 index 0000000..fdbc883 --- /dev/null +++ b/Assets/Splattershot-Splatoon/nozzle.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 3f147ecca71633d4a82c4caad97cb905 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Splattershot-Splatoon/pump.mat b/Assets/Splattershot-Splatoon/pump.mat new file mode 100644 index 0000000..07efdd6 --- /dev/null +++ b/Assets/Splattershot-Splatoon/pump.mat @@ -0,0 +1,124 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 6 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: pump + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_ShaderKeywords: _METALLICSPECGLOSSMAP _NORMALMAP _OCCLUSIONMAP + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: 2000 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 9934e9a58cfc9a04fa8aa249cbc61a0d, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 2800000, guid: a8b0cae7a0ead174a91c85a6e710ec5e, type: 3} + 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: 9934e9a58cfc9a04fa8aa249cbc61a0d, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 2800000, guid: 00b5f5748b0419748b45a078b5bed34e, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 2800000, guid: 2412d872ca0858d4b96f269ee7f53d2c, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Floats: + - _AlphaClip: 0 + - _Blend: 0 + - _BumpScale: 1 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 2 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 0 + - _Glossiness: 0 + - _GlossyReflections: 0 + - _Metallic: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.005 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 0.5 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _Surface: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] +--- !u!114 &1639270715320388115 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 4 diff --git a/Assets/Splattershot-Splatoon/pump.mat.meta b/Assets/Splattershot-Splatoon/pump.mat.meta new file mode 100644 index 0000000..d2a5aeb --- /dev/null +++ b/Assets/Splattershot-Splatoon/pump.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 5fc26080382b5bc44a6b4a21db209be2 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Splattershot-Splatoon/tank.mat b/Assets/Splattershot-Splatoon/tank.mat new file mode 100644 index 0000000..b93c137 --- /dev/null +++ b/Assets/Splattershot-Splatoon/tank.mat @@ -0,0 +1,124 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 6 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: tank + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_ShaderKeywords: _METALLICSPECGLOSSMAP _NORMALMAP _OCCLUSIONMAP + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: 2000 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 41c26e20634de9142baf0e04d2674630, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 2800000, guid: 0db8becb4b5fb5345b4d8ff44cc56ce4, type: 3} + 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: 41c26e20634de9142baf0e04d2674630, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 2800000, guid: 20cb27add6f6da44db34713331a03f28, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 2800000, guid: c89ecf4819ffd9c47bf5f2a1d1d272af, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Floats: + - _AlphaClip: 0 + - _Blend: 0 + - _BumpScale: 1 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 2 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 0 + - _Glossiness: 0 + - _GlossyReflections: 0 + - _Metallic: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.005 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 0.5 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _Surface: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] +--- !u!114 &1639270715320388115 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 4 diff --git a/Assets/Splattershot-Splatoon/tank.mat.meta b/Assets/Splattershot-Splatoon/tank.mat.meta new file mode 100644 index 0000000..a1d6c57 --- /dev/null +++ b/Assets/Splattershot-Splatoon/tank.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 4d55ac861bef7b447bb029a4da2cb51a +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Splattershot-Splatoon/textures.meta b/Assets/Splattershot-Splatoon/textures.meta new file mode 100644 index 0000000..eaf0bd7 --- /dev/null +++ b/Assets/Splattershot-Splatoon/textures.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 2af245402307ccd4999031b93b2a2189 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Splattershot-Splatoon/textures/Body_AO.jpg b/Assets/Splattershot-Splatoon/textures/Body_AO.jpg new file mode 100644 index 0000000..38a9ec9 Binary files /dev/null and b/Assets/Splattershot-Splatoon/textures/Body_AO.jpg differ diff --git a/Assets/Splattershot-Splatoon/textures/Body_AO.jpg.meta b/Assets/Splattershot-Splatoon/textures/Body_AO.jpg.meta new file mode 100644 index 0000000..e3b9cfc --- /dev/null +++ b/Assets/Splattershot-Splatoon/textures/Body_AO.jpg.meta @@ -0,0 +1,144 @@ +fileFormatVersion: 2 +guid: bbbc6f57cb2b0f14dbca7e3cbb4b1213 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + 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 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: 2 + mipBias: -100 + 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 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 8192 + 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: 8192 + 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: 8192 + 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: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Windows Store Apps + maxTextureSize: 8192 + 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: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Splattershot-Splatoon/textures/Body_albedo.jpg b/Assets/Splattershot-Splatoon/textures/Body_albedo.jpg new file mode 100644 index 0000000..b087937 Binary files /dev/null and b/Assets/Splattershot-Splatoon/textures/Body_albedo.jpg differ diff --git a/Assets/Splattershot-Splatoon/textures/Body_albedo.jpg.meta b/Assets/Splattershot-Splatoon/textures/Body_albedo.jpg.meta new file mode 100644 index 0000000..cd0821a --- /dev/null +++ b/Assets/Splattershot-Splatoon/textures/Body_albedo.jpg.meta @@ -0,0 +1,144 @@ +fileFormatVersion: 2 +guid: d23b99799ea4b1340b4bdb4e1303a3be +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + 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 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: 2 + mipBias: -100 + 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 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 8192 + 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: 8192 + 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: 8192 + 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: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Windows Store Apps + maxTextureSize: 8192 + 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: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Splattershot-Splatoon/textures/Body_metallic.jpg b/Assets/Splattershot-Splatoon/textures/Body_metallic.jpg new file mode 100644 index 0000000..60476da Binary files /dev/null and b/Assets/Splattershot-Splatoon/textures/Body_metallic.jpg differ diff --git a/Assets/Splattershot-Splatoon/textures/Body_metallic.jpg.meta b/Assets/Splattershot-Splatoon/textures/Body_metallic.jpg.meta new file mode 100644 index 0000000..3159654 --- /dev/null +++ b/Assets/Splattershot-Splatoon/textures/Body_metallic.jpg.meta @@ -0,0 +1,144 @@ +fileFormatVersion: 2 +guid: 2de120c1db4b8e04f9a6a2d4c8a143ac +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + 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 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: 2 + mipBias: -100 + 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 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 8192 + 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: 8192 + 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: 8192 + 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: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Windows Store Apps + maxTextureSize: 8192 + 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: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Splattershot-Splatoon/textures/Body_normal.png b/Assets/Splattershot-Splatoon/textures/Body_normal.png new file mode 100644 index 0000000..2253b8f Binary files /dev/null and b/Assets/Splattershot-Splatoon/textures/Body_normal.png differ diff --git a/Assets/Splattershot-Splatoon/textures/Body_normal.png.meta b/Assets/Splattershot-Splatoon/textures/Body_normal.png.meta new file mode 100644 index 0000000..12af513 --- /dev/null +++ b/Assets/Splattershot-Splatoon/textures/Body_normal.png.meta @@ -0,0 +1,144 @@ +fileFormatVersion: 2 +guid: a216015e5c81e5a4ea59c6943789f9aa +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + 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 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: 2 + mipBias: -100 + 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: 1 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 8192 + 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: 8192 + 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: 8192 + 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: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Windows Store Apps + maxTextureSize: 8192 + 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: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Splattershot-Splatoon/textures/Body_roughness.jpg b/Assets/Splattershot-Splatoon/textures/Body_roughness.jpg new file mode 100644 index 0000000..48ecfa7 Binary files /dev/null and b/Assets/Splattershot-Splatoon/textures/Body_roughness.jpg differ diff --git a/Assets/Splattershot-Splatoon/textures/Body_roughness.jpg.meta b/Assets/Splattershot-Splatoon/textures/Body_roughness.jpg.meta new file mode 100644 index 0000000..16bba60 --- /dev/null +++ b/Assets/Splattershot-Splatoon/textures/Body_roughness.jpg.meta @@ -0,0 +1,144 @@ +fileFormatVersion: 2 +guid: 69f643206d1e3d64fa563c54c9bc5c91 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + 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 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: 2 + mipBias: -100 + 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 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 8192 + 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: 8192 + 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: 8192 + 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: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Windows Store Apps + maxTextureSize: 8192 + 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: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Splattershot-Splatoon/textures/Handle_AO.jpg b/Assets/Splattershot-Splatoon/textures/Handle_AO.jpg new file mode 100644 index 0000000..a74d2d4 Binary files /dev/null and b/Assets/Splattershot-Splatoon/textures/Handle_AO.jpg differ diff --git a/Assets/Splattershot-Splatoon/textures/Handle_AO.jpg.meta b/Assets/Splattershot-Splatoon/textures/Handle_AO.jpg.meta new file mode 100644 index 0000000..47fa6a4 --- /dev/null +++ b/Assets/Splattershot-Splatoon/textures/Handle_AO.jpg.meta @@ -0,0 +1,144 @@ +fileFormatVersion: 2 +guid: 5caf3e1772e56bd4393c0d6e49fe34f3 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + 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 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: 2 + mipBias: -100 + 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 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 8192 + 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: 8192 + 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: 8192 + 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: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Windows Store Apps + maxTextureSize: 8192 + 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: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Splattershot-Splatoon/textures/Handle_albedo.jpg b/Assets/Splattershot-Splatoon/textures/Handle_albedo.jpg new file mode 100644 index 0000000..766d16f Binary files /dev/null and b/Assets/Splattershot-Splatoon/textures/Handle_albedo.jpg differ diff --git a/Assets/Splattershot-Splatoon/textures/Handle_albedo.jpg.meta b/Assets/Splattershot-Splatoon/textures/Handle_albedo.jpg.meta new file mode 100644 index 0000000..020f9e8 --- /dev/null +++ b/Assets/Splattershot-Splatoon/textures/Handle_albedo.jpg.meta @@ -0,0 +1,144 @@ +fileFormatVersion: 2 +guid: d5ec62e2269fb4b489f03c4f0b9034e2 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + 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 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: 2 + mipBias: -100 + 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 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 8192 + 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: 8192 + 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: 8192 + 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: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Windows Store Apps + maxTextureSize: 8192 + 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: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Splattershot-Splatoon/textures/Handle_metallic.jpg b/Assets/Splattershot-Splatoon/textures/Handle_metallic.jpg new file mode 100644 index 0000000..60476da Binary files /dev/null and b/Assets/Splattershot-Splatoon/textures/Handle_metallic.jpg differ diff --git a/Assets/Splattershot-Splatoon/textures/Handle_metallic.jpg.meta b/Assets/Splattershot-Splatoon/textures/Handle_metallic.jpg.meta new file mode 100644 index 0000000..d96cb3f --- /dev/null +++ b/Assets/Splattershot-Splatoon/textures/Handle_metallic.jpg.meta @@ -0,0 +1,144 @@ +fileFormatVersion: 2 +guid: 0fd3fafe2496beb4daa5e058338a29a9 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + 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 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: 2 + mipBias: -100 + 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 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 8192 + 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: 8192 + 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: 8192 + 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: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Windows Store Apps + maxTextureSize: 8192 + 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: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Splattershot-Splatoon/textures/Handle_normal.png b/Assets/Splattershot-Splatoon/textures/Handle_normal.png new file mode 100644 index 0000000..79bd29f Binary files /dev/null and b/Assets/Splattershot-Splatoon/textures/Handle_normal.png differ diff --git a/Assets/Splattershot-Splatoon/textures/Handle_normal.png.meta b/Assets/Splattershot-Splatoon/textures/Handle_normal.png.meta new file mode 100644 index 0000000..051e873 --- /dev/null +++ b/Assets/Splattershot-Splatoon/textures/Handle_normal.png.meta @@ -0,0 +1,144 @@ +fileFormatVersion: 2 +guid: e1a5c22d931ad884db093b61613c2c51 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + 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 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: 2 + mipBias: -100 + 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: 1 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 8192 + 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: 8192 + 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: 8192 + 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: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Windows Store Apps + maxTextureSize: 8192 + 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: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Splattershot-Splatoon/textures/Handle_roughness.jpg b/Assets/Splattershot-Splatoon/textures/Handle_roughness.jpg new file mode 100644 index 0000000..48ecfa7 Binary files /dev/null and b/Assets/Splattershot-Splatoon/textures/Handle_roughness.jpg differ diff --git a/Assets/Splattershot-Splatoon/textures/Handle_roughness.jpg.meta b/Assets/Splattershot-Splatoon/textures/Handle_roughness.jpg.meta new file mode 100644 index 0000000..e99b8d8 --- /dev/null +++ b/Assets/Splattershot-Splatoon/textures/Handle_roughness.jpg.meta @@ -0,0 +1,144 @@ +fileFormatVersion: 2 +guid: 52e6ed1c3c8c2cb4786fe2170977a1ea +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + 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 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: 2 + mipBias: -100 + 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 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 8192 + 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: 8192 + 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: 8192 + 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: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Windows Store Apps + maxTextureSize: 8192 + 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: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Splattershot-Splatoon/textures/Nozzle_AO.jpg b/Assets/Splattershot-Splatoon/textures/Nozzle_AO.jpg new file mode 100644 index 0000000..4797a11 Binary files /dev/null and b/Assets/Splattershot-Splatoon/textures/Nozzle_AO.jpg differ diff --git a/Assets/Splattershot-Splatoon/textures/Nozzle_AO.jpg.meta b/Assets/Splattershot-Splatoon/textures/Nozzle_AO.jpg.meta new file mode 100644 index 0000000..d1ea46f --- /dev/null +++ b/Assets/Splattershot-Splatoon/textures/Nozzle_AO.jpg.meta @@ -0,0 +1,144 @@ +fileFormatVersion: 2 +guid: c3527419edc68824d9bf2b783d55324c +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + 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 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: 2 + mipBias: -100 + 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 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 8192 + 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: 8192 + 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: 8192 + 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: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Windows Store Apps + maxTextureSize: 8192 + 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: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Splattershot-Splatoon/textures/Nozzle_albedo.jpg b/Assets/Splattershot-Splatoon/textures/Nozzle_albedo.jpg new file mode 100644 index 0000000..6aef22a Binary files /dev/null and b/Assets/Splattershot-Splatoon/textures/Nozzle_albedo.jpg differ diff --git a/Assets/Splattershot-Splatoon/textures/Nozzle_albedo.jpg.meta b/Assets/Splattershot-Splatoon/textures/Nozzle_albedo.jpg.meta new file mode 100644 index 0000000..60c1e13 --- /dev/null +++ b/Assets/Splattershot-Splatoon/textures/Nozzle_albedo.jpg.meta @@ -0,0 +1,144 @@ +fileFormatVersion: 2 +guid: 0a7f92328b17539488101015fbd273e8 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + 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 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: 2 + mipBias: -100 + 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 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 8192 + 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: 8192 + 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: 8192 + 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: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Windows Store Apps + maxTextureSize: 8192 + 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: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Splattershot-Splatoon/textures/Nozzle_metallic.jpg b/Assets/Splattershot-Splatoon/textures/Nozzle_metallic.jpg new file mode 100644 index 0000000..60476da Binary files /dev/null and b/Assets/Splattershot-Splatoon/textures/Nozzle_metallic.jpg differ diff --git a/Assets/Splattershot-Splatoon/textures/Nozzle_metallic.jpg.meta b/Assets/Splattershot-Splatoon/textures/Nozzle_metallic.jpg.meta new file mode 100644 index 0000000..d7e2ed2 --- /dev/null +++ b/Assets/Splattershot-Splatoon/textures/Nozzle_metallic.jpg.meta @@ -0,0 +1,144 @@ +fileFormatVersion: 2 +guid: fab246434076a134c8a87308ef824b0b +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + 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 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: 2 + mipBias: -100 + 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 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 8192 + 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: 8192 + 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: 8192 + 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: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Windows Store Apps + maxTextureSize: 8192 + 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: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Splattershot-Splatoon/textures/Nozzle_normal.png b/Assets/Splattershot-Splatoon/textures/Nozzle_normal.png new file mode 100644 index 0000000..51a2758 Binary files /dev/null and b/Assets/Splattershot-Splatoon/textures/Nozzle_normal.png differ diff --git a/Assets/Splattershot-Splatoon/textures/Nozzle_normal.png.meta b/Assets/Splattershot-Splatoon/textures/Nozzle_normal.png.meta new file mode 100644 index 0000000..a0a2781 --- /dev/null +++ b/Assets/Splattershot-Splatoon/textures/Nozzle_normal.png.meta @@ -0,0 +1,144 @@ +fileFormatVersion: 2 +guid: 9addcee3a1884c64f83f875b6d337eb2 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + 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 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: 2 + mipBias: -100 + 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: 1 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 8192 + 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: 8192 + 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: 8192 + 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: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Windows Store Apps + maxTextureSize: 8192 + 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: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Splattershot-Splatoon/textures/Nozzle_roughness.jpg b/Assets/Splattershot-Splatoon/textures/Nozzle_roughness.jpg new file mode 100644 index 0000000..48ecfa7 Binary files /dev/null and b/Assets/Splattershot-Splatoon/textures/Nozzle_roughness.jpg differ diff --git a/Assets/Splattershot-Splatoon/textures/Nozzle_roughness.jpg.meta b/Assets/Splattershot-Splatoon/textures/Nozzle_roughness.jpg.meta new file mode 100644 index 0000000..885f3bd --- /dev/null +++ b/Assets/Splattershot-Splatoon/textures/Nozzle_roughness.jpg.meta @@ -0,0 +1,144 @@ +fileFormatVersion: 2 +guid: 03b48bac8a8aa1244aeaa1592466f3fe +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + 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 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: 2 + mipBias: -100 + 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 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 8192 + 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: 8192 + 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: 8192 + 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: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Windows Store Apps + maxTextureSize: 8192 + 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: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Splattershot-Splatoon/textures/Pump_AO.jpg b/Assets/Splattershot-Splatoon/textures/Pump_AO.jpg new file mode 100644 index 0000000..697cb8b Binary files /dev/null and b/Assets/Splattershot-Splatoon/textures/Pump_AO.jpg differ diff --git a/Assets/Splattershot-Splatoon/textures/Pump_AO.jpg.meta b/Assets/Splattershot-Splatoon/textures/Pump_AO.jpg.meta new file mode 100644 index 0000000..26e1449 --- /dev/null +++ b/Assets/Splattershot-Splatoon/textures/Pump_AO.jpg.meta @@ -0,0 +1,144 @@ +fileFormatVersion: 2 +guid: 2412d872ca0858d4b96f269ee7f53d2c +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + 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 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: 2 + mipBias: -100 + 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 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 8192 + 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: 8192 + 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: 8192 + 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: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Windows Store Apps + maxTextureSize: 8192 + 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: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Splattershot-Splatoon/textures/Pump_albedo.jpg b/Assets/Splattershot-Splatoon/textures/Pump_albedo.jpg new file mode 100644 index 0000000..82bfa87 Binary files /dev/null and b/Assets/Splattershot-Splatoon/textures/Pump_albedo.jpg differ diff --git a/Assets/Splattershot-Splatoon/textures/Pump_albedo.jpg.meta b/Assets/Splattershot-Splatoon/textures/Pump_albedo.jpg.meta new file mode 100644 index 0000000..ad200b1 --- /dev/null +++ b/Assets/Splattershot-Splatoon/textures/Pump_albedo.jpg.meta @@ -0,0 +1,144 @@ +fileFormatVersion: 2 +guid: 9934e9a58cfc9a04fa8aa249cbc61a0d +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + 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 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: 2 + mipBias: -100 + 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 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 8192 + 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: 8192 + 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: 8192 + 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: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Windows Store Apps + maxTextureSize: 8192 + 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: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Splattershot-Splatoon/textures/Pump_metallic.jpg b/Assets/Splattershot-Splatoon/textures/Pump_metallic.jpg new file mode 100644 index 0000000..60476da Binary files /dev/null and b/Assets/Splattershot-Splatoon/textures/Pump_metallic.jpg differ diff --git a/Assets/Splattershot-Splatoon/textures/Pump_metallic.jpg.meta b/Assets/Splattershot-Splatoon/textures/Pump_metallic.jpg.meta new file mode 100644 index 0000000..4abd7ac --- /dev/null +++ b/Assets/Splattershot-Splatoon/textures/Pump_metallic.jpg.meta @@ -0,0 +1,144 @@ +fileFormatVersion: 2 +guid: 00b5f5748b0419748b45a078b5bed34e +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + 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 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: 2 + mipBias: -100 + 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 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 8192 + 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: 8192 + 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: 8192 + 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: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Windows Store Apps + maxTextureSize: 8192 + 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: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Splattershot-Splatoon/textures/Pump_normal.png b/Assets/Splattershot-Splatoon/textures/Pump_normal.png new file mode 100644 index 0000000..38c4b6e Binary files /dev/null and b/Assets/Splattershot-Splatoon/textures/Pump_normal.png differ diff --git a/Assets/Splattershot-Splatoon/textures/Pump_normal.png.meta b/Assets/Splattershot-Splatoon/textures/Pump_normal.png.meta new file mode 100644 index 0000000..6449199 --- /dev/null +++ b/Assets/Splattershot-Splatoon/textures/Pump_normal.png.meta @@ -0,0 +1,144 @@ +fileFormatVersion: 2 +guid: a8b0cae7a0ead174a91c85a6e710ec5e +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + 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 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: 2 + mipBias: -100 + 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: 1 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 8192 + 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: 8192 + 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: 8192 + 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: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Windows Store Apps + maxTextureSize: 8192 + 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: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Splattershot-Splatoon/textures/Pump_roughness.jpg b/Assets/Splattershot-Splatoon/textures/Pump_roughness.jpg new file mode 100644 index 0000000..48ecfa7 Binary files /dev/null and b/Assets/Splattershot-Splatoon/textures/Pump_roughness.jpg differ diff --git a/Assets/Splattershot-Splatoon/textures/Pump_roughness.jpg.meta b/Assets/Splattershot-Splatoon/textures/Pump_roughness.jpg.meta new file mode 100644 index 0000000..81c30b7 --- /dev/null +++ b/Assets/Splattershot-Splatoon/textures/Pump_roughness.jpg.meta @@ -0,0 +1,144 @@ +fileFormatVersion: 2 +guid: c82fd0facb7d0bb42be1d91f6e17079c +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + 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 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: 2 + mipBias: -100 + 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 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 8192 + 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: 8192 + 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: 8192 + 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: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Windows Store Apps + maxTextureSize: 8192 + 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: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Splattershot-Splatoon/textures/Tank_AO.jpg b/Assets/Splattershot-Splatoon/textures/Tank_AO.jpg new file mode 100644 index 0000000..49f9185 Binary files /dev/null and b/Assets/Splattershot-Splatoon/textures/Tank_AO.jpg differ diff --git a/Assets/Splattershot-Splatoon/textures/Tank_AO.jpg.meta b/Assets/Splattershot-Splatoon/textures/Tank_AO.jpg.meta new file mode 100644 index 0000000..51bb0dc --- /dev/null +++ b/Assets/Splattershot-Splatoon/textures/Tank_AO.jpg.meta @@ -0,0 +1,144 @@ +fileFormatVersion: 2 +guid: c89ecf4819ffd9c47bf5f2a1d1d272af +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + 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 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: 2 + mipBias: -100 + 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 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 8192 + 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: 8192 + 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: 8192 + 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: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Windows Store Apps + maxTextureSize: 8192 + 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: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Splattershot-Splatoon/textures/Tank_albedo.jpg b/Assets/Splattershot-Splatoon/textures/Tank_albedo.jpg new file mode 100644 index 0000000..d00d84c Binary files /dev/null and b/Assets/Splattershot-Splatoon/textures/Tank_albedo.jpg differ diff --git a/Assets/Splattershot-Splatoon/textures/Tank_albedo.jpg.meta b/Assets/Splattershot-Splatoon/textures/Tank_albedo.jpg.meta new file mode 100644 index 0000000..5514c49 --- /dev/null +++ b/Assets/Splattershot-Splatoon/textures/Tank_albedo.jpg.meta @@ -0,0 +1,144 @@ +fileFormatVersion: 2 +guid: 41c26e20634de9142baf0e04d2674630 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + 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 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: 2 + mipBias: -100 + 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 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 8192 + 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: 8192 + 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: 8192 + 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: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Windows Store Apps + maxTextureSize: 8192 + 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: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Splattershot-Splatoon/textures/Tank_metallic.jpg b/Assets/Splattershot-Splatoon/textures/Tank_metallic.jpg new file mode 100644 index 0000000..60476da Binary files /dev/null and b/Assets/Splattershot-Splatoon/textures/Tank_metallic.jpg differ diff --git a/Assets/Splattershot-Splatoon/textures/Tank_metallic.jpg.meta b/Assets/Splattershot-Splatoon/textures/Tank_metallic.jpg.meta new file mode 100644 index 0000000..102f893 --- /dev/null +++ b/Assets/Splattershot-Splatoon/textures/Tank_metallic.jpg.meta @@ -0,0 +1,144 @@ +fileFormatVersion: 2 +guid: 20cb27add6f6da44db34713331a03f28 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + 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 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: 2 + mipBias: -100 + 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 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 8192 + 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: 8192 + 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: 8192 + 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: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Windows Store Apps + maxTextureSize: 8192 + 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: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Splattershot-Splatoon/textures/Tank_normal.png b/Assets/Splattershot-Splatoon/textures/Tank_normal.png new file mode 100644 index 0000000..70c0008 Binary files /dev/null and b/Assets/Splattershot-Splatoon/textures/Tank_normal.png differ diff --git a/Assets/Splattershot-Splatoon/textures/Tank_normal.png.meta b/Assets/Splattershot-Splatoon/textures/Tank_normal.png.meta new file mode 100644 index 0000000..53a71fc --- /dev/null +++ b/Assets/Splattershot-Splatoon/textures/Tank_normal.png.meta @@ -0,0 +1,144 @@ +fileFormatVersion: 2 +guid: 0db8becb4b5fb5345b4d8ff44cc56ce4 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + 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 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: 2 + mipBias: -100 + 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: 1 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 8192 + 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: 8192 + 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: 8192 + 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: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Windows Store Apps + maxTextureSize: 8192 + 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: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Splattershot-Splatoon/textures/Tank_roughness.jpg b/Assets/Splattershot-Splatoon/textures/Tank_roughness.jpg new file mode 100644 index 0000000..4a6b246 Binary files /dev/null and b/Assets/Splattershot-Splatoon/textures/Tank_roughness.jpg differ diff --git a/Assets/Splattershot-Splatoon/textures/Tank_roughness.jpg.meta b/Assets/Splattershot-Splatoon/textures/Tank_roughness.jpg.meta new file mode 100644 index 0000000..d0392c3 --- /dev/null +++ b/Assets/Splattershot-Splatoon/textures/Tank_roughness.jpg.meta @@ -0,0 +1,144 @@ +fileFormatVersion: 2 +guid: f43b98f68ead9034098a58e4e865a82a +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + 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 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: 2 + mipBias: -100 + 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 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 8192 + 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: 8192 + 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: 8192 + 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: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Windows Store Apps + maxTextureSize: 8192 + 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: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Splattershot-Splatoon/textures/Tube_AO.jpg b/Assets/Splattershot-Splatoon/textures/Tube_AO.jpg new file mode 100644 index 0000000..2ae22f9 Binary files /dev/null and b/Assets/Splattershot-Splatoon/textures/Tube_AO.jpg differ diff --git a/Assets/Splattershot-Splatoon/textures/Tube_AO.jpg.meta b/Assets/Splattershot-Splatoon/textures/Tube_AO.jpg.meta new file mode 100644 index 0000000..d4cca13 --- /dev/null +++ b/Assets/Splattershot-Splatoon/textures/Tube_AO.jpg.meta @@ -0,0 +1,144 @@ +fileFormatVersion: 2 +guid: 08f6ea59e26e7294dbef1a6941db70a7 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + 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 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: 2 + mipBias: -100 + 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 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 8192 + 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: 8192 + 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: 8192 + 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: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Windows Store Apps + maxTextureSize: 8192 + 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: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Splattershot-Splatoon/textures/Tube_albedo.jpg b/Assets/Splattershot-Splatoon/textures/Tube_albedo.jpg new file mode 100644 index 0000000..07c7382 Binary files /dev/null and b/Assets/Splattershot-Splatoon/textures/Tube_albedo.jpg differ diff --git a/Assets/Splattershot-Splatoon/textures/Tube_albedo.jpg.meta b/Assets/Splattershot-Splatoon/textures/Tube_albedo.jpg.meta new file mode 100644 index 0000000..3859b81 --- /dev/null +++ b/Assets/Splattershot-Splatoon/textures/Tube_albedo.jpg.meta @@ -0,0 +1,144 @@ +fileFormatVersion: 2 +guid: d4acfea22b78cac4a82d961a2795efbd +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + 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 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: 2 + mipBias: -100 + 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 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 8192 + 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: 8192 + 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: 8192 + 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: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Windows Store Apps + maxTextureSize: 8192 + 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: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Splattershot-Splatoon/textures/Tube_metallic.jpg b/Assets/Splattershot-Splatoon/textures/Tube_metallic.jpg new file mode 100644 index 0000000..60476da Binary files /dev/null and b/Assets/Splattershot-Splatoon/textures/Tube_metallic.jpg differ diff --git a/Assets/Splattershot-Splatoon/textures/Tube_metallic.jpg.meta b/Assets/Splattershot-Splatoon/textures/Tube_metallic.jpg.meta new file mode 100644 index 0000000..d8a343b --- /dev/null +++ b/Assets/Splattershot-Splatoon/textures/Tube_metallic.jpg.meta @@ -0,0 +1,144 @@ +fileFormatVersion: 2 +guid: c788da332c487834591b090285f85cb3 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + 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 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: 2 + mipBias: -100 + 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 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 8192 + 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: 8192 + 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: 8192 + 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: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Windows Store Apps + maxTextureSize: 8192 + 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: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Splattershot-Splatoon/textures/Tube_normal.png b/Assets/Splattershot-Splatoon/textures/Tube_normal.png new file mode 100644 index 0000000..ee4856d Binary files /dev/null and b/Assets/Splattershot-Splatoon/textures/Tube_normal.png differ diff --git a/Assets/Splattershot-Splatoon/textures/Tube_normal.png.meta b/Assets/Splattershot-Splatoon/textures/Tube_normal.png.meta new file mode 100644 index 0000000..6589509 --- /dev/null +++ b/Assets/Splattershot-Splatoon/textures/Tube_normal.png.meta @@ -0,0 +1,144 @@ +fileFormatVersion: 2 +guid: 354e2b38a2afa4e448272987367b2458 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + 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 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: 2 + mipBias: -100 + 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: 1 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 8192 + 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: 8192 + 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: 8192 + 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: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Windows Store Apps + maxTextureSize: 8192 + 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: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Splattershot-Splatoon/textures/Tube_roughness.jpg b/Assets/Splattershot-Splatoon/textures/Tube_roughness.jpg new file mode 100644 index 0000000..6cfe862 Binary files /dev/null and b/Assets/Splattershot-Splatoon/textures/Tube_roughness.jpg differ diff --git a/Assets/Splattershot-Splatoon/textures/Tube_roughness.jpg.meta b/Assets/Splattershot-Splatoon/textures/Tube_roughness.jpg.meta new file mode 100644 index 0000000..93556db --- /dev/null +++ b/Assets/Splattershot-Splatoon/textures/Tube_roughness.jpg.meta @@ -0,0 +1,144 @@ +fileFormatVersion: 2 +guid: 05fff105f86dbe84aa08f36c305a93f3 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + 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 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: 2 + mipBias: -100 + 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 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 8192 + 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: 8192 + 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: 8192 + 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: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Windows Store Apps + maxTextureSize: 8192 + 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: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Splattershot-Splatoon/tube.mat b/Assets/Splattershot-Splatoon/tube.mat new file mode 100644 index 0000000..66c2a05 --- /dev/null +++ b/Assets/Splattershot-Splatoon/tube.mat @@ -0,0 +1,124 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 6 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: tube + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_ShaderKeywords: _METALLICSPECGLOSSMAP _NORMALMAP _OCCLUSIONMAP + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: 2000 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: d4acfea22b78cac4a82d961a2795efbd, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 2800000, guid: 354e2b38a2afa4e448272987367b2458, type: 3} + 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: d4acfea22b78cac4a82d961a2795efbd, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 2800000, guid: c788da332c487834591b090285f85cb3, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 2800000, guid: 08f6ea59e26e7294dbef1a6941db70a7, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Floats: + - _AlphaClip: 0 + - _Blend: 0 + - _BumpScale: 1 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 2 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 0 + - _Glossiness: 0 + - _GlossyReflections: 0 + - _Metallic: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.005 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 0.5 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _Surface: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] +--- !u!114 &1639270715320388115 +MonoBehaviour: + m_ObjectHideFlags: 11 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 4 diff --git a/Assets/Splattershot-Splatoon/tube.mat.meta b/Assets/Splattershot-Splatoon/tube.mat.meta new file mode 100644 index 0000000..41d896a --- /dev/null +++ b/Assets/Splattershot-Splatoon/tube.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: e84b818e2f8296a42bb635fb015c58ff +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/TutorialInfo.meta b/Assets/TutorialInfo.meta new file mode 100644 index 0000000..a7bc5aa --- /dev/null +++ b/Assets/TutorialInfo.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 49110bb8dcada46328ad741970bce702 +folderAsset: yes +timeCreated: 1475590612 +licenseType: Store +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/TutorialInfo/Icons.meta b/Assets/TutorialInfo/Icons.meta new file mode 100644 index 0000000..1d19fb9 --- /dev/null +++ b/Assets/TutorialInfo/Icons.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 8a0c9218a650547d98138cd835033977 +folderAsset: yes +timeCreated: 1484670163 +licenseType: Store +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/TutorialInfo/Icons/Help_Icon.png b/Assets/TutorialInfo/Icons/Help_Icon.png new file mode 100644 index 0000000..91fa215 Binary files /dev/null and b/Assets/TutorialInfo/Icons/Help_Icon.png differ diff --git a/Assets/TutorialInfo/Icons/Help_Icon.png.meta b/Assets/TutorialInfo/Icons/Help_Icon.png.meta new file mode 100644 index 0000000..a21157b --- /dev/null +++ b/Assets/TutorialInfo/Icons/Help_Icon.png.meta @@ -0,0 +1,128 @@ +fileFormatVersion: 2 +guid: 34f556d724b1bbf4097ca6220db2c581 +TextureImporter: + fileIDToRecycleName: {} + externalObjects: {} + serializedVersion: 5 + 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 + 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: 0 + 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: 1 + spriteTessellationDetail: -1 + textureType: 2 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - serializedVersion: 2 + buildTarget: DefaultTexturePlatform + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Standalone + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: iPhone + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Android + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Windows Store Apps + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + vertices: [] + indices: + edges: [] + weights: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/TutorialInfo/Icons/UniversalIcon.png b/Assets/TutorialInfo/Icons/UniversalIcon.png new file mode 100644 index 0000000..305966b Binary files /dev/null and b/Assets/TutorialInfo/Icons/UniversalIcon.png differ diff --git a/Assets/TutorialInfo/Icons/UniversalIcon.png.meta b/Assets/TutorialInfo/Icons/UniversalIcon.png.meta new file mode 100644 index 0000000..129d16b --- /dev/null +++ b/Assets/TutorialInfo/Icons/UniversalIcon.png.meta @@ -0,0 +1,128 @@ +fileFormatVersion: 2 +guid: 7801804018a7dcf42abb827444e18660 +TextureImporter: + fileIDToRecycleName: {} + externalObjects: {} + serializedVersion: 5 + 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: 2 + 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 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - serializedVersion: 2 + buildTarget: DefaultTexturePlatform + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Standalone + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: iPhone + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Android + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Windows Store Apps + maxTextureSize: 8192 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + vertices: [] + indices: + edges: [] + weights: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/TutorialInfo/Layout.wlt b/Assets/TutorialInfo/Layout.wlt new file mode 100644 index 0000000..7b50a25 --- /dev/null +++ b/Assets/TutorialInfo/Layout.wlt @@ -0,0 +1,654 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &1 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 1 + m_Script: {fileID: 12004, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_PixelRect: + serializedVersion: 2 + x: 0 + y: 45 + width: 1666 + height: 958 + m_ShowMode: 4 + m_Title: + m_RootView: {fileID: 6} + m_MinSize: {x: 950, y: 542} + m_MaxSize: {x: 10000, y: 10000} +--- !u!114 &2 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 1 + m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_Children: [] + m_Position: + serializedVersion: 2 + x: 0 + y: 466 + width: 290 + height: 442 + m_MinSize: {x: 234, y: 271} + m_MaxSize: {x: 10004, y: 10021} + m_ActualView: {fileID: 14} + m_Panes: + - {fileID: 14} + m_Selected: 0 + m_LastSelected: 0 +--- !u!114 &3 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 1 + m_Script: {fileID: 12010, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_Children: + - {fileID: 4} + - {fileID: 2} + m_Position: + serializedVersion: 2 + x: 973 + y: 0 + width: 290 + height: 908 + m_MinSize: {x: 234, y: 492} + m_MaxSize: {x: 10004, y: 14042} + vertical: 1 + controlID: 226 +--- !u!114 &4 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 1 + m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_Children: [] + m_Position: + serializedVersion: 2 + x: 0 + y: 0 + width: 290 + height: 466 + m_MinSize: {x: 204, y: 221} + m_MaxSize: {x: 4004, y: 4021} + m_ActualView: {fileID: 17} + m_Panes: + - {fileID: 17} + m_Selected: 0 + m_LastSelected: 0 +--- !u!114 &5 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 1 + m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_Children: [] + m_Position: + serializedVersion: 2 + x: 0 + y: 466 + width: 973 + height: 442 + m_MinSize: {x: 202, y: 221} + m_MaxSize: {x: 4002, y: 4021} + m_ActualView: {fileID: 15} + m_Panes: + - {fileID: 15} + m_Selected: 0 + m_LastSelected: 0 +--- !u!114 &6 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 1 + m_Script: {fileID: 12008, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_Children: + - {fileID: 7} + - {fileID: 8} + - {fileID: 9} + m_Position: + serializedVersion: 2 + x: 0 + y: 0 + width: 1666 + height: 958 + m_MinSize: {x: 950, y: 542} + m_MaxSize: {x: 10000, y: 10000} +--- !u!114 &7 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 1 + m_Script: {fileID: 12011, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_Children: [] + m_Position: + serializedVersion: 2 + x: 0 + y: 0 + width: 1666 + height: 30 + m_MinSize: {x: 0, y: 0} + m_MaxSize: {x: 0, y: 0} + m_LastLoadedLayoutName: Tutorial +--- !u!114 &8 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 1 + m_Script: {fileID: 12010, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_Children: + - {fileID: 10} + - {fileID: 3} + - {fileID: 11} + m_Position: + serializedVersion: 2 + x: 0 + y: 30 + width: 1666 + height: 908 + m_MinSize: {x: 713, y: 492} + m_MaxSize: {x: 18008, y: 14042} + vertical: 0 + controlID: 74 +--- !u!114 &9 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 1 + m_Script: {fileID: 12042, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_Children: [] + m_Position: + serializedVersion: 2 + x: 0 + y: 938 + width: 1666 + height: 20 + m_MinSize: {x: 0, y: 0} + m_MaxSize: {x: 0, y: 0} +--- !u!114 &10 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 1 + m_Script: {fileID: 12010, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_Children: + - {fileID: 12} + - {fileID: 5} + m_Position: + serializedVersion: 2 + x: 0 + y: 0 + width: 973 + height: 908 + m_MinSize: {x: 202, y: 442} + m_MaxSize: {x: 4002, y: 8042} + vertical: 1 + controlID: 75 +--- !u!114 &11 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 1 + m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_Children: [] + m_Position: + serializedVersion: 2 + x: 1263 + y: 0 + width: 403 + height: 908 + m_MinSize: {x: 277, y: 71} + m_MaxSize: {x: 4002, y: 4021} + m_ActualView: {fileID: 13} + m_Panes: + - {fileID: 13} + m_Selected: 0 + m_LastSelected: 0 +--- !u!114 &12 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 1 + m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_Children: [] + m_Position: + serializedVersion: 2 + x: 0 + y: 0 + width: 973 + height: 466 + m_MinSize: {x: 202, y: 221} + m_MaxSize: {x: 4002, y: 4021} + m_ActualView: {fileID: 16} + m_Panes: + - {fileID: 16} + m_Selected: 0 + m_LastSelected: 0 +--- !u!114 &13 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 1 + m_Script: {fileID: 12019, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_AutoRepaintOnSceneChange: 0 + m_MinSize: {x: 275, y: 50} + m_MaxSize: {x: 4000, y: 4000} + m_TitleContent: + m_Text: Inspector + m_Image: {fileID: -6905738622615590433, guid: 0000000000000000d000000000000000, + type: 0} + m_Tooltip: + m_DepthBufferBits: 0 + m_Pos: + serializedVersion: 2 + x: 2 + y: 19 + width: 401 + height: 887 + m_ScrollPosition: {x: 0, y: 0} + m_InspectorMode: 0 + m_PreviewResizer: + m_CachedPref: -160 + m_ControlHash: -371814159 + m_PrefName: Preview_InspectorPreview + m_PreviewWindow: {fileID: 0} +--- !u!114 &14 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 1 + m_Script: {fileID: 12014, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_AutoRepaintOnSceneChange: 0 + m_MinSize: {x: 230, y: 250} + m_MaxSize: {x: 10000, y: 10000} + m_TitleContent: + m_Text: Project + m_Image: {fileID: -7501376956915960154, guid: 0000000000000000d000000000000000, + type: 0} + m_Tooltip: + m_DepthBufferBits: 0 + m_Pos: + serializedVersion: 2 + x: 2 + y: 19 + width: 286 + height: 421 + m_SearchFilter: + m_NameFilter: + m_ClassNames: [] + m_AssetLabels: [] + m_AssetBundleNames: [] + m_VersionControlStates: [] + m_ReferencingInstanceIDs: + m_ScenePaths: [] + m_ShowAllHits: 0 + m_SearchArea: 0 + m_Folders: + - Assets + m_ViewMode: 0 + m_StartGridSize: 64 + m_LastFolders: + - Assets + m_LastFoldersGridSize: -1 + m_LastProjectPath: /Users/danielbrauer/Unity Projects/New Unity Project 47 + m_IsLocked: 0 + m_FolderTreeState: + scrollPos: {x: 0, y: 0} + m_SelectedIDs: ee240000 + m_LastClickedID: 9454 + m_ExpandedIDs: ee24000000ca9a3bffffff7f + m_RenameOverlay: + m_UserAcceptedRename: 0 + m_Name: + m_OriginalName: + m_EditFieldRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + m_UserData: 0 + m_IsWaitingForDelay: 0 + m_IsRenaming: 0 + m_OriginalEventType: 11 + m_IsRenamingFilename: 1 + m_ClientGUIView: {fileID: 0} + m_SearchString: + m_CreateAssetUtility: + m_EndAction: {fileID: 0} + m_InstanceID: 0 + m_Path: + m_Icon: {fileID: 0} + m_ResourceFile: + m_AssetTreeState: + scrollPos: {x: 0, y: 0} + m_SelectedIDs: 68fbffff + m_LastClickedID: 0 + m_ExpandedIDs: ee240000 + m_RenameOverlay: + m_UserAcceptedRename: 0 + m_Name: + m_OriginalName: + m_EditFieldRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + m_UserData: 0 + m_IsWaitingForDelay: 0 + m_IsRenaming: 0 + m_OriginalEventType: 11 + m_IsRenamingFilename: 1 + m_ClientGUIView: {fileID: 0} + m_SearchString: + m_CreateAssetUtility: + m_EndAction: {fileID: 0} + m_InstanceID: 0 + m_Path: + m_Icon: {fileID: 0} + m_ResourceFile: + m_ListAreaState: + m_SelectedInstanceIDs: 68fbffff + m_LastClickedInstanceID: -1176 + m_HadKeyboardFocusLastEvent: 0 + m_ExpandedInstanceIDs: c6230000 + m_RenameOverlay: + m_UserAcceptedRename: 0 + m_Name: + m_OriginalName: + m_EditFieldRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + m_UserData: 0 + m_IsWaitingForDelay: 0 + m_IsRenaming: 0 + m_OriginalEventType: 11 + m_IsRenamingFilename: 1 + m_ClientGUIView: {fileID: 0} + m_CreateAssetUtility: + m_EndAction: {fileID: 0} + m_InstanceID: 0 + m_Path: + m_Icon: {fileID: 0} + m_ResourceFile: + m_NewAssetIndexInList: -1 + m_ScrollPosition: {x: 0, y: 0} + m_GridSize: 64 + m_DirectoriesAreaWidth: 110 +--- !u!114 &15 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 1 + m_Script: {fileID: 12015, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_AutoRepaintOnSceneChange: 1 + m_MinSize: {x: 200, y: 200} + m_MaxSize: {x: 4000, y: 4000} + m_TitleContent: + m_Text: Game + m_Image: {fileID: -2087823869225018852, guid: 0000000000000000d000000000000000, + type: 0} + m_Tooltip: + m_DepthBufferBits: 32 + m_Pos: + serializedVersion: 2 + x: 0 + y: 19 + width: 971 + height: 421 + m_MaximizeOnPlay: 0 + m_Gizmos: 0 + m_Stats: 0 + m_SelectedSizes: 00000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_TargetDisplay: 0 + m_ZoomArea: + m_HRangeLocked: 0 + m_VRangeLocked: 0 + m_HBaseRangeMin: -242.75 + m_HBaseRangeMax: 242.75 + m_VBaseRangeMin: -101 + m_VBaseRangeMax: 101 + m_HAllowExceedBaseRangeMin: 1 + m_HAllowExceedBaseRangeMax: 1 + m_VAllowExceedBaseRangeMin: 1 + m_VAllowExceedBaseRangeMax: 1 + m_ScaleWithWindow: 0 + m_HSlider: 0 + m_VSlider: 0 + m_IgnoreScrollWheelUntilClicked: 0 + m_EnableMouseInput: 1 + m_EnableSliderZoom: 0 + m_UniformScale: 1 + m_UpDirection: 1 + m_DrawArea: + serializedVersion: 2 + x: 0 + y: 17 + width: 971 + height: 404 + m_Scale: {x: 2, y: 2} + m_Translation: {x: 485.5, y: 202} + m_MarginLeft: 0 + m_MarginRight: 0 + m_MarginTop: 0 + m_MarginBottom: 0 + m_LastShownAreaInsideMargins: + serializedVersion: 2 + x: -242.75 + y: -101 + width: 485.5 + height: 202 + m_MinimalGUI: 1 + m_defaultScale: 2 + m_TargetTexture: {fileID: 0} + m_CurrentColorSpace: 0 + m_LastWindowPixelSize: {x: 1942, y: 842} + m_ClearInEditMode: 1 + m_NoCameraWarning: 1 + m_LowResolutionForAspectRatios: 01000000000100000100 +--- !u!114 &16 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 1 + m_Script: {fileID: 12013, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_AutoRepaintOnSceneChange: 1 + m_MinSize: {x: 200, y: 200} + m_MaxSize: {x: 4000, y: 4000} + m_TitleContent: + m_Text: Scene + m_Image: {fileID: 2318424515335265636, guid: 0000000000000000d000000000000000, + type: 0} + m_Tooltip: + m_DepthBufferBits: 32 + m_Pos: + serializedVersion: 2 + x: 0 + y: 19 + width: 971 + height: 445 + m_SceneLighting: 1 + lastFramingTime: 0 + m_2DMode: 0 + m_isRotationLocked: 0 + m_AudioPlay: 0 + m_Position: + m_Target: {x: 0, y: 0, z: 0} + speed: 2 + m_Value: {x: 0, y: 0, z: 0} + m_RenderMode: 0 + m_ValidateTrueMetals: 0 + m_SceneViewState: + showFog: 1 + showMaterialUpdate: 0 + showSkybox: 1 + showFlares: 1 + showImageEffects: 1 + grid: + xGrid: + m_Target: 0 + speed: 2 + m_Value: 0 + yGrid: + m_Target: 1 + speed: 2 + m_Value: 1 + zGrid: + m_Target: 0 + speed: 2 + m_Value: 0 + m_Rotation: + m_Target: {x: -0.08717229, y: 0.89959055, z: -0.21045254, w: -0.3726226} + speed: 2 + m_Value: {x: -0.08717229, y: 0.89959055, z: -0.21045254, w: -0.3726226} + m_Size: + m_Target: 10 + speed: 2 + m_Value: 10 + m_Ortho: + m_Target: 0 + speed: 2 + m_Value: 0 + m_LastSceneViewRotation: {x: 0, y: 0, z: 0, w: 0} + m_LastSceneViewOrtho: 0 + m_ReplacementShader: {fileID: 0} + m_ReplacementString: + m_LastLockedObject: {fileID: 0} + m_ViewIsLockedToObject: 0 +--- !u!114 &17 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 1 + m_Script: {fileID: 12061, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_AutoRepaintOnSceneChange: 0 + m_MinSize: {x: 200, y: 200} + m_MaxSize: {x: 4000, y: 4000} + m_TitleContent: + m_Text: Hierarchy + m_Image: {fileID: -590624980919486359, guid: 0000000000000000d000000000000000, + type: 0} + m_Tooltip: + m_DepthBufferBits: 0 + m_Pos: + serializedVersion: 2 + x: 2 + y: 19 + width: 286 + height: 445 + m_TreeViewState: + scrollPos: {x: 0, y: 0} + m_SelectedIDs: 68fbffff + m_LastClickedID: -1176 + m_ExpandedIDs: 7efbffff00000000 + m_RenameOverlay: + m_UserAcceptedRename: 0 + m_Name: + m_OriginalName: + m_EditFieldRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + m_UserData: 0 + m_IsWaitingForDelay: 0 + m_IsRenaming: 0 + m_OriginalEventType: 11 + m_IsRenamingFilename: 0 + m_ClientGUIView: {fileID: 0} + m_SearchString: + m_ExpandedScenes: + - + m_CurrenRootInstanceID: 0 + m_Locked: 0 + m_CurrentSortingName: TransformSorting diff --git a/Assets/TutorialInfo/Layout.wlt.meta b/Assets/TutorialInfo/Layout.wlt.meta new file mode 100644 index 0000000..c0c8c77 --- /dev/null +++ b/Assets/TutorialInfo/Layout.wlt.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: eabc9546105bf4accac1fd62a63e88e6 +timeCreated: 1487337779 +licenseType: Store +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/TutorialInfo/Scripts.meta b/Assets/TutorialInfo/Scripts.meta new file mode 100644 index 0000000..02da605 --- /dev/null +++ b/Assets/TutorialInfo/Scripts.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 5a9bcd70e6a4b4b05badaa72e827d8e0 +folderAsset: yes +timeCreated: 1475835190 +licenseType: Store +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/TutorialInfo/Scripts/Editor.meta b/Assets/TutorialInfo/Scripts/Editor.meta new file mode 100644 index 0000000..f59f099 --- /dev/null +++ b/Assets/TutorialInfo/Scripts/Editor.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 3ad9b87dffba344c89909c6d1b1c17e1 +folderAsset: yes +timeCreated: 1475593892 +licenseType: Store +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/TutorialInfo/Scripts/Editor/ReadmeEditor.cs b/Assets/TutorialInfo/Scripts/Editor/ReadmeEditor.cs new file mode 100644 index 0000000..2e59477 --- /dev/null +++ b/Assets/TutorialInfo/Scripts/Editor/ReadmeEditor.cs @@ -0,0 +1,158 @@ +using System.Collections; +using System.Collections.Generic; +using UnityEngine; +using UnityEditor; +using System; +using System.IO; +using System.Reflection; + +[CustomEditor(typeof(Readme))] +[InitializeOnLoad] +public class ReadmeEditor : Editor { + + static string kShowedReadmeSessionStateName = "ReadmeEditor.showedReadme"; + + static float kSpace = 16f; + + static ReadmeEditor() + { + EditorApplication.delayCall += SelectReadmeAutomatically; + } + + static void SelectReadmeAutomatically() + { + if (!SessionState.GetBool(kShowedReadmeSessionStateName, false )) + { + var readme = SelectReadme(); + SessionState.SetBool(kShowedReadmeSessionStateName, true); + + if (readme && !readme.loadedLayout) + { + LoadLayout(); + readme.loadedLayout = true; + } + } + } + + static void LoadLayout() + { + var assembly = typeof(EditorApplication).Assembly; + var windowLayoutType = assembly.GetType("UnityEditor.WindowLayout", true); + var method = windowLayoutType.GetMethod("LoadWindowLayout", BindingFlags.Public | BindingFlags.Static); + method.Invoke(null, new object[]{Path.Combine(Application.dataPath, "TutorialInfo/Layout.wlt"), false}); + } + + [MenuItem("Tutorial/Show Tutorial Instructions")] + static Readme SelectReadme() + { + var ids = AssetDatabase.FindAssets("Readme t:Readme"); + if (ids.Length == 1) + { + var readmeObject = AssetDatabase.LoadMainAssetAtPath(AssetDatabase.GUIDToAssetPath(ids[0])); + + Selection.objects = new UnityEngine.Object[]{readmeObject}; + + return (Readme)readmeObject; + } + else + { + Debug.Log("Couldn't find a readme"); + return null; + } + } + + protected override void OnHeaderGUI() + { + var readme = (Readme)target; + Init(); + + var iconWidth = Mathf.Min(EditorGUIUtility.currentViewWidth/3f - 20f, 128f); + + GUILayout.BeginHorizontal("In BigTitle"); + { + GUILayout.Label(readme.icon, GUILayout.Width(iconWidth), GUILayout.Height(iconWidth)); + GUILayout.Label(readme.title, TitleStyle); + } + GUILayout.EndHorizontal(); + } + + public override void OnInspectorGUI() + { + var readme = (Readme)target; + Init(); + + foreach (var section in readme.sections) + { + if (!string.IsNullOrEmpty(section.heading)) + { + GUILayout.Label(section.heading, HeadingStyle); + } + if (!string.IsNullOrEmpty(section.text)) + { + GUILayout.Label(section.text, BodyStyle); + } + if (!string.IsNullOrEmpty(section.linkText)) + { + if (LinkLabel(new GUIContent(section.linkText))) + { + Application.OpenURL(section.url); + } + } + GUILayout.Space(kSpace); + } + } + + + bool m_Initialized; + + GUIStyle LinkStyle { get { return m_LinkStyle; } } + [SerializeField] GUIStyle m_LinkStyle; + + GUIStyle TitleStyle { get { return m_TitleStyle; } } + [SerializeField] GUIStyle m_TitleStyle; + + GUIStyle HeadingStyle { get { return m_HeadingStyle; } } + [SerializeField] GUIStyle m_HeadingStyle; + + GUIStyle BodyStyle { get { return m_BodyStyle; } } + [SerializeField] GUIStyle m_BodyStyle; + + void Init() + { + if (m_Initialized) + return; + m_BodyStyle = new GUIStyle(EditorStyles.label); + m_BodyStyle.wordWrap = true; + m_BodyStyle.fontSize = 14; + + m_TitleStyle = new GUIStyle(m_BodyStyle); + m_TitleStyle.fontSize = 26; + + m_HeadingStyle = new GUIStyle(m_BodyStyle); + m_HeadingStyle.fontSize = 18 ; + + m_LinkStyle = new GUIStyle(m_BodyStyle); + m_LinkStyle.wordWrap = false; + // Match selection color which works nicely for both light and dark skins + m_LinkStyle.normal.textColor = new Color (0x00/255f, 0x78/255f, 0xDA/255f, 1f); + m_LinkStyle.stretchWidth = false; + + m_Initialized = true; + } + + bool LinkLabel (GUIContent label, params GUILayoutOption[] options) + { + var position = GUILayoutUtility.GetRect(label, LinkStyle, options); + + Handles.BeginGUI (); + Handles.color = LinkStyle.normal.textColor; + Handles.DrawLine (new Vector3(position.xMin, position.yMax), new Vector3(position.xMax, position.yMax)); + Handles.color = Color.white; + Handles.EndGUI (); + + EditorGUIUtility.AddCursorRect (position, MouseCursor.Link); + + return GUI.Button (position, label, LinkStyle); + } +} + diff --git a/Assets/TutorialInfo/Scripts/Editor/ReadmeEditor.cs.meta b/Assets/TutorialInfo/Scripts/Editor/ReadmeEditor.cs.meta new file mode 100644 index 0000000..f038618 --- /dev/null +++ b/Assets/TutorialInfo/Scripts/Editor/ReadmeEditor.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 476cc7d7cd9874016adc216baab94a0a +timeCreated: 1484146680 +licenseType: Store +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/TutorialInfo/Scripts/Readme.cs b/Assets/TutorialInfo/Scripts/Readme.cs new file mode 100644 index 0000000..48843db --- /dev/null +++ b/Assets/TutorialInfo/Scripts/Readme.cs @@ -0,0 +1,14 @@ +using System; +using UnityEngine; + +public class Readme : ScriptableObject { + public Texture2D icon; + public string title; + public Section[] sections; + public bool loadedLayout; + + [Serializable] + public class Section { + public string heading, text, linkText, url; + } +} diff --git a/Assets/TutorialInfo/Scripts/Readme.cs.meta b/Assets/TutorialInfo/Scripts/Readme.cs.meta new file mode 100644 index 0000000..0dd2604 --- /dev/null +++ b/Assets/TutorialInfo/Scripts/Readme.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: fcf7219bab7fe46a1ad266029b2fee19 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: + - icon: {fileID: 2800000, guid: d4743ba2e2a59f946b2125c074582ce7, type: 3} + executionOrder: 0 + icon: {fileID: 2800000, guid: a186f8a87ca4f4d3aa864638ad5dfb65, type: 3} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Packages/manifest.json b/Packages/manifest.json new file mode 100644 index 0000000..6648a1a --- /dev/null +++ b/Packages/manifest.json @@ -0,0 +1,50 @@ +{ + "dependencies": { + "com.unity.animation.rigging": "1.0.3", + "com.unity.cinemachine": "2.6.3", + "com.unity.collab-proxy": "1.3.9", + "com.unity.ext.nunit": "1.0.0", + "com.unity.ide.rider": "2.0.7", + "com.unity.ide.visualstudio": "2.0.5", + "com.unity.ide.vscode": "1.2.3", + "com.unity.postprocessing": "2.2.2", + "com.unity.probuilder": "4.4.0", + "com.unity.recorder": "2.0.3-preview.1", + "com.unity.render-pipelines.universal": "10.2.2", + "com.unity.test-framework": "1.1.20", + "com.unity.textmeshpro": "3.0.1", + "com.unity.timeline": "1.4.5", + "com.unity.ugui": "1.0.0", + "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", + "com.unity.modules.cloth": "1.0.0", + "com.unity.modules.director": "1.0.0", + "com.unity.modules.imageconversion": "1.0.0", + "com.unity.modules.imgui": "1.0.0", + "com.unity.modules.jsonserialize": "1.0.0", + "com.unity.modules.particlesystem": "1.0.0", + "com.unity.modules.physics": "1.0.0", + "com.unity.modules.physics2d": "1.0.0", + "com.unity.modules.screencapture": "1.0.0", + "com.unity.modules.terrain": "1.0.0", + "com.unity.modules.terrainphysics": "1.0.0", + "com.unity.modules.tilemap": "1.0.0", + "com.unity.modules.ui": "1.0.0", + "com.unity.modules.uielements": "1.0.0", + "com.unity.modules.umbra": "1.0.0", + "com.unity.modules.unityanalytics": "1.0.0", + "com.unity.modules.unitywebrequest": "1.0.0", + "com.unity.modules.unitywebrequestassetbundle": "1.0.0", + "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", + "com.unity.modules.xr": "1.0.0" + } +} diff --git a/Packages/packages-lock.json b/Packages/packages-lock.json new file mode 100644 index 0000000..52b5ec5 --- /dev/null +++ b/Packages/packages-lock.json @@ -0,0 +1,438 @@ +{ + "dependencies": { + "com.unity.animation.rigging": { + "version": "1.0.3", + "depth": 0, + "source": "registry", + "dependencies": { + "com.unity.burst": "1.3.4", + "com.unity.test-framework": "1.1.14" + }, + "url": "https://packages.unity.com" + }, + "com.unity.burst": { + "version": "1.3.4", + "depth": 1, + "source": "registry", + "dependencies": { + "com.unity.mathematics": "1.2.1" + }, + "url": "https://packages.unity.com" + }, + "com.unity.cinemachine": { + "version": "2.6.3", + "depth": 0, + "source": "registry", + "dependencies": {}, + "url": "https://packages.unity.com" + }, + "com.unity.collab-proxy": { + "version": "1.3.9", + "depth": 0, + "source": "registry", + "dependencies": {}, + "url": "https://packages.unity.com" + }, + "com.unity.ext.nunit": { + "version": "1.0.6", + "depth": 1, + "source": "registry", + "dependencies": {}, + "url": "https://packages.unity.com" + }, + "com.unity.ide.rider": { + "version": "2.0.7", + "depth": 0, + "source": "registry", + "dependencies": { + "com.unity.test-framework": "1.1.1" + }, + "url": "https://packages.unity.com" + }, + "com.unity.ide.visualstudio": { + "version": "2.0.5", + "depth": 0, + "source": "registry", + "dependencies": {}, + "url": "https://packages.unity.com" + }, + "com.unity.ide.vscode": { + "version": "1.2.3", + "depth": 0, + "source": "registry", + "dependencies": {}, + "url": "https://packages.unity.com" + }, + "com.unity.mathematics": { + "version": "1.2.1", + "depth": 2, + "source": "registry", + "dependencies": {}, + "url": "https://packages.unity.com" + }, + "com.unity.postprocessing": { + "version": "2.2.2", + "depth": 0, + "source": "registry", + "dependencies": {}, + "url": "https://packages.unity.com" + }, + "com.unity.probuilder": { + "version": "4.4.0", + "depth": 0, + "source": "registry", + "dependencies": { + "com.unity.settings-manager": "1.0.3" + }, + "url": "https://packages.unity.com" + }, + "com.unity.recorder": { + "version": "2.0.3-preview.1", + "depth": 0, + "source": "registry", + "dependencies": { + "com.unity.timeline": "1.0.0" + }, + "url": "https://packages.unity.com" + }, + "com.unity.render-pipelines.core": { + "version": "10.2.2", + "depth": 1, + "source": "registry", + "dependencies": { + "com.unity.ugui": "1.0.0" + }, + "url": "https://packages.unity.com" + }, + "com.unity.render-pipelines.universal": { + "version": "10.2.2", + "depth": 0, + "source": "registry", + "dependencies": { + "com.unity.mathematics": "1.1.0", + "com.unity.render-pipelines.core": "10.2.2", + "com.unity.shadergraph": "10.2.2" + }, + "url": "https://packages.unity.com" + }, + "com.unity.searcher": { + "version": "4.3.1", + "depth": 2, + "source": "registry", + "dependencies": {}, + "url": "https://packages.unity.com" + }, + "com.unity.settings-manager": { + "version": "1.0.3", + "depth": 1, + "source": "registry", + "dependencies": {}, + "url": "https://packages.unity.com" + }, + "com.unity.shadergraph": { + "version": "10.2.2", + "depth": 1, + "source": "registry", + "dependencies": { + "com.unity.render-pipelines.core": "10.2.2", + "com.unity.searcher": "4.3.1" + }, + "url": "https://packages.unity.com" + }, + "com.unity.test-framework": { + "version": "1.1.20", + "depth": 0, + "source": "registry", + "dependencies": { + "com.unity.ext.nunit": "1.0.6", + "com.unity.modules.imgui": "1.0.0", + "com.unity.modules.jsonserialize": "1.0.0" + }, + "url": "https://packages.unity.com" + }, + "com.unity.textmeshpro": { + "version": "3.0.1", + "depth": 0, + "source": "registry", + "dependencies": { + "com.unity.ugui": "1.0.0" + }, + "url": "https://packages.unity.com" + }, + "com.unity.timeline": { + "version": "1.4.5", + "depth": 0, + "source": "registry", + "dependencies": { + "com.unity.modules.director": "1.0.0", + "com.unity.modules.animation": "1.0.0", + "com.unity.modules.audio": "1.0.0", + "com.unity.modules.particlesystem": "1.0.0" + }, + "url": "https://packages.unity.com" + }, + "com.unity.ugui": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.ui": "1.0.0", + "com.unity.modules.imgui": "1.0.0" + } + }, + "com.unity.modules.ai": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.androidjni": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.animation": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.assetbundle": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.audio": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.cloth": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.physics": "1.0.0" + } + }, + "com.unity.modules.director": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.audio": "1.0.0", + "com.unity.modules.animation": "1.0.0" + } + }, + "com.unity.modules.imageconversion": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.imgui": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.jsonserialize": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.particlesystem": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.physics": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.physics2d": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.screencapture": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.imageconversion": "1.0.0" + } + }, + "com.unity.modules.subsystems": { + "version": "1.0.0", + "depth": 1, + "source": "builtin", + "dependencies": { + "com.unity.modules.jsonserialize": "1.0.0" + } + }, + "com.unity.modules.terrain": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.terrainphysics": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.physics": "1.0.0", + "com.unity.modules.terrain": "1.0.0" + } + }, + "com.unity.modules.tilemap": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.physics2d": "1.0.0" + } + }, + "com.unity.modules.ui": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.uielements": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.ui": "1.0.0", + "com.unity.modules.imgui": "1.0.0", + "com.unity.modules.jsonserialize": "1.0.0", + "com.unity.modules.uielementsnative": "1.0.0" + } + }, + "com.unity.modules.uielementsnative": { + "version": "1.0.0", + "depth": 1, + "source": "builtin", + "dependencies": { + "com.unity.modules.ui": "1.0.0", + "com.unity.modules.imgui": "1.0.0", + "com.unity.modules.jsonserialize": "1.0.0" + } + }, + "com.unity.modules.umbra": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.unityanalytics": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.unitywebrequest": "1.0.0", + "com.unity.modules.jsonserialize": "1.0.0" + } + }, + "com.unity.modules.unitywebrequest": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.unitywebrequestassetbundle": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.assetbundle": "1.0.0", + "com.unity.modules.unitywebrequest": "1.0.0" + } + }, + "com.unity.modules.unitywebrequestaudio": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.unitywebrequest": "1.0.0", + "com.unity.modules.audio": "1.0.0" + } + }, + "com.unity.modules.unitywebrequesttexture": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.unitywebrequest": "1.0.0", + "com.unity.modules.imageconversion": "1.0.0" + } + }, + "com.unity.modules.unitywebrequestwww": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.unitywebrequest": "1.0.0", + "com.unity.modules.unitywebrequestassetbundle": "1.0.0", + "com.unity.modules.unitywebrequestaudio": "1.0.0", + "com.unity.modules.audio": "1.0.0", + "com.unity.modules.assetbundle": "1.0.0", + "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, + "source": "builtin", + "dependencies": { + "com.unity.modules.audio": "1.0.0", + "com.unity.modules.ui": "1.0.0", + "com.unity.modules.unitywebrequest": "1.0.0" + } + }, + "com.unity.modules.vr": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.jsonserialize": "1.0.0", + "com.unity.modules.physics": "1.0.0", + "com.unity.modules.xr": "1.0.0" + } + }, + "com.unity.modules.wind": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.xr": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.physics": "1.0.0", + "com.unity.modules.jsonserialize": "1.0.0", + "com.unity.modules.subsystems": "1.0.0" + } + } + } +} diff --git a/ProjectSettings/AudioManager.asset b/ProjectSettings/AudioManager.asset new file mode 100644 index 0000000..27287fe --- /dev/null +++ b/ProjectSettings/AudioManager.asset @@ -0,0 +1,19 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!11 &1 +AudioManager: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Volume: 1 + Rolloff Scale: 1 + Doppler Factor: 1 + Default Speaker Mode: 2 + m_SampleRate: 0 + m_DSPBufferSize: 1024 + m_VirtualVoiceCount: 512 + m_RealVoiceCount: 32 + m_SpatializerPlugin: + m_AmbisonicDecoderPlugin: + m_DisableAudio: 0 + m_VirtualizeEffects: 1 + m_RequestedDSPBufferSize: 0 diff --git a/ProjectSettings/ClusterInputManager.asset b/ProjectSettings/ClusterInputManager.asset new file mode 100644 index 0000000..e7886b2 --- /dev/null +++ b/ProjectSettings/ClusterInputManager.asset @@ -0,0 +1,6 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!236 &1 +ClusterInputManager: + m_ObjectHideFlags: 0 + m_Inputs: [] diff --git a/ProjectSettings/DynamicsManager.asset b/ProjectSettings/DynamicsManager.asset new file mode 100644 index 0000000..5d5bacb --- /dev/null +++ b/ProjectSettings/DynamicsManager.asset @@ -0,0 +1,36 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!55 &1 +PhysicsManager: + m_ObjectHideFlags: 0 + serializedVersion: 13 + m_Gravity: {x: 0, y: -9.81, z: 0} + m_DefaultMaterial: {fileID: 0} + m_BounceThreshold: 2 + m_SleepThreshold: 0.005 + m_DefaultContactOffset: 0.01 + m_DefaultSolverIterations: 6 + m_DefaultSolverVelocityIterations: 1 + m_QueriesHitBackfaces: 0 + m_QueriesHitTriggers: 1 + m_EnableAdaptiveForce: 0 + m_ClothInterCollisionDistance: 0.1 + m_ClothInterCollisionStiffness: 0.2 + m_ContactsGeneration: 1 + m_LayerCollisionMatrix: ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff + m_AutoSimulation: 1 + m_AutoSyncTransforms: 0 + m_ReuseCollisionCallbacks: 1 + m_ClothInterCollisionSettingsToggle: 0 + m_ClothGravity: {x: 0, y: -9.81, z: 0} + m_ContactPairsMode: 0 + m_BroadphaseType: 0 + m_WorldBounds: + m_Center: {x: 0, y: 0, z: 0} + m_Extent: {x: 250, y: 250, z: 250} + m_WorldSubdivisions: 8 + m_FrictionType: 0 + m_EnableEnhancedDeterminism: 0 + m_EnableUnifiedHeightmaps: 1 + m_SolverType: 0 + m_DefaultMaxAngularSpeed: 7 diff --git a/ProjectSettings/EditorBuildSettings.asset b/ProjectSettings/EditorBuildSettings.asset new file mode 100644 index 0000000..2a4cbc5 --- /dev/null +++ b/ProjectSettings/EditorBuildSettings.asset @@ -0,0 +1,11 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1045 &1 +EditorBuildSettings: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Scenes: + - enabled: 1 + path: Assets/Scenes/SampleScene.unity + guid: d1c3109bdb54ad54c8a2b2838528e640 + m_configObjects: {} diff --git a/ProjectSettings/EditorSettings.asset b/ProjectSettings/EditorSettings.asset new file mode 100644 index 0000000..05db6c8 --- /dev/null +++ b/ProjectSettings/EditorSettings.asset @@ -0,0 +1,31 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!159 &1 +EditorSettings: + m_AssetPipelineMode: 1 + m_ObjectHideFlags: 0 + serializedVersion: 10 + m_ExternalVersionControlSupport: Visible Meta Files + m_SerializationMode: 2 + m_LineEndingsForNewScripts: 0 + m_DefaultBehaviorMode: 0 + m_PrefabRegularEnvironment: {fileID: 0} + m_PrefabUIEnvironment: {fileID: 0} + m_SpritePackerMode: 0 + m_SpritePackerPaddingPower: 1 + m_EtcTextureCompressorBehavior: 1 + m_EtcTextureFastCompressor: 1 + m_EtcTextureNormalCompressor: 2 + m_EtcTextureBestCompressor: 4 + m_ProjectGenerationIncludedExtensions: txt;xml;fnt;cd;asmdef;asmref;rsp + m_ProjectGenerationRootNamespace: + m_CollabEditorSettings: + inProgressEnabled: 1 + m_EnableTextureStreamingInEditMode: 1 + m_EnableTextureStreamingInPlayMode: 1 + m_AsyncShaderCompilation: 1 + m_EnterPlayModeOptionsEnabled: 0 + m_EnterPlayModeOptions: 3 + m_ShowLightmapResolutionOverlay: 1 + m_UseLegacyProbeSampleCount: 0 + m_SerializeInlineMappingsOnOneLine: 1 diff --git a/ProjectSettings/GraphicsSettings.asset b/ProjectSettings/GraphicsSettings.asset new file mode 100644 index 0000000..db10dd6 --- /dev/null +++ b/ProjectSettings/GraphicsSettings.asset @@ -0,0 +1,68 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!30 &1 +GraphicsSettings: + m_ObjectHideFlags: 0 + serializedVersion: 13 + m_Deferred: + m_Mode: 1 + m_Shader: {fileID: 69, guid: 0000000000000000f000000000000000, type: 0} + m_DeferredReflections: + m_Mode: 1 + m_Shader: {fileID: 74, guid: 0000000000000000f000000000000000, type: 0} + m_ScreenSpaceShadows: + m_Mode: 1 + m_Shader: {fileID: 64, guid: 0000000000000000f000000000000000, type: 0} + m_LegacyDeferred: + m_Mode: 1 + m_Shader: {fileID: 63, guid: 0000000000000000f000000000000000, type: 0} + m_DepthNormals: + m_Mode: 1 + m_Shader: {fileID: 62, guid: 0000000000000000f000000000000000, type: 0} + m_MotionVectors: + m_Mode: 1 + m_Shader: {fileID: 75, guid: 0000000000000000f000000000000000, type: 0} + m_LightHalo: + m_Mode: 1 + m_Shader: {fileID: 105, guid: 0000000000000000f000000000000000, type: 0} + m_LensFlare: + m_Mode: 1 + m_Shader: {fileID: 102, guid: 0000000000000000f000000000000000, type: 0} + m_AlwaysIncludedShaders: + - {fileID: 7, guid: 0000000000000000f000000000000000, type: 0} + - {fileID: 15104, guid: 0000000000000000f000000000000000, type: 0} + - {fileID: 15105, guid: 0000000000000000f000000000000000, type: 0} + - {fileID: 15106, guid: 0000000000000000f000000000000000, type: 0} + - {fileID: 10753, guid: 0000000000000000f000000000000000, type: 0} + - {fileID: 10770, guid: 0000000000000000f000000000000000, type: 0} + - {fileID: 10783, guid: 0000000000000000f000000000000000, type: 0} + - {fileID: 16000, guid: 0000000000000000f000000000000000, type: 0} + - {fileID: 16001, guid: 0000000000000000f000000000000000, type: 0} + - {fileID: 17000, guid: 0000000000000000f000000000000000, type: 0} + m_PreloadedShaders: [] + m_SpritesDefaultMaterial: {fileID: 10754, guid: 0000000000000000f000000000000000, + type: 0} + m_CustomRenderPipeline: {fileID: 11400000, guid: 19ba41d7c0026c3459d37c2fe90c55a0, + type: 2} + m_TransparencySortMode: 0 + m_TransparencySortAxis: {x: 0, y: 0, z: 1} + m_DefaultRenderingPath: 1 + m_DefaultMobileRenderingPath: 1 + m_TierSettings: [] + m_LightmapStripping: 0 + m_FogStripping: 0 + m_InstancingStripping: 0 + m_LightmapKeepPlain: 1 + m_LightmapKeepDirCombined: 1 + m_LightmapKeepDynamicPlain: 1 + m_LightmapKeepDynamicDirCombined: 1 + m_LightmapKeepShadowMask: 1 + m_LightmapKeepSubtractive: 1 + m_FogKeepLinear: 1 + m_FogKeepExp: 1 + m_FogKeepExp2: 1 + m_AlbedoSwatchInfos: [] + m_LightsUseLinearIntensity: 1 + m_LightsUseColorTemperature: 0 + m_LogWhenShaderIsCompiled: 0 + m_AllowEnlightenSupportForUpgradedProject: 1 diff --git a/ProjectSettings/InputManager.asset b/ProjectSettings/InputManager.asset new file mode 100644 index 0000000..b16147e --- /dev/null +++ b/ProjectSettings/InputManager.asset @@ -0,0 +1,487 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!13 &1 +InputManager: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Axes: + - serializedVersion: 3 + m_Name: Horizontal + descriptiveName: + descriptiveNegativeName: + negativeButton: left + positiveButton: right + altNegativeButton: a + altPositiveButton: d + gravity: 3 + dead: 0.001 + sensitivity: 3 + snap: 1 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Vertical + descriptiveName: + descriptiveNegativeName: + negativeButton: down + positiveButton: up + altNegativeButton: s + altPositiveButton: w + gravity: 3 + dead: 0.001 + sensitivity: 3 + snap: 1 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Fire1 + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: left ctrl + altNegativeButton: + altPositiveButton: mouse 0 + gravity: 1000 + dead: 0.001 + sensitivity: 1000 + snap: 0 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Fire2 + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: left alt + altNegativeButton: + altPositiveButton: mouse 1 + gravity: 1000 + dead: 0.001 + sensitivity: 1000 + snap: 0 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Fire3 + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: left shift + altNegativeButton: + altPositiveButton: mouse 2 + gravity: 1000 + dead: 0.001 + sensitivity: 1000 + snap: 0 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Jump + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: space + altNegativeButton: + altPositiveButton: + gravity: 1000 + dead: 0.001 + sensitivity: 1000 + snap: 0 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Mouse X + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: + altNegativeButton: + altPositiveButton: + gravity: 0 + dead: 0 + sensitivity: 0.1 + snap: 0 + invert: 0 + type: 1 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Mouse Y + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: + altNegativeButton: + altPositiveButton: + gravity: 0 + dead: 0 + sensitivity: 0.1 + snap: 0 + invert: 0 + type: 1 + axis: 1 + joyNum: 0 + - serializedVersion: 3 + m_Name: Mouse ScrollWheel + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: + altNegativeButton: + altPositiveButton: + gravity: 0 + dead: 0 + sensitivity: 0.1 + snap: 0 + invert: 0 + type: 1 + axis: 2 + joyNum: 0 + - serializedVersion: 3 + m_Name: Horizontal + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: + altNegativeButton: + altPositiveButton: + gravity: 0 + dead: 0.19 + sensitivity: 1 + snap: 0 + invert: 0 + type: 2 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Vertical + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: + altNegativeButton: + altPositiveButton: + gravity: 0 + dead: 0.19 + sensitivity: 1 + snap: 0 + invert: 1 + type: 2 + axis: 1 + joyNum: 0 + - serializedVersion: 3 + m_Name: Fire1 + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: joystick button 0 + altNegativeButton: + altPositiveButton: + gravity: 1000 + dead: 0.001 + sensitivity: 1000 + snap: 0 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Fire2 + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: joystick button 1 + altNegativeButton: + altPositiveButton: + gravity: 1000 + dead: 0.001 + sensitivity: 1000 + snap: 0 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Fire3 + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: joystick button 2 + altNegativeButton: + altPositiveButton: + gravity: 1000 + dead: 0.001 + sensitivity: 1000 + snap: 0 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Jump + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: joystick button 3 + altNegativeButton: + altPositiveButton: + gravity: 1000 + dead: 0.001 + sensitivity: 1000 + snap: 0 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Submit + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: return + altNegativeButton: + altPositiveButton: joystick button 0 + gravity: 1000 + dead: 0.001 + sensitivity: 1000 + snap: 0 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Submit + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: enter + altNegativeButton: + altPositiveButton: space + gravity: 1000 + dead: 0.001 + sensitivity: 1000 + snap: 0 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Cancel + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: escape + altNegativeButton: + altPositiveButton: joystick button 1 + gravity: 1000 + dead: 0.001 + sensitivity: 1000 + snap: 0 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Enable Debug Button 1 + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: left ctrl + altNegativeButton: + altPositiveButton: joystick button 8 + gravity: 0 + dead: 0 + sensitivity: 0 + snap: 0 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Enable Debug Button 2 + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: backspace + altNegativeButton: + altPositiveButton: joystick button 9 + gravity: 0 + dead: 0 + sensitivity: 0 + snap: 0 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Debug Reset + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: left alt + altNegativeButton: + altPositiveButton: joystick button 1 + gravity: 0 + dead: 0 + sensitivity: 0 + snap: 0 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Debug Next + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: page down + altNegativeButton: + altPositiveButton: joystick button 5 + gravity: 0 + dead: 0 + sensitivity: 0 + snap: 0 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Debug Previous + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: page up + altNegativeButton: + altPositiveButton: joystick button 4 + gravity: 0 + dead: 0 + sensitivity: 0 + snap: 0 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Debug Validate + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: return + altNegativeButton: + altPositiveButton: joystick button 0 + gravity: 0 + dead: 0 + sensitivity: 0 + snap: 0 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Debug Persistent + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: right shift + altNegativeButton: + altPositiveButton: joystick button 2 + gravity: 0 + dead: 0 + sensitivity: 0 + snap: 0 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Debug Multiplier + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: left shift + altNegativeButton: + altPositiveButton: joystick button 3 + gravity: 0 + dead: 0 + sensitivity: 0 + snap: 0 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Debug Horizontal + descriptiveName: + descriptiveNegativeName: + negativeButton: left + positiveButton: right + altNegativeButton: + altPositiveButton: + gravity: 1000 + dead: 0.001 + sensitivity: 1000 + snap: 0 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Debug Vertical + descriptiveName: + descriptiveNegativeName: + negativeButton: down + positiveButton: up + altNegativeButton: + altPositiveButton: + gravity: 1000 + dead: 0.001 + sensitivity: 1000 + snap: 0 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Debug Vertical + descriptiveName: + descriptiveNegativeName: + negativeButton: down + positiveButton: up + altNegativeButton: + altPositiveButton: + gravity: 1000 + dead: 0.001 + sensitivity: 1000 + snap: 0 + invert: 0 + type: 2 + axis: 6 + joyNum: 0 + - serializedVersion: 3 + m_Name: Debug Horizontal + descriptiveName: + descriptiveNegativeName: + negativeButton: left + positiveButton: right + altNegativeButton: + altPositiveButton: + gravity: 1000 + dead: 0.001 + sensitivity: 1000 + snap: 0 + invert: 0 + type: 2 + axis: 5 + joyNum: 0 diff --git a/ProjectSettings/NavMeshAreas.asset b/ProjectSettings/NavMeshAreas.asset new file mode 100644 index 0000000..3b0b7c3 --- /dev/null +++ b/ProjectSettings/NavMeshAreas.asset @@ -0,0 +1,91 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!126 &1 +NavMeshProjectSettings: + m_ObjectHideFlags: 0 + serializedVersion: 2 + areas: + - name: Walkable + cost: 1 + - name: Not Walkable + cost: 1 + - name: Jump + cost: 2 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + m_LastAgentTypeID: -887442657 + m_Settings: + - serializedVersion: 2 + agentTypeID: 0 + agentRadius: 0.5 + agentHeight: 2 + agentSlope: 45 + agentClimb: 0.75 + ledgeDropHeight: 0 + maxJumpAcrossDistance: 0 + minRegionArea: 2 + manualCellSize: 0 + cellSize: 0.16666667 + manualTileSize: 0 + tileSize: 256 + accuratePlacement: 0 + debug: + m_Flags: 0 + m_SettingNames: + - Humanoid diff --git a/ProjectSettings/PackageManagerSettings.asset b/ProjectSettings/PackageManagerSettings.asset new file mode 100644 index 0000000..568fee6 --- /dev/null +++ b/ProjectSettings/PackageManagerSettings.asset @@ -0,0 +1,43 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &1 +MonoBehaviour: + m_ObjectHideFlags: 61 + 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: 13964, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_EnablePreviewPackages: 1 + m_EnablePackageDependencies: 0 + m_AdvancedSettingsExpanded: 1 + m_ScopedRegistriesSettingsExpanded: 1 + oneTimeWarningShown: 1 + m_Registries: + - m_Id: main + m_Name: + m_Url: https://packages.unity.com + m_Scopes: [] + m_IsDefault: 1 + m_Capabilities: 7 + m_UserSelectedRegistryName: + m_UserAddingNewScopedRegistry: 0 + m_RegistryInfoDraft: + m_ErrorMessage: + m_Original: + m_Id: + m_Name: + m_Url: + m_Scopes: [] + m_IsDefault: 0 + m_Capabilities: 0 + m_Modified: 0 + m_Name: + m_Url: + m_Scopes: + - + m_SelectedScopeIndex: 0 diff --git a/ProjectSettings/Packages/com.unity.probuilder/Settings.json b/ProjectSettings/Packages/com.unity.probuilder/Settings.json new file mode 100644 index 0000000..11abdc5 --- /dev/null +++ b/ProjectSettings/Packages/com.unity.probuilder/Settings.json @@ -0,0 +1,138 @@ +{ + "m_Name": "Settings", + "m_Path": "ProjectSettings/Packages/com.unity.probuilder/Settings.json", + "m_Dictionary": { + "m_DictionaryValues": [ + { + "type": "UnityEngine.ProBuilder.LogLevel, Unity.ProBuilder, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null", + "key": "log.level", + "value": "{\"m_Value\":3}" + }, + { + "type": "UnityEngine.ProBuilder.LogOutput, Unity.ProBuilder, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null", + "key": "log.output", + "value": "{\"m_Value\":1}" + }, + { + "type": "System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089", + "key": "log.path", + "value": "{\"m_Value\":\"ProBuilderLog.txt\"}" + }, + { + "type": "UnityEngine.ProBuilder.SemVer, Unity.ProBuilder, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null", + "key": "about.identifier", + "value": "{\"m_Value\":{\"m_Major\":4,\"m_Minor\":4,\"m_Patch\":0,\"m_Build\":-1,\"m_Type\":\"\",\"m_Metadata\":\"\",\"m_Date\":\"\"}}" + }, + { + "type": "UnityEngine.ProBuilder.SemVer, Unity.ProBuilder, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null", + "key": "preferences.version", + "value": "{\"m_Value\":{\"m_Major\":4,\"m_Minor\":4,\"m_Patch\":0,\"m_Build\":-1,\"m_Type\":\"\",\"m_Metadata\":\"\",\"m_Date\":\"\"}}" + }, + { + "type": "System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089", + "key": "UnityEngine.ProBuilder.ProBuilderEditor-isUtilityWindow", + "value": "{\"m_Value\":false}" + }, + { + "type": "System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089", + "key": "editor.backFaceSelectEnabled", + "value": "{\"m_Value\":false}" + }, + { + "type": "System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089", + "key": "editor.toolbarIconGUI", + "value": "{\"m_Value\":false}" + }, + { + "type": "System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089", + "key": "editor.showSceneInfo", + "value": "{\"m_Value\":false}" + }, + { + "type": "System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089", + "key": "mesh.newShapesSnapToGrid", + "value": "{\"m_Value\":true}" + }, + { + "type": "System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089", + "key": "lightmapping.autoUnwrapLightmapUV", + "value": "{\"m_Value\":true}" + }, + { + "type": "System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089", + "key": "editor.autoRecalculateCollisions", + "value": "{\"m_Value\":false}" + }, + { + "type": "System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089", + "key": "mesh.meshColliderIsConvex", + "value": "{\"m_Value\":false}" + }, + { + "type": "System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089", + "key": "editor.showEditorNotifications", + "value": "{\"m_Value\":false}" + }, + { + "type": "System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089", + "key": "editor.closeWindowAfterShapeCreation", + "value": "{\"m_Value\":false}" + }, + { + "type": "UnityEngine.ProBuilder.SelectionModifierBehavior, Unity.ProBuilder, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null", + "key": "editor.rectSelectModifier", + "value": "{\"m_Value\":2}" + }, + { + "type": "UnityEngine.ProBuilder.RectSelectMode, Unity.ProBuilder, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null", + "key": "editor.dragSelectRectMode", + "value": "{\"m_Value\":0}" + }, + { + "type": "UnityEngine.ProBuilder.SelectMode, Unity.ProBuilder, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null", + "key": "editor.selectMode", + "value": "{\"m_Value\":1}" + }, + { + "type": "UnityEngine.ProBuilder.PivotLocation, Unity.ProBuilder, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null", + "key": "mesh.newShapePivotLocation", + "value": "{\"m_Value\":1}" + }, + { + "type": "UnityEngine.Rendering.ShadowCastingMode, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null", + "key": "mesh.shadowCastingMode", + "value": "{\"m_Value\":1}" + }, + { + "type": "UnityEngine.Material, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null", + "key": "mesh.userMaterial", + "value": "{\"m_Value\":{\"instanceID\":0}}" + }, + { + "type": "UnityEditor.StaticEditorFlags, UnityEditor.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null", + "key": "mesh.defaultStaticEditorFlags", + "value": "{\"m_Value\":0}" + }, + { + "type": "UnityEngine.ProBuilder.ColliderType, Unity.ProBuilder, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null", + "key": "mesh.newShapeColliderType", + "value": "{\"m_Value\":2}" + }, + { + "type": "UnityEngine.ProBuilder.UnwrapParameters, Unity.ProBuilder, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null", + "key": "lightmapping.defaultLightmapUnwrapParameters", + "value": "{\"m_Value\":{\"m_HardAngle\":88.0,\"m_PackMargin\":20.0,\"m_AngleError\":8.0,\"m_AreaError\":15.0}}" + }, + { + "type": "UnityEngine.ProBuilder.ExtrudeMethod, Unity.ProBuilder, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null", + "key": "editor.extrudeMethod", + "value": "{\"m_Value\":2}" + }, + { + "type": "System.Single, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089", + "key": "ExtrudeFaces.distance", + "value": "{\"m_Value\":0.5}" + } + ] + } +} \ No newline at end of file diff --git a/ProjectSettings/Physics2DSettings.asset b/ProjectSettings/Physics2DSettings.asset new file mode 100644 index 0000000..47880b1 --- /dev/null +++ b/ProjectSettings/Physics2DSettings.asset @@ -0,0 +1,56 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!19 &1 +Physics2DSettings: + m_ObjectHideFlags: 0 + serializedVersion: 4 + m_Gravity: {x: 0, y: -9.81} + m_DefaultMaterial: {fileID: 0} + m_VelocityIterations: 8 + m_PositionIterations: 3 + m_VelocityThreshold: 1 + m_MaxLinearCorrection: 0.2 + m_MaxAngularCorrection: 8 + m_MaxTranslationSpeed: 100 + m_MaxRotationSpeed: 360 + m_BaumgarteScale: 0.2 + m_BaumgarteTimeOfImpactScale: 0.75 + m_TimeToSleep: 0.5 + m_LinearSleepTolerance: 0.01 + m_AngularSleepTolerance: 2 + m_DefaultContactOffset: 0.01 + m_JobOptions: + serializedVersion: 2 + useMultithreading: 0 + useConsistencySorting: 0 + m_InterpolationPosesPerJob: 100 + m_NewContactsPerJob: 30 + m_CollideContactsPerJob: 100 + m_ClearFlagsPerJob: 200 + m_ClearBodyForcesPerJob: 200 + m_SyncDiscreteFixturesPerJob: 50 + m_SyncContinuousFixturesPerJob: 50 + m_FindNearestContactsPerJob: 100 + m_UpdateTriggerContactsPerJob: 100 + m_IslandSolverCostThreshold: 100 + m_IslandSolverBodyCostScale: 1 + m_IslandSolverContactCostScale: 10 + m_IslandSolverJointCostScale: 10 + m_IslandSolverBodiesPerJob: 50 + m_IslandSolverContactsPerJob: 50 + m_AutoSimulation: 1 + m_QueriesHitTriggers: 1 + m_QueriesStartInColliders: 1 + m_CallbacksOnDisable: 1 + m_ReuseCollisionCallbacks: 1 + m_AutoSyncTransforms: 0 + m_AlwaysShowColliders: 0 + m_ShowColliderSleep: 1 + m_ShowColliderContacts: 0 + m_ShowColliderAABB: 0 + m_ContactArrowScale: 0.2 + m_ColliderAwakeColor: {r: 0.5686275, g: 0.95686275, b: 0.54509807, a: 0.7529412} + m_ColliderAsleepColor: {r: 0.5686275, g: 0.95686275, b: 0.54509807, a: 0.36078432} + m_ColliderContactColor: {r: 1, g: 0, b: 1, a: 0.6862745} + m_ColliderAABBColor: {r: 1, g: 1, b: 0, a: 0.2509804} + m_LayerCollisionMatrix: ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff diff --git a/ProjectSettings/PresetManager.asset b/ProjectSettings/PresetManager.asset new file mode 100644 index 0000000..10a1b07 --- /dev/null +++ b/ProjectSettings/PresetManager.asset @@ -0,0 +1,27 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1386491679 &1 +PresetManager: + m_ObjectHideFlags: 0 + m_DefaultList: + - type: + m_NativeTypeID: 108 + m_ManagedTypePPtr: {fileID: 0} + m_ManagedTypeFallback: + defaultPresets: + - m_Preset: {fileID: 2655988077585873504, guid: 463065d4f17d1d94d848aa127b94dd43, + type: 2} + - type: + m_NativeTypeID: 1020 + m_ManagedTypePPtr: {fileID: 0} + m_ManagedTypeFallback: + defaultPresets: + - m_Preset: {fileID: 2655988077585873504, guid: e7689051185d12f4298e1ebb2693a29f, + type: 2} + - type: + m_NativeTypeID: 1006 + m_ManagedTypePPtr: {fileID: 0} + m_ManagedTypeFallback: + defaultPresets: + - m_Preset: {fileID: 2655988077585873504, guid: e8537455c6c08bd4e8bf0be3707da685, + type: 2} diff --git a/ProjectSettings/ProjectSettings.asset b/ProjectSettings/ProjectSettings.asset new file mode 100644 index 0000000..c30ea45 --- /dev/null +++ b/ProjectSettings/ProjectSettings.asset @@ -0,0 +1,695 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!129 &1 +PlayerSettings: + m_ObjectHideFlags: 0 + serializedVersion: 22 + productGUID: c2fcf0a11944587408af16005e50fbcc + AndroidProfiler: 0 + AndroidFilterTouchesWhenObscured: 0 + AndroidEnableSustainedPerformanceMode: 0 + defaultScreenOrientation: 4 + targetDevice: 2 + useOnDemandResources: 0 + accelerometerFrequency: 60 + companyName: DefaultCompany + productName: Splatton-Ink + defaultCursor: {fileID: 0} + cursorHotspot: {x: 0, y: 0} + m_SplashScreenBackgroundColor: {r: 0.13725491, g: 0.12156863, b: 0.1254902, a: 1} + m_ShowUnitySplashScreen: 1 + m_ShowUnitySplashLogo: 1 + m_SplashScreenOverlayOpacity: 1 + m_SplashScreenAnimation: 1 + m_SplashScreenLogoStyle: 1 + m_SplashScreenDrawMode: 0 + m_SplashScreenBackgroundAnimationZoom: 1 + m_SplashScreenLogoAnimationZoom: 1 + m_SplashScreenBackgroundLandscapeAspect: 1 + m_SplashScreenBackgroundPortraitAspect: 1 + m_SplashScreenBackgroundLandscapeUvs: + serializedVersion: 2 + x: 0 + y: 0 + width: 1 + height: 1 + m_SplashScreenBackgroundPortraitUvs: + serializedVersion: 2 + x: 0 + y: 0 + width: 1 + height: 1 + m_SplashScreenLogos: [] + m_VirtualRealitySplashScreen: {fileID: 0} + m_HolographicTrackingLossScreen: {fileID: 0} + defaultScreenWidth: 1920 + defaultScreenHeight: 1080 + defaultScreenWidthWeb: 960 + defaultScreenHeightWeb: 600 + m_StereoRenderingPath: 0 + m_ActiveColorSpace: 1 + m_MTRendering: 1 + mipStripping: 0 + numberOfMipsStripped: 0 + m_StackTraceTypes: 010000000100000001000000010000000100000001000000 + iosShowActivityIndicatorOnLoading: -1 + androidShowActivityIndicatorOnLoading: -1 + iosUseCustomAppBackgroundBehavior: 0 + iosAllowHTTPDownload: 1 + allowedAutorotateToPortrait: 1 + allowedAutorotateToPortraitUpsideDown: 1 + allowedAutorotateToLandscapeRight: 1 + allowedAutorotateToLandscapeLeft: 1 + useOSAutorotation: 1 + use32BitDisplayBuffer: 1 + preserveFramebufferAlpha: 0 + disableDepthAndStencilBuffers: 0 + androidStartInFullscreen: 1 + androidRenderOutsideSafeArea: 0 + androidUseSwappy: 1 + androidBlitType: 1 + defaultIsNativeResolution: 1 + macRetinaSupport: 1 + runInBackground: 1 + captureSingleScreen: 0 + muteOtherAudioSources: 0 + Prepare IOS For Recording: 0 + Force IOS Speakers When Recording: 0 + deferSystemGesturesMode: 0 + hideHomeButton: 0 + submitAnalytics: 1 + usePlayerLog: 1 + bakeCollisionMeshes: 0 + forceSingleInstance: 0 + useFlipModelSwapchain: 1 + resizableWindow: 0 + useMacAppStoreValidation: 0 + macAppStoreCategory: public.app-category.games + gpuSkinning: 1 + xboxPIXTextureCapture: 0 + xboxEnableAvatar: 0 + xboxEnableKinect: 0 + xboxEnableKinectAutoTracking: 0 + xboxEnableFitness: 0 + visibleInBackground: 1 + allowFullscreenSwitch: 1 + fullscreenMode: 1 + xboxSpeechDB: 0 + xboxEnableHeadOrientation: 0 + xboxEnableGuest: 0 + xboxEnablePIXSampling: 0 + metalFramebufferOnly: 0 + xboxOneResolution: 0 + xboxOneSResolution: 0 + xboxOneXResolution: 3 + xboxOneMonoLoggingLevel: 0 + xboxOneLoggingLevel: 1 + xboxOneDisableEsram: 0 + xboxOneEnableTypeOptimization: 0 + xboxOnePresentImmediateThreshold: 0 + switchQueueCommandMemory: 0 + switchQueueControlMemory: 0 + switchQueueComputeMemory: 262144 + switchNVNShaderPoolsGranularity: 33554432 + switchNVNDefaultPoolsGranularity: 16777216 + switchNVNOtherPoolsGranularity: 16777216 + switchNVNMaxPublicTextureIDCount: 0 + switchNVNMaxPublicSamplerIDCount: 0 + stadiaPresentMode: 0 + stadiaTargetFramerate: 0 + vulkanNumSwapchainBuffers: 3 + vulkanEnableSetSRGBWrite: 0 + vulkanEnablePreTransform: 0 + vulkanEnableLateAcquireNextImage: 0 + m_SupportedAspectRatios: + 4:3: 1 + 5:4: 1 + 16:10: 1 + 16:9: 1 + Others: 1 + bundleVersion: 0.1 + preloadedAssets: [] + metroInputSource: 0 + wsaTransparentSwapchain: 0 + m_HolographicPauseOnTrackingLoss: 1 + xboxOneDisableKinectGpuReservation: 1 + xboxOneEnable7thCore: 1 + vrSettings: + enable360StereoCapture: 0 + isWsaHolographicRemotingEnabled: 0 + enableFrameTimingStats: 0 + useHDRDisplay: 0 + D3DHDRBitDepth: 0 + m_ColorGamuts: 0000000003000000 + targetPixelDensity: 30 + resolutionScalingMode: 0 + androidSupportedAspectRatio: 1 + androidMaxAspectRatio: 2.1 + applicationIdentifier: {} + buildNumber: + Standalone: 0 + iPhone: 0 + tvOS: 0 + overrideDefaultApplicationIdentifier: 0 + AndroidBundleVersionCode: 1 + AndroidMinSdkVersion: 19 + AndroidTargetSdkVersion: 0 + AndroidPreferredInstallLocation: 1 + aotOptions: + stripEngineCode: 1 + iPhoneStrippingLevel: 0 + iPhoneScriptCallOptimization: 0 + ForceInternetPermission: 0 + ForceSDCardPermission: 0 + CreateWallpaper: 0 + APKExpansionFiles: 0 + keepLoadedShadersAlive: 0 + StripUnusedMeshComponents: 0 + VertexChannelCompressionMask: 4054 + iPhoneSdkVersion: 988 + iOSTargetOSVersionString: 11.0 + tvOSSdkVersion: 0 + tvOSRequireExtendedGameController: 0 + tvOSTargetOSVersionString: 11.0 + uIPrerenderedIcon: 0 + uIRequiresPersistentWiFi: 0 + uIRequiresFullScreen: 1 + uIStatusBarHidden: 1 + uIExitOnSuspend: 0 + uIStatusBarStyle: 0 + appleTVSplashScreen: {fileID: 0} + appleTVSplashScreen2x: {fileID: 0} + tvOSSmallIconLayers: [] + tvOSSmallIconLayers2x: [] + tvOSLargeIconLayers: [] + tvOSLargeIconLayers2x: [] + tvOSTopShelfImageLayers: [] + tvOSTopShelfImageLayers2x: [] + tvOSTopShelfImageWideLayers: [] + tvOSTopShelfImageWideLayers2x: [] + iOSLaunchScreenType: 0 + iOSLaunchScreenPortrait: {fileID: 0} + iOSLaunchScreenLandscape: {fileID: 0} + iOSLaunchScreenBackgroundColor: + serializedVersion: 2 + rgba: 0 + iOSLaunchScreenFillPct: 100 + iOSLaunchScreenSize: 100 + iOSLaunchScreenCustomXibPath: + iOSLaunchScreeniPadType: 0 + iOSLaunchScreeniPadImage: {fileID: 0} + iOSLaunchScreeniPadBackgroundColor: + serializedVersion: 2 + rgba: 0 + iOSLaunchScreeniPadFillPct: 100 + iOSLaunchScreeniPadSize: 100 + iOSLaunchScreeniPadCustomXibPath: + iOSLaunchScreenCustomStoryboardPath: + iOSLaunchScreeniPadCustomStoryboardPath: + iOSDeviceRequirements: [] + iOSURLSchemes: [] + iOSBackgroundModes: 0 + iOSMetalForceHardShadows: 0 + metalEditorSupport: 1 + metalAPIValidation: 1 + iOSRenderExtraFrameOnPause: 0 + iosCopyPluginsCodeInsteadOfSymlink: 0 + appleDeveloperTeamID: + iOSManualSigningProvisioningProfileID: + tvOSManualSigningProvisioningProfileID: + iOSManualSigningProvisioningProfileType: 0 + tvOSManualSigningProvisioningProfileType: 0 + appleEnableAutomaticSigning: 0 + iOSRequireARKit: 0 + iOSAutomaticallyDetectAndAddCapabilities: 1 + appleEnableProMotion: 0 + shaderPrecisionModel: 0 + clonedFromGUID: 9870af204204ab84596f8a656f2f2ce6 + templatePackageId: com.unity.template.universal@10.2.2 + templateDefaultScene: Assets/Scenes/SampleScene.unity + useCustomMainManifest: 0 + useCustomLauncherManifest: 0 + useCustomMainGradleTemplate: 0 + useCustomLauncherGradleManifest: 0 + useCustomBaseGradleTemplate: 0 + useCustomGradlePropertiesTemplate: 0 + useCustomProguardFile: 0 + AndroidTargetArchitectures: 1 + AndroidSplashScreenScale: 0 + androidSplashScreen: {fileID: 0} + AndroidKeystoreName: + AndroidKeyaliasName: + AndroidBuildApkPerCpuArchitecture: 0 + AndroidTVCompatibility: 0 + AndroidIsGame: 1 + AndroidEnableTango: 0 + androidEnableBanner: 1 + androidUseLowAccuracyLocation: 0 + androidUseCustomKeystore: 0 + m_AndroidBanners: + - width: 320 + height: 180 + banner: {fileID: 0} + androidGamepadSupportLevel: 0 + AndroidMinifyWithR8: 0 + AndroidMinifyRelease: 0 + AndroidMinifyDebug: 0 + AndroidValidateAppBundleSize: 1 + AndroidAppBundleSizeToValidate: 100 + m_BuildTargetIcons: [] + m_BuildTargetPlatformIcons: [] + m_BuildTargetBatching: + - m_BuildTarget: Standalone + m_StaticBatching: 1 + m_DynamicBatching: 0 + - m_BuildTarget: tvOS + m_StaticBatching: 1 + m_DynamicBatching: 0 + - m_BuildTarget: iPhone + m_StaticBatching: 1 + m_DynamicBatching: 0 + - m_BuildTarget: Android + m_StaticBatching: 1 + m_DynamicBatching: 0 + - m_BuildTarget: WebGL + m_StaticBatching: 0 + m_DynamicBatching: 0 + m_BuildTargetGraphicsJobs: + - m_BuildTarget: MacStandaloneSupport + m_GraphicsJobs: 0 + - m_BuildTarget: Switch + m_GraphicsJobs: 1 + - m_BuildTarget: MetroSupport + m_GraphicsJobs: 1 + - m_BuildTarget: AppleTVSupport + m_GraphicsJobs: 0 + - m_BuildTarget: BJMSupport + m_GraphicsJobs: 1 + - m_BuildTarget: LinuxStandaloneSupport + m_GraphicsJobs: 1 + - m_BuildTarget: PS4Player + m_GraphicsJobs: 1 + - m_BuildTarget: iOSSupport + m_GraphicsJobs: 0 + - m_BuildTarget: WindowsStandaloneSupport + m_GraphicsJobs: 1 + - m_BuildTarget: XboxOnePlayer + m_GraphicsJobs: 1 + - m_BuildTarget: LuminSupport + m_GraphicsJobs: 0 + - m_BuildTarget: AndroidPlayer + m_GraphicsJobs: 0 + - m_BuildTarget: WebGLSupport + m_GraphicsJobs: 0 + m_BuildTargetGraphicsJobMode: + - m_BuildTarget: PS4Player + m_GraphicsJobMode: 0 + - m_BuildTarget: XboxOnePlayer + m_GraphicsJobMode: 0 + m_BuildTargetGraphicsAPIs: + - m_BuildTarget: iOSSupport + m_APIs: 10000000 + m_Automatic: 1 + - m_BuildTarget: AppleTVSupport + m_APIs: 10000000 + m_Automatic: 1 + - m_BuildTarget: AndroidPlayer + m_APIs: 150000000b000000 + m_Automatic: 0 + - m_BuildTarget: WebGLSupport + m_APIs: 0b000000 + m_Automatic: 0 + m_BuildTargetVRSettings: [] + openGLRequireES31: 0 + openGLRequireES31AEP: 0 + openGLRequireES32: 0 + m_TemplateCustomTags: {} + mobileMTRendering: + Android: 1 + iPhone: 1 + tvOS: 1 + m_BuildTargetGroupLightmapEncodingQuality: + - m_BuildTarget: Standalone + m_EncodingQuality: 1 + m_BuildTargetGroupLightmapSettings: [] + m_BuildTargetNormalMapEncoding: [] + playModeTestRunnerEnabled: 0 + runPlayModeTestAsEditModeTest: 0 + actionOnDotNetUnhandledException: 1 + enableInternalProfiler: 0 + logObjCUncaughtExceptions: 1 + enableCrashReportAPI: 0 + cameraUsageDescription: + locationUsageDescription: + microphoneUsageDescription: + switchNMETAOverride: + switchNetLibKey: + switchSocketMemoryPoolSize: 6144 + switchSocketAllocatorPoolSize: 128 + switchSocketConcurrencyLimit: 14 + switchScreenResolutionBehavior: 2 + switchUseCPUProfiler: 0 + switchUseGOLDLinker: 0 + switchApplicationID: 0x01004b9000490000 + switchNSODependencies: + switchTitleNames_0: + switchTitleNames_1: + switchTitleNames_2: + switchTitleNames_3: + switchTitleNames_4: + switchTitleNames_5: + switchTitleNames_6: + switchTitleNames_7: + switchTitleNames_8: + switchTitleNames_9: + switchTitleNames_10: + switchTitleNames_11: + switchTitleNames_12: + switchTitleNames_13: + switchTitleNames_14: + switchPublisherNames_0: + switchPublisherNames_1: + switchPublisherNames_2: + switchPublisherNames_3: + switchPublisherNames_4: + switchPublisherNames_5: + switchPublisherNames_6: + switchPublisherNames_7: + switchPublisherNames_8: + switchPublisherNames_9: + switchPublisherNames_10: + switchPublisherNames_11: + switchPublisherNames_12: + switchPublisherNames_13: + switchPublisherNames_14: + switchIcons_0: {fileID: 0} + switchIcons_1: {fileID: 0} + switchIcons_2: {fileID: 0} + switchIcons_3: {fileID: 0} + switchIcons_4: {fileID: 0} + switchIcons_5: {fileID: 0} + switchIcons_6: {fileID: 0} + switchIcons_7: {fileID: 0} + switchIcons_8: {fileID: 0} + switchIcons_9: {fileID: 0} + switchIcons_10: {fileID: 0} + switchIcons_11: {fileID: 0} + switchIcons_12: {fileID: 0} + switchIcons_13: {fileID: 0} + switchIcons_14: {fileID: 0} + switchSmallIcons_0: {fileID: 0} + switchSmallIcons_1: {fileID: 0} + switchSmallIcons_2: {fileID: 0} + switchSmallIcons_3: {fileID: 0} + switchSmallIcons_4: {fileID: 0} + switchSmallIcons_5: {fileID: 0} + switchSmallIcons_6: {fileID: 0} + switchSmallIcons_7: {fileID: 0} + switchSmallIcons_8: {fileID: 0} + switchSmallIcons_9: {fileID: 0} + switchSmallIcons_10: {fileID: 0} + switchSmallIcons_11: {fileID: 0} + switchSmallIcons_12: {fileID: 0} + switchSmallIcons_13: {fileID: 0} + switchSmallIcons_14: {fileID: 0} + switchManualHTML: + switchAccessibleURLs: + switchLegalInformation: + switchMainThreadStackSize: 1048576 + switchPresenceGroupId: + switchLogoHandling: 0 + switchReleaseVersion: 0 + switchDisplayVersion: 1.0.0 + switchStartupUserAccount: 0 + switchTouchScreenUsage: 0 + switchSupportedLanguagesMask: 0 + switchLogoType: 0 + switchApplicationErrorCodeCategory: + switchUserAccountSaveDataSize: 0 + switchUserAccountSaveDataJournalSize: 0 + switchApplicationAttribute: 0 + switchCardSpecSize: -1 + switchCardSpecClock: -1 + switchRatingsMask: 0 + switchRatingsInt_0: 0 + switchRatingsInt_1: 0 + switchRatingsInt_2: 0 + switchRatingsInt_3: 0 + switchRatingsInt_4: 0 + switchRatingsInt_5: 0 + switchRatingsInt_6: 0 + switchRatingsInt_7: 0 + switchRatingsInt_8: 0 + switchRatingsInt_9: 0 + switchRatingsInt_10: 0 + switchRatingsInt_11: 0 + switchRatingsInt_12: 0 + switchLocalCommunicationIds_0: + switchLocalCommunicationIds_1: + switchLocalCommunicationIds_2: + switchLocalCommunicationIds_3: + switchLocalCommunicationIds_4: + switchLocalCommunicationIds_5: + switchLocalCommunicationIds_6: + switchLocalCommunicationIds_7: + switchParentalControl: 0 + switchAllowsScreenshot: 1 + switchAllowsVideoCapturing: 1 + switchAllowsRuntimeAddOnContentInstall: 0 + switchDataLossConfirmation: 0 + switchUserAccountLockEnabled: 0 + switchSystemResourceMemory: 16777216 + switchSupportedNpadStyles: 22 + switchNativeFsCacheSize: 32 + switchIsHoldTypeHorizontal: 0 + switchSupportedNpadCount: 8 + switchSocketConfigEnabled: 0 + switchTcpInitialSendBufferSize: 32 + switchTcpInitialReceiveBufferSize: 64 + switchTcpAutoSendBufferSizeMax: 256 + switchTcpAutoReceiveBufferSizeMax: 256 + switchUdpSendBufferSize: 9 + switchUdpReceiveBufferSize: 42 + switchSocketBufferEfficiency: 4 + switchSocketInitializeEnabled: 1 + switchNetworkInterfaceManagerInitializeEnabled: 1 + switchPlayerConnectionEnabled: 1 + switchUseNewStyleFilepaths: 0 + ps4NPAgeRating: 12 + ps4NPTitleSecret: + ps4NPTrophyPackPath: + ps4ParentalLevel: 11 + ps4ContentID: ED1633-NPXX51362_00-0000000000000000 + ps4Category: 0 + ps4MasterVersion: 01.00 + ps4AppVersion: 01.00 + ps4AppType: 0 + ps4ParamSfxPath: + ps4VideoOutPixelFormat: 0 + ps4VideoOutInitialWidth: 1920 + ps4VideoOutBaseModeInitialWidth: 1920 + ps4VideoOutReprojectionRate: 60 + ps4PronunciationXMLPath: + ps4PronunciationSIGPath: + ps4BackgroundImagePath: + ps4StartupImagePath: + ps4StartupImagesFolder: + ps4IconImagesFolder: + ps4SaveDataImagePath: + ps4SdkOverride: + ps4BGMPath: + ps4ShareFilePath: + ps4ShareOverlayImagePath: + ps4PrivacyGuardImagePath: + ps4ExtraSceSysFile: + ps4NPtitleDatPath: + ps4RemotePlayKeyAssignment: -1 + ps4RemotePlayKeyMappingDir: + ps4PlayTogetherPlayerCount: 0 + ps4EnterButtonAssignment: 1 + ps4ApplicationParam1: 0 + ps4ApplicationParam2: 0 + ps4ApplicationParam3: 0 + ps4ApplicationParam4: 0 + ps4DownloadDataSize: 0 + ps4GarlicHeapSize: 2048 + ps4ProGarlicHeapSize: 2560 + playerPrefsMaxSize: 32768 + ps4Passcode: frAQBc8Wsa1xVPfvJcrgRYwTiizs2trQ + ps4pnSessions: 1 + ps4pnPresence: 1 + ps4pnFriends: 1 + ps4pnGameCustomData: 1 + playerPrefsSupport: 0 + enableApplicationExit: 0 + resetTempFolder: 1 + restrictedAudioUsageRights: 0 + ps4UseResolutionFallback: 0 + ps4ReprojectionSupport: 0 + ps4UseAudio3dBackend: 0 + ps4UseLowGarlicFragmentationMode: 1 + ps4SocialScreenEnabled: 0 + ps4ScriptOptimizationLevel: 0 + ps4Audio3dVirtualSpeakerCount: 14 + ps4attribCpuUsage: 0 + ps4PatchPkgPath: + ps4PatchLatestPkgPath: + ps4PatchChangeinfoPath: + ps4PatchDayOne: 0 + ps4attribUserManagement: 0 + ps4attribMoveSupport: 0 + ps4attrib3DSupport: 0 + ps4attribShareSupport: 0 + ps4attribExclusiveVR: 0 + ps4disableAutoHideSplash: 0 + ps4videoRecordingFeaturesUsed: 0 + ps4contentSearchFeaturesUsed: 0 + ps4CompatibilityPS5: 0 + ps4GPU800MHz: 1 + ps4attribEyeToEyeDistanceSettingVR: 0 + ps4IncludedModules: + - libc.prx + - libSceAudioLatencyEstimation.prx + - libSceFace.prx + - libSceFaceTracker.prx + - libSceFios2.prx + - libSceHand.prx + - libSceHandTracker.prx + - libSceHeadTracker.prx + - libSceJobManager.prx + - libSceNpToolkit2.prx + - libSceS3DConversion.prx + ps4attribVROutputEnabled: 0 + monoEnv: + splashScreenBackgroundSourceLandscape: {fileID: 0} + splashScreenBackgroundSourcePortrait: {fileID: 0} + blurSplashScreenBackground: 1 + spritePackerPolicy: + webGLMemorySize: 16 + webGLExceptionSupport: 1 + webGLNameFilesAsHashes: 0 + webGLDataCaching: 1 + webGLDebugSymbols: 0 + webGLEmscriptenArgs: + webGLModulesDirectory: + webGLTemplate: APPLICATION:Default + webGLAnalyzeBuildSize: 0 + webGLUseEmbeddedResources: 0 + webGLCompressionFormat: 1 + webGLWasmArithmeticExceptions: 0 + webGLLinkerTarget: 1 + webGLThreadsSupport: 0 + webGLDecompressionFallback: 0 + scriptingDefineSymbols: + 1: UNITY_POST_PROCESSING_STACK_V2 + 4: UNITY_POST_PROCESSING_STACK_V2 + 7: UNITY_POST_PROCESSING_STACK_V2 + 13: UNITY_POST_PROCESSING_STACK_V2 + 19: UNITY_POST_PROCESSING_STACK_V2 + 21: UNITY_POST_PROCESSING_STACK_V2 + 25: UNITY_POST_PROCESSING_STACK_V2 + 27: UNITY_POST_PROCESSING_STACK_V2 + 28: UNITY_POST_PROCESSING_STACK_V2 + 29: UNITY_POST_PROCESSING_STACK_V2 + 30: UNITY_POST_PROCESSING_STACK_V2 + 31: UNITY_POST_PROCESSING_STACK_V2 + 32: UNITY_POST_PROCESSING_STACK_V2 + 33: UNITY_POST_PROCESSING_STACK_V2 + additionalCompilerArguments: {} + platformArchitecture: {} + scriptingBackend: + Standalone: 0 + il2cppCompilerConfiguration: {} + managedStrippingLevel: {} + incrementalIl2cppBuild: {} + suppressCommonWarnings: 1 + allowUnsafeCode: 0 + useDeterministicCompilation: 1 + useReferenceAssemblies: 1 + enableRoslynAnalyzers: 1 + additionalIl2CppArgs: + scriptingRuntimeVersion: 1 + gcIncremental: 1 + assemblyVersionValidation: 1 + gcWBarrierValidation: 0 + apiCompatibilityLevelPerPlatform: + Standalone: 3 + m_RenderingPath: 1 + m_MobileRenderingPath: 1 + metroPackageName: Template_Lightweight + metroPackageVersion: + metroCertificatePath: + metroCertificatePassword: + metroCertificateSubject: + metroCertificateIssuer: + metroCertificateNotAfter: 0000000000000000 + metroApplicationDescription: Template_Lightweight + wsaImages: {} + metroTileShortName: + metroTileShowName: 0 + metroMediumTileShowName: 0 + metroLargeTileShowName: 0 + metroWideTileShowName: 0 + metroSupportStreamingInstall: 0 + metroLastRequiredScene: 0 + metroDefaultTileSize: 1 + metroTileForegroundText: 2 + metroTileBackgroundColor: {r: 0.13333334, g: 0.17254902, b: 0.21568628, a: 0} + metroSplashScreenBackgroundColor: {r: 0.12941177, g: 0.17254902, b: 0.21568628, a: 1} + metroSplashScreenUseBackgroundColor: 0 + platformCapabilities: {} + metroTargetDeviceFamilies: {} + metroFTAName: + metroFTAFileTypes: [] + metroProtocolName: + XboxOneProductId: + XboxOneUpdateKey: + XboxOneSandboxId: + XboxOneContentId: + XboxOneTitleId: + XboxOneSCId: + XboxOneGameOsOverridePath: + XboxOnePackagingOverridePath: + XboxOneAppManifestOverridePath: + XboxOneVersion: 1.0.0.0 + XboxOnePackageEncryption: 0 + XboxOnePackageUpdateGranularity: 2 + XboxOneDescription: + XboxOneLanguage: + - enus + XboxOneCapability: [] + XboxOneGameRating: {} + XboxOneIsContentPackage: 0 + XboxOneEnhancedXboxCompatibilityMode: 0 + XboxOneEnableGPUVariability: 1 + XboxOneSockets: {} + XboxOneSplashScreen: {fileID: 0} + XboxOneAllowedProductIds: [] + XboxOnePersistentLocalStorageSize: 0 + XboxOneXTitleMemory: 8 + XboxOneOverrideIdentityName: + XboxOneOverrideIdentityPublisher: + vrEditorSettings: {} + cloudServicesEnabled: + UNet: 1 + luminIcon: + m_Name: + m_ModelFolderPath: + m_PortalFolderPath: + luminCert: + m_CertPath: + m_SignPackage: 1 + luminIsChannelApp: 0 + luminVersion: + m_VersionCode: 1 + m_VersionName: + apiCompatibilityLevel: 6 + activeInputHandler: 0 + cloudProjectId: + framebufferDepthMemorylessMode: 0 + qualitySettingsNames: [] + projectName: + organizationId: + cloudEnabled: 0 + legacyClampBlendShapeWeights: 0 + virtualTexturingSupportEnabled: 0 diff --git a/ProjectSettings/ProjectVersion.txt b/ProjectSettings/ProjectVersion.txt new file mode 100644 index 0000000..78a3249 --- /dev/null +++ b/ProjectSettings/ProjectVersion.txt @@ -0,0 +1,2 @@ +m_EditorVersion: 2020.2.3f1 +m_EditorVersionWithRevision: 2020.2.3f1 (8ff31bc5bf5b) diff --git a/ProjectSettings/QualitySettings.asset b/ProjectSettings/QualitySettings.asset new file mode 100644 index 0000000..dad5d50 --- /dev/null +++ b/ProjectSettings/QualitySettings.asset @@ -0,0 +1,128 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!47 &1 +QualitySettings: + m_ObjectHideFlags: 0 + serializedVersion: 5 + m_CurrentQuality: 2 + m_QualitySettings: + - serializedVersion: 2 + name: Low + pixelLightCount: 0 + shadows: 0 + shadowResolution: 0 + shadowProjection: 1 + shadowCascades: 1 + shadowDistance: 20 + shadowNearPlaneOffset: 3 + shadowCascade2Split: 0.33333334 + shadowCascade4Split: {x: 0.06666667, y: 0.2, z: 0.46666667} + shadowmaskMode: 0 + skinWeights: 2 + textureQuality: 0 + anisotropicTextures: 0 + antiAliasing: 0 + softParticles: 0 + softVegetation: 0 + realtimeReflectionProbes: 0 + billboardsFaceCameraPosition: 0 + vSyncCount: 0 + lodBias: 0.4 + maximumLODLevel: 0 + streamingMipmapsActive: 0 + streamingMipmapsAddAllCameras: 1 + streamingMipmapsMemoryBudget: 512 + streamingMipmapsRenderersPerFrame: 512 + streamingMipmapsMaxLevelReduction: 2 + streamingMipmapsMaxFileIORequests: 1024 + particleRaycastBudget: 16 + asyncUploadTimeSlice: 2 + asyncUploadBufferSize: 16 + asyncUploadPersistentBuffer: 1 + resolutionScalingFixedDPIFactor: 1 + customRenderPipeline: {fileID: 11400000, guid: a31e9f9f9c9d4b9429ed0d1234e22103, type: 2} + excludedTargetPlatforms: [] + - serializedVersion: 2 + name: Medium + pixelLightCount: 1 + shadows: 1 + shadowResolution: 0 + shadowProjection: 1 + shadowCascades: 1 + shadowDistance: 20 + shadowNearPlaneOffset: 3 + shadowCascade2Split: 0.33333334 + shadowCascade4Split: {x: 0.06666667, y: 0.2, z: 0.46666667} + shadowmaskMode: 0 + skinWeights: 2 + textureQuality: 0 + anisotropicTextures: 1 + antiAliasing: 0 + softParticles: 0 + softVegetation: 0 + realtimeReflectionProbes: 0 + billboardsFaceCameraPosition: 0 + vSyncCount: 1 + lodBias: 0.7 + maximumLODLevel: 0 + streamingMipmapsActive: 0 + streamingMipmapsAddAllCameras: 1 + streamingMipmapsMemoryBudget: 512 + streamingMipmapsRenderersPerFrame: 512 + streamingMipmapsMaxLevelReduction: 2 + streamingMipmapsMaxFileIORequests: 1024 + particleRaycastBudget: 64 + asyncUploadTimeSlice: 2 + asyncUploadBufferSize: 16 + asyncUploadPersistentBuffer: 1 + resolutionScalingFixedDPIFactor: 1 + customRenderPipeline: {fileID: 11400000, guid: d847b876476d3d6468f5dfcd34266f96, type: 2} + excludedTargetPlatforms: [] + - serializedVersion: 2 + name: High + pixelLightCount: 2 + shadows: 2 + shadowResolution: 1 + shadowProjection: 1 + shadowCascades: 2 + shadowDistance: 40 + shadowNearPlaneOffset: 3 + shadowCascade2Split: 0.33333334 + shadowCascade4Split: {x: 0.06666667, y: 0.2, z: 0.46666667} + shadowmaskMode: 1 + skinWeights: 2 + textureQuality: 0 + anisotropicTextures: 1 + antiAliasing: 2 + softParticles: 0 + softVegetation: 1 + realtimeReflectionProbes: 1 + billboardsFaceCameraPosition: 1 + vSyncCount: 1 + lodBias: 1 + maximumLODLevel: 0 + streamingMipmapsActive: 0 + streamingMipmapsAddAllCameras: 1 + streamingMipmapsMemoryBudget: 512 + streamingMipmapsRenderersPerFrame: 512 + streamingMipmapsMaxLevelReduction: 2 + streamingMipmapsMaxFileIORequests: 1024 + particleRaycastBudget: 256 + asyncUploadTimeSlice: 2 + asyncUploadBufferSize: 16 + asyncUploadPersistentBuffer: 1 + resolutionScalingFixedDPIFactor: 1 + customRenderPipeline: {fileID: 11400000, guid: 19ba41d7c0026c3459d37c2fe90c55a0, type: 2} + excludedTargetPlatforms: [] + m_PerPlatformDefaultQuality: + Android: 1 + Lumin: 2 + Nintendo Switch: 2 + PS4: 2 + Stadia: 2 + Standalone: 2 + WebGL: 1 + Windows Store Apps: 2 + XboxOne: 2 + iPhone: 1 + tvOS: 1 diff --git a/ProjectSettings/TagManager.asset b/ProjectSettings/TagManager.asset new file mode 100644 index 0000000..8449a74 --- /dev/null +++ b/ProjectSettings/TagManager.asset @@ -0,0 +1,44 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!78 &1 +TagManager: + serializedVersion: 2 + tags: + - PlayerEyes + layers: + - Default + - TransparentFX + - Ignore Raycast + - Player + - Water + - UI + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + m_SortingLayers: + - name: Default + uniqueID: 0 + locked: 0 diff --git a/ProjectSettings/TimeManager.asset b/ProjectSettings/TimeManager.asset new file mode 100644 index 0000000..06bcc6d --- /dev/null +++ b/ProjectSettings/TimeManager.asset @@ -0,0 +1,9 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!5 &1 +TimeManager: + m_ObjectHideFlags: 0 + Fixed Timestep: 0.02 + Maximum Allowed Timestep: 0.1 + m_TimeScale: 1 + Maximum Particle Timestep: 0.03 diff --git a/ProjectSettings/URPProjectSettings.asset b/ProjectSettings/URPProjectSettings.asset new file mode 100644 index 0000000..3077404 --- /dev/null +++ b/ProjectSettings/URPProjectSettings.asset @@ -0,0 +1,15 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &1 +MonoBehaviour: + m_ObjectHideFlags: 61 + 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: 247994e1f5a72c2419c26a37e9334c01, type: 3} + m_Name: + m_EditorClassIdentifier: + m_LastMaterialVersion: 4 diff --git a/ProjectSettings/UnityConnectSettings.asset b/ProjectSettings/UnityConnectSettings.asset new file mode 100644 index 0000000..fa0b146 --- /dev/null +++ b/ProjectSettings/UnityConnectSettings.asset @@ -0,0 +1,34 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!310 &1 +UnityConnectSettings: + m_ObjectHideFlags: 0 + serializedVersion: 1 + m_Enabled: 0 + m_TestMode: 0 + m_EventOldUrl: https://api.uca.cloud.unity3d.com/v1/events + m_EventUrl: https://cdp.cloud.unity3d.com/v1/events + m_ConfigUrl: https://config.uca.cloud.unity3d.com + m_TestInitMode: 0 + CrashReportingSettings: + m_EventUrl: https://perf-events.cloud.unity3d.com + m_Enabled: 0 + m_LogBufferSize: 10 + m_CaptureEditorExceptions: 1 + UnityPurchasingSettings: + m_Enabled: 0 + m_TestMode: 0 + UnityAnalyticsSettings: + m_Enabled: 0 + m_TestMode: 0 + m_InitializeOnStartup: 1 + UnityAdsSettings: + m_Enabled: 0 + m_InitializeOnStartup: 1 + m_TestMode: 0 + m_IosGameId: + m_AndroidGameId: + m_GameIds: {} + m_GameId: + PerformanceReportingSettings: + m_Enabled: 0 diff --git a/ProjectSettings/VFXManager.asset b/ProjectSettings/VFXManager.asset new file mode 100644 index 0000000..6e0eaca --- /dev/null +++ b/ProjectSettings/VFXManager.asset @@ -0,0 +1,11 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!937362698 &1 +VFXManager: + m_ObjectHideFlags: 0 + m_IndirectShader: {fileID: 0} + m_CopyBufferShader: {fileID: 0} + m_SortShader: {fileID: 0} + m_RenderPipeSettingsPath: + m_FixedTimeStep: 0.016666668 + m_MaxDeltaTime: 0.05 diff --git a/ProjectSettings/VersionControlSettings.asset b/ProjectSettings/VersionControlSettings.asset new file mode 100644 index 0000000..dca2881 --- /dev/null +++ b/ProjectSettings/VersionControlSettings.asset @@ -0,0 +1,8 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!890905787 &1 +VersionControlSettings: + m_ObjectHideFlags: 0 + m_Mode: Visible Meta Files + m_CollabEditorSettings: + inProgressEnabled: 1 diff --git a/ProjectSettings/XRSettings.asset b/ProjectSettings/XRSettings.asset new file mode 100644 index 0000000..482590c --- /dev/null +++ b/ProjectSettings/XRSettings.asset @@ -0,0 +1,10 @@ +{ + "m_SettingKeys": [ + "VR Device Disabled", + "VR Device User Alert" + ], + "m_SettingValues": [ + "False", + "False" + ] +} \ No newline at end of file diff --git a/UserSettings/EditorUserSettings.asset b/UserSettings/EditorUserSettings.asset new file mode 100644 index 0000000..b543455 --- /dev/null +++ b/UserSettings/EditorUserSettings.asset @@ -0,0 +1,24 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!162 &1 +EditorUserSettings: + m_ObjectHideFlags: 0 + serializedVersion: 4 + m_ConfigSettings: + RecentlyUsedScenePath-0: + value: 22424703114646680e0b0227036c6c111b07142f1f2b233e2867083debf42d + flags: 0 + vcSharedLogLevel: + value: 0d5e400f0650 + flags: 0 + m_VCAutomaticAdd: 1 + m_VCDebugCom: 0 + m_VCDebugCmd: 0 + m_VCDebugOut: 0 + m_SemanticMergeMode: 2 + m_VCShowFailedCheckout: 1 + m_VCOverwriteFailedCheckoutAssets: 1 + m_VCProjectOverlayIcons: 1 + m_VCHierarchyOverlayIcons: 1 + m_VCOtherOverlayIcons: 1 + m_VCAllowAsyncUpdate: 1